@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --primary-color: #46D8D5;
    --secondary-color: #1A706F;
    --text-light: #309E9B;
    --text-black: #000000;
    --text-grey: #797878;
    --text-secondary: #2B2B2B;
    --paragraph: #424242;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* ------->DECLARE */
body {
    font-family: "Merriweather Sans", sans-serif;
    max-width: 100vw;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
    margin: 0;
}

.lato {
    font-family: 'Lato', sans-serif;
}

input:focus,
input:hover {
    outline: none;
    border: none;
}

section {
    margin-bottom: 42px;
    position: relative;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: unset;
}

.button {
    text-transform: uppercase;
    padding: 16px 35px;
    border-radius: 7px;
    text-align: center;

    transition: all ease-in 300ms;
}

.height-screen {
    max-height: 100vh;
}

.button-primary {
    background: var(--primary-color);
    color: #fff;
    font-family: 'Lato', sans-serif;

    border: 1px solid white;
    box-shadow: 6px 4px 7.5px rgba(70, 216, 213, 0.44);
}

.button-secondary {
    background: var(--secondary-color);
    color: #fff;
}

.button-secondary:hover {
    color: white;
    background-color: var(--secondary-color);
    transform: scale(1.08);
}

.button-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.button-outline-primary:hover {
    color: white;
    background: var(--primary-color);
}

.button-light {
    color: #1A706F;
    background: white;
    border: 2px solid #1A706F;
    box-shadow: 6px 4px 7.5px rgba(70, 216, 213, 0.24);
}

.vector {
    background: var(--color-bg);
    width: var(--size);
    height: var(--size);
    position: absolute;
    z-index: 10;
    top: var(--y);
    left: var(--x);
    border-radius: 50%;
}

.col-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

