/* ---MAIN STYLES--- */

.main_section {
    position: relative;
    padding: 2% 10% 0 10%;
    background: var(--green);
}

.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(--white);
}

.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;
    }
}

/* ---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(--green);
    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(--orange);
}

.points_section .blue img {
    background: var(--purple);
}

.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;
    }
}

/* DIRECTIONS STYLES */

.directions-locations {
    padding: 5% 10%;
    background: var(--blue);
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.directions-locations h2 {
    color: var(--white);
}

.directions-locations h3 {
    color: var(--white);
    font-size: 1.8vw;
}

.directions-locations .box-directions {
    padding: 0 5%;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 1vw;
    text-align: start;
}

.directions-locations .box-directions .box-directions-item {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 2vw;
    border-radius: 1vw;
    width: 100%;
    gap: 1vw;
}

.directions-locations .box-directions .box-directions-item:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.directions-locations .box-directions .box-directions-item h4,
.directions-locations .box-directions .box-directions-item i {
    color: var(--blue);
}

.directions-locations .box-directions .box-directions-item h4 {
    font-size: 1.2vw;
}

.directions-locations .box-directions .box-directions-item i {
    position: absolute;
    font-size: 1.8vw;
    left: 33vw;
    top: 1vw;
}

.directions-locations iframe {
    width: 90%;
    height: 30vw;
    border-radius: 2vw;
    border: 1vw solid var(--green);
    ;
}

@media (max-width: 996px) {
    .directions-locations {
        padding: 10%;
    }

    .directions-locations h3 {
        font-size: 4vw;
    }

    .directions-locations .box-directions .box-directions-item {
        height: 25vw;
        gap: 4vw;
    }

    .directions-locations .box-directions .box-directions-item h4 {
        font-size: 4vw;
    }

    .directions-locations .box-directions .box-directions-item i {
        font-size: 5vw;
        left: 65vw;
        top: 2vw;
    }

    .directions-locations iframe {
        height: 70vw;
    }

    .directions-locations .box-directions {
        display: flex;
        flex-direction: column;
        gap: 2vw;
    }
}

/* ---MORE STYLES--- */

.more_section {
    position: relative;
    padding: 10%;
    background: var(--cream);
}

.more_section>svg {
    width: 100%;
    position: absolute;
    left: 0;
}

.more_section>svg:first-child {
    top: 0;
    transform: scaleY(-1);
}

.more_section>svg:last-child {
    bottom: 0;
}

.more_section .more_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.more_section .title_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}

.more_section .title_box h2 {
    color: var(--blue);
}

.text_title_box {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    background: var(--blue);
    padding: 4%;
    width: 62%;
    border-radius: 15px;
}

.text_title_box p {
    color: var(--white);
    font-weight: 600;
}

.more_section .buttons_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}

.more_section .buttons_box a {
    text-align: center;
    width: 69%;
    color: white;
    font-size: 1vw;
    font-weight: 600;
    padding: .8vw 2vw;
    border-radius: .5vw;
    background: var(--orange);
    z-index: 1;
}

.more_section .buttons_box a:hover {
    transform: scale(1.05);
    background: var(--blue);
}

@media (max-width: 996px) {
    .more_section {
        padding: 8%;
    }

    .more_section .more_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }

    .more_section .title_box h2 {
        text-align: center;
    }

    .text_title_box{
        width: 100%;
    }

    .more_section .buttons_box {
        gap: 3vw;
    }

    .more_section .buttons_box a {
        width: 100%;
        font-size: 3vw;
        border-radius: 1vw;
    }
}

/* ---TESTIMONIALS STYLES--- */

.testimonials_section>svg:first-child path {
    fill: var(--cream);
}


.reviews-section-include {
    padding: 3vw 10% 3vw 10%;
}