/* ---MAIN STYLES--- */

.main_section {
    padding: 7.5vw 5vw 5vw 5vw;
}

.main_section .main_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main_section .media_box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main_section .card_box {
    position: relative;
    width: 100%;
    height: 25vw;
    display: flex;
}

.main_section .card_item {
    position: absolute;
    top: 50%;
    transform-origin: bottom center;
    width: 12vw;
    height: 18vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vw;
    border-radius: .5vw;
    background: white;
    box-shadow: 1vw 1vw 1vw #00000020;
    cursor: pointer;
    transition: .5s;
    overflow: hidden;
}

.main_section .card_item:hover {
    box-shadow: 1vw 1vw 1vw #00000015;
}

.main_section .card_item:nth-child(1) {
    left: 45%;
    transform: translate(-100%, -50%) rotate(-25deg);
    z-index: 3;
}

.main_section .card_item:nth-child(1):hover {
    transform: translate(-100%, -50%) rotate(-25deg) scale(1.02);
}

.main_section .card_item:nth-child(2) {
    left: 45%;
    transform: translate(-50%, -60%) rotate(-5deg);
    z-index: 2;
}

.main_section .card_item:nth-child(2):hover {
    transform: translate(-50%, -60%) rotate(-5deg) scale(1.02);
}

.main_section .card_item:nth-child(3) {
    right: 45%;
    transform: translate(50%, -60%) rotate(5deg);
    z-index: 1;
}

.main_section .card_item:nth-child(3):hover {
    transform: translate(50%, -60%) rotate(5deg) scale(1.02);
}

.main_section .card_item:nth-child(4) {
    right: 45%;
    transform: translate(100%, -50%) rotate(25deg);
}

.main_section .card_item:nth-child(4):hover {
    transform: translate(100%, -50%) rotate(25deg) scale(1.02);
}

.main_section .card_item .absolute_media {
    opacity: .5;
}

.main_section .card_item span {
    position: absolute;
    top: 1vw;
    right: 1vw;
    color: var(--orange);
    font-size: .7vw;
    font-weight: 500;
    text-align: right;
    z-index: 1;
}

.main_section .card_item svg {
    position: relative;
    width: 4vw;
    mix-blend-mode: multiply;
    z-index: 1;
}

.main_section .card_item h2 {
    position: relative;
    width: 8vw;
    font-size: .8vw;
    text-align: center;
    text-wrap: nowrap;
    z-index: 1;
}

.main_section .media_box h1 {
    text-align: center;
}

.main_section .info_box {
    align-items: center;
}

.main_section .info_box p {
    width: 70vw;
    text-align: center;
}

@media (max-width: 996px) {
    .main_section {
        padding: 22.5vw 5vw 10vw 5vw;
    }
    .main_section .main_box {
        gap: 5vw;
    }
    .main_section .media_box {
        width: 100%;
        gap: 5vw;
    }
    .main_section .media_box img {
        width: 120%;
        max-width: 120%;
    }
    .main_section .info_box p {
        width: 100%;
    }
    .main_section .card_box {
        height: 45vw;
    }
    .main_section .card_item {
        width: 25vw;
        height: 35vw;
        gap: 2.5vw;
        border-radius: 1vw;
        background: white;
        box-shadow: 3vw 3vw 3vw #00000020;
    }
    .main_section .card_item:hover {
        box-shadow: 3vw 3vw 3vw #00000015;
    }
    .main_section .card_item span {
        top: 2vw;
        right: 2vw;
        font-size: 2vw;
    }
    .main_section .card_item svg {
        width: 8vw;
    }
    .main_section .card_item h2 {
        position: relative;
        width: 25vw;
        font-size: 1.7vw;
    }
    .main_section .info_box {
        align-items: center;
    }
    .main_section .info_box p {
        width: 100%;
        text-align: center;
    }
}


/* ---HOW STYLES--- */

.how_section {
    padding: 5vw 0;
}

.how_section .step_item {
    padding: 1.5vw 5vw;
    border-bottom: .15vw solid #ffffff20;
    cursor: pointer;
    transition: .5s;
}

.how_section .step_item:last-child {
    border-bottom: none;
}

.how_section .step_item:hover {
    background: #F36C3020;
}

.how_section .content_box {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5vw;
}

.how_section .content_box h2 {
    font-size: 1.7vw;
    filter: blur(.08vw);
    opacity: .4;
    transition: .5s;
}

.how_section .content_box h2 span {
    font-size: 1.1vw;
    padding-right: .25vw;
}

.how_section .content_box p {
    filter: blur(.08vw);
    opacity: .4;
    transition: .5s;
}

.how_section .step_item:hover .content_box h2,
.how_section .step_item:hover .content_box p,
.how_section .step_item.active .content_box h2,
.how_section .step_item.active .content_box p {
    filter: blur(0);
    opacity: 1;
}

@media (max-width: 996px) {
    .how_section {
        padding: 10vw 0;
    }
    .how_section .step_item {
        padding: 10vw 5vw;
        border-bottom: .4vw solid #ffffff20;
    }
    .how_section .content_box {
        grid-template-columns: 1fr;
    }
    .how_section .content_box h2 {
        font-size: 4vw;
    }
    .how_section .content_box h2 span {
        font-size: 3vw;
        padding-right: 1vw;
    }
}


/* ---CARDS STYLES--- */

.cards_section {
    padding: 5vw;
}

.cards_section .cards_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1vw;
}

.cards_section .card_item {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    padding: 2vw;
    border-radius: 1vw;
    background: #D8D5CD;
    cursor: pointer;
    transition: .5s;
}

.cards_section .card_item:hover {
    transform: scale(.98);
    background: #D8D5CD90;
}

.cards_section .title_box {
    display: flex;
    gap: 1vw;
    align-items: center;
}

.cards_section .media_box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3vw;
    height: 3vw;
    padding: 1vw;
    border-radius: .5vw;
    background: var(--cream);
}

.cards_section .media_box i {
    color: var(--dark);
    font-size: 2vw;
}

.cards_section .title_box h2 {
    font-size: 1.5vw;
}

@media (max-width: 996px) {
    .cards_section {
        padding: 5vw;
    }
    .cards_section .cards_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    .cards_section .card_item {
        gap: 2.5vw;
        padding: 5vw;
        border-radius: 2.5vw;
    }
    .cards_section .title_box {
        gap: 2.5vw;
    }
    .cards_section .media_box {
        width: 10vw;
        height: 10vw;
        padding: 2vw;
        border-radius: 1vw;
    }
    .cards_section .media_box i {
        font-size: 6vw;
    }
    .cards_section .title_box h2 {
        font-size: 4vw;
    }
}


/* ---GROW STYLES--- */

.grow_section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5vw;
}

.grow_section .grow_box {
    width: 70%;
    padding: 5vw;
    border-radius: 1vw;
    background: var(--dark);
}

.grow_section .info_box {
    align-items: center;
}

.grow_section .info_box h2,
.grow_section .info_box p {
    color: white;
    text-align: center;
}

@media (max-width: 996px) {
    .grow_section {
        padding: 10vw 5vw;
    }
    .grow_section .grow_box {
        width: 100%;
        padding: 10vw 5vw;
        border-radius: 2.5vw;
    }
}