@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root{
    --primary: #7153ff;
    --light: #dca74a;
    --extraLight: #d28c13;
    --dark: #272624;
    --font-one: "Plus Jakarta Sans", sans-serif;
    --font-two: "Libre Baskerville", serif;
}
body {
    margin: 0;
    font-family: var(--font-one);
    background: #fff;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #333;
    padding: 0;
    margin: 0;
}
h1,h2,h3,h4,h5,h6{
    font-family: var(--font-two);
}
*{    
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.wrapper{
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
}

.site-btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    padding: 10px 24px;
    /* border-radius: 6px; */
    background-color: var(--extraLight);
    outline: none !important;
    box-shadow: none !important;
    border: 2px solid var(--extraLight);
    cursor: pointer;
    transition: 500ms;
    text-decoration: none;
}
.site-btn img{
    display: inline-flex;
    height: 16px;
    width: auto;
    transition: 500ms;
}
.site-btn:hover{
    background-color: var(--dark);
    border-color: var(--dark);
}
.site-btn.border{
    color: var(--extraLight);
    background: transparent;
}
.site-btn.border:hover{
    color: #fff;
    background: var(--extraLight);
    border-color: var(--extraLight);
}
.site-btn.border:hover img{
    filter: brightness(0) invert(1);
}
.btnset{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0 0 0;
}


/* Header */
.header{
    background-color: var(--dark);
    position: sticky;
    top: 0;
    z-index: 2;
}
.header-c{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 18px 0;
    gap: 16px;
}
.header .logo{
    display: inline-flex;
    align-items: baseline;
    font-size: 28px;
    line-height: 32px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    gap: 8px;
}
.header .logo img{
    display: block;
    height: 60px;
    width: auto;
}
.navigation{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: auto;
    gap: 24px;
}
.navigation li{
    display: inline-flex;
}
.navigation a{
    display: inline-flex;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    text-decoration: none;
    transition: 500ms;
    position: relative;
}
.navigation a:before{
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%,0);
    width: 0%;
    height: 1.5px;
    border-radius: 100px;
    background-color: var(--light);
    transition: 500ms;
}
.navigation a:hover,
.navigation a.active{
    color: var(--light);
}
.navigation a:hover:before,
.navigation a.active:before{
    width: 100%;
}


/* Hero */
.banner{
    display: block;
    background: url('../images/banner.jpg') no-repeat bottom center;
    background-size: cover;
    position: relative;
    color: #fff;
}
.banner:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}
.banner-c{
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 90px 0;
    min-height: 700px;
    position: relative;
    z-index: 1;
}
.banner-box{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}
.banner-txt{
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    width: 600px;
    max-width: 60%;
}
.banner-right{
    display: flex;
    flex-flow: column;
    gap: 24px;
    margin-left: auto;
    width: 300px;
}
.banner-txt .sm-txt{
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #ffe7bc;
}
.banner-txt h1{
    font-size: 38px;
    line-height: 48px;
    font-weight: 600;
    margin: 0;
    color: var(--light);
}
.banner-txt p{
    font-size: 18px;
    line-height: 32px;
    margin: 16px 0 0 0;
}
.banner-txt .site-btn{
    margin-top: 24px;
}
.banner-btns{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.cta-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #fffaf0;
    padding: 24px;
    text-align: center;
    color: #000000;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    min-height: 160px;
    cursor: pointer;
    box-shadow: 0px 0px 51px 0px rgba(0, 0, 0, 0.38);
    position: relative;
    text-decoration: none;
    transition: 500ms;
}
.cta-box:before{
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    border: 2px solid var(--extraLight);
    transition: 500ms;
}
.cta-box:hover{
    background-color: var(--extraLight);
    color: #fff;
}
.cta-box:hover:before{
    border-color: #fff;
}

.home-section{
    padding: 100px 0;
}
.home-section.help-section{
    background: url('../images/image-1.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 120px 0;
}
.home-section.help-section:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0,0,0,0.7);
}
.home-section.help-section .wrapper{
    position: relative;
    z-index: 1;
}
.home-section.meet-us{
    background-color: #e8e6e6;
}
.home-section.testimonials{
    background-color: var(--dark);
}
.home-section h2{
    font-size: 34px;
    line-height: 42px;
    font-weight: 600;
    color: var(--light);
    margin: 0;
    text-transform: uppercase;
}
.tl-container{
    max-width: 600px;
    margin: 0 auto 40px auto;
    text-align: center;
}
.tl-container:last-child{
    margin-bottom: 0;
}
.home-section p{
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    margin: 10px 0 0 0;
    color: #636363;
}

.service-row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}
.service-row .colm{
    display: flex;
    flex-flow: column;
    width: 33.333333%;
    padding: 12px;
}
.service-box{
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
    background-color: #9c7e49;
    /* border-radius: 16px; */
    padding: 24px;
    color: #fff;
}
.service-box .icon{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #684b16;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    margin: 0 0 24px 0;
}
.service-box img{
    display: inline-flex;
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.service-box h3{
    display: block;
    margin: 0;
    font-size: 21px;
    line-height: 28px;
}
.service-box p{
    margin: 12px 0 0 0;
    font-size: 15px;
    line-height: 23px;
    color: #fff;
}


.home-section.help-section .tl-container{
    max-width: 800px;
}
.home-section.help-section .tl-container p,
.home-section.testimonials .tl-container p{
    color: #dadada;
}


.about-box{
    display: flex;
    flex-wrap: wrap;
    /* align-items: flex-start; */
}
.about-box .image{
    display: block;
    width: 60%;
    min-height: 100%;
    background: #000;
}
.about-box .image img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.about-box .content{
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    padding: 60px 0 60px 40px;
    background-color: #fff;
    width: calc(40% + 100px);
    margin-left: -100px;
    margin-top: 70px;
    margin-bottom: 70px;
    align-self: center;
    position: relative;
    z-index: 1;
}
.about-box .content p{
    font-size: 16px;
    line-height: 24px;
    margin: 16px 0 0 0;
}
.about-box .content .site-btn{
    margin: 32px 0 0 0;
}
.about-box.reverse{
    flex-flow: row-reverse;
}
.about-box.reverse .content{
    margin: 0 -100px 0 0;
}

.testimonials-data{
    display: flex;
    flex-flow: column;
    color: #fff;
    font-size: 28px;
    line-height: 48px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}
.testimonials-data .nm{
    display: block;
    margin: 28px 0 0 0;
    font-size: 18px;
    line-height: 24px;
    color: var(--light);
}

.contact-container{
    max-width: 800px;
    margin: 0 auto;
}
.contact-row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.contact-row .colm{
    display: flex;
    flex-flow: column;
    width: 33.333333%;
    padding: 15px;
}
.contact-box{
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    color: #404040;
}
.contact-box h3{
    display: block;
    margin: 0;
    font-size: 21px;
    line-height: 28px;
}
.contact-box p{
    margin: 12px 0 0 0;
    font-size: 15px;
    line-height: 26px;
    color: #6f6f6f;
}


.footer{
    background-color: var(--dark);
}
.copyright{
    display: block;
    text-align: center;
    padding: 20px 0;
    color: #a2a2a2;
    font-size: 15px;
    line-height: 22px;
}