/* Mobile Version */

/* Home Section */
#home .section-container {
    padding: 20px;
}

#home .content {
    background-color: var(--primary-color);
    border-radius: 37px;
    padding: 30px 0px 200px 0px;
}

#home .content h1 {
    margin-bottom: 20px;
    width: 87%;
    max-width: 260px;
}

#home .content h1 span {
    font-size: 37px;
    line-height: 120.15%;
    background-image: linear-gradient(white, white), linear-gradient(white, white);
    background-position: 0 90%, 100% 80%;
    background-size: 100% 10px;
    background-repeat: no-repeat;
}

#home .content p {
    margin-bottom: 20px;
    font-weight: 400;
    width: 80%;
    line-height: normal;
}

#home .content a {
    padding: 15px 10px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    text-align: center;
    border: 1px solid var(--secondary-color);
    transition: all ease 0.3s;
    font-weight: 700;
    margin-bottom: 30px;
}

#home .content a i {
    background-color: white;
    border-radius: 50px;
    margin-left: 10px;
    padding: 5px;
    width: 26px;
    height: 26px;
    rotate: -30deg;
    transition: all ease 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

#home .content a:hover,
#home .content a:active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 20px;
}

#home .content a:hover i,
#home .content a:active i {
    rotate: 0deg;
}

#home .content .text-content {
    position: relative;
    padding: 0 30px;
}

#home .content .text-content .arrow {
    display: block;
    position: absolute;
    right: -15px;
    top: 190px;
    height: 200px;
    rotate: 325deg;
}

#home .content .text-content .cross {
    position: absolute;
    right: 30px;
    top: 0;
    height: 60px;
}

#home .content figure {
    position: relative;
    display: flex;
    justify-content: center;
}

#home .content figure img {
    position: absolute;
    border-radius: 14px;

    height: 220px;
    width: 95%;
    top: 0;
}

/* Partners Section */
#partners .section-container {
    padding-bottom: 20px;
}

#partners h2 {
    text-align: center;
    width: max-content;
    margin: 0 auto 20px auto;
    background-image: linear-gradient(var(--primary-color), var(--primary-color)), linear-gradient(var(--primary-color), var(--primary-color));
}

#partners .logos-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

#partners figure {
    margin: 0 10px 20px 10px;
}

#partners figure img {
    max-width: 100px;
    max-height: 50px;
}

/* Expertises Section */
#experts h2 {
    background-image: linear-gradient(var(--primary-color), var(--primary-color)), linear-gradient(var(--primary-color), var(--primary-color));
    width: max-content;
    margin: 0 auto 20px auto;
}

#experts .section-container {
    padding-top: 0;
}

#experts .section-container > p {
    text-align: center;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
    padding: 0 25px;
}

#experts .section-container > p span {
    font-weight: 900;
    text-decoration: underline 2px var(--primary-color);
}

#experts ul li {
    background-color: white;
    padding: 25px 40px 10px 40px;
    border-radius: 30px;
    border: 1px solid var(--primary-color);
    border-bottom: 5px solid var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
}

#experts ul li.animate {
    opacity: 1;
    transform: translateY(0);
}

#experts ul li.is-opened {
    background-color: var(--secondary-color);
    border: 1px solid transparent;
    border-bottom: 5px solid var(--primary-color);
}

#experts ul li:last-of-type {
    margin-bottom: 0;
}

#experts ul li div {
    transition: all 0.5s ease;
    padding-bottom: 15px;
    border-bottom: 1px solid white;
}

#experts ul li.is-opened div {
    border-bottom: 1px solid white;
}

#experts ul li div button {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    z-index: 99;
    padding: 0;
}

#experts ul li div button i {
    border: solid 1px var(--secondary-color);
    color: var(--secondary-color);
    background-color: var(--primary-color);
    width: 20px;
    height: 20px;
    padding: 5px;
    border-radius: 50px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition: all 0.5s ease;
}

#experts ul li div button:hover i {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

#experts ul li div button.open-btn {
    color: var(--secondary-color);
}

