/* ---MAIN STYLES--- */

.main_section {
    padding: 10vw 10vw 0 10vw;
}

.main_section .main_box {
    height: 100%;
    display: grid;
    grid-template-columns: 55% 40%;
    gap: 5%;
}

.main_section .info_box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2vw;
}

.main_section .title_box {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.main_section .title_box>span {
    color: var(--dark-green);
    font-size: 1vw;
    font-weight: 500;
}

.main_section .media_box {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_section .main_item {
    width: 100%;
}

.main_section .slider_item {
    width: 100%;
    position: relative;
    height: 40vw;
    margin: auto;
    border-radius: 50vw 50vw 0 0;
    overflow: hidden;
}

@media (max-width: 996px) {
    .main_section {
        padding: 30vw 10vw 10vw 10vw;
    }
    .main_section .main_box {
        grid-template-columns: 100%;
        gap: 10vw;
    }
    .main_section .info_box {
        order: 2;
        gap: 5vw;
    }
    .main_section .title_box {
        gap: 2vw;
    }
    .main_section .title_box>span {
        font-size: 3.5vw;
    }
    .main_section .slider_item {
        height: 100vw;
    }
}


/* ---PHRASE STYLES--- */

.phrase_section {
    padding: 10vw 10vw 5vw 10vw;
}

.phrase_section .phrase_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
    padding: 5vw;
    background: var(--cream-green);
}

.phrase_section h2 {
    font-size: 2.2vw;
    text-align: center;
}

.phrase_section p {
    color: var(--dark-green);
    text-align: center;
}

.phrase_section p span {
    font-weight: bold;
}

@media (max-width: 996px) {
    .phrase_section {
        padding: 10vw;
    }
    .phrase_section .phrase_box {
        gap: 2vw;
        padding: 10vw;
    }
    .phrase_section h2 {
        font-size: 6vw;
    }
}


/* ---CHOOSE STYLES--- */

.services_section {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2vw;
    padding: 5vw 10vw;
    border-radius: 2.5vw;
    background: var(--cream-green);
}

.services_section .services_box {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5vw;
}

.services_section .media_box {
    position: relative;
    height: 35vw;
    width: 100%;
    border-radius: 50vw 50vw;
    overflow: hidden;
}

.services_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2vw;
}

.services_section h2 {
    color: var(--dark-green);
    font-size: 2.2vw;
    font-weight: 500;
}

.services_section p {
    color: var(--dark-green);
}

.services_section p span {
    font-weight: bold;
}

@media (max-width: 996px) {
    .services_section {
        gap: 10vw;
        padding: 10vw;
    }
    .services_section .services_box {
        grid-template-columns: 1fr;
        gap: 10vw;
    }
    .services_section .choose_box {
        grid-template-columns: 1fr;
    }
    .services_section .media_box {
        height: 100vw;
    }
    .services_section h2 {
        font-size: 6vw;
    }
    .services_section .info_box {
        gap: 5vw;
    }
}


/* ---WHY STYLES--- */

.why_section {
    margin-top: 5vw;
}

.why_section_two {
    margin-top: 5vw;
}

.why_section .why_box {
    height: 100%;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    align-items: center;
}

.why_section .info_box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2vw;
    padding: 0 5vw 0 10vw;
}

.why_section .title_box {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.why_section .title_box>span {
    color: var(--dark-green);
    font-size: 1vw;
    font-weight: 500;
}

.why_section .media_box {
    height: 100%;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    background: var(--cream-green);
}

.why_section .media_box img:nth-child(1) {
    position: relative;
    transform: translateX(0);
    width: 30vw;
    z-index: 1;
}

.why_section .media_box img:nth-child(2) {
    position: absolute;
    bottom: 0;
    left: -5%;
    transform: rotate(-45deg);
    width: 50%;
}

@media (max-width: 996px) {
    .why_section_two {
        margin-top: 0;
    }
    .why_section .why_box {
        grid-template-columns: 1fr;
        gap: 10vw;
    }
    .why_section .info_box {
        gap: 5vw;
        padding: 10vw;
    }
    .why_section .title_box {
        gap: 2vw;
    }
    .why_section .title_box>span {
        font-size: 3.5vw;
    }
    .why_section .media_box {
        justify-content: center;
        align-items: center;
    }
    .why_section .media_box img:nth-child(1) {
        transform: translateX(0) scale(1.1);
        transform-origin: bottom center;
        width: 50%;
    }
    .why_section .media_box img:nth-child(2) {
        left: 45%;
        transform: rotate(0) scale(1.5);
        transform-origin: bottom center;
        width: 30%;
    }
}


/* ---BOOKING STYLES--- */

.booking_section {
    padding: 10vw 10vw 0 10vw;
}

.booking_section .booking_box {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2vw;
}

.booking_section .media_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.booking_section .media_item {
    width: 100%;
    height: 30vw;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border-radius: 50vw 50vw 0 0;
    background: var(--cream-green);
    overflow: hidden;
}

.booking_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vw;
}

.booking_section .title_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
}

.booking_section .title_box>span {
    color: var(--dark-green);
    font-size: 1vw;
    font-weight: 500;
    text-align: center;
}

.booking_section .title_box h2,
.booking_section p {
    text-align: center;
}

.booking_section .buttons_box {
    display: flex;
    gap: 2vw;
    align-items: center;
}

@media (max-width: 996px) {
    .booking_section {
        padding: 10vw;
    }
    .booking_section .booking_box {
        grid-template-columns: 1fr;
        gap: 10vw;
    }
    .booking_section .media_item {
        height: 100vw;
    }
    .booking_section .info_box {
        gap: 5vw;
    }
    .booking_section .title_box {
        gap: 2vw;
    }
    .booking_section .title_box>span {
        font-size: 3.5vw;
    }
    .booking_section .buttons_box {
        gap: 5vw;
    }
}