/*
Theme Name: The Roof
Theme URI: http://www.theroof.my/
Author: eJeeban Web Design Company
Author URI: https://www.ejeeban.com/
Description: Customized theme for The Roof Interior Design Website.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: black, light, one-column, flexible-width, custom-header, custom-menu, featured-images, post-formats, sticky-post
Text Domain: theroof
*/

@font-face {
  font-family: 'GeneralSans-Extralight';
  src: url('fonts/GeneralSans-Extralight.woff2') format('woff2'),
       url('fonts/GeneralSans-Extralight.woff') format('woff'),
       url('fonts/GeneralSans-Extralight.ttf') format('truetype');
       font-weight: 200;
       font-display: swap;
       font-style: normal;
}

@font-face {
  font-family: 'GeneralSans-Light';
  src: url('fonts/GeneralSans-Light.woff2') format('woff2'),
       url('fonts/GeneralSans-Light.woff') format('woff'),
       url('fonts/GeneralSans-Light.ttf') format('truetype');
       font-weight: 300;
       font-display: swap;
       font-style: normal;
}

@font-face {
  font-family: 'GeneralSans-Medium';
  src: url('fonts/GeneralSans-Medium.woff2') format('woff2'),
       url('fonts/GeneralSans-Medium.woff') format('woff'),
       url('fonts/GeneralSans-Medium.ttf') format('truetype');
       font-weight: 500;
       font-display: swap;
       font-style: normal;
}

/*  --------------------------------------------------
    Generic CSS Setup
    -------------------------------------------------- */
html{
    width: 100%;
    height: 100%;
    margin: 0;
}
body {
    font-size: 14px;
    color: var(--black);
    font-family: var(--generalsans);
    font-weight: 200;
    letter-spacing: 1px;
    height: 100%;
    width: 100%;
    margin: 0;
    overflow-x: hidden;
}
.smooth-scroll{
    overflow: hidden;
}
.no-scroll {
    overflow: hidden;
}
:root{
    --bg: #000000;
    --gold: #8C734B;
    --black: #262626;
    --white: #c2c2c2;
    --border: rgba(140, 115, 75, 0.4);
    --generalsans: 'GeneralSans-Extralight', sans-serif;
    --padding: 0 6%;
    --top: 100px;
    --bottom: 100px;
}
img{
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
video{
    width: 100%;
}
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus{
    outline: none;
}
h1{
    font-size: 50px;
    font-weight: 200;
    line-height: 1;
    margin-bottom: 50px;
}
h2{
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 200;
}
h2 span{
    color: #b69754;
}
.bg-dark h2 span{
    color: var(--gold);
}
h3{
    font-size: 18px;
    margin-bottom: 10px;
}
h4{
    font-size: 15px;
    margin-bottom: 25px;
}
h5{
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 0;
}
h6{
    font-size: 14px;
    text-transform: uppercase;
}
p{
    line-height: 2;
}
a,
a:hover{
    color: inherit;
    transition: .2s;
}
button{
    appearance: none;
    -webkit-appearance: none;
    transition: .2s;
}
button:focus, input:focus, select:focus, textarea:focus{
    outline: none;
}
form{
    width: 100%;
}
form label{
    margin-bottom: 0;
}
input,
select,
textarea{
    font-family: var(--generalsans);
    color: var(--white);
    display: block;
    width: 100%;
    outline: 0;
    padding: 20px 0px;
    margin: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    background-color: transparent;
}
::placeholder{
    text-transform: uppercase;
    font-family: var(--generalsans);
    font-size: 14px;
    font-weight: 200;
    letter-spacing: 2px;
    color: var(--white);
}
textarea{
    height: 100px;
}
input[type="submit"]{
    margin: 0;
    padding: 0;
    min-width: 200px;
    width: auto;
    height: 40px;
    display: inline-block;
    border: 1px solid var(--gold);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'GeneralSans-Medium', sans-serif;
    background-color: var(--gold);
    color: white;
    margin-top: 40px;
    cursor: pointer;
    transition: .2s;
    appearance: none;
    -webkit-appearance: none;
    outline:0;
}
input[type="submit"]:hover{
    border: 1px solid var(--gold);
    background-color: transparent;
}
select{
    font-family: var(--generalsans);
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--green) 50%),
        linear-gradient(135deg, var(--green) 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(10px + 20px),
        calc(100% - 15px) calc(10px + 20px),
        calc(100% - 2.5em) 1.5em;
    background-size:
        5px 5px,
        5px 5px,
        1px 1.5em;
    background-repeat: no-repeat;
    cursor: pointer;
}
.grecaptcha-badge {
    display: none;
}