#experts ul li.is-opened div button.open-btn {
    display: none;
}

#experts ul li div button.close-btn {
    color: var(--primary-color);
    display: none;
}

#experts ul li div button.close-btn i {
    border: solid 1px var(--primary-color);
}

#experts ul li.is-opened div button.close-btn {
    display: flex;
}

#experts ul li h3 {
    line-height: 141%;
    font-weight: 900;
    color: var(--secondary-color);
    width: 80%;
    margin-bottom: 10px;
    transition: all 0.5s ease;
}

#experts ul li.is-opened h3 {
    color: white;
}

#experts ul li p {
    font-weight: 400;
    line-height: 148%;
    color: transparent;
    height: 0;
    opacity: 0;
    margin-top: 0;
    padding-bottom: 0;
    transition: all 0.5s ease;
}

#experts ul li.is-opened p {
    height: auto;
    opacity: 1;
    margin-top: 15px;
    color: white;
    padding-bottom: 15px;
}

/* Summary Section */
#summary .section-container {
    padding-top: 20px;
}

#summary h2 {
    width: max-content;
    margin: 0 auto 20px auto;
    background-image: linear-gradient(var(--primary-color), var(--primary-color)), linear-gradient(var(--primary-color), var(--primary-color));
}

#summary .section-container > p {
    margin-bottom: 20px;
    padding: 0 25px;
    text-align: center;
    font-weight: 400;
    line-height: normal;
}

#summary .section-container > p span {
    font-weight: 900;
    text-decoration: underline 2px var(--primary-color);
}

#summary .section-container .swiper-summary {
    position: relative;
    padding-bottom: 40px;
}

#summary .swiper-slide {
    height: auto;
}

#summary .swiper-slide .slide-container {
    height: 100%;
    border-radius: 18px;
    border: solid 1px var(--primary-color);
    padding: 20px 0;
    text-align: center;
    box-shadow: 5.08185px 5.08185px 13.97509px 0px rgba(0, 0, 0, 0.05);
}

#summary .swiper-slide .slide-container figure {
    height: 44px;
    width: 44px;
    margin: 0 auto;
    padding: 5px;
}

#summary .swiper-slide .slide-container figure img {
    height: 26px;
    width: 28px;
}

#summary .swiper-slide:nth-of-type(2) .slide-container figure img {
    height: 28px;
    width: 22px;
}

#summary .swiper-slide:nth-of-type(3) .slide-container figure img {
    height: 26px;
    width: 26px;
}

#summary .swiper-slide:nth-of-type(4) .slide-container figure img {
    height: 26px;
    width: 27px;
}

#summary .swiper-slide .slide-container h3 {
    margin: 10px 0;
    font-weight: 700;
    font-size: 18px;
}

#summary .swiper-slide .slide-container p {
    padding: 0 30px;
    line-height: normal;
    font-weight: 400;
}

#summary .swiper-summary .swiper-pagination-bullet {
    background: var(--secondary-color);
    width: 10px;
    height: 10px;
    border-radius: 2px;
    opacity: 1;
}

#summary .swiper-summary .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

#summary .number-infos {
    border-radius: 100px;
    background-color: var(--primary-color);
    box-shadow: 6.07829px 6.07829px 16.71531px 0px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    text-align: center;
    justify-content: space-between;
    margin-top: 20px;
}

#summary .number-infos article:last-of-type {
    margin-left: -15px;
}

#summary .number-infos .number {
    background-image: url("http://fullteam.wimpl.tech/wp-content/uploads/2023/11/Vector-8.webp");
    background-repeat: no-repeat;
    background-size: contain;
    padding: 10px 15px;
    background-position: center;
    width: max-content;
    margin: 0 auto;
}

#summary .number-infos .number p {
    font-size: 20px;
    font-weight: 900;
}

#summary .number-infos article > p {
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
    width: 80px;
}

#summary .number-infos article:last-of-type > p {
    width: auto;
}

