


:root {
 
/* colors */

    --cream-bg: #F9F3EC;
    --green:#00A676;
    --yellow:#FFD345;


/* fonts */
    --primary-font: "neue-haas-grotesk-display", sans-serif;
    --secondary-font: "Roboto Mono", monospace;
    

/* transitions */

--btn-hover: all 0.2s ease-in-out;




/* borders */
    --border-main: solid 1px #000000;
    --ruler:solid 1px  #FF9F9F50;





/* Shadows */

--shadow-green: -2px 2px 0 0 #00412F40;
--shadow-green-2: -6px 6px 0 0 #00412F40;
--shadow-white: -4.5px 4.5px 0 0 #00000040;
--shadow-input: -2.5px 2.5px 0 0 rgba(103, 79, 0, 0.25);

}

body{
    background-color: var(--cream-bg);
    font-family: var(--primary-font);
    margin: 0 32px;
    /* min-height: 180vh; */
}

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

button{
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%
}

h1{
    line-height: 100%;
    margin: 0;
}

h2{
    line-height: 100%;
    margin: 0;
    font-size: 48px;
    margin-bottom: 28px;
}

p{
    line-height: 110%;
    margin: 0;
}

.btn-green button{
    border: solid 1px black;
    padding: 12.5px 16px;
    transition: var(--btn-hover);
    cursor: pointer;


}

.btn-green{
    background-color: var(--green);
    display: inline-block;
    padding: 4px;
    box-shadow: -2px 2px 0 0 #00412F40;
    transition: var(--btn-hover);
    cursor: pointer;
}


.btn-green:hover{
    background-color: #008962;
    /* color: white; */
    transition: var(--btn-hover);
} 



.btn-yellow button{
    border: solid 1px black;
    padding: 12.5px 16px;
    transition: var(--btn-hover);
    cursor: pointer;


}







.btn-yellow{
    background-color: var(--yellow);
    display: inline-block;
    padding: 4px;
    box-shadow: -2px 2px 0 0 #00000040;
    transition: var(--btn-hover);
    cursor: pointer;
}


.btn-yellow:hover{
    background-color: #dbb63b;
    /* color: white; */
    transition: var(--btn-hover);
} 


.txt-red{
    color: #FF7B7B;
    font-family: var(--secondary-font);
    font-size: 12px; 
}


/* Nav */

.nav-container{
    margin-top: 24px;
    background-color: #FFFFFF;
    position: fixed;
    /* top: 24px; */
    left: 32px;
    right: 32px;
    z-index: 1000;
    padding: 5px;
    box-shadow: var(--shadow-white);
}

.nav-container nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border: var(--border-main);
}

.nav-logo{
    min-width: 100px;
    height: auto;
}


/* Hero */

.hero-content{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    align-self: flex-end;
    margin-left: 100px;
}


.hero-head{
    font-size: 56px;
    text-align: right;
    margin: 72px 0 8px 0;
    font-weight: 700;
}

.hero-text{
    text-align: right;
    max-width: 35ch;
    margin-bottom: 20px;
}





.hero-illustrations{
    display: flex;
    flex-direction: row;
    /* justify-content: flex-end; */
    gap: 80px;
    position: relative;
   
}

.hero-illustrations-ruler{
    position: absolute;
    top: 57px;
    width: 100%;
    height: 1px;
    background-color: #FF9F9F50;

}


.hero-illustration{
    min-width: 250px;
    height: auto;
    border-left: var(--ruler);
    border-right: var(--ruler);
     padding: 60px 0;
}

.hero-illustration-1{
    border-left: none;
}

.hero-illustration-3{
    border-right: none;
}


.hero-col-1{
    display: flex;
    flex-direction: column;
    gap: 100px;
    align-items: flex-start;
}






.hero-col-2 {
    display: flex;
    align-items: center;
    height: 100%;
    border-left: var(--ruler);
    border-right: var(--ruler);

}

.hero-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* background: rgba(0, 153, 255, 0.5); */
    position: relative;
}