/*  --------------------------------------------------
    Nav
    -------------------------------------------------- */
header nav{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    height: 9vw;
    width: 100%;
    padding: 0 6%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    transition: top .5s;
    box-sizing: border-box;
}
.nav-logo img{
    height: 25px;
}
.hidden-nav{
    top: -9vw;
    opacity: 0 !important;
}
.fixed-nav{
    position: fixed;
    top: 0;
    height: 80px;
    color: white;
    background-color: black;
}
.menu{
    position: relative;
    display: flex;
    list-style: none;
    padding-inline-start: 0px;
}
.menu li{
    position: relative;
    padding-left: 40px;
    padding-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu li:last-child{
    padding-right: 0;
}
.menu li:after{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    content: "::";
    letter-spacing: 5px;
    width: 0px;
}
.menu li:first-child:after{
    display: none;
}
.menu li a{
    text-decoration: none;
    position: relative;
    font-family: var(--generalsans);
    transition: .2s;
}


/*  --------------------------------------------------
    Nav Light
    -------------------------------------------------- */
.nav-light .menu li{
    color: white;
}


/*  --------------------------------------------------
    Mobile Menu
    -------------------------------------------------- */
.mobile-menu{
    display: none;
}
.btn-menu{
    height: 15px;
    width: 24px;
    position: relative;
    transition: all .25s ease-out;
    cursor: pointer;
    display: none;
}
.btn-menu span{
    display: block;
    width: 100%;
    height: 2px;
    transition: all .25s ease-out;
    position: relative;
    will-change: transform;
    background-color: white;
}
.btn-menu span:nth-child(1) {
    transform: translateY(0px);
}
.btn-menu span:nth-child(2) {
    transform: translateY(7px);
}
.btn-menu span:nth-child(3) {
    transform: translateY(15px);
}
.bg-light .btn-menu span{
    background-color: var(--black);
}

/*  --------------------------------------------------
    Preloader
    -------------------------------------------------- */
.preloader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1600;
}
.preloader .loader{
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.preloader img{
    width: 150px;
    margin-bottom: 10px;
}


/*  --------------------------------------------------
    Footer
    -------------------------------------------------- */
footer{
    background-color: black;
    padding-top: 100px;
    color: var(--white);
}
footer .scroll-up img{
    filter: invert(1);
}
footer .nav-logo img{
    height: 45px;
}
footer .footer-holder{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer .social-media{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
}
.social-media img{
    height: 15px;
    margin-right: 15px;
}
footer .footer-col h6{
    margin-top: 0;
    font-size: 12px;
    color: var(--gold);
}
footer .footer-col p{
    margin: 0;
    line-height: normal;
}
.footer-col ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col a{
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}
.copyright{
    text-align: center;
}
.copyright p{
    margin: 0;
}
footer .scroll-up{
    cursor: pointer;
    transform: rotate(-90deg);
}


/*  --------------------------------------------------
    Common
    -------------------------------------------------- */
.padding{
    padding: var(--padding);
}
.top{
    padding-top: var(--top);
}
.bottom{
    padding-bottom: var(--bottom);
}
.bg-dark{
    background-color: var(--bg);
    color: var(--white);
}
.bg-dark input[type="submit"]:hover{
    color: white;
}
.bg-dark .circle-btn img{
    filter: invert(1);
}
.bg-light input,
.bg-light select,
.bg-light textarea,
.bg-light ::placeholder{
    color: var(--black);
}
.bg-light input[type="submit"]{
    color: white;
}
.bg-light input[type="submit"]:hover{
    color: var(--black);
}
.sec-banner{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.intro-bg{
    height: 100%;
    position: relative;
}
.intro-bg img, 
.intro-bg video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(95%);
}
.intro-txt{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
}
.title-holder{
    text-align: center;
}
.title-holder h5:before{
    position: relative;
    content: ":: ";
    letter-spacing: 5px;
}
.img-holder{
    position: relative;
    overflow: hidden;
    background-color: black;
}
.img-holder img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.img-holder:after{
    content: "";
    display: block;
    padding-bottom: 100%;
}
.award-item{
    padding: 10px;
}
.circle-btn{
    position: relative;
    width: 70px;
    height: 70px;
    border: 1px solid var(--white);
    border-radius: 50%;
    margin: 0 auto;
    display: inline-block;
    transition: 0.5s;
}
.circle-btn:hover img{
    left: 55%;
}
.circle-btn img{
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
}
.wrapper{
    display: flex;
    flex-wrap: wrap;
}
.sec-cta .wrapper{
    justify-content: space-between;
    align-items: center;
}
.sec-cta .img-col{
    width: 40.5%;
    padding-left: 6%;
    padding-right: 3.5%;
    border-right: 1px solid var(--border);
}
.sec-cta .form-holder{
    width: 40.5%;
    padding-right: 6%;
    padding-left: 3%;
}
.sec-cta .title-holder{
    text-align: left;
}
.sec-cta .title-holder h2{
    font-family: 'GeneralSans-Medium';
}
.sec-cta .title-holder h5{
    margin-top: 0;
}
.share{
    margin-bottom: 50px;
}
.share a{
    position: relative;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    margin: 0 5px;
    border-radius: 50%;
    display: inline-block;
}
.share i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.txt-center{
    text-align: center;
}


/*  --------------------------------------------------
    Default
    -------------------------------------------------- */
#default .sec-banner{
    color: white;
    background-color: black;
}
#default .sec-banner .intro-bg img{
    opacity: 0.6;
}