#summary .number-infos .line {
    height: 2px;
    width: 100%;
    margin: 25px 5px auto 5px;
}

#summary .number-infos .line span {
    transition: all 1s ease;
    background-color: var(--secondary-color);
    height: 2px;
    width: 0;
    margin-right: 100%;
    display: block;
}

#summary .number-infos .line.animate span {
    width: 100%;
}

/* Customers Section */
#customers .section-container {
    padding-top: 20px;
}

#customers h2 {
    margin: 0 auto 60px auto;
    width: max-content;
    background-image: linear-gradient(var(--primary-color), var(--primary-color)), linear-gradient(var(--primary-color), var(--primary-color));
}

#customers .swiper-slide {
    border-radius: 45px;
    background-color: var(--secondary-color);
    padding: 40px 30px 110px 30px;
    height: auto;
    position: relative;
}

#customers .swiper-slide .slide-container > figure {
    width: 60px;
    height: 60px;
    position: absolute;
    top: -35px;
    left: 30px;
    padding: 10px;
}

#customers .swiper-slide:nth-of-type(2) .slide-container > figure {
    padding: 13px;
}

#customers .swiper-slide h3 {
    font-size: 20px;
    color: #FFF;
    font-weight: 900;
    margin-bottom: 10px;
}

#customers .swiper-slide .slide-container > p {
    font-weight: 400;
    color: #FFF;
    margin-bottom: 20px;
    line-height: 125%;
    font-feature-settings: 'ss01' on;
}

#customers .swiper-slide li {
    display: flex;
    margin-bottom: 20px;
}

#customers .swiper-slide li:last-of-type {
    margin-bottom: 0;
}

#customers .swiper-slide li figure {
    height: 22px;
    min-width: 22px;
    margin: 5px 10px 0 0;
}

#customers .swiper-slide:nth-of-type(2) li figure {
    margin-top: 0;
}

#customers .swiper-slide li h4 {
    color: #FFF;
    font-weight: 700;
    line-height: normal;
    font-feature-settings: 'ss01' on;
    font-size: 16px;
}

#customers .swiper-slide li:last-of-type h4 {
    margin-bottom: 0;
}

#customers .swiper-slide li p {
    color: #FFF;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
    font-feature-settings: 'ss01' on;
}

#customers .swiper-slide a {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 9px;
    padding: 15px;
    display: block;
    font-weight: 700;
    font-size: 17px;
    width: max-content;
    transition: all ease 0.3s;
    position: absolute;
    bottom: 30px;
}

#customers .swiper-slide a:hover,
#customers .swiper-slide a:active {
    color: var(--secondary-color);
    background-color: var(--primary-color);
}

#customers .swiper-slide a i {
    color: var(--primary-color);
    margin-left: 10px;
    rotate: -20deg;
    font-size: 17px;
    transition: all ease 0.3s;
}

#customers .swiper-slide a:hover i,
#customers .swiper-slide a:active i {
    color: var(--secondary-color);
    rotate: 0deg;
}

/* Utility Section */
#utility {
    background-color: var(--primary-color);
    overflow: visible;
}

#utility .section-container {
    position: relative;
    padding-bottom: 60px;
}

#utility h2 {
    margin: 0 auto 20px auto;
    width: max-content;
    background-image: linear-gradient(white, white), linear-gradient(white, white);
}

#utility article {
    margin: 0 20px;
    padding: 20px;
    border-bottom: 1px solid var(--secondary-color);
}

#utility article:last-of-type {
    border: none;
}

#utility article figure {
    width: 52px;
    height: 52px;
    margin: 0 auto;
    padding: 10px;
}

#utility article figure img {
    height: 31px;
    width: 30px;
}

#utility article:nth-of-type(2) figure img {
    height: 23px;
    width: 30px;
}

#utility article:nth-of-type(3) figure img {
    height: 37px;
    width: 21px;
}

#utility article h3 {
    font-weight: 700;
    font-size: 16px;
    margin: 10px 0;
    text-align: center;
}

#utility article p {
    font-feature-settings: 'ss01' on;
    line-height: 148%;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

