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

.main_section {
    padding: 7.5vw 5vw 5vw 5vw;
}

.main_section .main_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5vw;
}

.main_section .media_item {
    position: relative;
    width: 100%;
    height: 40vw;
    border-radius: 1vw;
    overflow: hidden;
    transition: .5s;
    cursor: pointer;
}

.main_section .media_item:hover {
    transform: scale(.98);
}

.main_section h2 {
    font-size: 1.1vw;
}

@media (max-width: 996px) {
    .main_section {
        padding: 22.5vw 5vw 10vw 5vw;
    }
    .main_section .main_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    .main_section .media_item {
        height: 50vh;
        border-radius: 3vw;
    }
    .main_section h2 {
        font-size: 4vw;
    }
}


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

.choose_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5vw;
}

.choose_section>h2 {
    width: 65%;
    font-size: 2vw;
    text-align: center;
}

.choose_section>p {
    text-align: center;
}

.choose_section .choose_box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1vw;
}

.choose_section .choose_item {
    width: calc(100% / 3 - 1vw);
    display: flex;
    flex-direction: column;
    gap: 1vw;
    padding: 2vw;
    border-radius: 1vw;
    background: #E6E3DC20;
    cursor: pointer;
    transition: .5s;
}

.choose_section .choose_item:hover {
    transform: scale(.98);
    background: #E6E3DC40;
}

.choose_section .title_box {
    display: flex;
    gap: 1vw;
    align-items: center;
}

.choose_section .choose_item .media_box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3vw;
    height: 3vw;
    padding: 1vw;
    border-radius: .5vw;
    background: #E6E3DC40;
}

.choose_section .choose_item .media_box i {
    color: white;
    font-size: 2vw;
}

.choose_section .choose_box h2 {
    font-size: 1.5vw;
}

.choose_section .info_box {
    align-items: center;
}

.choose_section .info_box h2 {
    font-size: 2vw;
    text-align: center;
}

.choose_section .info_box p {
    text-align: center;
}

@media (max-width: 996px) {
    .choose_section {
        align-items: flex-start;
        gap: 5vw;
    }
    .choose_section>h2 {
        width: 100%;
        font-size: 5vw;
        text-align: left;
    }
    .choose_section>p {
        text-align: left;
    }
    .choose_section .choose_box {
        justify-content: flex-start;
        gap: 5vw;
    }
    .choose_section .choose_item {
        width: 100%;
        gap: 2.5vw;
        padding: 5vw;
        border-radius: 2.5vw;
    }
    .choose_section .title_box {
        display: flex;
        gap: 2.5vw;
        align-items: center;
    }
    .choose_section .choose_item .media_box {
        width: 10vw;
        height: 10vw;
        padding: 2vw;
        border-radius: 1vw;
    }
    .choose_section .choose_item .media_box i {
        font-size: 6vw;
    }
    .choose_section .choose_box h2 {
        font-size: 4vw;
    }
    .choose_section .info_box h2 {
        font-size: 5vw;
        text-align: left;
    }
    .choose_section .info_box p {
        text-align: left;
    }
}


/* --- CONTENT STYLES--- */

.content_section {
    padding: 5vw;
}

.content_section .content_box {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 2.5vw;
}

.content_section h2 {
    font-size: 2vw;
}

.content_section .media_item {
    position: relative;
    width: 100%;
    height: 40vw;
    border-radius: 1vw;
    overflow: hidden;
    transition: .5s;
    cursor: pointer;
}

.content_section .media_item:hover {
    transform: scale(.98);
}

@media (max-width: 996px) {
    .content_section {
        padding: 10vw 5vw;
    }
    .content_section .content_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    .content_section .info_box {
        order: 2;
    }
    .content_section h2 {
        font-size: 5vw;
    }
    .content_section .media_item {
        height: 80vw;
        border-radius: 2.5vw;
    }
}


/* ---FAQS STYLES--- */

.faqs_section {
    padding: 5vw;
}

.faqs_section .faqs_box {
    display: grid;
    grid-template-columns: 1fr 1.75fr;
    gap: 2.5vw;
}

.faqs_section .info_box,
.faqs_section .content_box {
    height: fit-content;
    padding: 2vw;
    border-radius: 1vw;
    background: var(--dark);
}

.faqs_section h2,
.faqs_section p {
    color: white;
}

.faqs_section .content_box {
    display: flex;
    flex-direction: column;
}

.faqs_section .content_item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.5vw 0;
    border-bottom: .15vw solid #ffffff20;
    filter: blur(.08vw);
    opacity: .4;
    cursor: pointer;
    transition: .5s;
}

.faqs_section .content_item:last-child {
    border-bottom: none;
}

.faqs_section .content_item:hover,
.faqs_section .content_item.active {
    filter: blur(0);
    opacity: 1;
}

.faqs_section .content_item h2 {
    width: 90%;
    font-size: 1.1vw;
}

.faqs_section .content_item p {
    width: 90%;
    padding: 0 0 0 1vw;
    opacity: 0;
    max-height: 0;
    transition: .5s;
}

.faqs_section .content_item.active p {
    padding: .5vw 0 0 1vw;
    max-height: 100vw;
    opacity: 1;
}

.faqs_section .content_item i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%) rotate(0);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3vw;
    height: 3vw;
    color: var(--dark);
    font-size: 1.5vw;
    border-radius: 50%;
    background: #ffffffaa;
    transition: .5s;
}

.faqs_section .content_item.active i {
    top: 1.5vw;
    transform: translate(0, 0) rotate(-45deg);
    color: white;
    background: var(--orange);
}

@media (max-width: 996px) {
    .faqs_section {
        padding: 10vw 5vw;
    }
    .faqs_section .faqs_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    .faqs_section .info_box,
    .faqs_section .content_box {
        padding: 10vw 5vw;
        border-radius: 3vw;
    }
    .faqs_section .content_item {
        padding: 5vw 0;
        border-bottom: .4vw solid #ffffff20;
        filter: blur(.2vw);
    }
    .faqs_section .content_item h2 {
        font-size: 4vw;
    }
    .faqs_section .content_item p {
        padding: 0 0 0 0;
    }
    .faqs_section .content_item.active p {
        padding: 5vw 0 0 0;
        max-height: 200vw;
    }
    .faqs_section .content_item i {
        width: 8vw;
        height: 8vw;
        font-size: 5vw;
    }
    .faqs_section .content_item.active i {
        top: 5vw;
    }
}


/* --- INFO STYLES--- */

.info_section {
    padding: 5vw;
}

.info_section h2 {
    font-size: 2vw;
}

@media (max-width: 996px) {
    .info_section {
        padding: 10vw 5vw;
    }
    .info_section h2 {
        font-size: 5vw;
    }
}