/*  --------------------------------------------------
    Inner
    -------------------------------------------------- */
.inner .title-holder{
    text-align: center;
}
.inner .sec-cta .title-holder{
    text-align: left;
}
.inner .sec-top.top{
    padding-top: 200px !important;
}
.inner .line-holder{
    opacity: 0.1;
}
.inner .line-holder span{
    position: fixed;
    width: 1px;
    height: 100%;
    display: block;
    background-color: #bb8600;
    left: 20%;
}
.inner .line-holder span:last-child{
    left: 75%;
}
.inner .line-holder span:nth-child(2){
    left: 50%;
}
.inner .line-holder span{
    position: fixed;
    width: 1px;
    height: 100%;
    display: block;
    background-color: var(--gold);
    left: 25%;
}


/*  --------------------------------------------------
    Slick Slider
    -------------------------------------------------- */
.slick-slider{
    padding: 0;
}
.slick-holder{
    overflow: hidden;
    position: relative;
}


/*  --------------------------------------------------
    Home
    -------------------------------------------------- */
#home .email-holder{
    transform: rotate(-90deg);
    display: block;
    text-align: center;
    top: 60%;
    left: 6%;
    transform-origin: left;
    position: absolute;
    z-index: 1;
}
#home .email-holder a{
    text-decoration: none;
}
#home .sec-banner .scroll-down{
    transform: rotate(90deg);
}
#home .sec-banner .circle-btn img{
    animation: jumpInfinite 1.5s infinite;
}
@keyframes jumpInfinite {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 5px;
  }
  100% {
    margin-left: 0;
  }
}
#home .sec-award.padding{
    padding: 100px 10%;
}
#home .sec-featured-projects{
    position: relative;
}
#home .sec-featured-projects .project-holder{
    padding-left: 6%;
}
#home .sec-featured-projects .title-holder{
    margin-top: 50px;
}
#home .sec-featured-projects a{
    display: contents;
}
#home .project-col .img-holder:after{
    padding-bottom: 120%;
}
#home .project-col .img-holder img{
    filter: grayscale(1);
    opacity: 0.8;
}
#home .project-slider{
    display: flex;
    margin: 0 -1%;
    position: relative;
    z-index: 1;
    padding-left: 10vw;
}
#home .project-item{
    width: 25%;
    flex-shrink: 0;
    padding: 0 1%;
    cursor: pointer;
}
#home .project-col{
    position: relative;
}
#home .project-col .reveal-holder .circle-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100px;
    height: 100px;
    transition: 0.5s;
}
#home .project-col .reveal-holder{
    position: absolute;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    bottom: 0;
    transition: 0.5s;
}
#home .project-col .reveal-holder:after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 100%);    
}
#home .project-col .reveal-holder p{
    position: absolute;
    bottom: 20px;
    left: 30px;
    margin: 0;
    z-index: 1;
}
#home .project-item:hover .project-col .img-holder img{
    filter: unset;
    transform: scale(1.05);
}
#home .project-item:hover .project-col .reveal-holder{
    visibility: visible;
    opacity: 1;
}
#home .project-item:hover  .project-col .reveal-holder .circle-btn{
    width: 120px;
    height: 120px;
}
#home .project-item h6{
    text-align: right;
    margin-bottom: 0;
}
#home .door-line{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 50%;
    border: 1px solid var(--border);
    border-bottom: 0;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
}
#home .sec-service{
    position: relative;
}
#home .sec-service .img-holder:after{
    padding-bottom: 50%;
}
#home .sec-service .title-holder{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 80%;
}
#home .sec-about{
    position: relative;
}
#home .sec-about .wrapper{
    justify-content: space-between;
}
#home .sec-about .img-left{
    position: relative;
    min-height: 1;
    width: 15%;
    margin-top: 250px;
}
#home .sec-about .img-left .img1{
    position: relative;
    z-index: 2;
}
#home .sec-about .title-holder{
    text-align: left;
    width: 30%;
}
#home .sec-about .img-right{
    width: 35%;
    padding-right: 6%;
}
#home .line-holder{
    opacity: 0.4;
}
#home .line-holder span{
    position: absolute;
    background-color: var(--gold);
    top: 0;
    left: 6%;
    display: block;
    width: 1px;
    height: 90%;
}
#home .line-holder span:first-child{
    height: 1px;
    width: 20%;
    top: 15%;
    left: 0;
}
#home .line-holder span:first-child:before{
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gold);
    position: absolute;
    bottom: -5px;
    left: 28.5%;
}