@media screen and (max-width: 600px) {
    .col-3 {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

.col-2 {
    grid-template-columns: repeat(2, 1fr) !important;
}

@media screen and (max-width: 600px) {
    .col-2 {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

.pt-8 {
    padding-top: 140px;
}

.text-input {
    border: 1px solid #d9d9d9;
    padding: 17px 28px;
    border-radius: 7px;
    width: 100%;
    margin-bottom: 13px;
    outline: none;
    background: none;
}

.text-input:hover,
.text-input:focus {
    border: 2px solid var(--secondary-color);
}

textarea.text-input {
    resize: vertical;
}

/* ------>BOOTSTRAP */
.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*=span],
.bootstrap-select.btn-group[class*=col-] {
    margin-bottom: 0;
}

/* ------>STYLING  */
/* 1 - NAVBAR */
nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 52px;
    align-items: center;
    font-size: 16px;
}

nav .leftSide {
    display: flex;
    gap: 74px;
    height: 100%;
    z-index: 100;
    align-items: center;
}

nav .leftSide .menu ul {
    display: flex;
    gap: 42px;
}

nav .leftSide .menu ul li a:hover {
    color: var(--primary-color);
}

nav .leftSide .menu ul li.active {
    color: var(--primary-color);
    font-size: 19px;
    font-weight: 900;
    position: relative;
}

nav .leftSide .menu ul li.active::after {
    content: '';
    display: block;
    transform: translateX(-50%);
    left: 50%;
    width: 70%;
    height: 2px;
    background: var(--primary-color);
    position: absolute;
}

nav .leftSide .auth {
    display: flex;
    gap: 24px;
    align-items: center;
}

nav .leftSide select {
    margin-bottom: 0;
}

nav .button {
    font-size: 15px;
}

.menuToggler {
    display: none;
}

.menuToggler i {
    font-size: 2rem;
}

@media screen and (max-width: 600px) {
    .menuToggler {
        display: block;
    }

    nav {
        margin-top: 24px;
    }

    nav .leftSide {
        display: none;
        position: absolute;
        flex-direction: column;
        top: 0;
        left: 0%;
        background-color: white;
        padding-left: 40px;
        padding-right: 40px;
        margin-top: 24px;
    }

    nav .leftSide.active {
        display: flex;
    }

    nav .leftSide .menu ul {
        flex-direction: column;
        gap: 12px;
    }

    nav .leftSide .menu ul li {
        width: min-content;
    }

    nav .leftSide .menu ul li.active {
        font-size: 16px;
    }

    nav .leftSide .auth {
        flex-direction: column;
    }

    nav .leftSide .auth {
        gap: 12px;
    }
}

/* 2 - HEADER  */
header {
    display: flex;
    gap: 24px;
    align-items: center;
    flex: 1;
    position: relative;
}

header .vector {
    animation: moveUpDown 6s ease-in-out infinite;
}

header .header-text {
    width: 40%;
    flex: 1;


    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header .header-text h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
}

header .header-text h1 span {
    color: var(--primary-color);
}

header .header-text p {
    color: var(--text-grey);
    font-size: 18px;
    margin-bottom: 48px;
}

header .header-text a {
    width: max-content;
}

header .header-image {
    width: 60%;
    position: relative;
}

header .header-image img {
    z-index: 3;
    position: relative;
}

header .header-image .circles {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 10%;
    top: 10%;

}

header .header-image .circles .circle1 {
    width: 80%;
    height: 70%;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    z-index: 2;
    position: absolute;

    transition: ease-in 200ms all;

}

header .header-image .circles .circle2 {
    width: 80%;
    height: 70%;
    border-radius: 50%;
    background: #71EDEB;
    z-index: 1;
    position: absolute;
    top: 24px;
    left: 24px;

    transition: ease-in 200ms all;
}

header .header-image:hover .circles .circle1 {
    top: 24px;
    left: 24px;
}

header .header-image:hover .circles .circle2 {
    top: 0;
    left: 0;
}


@media screen and (max-width: 600px) {
    header {
        flex-direction: column;
    }

    header .header-text {
        width: 100%;
    }

    header .header-text h1 {
        font-size: 36px;
    }

    header .header-text a {
        width: 100%;
    }

    header .header-image {
        width: 100%;
    }

    header .header-image .circles {
        left: 0;
    }
}

/* 3 - Section : Qui Somme Nous  */
section .vector {
    animation: pulsePing 2s ease 0s infinite normal none;
}

.section-title {
    font-size: 26px;
    font-weight: 900;
    color: var(--text-black);
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    margin-bottom: 54px;
}

.section-title h2 {
    width: max-content;
    position: relative;
}

.section-title h2 span {
    z-index: 2;
    position: relative;
}

.section-title h2::before {
    content: '';
    width: 80px;
    height: 20px;
    background-color: var(--primary-color);
    z-index: 1;
    position: absolute;
    top: calc(100% - 18px);
    left: -10px;
    border-radius: 8px;
}

.section-content {
    display: flex;
    gap: 36px;
    justify-content: space-between;

    position: relative;
}

.section-content .section-text {
    max-width: 40%;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.section-content .section-text p {
    color: var(--paragraph);
}

.section-content .section-text a {
    width: max-content;
}

.section-content .section-image {
    max-width: 40%;
    position: relative;
}

.section-content .section-image .image {
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.section-content .section-image .image img {
    object-fit: contain;
}

.section-content .section-image .circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    margin-top: 12px;
    margin-left: 12px;
    background: #71EDEBCD;
    position: absolute;
    z-index: 1;
    top: 12px;
    left: 8px;
}

@media screen and (max-width: 600px) {
    .section-content {
        flex-direction: column;
    }

    .section-content .section-text {
        max-width: 100%;
    }

    .section-content .section-image {
        margin: auto;
    }

    .section-content .section-text a {
        width: 100%;
    }
}

/* 4 - Section : Fonctionnalités  */
.card-groups {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.card-groups .card {
    border-radius: 7px;
    border: #46d8d650 solid 1px;
    margin: 24px;
    position: relative;
    overflow: hidden;
}

.card-groups .card .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 18px;
    position: relative;
    z-index: 2;

}

.card-groups .card .card-content .icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #71edeb51;
    position: relative;
}

.card-groups .card .card-content .icon img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -12px;
}

.card-groups .card .card-content h5 {
    font-size: 18px;
    font-weight: 800;
}

.card-groups .card .card-content p {
    text-align: center;
    color: var(--paragraph);
}

.card-groups .card .card-footer {
    background: #46d8d645;
    height: 11px;
    width: 100%;
    position: absolute;
    bottom: 0;
    transition: all ease-in-out 300ms;
}

.card-groups .card:hover .card-footer {
    height: 100%;
    z-index: 1;
}

@media screen and (max-width: 1024px) {
    .card-groups .card {
        margin: 8px;
    }

    .card-groups .card .card-content h5 {
        font-size: 15px;
        font-weight: 800;
    }
}

@media screen and (max-width: 800px) {
    .card-groups {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 500px) {
    .card-groups {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* 5 - Section : Why us ?  */
.whyUs {
    background: linear-gradient(45deg, #46D8D5, #309E9B);
    display: flex;
    color: white;
}

.whyUs .whyUs-image {
    position: relative;
    width: 40%;
}

.whyUs .whyUs-image .circle {
    background: #71EDEB;
    border-radius: 50%;
    width: 95%;
    height: 105%;
    position: absolute;
    top: 1px;
    left: -10%;
}

.whyUs .whyUs-image img {
    width: 100%;
    position: absolute;
    top: 3%;
    left: -20%;
    height: 110%;
    object-fit: cover;
    border-radius: 50%;
}

.whyUs .whyUs-content {
    padding: 50px;
    display: flex;
    gap: 50px;
    flex-direction: column;
}

.whyUs .whyUs-content h2 {
    font-size: 30px;
}

.whyUs .whyUs-content>ul {
    display: flex;
    flex-direction: column;
    gap: 42px;
    font-size: 18px;
}

.whyUs .whyUs-content>ul li .why-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.whyUs .whyUs-content>ul li .why-item span {
    border: 1px solid white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 12px;

    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
}

.whyUs .whyUs-content>ul li ul {
    list-style: disc;
    margin-left: 56px;
}

@media screen and (max-width: 1024px) {
    .pt-8 {
        padding-top: 40px;
    }

    .whyUs .whyUs-image {
        display: none;
    }
}

/* 6 - Section : Marques  */
.marques-section {
    display: flex;
}

.marques-section .section-content {
    display: flex;
    flex-direction: column;
    width: 40%;
    justify-content: center;
}

.marques-section .section-content .section-title {
    display: block;
    text-wrap: pretty;
    width: 100%;
}

.marques-section .section-content .section-title h2 {
    width: 100%;
    text-wrap: pretty;
}

.marques-section .section-content .section-title h2 span {
    width: 100%;
    text-wrap: pretty;
}

.marques-section .section-content button {
    max-width: max-content;
}

.marques-section .brands-section {
    position: relative;
    width: 60%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: transform 0.2s ease;

}

.marques-section .brands-section .center-circle {
    width: 500px;
    height: 500px;
    background: #71edeb51;
    border-radius: 50%;
}

.marques-section .brands-section span {
    position: absolute;
    width: calc(70px + (24px * (var(--i) - 1)));
    height: calc(70px + (24px * (var(--i) - 1)));
    top: var(--y);
    left: var(--x);
    border-radius: 50%;

    background-color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
    box-shadow: 0px 4px 8.7px rgba(48, 158, 155, 0.51);
}

.marques-section .brands-section span img {
    width: 100%;
    object-fit: contain;
}

.marques-section .brands-section span {
    animation: moveAround 10s linear infinite;
}

@media screen and (max-width: 900px) {
    .marques-section {
        flex-direction: column;
    }

    .marques-section .section-content {
        width: 100%;
    }

    .marques-section .brands-section {
        width: 90%;
        margin: auto;
        margin-top: 24px;
    }
}

@media screen and (max-width: 600px) {
    .marques-section .brands-section span {
        position: absolute;
        width: calc(60px + (10px * (var(--i) - 1)));
        height: calc(60px + (10px * (var(--i) - 1)));
        padding: 12px;
    }

    .marques-section .brands-section .center-circle {
        height: 400px;
    }
}

/* 7 - Section : Create Account  */
.bar {
    width: 100%;
    height: 100px;
    background: rgba(70, 216, 213, 0.17);
}

section .banner-content {
    background-color: var(--text-light);
    color: white;
    text-align: center;
    padding: 40px 120px;
    border-radius: 7px;
    max-width: 80%;
    margin: auto;

    margin-top: -40px;
}

section .banner-content h4 {
    margin-bottom: 30px;
    text-transform: uppercase;
}

section .banner-content p {
    margin-bottom: 24px;
}

@media screen and (max-width: 1024px) {
    section .banner-content {
        max-width: 90%;
        padding: 20px 60px;
    }
}

@media screen and (max-width : 600px) {
    section .banner-content {
        max-width: 100%;
    }
}

/* 8 - Section : FAQ  */
.faq-content ul li {
    border: 1px solid #46d8d68c;

    border-radius: 7px;

    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.faq-content ul li .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    font-size: 18px;
}

.faq-content ul li .response {
    display: none;
    padding: 12px;
}

.faq-content ul li.show .response {
    display: block;
}

.faq-content ul li.show .question i {
    transform: rotate(180deg);
}

/* 9 - Footer  */
.footer-container .banner {
    display: flex;
    justify-content: space-between;

    background: var(--secondary-color);
    border-radius: 7px;
    align-items: center;
    padding: 40px;
}

.footer-container .banner h5 {
    color: white;
    font-size: 24px;
}

.footer-container footer {
    background: linear-gradient(45deg, #46D8D5, #309E9B);
    padding-top: 100px;
    margin-top: -80px;


}

.footer-container footer .footer .footer-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;

    gap: 72px;
}

.footer-container footer .footer {
    display: flex;
    flex-direction: column;
    color: white;
    align-items: center;
    gap: 24px;
}

.footer-container footer .footer .footer-menu .footer-logo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-container footer .footer .footer-menu .footer-logo img {
    width: max-content;
}

.footer-container footer .footer .footer-menu .menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-container footer .footer .footer-menu .menu span {
    margin-bottom: 24px;
}

.footer-container footer .footer .footer-menu .newsletter {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-container footer .footer .footer-menu .newsletter .input-container {
    background: white;
    padding: 8px 4px;
    display: flex;
    align-items: center;
    border-radius: 7px;
    width: max-content;
}

.footer-container footer .footer .footer-menu .newsletter .input-container button {
    outline: none;
    border: none;
    background: none;
}

.footer-container footer .footer .footer-menu .newsletter .input-container input {
    border: none;
    color: black;
    font-size: 18px;
}

.footer-container footer .footer .footer-menu .newsletter .socials {
    display: flex;
    width: 100%;
    gap: 12px;
}

.footer-container footer .footer .footer-menu .newsletter .socials .social {
    background: white;
    width: 46px;
    height: 46px;
    border-radius: 7px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-container footer .footer .rights {
    padding: 16px;
}

.footer-container circle {
    width: 100%;
    height: 300px;
    border-radius: 50%;
    background: #46d8d645;
    position: absolute;
    top: calc(100% - 150px);
}

.footer-container {
    position: relative;
}

@media screen and (max-width: 900px) {
    .footer-container .banner {
        flex-direction: column;
        align-items: center;
    }

    .footer-container .banner .actions {
        display: flex;

        align-items: center;
        justify-content: ceenter;

        flex-direction: column;
        gap: 12px;
    }

    .footer-container footer .footer .footer-menu {
        display: flex;
        flex-direction: column;
    }
}

/* II Tarif  */
.headerText {
    padding: 100px;
    text-align: center;
}

.headerText h1 {
    font-size: 38px;
    font-weight: bold;
}

.headerText p {
    color: var(--text-grey);

}

.card-forfait .section-title h2::before {
    background-color: var(--basic-color);
}

.card-forfait p {
    font-size: 14px;
    color: #797878;
    opacity: 70%;
}

.card-forfait .price {
    color: #D9D9D9;
    font-size: 16px;
    margin-bottom: 16px;
}

.card-forfait .price span {
    color: var(--basic-color);
    font-size: 26px;
    font-weight: 800;
}

.card-forfait .button.button-primary {
    background: var(--basic-color);
}

.card-forfait .options {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin-top: 16px;
}

.card-forfait .options li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-forfait .options li .check {
    width: 17px;
    height: 17px;
    border-radius: 3px;
    background: var(--basic-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;

}

.card-forfait .card-footer {
    background: var(--basic-color) !important;
    opacity: 20%;
}

/* II Contact  */

.card-groups .card.contact-card .card-content {
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
}

.card-groups .card.contact-card .card-content .section-title h2 {
    width: unset;
    text-align: center;
}

.contacts {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contacts .contact-item {
    display: flex;
    gap: 12px;
}

.contacts .contact-item .icon-contact {
    border: 1px solid #309E9B;
    border-radius: 10px;
    height: 46px;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #309E9B;
}

.contacts .contact-item .icon-contact i {
    font-size: 36px;
}

.contacts .contact-item .details span {
    color: var(--text-grey);
    font-size: 14px;
}

.contacts .contact-item .details .contact-detail {
    font-weight: bold;
    font-size: 16px;
}

.social-container {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;

    border-top: 1px solid rgba(70, 216, 213, .2);
    padding: 18px;
}

.social-container .social-item {
    width: 46px;
    height: 46px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: var(--primary-color);
}

.social-container .social-item i {
    font-size: 32px;
}

/* ------> Animations  */
@keyframes moveAround {
    0% {
        transform: translate(calc(var(--x) * 1%), calc(var(--y) * 1%));
    }

    100% {
        transform: rotate(360deg) translate(calc(var(--x) * 1%), calc(var(--y) * 1%)) rotate(-360deg);
    }
}

@keyframes moveUpDown {
    0% {
        top: var(--y);
    }

    50% {
        top: calc(var(--y) + 50px);
    }

    100% {
        top: var(--y);
    }
}

@keyframes pulsePing {
    0% {
        opacity: 1;
        transform: scale(0.2);
    }

    80% {
        opacity: 0;
        transform: scale(1.2);
    }

    100% {
        opacity: 0;
        transform: scale(2.2);
    }
}

@keyframes bounce {
    0% {
        animation-timing-function: ease-in;
        opacity: 1;
        transform: translateY(-45px);
    }

    24% {
        opacity: 1;
    }

    40% {
        animation-timing-function: ease-in;
        transform: translateY(-24px);
    }

    65% {
        animation-timing-function: ease-in;
        transform: translateY(-12px);
    }

    82% {
        animation-timing-function: ease-in;
        transform: translateY(-6px);
    }

    93% {
        animation-timing-function: ease-in;
        transform: translateY(-4px);
    }

    25%,
    55%,
    75%,
    87% {
        animation-timing-function: ease-out;
        transform: translateY(0px);
    }

    100% {
        animation-timing-function: ease-out;
        opacity: 1;
        transform: translateY(0px);
    }
}