/* ---ABOUT STYLES--- */

.about_section {
    padding: 8% 5% 5% 5%;
}

.about_section .about_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about_section .media_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_section .media_item {
    position: relative;
    width: 90%;
}

.about_section .print {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(-4deg) translate(-48%, -55%);
    transition: .5s;
    z-index: 1;
}

.about_section .media_item:hover .print {
    transform: rotate(-2deg) translate(-50%, -50%) scale(.9);
}

.about_section .plastic {
    position: relative;
    z-index: 2;
}

.about_section .sticker01 {
    width: 20%;
    position: absolute;
    bottom: 10%;
    left: 5%;
    transform: rotate(-10deg);
    transition: .5s;
    z-index: 3;
}

.about_section .media_item:hover .sticker01 {
    transform: rotate(-10deg) scale(1.1);
}

.about_section .sticker02 {
    width: 20%;
    position: absolute;
    top: 18%;
    right: 8%;
    transform: translateX(-20%) rotate(15deg);
    transition: .5s;
    z-index: 3;
}

.about_section .media_item:hover .sticker02 {
    transform: translateX(-20%) rotate(0) scale(.9);
}

.about_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2vw;
}

@media (max-width: 996px) {
    .about_section {
        padding: 20% 10% 10% 10%;
    }
    
    .about_section .about_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    
    .about_section .media_item {
        width: 100%;
    }
    
    .about_section .info_box {
        gap: 5vw;
    }
    
}


/* ---PROMO STYLES--- */

.promo_section {
    padding: 5% 5% 10% 5%;
}

.promo_section .promo_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vw;
}

.promo_section .title_box h2 {
    text-align: center;
}

.promo_section .media_box {
    position: relative;
    width: 40%;
}

.promo_section .print {
    transition: .25s;
}

.promo_section .media_box:hover .print {
    transform: scale(.99) rotate(1deg);
}

.promo_section .tape01 {
    width: 10%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-30%, -30%) rotate(45deg);
}

.promo_section .tape02 {
    width: 15%;
    position: absolute;
    bottom: 5%;
    right: 0;
    transform: translate(40%, 0);
}

.promo_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vw;
}

.promo_section .info_box p {
    width: 60%;
    text-align: center;
}

.promo_section .main_btn {
    width: fit-content !important;
}

.promo_section .points_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5vw;
}

.promo_section .point_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5vw;
    margin-top: 2vw;
}

.promo_section .point_item i {
    color: var(--white);
    font-size: 2.5vw;
}

.promo_section .point_item .info_box {
    display: flex;
    flex-direction: column;
    gap: .5vw;
}

.promo_section .point_item h2 {
    color: var(--yellow);
    font-size: 1.5vw;
    text-align: center;
}

.promo_section .point_item p {
    width: 100%;
    text-align: center;
}

@media (max-width: 996px) {
    .promo_section {
        padding: 10% 10% 20% 10%;
    }
    
    .promo_section .promo_box {
        gap: 5vw;
    }
    
    .promo_section .media_box {
        position: relative;
        width: 90%;
    }
    
    .promo_section .info_box {
        gap: 5vw;
    }
    
    .promo_section .info_box p {
        width: 100%;;
    }
    
    .promo_section .main_btn {
        width: fit-content !important;
    }
    
    .promo_section .points_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    
    .promo_section .point_item {
        gap: 3vw;
        margin-top: 8vw;
    }
    
    .promo_section .point_item i {
        font-size: 15vw;
    }
    
    .promo_section .point_item .info_box {
        gap: 3vw;
    }
    
    .promo_section .point_item h2 {
        color: var(--yellow);
        font-size: 5vw;
        text-align: center;
    }
    
    .promo_section .point_item p {
        width: 100%;
        text-align: center;
    }
    
}