/*  --------------------------------------------------
    Projects
    -------------------------------------------------- */
#project .filters{
    text-align: center;
}
#project .filters ul{
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 1px solid var(--border);
}
#project .filters ul li{
    padding: 5px 20px 20px 20px;
    text-transform: uppercase;
    cursor: pointer;
}
#project .filter.active{
    border-bottom: 2px solid var(--gold);
}
#project .filters a{
    text-decoration: none;
}
#project #portfolio{  
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1%;
}
#project #portfolio a{
    display: contents;
}
#project .portfolio-item{
    position: relative;
    width: 31.33%;
    padding: 0 1%;
    margin: 20px 0 5px 0;
    cursor: pointer;
}
#project .tile{ 
    display: none;
}
#project .tile img{
    max-width: 100%; 
    height: auto;
    display: block; 
    width: 100%;
    transition: 0.5s;
}
#project .portfolio-item .reveal-holder{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    width: 80%;
}
#project .portfolio-item:hover .reveal-holder{
    visibility: visible;
    opacity: 1;
}
#project .portfolio-item:hover img{
    opacity: 0.5;
}
#project .portfolio-item .reveal-holder h2{
    text-transform: uppercase;
    margin: 0;
}
#project .portfolio-item .reveal-holder p{
    font-size: 16px;
    margin: 0;
}

#project .sec-banner{
    color: white;
    background-color: black;
}
#project .sec-banner .intro-bg img{
    opacity: 0.5;
}
#project .sec-banner .intro-txt h1{
    font-size: 5.5vw;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 20px;
    font-family: 'GeneralSans-Extralight', sans-serif;
    font-weight: 200;
}
#project .sec-banner .intro-txt p:after{
    content: '/';
    display: block;
    line-height: 10px;
}
#project .sec-banner .intro-txt p:last-child:after{
    display: none;
}
#project .sec-banner .intro-txt p{
    font-size: 20px;
    margin: 0;
}
#project .freetxt h3{
    margin-bottom: 50px;
    font-weight: 200;
}
#project .sec-info{
    text-align: center;
    width: 80%;
    margin: 0 auto;
}
#project .icon-item{
    width: 20%;
}
.icon-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.icon-list .icon-item img{
    width: 80px;
}
.icon-item h6, .icon-item h3{
    margin: 0;
    font-weight: 200;
}
.icon-item h6{
    margin-top: 10px;
}

