@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@400;500;700&display=swap');

*,
*:before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Dosis', sans-serif;
}

::-webkit-scrollbar {
    width: 6px;
}
  
/* Track */
::-webkit-scrollbar-track {
    background: #dfdede; 
}
   
/* Handle */
::-webkit-scrollbar-thumb {
    background: #888; 
    border: 5px;
}
  
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #252c3a;
    font-size: 16px;
    font-weight: 500;
}

@media (min-width: 64em) {
    .container {
        padding-left: 200px;
        padding-right: 200px;
        max-width: 1470px;
    }
}

.flex {
    display: flex;
}

.flex-jc-sb {
    justify-content: space-between;
}

.flex-jc-c {
    justify-content: center;
}

.flex-ai-c {
    align-items: center;
}

.main-navigation {
    display: flex;
    justify-content: center;
    z-index: 9;
    /* position: fixed; */


}

.header nav .navigations {
    height: 65px;
}

.toggle-menu {
    margin-left:15px;
    cursor: pointer;
    position: absolute;
    left: 0;
}

.overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.overlay.open {
    visibility: visible;
    opacity: 1;
}

@media (min-width: 64em) {
    .header nav {
        display: flex;
        justify-content: center;
        position: relative;
    }

    .header nav .logo{
        position: absolute;
        left: 0;
        top: 15px;
    }

    .header .main-navigation a {
        margin-right: 30px;
        position: relative;
    }

    .header .main-navigation a:hover {
        opacity: .8;
    }

    .header .main-navigation a::after {
        position: absolute;
        content: "";
        left: 0;
        bottom: -23px;
        width: 100%;
        height: 4px;
        background-color: #e74c3c;
        transition: 0.2s linear;
        opacity: 0;
    }

    .header .main-navigation a:hover::after{
        opacity: 1;
    }

    .navigations .main-navigation {
        margin-right: -300px;
    }
}

.mobile-navigation .close-menu {
    display: block;
    cursor: pointer;
    margin: 10px 0 20px 20px;
}


.mobile-navigation {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100%;
    transform: translateX(-100%);
    background-color: rgb(255, 255, 255);
    z-index: 9;
    transition: 0.2s ease-in-out;    
}

.mobile-navigation a {
    display: block;
    margin-top: 40px;
    margin-left: 40px;
    font-weight: 700;
    font-size: 20px;
    transition: .2s linear;
}

.mobile-navigation.open {
    transform: translateX(0);
}

.mobile-navigation a:hover {
    padding-left: 20px;
    color: #252c3a;
    opacity: .6;
    transition: .2s linear;

}

@media (min-width: 40em) {
    .mobile-navigation {
        width: 450px;
    }
}


@media (max-width: 64em) {
    .header nav .logo{
        position: absolute;
        right: 0;
        top: 15px;
        margin-right: 30px;
    }

    .container {
        padding-left: 50px;
        padding-right: 50px;
    }
}



@media (min-width: 64em) {
    .slider {
        display: flex;
        justify-content: center;
        height: 90vh;
        background-color: black;
    }

    .slider .img-content {
        width: 880px;
        margin-top: 40px;
    }
}

@media (max-width: 63.9375em) {
    .slider {
        display: block;
        width: 100%;
        background-color: black;
    }

    .slider .img-content {
        width: 100%;

    }
}


@media (min-width: 64em) {
    .hide-for-desktop {
        display: none;
    }
}

@media (max-width: 63.9375em) {
    .hide-for-mobile {
        display: none;
    }
}