#utility a {
    padding: 15px 30px;
    border-radius: 11px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

#utility a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 40px;
}

#utility a i {
    rotate: -20deg;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    border-radius: 50px;
    padding: 5px;
    font-size: 16px;
    font-weight: 700;
    margin-left: 10px;
    transition: all 0.3s ease;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#utility a:hover i {
    rotate: 0deg;
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Form Section */
#form-section {
    background: #FAFAFA;
}

#form-section .content {
    margin-top: 30px;
    padding: 20px;
    border-radius: 45px;
    border: 1px solid var(--secondary-color);
    border-bottom: 5px solid var(--secondary-color);
    background-color: white;
}

#form-section h2 {
    text-align: center;
    width: max-content;
    margin: 0 auto 20px auto;
    background-image: linear-gradient(var(--primary-color), var(--primary-color)), linear-gradient(var(--primary-color), var(--primary-color));
}

#form-section .content > p {
    text-align: center;
    margin: 0 10px;
    line-height: normal;
}

#form-section form {
    padding-top: 20px;
}

#form-section form > div {
    margin-bottom: 20px;
}

#form-section form > p,
#form-section form > div > p {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 300;
}

#form-section form > p:last-of-type {
    margin-bottom: 0;
}

#form-section .form label {
    font-size: 14px;
    font-weight: 300;
}

#form-section .form input,
#form-section .form textarea {
    border-radius: 14px;
    border: solid 1px var(--secondary-color);
    padding: 10px;
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
    font-family: 'Satoshi', sans-serif;
}

#form-section form span {
    font-size: 14px;
}

#form-section form #radio-btn {
    margin-top: 10px;
    display: block;
}

#form-section form #radio-btn .wpcf7-list-item {
    margin: 0 10px 10px 0;
}

#form-section form #radio-btn .wpcf7-list-item.last {
    margin-bottom: 0;
}

#form-section form #radio-btn label {
    display: flex;
    align-items: center;
}

#form-section form #radio-btn input {
    height: 17px;
    width: 17px;
    margin: 0 5px 0 0;
}

#form-section form .wpcf7-list-item {
    display: inline-block;
    margin-right: 15px;
}

/* Cacher les boutons radio par défaut */
#form-section form .wpcf7-list-item input[type="radio"] {
    display: none;
}

/* Style pour les labels personnalisés */
#form-section form .wpcf7-list-item label {
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    height: 22px;
}

/* Style pour les faux boutons radio */
#form-section form .wpcf7-list-item label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    background-color: #fff;
}

/* Style pour les faux boutons radio lorsque coché */
#form-section form .wpcf7-list-item  label.checked:before {
    background-color: var(--primary-color);
}

#form-section form button {
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 11px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

#form-section form .wpcf7-submit {
    border: none;
    background-color: transparent;
    color: var(--secondary-color);
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    width: max-content;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

#form-section form button i {
    margin-left: 10px;
    background-color: white;
    rotate: -20deg;
    font-size: 16px;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#form-section form button:hover,
#form-section form button:active {
    border: 1px solid var(--secondary-color);
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

#form-section form button:hover .wpcf7-submit,
#form-section form button:active .wpcf7-submit {
    color: var(--primary-color)
}

#form-section form button:hover i,
#form-section form button:active i {
    rotate: 0deg;
}

#form-section form .wpcf7-spinner {
    display: none;
}

#form-section .wpcf7 form .wpcf7-response-output {
    border-radius: 11px;
    margin: 20px 0;
    padding: 20px;
    font-size: 14px;
    color: var(--secondary-color);
}

#form-section .wpcf7 form.invalid .wpcf7-response-output,
#form-section .wpcf7 form.unaccepted .wpcf7-response-output,
#form-section .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: red;
}

#form-section figure {
    display: none;
}

