:root {
    --main: #ff3e47;
    --main2: #6c342c;
    --main3: #474B4D;
}
a:hover{
    text-decoration: unset;
}
@font-face {
    font-family: FranklinGothic;
    font-style: normal;
    font-weight: normal;
    src: url("../font/FranklinGothic.ttf");
    font-display: swap;
}

@font-face {
    font-family: FranklinGothic;
    font-style: normal;
    font-weight: 100;
    src: url("../font/FranklinGothic-Thin.ttf");
    font-display: swap;
}

/* brand font */
@font-face {
    font-family: 'Fabriga';
    src: url('../fonts/Fabriga/Fabriga-Bold.eot');
    src: url('../fonts/Fabriga/Fabriga-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Fabriga/Fabriga-Bold.woff2') format('woff2'),
        url('../fonts/Fabriga/Fabriga-Bold.woff') format('woff'),
        url('../fonts/Fabriga/Fabriga-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fabriga';
    src: url('../fonts/Fabriga/FabrigaMedium.eot');
    src: url('../fonts/Fabriga/FabrigaMedium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Fabriga/FabrigaMedium.woff2') format('woff2'),
        url('../fonts/Fabriga/FabrigaMedium.woff') format('woff'),
        url('../fonts/Fabriga/FabrigaMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fabriga';
    src: url('../fonts/Fabriga/FabrigaLight.eot');
    src: url('../fonts/Fabriga/FabrigaLight.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Fabriga/FabrigaLight.woff2') format('woff2'),
        url('../fonts/Fabriga/FabrigaLight.woff') format('woff'),
        url('../fonts/Fabriga/FabrigaLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fabriga';
    src: url('../fonts/Fabriga/Fabriga.eot');
    src: url('../fonts/Fabriga/Fabriga.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Fabriga/Fabriga.woff2') format('woff2'),
        url('../fonts/Fabriga/Fabriga.woff') format('woff'),
        url('../fonts/Fabriga/Fabriga.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.brand-font-bold {
    font-family: 'Fabriga', sans-serif;
    font-weight: bold; 
    font-style: normal;
}
.brand-font-medium {
    font-family: 'Fabriga', sans-serif;
    font-weight: 500;
    font-style: normal;
}
.brand-font-normal {
    font-family: 'Fabriga', sans-serif;
    font-weight: normal;
    font-style: normal;
}
.brand-font-light {
    font-family: 'Fabriga', sans-serif;
    font-weight: 300;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}
/*scroll*/
::-webkit-scrollbar {
    width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #19031B;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--main);
    border-radius: 40px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--main);
    /*border-radius: 3px;*/
}

body {
    /* background-color: #19031B; */
    font-family: 'Fabriga', sans-serif;
    font-weight: normal;
    color: #474B4D;
}

.fl {
    font-weight: 100;
}

.fsvw-08 {
    font-size: 0.8vw;
}

.fsvw-1 {
    font-size: 1vw;
}

.fsvw-1-2 {
    font-size: 1.2vw;
}

.fsvw-1-4 {
    font-size: 1.4vw;
}

.fsvw-2 {
    font-size: 2vw;
}

.fsvw-2-4 {
    font-size: 2.4vw;
}

.fsvw-3 {
    font-size: 2.6vw;
}

.w-14 {
    width: 14px;
}

.w-30 {
    width: 30%;
}

/*nav*/
.w-logo {
    min-width: 50px;
    max-width: 100px;
}

/*intro*/
.intro-div {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    z-index: 11;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
}

.btn-outline-light:hover img {
    filter: invert(1);
}

.br-10 {
    border-radius: 10px;
}

.bg-dark {
    background-color: #0000008c !important;
}


.nav-b-b {
    height: 3px;
    width: 100%;
    background: rgb(244, 192, 165);
    background: linear-gradient(90deg, rgba(244, 192, 165, 1) 0%, rgba(108, 52, 44, 1) 100%);

}

.g-t {
    background: linear-gradient(to right, var(--main), var(--main2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pointer{
    cursor: pointer;
}
.circle {
    border-radius: 50%;
    border: 1px solid white;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: 0.5s;
}

.rectangle a {
    padding: 40px 15px;
    border: 1px solid white;
    cursor: pointer;
    transition: 0.5s;
}
.rectangle:hover a {
    background-color: rgba(0, 0, 0, 0.33);
}

.circle:hover {
    background-color: rgba(255, 255, 255, 0.33);
}

.circle:hover {
    transform: rotate(180deg);
}

.circle a {
    transition: 0.5s;
}

.circle:hover a {
    transform: rotate(-180deg);
}

.circle:after {
    content: "";
    height: 2px;
    width: 30px;
    background-color: white;
    position: relative;
    top: 50%;
    right: -30px;
}

.circle:before {
    content: "";
    height: 2px;
    width: 30px;
    background-color: white;
    position: relative;
    top: 50%;
    left: -30px;
}

p.gray {
    color: gray!important;
}
.bt-1{
    border-top: 1px solid gray;
}

.l-s-2 {
    letter-spacing: 2px;
}
.filter{
    filter: contrast(0);
}
.filter:hover{
    filter: unset;
}
/*section 1*/

.bg-1 {
    /* background-image: url("../img/bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    background: #1e1e1e;
} 

.bg-2 {
    background-image: url("../img/lobby-1046-x-551b.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
} 

.contact-form-web .form-control {
    background-color: #ffffff00;
    border: unset;
    border-bottom: 1px solid white;
    border-radius: 0;
    color: white;

}

.contact-form-web .form-control:active, .contact-form-web .form-control:focus {
    outline: unset;
    box-shadow: unset;
}

.contact-form-web ::placeholder {
    color: white;
    opacity: 1; /* Firefox */
}

option {
    color: black;
}


/*section 2*/

/* .bgs-2 {
    background-image: url("../img/bg2.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */

.union {
    background-image: url("../img/union.png");
    background-repeat: no-repeat;
    /*background-size: 6% 100%;*/
    background-position: 0 10px;
}

.bg-orange {
    background: #ffffffc7;
    z-index: 11;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    width: 50%;
    height: auto;
    text-align: center;
}


.m-title {
    white-space: nowrap;
    /*width: 100px;*/
    margin: auto;
    transition: all 0.3s ease;
}

.m-title h3 {
    letter-spacing: 2px;
    color: white;
    transform: rotate(-90deg);
    /*font-size: 2vw;*/
    opacity: 1;
    transition: all 0.3s ease;
    width: 92px;
    padding-left: 50%;
}

.gallery-wrap {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 70vh;
    transition: all 0.3s ease;
    overflow: hidden;
}

.item {
    cursor: pointer;
    flex: 1;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: unset;
    transition: all 0.3s ease;
}


.item-active {
    flex: 7 !important;
}

.item-active .item-p {
    display: flex !important;
}

.item-active .m-title h3 {
    letter-spacing: 10px;
    color: white;
    font-size: 3vw;
    opacity: 0.7;
    padding-left: 30px;
}


.item-1 {
    background-image: url("../img/m1.webp");
}

.item-2 {
    background-image: url("../img/m2.webp");
}

.item-3 {
    background-image: url("../img/m3.webp");
}

.item-4 {
    background-image: url("../img/m4.webp");
}

.item-5 {
    background-image: url("../img/m5.webp");
}

.item-6 {
    background-image: url("../img/m6.webp");
}

.item .item-p {
    display: none;
}

.b-m-1 {
    border: 1px solid var(--main);
}


.parsley-errors-list {
    list-style: none;
    padding: 7px;
    color: red;
    margin: 0;
}
.iti--allow-dropdown{
    width: 100%;
}
.iti__selected-dial-code {
    display: none;
}
.parsley-required {
    /*color: white;*/
    font-size: 12px;
}


.bg-3 {
    background-image: url("../img/bg3.webp");
    background-size: 100% 94%;
    background-position: center;
    background-repeat: no-repeat;
}

.main {
    color: var(--main);
}
.hoverNone img:hover{
    transform: scale(1)!important;
}
.main3 {
    color: var(--main3) !important;
}

.l-s-6 {
    letter-spacing: 6px;
}

.img-slider .slick-dots {
    bottom: 2%;
}

.img-slider .slick-dots li button:before {
    font-size: 40px;
    color: white;
}

.line {
    height: 1px;
    background-color: var(--main3);
    width: 90%;
    margin-top: 12px
}
.project > .slick-dots li{
    width: 25%;
    margin: 0;
}
.project >  .slick-dots  .slick-active button:before {
    width: 100%;
     background: var(--main3);
     height: 2px;
}
.project >  .slick-dots li button:before {
    width: 100%;
   background: var(--main3);
    height: 1px;
}
 .project > .slick-dots{
     display: flex;
     padding: 0 10%;
     bottom: -40px;
 }
.project >  .slick-dots li:last-child {
    display: none;
}
.project >.slick-dots li button{
    width: 100%;
    /*background: var(--main3);*/
    height: 1px;
}
.project> .slick-dots li{
    height: 1px;
}
.project >  .slick-dots .slick-active:first-child:before{
    content: '01/04';
    color: var(--main3);
    margin-top: -30px;
    position: absolute;
}
.project >  .slick-dots .slick-active:nth-child(2):before{
    content: '02/04';
    color: var(--main3);
    margin-top: -30px;
    position: absolute;
}
.project >  .slick-dots .slick-active:nth-child(3):before{
    content: '03/04';
    color: var(--main3);
    margin-top: -30px;
    position: absolute;
}
.project >  .slick-dots .slick-active:nth-child(4):before{
    content: '04/04';
    color: var(--main3);
    margin-top: -30px;
    position: absolute;
}

#video {
    position: relative;
    overflow: hidden;
    width: 100%;
    z-index: 0;
    height: 630px !important;
    max-height: 700px;
    object-fit: cover;
}


@media (min-aspect-ratio: 16/9) {
    .video {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .video {
        width: auto;
        height: 100%;
    }
}



.w-c-25{
    width: 25%;
}
.w-c-75{
    width: 75%;
}
.slick-track{
    display: flex;
}


p{
    color: #474B4D!important;
}


.mah-slider .slick-slide img {
    height: 560px;
    object-fit: cover;
}
.mah-slider .slick-dots{
    display: none;
}
.mah-slider .slick-dots {
    justify-content: center;
}
.mah-slider .project > .slick-dots li{
 display: none;
}


.img-slider2 .slick-dots li{
    width: 25%;
    margin: 0;
}

.img-slider2  .slick-dots  .slick-active button:before {
    width: 100%;
    background: white;
    height: 2px;
}

.img-slider2  .slick-dots li button:before {
    width: 100%;
    background: white;
    height: 1px;
}

.img-slider2 .slick-dots{
    display: flex;
    padding: 0 10%;
    bottom: -40px;
}

.img-slider2.slick-dots li button{
    width: 100%;
    /*background: var(--main3);*/
    height: 1px;
}

.img-slider2 .slick-dots li{
    height: 1px;
}

.gallery-m button.close{
     position: absolute;
     z-index: 11111;
     right: 16px;
     top: 16px;
     background: #ffffff;
     width: 40px;
     height: 40px;
     border-radius: 0;
}

.gallery-m img:hover{
    transform: scale(1);
}
.gallery-m .carousel-fade .carousel-item img{
    object-fit: cover;
    width: 100%;
}
.gallery-m .modal-dialog{
    max-width: 1024px;
}
.gallery-m .carousel-fade .carousel-item img{
    max-height: 95vh;
    object-fit: contain;
}
.carousel-control-prev, .carousel-control-next {
    top: calc(50% - 30px);
    padding: 10px;
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 0;
}




/* .bg-4 {
    background-image: url("../img/bg4.webp");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.bg-5 {
    background-image: url("../img/bg5.webp");
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}
.bg-6 {
    background-image: url("../img/bg6.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}*/
.bg-7 {
    background-image: url("../img/home-and-business1900x719.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bg-build {
    background-image: url("../img/tower-design640x713.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
} 


.w-d-25{
    width: 25%;
}
.w-d-75{
    width: 75%;
}

img{
    transition: all 1s ease;
    transform: scale(1);
    overflow: hidden;
}
img:hover{
    transform: scale(1.1);

}

.overlay{
    background: #0000008f;
    position: absolute;
    z-index: 2;
    top: -7px;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
}
.navbar{
    padding: 0;
    overflow: hidden;
}
#section1{
    background-image:  url("../img/pattern-5.png");
    position: relative;
    background-color: #202020;
}
.form-control{
    font-size: 13px;
    padding: 18px 10px;
}

.img-sec img{
    height: 460px;
    object-fit: cover;
}
.Gmap iframe {
    width: 100%;
    height: 300px;
    border: none;
}
.whatsapp{
    background: #25D366;
    border-radius: 50%;
    border-radius: 50%;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 42px;
}
.whatsapp a{
    color: #fff;
    padding: 4px;
    font-size: 34px;
}
a.contactNum {
    color: #474b4d;
}
a.contactNum:hover {
    color: #181818;
}
.social-icons a{
    font-size: 15px;
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
}
.social-icons a.facebook {
    background: #1877F2;
 }
 .social-icons a.insta {
    background: #833ab4;
    background: linear-gradient( to right, #833ab4,#fd1d1d,#fcb045);
}
 .social-icons a.tiktok {
    background: #040404;
 }
 .social-icons a.linkedin {
    background: #0072b1;
 }
.text-justify{
    text-align: justify;
}




@media (max-width: 1300px) {
    .fsvw-08 {
        font-size: calc(0.8vw + 6px);
    }

    .fsvw-1 {
        font-size: calc(1vw + 8px);
    }

    .fsvw-1-2 {
        font-size: calc(1.2vw + 10px);
    }

    .fsvw-1-4 {
        font-size: calc(1.4vw + 12px);
    }

    .fsvw-2 {
        font-size: calc(2vw + 16px);
    }

    .fsvw-2-4 {
        font-size: calc(2.4vw + 18px);
    }

    .fsvw-3 {
                font-size: calc(3vw + 7px);
    }
}
@media (min-width: 1000px) {
    .modal-dialog {
        max-width: 800px;
        margin: 1.75rem auto;
    }
}
@media (max-width: 991px) {
    .circle:after {
        content: "";
        height: 0;
        width: 30px;
        background-color: white;
        position: relative;
        top: 50%;
        right: -30px;
    }

    .circle:before {
        content: "";
        height: 0;
        width: 30px;
        background-color: white;
        position: relative;
        top: 50%;
        left: -30px;
    }

    .bg-build {
        background-image:unset;
        background-color: #eaeaea;
        background-position: center;
        background-repeat: no-repeat;
    }

    .w-c-25{
        width: 100%;
    }
    .w-c-75{
        width: 100%;
    }
    .w-d-25{
        width: 0;
    }
    .w-d-75{
        width: 100%;
    }
    .gallery-wrap {
        display: flex;
        flex-direction: column;
    }

    .m-title {
        width: auto;
        margin: 10px;
    }

    .m-title h3 {
        transform: rotate(0deg);
        padding-left: 10%;
    }

    .bg-2 {
        background: unset;
    }
    .mah-slider .slick-slide img {
        height: 420px;
    }
}

@media (max-width: 767px) {
    .bg-orange {
        width: 90%;
    }
    .img-sec img{
        height: 400px;
        object-fit: cover;
    }
    .mah-slider .slick-slide img {
        height: 380px;
    }
}


@media (max-width: 500px) {
    .item-active .m-title h3 {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .fsvw-08 {
        font-size: calc(0.8vw + 10px);
    }

    .fsvw-1 {
        font-size: calc(1vw + 12px);
    }

    .fsvw-1-2 {
        font-size: calc(1.2vw + 14px);
    }

    .fsvw-1-4 {
        font-size: calc(1.4vw + 16px);
    }

    .fsvw-2 {
        font-size: calc(2vw + 20px);
    }

    .fsvw-2-4 {
        font-size: calc(2.4vw + 22px);
    }

    .fsvw-3 {
        font-size: calc(3vw + 12px);
    }
    .mah-slider .slick-slide img {
        height: 250px;
    }
}






