

@import "base.css";
/*==========home===========*/
.home__container {
    display: flex;
    flex-direction: column;
}
.home__image {
    position: relative;
    overflow: hidden;
    order: 1;
}
.home_img {
    margin-left: 10px;
    margin-top: -30px;
    transform: rotate(-6deg) scale(.75);
}
.home__elipse {
    top: -5%;
    right: -10%;
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16% 84% 57% 43% / 41% 0% 100% 59%;
    background: linear-gradient(180deg, #00dbff 0%, #2999ed 100%);
}
.home__data {
    margin: var(--m-2);
    display: flex;
    flex-direction: column;
    order: 2;
}
.home__title {
    font-family: var(--body-font);
    font-weight: var(--font-semi-bold);
    font-size: var(--big-font-size);
    margin-bottom: var(--m-2);
    text-align: center;
}

/*==========about===========*/
.about__section {
    margin-top: 1rem;
}
.horizontal-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: 30%;
    overflow-x: scroll;
    scroll-snap-type: x proximity;
}

.horizontal-scroll:before,
.horizontal-scroll:after {
    content: "";
    width: 10px;
}

.horizontal-scroll > li,
.item {
    scroll-snap-align: center;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.horizontal-scroll {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.about__container {
    margin-top: var(--m-1);
    background: white;
    overflow-y: scroll;
}
.about__card {
    border: 2px solid #2999ed;
    border-radius: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    padding-top: 2rem;
}
.about__card-image {
    max-width: 50%;
}
.about__card-content {
    text-align: center;
    margin: var(--m-1);
    margin-bottom: 0;
}
.about__card-title {
    font-family: var(--body-font);
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
}
.about__card-description {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    font-weight: var(--font-regular);
    text-align: center;
    padding: 1.1em;
}
/*========== RECOMENDATIONS ===========*/
.recommendations__container {
    background-color: var(--container-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 46px;
    margin: auto;
    width: 90%;
    margin-top: 3rem;
    padding-bottom: var(--m-2);
}
.recommendations__image {
    margin-top: var(--m-2);
}
.recommendations__title {
    text-align: left;
    line-height: 33px;
}
.recommendations__description {
    margin-top: var(--m-1);
    text-align: left;
}
.recomendations__content {
    margin: var(--m-1);
    margin-bottom: var(--m-2);
}

/*========== Benefits ===========*/
.benefits__section {
    margin-top: 3rem;
}
.benefits__container {
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 70%;
    margin-top: 3rem;
    padding-bottom: var(--m-2);
}
.benefits__title {
    text-align: left;
    width: 80%;
    padding: 1rem;
    margin: auto;
    line-height: 33px;
}
.benefits__subtitle {
    text-align: left;
    width: 80%;
    padding: 0 1rem 1rem;
    margin: auto;
    line-height: 25px;
}
.benefits__image {
    max-width: 70%;
    margin: auto;
}
.benefits__list {
    padding: 0 0.8rem;
    margin-top: var(--m-1);
}

.benefits__list li::before {
    content: "\2022";
    color: var(--first-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.benefits__content {
    margin-top: var(--m-1);
}
.list-title {
    font-size: 25px;
    font-weight: var(--font-medium);
    line-height: 47px;
}

/*========== Join ===========*/

.join__container {
    margin-top: var(--m-2-5);
    background: var(--first-color-second);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 0;
}
.join__image {
    margin-bottom: var(--m-1-5);
}
.join__title {
    font-family: var(--body-font);
    color: white;
    font-size: 30px;
    line-height: 47px;
    font-weight: var(--font-regular);
    margin-bottom: var(--m-1);
}
.join__data {
    width: 90%;
    text-align: center;
}
.join__buttons{
    width: 90%;
    margin: auto;
}

@media screen and (min-width: 769px) {
    /*JOIN*/
    .join__container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .join__data {
        width: 50%;
    }
    /* BENEFITS */
    .benefits__container {
        display: flex;
        flex-direction: row;
        margin-bottom: 6rem;
        width: 85%;
    }
    .benefits__title {
        text-align: center;
    }
    .benefits__subtitle {
        text-align: center;
    }
    .benefits__image {
        width: 15%;
    }

    /* RECOMMENDATIONS */
    .recommendations__container {
        padding: 1rem;
        margin-top: 4rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: 85%;
    }
    .recommendations__description {
        width: 80%;
    }
    .recomendations__content {
        width: 40%;
    }

    /* ABOUT */
    .about__section {
        margin-top: 0rem;
    }
    .horizontal-scroll {
        display: flex;
        margin: auto;
        margin-top: var(--m-2-5);
        flex-direction: row;
        gap: var(--m-2);
        width: 85%;
    }
    /* HOME */
    .home__elipse {
        right: -20%;
    }
    .home__image {
        order: 2;
    }
    .home__data {
        width: 30.7%;
    }
    .home_img{
        margin-left: 18%;
    }
    .home__image{
        width: 50%;
    }
    .home__title {
        text-align: left;
        width: 90%;
    }
    .wincify__button {
        width: 50%;
        margin: 0;
    }

    .home__container {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }
    /*JOIN*/
    .join__buttons{
        width: 60%;
        margin: auto;
    }
    .join__image {
       width: 25%;
       height: auto;
    }
    .join__container {
        padding: 1rem 0;
    }
}