/* Pad Version */
    @media screen and (min-width: 768px) {
        /* Home Section */
        #home .section-container {
            padding: 30px 40px 100px 40px;
        }

        #home .content {
            padding: 40px 0 350px 0;
        }

        #home .content .text-content {
            padding: 0 40px;
        }

        #home .content h1 {
            width: 89%;
            margin-bottom: 25px;
            max-width: none;
        }

        #home .content h1 span {
            font-size: 46px;
        }

        #home .content p {
            width: 65%;
            margin-bottom: 25px;
        }

        #home .content a {
            margin-bottom: 30px;
        }

        #home .content .text-content .arrow {
            rotate: 340deg;
            top: 140px;
            right: 190px;
        }

        #home .content .text-content .cross {
            height: 70px;
        }

        #home .content figure img {
            height: 450px;
        }

        /* Partners Section */
        #partners .section-container {
            padding-top: 40px;
        }

        #partners h2 {
            margin-bottom: 25px;
        }

        #partners .logos-container {
            flex-wrap: nowrap;
        }

        #partners figure {
            margin: 0 15px 20px 15px;
        }

        #partners  figure img {
            max-height: 70px;
            max-width: 125px;
        }

        /* Expertises Section */
        #experts h2 {
            margin: 0 auto 25px auto;
        }

        #experts .section-container > p {
            margin-bottom: 25px;
        }

        #experts ul li {
            margin-bottom: 25px;
            padding: 35px 50px 15px 50px;
        }

        #experts ul li div {
            display: flex;
            justify-content: space-between;
            padding-bottom: 20px;
        }

        #experts ul li div button,
        #experts ul li div button i {
            font-size: 16px;
        }

        #experts ul li h3 {
            margin-bottom: 0;
            width: 75%;
        }

        #experts ul li.is-opened p {
            padding-bottom: 20px;
            margin-top: 20px;
        }

        /* Summary Section */
        #summary h2 {
            margin-bottom: 25px;
        }

        #summary .section-container > p {
            max-width: 700px;
            margin: 0 auto 25px auto;
        }

        #summary .section-container .swiper-summary {
            padding-bottom: 50px;
        }

        #summary .swiper-slide .slide-container {
            padding: 25px 0;
        }

        #summary .swiper-slide .slide-container figure {
            height: 49px;
            width: 49px;
        }

        #summary .swiper-slide .slide-container figure img {
            height: 30px;
            width: 32px;
        }

        #summary .swiper-slide:nth-of-type(2) .slide-container figure img {
            height: 34px;
            width: 27px;
        }

        #summary .swiper-slide:nth-of-type(3) .slide-container figure img {
            height: 30px;
            width: 30px;
        }

        #summary .swiper-slide:nth-of-type(4) .slide-container figure img {
            height: 32px;
            width: 33px;
        }

        #summary .swiper-slide .slide-container h3 {
            margin: 15px;
            font-size: 20px;
        }

        #summary .swiper-slide .slide-container p {
            padding: 0 40px;
        }

        #summary .number-infos {
            padding: 25px;
            width: 65%;
            margin: 25px auto 0 auto;
        }

        #summary .number-infos article:last-of-type {
            margin: 0;
        }

        #summary .number-infos .number {
            padding: 15px 20px;
        }

        #summary .number-infos .number p {
            font-size: 32px;
        }

        #summary .number-infos article > p {
            font-size: 16px;
            width: 90px;
            margin: 5px auto 0 auto;
        }

        #summary .number-infos article:last-of-type > p {
            width: auto;
        }

        #summary .number-infos .line {
            margin: 30px 10px auto 10px;
        }

        /* Customers Section */
        #customers h2 {
            margin: 0 auto 65px auto;
        }

        #customers .swiper-wrapper {
            background-color: var(--secondary-color);
            border-radius: 45px;
            padding: 60px 0 80px 0;
        }

        #customers .swiper-slide {
            padding: 0 40px 40px 40px;
        }

        #customers .swiper-wrapper .swiper-slide:nth-of-type(1) {
            border-right: 1px solid white;
            border-radius: 45px 0 0 45px;
        }

        #customers .swiper-wrapper .swiper-slide:nth-of-type(2) {
            border-left: 1px solid white;
            border-radius: 0 45px 45px 0;
        }

        #customers .swiper-slide .slide-container > figure {
            left: 40px;
            top: -100px;
            width: 80px;
            height: 80px;
        }

        #customers .swiper-slide h3 {
            font-size: 25px;
            margin-bottom: 15px;
        }

        #customers .swiper-slide .slide-container > p {
            margin-bottom: 25px;
        }

        #customers .swiper-slide li {
            margin-bottom: 25px;
        }

        #customers .swiper-slide li figure {
            min-width: 23px;
            height: 23px;
        }

        #customers .swiper-slide li h4 {
            font-size: 18px;
        }

        #customers .swiper-slide a {
            bottom: -40px;
            font-size: 18px;
        }

        #customers .swiper-slide a i {
            font-size: 18px;
        }

        /* Utility Section */
        #utility h2 {
            margin: 0 auto 40px auto;
        }

        #utility .section-container {
            padding: 30px 40px 80px 40px;
        }

        #utility .card-container {
            display: flex;
            justify-content: space-between;
        }

        #utility article {
            border: none;
            margin: 0;
            padding: 0;
        }

        #utility article:nth-of-type(1) {
            padding-right: 30px;
        }

        #utility article:nth-of-type(2) {
            border-left: 1px solid var(--secondary-color);
            border-right: 1px solid var(--secondary-color);
            padding: 0 30px;
        }

        #utility article:nth-of-type(3) {
            padding-left: 30px;
        }

        #utility article:nth-of-type(2) figure img {
            width: 31px;
        }

        #utility article h3,
        #utility article p,
        #utility a,
        #utility a i {
            font-size: 18px;
        }

        /* Form Section */
        #form-section .content {
            padding: 40px;
        }

        #form-section h2 {
            margin-bottom: 25px;
        }

        #form-section .content > p {
            max-width: 600px;
            margin: 0 auto;
        }

        #form-section form {
            padding-top: 40px;
        }

        #form-section .form label,
        #form-section .form input,
        #form-section .form textarea,
        #form-section form span,
        #form-section .wpcf7 form .wpcf7-response-output,
        #form-section form .wpcf7-submit,
        #form-section form > p,
        #form-section form > div > p {
            font-size: 16px;
        }

        #form-section form > div:nth-of-type(2),
        #form-section form > div:nth-of-type(3) {
            display: flex;
            justify-content: space-between;
            margin: 0;
        }

        #form-section form > div > p {
            width: 48%;
            margin: 0 0 25px 0;
        }

        #form-section form > p {
            margin: 0 0 25px 0;
        }

        #form-section form #radio-btn .wpcf7-list-item {
            margin: 0 15px 15px 0;
        }

        #form-section form .wpcf7-submit,
        #form-section form button i {
            font-size: 18px;
        }
    }

        /* Desktop Version */
        @media screen and (min-width: 992px) {
            /* Home Section */
            #home .section-container {
                padding: 40px 60px;
            }

            #home .content {
                display: flex;
                padding: 40px 0;
                position: relative;
            }

            #home .content .text-content {
                padding: 0 60px;
            }

            #home .content h1 {
                max-width: 730px;
                margin-bottom: 30px;
            }

            #home .content h1 span {
                font-size: 55px;
            }

            #home .content p {
                max-width: 500px;
                margin-bottom: 50px;
                width: 60%;
            }

            #home .content a {
                margin-bottom: 0;
            }

            #home .content .text-content .arrow {
                height: 260px;
                top: 170px;
                right: 30%;
                rotate: 0deg;
            }

            #home .content .text-content .cross {
                height: 80px;
                right: -20px;
                top: -10px;
            }

            #home .content figure {
                position: absolute;
                bottom: 40px;
                right: -70px;
                width: 42%;
            }

            #home .content figure img {
                position: static;
                height: auto;
            }

            /* Partners Section */
            #partners .section-container {
                padding: 20px 60px 40px 60px;
            }

            #partners h2 {
                margin:0 0 30px 0;
            }

            #partners  figure img {
                max-height: 90px;
                max-width: 150px;
            }

            /* Expertises Section */
            #experts h2 {
                margin: 0 0 30px 0;
            }

            #experts .section-container > p {
                text-align: left;
                padding: 0;
                margin-bottom: 30px;
                max-width: 1050px;
            }

            #experts ul li {
                padding: 45px 60px 20px 60px;
            }

            #experts ul li div {
                padding-bottom: 25px;
            }

            #experts ul li div button,
            #experts ul li div button i {
                font-size: 18px;
            }

            #experts ul li.is-opened p {
                padding-bottom: 25px;
                margin-top: 25px;
            }

            /* Summary Section */
            #summary h2 {
                margin: 0 0 30px 0;
            }

            #summary .section-container > p {
                margin: 0 0 30px 0;
                padding: 0;
                text-align: left;
                max-width: 720px;
            }

            #summary .swiper-slide .slide-container {
                padding: 30px 0;
            }

            #summary .swiper-slide .slide-container figure {
                width: 54px;
                height: 54px;
            }

            #summary .swiper-slide .slide-container figure img {
                height: 33px;
                width: 35px;
            }

            #summary .swiper-slide:nth-of-type(2) .slide-container figure img {
                height: 37px;
                width: 30px;
            }

            #summary .swiper-slide:nth-of-type(3) .slide-container figure img {
                height: 32px;
                width: 33px;
            }

            #summary .swiper-slide:nth-of-type(4) .slide-container figure img {
                height: 35px;
                width: 36px;
            }

            #summary .swiper-slide .slide-container h3 {
                font-size: 22px;
            }

            #summary .number-infos article {
                min-width: 25%;
                max-width: 165px;
            }

            #summary .number-infos {
                padding: 30px;
                margin: 30px auto 0 auto;
                width: 75%;
                max-width: 750px;
            }

            #summary .number-infos article > p {
                font-size: 18px;
            }

            #summary .number-infos .number {
                padding: 20px 25px;
            }

            #summary .number-infos .number p {
                font-size: 45px;
            }

            #summary .number-infos .line {
                margin: 40px 10px auto 10px;
            }

            /* Customers Section */
            #customers .section-container {
                padding: 20px 60px 80px 60px;
            }

            #customers h2 {
                margin: 0 0 80px 0;
            }

            #customers .swiper-wrapper {
                padding: 70px 0 100px 0;
            }

            #customers .swiper-slide {
                padding: 0 60px 40px 60px;
            }

            #customers .swiper-slide .slide-container > figure {
                width: 100px;
                height: 100px;
                left: 60px;
                top: -120px;
                padding: 18px;
            }

            #customers .swiper-slide:nth-of-type(2) .slide-container > figure {
                padding: 22px;
            }

            #customers .swiper-slide h3 {
                font-size: 30px;
                margin-bottom: 20px;
            }

            #customers .swiper-slide .slide-container > p {
                margin-bottom: 30px;
            }

            #customers .swiper-slide li {
                margin-bottom: 30px;
            }

            #customers .swiper-slide li figure {
                min-width: 25px;
                height: 25px;
            }

            #customers .swiper-slide li h4 {
                font-size: 20px;
            }

            #customers .swiper-slide a {
                font-size: 19px;
                bottom: -55px;
            }

            #customers .swiper-slide a i {
                font-size: 19px;
            }

            /* Utility Section */
            #utility h2 {
                margin: 0 0 50px 0;
            }

            #utility .section-container {
                padding: 40px 60px 80px 60px;
            }

            #utility article:nth-of-type(1) {
                padding-right: 50px;
            }

            #utility article:nth-of-type(2) {
                padding: 0 50px;
            }

            #utility article:nth-of-type(3) {
                padding-left: 50px;
            }

            #utility article figure {
                margin: 0;
            }

            #utility article h3,
            #utility article p {
                text-align: left;
            }

            #utility article h3,
            #utility article p,
            #utility a,
            #utility a i {
                font-size: 20px;
            }

            /* Form Section */
            #form-section .content {
                padding: 60px;
            }

            #form-section h2 {
                margin: 0 0 30px 0;
            }

            #form-section .content > p {
                max-width: none;
                margin: 0;
                text-align: left;
            }

            #form-section .form-container {
                display: flex;
                justify-content: space-between;
                padding-top: 60px;
            }

            #form-section form {
                padding: 0;
            }

            #form-section .form-container > div {
                width: 53%;
            }

            #form-section .form label,
            #form-section .form input,
            #form-section .form textarea,
            #form-section form span,
            #form-section .wpcf7 form .wpcf7-response-output,
            #form-section form .wpcf7-submit, #form-section form > p,
            #form-section form > div > p {
                font-size: 18px;
            }

            #form-section form > div:nth-of-type(3) {
                display: block;
            }

            #form-section form > div:nth-of-type(3) > p {
                width: 100%;
            }

            #form-section form > p,
            #form-section form > div > p {
                margin-bottom: 30px;
            }

            #form-section form #radio-btn .wpcf7-list-item {
                margin: 0 20px 20px 0;
            }

            #form-section form #radio-btn .wpcf7-list-item:nth-of-type(3),
            #form-section form #radio-btn .wpcf7-list-item:nth-of-type(4) {
                margin-bottom: 0;
            }

            #form-section form .wpcf7-submit {
                max-width: none;
            }

            #form-section .form-container figure {
                display: block;
                width: 42%;
                margin: auto 0;
            }

            #form-section .form-container figure img {
                border-radius: 40px;
                object-fit: contain;
                max-height: 590px;
            }

            #form-section form .wpcf7-submit,
            #form-section form button i {
                font-size: 20px;
            }
        }

        /* Desktop Version */
        @media screen and (min-width: 1375px) {
            /* Home Section */
            #home .content {
                display: flex;
            }

            #home .content .text-content {
                width: 64%;
            }

            #home .content h1 {
                min-width: 650px;
            }

            #home .content .text-content .cross {
                top: unset;
                bottom: -60px;
                right: 160px;
            }

            #home .content figure {
                min-width: 630px;
                right: -80px;
            }

            #home .content figure img {
                min-width: 630px;
                width: 100%;
                max-height: none;
            }

            /* Partners Section */
            #partners .logos-container {
                justify-content: space-between;
            }

            /* Summary Section */
            #summary .content {
                display: flex;
                justify-content: space-between;
            }

            #summary .section-container .swiper-summary {
                width: 75%;
                padding: 0;
            }

            #summary .swiper-summary .swiper-wrapper {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
            }

            #summary .swiper-summary .swiper-wrapper .swiper-slide {
                width: 48%;
            }

            #summary .swiper-summary .swiper-wrapper .swiper-slide:nth-of-type(1),
            #summary .swiper-summary .swiper-wrapper .swiper-slide:nth-of-type(2) {
                margin-bottom: 40px;
            }

            #summary .swiper-slide .slide-container {
                padding: 40px 0;
            }

            #summary .swiper-slide .slide-container p {
                padding: 0 50px;
            }

            #summary .number-infos {
                display: flex;
                flex-direction: column;
                width: 20%;
                margin: 0;
                align-items: center;
                border-radius: 200px;
                padding: 80px;
            }

            #summary .number-infos article {
                min-width: unset;
                max-width: unset;
            }

            #summary .number-infos article > p {
                margin: 5px 0 0 0;
                width: auto;
            }

            #summary .number-infos .line {
                margin: 10px 0;
                height: 100%;
                width: 2px;
            }

            #summary .number-infos .line span {
                height: 0;
                width: 2px;
            }

            #summary .number-infos .line.animate span {
                height: 100%;
            }

            /* Customers Section */
            #customers .swiper-slide .slide-container > p {
                max-width: 400px;
            }

            /* Form Section */
            #form-section .form-container figure img {
                object-fit: cover;
            }
        }