:root {
    --xlgreen: #EAFFFD;
    --lgreen: #CCF3F2;
    --dgreen: #308986;
    --orange: #F47A5C;
    --xlarge: 32px;
    --large: 28px;
    --normal: 24px;
    --small: 16px;
}

body {
    width: 100%;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    overflow-x: hidden;
    overscroll-behavior: none;
    scroll-behavior: smooth;
}

button {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

*, html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style-type: none;
}

section {
    padding: 0 2.5rem;
    margin-bottom: 5rem;
}

.bold-blue {
    font-weight: bold;
    color: var(--dgreen);
}

.bold-orange {
    font-weight: bold;
    color: var(--orange);
}

.bold {
    font-weight: bold;
}

.bold-large {
    font-weight: bold;
    font-size: 25px;
}

.about-img, .approach-img, .partners-img {
    margin-bottom: 2rem;
}

/** STRIPES USED IN APPROACH AND PRICING **/


.stripes-background::before {
    content: '';
    position: absolute;
    top: 10rem;
    left: 0;
    width: 110%;
    height: 100%;
    background-image: url("../assets/images/stripes_fit.png");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1; /* Ensure the background is behind everything else */
}

#approach .stripes-background::before {
    top: 0rem; 
}


/** NAV **/

.navbar {
    width: 100%;
    padding: 1rem 3rem;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    background-color: var(--dgreen);  
}

.nav-logo {
    width: 150px;

}

nav {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--dgreen);
}

.nav-menu {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.nav-item {
    color: white;
    margin: 0 1rem;
}

.nav-contact-button {
    margin-left: 1rem;
    background-color: white;
    border-radius: 4px;
    color: var(--dgreen);
    padding: 0.5rem 2rem;
}


.hamburger {
    display: none;
    padding: 0.5rem;
    cursor: pointer;
}

.bar {
    display: none;
}

.overlay {
    display: none;
}

/** HERO **/

#hero {
    padding: 0;
    height: 100vh;
    background-image: url("../assets/images/hero/banner-min.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-text-cont {
    height: 65%;
    padding: 0 20%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center; 
}

.hero-title {
    padding-top: 2rem;
    margin-bottom: 3rem;
    font-size: 46px;
    letter-spacing: 1px;
    line-height: 56px;
    text-align: center;
    color: white;
}


.hero-button {
    cursor: pointer;
    padding: 1rem 4rem;
    background-color: var(--dgreen);
    outline: none;
    border: none;
    border-radius: 0.5rem;
    color: white;
    font-weight: bold;
    font-size: var(--xlarge);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


.hero-img-locker {
    flex: 1;
    min-width: 600px;
    margin-right: -2rem;
}

/** ABOUT **/

#about {
    display: flex; 
    flex-flow: row nowrap;
    align-items: center;
    overflow-x: hidden;
}

.about-text-cont {
    flex: 1;
    padding-right: 2rem;
}


.about-img-locker {
    margin-right: -5rem;
    width: 50%;
    max-height: 600px;
}

.about-text {
    font-size: 20px;

}

.about-photo {
    border: 1px solid grey;
    border-radius: 20px;
}

.about-photo-left {    
    flex: 1;
}

.about-photo-right {
    flex: 1;
    margin-top: 4rem;
}

/** APPROACH **/
#approach {
    position: relative;
    padding: 0;
    margin-bottom: 0;
}

.approach-img {
    margin-left: 2.5rem;
}

.approach-wrapper {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    overflow: visible;
    padding: 0 2.5rem;
    margin-bottom: 5rem;
}

.approach-list {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 1rem;
}

.approach-item {
    flex: 1;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: white;
}

.approach-item-icon{
    width: 50px; 
}

.approach-item-title {
    text-align: center;
    color: var(--dgreen);
    line-height: 34px;
    font-weight: 600;
    margin: 2rem 0;
    font-size: var(--large);
    height: 100px;
    overflow-y: hidden;
}

.approach-item-desc{
    text-align: center;
    color: var(--dgreen);
    line-height: 24px;
}

/** PRODUCT **/
.product-wrapper {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
}

.product-slider {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 2rem 0;
    background-color: #E7EFED;
    border-radius: 20px;
    margin-bottom: 2.5rem;
}

.product-slider-item {
    padding: 1rem 5rem;
    background-color: white;
    border-radius: 6px;
    cursor: pointer;
    color: var(--dgreen);
    transition: all 0.2s ease-out;
}
.product-slider-item-selected {
    background-color: #308986;
    color: white;
    font-weight: bold;
}


.product-locker-cont {
    display: flex;
    flex-flow: row nowrap;
}

.product-specification-img {
    max-width: 550px;
    margin-right: 2rem; 
}

.product-locker-img-cont {

    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.product-locker-button-cont {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    margin: 1rem 0 2rem;
}

.product-locker-button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: var(--lgreen);
    cursor: pointer;
}

.product-locker-button-selected {
    background-color: var(--dgreen);
}

.product-text-cont {
    width: 450px;
}

.product-text-cont > h3 {
    background-color: var(--lgreen);
    padding: 1rem;
    margin-bottom: 1rem;
}

.product-list {
    padding: 0 1rem;
}

.product-list-item {
    margin: 0.5rem;
    overflow-x: visible;
    list-style-type: disc;
}

.product-list-item::marker {
    color: var(--orange);
}

/** PRICING **/

#pricing {
    position: relative;
    padding: 0;
    margin-bottom: 0;
}

.pricing-img {
    margin-left: 2.5rem;
}

.pricing-wrapper {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    overflow-x: visible;
    padding: 0 2.5rem;
    margin-bottom: 5rem;
}

