:root {
    --max-width-page: 2050px;
    --primary-color: #002b8f;
    --primary-text-color: #fff;
    --secondary-text-color: #01216c;
    --secondary-color: #ffb900;
}

/* estilos de colegios */
@font-face {
    font-family: 'adelia';
    src: url('../fonts/adelia.ttf');
}

@font-face {
    font-family: 'luckiestGuy';
    src: url('../fonts/LuckiestGuy-Regular.ttf');
}

@font-face {
    font-family: 'fugazOne';
    src: url('../fonts/FugazOne-Regular.ttf');
}

@font-face {
    font-family: 'graphikItalic';
    src: url('../fonts/GraphikMediumItalic.otf');
}

.img-ubicación-izquierda{
    position: absolute;
    width: 35%;
}

#content-general {
    background-image: url('../img/cuadricula.svg');
    position: relative;
    border-top: 1px solid #f2f2f2;
    padding: 0px 0 0 0;
}

.img-ubicación-derecha{
    position: absolute;
    width: 27%;
    right: 0;
}

.img-banner-unidades{
    background-image: url('../img/fondo.jpg');
    background-position: bottom;
    background-size: cover;
    height: 500px;
}

.img-corte{
    width: 100%;
    height: 93px;
    position: absolute;
    transform: translateY(-99px);
    z-index: 10;
}

.img-corte img {
    width: 100%;
    height: 100px;
    position: relative;
    z-index: 3;
}

.img-corte::before {
    content: '';
    width: 100%;
    height: 67px;
    bottom: -50px;
    left: 0;
}

.fondo-medio-general{
    border: 1px solid transparent;
    height: 100%;
    top: 200px;
    text-align: center;
    overflow-y: hidden;
    position: fixed;
    width: 100%;
    max-width: var(--max-width-page);
}

.info-colegio{
    border-top: 1px solid transparent;
    top: 0;
    position: relative;
    height: 250px;
    width: 100%;
}

.bienvenido-general{
    color: var(--primary-text-color);
    font-family: luckiestGuy;
    font-size: 4rem;
    margin-top: 130px;
    margin-bottom: 30px;
}

.colegioV{
    font-family: fugazOne;
    margin: 0;
    color: var(--secondary-color);
    font-size: 3.2rem;
}

.efectoCole{
    color: transparent;
    background-image: linear-gradient(
        to top,
        #bd8b00,
        #ce9801,
        #ffb71b,
        #ffcc00,
        #fae769);
        background-clip: text;
    }

.unidad-general{
    display: inline-block;
    font-family: luckiestGuy;
    background: var(--secondary-color);
    border-radius: 30px;
    margin-top: 10px;
    padding: 20px 70px;
    color: var(--primary-color);
    font-size: 3rem;
}

@media (max-width: 1024px) {
    .img-ubicación-izquierda{
        width: 40%;
    }
    .img-ubicación-derecha{
        width: 30%;
    }
    .bienvenido-general{
        position: relative;
        font-size: 2.8rem;
        top: 60px;
        line-height: 0.8;
    }
    .unidad-general{
        padding: 17px 20px;
        font-size: 2rem;
        position: relative;
        top: 25px;
        line-height: 0.9;
        z-index: 10;
    }
}

@media (max-width: 425px) {
    .img-ubicación-izquierda{
        width: 50%;
    }
    .img-ubicación-derecha{
        width: 40%;
    }
    .img-corte{
        display: none;
    }
    .bienvenido-general{
        font-size: 2rem;
    }
    .unidad-general{
        padding: 10px 10px;
        font-size: 1.4rem;
    }
    .img-banner-unidades {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 300px;
    }
}