@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Jost", sans-serif;
    transition: all 0.3s ease-in-out;
}

h1,h2,h3,h4,h5{
    font-family: "Playfair", serif;
}

/* NAVIGATION----------------START------------HERE-------------- */

nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    transition: all 0.5s ease-in-out;
}

nav .nav-bar{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

nav .nav-active-item{
    margin: 0 10px;
}

nav .nav-active-link{
    color: #FFF;
    text-decoration: none;
    position: relative;
    padding: 4px 0;
}

nav .nav-active-link:hover{
    color: #AC835D;
}

nav .nav-active-link::before{
    content: "";
    background: #AC835D;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center;
    transition: all 0.4s ease-in-out;
}

nav .nav-active-link:hover::before{
    transform: scale(1);
}

nav .nav-active-item.active .nav-active-link::before{
    content: "";
    background: #AC835D;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(1);
}

nav .nav-active-item.active .nav-active-link{
    color: #AC835D;
}

nav .nav-hide-btn,.nav-show-btn{
    display: none;
}

.bttn{
    border: 1px solid #FFF;
    text-decoration: none;
    width: 150px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: #FFF;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.bttn:hover{
    border-color: #AC835D;
}

.bttn span{
    position: relative;
    z-index: 1;
}

.bttn::before{
    content: "";
    background: #AC835D;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    transition: all 0.5s ease-in-out;
}

.bttn:hover::before{    
    left: 0;
}

@media only screen and (max-width: 992px){
    nav .nav-bar {
        display: block;
        width: 300px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: -100%;
        background:#14100C;
        z-index: 2;
        transition: all 0.5s ease-in-out;
    }
    nav .nav-active-item{
        margin: 25px 20px;
    }
    nav a.nav-hide {
        width: 50px;
        aspect-ratio: 1/1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #AC835D;
        color: #FFF;
        font-size: 20px;
        text-decoration: none;
        border-radius: 100px;
        margin: 15px 15px 50px auto;
    }
    nav .nav-hide-btn,.nav-show-btn{
        display: block;
    }
}
@media only screen and (max-width: 767px){
    nav .bttn{
        display: none;
    }
}

/* NAVIGATION----------------EDNS------------HERE-------------- */

/* BANNER----------------START------------HERE-------------- */

.banner{
    background-image: url(../images/banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.banner::before{
    content: "";
    background: #00000085;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.small{
    width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #AC835D;
    border-radius: 100px;
}

.banner h1{
    font-size: 80px;
    line-height: 1;
    font-weight: 800;
}

.banner h1 span{
    font-size: 65px;
    color: #AC835D;
    font-style: italic;
    font-family: "Playfair", serif;
}

@media only screen and (max-width: 1200px){
    .banner h1{
        font-size: 70px;
    }
}
@media only screen and (max-width: 992px){
    .banner .banner-content{
        width: 80% !important;
    }
}
@media only screen and (max-width: 767px){
    .banner .banner-content{
        width: 100% !important;
        margin-top: 80px;
    }
    .banner h1{
        font-size: 45px;
    }
    .banner h1 span{
        font-size: 45px;
    }
}

/* BANNER----------------EDNS------------HERE-------------- */

/* ABOUT----------------START------------HERE-------------- */

.about h1{
    color: #14100C;
    font-weight: 800;
    font-size: 45px;
    line-height: 1;
}

.about h1 span{
    color: #AC835D;
    font-style: italic;
    font-family: "Playfair", serif;
}

.a-btn{
    width: 150px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #14100C;
    color:#FFF;
    border-radius: 100px;
    text-decoration: none;
}

.a-btn:hover{
    background: #AC835D;
}

.about .img-1{
    border-radius: 10px;
}

.about .img-2{
    position: absolute;
    bottom: 20px;
    left: 20px;
    border-radius: 10px;
    animation: updown 4s linear infinite;
}
@keyframes updown {
    0%,100%{
        transform: translateY(-7px);
    }50%{
        transform: translateY(7px);
    }
}

@media only screen and (max-width: 1200px){
    .about p{
        font-size: 18px !important;
    }
}
@media only screen and (max-width: 992px){
    .about .img-1{
        height: 380px;
    }
    .about p{
        font-size: 16px !important;
    }
    .about h1 {
        font-size: 29px;
    }
}
@media only screen and (max-width: 767px){
    .about .img-1{
        height: 300px;
    }
    .about .img-2{
        width: 100px;
    }
    .about h1 {
        font-size: 32px;
    }
    .about .abt-content{
        text-align: center;
        margin: 20px 0;
    }
    .about h4{
        justify-content: center;
    }
    .about .a-btn{
        margin: 0 auto;
    }   
}

/* ABOUT----------------EDNS------------HERE-------------- */

/* AWARD----------------START------------HERE-------------- */

.award i{
    font-size: 40px;
    color: #AC835D;
}

.award h4{
    color: #14100C;
}

.award p{
    color: #7a7a7a;
    font-size: 18px;
}

@media only screen and (max-width: 992px){
    .award h4 {
        font-size: 22px;
    }
    .award i {
        font-size: 35px;
    }
    .award p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .award .award-content{
        margin: 15px 0;
    }
    .award i{
        width: 60px;
    }
}

/* AWARD----------------EDNS------------HERE-------------- */

/* MAKE----------------START------------HERE-------------- */

.make{
    background: #14100C;
    padding: 100px 0;
}

.make h1{
    font-size: 50px;
    line-height: 1;
}

.make p{
    color: #ABA59F;
    font-size: 18px;
}

.make h1 span{
    color: #AC835D;
    font-style: italic;
    font-family: "Playfair", serif;
}

@media only screen and (max-width: 992px){
    .make .make-content {
        margin: 0 !important;
    }
    .make h1 {
        font-size: 40px;
    }
    .make p {
        font-size: 14px;
    }
    .make .img-1{
        height: 350px;
    }
}
@media only screen and (max-width: 767px){
    .make .make-content {
        margin: 20px 0 !important;
        text-align: center;
    }
    .make h1 {
        font-size: 35px;
    }
    .make p {
        font-size: 14px;
    }
    .make .img-1{
        height: auto;
    }
}

/* MAKE----------------EDNS------------HERE-------------- */

/* CASE----------------START------------HERE-------------- */

.case h1{
    font-size: 50px;
    line-height: 1;
    color: #14100C;
}

.case h1 span{
    color: #AC835D;
    font-style: italic;
    font-family: "Playfair", serif;
}

.case p{
    color: #7a7a7a;
    font-size: 18px;
}

.case .case-content{
    margin-left: 110px;
}

.case .case-info{
    height: 400px;
    border-radius: 7px;
    overflow: hidden;
    position: relative;
} 

.case img{
    transition: all 0.5s ease-in-out;
    object-fit: cover;
}

.case .case-info:hover img{
    transform: scale(1.1);
}

.case .img-over{
    background: #0000003f;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: end;
}

.case .swiper-slide {
    width: 40%;
}

.case .swiper-slide:nth-child(2n) {
    width: 40%;
}

.case .swiper-slide:nth-child(3n) {
    width: 40%;
}

.case .c-btn{
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #AC835D;
    color: #FFF;
    border-radius: 100px;
    text-decoration: none;
    font-family: 20px;
    position: absolute;
    bottom: 40px;
    right: 130px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.case .c-btn:hover{ 
    background: #FFF;
    color: #AC835D;   
}

.case .case-info:hover .c-btn{
    right: 40px;
    opacity: 1;
    visibility: visible;
}

.case .swiper-pagination-horizontal {
    bottom: -30px;
    margin-bottom: 30px;
    position: relative;
}

.case span.swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    background: #AC835D;
}

@media only screen and (max-width: 1200px){
    .case .case-content {
        margin-left: 35px;
    }
}
@media only screen and (max-width: 992px){
    .case .swiper-slide {
        width: 70%;
    }  
    .case .swiper-slide:nth-child(2n) {
        width: 70%;
    }
    .case .swiper-slide:nth-child(3n) {
        width: 70%;
    }
    .case p {
        font-size: 14px;
    }
    .case h1{
        font-size: 35px;
    }
    .case .case-content {
        margin-left: 30px;
    }
}
@media only screen and (max-width: 767px){
    .case .swiper-slide {
        width: 100% !important;
    }  
    .case .case-content {
        margin: 20px 12px !important;
        text-align: center;
    }
    .case .a-btn{
        margin: 0 auto;
    }
    .case h4{
        justify-content: center;
    }
    .case .case-info{
        height: 350px;
    }
}

/* CASE----------------EDNS------------HERE-------------- */

/* VIDEO----------------START------------HERE-------------- */

.video{
    background-image: url(../images/video.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    padding: 100px 0;
    position: relative;
}

.video::before{
    content: "";
    background: #0000007c;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;    
}

.video h1{
    font-size: 50px;
}

.video h1 span{
    color: #AC835D;
    font-style: italic;
    font-family: "Playfair", serif;
}

.video .play{
    color: #FFF;
    border: 2px solid #FFF;
    width: 90px;
    aspect-ratio: 1/1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    text-transform: none;
    font-size: 28px;
    text-decoration: none;
    cursor: pointer;
}

.video .play:hover{
    color: #AC835D;
    border-color: #AC835D;
    transform: scale(0.9);
}

.overlay{
    background: #000000bd;
    backdrop-filter: blur(4px);
    width: 100%;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    display: none;
    align-items: center;
}

.overlay .over-hide{
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #AC835D;
    color: #FFF;
    margin: 0 0 0 auto;
    border-radius: 100px;
    font-size: 20px;
    text-decoration: none;
    position: absolute;
    top: -100px;
    right: 0;
    cursor: pointer;
}

.overlay iframe{
    width: 75%;
    height: 400px;
    margin: 0 auto;
    display: block;
}

@media only screen and (max-width: 1200px){
    .overlay .over-hide{
        top: -50px;
    }
}
@media only screen and (max-width: 992px){
    .overlay iframe{
        width: 100%;
    }
}
@media only screen and (max-width: 767px){
    .video h1 {
        font-size: 40px;
    }
    .overlay iframe{
        height: 300px;
    }
    .overlay .over-hide{
        top: -80px;
        right: 10px;
    }
}

/* VIDEO----------------EDNS------------HERE-------------- */

/* LEGAL----------------START------------HERE-------------- */

.legal h1{
    color: #14100C;
    font-size: 50px;
    line-height: 1;
}

.legal h1 span{
    color: #AC835D;
    font-style: italic;
    font-family: "Playfair", serif;
}

.legal .legal-info{
    background: #F7F6F4;
    padding: 50px 10px;
    border-radius: 5px;
}

.legal .legal-info:hover{
    background: #14100C;
    transform: translateY(-3px);
}

.legal .legal-info:hover h4{
    color: #FFF;
}

.legal .legal-info small{
    font-size: 60px;
    color:#AC835D;
}

.legal h4{
    color: #14100C;
}

@media only screen and (max-width: 1200px){
    .legal .legal-info h4 {
        font-size: 22px;
    }
    .legal h1{
        font-size: 40px;
    }
}
@media only screen and (max-width: 992px){
    .legal p{
        font-size: 16px !important;
    }
    .legal h1{
        font-size: 35px;
    }
    .legal .legal-info small {
        font-size: 40px;
    }
    .legal .legal-info {
        padding: 20px 5px;
    }
    .legal .legal-content{
        margin: 0 !important;
    }
}
@media only screen and (max-width: 767px){
    .legal .legal-content{
        margin: 20px 0 !important;
        text-align: center;
    }
    .legal h4{
        justify-content: center;
    }
    .legal .a-btn{
        margin: 0 auto;
    }
    .legal .legal-info h4 {
        font-size: 20px;
    }
}

/* LEGAL----------------EDNS------------HERE-------------- */

/* TESTIMONIAL----------------START------------HERE-------------- */

.testimonial{
    background: #F7F6F4;
    padding: 100px 0;
}

.testimonial h1{
    color: #14100C;
    font-size: 50px;
}

.testimonial h1 span{
    color: #AC835D;
    font-style: italic;
    font-family: "Playfair", serif;
}

.testimonial .test-content{
    background: #FFF;
    padding: 30px;
    border-radius: 10px;
}

.testimonial i{
    color: #FD961E;
}

@media only screen and (max-width: 767px){
    .testimonial h1{
        font-size: 35px;
    }
}

/* TESTIMONIAL----------------EDNS------------HERE-------------- */

/* TEAM----------------START------------HERE-------------- */

.team h1{
    color: #14100C;
    font-size: 50px;
}

.team h1 span{
    color: #AC835D;
    font-style: italic;
    font-family: "Playfair", serif;
}

.team .team-info{
    border-radius: 10px;
    overflow: hidden;
}

.team .team-info:hover .icns{
    bottom: 20px;
} 

.team .team-info:hover img{
    transform: scale(1.1);
} 

.team .icns{
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #AC835D;
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.team .icn{
    color: #FFF;
    margin: 0 8px;
    text-decoration: none;
}

@media only screen and (max-width: 767px){
    .team h1{
        font-size: 35px;
    }
}

/* TEAM----------------EDNS------------HERE-------------- */

/* BLOG----------------START------------HERE-------------- */

.blog{
    background: #F7F6F4;
    padding: 100px 0;
}

.blog h1{
    color: #14100C;
    font-size: 50px;
}

.blog h1 span{
    color: #AC835D;
    font-style: italic;
    font-family: "Playfair", serif;
}

.blog .overflow-hidden{
    border-radius: 10px 10px 0 0;
}

.blog .blog-content:hover img{
    transform: scale(1.1);
}

.blog .blog-content:hover{
    transform: translateY(-5px);
}

.blog .blog-txt{
    background: #FFF;
    padding: 20px;
    border-radius: 0 0 10px 10px;
}

.blog h3{
    color:#14100C;
    font-size: 25px;
    margin: 10px 0;
}

.blog .b-btn{
    color:#14100C;
    text-decoration: none;
}

.blog .b-btn:hover{
    color: #AC835D;
}

@media only screen and (max-width: 767px){
    .blog h1{
        font-size: 34px;
    }
}

/* BLOG----------------EDNS------------HERE-------------- */

/* GET----------------START------------HERE-------------- */

.get{
    background-image: url(../images/get.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    padding: 100px 0;
    position: relative;
}

.get::before{
    content: "";
    background: #00000085;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.get h1{
    font-size: 40px;
}

.get h1 span{
    color: #AC835D;
    font-style: italic;
    font-family: "Playfair", serif;
}

.get small{ 
    width: 60px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #AC835D;
    color: #FFF;
    font-size: 20px;
    border-radius: 100px;
}

@media only screen and (max-width: 1200px){
    .get h1 {
        font-size: 35px;
    }
}
@media only screen and (max-width: 992px){
    .get h1 {
        font-size: 30px;
    }
    .get h6{
        font-size: 20px !important;
    }
    .get h5{
        font-size: 20px !important;
    }
}
@media only screen and (max-width: 767px){
    .get h1 {
        font-size: 30px;
        text-align: center;
    }
    .get .get-info{
        justify-content: center !important;
        margin: 15px 0;
    }
}

/* GET----------------EDNS------------HERE-------------- */

/* FOOTER----------------START------------HERE-------------- */

.footer{
    background: #14100C;
    padding: 100px 0 60px 0;
}

.footer p{
    color: #9DA59F;
}

.footer .icn{
    background: #AC835D;
    width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-decoration: none;
    margin-right: 8px;
    border-radius: 100px;
}

.footer .icn:hover{
    background: #FFF;
    color: #AC835D;
}

.footer form{
    border: 1px solid #2D251C;
    width: 100%;
    height: 60px;
    border-radius: 100px;
}

.footer #email{
    width: 90%;
    height: 45px;
    background: transparent;
    border: none;
    padding: 0 10px;
}

.footer #email:focus{
    outline: none;
}

.footer .f-btn{
    background: #AC835D;
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-decoration: none;
    border-radius: 100px;
    margin-right: 3px;
}

.footer .f-btn:hover{
    background: #FFF;
    color: #AC835D;
}

.pre-footer{
    background: #14100C;
    border-top: 1px solid #2D251C;
}

.pre-footer li{
    margin: 0 10px;
}

.pre-footer li a{
    color: #FFF;
    text-decoration: none;
}

.pre-footer li a:hover{
    color: #AC835D;
}

@media only screen and (max-width: 767px){
    .footer .footer-content{
        margin: 20px 0;
    }
    .pre-footer .container{
        flex-direction: column;
    }
    .pre-footer li a {
        font-size: 12px;
    }
}

/* FOOTER----------------EDNS------------HERE-------------- */

/* ABOUT-----------------PAGE----------------START------------HERE-------------- */

/* BANNER_2----------------STTART------------HERE-------------- */

.banner-2{
    background-image: url(../images/banner-2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    height: 370px;
    position: relative;
    display: flex;
    align-items: center;
}

.banner-2::before{
    content: "";
    background: #0000008a;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-2 h1{
    font-size: 60px;
}

.banner-2 h1 span{
    color: #AC835D;
    font-style: italic;
    font-family: "Playfair", serif;
}

@media only screen and (max-width: 767px){
    .banner-2 h1 {
        font-size: 48px;
    }
}

/* BANNER_2----------------EDNS------------HERE-------------- */

/* OUR----------------START------------HERE-------------- */

.our h1{
    color: #14100C;
    font-size: 50px;
}

.our h1 span{
    color: #AC835D;
    font-style: italic;
    font-family: "Playfair", serif;
}

@media only screen and (max-width: 767px){
    .our h1 {
        font-size: 40px;
    }
    .our .our-content{
        margin: 15px 0;
    }
}

/* OUR----------------EDNS------------HERE-------------- */

/* FAQ----------------START------------HERE-------------- */

.faq{
    background: #F7F6F4;
    padding: 100px 0;
}

.faq h1{
    font-size: 50px;
    color: #14100C;
}

.faq h1 span{
    color: #AC835D;
    font-style: italic;
    font-family: "Playfair", serif;
}

.faq .accordion-button:not(.collapsed) {
    background: #AC835D;
    color: #FFF;
    box-shadow: none;
}

.faq .accordion-item{
    background: transparent;
    box-shadow: none;
    border: 1px solid #E9DED3;
    margin: 10px 0;
}

.faq .accordion-button {
    background: transparent;
    box-shadow: none !important;
    border: 1px solid #E9DED3;
}

.faq .accordion-button:not(.collapsed)::after{
    background-image: url(../images/faq-arrow.svg);
}

@media only screen and (max-width: 767px){
    .faq h1 {
        font-size: 35px;
    }
}

/* FAQ----------------EDNS------------HERE-------------- */

/* CONTACT----------------START------------HERE-------------- */

.contact h1{
    font-size: 50px;
    color: #14100C;
}

.contact h1 span{
    color: #AC835D;
    display: block;
    font-style: italic;
    font-family: "Playfair", serif;
}

.contact .contact-info small{
    width: 70px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F7F6F4;
    color: #AC835D;
    text-decoration: none;
    font-size: 30px;
    border-radius: 100px;
} 

.contact #contact-content-2{
    background: #14100C;
    padding: 50px 30px;
    border-radius: 10px;
}

.contact h2{
    font-size: 40px;
}

.contact h2 span{
    color: #AC835D;
    font-style: italic;
    font-family: "Playfair", serif;
}

.contact #name{
    border: 1px solid #2D251C;
    width: 100%;
    height: 50px;
    padding: 0 10px;
    background: transparent;
    border-radius: 5px;
    margin-bottom: 15px;
    color: #FFF;
}

.contact #name:focus{
    outline: none;
}

@media only screen and (max-width: 992px){
    .contact h1{
        font-size: 35px;
    }
    .contact #contact-content-2{
        padding: 40px 15px;
    }
    .contact h2{
        font-size: 35px;
    }
}
@media only screen and (max-width: 767px){
    .contact h1{
        font-size: 30px;
    }
    .contact .contact-info{
        text-align: left;
    }
    .contact .contact-content{
        text-align: center;
        margin: 20px 0;
    }
    .contact h4{
        justify-content: center;
    }
    .contact .bttn{
        margin: 0 auto;
    }
}

/* CONTACT----------------EDNS------------HERE-------------- */

/* ABOUT-----------------PAGE----------------EDNS------------HERE-------------- */