:root {
    /* Colors */
    --primary-color: #9A7026;
    --secondary-color: #939393;
    --third-color: #B58C67;

    --dark-text: #444444;
    --light-text: #B5B5B5;

    /* Typography */
    --primary-font: "Poppins", sans-serif;
    --secondary-font: 'trajan_proregular';
    --tagline-font: 'pristinaregular';

    --white: #fff;
    --black: #000000;

    --transparent: transparent;

    --h2-size: clamp(2.188rem, 1.678vw + 1.112rem, 3.125rem);    /* 50 > 35 */
    --h3-size: clamp(1.375rem, 0.895vw + 0.801rem, 1.875rem);    /* 30 > 22 */
    --font-20: clamp(1.125rem, 0.224vw + 0.982rem, 1.25rem); /* 20 > 18 */
    }

@font-face {
    font-family: 'trajan_proregular';
    src: url('../fonts/trajanpro-regular-webfont.woff2') format('woff2'),
        url('../fonts/trajanpro-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'pristinaregular';
    src: url('../fonts/pristina-webfont.woff2') format('woff2'),
        url('../fonts/pristina-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    font-size: 16px;
}

body {
    background-color: var(--black);
    font: normal 15px/1.7 var(--primary-font);
    color: var(--light-text);
    scroll-behavior: smooth;
    min-width: 320px;
}

a {
    text-decoration: none;
    color: inherit;
}

p{
    margin-bottom: 25px;
}

ul {
    list-style: none;
}

strong {
    font-weight: 600;
}

button,
a {
    cursor: pointer;
}

/* Global Typography */
h2,h3,h4,h5,h6 {
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--secondary-font);
    font-weight: normal;
    color: var(--white);
}

h2{font-size: var(--h2-size);}
h3{font-size: var(--h3-size);}

.btn {
    display: inline-block;
    padding: 22px 50px;
    background: var(--white);
    border: solid 2px var(--primary-color);
    color: var(--black);
    transition: all 0.2s ease;
    position: relative;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
}

.btn.secondry-btn {
    background: var(--black);
    color: var(--secondary-color);
    color: var(--white);
}

.btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Container */
.container {
    width: 92%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Form's style  */

.form-row {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    position: relative;
}

.form-row .form-col {
    min-width: 250px;
    flex: 1;
}

.form-row .form-col label {
    display: block;
    margin-bottom: 6px;
}

.form-row .form-col label em {
    color: red;
}

.default-input {
    background-color: var(--white);
    border: 0 none;
    border-bottom: solid 1px var(--black);
    padding: 12px;
    display: block;
    width: 100%;
    resize: none;
    font-family: var(--primary-color);
    font-size: 1em;
}

.default-input::placeholder {
    color: #6A6A6A;
    font-size: 15px;
    opacity: 1;
}

/* Page style  */

.pageWrapper{
    position: relative;
}

#header{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

#header h1{
    display: inline-block;
}

/* Top Banner  */
.banner-section{
    position: relative;
}

.bannerSlider{
    z-index: 0;
}

.bannerSlider .bannerItem{
    min-height: 100vh;
    display: flex !important;
    align-items: center;
    padding: 180px 0 100px ;
    background-size: cover;
    background-position: center center;
}

.bannerSlider .bannerItem h2{
    width: 54%;
    font-size: clamp(2.875rem, 4.474vw + 0.006rem, 5.375rem); /* 86 > 46 */
    color: white;
    font-weight: normal;
}

.banner-section .sliderNav{
    position: absolute;
    z-index: 1;
    width: 100%;
    bottom: 40px;
    left: 0;
}

.banner-section .arrowsWrapper{
    display: flex;
    justify-content: space-between;
}

.banner-section .arrowsWrapper button{
    background-color: var(--transparent);
    border: 0 none;
    color: var(--white);
    font-family: var(--secondary-font);
    font-size: var(--font-20);
    position: relative;
    padding: 10px 20px;
}

.banner-section .arrowsWrapper button span{
    position: relative;
    z-index: 1;
}

.banner-section .arrowsWrapper button::after{
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease;
}

.banner-section .arrowsWrapper button.slick-next::after{
    right: 0;
    left: auto;
}

.banner-section .arrowsWrapper button:hover::after{
    width: 100%;
}

/* About Section  */

.aboutUs-section{
    background: url(../images/aboutBG.png) right bottom 20% no-repeat;
    background-size: 250px auto;
    padding: 100px 0;
}

.aboutUs-section .container{
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.aboutUs-section .image-wrapper{
    width: 35%;
    position: relative;
}

.aboutUs-section .image-wrapper::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: solid 2px var(--primary-color);
    top: 25px;
    right: 25px;
}

.aboutUs-section .image-wrapper img{
    position: relative;
    width: 100%;
}

.aboutUs-section .content-section{
    flex: 1;
}

.aboutUs-section .content-section p:first-of-type {
    font-size: var(--font-20);
}

.aboutUs-section .content-section h3{
    padding-top: 20px;
}

.tagLine{
    font-family: var(--tagline-font);
    color: var(--primary-color);
    font-size: clamp(1.25rem, 1.119vw + 0.533rem, 1.875rem); /* 30 > 20 */
}

/* whyChoose Section  */

.whyChoose-section{
    background-color: #232323;
    padding: 140px 0 80px;
    position: relative;
}

.whyChoose-section::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 60px;
    top: 0;
    left: 0;
    background-color: var(--black);
    z-index: 0;
}