#project .sec-gallery{
    position: relative;
}
#project .sec-gallery .gallery-wrapper {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
}
#project .gallery-item{
    width: 100%;
    margin: 0 5px 12px 5px; /* for separating masonry-bricks vertically*/
}
#project .gallery-item img{
    width: 100%;
    display: block;
}
#project .sec-gallery .logomark{
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 1;
}
#project .sec-gallery .logomark img{
    width: 100px;
    opacity: 0.5;
}


/*  --------------------------------------------------
    Makeover
    -------------------------------------------------- */
#makeover .youtube-holder{
    position: relative;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1%;
    justify-content: space-between;
}
#makeover .youtube-container{
    max-width: 100%;
    height: 100%;
    width: 48%;
    padding: 0 1%;
    margin-bottom: 30px;  
}
#makeover .youtube-container .youtube-player:hover img.youtube-thumbnail{
    opacity: 0.3;
    transform: scale(1.05);
}
#makeover .youtube-container .youtube-player:hover div.youtube-play-btn{
    opacity: 1;
}
#makeover .youtube-player{
    padding-bottom: 56.25%;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    cursor: hand;
    cursor: pointer;
    background-color: black;
}
#makeover img.youtube-thumbnail{
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    height: auto;
    transition: 0.5s;
}
#makeover div.youtube-play-btn {
    height: 72px;
    width: 72px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    background: url("images/ico-play-btn.png") no-repeat center center;
    background-size: 72px 72px;
    opacity: 0;
    transition: 0.5s;
}
#makeover .youtube-iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


/*  --------------------------------------------------
    Contact
    -------------------------------------------------- */
#contact .sec-top{
    padding-top: 150px;
}
#contact .contact-col{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1%;
    align-items: center;
    justify-content: space-between;
}
#contact .contact-col .col-left{
    width: 50%;
    padding: 0 1%;
}
#contact .contact-col .col-right{
    width: 35%;
    padding: 0 1%;
}
#contact h1{
    margin-top: 0;
    margin-bottom: 30px;
}
#contact h6{
    color: var(--gold);
    margin-top: 0;
}
#contact .col-right p{
    line-height: normal;
}
#contact .col-right .contact-details{
    margin: 20px 0 30px 0;
}
#contact .col-right .contact-details a{
    display: block;
    text-decoration: none;
}
#contact .col-right .social-media a{
    text-decoration: none;
}
#contact .google-frame{
    width: 100%;
    height: 300px;
}
#contact .google-frame iframe{
    width: 100%;
    height: 100%;
    border: none;
}

/*  --------------------------------------------------
    About
    -------------------------------------------------- */
