body {
    font-family: 'Outfit', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Parkinsans', Arial, sans-serif;
    color: #3D2683;
    margin: 20px 0;
    font-weight: 400;
}

.logo {
    max-width: 250px;
    margin-left: -24px;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}

.hero {
    background-color: #3D2683;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.hero .hero-content-left,
.hero .hero-content-right {
    flex: 1;
    height: 100%; 
}

.hero .hero-content-left-wrapper{
    height: 100%;
    color:white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 0 20%;
}

.hero .hero-content-left-wrapper h1{
    color:white;
    font-size: 3.5em;
    line-height: 1.2;  
}

.hero .hero-content-left-wrapper h1 span{
    color: #9FE67E;
}

.hero .hero-content-left-wrapper ul{
    list-style: none;
    padding: 0;
    font-size: 1.2em;
}

.hero .hero-content-left-wrapper ul li{
    margin: 10px 0;
}

.hero .hero-content-right{
    background: url('images/cimexo_hero_right_1400x933.png') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero .hero-content-right-wrapper{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    right: 5%;
    top: 5%;
}

.hero .hero-content-right-wrapper .cta-btn{
    margin: 0 0 0 15px;
}

.cta-btn {
    background: #9FE67E;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    color: #3D2683;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    padding: 15px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #e9e6f4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.cta-btn.light {
    background: white;
}

.cta-btn.light:hover {
    background-color: #cac2e1;
}

.trust {
    background-color: hsl(0, 0%, 94%);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 40px 10%;
}

.trust .trust-content {}

.trust .trust-content.image {
    flex: 1 1 33.33%;
}

.trust .trust-content.texte {
    flex: 2 1 66.67%;
}

.trust h2,
.reassurance h2,
.testimonials h2 {
    font-size: 2.8em;
}

.trust h2 span,
.reassurance h2 span,
.info h2 span,
.testimonials h2 span {
    color: #9FE67E;
    font-weight: 400;
}

.trust p {
    font-size: 1.2em;
}

.trust p strong {
    color: #67509c;
}

.trust .trust-content.image img{
    position: relative;
    top: -75px;
}

.reassurance {
    padding: 75px 10%;
    text-align: center;
}

.reassurance h3 {
    font-size: 1.5em;
}

.features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 75px;
}

.feature {
    flex: 1;
}

.feature img{
    max-height: 60px;
}

.info {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 75px 10%;
    font-size: 1.4em;
}

.info .info-content {}

.info .info-content.image {
    flex: 1 1 33.33%;
    max-width: 33%;
    overflow: hidden;
    background-position: center;
}

.info .info-content.image img{
    max-height: 933px;
}

.info .info-content.texte {
    flex: 2 1 66.67%;
    margin-left: 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.info .info-content.texte ol {
    list-style: none;
    counter-reset: item;
    padding: 0;
}

.info .info-content.texte ol li {
    counter-increment: item;
    padding: 25px 0;
    border-top: #9FE67E 1px solid;
    position: relative;
}

.info .info-content.texte ol li::before {
    content: counter(item) ".";
    color: #3D2683;
    margin-right: 10px;
    position: absolute;
    left: -30px;
}

.info .info-content.texte li:nth-last-child(1){
    border-bottom: #9FE67E 1px solid;
}

.testimonials {
    padding: 75px 10%;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 75px;
}

.testimonials .testimonials-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.testimonials .testimonials-content .testimonial {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonials-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #3D2683;
    color: white;
    padding: 6% 16%;
    font-size: 2em;
    text-align: center;
    font-family: 'Parkinsans', Arial, sans-serif;
}

.testimonials-content-wrapper p {
    margin-top: 0;
}

.testimonials-content-wrapper p span{
    color: #9FE67E;
}

.testimonials-name-wrapper {
    background: #9FE67E;
    color: #3D2683;
    width: 50%;
    padding: 12px 0;
    text-align: center;
}

.testimonials .testimonials-content .testimonial {
    flex: 1;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    background: #222;
    color: white;
    text-align: center;
    padding: 75px;
}

footer h4 {
    color: #9FE67E;
    font-size: 1.6em;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-family: 'Outfit', Arial, sans-serif;
}

footer p {
    margin-top: 0;
}


@media screen and (min-width: 1201px) {
    .lg-display-none {
        display: none;
    }
}

@media screen and (max-width: 1200px) {

    .md-display-none {
        display: none;
    }

    .hero {
        flex-direction: column;
        align-items: start;
        height: auto;
        padding: 20px;
    }

    .hero-content-left-wrapper .cta-btn.light {
        margin-top: 15px;
    }

    .hero .hero-content-left-wrapper{
        padding: 5%;
    }
}

@media screen and (max-width: 900px) {

    .reassurance {
        padding: 5%;
    }

    .reassurance .features {
        flex-direction: column;
        align-items: center;
    }

    .info {
        flex-direction: column;
        padding: 5%;
    }

    .testimonials .testimonials-content{
        flex-direction: column;
    }

    footer {
        flex-direction: column;
    }

}

@media screen and (max-width: 531px) {

    .hero .hero-content-left-wrapper h1{
        font-size: 2em;
    }

}

@media screen and (max-width: 440px) {
    
    .testimonials-content-wrapper {
        font-size: 1.2em;
    }

}