@media (min-width: 64em) {
    

    .customer-counter .column {
        width: 360px;
        height: 220px;
        background-color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .customer-counter {
        transform: translateY(-50%);
    }

    .customer-counter .column img {
        width: 70px;
        height: 70px;
        margin-left: -30px;
        margin-right: 25px;
    }

    .program-coaching {
        height: 90vh;
    }
}

.about-company {
    margin-bottom: 10vh;
}

.about-company .customer-counter {
    display: flex;
    justify-content: center;
    box-shadow: 3px 3px 20px rgba(37, 44, 58, .3);
}

.customer-counter .column2 {
    box-shadow: 3px 3px 20px rgba(37, 44, 58, .3);
    z-index: 1;
    
}

.column p {
    font-size: 15px;
    font-weight: 550;
    margin-bottom: 10px;
}

.column a {
    font-size: 13px;
    color:#e74c3c;
    border: 1px solid transparent;
    transition: .2s linear;
    padding: 3px;
    border-radius: 5px;
    transition: border .3s;
}

.column a:hover {
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

@media (max-width: 63.9375em) {
    .customer-counter .column {
        width: 100%;
        height: 170px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .customer-counter .column img {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }

    .program-coaching .coaching-wrapper {
        display: none !important;
    }

    .about-company {
        height: 90vh;
    }

}



.program-coaching .coaching-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.program-coaching .coaching-wrapper h2 {
    margin-left: -10px;
    margin-right: 60px;
    color: #e74c3c;
}

.program-coaching .coaching-wrapper img {
    margin-right: 70px;
}

.program-coaching .coaching-wrapper p {
    font-size: 17px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0.3px;
}

.coaching-video {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 110px;
}

video {
    width: 45rem;
    position: absolute;
}

video::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40px;
    background-color: #e74c3c;
    width: 600px;
    height: 200px;
}

.coaching-video div {
    width: 35rem;
    height: 20rem;
    background-color: #e74c3c;
    position: relative;
    top: -63px;
    left: -100px;
}
@media (max-width: 63.9375em) {
    video {
        width: 75%;
        margin-top: 200px;
    }

    .coaching-video {
        margin-top: 50px;
    }

    .coaching-video div {
        display: none;
    }
}

.getStarted {
    height: 45vh;
    background-color: #e74c3c;
    display: flex;
    justify-content: center;
    align-items: center;
}

.getStarted .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.getStarted p {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    line-height: 35px;
    margin-bottom: 30px;
}

.getStarted .btn-primary {
    padding: 12px 45px;
    font-size: 18px;
    background-color: #fff;
    color: #e74c3c;
    border: 1px solid transparent;
    box-shadow: 5px 5px 15px -7px #252c3a;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s linear;
}

.getStarted .btn-primary:hover {
    background-color: inherit;
    color: #fff;
    border: 1px solid #fff;
    transition: all .3s linear;
}

@media (max-width: 63.9375em){
    .getStarted {
        height: 30vh;
    }

    .getStarted p {
        font-size: 15px;
        font-weight: 200;
    }

    .getStarted .btn-primary {
        padding: 8px 20px;
    }
}

.sponsor-section .container {
    display: flex;
    flex-direction: column;
}

.sponsor-section .container p {
    display: flex;
    font-size: 19px;
    margin: 60px 30px 50px 0;
    justify-content: end;
}

.sponsor-section .container .circles {
    transform: translateX(80%);
    width: 40%;
    margin-bottom: 60px;
}

.sponsor-section .container .sponsors {
    width: 50%;
    transform: translateX(60%);
    margin-bottom: 60px;
}

@media (max-width: 63.9375em) {
    .sponsor-section .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sponsor-section .container .circles{
        width: 50%;
        transform: translateX(0);
    }

    .sponsor-section .container .sponsors {
        width: 50%;
        transform: translateX(0);
    }

    .sponsor-section .container p {
        display: flex;
        text-align: center;
        justify-content: center;
    }
}

.QandA-section .container div {
    display: flex;
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #afafaf;
}

.QandA-section .container div:last-child() {
    margin-bottom: 50px;
}

.QandA-section .container img {
    width: 40px;
    height: 40px;
    margin-right: 20px;
}

.QandA-section .container p {
    font-size: 26px;
    font-weight: 500;
}

.tips-section {
    margin: 90px 0 0 0;
    background-color: #e74c3c;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.tips-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}

.tips-section .container h3 {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 35px;
    text-transform: uppercase;
    list-style: 1px;
}

.tips-section .container h1 {
    text-transform: uppercase;
    margin-bottom: 30px;
    list-style: 2px;
}

.tips-section .container .tip-menu {
    box-shadow: 5px 5px 15px -5px #252c3a;
    padding: 15px 20px 15px 20px;
    margin-bottom: 40px;
}

.tips-section .container a {
    color: #fff;
    border-right: 1px solid rgba(189, 190, 192 , .5);
    padding-right: 15px;
    margin-left: 15px;
    font-size: 19px;
    font-weight: 600;
}

.tips-section .container a:hover {
    color: #000;
}

.tips-section .container a:active {
    color: #000;
}

.tips-section .container a:last-child {
    border-right: none;
}

.tips-section .container p {
    display: flex;
    align-self: flex-start;
    margin-bottom: 50px;
    margin-right: 40px;
}

.tips-section .container .bodytip {
    display: flex;
    flex-direction: row;
}

@media (max-width: 63.9375em) {
    .tips-section .container a {
        display: flex;
        flex-direction: column;
        border: none;
        margin-bottom: 20px;
        font-size: 13px;
    }

    .tips-section .container p {
        font-size: 15px;
    }

    .tips-section .container h1 {
        font-size: 19px;
    }

    .tips-section .container h3 {
        font-size: 15px;
    }

    .QandA-section .container img {
        width: 30px;
        height: 30px;
    }

    .QandA-section .container p {
        font-size: 18px;
    }

    .tips-section .container .bodytip {
        display: flex;
        flex-direction: column;
    }
}

.products-section .product-description {
    background-color: #f5f5f5;
    padding: 50px 0 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.products-section {
    background-color: #e74c3c;
}

.products-section .product-description h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
}

.products-section .product-description p {
    font-size: 18px;
    text-align: center;
    font-weight: 500;
    line-height: 30px;  
}

.products-section .complement-allimentaire {
    display: flex;
}

.active {
    background-color: #e74c3c;
    transition: .3s linear;
}

.products-section .complement-allimentaire .complement {
    background-color: #fff;
    width: 100%;
    box-shadow: 4px 3px 20px -6px #252c3a;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.products-section .complement-allimentaire .complement:hover {
    background-color: #e74c3c;
}

.products-section .complement-info {
    padding: 0 200px 50px 200px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-section .right-info div,
.products-section .left-info div {
    display: flex;
    margin-bottom: 20px;
}

.products-section .left-info p {
    text-align: end;
    margin-right: 20px;
}

.products-section .right-info img {
    margin-right: 20px;
}


.products-section .complement-info .right-info img,
.products-section .complement-info .left-info img {
    filter: invert(100%) sepia(100%) saturate(100%) hue-rotate(130deg) brightness(100%) contrast(100%);
}

.products-section .complement-info {
    color: #fff;
}

@media (max-width: 63.9375em) {
    .products-section .complement-info {
        display: none !important;
    }

    .products-section .complement-allimentaire {
        overflow-x: scroll;
    }
}

.process .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.process .container h1 {
    font-size: 2.7rem;
    margin-top: 50px;
    text-align: center;
}

.process .container h1 span {
    color: #e74c3c;
}

.process .container p {
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 500;
}

.process .container .steps-to-do {
    display: flex;
}

.process .container .steps-to-do h1 {
    margin-top: 17px;
    margin-bottom: 10px;
    font-size: 1.7rem;
}

.process .container .steps-to-do p {
    font-size: 1.1rem;
}

.process .container .steps-to-do img {
    border-radius: 50%;
}

.process .container .steps-to-do div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.process .container .steps-to-do div p {
    width: 68%;
}

@media (max-width: 63.9375em) {
    .process .container .steps-to-do {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .process .container .steps-to-do div {
        width: 100%;
    }

    .process .container h1 {
        font-size: 1.7rem;
    }

    .process .container p {
        font-size: 1rem;
    }

    .process .container .steps-to-do h1 {
        font-size: 1.2rem;
    }

    .process .container .steps-to-do p {
        font-size: 0.6rem;
    }

    .process .container .steps-to-do img {
        width: 120px;
    }
}

.free-trial {
    background-color: #e74c3c;
}

.free-trial .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.free-trial .container h1 {
    margin-top: 70px;
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: #fff;
}

.free-trial .container p {
    margin-bottom: 50px;
    font-size: 1.2rem;
    color: #fff;
}

.free-trial .container button {
    margin-top: 20px;
    margin-bottom: 40px;
    padding: 15px 35px;
    outline: none;
    background-color: #e74c3c;
    border: none;
    font-size: 1.3rem;
    color: #fff;
    cursor: pointer;
    transition: .3s linear;
}

@media (max-width: 63.9375em) {
    .free-trial .container h1 {
        font-size: 1.7rem;
    }

    .free-trial .container p {
        font-size: 1rem;
    }
}

.free-trial .container button:hover {
    background-color: #f5f5f5;
    color: #000;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 0;
}

.footer p {
    margin-top: 20px;
    font-weight: 500;
}

.footer a{
    margin-right: 25px;
    font-weight: 600;
    margin-top: 20px;
}

@media (max-width: 63.9375em) {
    .footer .container {
        display: flex;
        flex-direction: column;
        
    }

    .footer p {
        font-size: 0.8rem;
    }

}