#about .extra-line-holder{
    opacity: 0.1;
}
#about .extra-line-holder span{
    position: fixed;
    width: 1px;
    height: 100%;
    display: block;
    background-color: #bb8600;
    left: 6%;
}
#about .extra-line-holder span:nth-child(2){
    left: 12%;
}
#about .extra-line-holder span:last-child{
    left: unset;
    right: 6%;
}
#about .outline-txt{
    position: absolute;
    transform: rotate(-90deg);
    left: 1.2vw;
    font-size: 8vw;
    font-weight: 300;
    color: transparent;
    font-family: 'GeneralSans-Light';
    text-transform: uppercase;
    -webkit-text-stroke: 1px var(--gold);
    text-stroke: 1px var(--gold);
    opacity: 0.5;
}
#about .ot-right{
    left: unset;
    top: 35vw;
    right: -2vw;
}
#about .sec-top h6{
    text-transform: lowercase;
    font-size: 20px;
    margin: 0;
}
#about .sec-top h1{
    font-size: 40px;
    margin-top: 10px;
    line-height: 45px;
}
#about .about-img{
    position: relative;
    text-align: center;
    min-height: 1px;
    height: 100%;
}
#about .about-img .img1{
    position: relative;
    z-index: 2;
    width: 60%;
}
#about .about-img .img2{
    position: absolute;
    bottom: -3vw;
    right: 10vw;
    z-index: 2;
    width: 18%;
    border: 5px solid white;
}
#about .sec-intro{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#about .intro-left{
    position: relative;
    width: 45%;
}
#about .intro-right{
    width: 44%;
    margin-right: 6%;
}
#about .intro-left .img1{
    position: relative;
    z-index: 2;
    width: 60%;
    padding-top: 5vw;
    padding-left: 18vw;

}
#about .intro-left .img2{
    position: absolute;
    top: 0;
    left: 0;
    width: 38%;
}
#about .intro-left .img3{
    position: absolute;
    top: 21.5vw;
    left: 0;
    width: 38%;
}
#about .sec-philosophy{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#about .sec-philosophy .col-left{
    width: 48%;
    padding: 0 4% 0 0px;
}
#about .sec-philosophy .col-right{
    width: 48%;
    padding: 0;
}
#about .sec-philosophy .col-left .title-holder{
    text-align: left;
}
#about .sec-philosophy .icon-list{
    margin: 0 -2%;
    justify-content: left;
}
#about .sec-philosophy .icon-list .icon-item {
    width: 16%;
    padding: 0 2%;
    margin-top: 20px;
    text-align: center;
}
#about .service-list{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1%;
}
#about .service-list .service-item{
    width: 31.33%;
    padding: 0 1%;
    position: relative;
    margin-bottom: 30px;
}
#about .service-list .service-item .img-holder:before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 100%); 
    z-index: 1;
}
#about .service-list .service-item .img-holder:after{
    padding-bottom: 80%;
}
#about .service-item .service-title{
    color: white;
    margin: 0 2%;
    position: absolute;
    bottom: 20px;
    left: 30px;
    z-index: 2;
}
#about .service-title h3{
    padding: 0 1%;
    margin-bottom: 0;
    text-transform: uppercase;
}
#about .timeline-container{
    width: 80%;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
}
#about .timeline-container:before{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: var(--gold);
    z-index: 1;
}
#about .marker{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-left: 1px;
    border: 1px solid var(--gold);
    margin-top: 10px;
    z-index: 1000;
    background-color: black;
}
#about .timeline-item{
    width: -webkit-calc(50% + 8px);
    width: -moz-calc(50% + 8px);
    width: calc(50% + 8px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    clear: both;
    float: right;
    margin-bottom: 20px;
}
#about .timeline-content{
    width: 95%;
    padding: 0 15px;
}
#about .timeline-content h3{
    margin: 0;
    color: var(--gold);
}
#about .timeline-content p{
    margin: 0;
}
#about .timeline-item:nth-child(even){
    float: left;
    direction: rtl;
}

/*  --------------------------------------------------
    Ipad Pro Landscape
    -------------------------------------------------- */
@media only screen and (min-width: 1366px) and (min-height: 1024px) {

}

/*  --------------------------------------------------
    Ipad Landscape
    -------------------------------------------------- */
@media only screen and (max-width: 1200px) {
    
    #home .sec-featured-projects .project-holder{
        padding-right: 6%;
    }
    #home .project-slider{
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #home .project-item{
        width: 47%;
    }
    #home .project-slider{
        padding-left: unset;
    }

}

/*  --------------------------------------------------
    Ipad Potrait
    -------------------------------------------------- */
@media only screen and (max-width: 1025px) {

    h1{
    font-size: 35px;
    margin-bottom: 30px;
    }
    h2{
        font-size: 23px;
        margin-bottom: 20px;
    }
    h3{
        font-size: 16px;
    }
    h4{
        font-size: 14px;
    }
    h5{
        font-size: 14px;
        margin-bottom: 10px;
    }
    #home .door-line{
        width: 70%;
    }
    #home .sec-about .title-holder{
        width: 35%;
    }
    #home .sec-about .img-right{
        width: 25%;
    }
    .sec-cta .wrapper{
        align-items: flex-start;
    }
    footer .footer-col:first-child{
        width: 100%;
        margin-bottom: 50px;
    }
    footer .footer-col:last-child{
        width: 100%;
        margin-top: 50px;
    }
    .inner .sec-top .title-holder{
        width: 80%;
        margin: 0 auto;
    }
    #about .sec-philosophy .icon-list .icon-item{
        margin-bottom: 30px;
    }
    #about .sec-top h1{
        font-size: 35px;
        line-height: 35px;
    }
    #project .sec-gallery .logomark img{
        width: 80px;
    }
}


/*  --------------------------------------------------
    Ipad Potrait
    -------------------------------------------------- */