.whyChoose-section .container{
    z-index: 1;
}

.whyChoose-section .content-section{
    width: 38%;
}

.whyChoose-section .image-wrapper{
    position: absolute;
    width: 55%;
    height: calc(100% - 100px);
    top: 0;
    right: 0;
    display: flex;
}

.whyChoose-section .image-wrapper img{
    flex: 1;
    object-fit: cover;
    object-position: center;
}


/* testimonials section */
.testimonials-section{
    padding: 120px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    color: var(--white);
}

.testimonials-slider{
    padding: 30px 150px 0;
    position: relative;
}
.testimonials-slider::before{
    content: "";
    width: 120px;
    aspect-ratio: 1/1;
    background: url(../images/quote.svg) no-repeat;
    background-size: contain;

    position: absolute;
    left: 0;
    top: 0;
}

.testimonials-slider p {
    line-height: 2.3;
}

.testimonial-author{
    padding-top: 30px;
}
.testimonial-author strong{
    font-weight: normal;
    color: var(--third-color);
}

.testimonials-slider .slick-dots{
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.testimonials-slider .slick-dots button{
    background: var(--transparent);
    border: solid 2px white;
    height: 12px;
    width: 12px;
    font-size: 0;
    transform: rotate(0deg) scale(1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonials-slider .slick-dots .slick-active button{
    border-radius: 0;
    border-color: var(--third-color);
    transform: rotate(135deg) scale(1.04);
}

/* ContactUs section */
.ContactUs-section{
    padding: 90px 0 280px;
    background-position: center 300px;
    background-repeat: no-repeat;
    background-size: cover ;
}

.ContactUs-section .container{
    display: flex;
    gap: 60px;
    position: relative;
}

.headLine{
    position: absolute;
    top: -70px;
    left: 0;
    font-size: clamp(5rem, 6.823vw + 0.625rem, 8.813rem); /* 141 > 80 */
    font-weight: normal;
    color: rgba(255,255,255,0.05);
    font-family: var(--secondary-font);
    line-height: 1;
    text-transform: uppercase;
    z-index: 0;
}

.ContactUs-section .left-side,
.ContactUs-section .right-side{
    position: relative;
    z-index: 1;
}

.ContactUs-section .left-side{
    width: 35%;
    padding-top: 90px;
}

.ContactUs-section h2{
    margin-bottom: 0;
}

.ContactUs-section small{
    font-size: 15px;
    color: var(--third-color);
}

.ContactUs-section .right-side{
    flex: 1;
    background-color: var(--white);
    padding: 45px 45px 55px;
}

.form-row:last-of-type{
    margin-top: 50px;
}

/* app section */
.app-section{
    padding: 90px 0 ;
    background-color: var(--white);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 200px auto;
    overflow: hidden;
}

.app-section > .container{
    display: flex;
    gap: 60px;
}

.app-section .left-side{
    width: 45%;
    position: relative;
}

.app-section .image-wrapper{
    position: absolute;
    top: 0;
}

.app-section .content-section{
    flex: 1;
    padding-top: 90px;
}

.app-section h2{
    color: var(--black);
    max-width: 90%;
}

.app-section p{
    color: var(--dark-text);
    max-width: 80%;
    margin-bottom: 35px;
}

.app-icon{
    display: flex;
    gap: 40px;
    align-items: center;
}

.apps-stores{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* bottomBanner section */
.bottomBanner-section{
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 70px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.bottomBanner-section h2{
    color: var(--black);
    max-width: 720px;
    width: 45%;
}

/* footer  */

#footer{
    padding: 70px 0 40px;
}

#footer a:hover{
    color: var(--white);
    text-decoration: underline;
}

.footer-main .container{
    display: flex;
}

.footer-main .container .footer-col{
    flex: 1;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    border-right: solid 1px #6E7071;
    padding: 30px;
}

.footer-main .container .footer-col:last-child{
    border: 0 none;
}

.footer-main h3{
    font-size: var(--font-20);
}

.footer-main .footer-address{
    display: block;
    max-width: 200px;
}

.footer-bottom{
    /* border-top: solid 1px #6E7071; */
    padding-top: 30px;
    position: relative;
}

.footer-bottom::before{
    content: "";
    position: absolute;
    background-color: #6E7071;
    width: 100%;
    height: 1px;
    left: 0;
    top: calc(50% + 5px);
}

.footer-bottom .container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.social-links{
    display: flex;
    margin-top: 130px;
}
.social-links li {
    display: flex;
    align-items: center;
    margin-right: 10px;
}
.social-links li::before{
    content: "";
    display: block;
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background-color: var(--light-text);
    margin-right: 8px;
}

.footer-logo{
    position: relative;
    z-index: 1;
}

.copyWrite{ 
    padding-left: 15px;
    margin-top: 130px;
}

@media (max-width: 1919.9px) {}

@media (max-width: 1599.9px) {}

@media (max-width: 1199.9px) {
    .app-section .content-section{
        padding-top: 0;
    }
}

@media (max-width: 1023.9px) {
    
    .aboutUs-section{
        padding-block: 70px;
    }

    .footer-bottom .container,
    .app-section > .container,
    .ContactUs-section .container,
    .aboutUs-section .container{
        flex-direction: column;
    }

    .ContactUs-section .left-side,
    .app-section > .container > *
    .ContactUs-section .container > *,
    .whyChoose-section .content-section,
    .aboutUs-section .container > *{
        width: 100%;
    }

    .aboutUs-section .container > .image-wrapper{
        max-width: 340px;
    }

    .whyChoose-section{
        padding-block: 70px ;
    }

    .whyChoose-section::before{
        display: none;
    }

    .whyChoose-section .container{
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .whyChoose-section .content-section{
        order: 2;
    }

    .whyChoose-section .image-wrapper{
        position: static;
        width: auto;
        height: auto;
    }


    .testimonials-slider{
        padding-inline: 0px;
    }

    .testimonials-slider::before{
        width: 60px;
        top: -30px;
    }

    .ContactUs-section{
        padding-block: 70px;
        background-position: center center;
    }

    .headLine{
        color: rgba(255,255,255,0.2);
        text-align: center;
        position: static;
    }

    .ContactUs-section .left-side{
        padding: 0;
    }

    .form-row .form-col{
        min-width: 200px;
    }
    .ContactUs-section .right-side{
        padding-inline: 20px;
    }

    .app-section .left-side{
        order: 2;
        max-width: 340px;
        width: 100%;
    }
    .app-section .image-wrapper{
        position: static;
    }

    .app-section .content-section{
        padding-block: 0;
    }

    .footer-main .container{
        flex-wrap: wrap;
    }

    .footer-main .container .footer-col{
        border-right: 0;
        border-block-end: solid 1px #6E7071;
        min-width: 250px;
    }

    .footer-main .container .footer-col:last-child{
        border-block-end: 0 none;
    }

    .footer-bottom{
        border-top:  solid 1px #6E7071;
    }

    .footer-bottom::before{
        display: none;
    }
    .footer-bottom .container{
        position: relative;
        height: 170px;
        padding-left: 180px;
        justify-content: center;
        gap: 10px;
        align-items: center;
    }
    .social-links,.copyWrite{
        margin: 0; 
        padding: 0;
        flex-wrap: wrap;
    }

    .footer-logo{position: absolute;
        left: 0;
        top: 20px;
        width: 150px;
    }

}

@media (max-width: 767.9px) {}

@media (max-width: 576.9px) {

    .container,
    .bottomBanner-section h2{
        width: 100%;
    }

    #header h1{
        max-width: 100px;
    }

    .bannerSlider .bannerItem{
        min-height: 600px;
        padding-block: 120px;
    }

    .bannerSlider .bannerItem h2{
        font-size: 35px;
        width: 100%;
    }

    .btn{
        padding: 15px 35px ;
    }

    .testimonials-section{
        padding-block: 70px;
    }

    .ContactUs-section .container{
        gap: 40px;
    }

    .headLine{font-size: 55px;}

    
    .app-section h2,
    .app-section p{
        max-width: 100%;
    }

    #footer{
        padding-block-start: 30px;
    }

    .footer-bottom .container{
        padding-inline: 20px;
        height: auto;
        gap: 10px;
    }
    
    .footer-logo{
        position: static;
        order: 1;
        margin-bottom: 20px;
    }

    .social-links{
        order: 2;
    }

    .copyWrite{
        order: 3;
    }

}