:root {
    --main: #fabe99;
    --main2: #6c342c;
    --main3: #29002d;
}
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;
}
html {
    scroll-behavior: smooth;
}
/*scroll*/
::-webkit-scrollbar {
    width: 4px;

}

/* 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: FranklinGothic, Arial, serif;

}

.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: 3vw;
}

.w-14 {
    width: 14px;
}

.w-30 {
    width: 30%;
}

/*nav*/
.w-logo {
    min-width: 50px;
    max-width: 100px;
}

/*intro*/
.intro-div {
    min-height: 100vh;
    /*background-image: url("../img/intro.webp");*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    width: 100%;
}

.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;
}

.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;
}

.bg-2 {
    background-image: url("../img/section1.webp");
    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.webp");
    background-repeat: no-repeat;
    /*background-size: 6% 100%;*/
    background-position: 0 10px;
}

.bg-orange {
    background: rgba(244, 192, 165, 0.89);
    position: absolute;
    bottom: 25px;
    width: 58%;
    left: 35px;
    padding: 16px;
}


.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);
}

.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: 100vw;*/
    z-index: 0;
}


@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: #c7bec7!important;
}




.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;
}







.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/bg7.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}.bg-build {
    background-image: url("../img/build.webp");
    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);

}




@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 + 20px);
    }
}
@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: var(--main);
        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;
    }
}

@media (max-width: 767px) {
    .bg-orange {
        width: 100%;
        left: 0;
        padding: 5px;
        bottom: 0;
    }
}


@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 + 24px);
    }
}