@media only screen and (max-width: 991px) {

    /*menu*/
    .menu{
        display: none;
    }
    .btn-menu{
        display: block;
    }
    .btn-close{
        position: absolute;
        top: 20px;
        right: 20px;
        color: white;
        font-size: 30px;
    }
    .mobile-menu{
        position: fixed;
        top: 0;
        right: -1000px;
        width: 100%;
        height: 100%;
        padding-right: 0;
        background-color: black;
        transition: .5s;
        z-index: 500;
        display: block;
    }
    .mobile-menu.show{
        right: 0;
    }
    .mobile-menu-content{
        overflow: hidden;
        overflow-y: auto;
        text-align: center;
        list-style: none;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .mobile-menu ul{
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mobile-menu a, .nav-light .mobile-menu ul li a{
        font-size: 30px;
        color: white;
        text-decoration: none;
        text-transform: uppercase;
    }
    .mobile-menu li{
        padding: 10px;
    }

    #home .project-slider{
        flex-wrap: wrap;
    }
    #home .project-item{
        width: 45%;
    }
    .sec-cta .img-col, .sec-cta .form-holder{
        width: 100%;
        padding-left: 6%;
        padding-right: 6%;
        border-right: none;
    }
    .sec-cta .form-holder{
        margin-top: 20px;
    }
    footer .copyright.top{
        padding-top: 50px;
    }
    footer .copyright.bottom{
        padding-bottom: 50px;
    }
    #about .about-img .img1{
        width: 75%;
    }
    #about .about-img .img2{
        bottom: -10vw;
        width: 30%;
    }
    #about .intro-left{
        width: 100%;
        text-align: center;
    }
    #about .intro-left .img1{
        width: 50%;
        padding: unset;
    }
    #about .intro-left .img2,  #about .intro-left .img3{
        display: none;
    }
    #about .intro-right{
        width: 100%;
        padding: 0 6%;
        margin: unset;
    }
    #about .sec-philosophy .col-left, #about .sec-philosophy .col-right{
        width: 100%;
    }
    #about .service-list .service-item{
        width: 48%;
    }
    #project #portfolio{  
        margin: 0;
    }
    #project .portfolio-item{
        width: 48%;
    }
    #project .sec-banner .intro-txt h1{
        font-size: 50px;
    }
    #project .sec-banner .intro-txt p{
        font-size: 18px;
    }
    #project .icon-item{
        width: 25%;
    }
    #project .icon-item span{
        display: block;
    }
    #makeover .youtube-holder{
        margin: 0;
    }
    #makeover .youtube-container{
        width: 100%;
    }
    #contact .contact-col .col-left{
        width: 100%;
        margin-bottom: 50px;
    }
    #contact .contact-col .col-right{
        width: 100%;
    }
    #about .sec-top h1{
        font-size: 30px;
        line-height: 35px;
    }

}


/*  --------------------------------------------------
    Mobile Landscape
    -------------------------------------------------- */
@media only screen and (max-height: 600px) {

    h1{
    font-size: 30px;
    margin-bottom: 30px;
    }
    h2{
        font-size: 20px;
        margin-bottom: 20px;
    }
    h3{
        font-size: 14px;
    }
    h4{
        font-size: 14px;
    }
    h5{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .btn-menu{
        display: block;
    }
    .menu{
        display: none;
    }
    #home .door-line{
        width: 90%;
    }
    .sec-cta .wrapper {
        position: relative;
        display: block;
        height: 210vh;
    }
    .sec-cta .img-col, .sec-cta .form-holder{
        width: 88%;
        padding-left: 6%;
        padding-right: 6%;
        border-right: none;
    }
    .sec-cta .img-col {
        position: sticky;
        top: 50px;
        width: 100vw;
        height: 100vh;
        padding: 0;
        overflow: hidden;
    }
    .sec-cta .form-holder{
        position: absolute;
        z-index: 2;
        height: 50%;
        background-color: #ffffff;
        margin-top: 20px;
        padding: 50px 6%;
    }
    .bg-dark .sec-cta .form-holder{
        background-color: var(--bg);
    }
    .mobile-menu a, .nav-light .mobile-menu ul li a{
        font-size: 20px;
    }
    #project .sec-gallery .logomark img{
        width: 100px;
    }
}

