/* ---MAIN STYLES--- */

.main_section {
    position: relative;
    padding: 2% 10% 0 10%;
    background: var(--blue);
}

.main_section>svg {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.main_section .main_box {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
}

.main_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2vw;
}

.main_section .info_box h1 {
    color: var(--cream);
}

.main_section .info_box p {
    width: 60%;
    color: white;
    text-align: left;
}

.main_section .media_box {
    position: relative;
    display: flex;
}

.main_section .media_item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.main_section .star01 {
    position: absolute;
    width: 20%;
    top: 20%;
    left: 0;
}

.main_section .star02 {
    position: absolute;
    width: 15%;
    bottom: 20%;
    right: -5%;
}

.main_section svg path {
    fill: var(--cream);
}

@media (max-width: 996px) {
    .main_section {
        padding: 20% 10% 0 10%;
    }

    .main_section .main_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }

    .main_section .info_box {
        gap: 5vw;
    }

    .main_section .info_box p {
        width: 100%;
    }
}

/* ---FEEDBACK STYLES--- */

.feedback_reviews_section {
    position: relative;
    padding: 10%;
    background: var(--cream);
}

.feedback_reviews_section>svg {
    width: 100%;
    position: absolute;
}

.feedback_reviews_section>svg:first-child {
    top: 0;
    left: 0;
    transform: scaleY(-1);
}

.feedback_reviews_section>svg:last-child {
    bottom: 0;
    left: 0;
}

.feedback_reviews_section .feedback_reviews_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
}

.feedback_reviews_section .feedback_reviews_box a {
    color: var(--cream);
    font-weight: 600;
    background: var(--blue);
    padding: .5vw 1vw;
    border-radius: 5px;
}

.feedback_reviews_section .feedback_reviews_box a:hover {
    transform: scale(1.05);
}

.feedback_reviews_section h2 {
    width: 80%;
    color: var(--blue);
    text-align: center;
}

.feedback_reviews_section p {
    text-align: center;
}

@media (max-width: 996px) {
    .feedback_reviews_section {
        padding: 20% 10%;
    }

    .feedback_reviews_section .feedback_reviews_box {
        align-items: flex-start;
        gap: 3vw;
    }

    .feedback_reviews_section h2 {
        width: 100%;
        text-align: left;
    }

    .feedback_reviews_section p {
        text-align: left;
    }
}


/* --- SHARE EXPERIENCE STYLES --- */

.experience_reviews_section {
    position: relative;
    padding: 6% 10%;
}

.experience_reviews_section>svg {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.experience_reviews_section>svg path {
    fill: var(--blue);
}

.experience_reviews_section .eligible_box {
    display: flex;
    flex-direction: column;
    gap: 5vw;
}

.experience_reviews_section .paragraph_box {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.experience_reviews_section .content_box {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.experience_reviews_section .title_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
}

.experience_reviews_section .title_box h2 {
    color: var(--blue);
}

.experience_reviews_section .title_box p {
    text-align: center;
}

.experience_reviews_section .icon_box {
    display: flex;
    flex-direction: row;
    gap: 7vw;
    align-items: center;
    justify-content: center;
}

.experience_reviews_section .icon_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}

.experience_reviews_section .media_box {
    width: 7vw;
    height: 7vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--blue);
    transition: .25s;
    cursor: pointer;
}

.experience_reviews_section .media_box:hover {
    transform: scale(.98);
    background: var(--green);
}

.experience_reviews_section .media_box i {
    color: var(--cream);
    font-size: 3vw;
}

.experience_reviews_section .icon_item h2 {
    color: var(--blue);
    font-size: 1vw;
}

@media (max-width: 996px) {
    .experience_reviews_section {
        padding: 20% 10%;
    }

    .experience_reviews_section .eligible_box {
        gap: 10vw;
    }

    .experience_reviews_section .paragraph_box {
        gap: 3vw;
    }

    .experience_reviews_section .content_box {
        gap: 5vw;
    }

    .experience_reviews_section .title_box {
        gap: 3vw;
    }

    .experience_reviews_section .icon_box {
        grid-template-columns: 1fr;
        gap: 10vw;
    }

    .experience_reviews_section .icon_item {
        gap: 2vw;
    }

    .experience_reviews_section .media_box {
        width: 30vw;
        height: 30vw;
    }

    .experience_reviews_section .icon_item h2 {
        text-align: center;
        font-size: 4vw;
    }

    .experience_reviews_section .icon_item a i{
        font-size: 10vw;
    }
}


/* ---POINTS STYLES--- */

.points_section .points_item {
    padding: 10%;
}

.points_section .points_item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5vw;
}

.points_section .points_item:nth-child(odd) {
    background: var(--blue);
}

.points_section .points_item:nth-child(even) {
    background: var(--cream);
}

.points_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1vw;
}

.points_section .points_item:nth-child(odd) h2,
.points_section .points_item:nth-child(odd) p,
.points_section .points_item:nth-child(odd) li,
.points_section .points_item:nth-child(odd) h3,
.points_section .points_item:nth-child(odd) h4 {
    color: var(--white);
}

.points_section .points_item:nth-child(odd) a {
    color: var(--cream);
    font-weight: 600;
}

.points_section .points_item:nth-child(odd) a:hover {
    transform: scale(1.05);
}

.points_section .points_item:nth-child(even) h2,
.points_section .points_item:nth-child(even) b {
    color: var(--blue);
}

.points_section .media_box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.points_section .media_box>img {
    width: 15%;
    position: absolute;
    bottom: 0;
}

.points_section .points_item:nth-child(odd) .media_box>img {
    right: 1vw;
}

.points_section .points_item:nth-child(even) .media_box>img {
    left: 6vw;
}

.points_section .points_item:nth-child(even) .media_box {
    order: -1;
}

.points_section .media_item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.points_section .media_item img {
    width: 80%;
    height: auto;
    border: 1vw solid var(--purple);
    border-radius: .5vw;
}

.points_section .points_item:nth-child(even) .media_item img {
    border-radius: 50%;
}

.points_section .png_item img {
    width: 70%;
    height: auto;
    border: none;
}

.points_section .orange img {
    background: var(--cream);
}

.points_section .blue img {
    background: var(--blue);
}

.points_item .social_points_item {
    display: flex;
    gap: 2vw;
}

.points_item .social_points_item a {
    color: #555;
    font-weight: 700;
    font-size: 1.2vw;
}

.points_item .social_points_item a:hover {
    color: var(--blue);
    transform: scale(1.2);
}

@media (max-width: 996px) {
    .points_section .points_item {
        padding: 20% 10%;
    }

    .points_section .points_item {
        grid-template-columns: 1fr;
    }

    .points_section .info_box {
        gap: 3vw;
    }

    .points_section .points_item:nth-child(even) .media_box {
        order: initial;
    }

    .points_section .points_item:nth-child(even) .media_box>img{
        right: -6vw;
        width: 20%;
    }

    .points_section .points_item:nth-child(odd) .media_box>img {
        right: -5vw;
        top: 68vw;
        width: 20%;
    }

    .points_section .media_item img {
        width: 100%;
        border: 2vw solid var(--purple);
        border-radius: 2vw;
    }

    .points_section .png_item img {
        border: none;
    }
    
    .points_item .social_points_item a {
        font-size: 4vw;
    }
}


/* ---TESTIMONIALS STYLES--- */

.testimonials_section>svg:first-child path {
    fill: var(--cream);
}


.reviews-section-include {
    padding: 3vw 10% 3vw 10%;
}