/* ---MAIN STYLES--- */

.main_section {
    position: relative;
    padding: 0 10%;
    background: var(--purple);
}

.main_section>svg {
    width: 100%;
    position: absolute;
    bottom: -1px;
    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 h1 span {
    color: var(--cream);
    font-size: 2vw;
}

.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: center;
    padding: 3vw 0 5vw 0;
}

.main_section .media_item img {
    width: 90%;
    height: auto;
    border: 1vw solid var(--cream);
    border-radius: 50%;
}

.main_section .heart {
    position: absolute;
    width: 20%;
    top: 20%;
    left: 0;
}

.main_section .star {
    position: absolute;
    width: 15%;
    bottom: 20%;
    right: -5%;
}

/**/
.location-section {
    padding: 0 10%;
}

.local {
    padding: 10% 0 0 0;
}

iframe {
    width: 100%;
}

.main_section .location-media {
    padding: 10%;
}

.location-section .text {
    display: flex;
    flex-direction: column;
    padding: 0 0 10% 0;
}

.location-section .text span {
    font-weight: 600;
}


.main_section .location-media iframe {
    width: 100%;
}


@media (max-width: 996px) {
    .main_section {
        padding: 20% 10%;
    }

    .main_section .main_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }

    .main_section .info_box {
        gap: 5vw;
    }

    .main_section .info_box h1 span {
        font-size: 7.5vw;
    }

    .main_section .info_box p {
        width: 100%;
    }

    .main_section .media_item {
        padding: 0;
    }

    .main_section .media_item img {
        border: 3vw solid var(--cream);
    }
}


/* ---CONTENT STYLES--- */

.content_section {
    padding: 5vw 10vw 5vw 10vw;
}

.content_section .content_box {
    display: flex;
    flex-direction: column;
    gap: 10vw;
}

.content_section .content_itemcta {
    display: grid;
    justify-content: center;
    text-align: center;
}


.content_section .content_item {
    display: grid;
    gap: 3vw;
}

.content_section .content_item .info_box h3 {
    color: var(--purple);
    font-size: 1.2vw;
}

.content_section .content_item:nth-child(odd) {
    grid-template-columns: 1.5fr 1fr;
}

.content_section .content_item:nth-child(even) {
    grid-template-columns: 1fr 1.5fr;
}

.content_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1vw;
}

.content_section .media_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content_section .media_box img {
    width: 80%;
    height: auto;
    border: .5vw solid var(--purple);
    border-radius: 1vw;
}

.content_section .media_box iframe {
    width: 80%;
    height: 80%;
    border: .5vw solid var(--purple);
    border-radius: 1vw;
}

.social_points_item {
    display: flex;
    gap: 2vw;
}

.social_points_item_2 {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.social_points_item a {
    color: #555;
    font-weight: 700;
    font-size: 1.2vw;
}

.social_points_item_2 a {
    color: #555;
    font-weight: 700;
    font-size: 1vw;
}

.social_points_item a:hover {
    color: var(--blue);
    transform: scale(1.2);
}

.social_points_item_2 a:hover{
    color: var(--blue);
    transform: scale(1.05);
}

.content_section .content_item:nth-child(even) .media_box {
    order: -1;
}

h2 {
    color: var(--purple);
    margin: 3% 0;
}


@media (max-width: 996px) {
    .content_section {
        padding: 20% 10%;
    }

    .content_section .content_box {
        gap: 10vw;
    }

    .content_section .content_item {
        gap: 5vw;
    }

    .content_section .content_item:nth-child(odd),
    .content_section .content_item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .content_section .info_box {
        gap: 3vw;
    }

    .content_section .content_item:nth-child(even) .media_box {
        order: initial;
    }

    .content_section .media_box img {
        width: 100%;
        border: 2vw solid var(--purple);
        border-radius: 2vw;
    }

    .social_points_item{
        gap: 4vw;
    }

    .social_points_item_2{
        gap: 4vw;
    }

    .social_points_item a {
        font-size: 4vw;
    }

    .social_points_item_2 a {
        font-size: 3vw;
    }
}

.main_section .location-media {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2vw solid var(--purple);
    border-radius: 2vw;
}

/* ---LEAVE REVIEW STYLES--- */

.section_leave_review {
    position: relative;
    padding: 10%;
    background: var(--cream);
}

.section_leave_review>svg {
    width: 100%;
    position: absolute;
}

.section_leave_review>svg:first-child {
    top: -1px;
    left: 0;
    transform: scaleY(-1);
}

.section_leave_review>svg:last-child {
    bottom: -1px;
    left: 0;
}

.section_leave_review .leave_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
}

.section_leave_review h2 {
    width: 80%;
    margin: 0;
    color: var(--blue);
    text-align: center;
}

.section_leave_review p {
    text-align: center;
}

.section_leave_review a {
    padding: 10px;
    color: var(--white);
    font-weight: bold;
    background: var(--orange);
    border-radius: 10px;
}

.section_leave_review a:hover {
    transform: scale(1.05);
}

@media (max-width: 996px) {
    .section_leave_review {
        padding: 20% 10%;
    }

    .section_leave_review .leave_box {
        align-items: flex-start;
        gap: 3vw;
    }

    .section_leave_review h2 {
        width: 100%;
        text-align: left;
    }

    .section_leave_review p {
        text-align: left;
    }
}

/* ---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;
    justify-content: center;
    align-items: center;
}

.more_section .title_box h2 {
    color: var(--blue);
}

.more_section .title_box h2 span {
    color: var(--purple);
    font-size: 3vw;
}

.more_section .buttons_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}

@media (max-width: 996px) {
    .more_section {
        padding: 20% 10%;
    }

    .more_section .more_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }

    .more_section .title_box h2 {
        text-align: center;
    }

    .more_section .title_box h2 span {
        font-size: 8vw;
    }

    .more_section .buttons_box {
        gap: 3vw;
    }
}

/* reviews */
/* .reviews-section-include{
    padding: 0 10% 3vw 10%;
} */