@media only screen and (max-width: 600px) {
    h1{
    font-size: 30px;
    margin-bottom: 30px;
    }
    h2{
        font-size: 20px;
        margin-bottom: 20px;
    }
    h3{
        font-size: 14px;
    }
    h4{
        font-size: 14px;
    }
    h5{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .top{
        padding-top: 50px;
    }
    .bottom{
        padding-bottom: 50px;
    }
    .btn-menu{
        display: block;
    }
    .menu{
        display: none;
    }
    .intro-bg video{
        object-position: 20%;
    }
    #home .sec-award.padding{
        padding: 50px 6%;
        padding-bottom: 0;
    }
    #home .door-line{
        display: none;
    } 
    header nav{
        height: 25vw;
    }
    #home .sec-featured-projects .project-holder{
        padding-right: 6%;
    }
    #home .project-item{
        width: 100%;
    }
    #home .sec-service .img-holder:after{
        padding-bottom: 100vh;
    }
    #home .sec-about .img-left{
        display: none;
    }
    #home .sec-about .title-holder{
        width: 100%;
        padding: 0 6%;
    }
    #home .line-holder{
        display: none;
    }
    #home .sec-about .img-right{
        display: none;
    }
    .sec-cta .wrapper {
        position: relative;
        display: block;
        height: 140vh;
        margin-bottom: 100px;
    }
    .sec-cta .img-col, .sec-cta .form-holder{
        width: 88%;
        padding-left: 6%;
        padding-right: 6%;
        border-right: none;
    }
    .sec-cta .img-col {
        width: 100%;
        padding: 0;
        position: sticky;
        top: 50px;
    }
    .sec-cta .form-holder{
        position: absolute;
        z-index: 2;
        height: 55%;
        background-color: #ffffff;
        margin-top: 20px;
        padding: 50px 6%;
    }
    .bg-dark .sec-cta .form-holder{
        background-color: var(--bg);
    }
    footer .footer-col{
        width: 100%;
        margin-bottom: 30px;
    }
    footer .footer-col:last-child{
        margin-top: 0;
    }
    .inner .sec-top.top{
        padding-top: 100px !important;
    }
    #about .sec-top h1{
        font-size: 25px;
        line-height: 30px;
    }
    #about .outline-txt{
        display: none;
    }
    #about .intro-left .img1{
        width: 100%;
    }
    #about .timeline-container{
        width: 90%;
    }
    #about .timeline-container:before {
        left: 8px;
        width: 2px;
    }
    #about .timeline-item{
        width: 100%;
        margin-bottom: 30px;
    }
    #about .timeline-item{
        float: none;
    }
    #about .timeline-item:nth-child(even){
        float: none;
        direction: ltr;
    }
    #about .timeline-content h3{
        margin-top: 7px;
    }
    #about .timeline-content p{
        line-height: 1.45;
        margin-bottom: 15px;
    }
    #about .sec-philosophy .icon-list .icon-item {
        width: 46%;
    }
    #about .service-item .service-title{
        margin: 0;
    }
    #project .sec-banner .intro-txt h1{
        font-size: 32px;
        line-height: 1.37;
    }
    #project .filters ul li{
        padding: 10px;
        font-size: 12px;
    }
    #project .portfolio-item .reveal-holder h2{
        font-size: 30px;
    }
    #project .portfolio-item{
        width: 100%;
    }
    #project .sec-gallery {
        padding: 0 3%;
    }
    #project .sec-gallery .gallery-wrapper {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
    #project .gallery-item{
        margin: 0 0 12px 0px; /* for separating masonry-bricks vertically*/
    }
    #project .sec-gallery .elementor-widget:not(:last-child) {
        margin-bottom: 10px;
    }
    #project .sec-gallery .elementor-column-gap-default>.elementor-column>.elementor-element-populated {
        padding: 0 0 10px 0px;
    }
    #project .sec-gallery .logomark img{
        width: 60px;
    }
    #project .icon-list {
        margin-top: 30px;
    }
    #project .icon-item{
        width: 50%;
        margin-bottom: 30px;
    }
    #project .icon-item:last-child{
        margin-bottom: 0;
    }
    .mobile-menu a, .nav-light .mobile-menu ul li a{
        font-size: 20px;
    }
}