.hero-image img {
    height: 76.84vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.hero-container{
    display: grid;
    grid-template-columns: 7fr 5fr;
    column-gap: 5vw;
    position: relative;
    padding-top: 120px;
}



.img-text-1{
    position: absolute;
    bottom: 64px;
    right: 4px;
}

.hero-btm-ruler{
    /* border-bottom: var(--ruler); */
    position: absolute;
    bottom: 60px;
    width: 100%;
    height: 1px;
    background-color: #FF9F9F50;
}

@media (max-width: 768px) {
    body{
        margin: 0 16px;
    }

    .divider{
        margin: 96px -16px;
    }

    .divider-container{
        padding: 0 16px;
    }

    .products-section,
    .banner-form-section,
    .footer-section{
        margin-left: -16px;
        margin-right: -16px;
    }

    .footer-section{
        padding: 80px 16px;
    }

    .hero-illustrations{
        gap: 40px;
    }

    .hero-head{
        font-size: 38px;
    }

    .hero-image img {
        height: auto;
    }

    .img-text-1{
        bottom: 36px;
    }

    .hero-btm-ruler{
        bottom: 31px;
    }

    .hero-illustrations-ruler{
        top: 29px;
    }

    .hero-illustration{
        min-width: 125px;
        padding: 30px 0;
    }
}



/* hero-section-mob */


.hero-section-mob{
    display: none;
}

@media (max-width: 426px){

    .hero-section{
        display: none;
    }
    .hero-section-mob{
        margin: 0 -16px;
        padding: 0 16px;
        display: block;
        overflow-x: clip;
              
    }

    .hero-container-mob{
        display:flex;
        flex-direction: column;
        padding-top: 25vh;  
        align-items: center;
        border-left: var(--ruler);
        border-right: var(--ruler);
    }

    .hero-image-mob{
        /* border-bottom: var(--ruler); */
        width: 100%;
        display: flex;
        justify-content: center;
        padding-bottom: 24px;
        position: relative;
    }

    .divider-hero-mob{
        position: absolute;
        bottom: 0;
        left: -16px;
        right: -16px;
        width: auto;
        height: 1px;
        background-color: #FF9F9F50;
        margin: 0;
    }

    .hero-image-mob img{
        max-height:350px;
        margin: 0 auto;
    }
    .img-text-1-mob{
        position: absolute;
        bottom: 2px;
        right: 4px;
    }

    .hero-content-mob{
        padding: 32px 16px ;
        position: relative;
    }
    .hero-head-mob{
        margin-bottom: 8px;
    }

     .hero-text-mob{
        margin-bottom: 16px;
    }

    .hero-illustration-mob{
        width: 312px;
        width: 100%;
        position: relative;
        padding-bottom: 48px;
    }

    .hero-illustration-mob .divider-hero-mob{
        bottom: 48px;
    }


}

/* Divider */

.divider{
    margin: 48px -32px;
    border-bottom: var(--ruler);

}

.divider-container{
    display: flex;
    justify-content: flex-end;
    gap: 18px; 
    padding: 0 32px;
    margin-bottom: 2px;
}

.divdr-illustrations{
    display: flex;
    gap: 8px;
    width: auto;
    margin-left: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.divdr-illustration{
    max-width: 18px;
}

.logo-slider-section {
    padding: 0;
    overflow: hidden;
    margin: 0 24px;
}

.logo-slider-shell {
    /* border-top: var(--ruler); */
    /* border-bottom: var(--ruler); */
    padding: 24px 0;
    overflow: hidden;
    position: relative;
    /* background: rgba(255, 255, 255, 0.35); */
}

.logo-slider-shell::before,
.logo-slider-shell::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.logo-slider-shell::before {
    left: -10px;
    background: linear-gradient(to right, var(--cream-bg), transparent);
}

.logo-slider-shell::after {
    right: -10px;
    background: linear-gradient(to left, var(--cream-bg), transparent);
}

.logo-slider-track {
    display: flex;
    width: max-content;
    gap: 24px;
    will-change: transform;
}

.logo-marquee-group {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
}

.logo-marquee-item {
    width: 200px;
    height: 92px;
    padding: 16px 20px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-marquee-item img {
    width: 70%;
    height: auto;
    display: block;
}


/* Industry */

.industry-section {
    margin: 0 102px 96px;
}

.industry-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.industry-content {
    display: grid;
    grid-template-columns: repeat(17, minmax(0, 1fr));
    grid-template-rows: repeat(6, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    max-height: 570px;
}

.industry-wrapper {
    display: flex;
    align-items: center;
    /* width: 100%; */
    grid-column: 1 / span 8;
    grid-row: 1 / span 2;
    padding: 6px;
    background-color: var(--green);
    box-shadow: var(--shadow-white);
}

.industry-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 34px 14px;
    border: var(--border-main);
    width: 100%;
}

.industry-copy p{
    max-width: 60ch;
}

.industry-copy h3 {
    margin: 0;
    line-height: 1;
    font-size: 30px;
}

.industry-image {
    overflow: hidden;
    background-color: #FFFFFF;
}

.industry-image-left {
    grid-column: 1 / span 8;
    grid-row: 3 / span 4;
}

.industry-image-right {
    grid-column: 9 / -1;
    grid-row: 1 / -1;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .industry-section {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .industry-section {
        margin: 0;
    }

    .industry-content {
        display: flex;
        flex-direction: column;
        max-height: none;
    }

    .industry-wrapper,
    .industry-image-left,
    .industry-image-right {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .product-item{
        display: flex;
        flex-direction: column;
        gap: 32px;
        align-items: stretch;
    }

    .product-item > *{

        
        width: 100%;
    }

    .product-img{
        max-width: none;
        width: 100%;
    }

}

/* product section */


.products-section{
    background-color: var(--green);
    margin: 0 -32px;
}

.products-container{
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 72px 102px;
}

.product-item{
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    justify-content: center;
    gap: 72px;
    align-items: center;
}

.product-info-wrapper{
    background-color: var(--cream-bg);
    padding: 6px;
    box-shadow: var(--shadow-green-2);
    /* max-width: 700px; */
    height: 100%;
    box-sizing: border-box;
}

.product-info{
    padding: 18px;
    border: var(--border-main);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap:22px;
    height: 100%;
    box-sizing: border-box;
}



.product-copy-section h2{
    margin-bottom: 6px;
}

.product-copy-section h4{
    margin:0;
    margin-bottom: 6px;
}

.product-copy-section p{
    max-width: 50ch;
    font-weight: 400;
    
}


.product-img{
    max-width: 760px;
    max-height: 565px;
    overflow: hidden;
    height: 100%;
    /* margin: 0 auto; */
}

.product-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* testimony section */


.testimony-container{
    margin: 0 60px;
}

.testimony-topbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.testimony-btn-container{
    display: flex;
    gap: 8px;
}

.testimony-btn{
    cursor: pointer;
    user-select: none;
}


.testimony-btn svg [fill="white"]{
    transition: fill 0.2s ease-in-out;
}

.btn-left svg [fill="white"],
.btn-right svg [fill="white"]{
    fill: white !important;
}

.btn-left:hover svg [fill="white"],
.btn-right:hover svg [fill="white"]{
    fill: var(--green) !important;
}



.tesitimony-viewport{
    overflow: hidden;
}

.tesitimony-item-wrapper{
    display: flex;
    gap: 32px;
    transition: transform 0.35s ease;
    will-change: transform;
    padding-bottom: 12px;
}

.tesitimony-item{
    display: flex;
    flex: 0 0 100%;
    min-width: 0;
    gap: 24px;
    justify-content: center;
    align-items: baseline;
}

.testimony-copy-wrapper{
    background-color: white;
    padding: 6px;
    box-shadow: var(--shadow-white);
    align-self: end;

}

.testimony-copy{
    padding: 18px;
    border: var(--border-main);
    /* display: flex; */
    flex-direction: column;
    /* gap: 22px; */
    height: 100%;
    box-sizing: border-box;

}

.testimony-title{
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
    margin: 0;
    margin-bottom: 8px;
}

.testimony-text{
    max-width: 45ch;
}

.client-name{
    display: inline-block;
    margin: 0;
    margin-top:12px;
    width: 100%;
    text-align: right;
    font-style: italic;
}

.testimony-img{
    max-width:550px;
    align-self: end;
}


/* Banner Form */

.banner-form-section{
    background-color: var(--yellow);
    margin-left: -32px;
    margin-right: -32px;
}

.banner-form-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 170px;
    padding: 136px 104px;
    overflow: hidden;
}

.banner-form-img{
    position: absolute;
    left: -15%;
    bottom: -110%;
    width: min(62%, 980px);
    z-index: 0;
    pointer-events: none;
}

.banner-copy{
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.banner-copy h2{
    font-size: 76px;
    line-height: 96%;
    margin-bottom: 32px;
}

.banner-discription{
    display: flex;
    gap: 20px;
}

.banner-discription p{
    max-width: 35ch;
}

.banner-form{
    position: relative;
    flex: 1 1 0;
    width: 100%;
    z-index: 1;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.banner-form-fields{
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: none;
    padding: 0;
    min-width: 0;
    width: 100%;
    
}

.banner-form-title{
    margin: 0;
    font-size: 28px;
    line-height: 100%;
}

.banner-form-field{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.banner-form-field label{
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
}

.banner-form-input-wrapper{
    /* border: var(--border-main); */
    background-color: #FFFFFF;
    padding: 3px;
    box-shadow: var(--shadow-input);
}

.banner-form-input-wrapper input{
    border: none;
    background-color: #FFFFFF;
    padding: 12px;
    font-family: var(--primary-font);
    font-size: 14px;
    line-height: 100%;
    width: 100%;
    box-sizing: border-box;
    border: var(--border-main);
}

.banner-form-input-wrapper select{
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-color: #FFFFFF;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.25L6 6.25L11 1.25' stroke='%23000000' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding: 12px;
    padding-right: 36px;
    font-family: var(--primary-font);
    font-size: 14px;
    line-height: 100%;
    width: 100%;
    box-sizing: border-box;
    border: var(--border-main);
}

.banner-form-input-wrapper input::placeholder{
    font-family: var(--primary-font);
}

.banner-form-fields .btn-green{
    margin-top: 6px;
    width: 100%;
    display: block;
    font-size: 16px;
}

.banner-form-fields .btn-green button{
    width: 100%;
    display: block;
}

@media (max-width: 768px){
    .banner-form-container{
        padding: 140px 104px;
        gap: 40px;
    }

    .banner-copy h2{
        font-size: 58px;
    }
}

@media (max-width: 768px){
    .banner-form-container{
        flex-direction: column;
        padding: 72px 16px;
        gap: 32px;
    }

    .banner-copy h2{
        font-size: 32px;
    }

    .banner-discription{
        /* flex-direction: column; */
        /* gap: 14px; */
    }

    .banner-discription p{
        max-width: none;
    }

    .banner-form{
        width: 100%;
    }

    .banner-form-fields .btn-green{
        width: auto;
    }

    .banner-form-fields{
        min-width: 0;
    }

    .banner-form-img{
        left: auto;
        bottom: auto;
        top: -30%;
        right: -40%;
        width: 70%;
    }
}


/* Footer */

.footer-section{
    background-color: var(--green);
    margin: 0 -32px;
    padding: 80px 32px;
}

.footer-container-wrapper{
    padding: 6px;
    background-color: var(--cream-bg);
    box-shadow: var(--shadow-green-2);


}

.footer-container{
    background-color: var(--cream-bg);
    border: var(--border-main);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-contact-address-wrapper{
    display: flex;
    justify-content: baseline;
    align-items: baseline;
    gap: 40px;
}

.footer-brand{
    width: 100px;
    flex: 0 0 auto;
}

.footer-contact,
.footer-address{
    font-size: 16px;
    font-weight: 400;
    line-height: 95%;
    text-align: right;
}

.footer-contact{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-contact a{
    color: #000000;
    text-decoration: none;
}

.footer-address p{
    margin: 0;
}

@media (max-width: 768px){
    .footer-contact,
    .footer-address{
        font-size: 16px;
    }
}

@media (max-width: 768px){
    .footer-section{
        padding: 56px 20px;
    }

    .footer-container{
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 26px;
    }

    .footer-contact,
    .footer-address{
        font-size: 16px;
    }

    .footer-contact-address-wrapper{
        gap: 10px;
    }

    .footer-address{
        width: calc(100% - 7ch);
    }
}

@media (max-width: 768px){
    body{
        margin: 0 16px;
    }

    .testimony-container{
        margin: 0 16px;
    }

    .tesitimony-item{
        flex-direction: column;
        align-items: center;
    }

    .testimony-copy-wrapper,
    .testimony-img{
        align-self: auto;
    }

    .product-item{
        display: flex;
        flex-direction: column;
        gap: 32px;
        align-items: stretch;
    }

    .product-item > *{
        width: 100%;
    }

    .product-img{
        max-width: none;
        width: 100%;
    }

    .divider{
        margin: 48px -16px;
    }

    .divider-container{
        padding: 0 16px;
    }

    .products-section,
    .banner-form-section,
    .footer-section{
        margin-left: -16px;
        margin-right: -16px;
    }

    .footer-section{
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 426px){
    .nav-container .btn-green{
        display: none;
    }

    .products-container{
        padding: 56px 16px;
    }

    .banner-form-img{
        left: auto;
        right: -55%;
        top: -14%;
        bottom: auto;
        width: 95%;
    }
}

.form-status-message{
    border: 1px solid #000000;
    background-color: #ffe9e9;
    color: #7a1f1f;
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.35;
}

.thankyou-page{
    margin: 0;
    background: var(--yellow);
}

.thankyou-wrap{
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 48px;
    box-sizing: border-box;
}

.thankyou-card{
    border: 1px solid #000000;
    background: #fff9dd;
    box-shadow: -6px 6px 0 0 #00000040;
    padding: 56px 42px;
    text-align: center;
}

.thankyou-card h1{
    font-size: clamp(32px, 7vw, 72px);
    line-height: 1;
    margin: 0;
}

@media (max-width: 768px){
    .thankyou-card{
        padding: 36px 24px;
    }

    .thankyou-wrap{
        padding: 110px 16px 40px;
    }
}

.thankyou-page .footer-section{
    margin: 0;
}

@media (max-width: 768px){
    .thankyou-page .footer-section{
        margin-left: 0;
        margin-right: 0;
        padding-left: 16px;
        padding-right: 16px;
    }
}