.pricing-item {
    padding: 2rem;
    margin: 3.5rem 1rem 2rem;
    border-radius: 16px;
    flex: 1;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    background: white;
    position: relative;
}

.pricing-item-middle {
    border: 2px solid var(--dgreen);
}

.pricing-item-title {
    margin-bottom: 1rem;
}

.pricing-item-badge-cont {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -4rem;
}

.pricing-item-badge {
    background-color: var(--dgreen);
    padding: 1rem 3rem;
    margin: 0.5rem 0 1rem;
    border-radius: 8px;
    color: white;
}

.pricing-list {
    flex: 1;
    margin-top: 1rem;
    padding-bottom: 1rem;
}

.pricing-list-item {
    margin: 1rem 0 ;
    display: flex;
    flex-flow: row nowrap;
}

.pricing-list-item:before {
    content: '✓';
    height: 100%;
    margin-right: 1rem;
    font-weight: bold;
    color: var(--orange);
  }

.pricing-list-item-price {
    font-size: var(--xlarge);
    padding-left: 0.2rem;
}

.pricing-list-item-custom {
    font-size: var(--large);
}

.pricing-contact {
    padding: 1rem 2rem;
    margin: 0;
    background-color: var(--dgreen);
    color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.pricing-contact:hover{
    background-color: var(--lgreen);
    color: var(--dgreen);
    box-shadow: none;
}

/** PARTNERS **/

.partners-img-list {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    width: 100%;
    overflow: hidden;
}

.partners-img-item {
    margin: 0 4rem;
    filter: grayscale(0.2);
}

/** CONTACT **/



/** FOOTER **/

footer {
    padding: 2rem 4rem;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between ;
    background-color: var(--dgreen);
    color: white;
}

.footer-title {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.footer-list {

}

.footer-list-item {
    margin: 0.75rem 0;
    font-weight: 300;
}

.footer-cont-middle { 
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
}

.footer-cont-legal {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.footer-cont-legal > span {
    margin: 0 1rem;
}
.footer-logo {
    width: 150px;
    margin-top: 1rem;
}

.footer-logo-small {
    width: 60px;
}

.footer-adress {
    
}

/** RESPONSIVE **/

/* TABLET */
@media only screen and (max-width: 1224px) {
    .approach-item {
        flex-basis: 50%;
    }
}

/* TABLET */
@media only screen and (max-width: 1024px) {
    html {
        overflow: hidden;
        height: 100%;
    }
    body {
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        font-size: 14px;
    }
    section {
        margin-bottom: 3rem;
    }

    .hero-img-locker {
        display: none;
    }
/** ABOUT **/
    #about {
    display: flex; 
    flex-flow: column nowrap;
    }

    .about-img-locker {
    margin-right: 0;
    width: 100%;
    }

/** APPROACH **/
    .approach-list {
        display: flex;
        flex-flow: column nowrap;
    }

    .approach-item {
        flex: 1; 
    }

    .approach-item-title {
        height: auto;
    }
/** PRODUCT **/
    .product-locker-cont {
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
    }
    .product-specification-img {
        margin: 0;
        margin-bottom: 1.5rem;
        max-width: 450px;
    }
/** PRICING **/
    .pricing-wrapper {
        display: flex;
        flex-flow: column nowrap;
        justify-content: stretch;
        overflow-x: visible;
    }

    .partners-img-item {
        height: 50px;
        margin: 0 1rem;
    }
}



/* MOBILE */
@media only screen and (max-width: 768px) {
    section {
        margin-bottom: 3rem;
    }
/** NAVBAR **/
    #hero.active {
        overflow-y: hidden;
    }
    .hamburger {
        display: block;
        transition: all 0.3s ease-in-out;
    }

    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }

    .bar {
        display: block;
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 5px 0;
        transition: all 0.3s ease-in-out;
    }

    .nav-menu {
        position: absolute;
        top: 0px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        background-color: var(--dgreen);
        height: 100vh;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        touch-action: none;
        overscroll-behavior: none;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        padding-top: 4rem;
    }
    .nav-item {
        margin: 1rem 0;
        color: white;
    }
    .nav-contact-button {
        margin-top: 1rem;
        color: var(--dgreen);
    }


/** HERO **/
    .hero-icon-desc {
        font-size: var(--normal);
        display: inline-block;
        line-height: var(--normal);
        padding-left: 0.5rem;
    }

    .hero-icon-list {
        margin: 2rem 0;
    }

    .hero-icon-img {
        width: var(--normal);
    }


    .hero-text-cont {
        padding: 0 10%;
    }
    .hero-title {
        padding-top: 2rem;
        font-size: var(--large);
        letter-spacing: 1px;
        line-height: var(--large);
    }
    .hero-button {
        font-size: var(--normal);
        padding: 1rem 2rem;
    }
    

/** ABOUT **/
    .about-img-locker {
        margin-right: 0;
        width: auto;  
    }
/** PRODUCT **/
    .product-text-cont {
        padding: 0 2.5rem;
    }
    .product-slider {
        width: auto;
    }
    .product-slider-item {
        padding: 1rem 2rem;
    }

    .product-specification-img {
        max-width: 70%;
    }

/** PRICING **/
    .pricing-item {
        margin: 1rem 0;
    }

/** PARTNERS */
    .partners-img-item {
        height: 30px;
        margin: 0 1rem;
    }

/** FOOTER **/   
    footer {
        padding: 2rem;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between ;
    }

    .footer-cont-right {
        order: 2;
    }

    .footer-cont-middle {
        order: 3;
        width: 100%;
    }
    .footer-cont-middle * {
        margin: 0.5rem 0;
    }
}