/* ---LIGAS STYLES--- */

.ligas_section {
    padding: 8% 5% 10% 5%;
}

.ligas_section .ligas_box {
    display: flex;
    flex-direction: column;
    gap: 3vw;
}

.ligas_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vw;
}

.ligas_section .title_box {
    position: relative;
    width: fit-content;
}

.ligas_section .title_box h2 {
    position: relative;
    text-align: center;
    z-index: 1;
}

.ligas_section .title_box svg {
    width: 30%;
    position: absolute;
    bottom: -10%;
    right: -10%;
    mix-blend-mode: color-dodge;
}

.ligas_section .info_box p {
    width: 60%;
    text-align: center;
}

.ligas_section .ligas_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3vw;
}

.ligas_section .ligas_item {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.ligas_section .ligas_item h2 {
    font-size: 1.5vw;
}

.ligas_section .ligas_item img {
    border: .5vw solid var(--white);
    transition: .25s;
}

.ligas_section .ligas_item:hover img {
    transform: rotate(-1deg) scale(.99);
}

@media (max-width: 996px) {
    .ligas_section {
        padding: 20% 10%;
    }

    .ligas_section .ligas_box {
        gap: 5vw;
    }

    .ligas_section .info_box {
        gap: 5vw;
    }

    .ligas_section .info_box p {
        width: 100%;
        text-align: center;
    }

    .ligas_section .ligas_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 5vw;
    }

    .ligas_section .ligas_item {
        display: flex;
        flex-direction: column;
        gap: 5vw;
    }

    .ligas_section .ligas_item h2 {
        font-size: 5vw;
    }

    .ligas_section .ligas_item img {
        border: .5vw solid var(--white);
        transition: .25s;
    }

    .ligas_section .ligas_item:hover img {
        transform: rotate(-1deg) scale(.99);
    }
}



/* ---ABOUT STYLES--- */

.about_section {
    padding: 10% 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 img {
    width: 80%;
    border: .5vw solid var(--white);
    transition: .5s;
    z-index: 1;
}

.about_section img:hover {
    transform: rotate(-2deg) 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 img {
        width: 100%;
        border: 2vw solid var(--white);
    }

    .about_section .info_box {
        gap: 5vw;
    }

}