*{
    margin: 0;  /*Evita espacios inesperados entre elementos*/
    padding: 0;  /*Elimina rellenos internos automáticos*/
    box-sizing: border-box; /*Evita desbordes en pantallas pequeñas*/
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    width: 100%; /*Permite que el sitio use todo el ancho del dispositivo*/
    min-height: 100vh; /*Asegura que el body ocupe toda la pantalla*/
    background-color: #E5E5E5;
    line-height: 1.6; /*Mejora la lectura de textos largos*/
}

/* Estilos para el encabezado del sitio (Etiqueta header) */
.encabezado{
    display: flex;
    flex-direction: column;

    justify-content: space-between;
    align-items: center;

    padding: 0px;

    width: 100%;            /* IMPORTANTE */
    box-sizing: border-box; /* evita que padding rompa el ancho */

    background: linear-gradient(
        90deg,
        #0A2A43 0%,
        #000000 50%,
        #D4A017 100%
    );

    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.encabezado01{
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
}

.logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* izquierda */
.logo-izq{
    display: flex;
    align-items: center;
    margin-left: 25px;
}

/* derecha */
.logo-der{
    display: flex;
    align-items: center;
    gap: 10px; /* espacio entre imágenes */
    margin-right: 20px;
}

#ico_redesSociales{
    width: 55px;
    height: 50px;
    transition: transform 0.3s ease;
    margin: 0 10px; /* margen horizontal entre íconos */
}

#logoPrincipal{
    height: 200px;
    width: 125px;
    transition: transform 0.3s ease;
}

#logoSecundario{
    height: 160px;
    width: 170px;
    transition: transform 0.3s ease;
}

#ico_redesSociales:hover{
    transform: scale(1.1); /* Aumenta el tamaño al pasar el mouse */
}

#logoPrincipal:hover{
    transform: scale(1.05); /* Aumenta el tamaño al pasar el mouse */
}

#logoSecundario:hover{
    transform: scale(1.05); /* Aumenta el tamaño al pasar el mouse */
}

.encabezado02{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
}

.navegacion {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
}

.menu-navegacion {
    display: flex;
    flex-direction: row;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lis {
    position: relative; /* 🔥 CLAVE para que el submenu se ancle bien */
    border: 2px solid #D4A017;
    border-radius: 4px;
    transition: background 0.3s;
}

.lis a {
    display: block;
    padding: 10px 25px;
    color: #D4A017;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.lis:hover {
    background-color: #D4A017;
}

.lis:hover a {
    color: #ffffff;
}


.submenu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 220px;
    background: #0A2A43;

    list-style: none;
    margin: 0;
    padding: 5px 0;

    border: 2px solid #D4A017;
    border-radius: 6px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;

    z-index: 999;
}

/* mostrar */
.lis:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ITEMS (estado normal SIEMPRE bonito) */
.submenu li a {
    display: block;
    padding: 10px 15px;

    background: #123F6B;   /* 🔥 YA tiene color desde el inicio */
    color: #D4A017;

    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;

    transition: all 0.2s;
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

/* hover */
.submenu li a:hover {
    background: #D4A017;
    color: #0A2A43;
    padding-left: 20px;
}





.cont_gif{
    margin-left: auto;
    display: flex;
    align-items: center;
}

/* gif_unedol */

#gif_unedol{
    width: 150px;
    height: auto;
    max-width: 400px;

    border-radius: 3px;

    object-fit: contain;

    /* DIFUMINADO */

    -webkit-mask-image: linear-gradient(
        to left,
        rgba(0,0,0,1) 10%,
        rgba(0,0,0,0.8) 30%,
        rgba(0,0,0,0.6) 50%,
        rgba(0,0,0,0.4) 70%,
        rgba(0,0,0,0.2) 90%,
        rgba(0,0,0,0) 100%
    );

    mask-image: linear-gradient(
        to left,
        rgba(0,0,0,1) 10%,
        rgba(0,0,0,0.8) 30%,
        rgba(0,0,0,0.6) 50%,
        rgba(0,0,0,0.4) 70%,
        rgba(0,0,0,0.2) 90%,
        rgba(0,0,0,0) 100%
    );
}

/*Permitimos que la etiquete header, sea responsiva*/
@media screen and (max-width:930px) {
    .encabezado{
        display: flex;
        flex-direction: column;
        gap: 15px;
        text-align: center;
        align-items: center;
    }    

     .encabezado02{
        display: flex;
        flex-direction: column;
    }

     .navegacion{
        width: 80%;
        justify-content: center;
    }

    .menu-navegacion{
        display: flex;
        gap: 20px;
        list-style: none;
        justify-content: center;
    }

    .menu-navegacion a{
        text-decoration: none;   /* Quita el subrayado */
        font-size: 16px;         /* Aumenta o reduce el tamaño */
        color: white;            /* Color opcional */
    }

    #logoPrincipal{
        height: 120px;
        width: 80px;
    }

    #logoSecundario{
        height: 100px;
        width: 120px; 
    }

    #ico_redesSociales{
        width: 40px;
        height: 35px;
    }
    
    .logo{
        display: flex;
        flex-direction: column;
        justify-content:center;
        align-items: center;
        width: 100%;
    }

    .lis{
        padding: 5px 8px;  /* ⬅️ AQUÍ se agranda el cuadro */
    }
    
    #gif_unedol{
        width: 100px;
        height: auto 60%;
        max-width: 200px;
    }

    .cont_gif{
        display: flex;
        justify-content: flex-end; /* derecha */
        align-items: start;
    }
}


/* Para que el <a> ocupe todo el cuadro */ 
@media screen and (max-width:730px) {
    .encabezado{
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        align-items: center;
    }    

     .encabezado02{
        display: flex;
        flex-direction: column;
    }

     .navegacion{
        width: 90%;
        justify-content: center;
    }

    .menu-navegacion{
        display: flex;
        flex-direction: column;
        gap: 20px;
        list-style: none;
        justify-content: center;
    }

    .menu-navegacion a{
        text-decoration: none;   /* Quita el subrayado */
        font-size: 14px;         /* Aumenta o reduce el tamaño */
        color: white;            /* Color opcional */
    }

    #logoPrincipal{
        height: 100px;
        width: 60px;
    }

    #logoSecundario{
        height: 80px;
        width: 100px; 
    }

    #ico_redesSociales{
        width: 35px;
        height: 25px;
    }
    
    .logo{
        display: flex;
        flex-direction: column;
        justify-content:center;
        align-items: center;
        width: 100%;
    }

    .lis{
        padding: 5px 8px;  /* ⬅️ AQUÍ se agranda el cuadro */
    }
    
    #video{
        width: 100px;
        height: auto 60%;
        max-width: 200px;
    }

    .cont_gif{
        display: flex;
        justify-content: flex-end; /* derecha */
        align-items: start;
    }

    .menu-navegacion {
        flex-direction: column;
        gap: 6px;
        width: 100%;
    }

    .lis a {
        padding: 10px 18px;
        font-size: 0.85rem;
        text-align: center;
    }
}


/* Efecto principal */

@property --page-rotate {
	syntax: "<angle>";
	inherits: true;
	initial-value: 0deg;
}
@property --spine-shift {
	syntax: "<length>";
	inherits: true;
	initial-value: 0px;
}


/* ====== escena ====== */
.escena {
    width: 100%;
    height: 100svh;
    perspective: 1000px;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;

    /* Fondo gris elegante con overlay */
    background:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.55)
        ),
        url("../img/index/instalacion01.webp");
    background-size: cover;
    background-position: center;

}

/* ====== LETRAS PRINCIPALES ====== */
.bg-typography {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 100%;
    text-align: center;

    font-size: clamp(3rem, 10vw, 10rem);
    font-weight: 800;
    line-height: 0.9;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    pointer-events: none;
    z-index: 0;

    color: rgba(255,255,255,0.8);
    text-shadow: 0 0 20px black;
}

.bg-typography span {
    display: block;
}

/****************** MAIN *******************/
.main{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* ====== TEXTO GIGANTE ATRÁS ====== */
.bg-typography::after {
    content: "UNEDOL";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-size: clamp(6rem, 20vw, 18rem);
    font-weight: 900;
    letter-spacing: 12px;

    /* Gradiente dorado y azul */
    background: linear-gradient(135deg, #D4A017, #1E6BA2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    z-index: -1;

    text-shadow:
        2px 2px 8px rgba(0,0,0,0.4),
        0 0 20px rgba(0,0,0,0.2);
}

/* ====== GALERIA 3D ====== */
.galeria-book-3d {
    position: relative;
    width: 200px;
    height: 300px;
    perspective: 1000px;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;

    --spine-shift: 0px;
    transform: translateX(var(--spine-shift));
    transition: --spine-shift 0.5s ease;
}

.galeria-book-3d.book-open {
    --spine-shift: 100px;
}

/* ====== ITEM INDIVIDUAL ====== */
.galeria-book-3d__item {
    position: absolute;
    width: 320px;
    height: 400px;
    perspective: 1000px;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-origin: left center;
    --page-rotate: 0deg;
    transform: rotateY(var(--page-rotate));
    transition: --page-rotate 0.5s ease-in-out, z-index 0s;
    transition-delay: calc((4 - var(--i)) * 0.1s), calc((4 - var(--i)) * 0.1s + 0.25s);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.5),
        0 0 10px rgba(255,255,255,0.2);
    cursor: pointer;
    z-index: calc(10 - var(--i));
}

.galeria-book-3d__item.is-open {
    --page-rotate: -180deg;
    transition-delay: 0s, 0s;
    z-index: calc(20 + var(--i));
}

.galeria-book-3d__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    background: #f4f4f4;
    backface-visibility: hidden;
}

.galeria-book-3d__item img:nth-child(2) {
    transform: rotateY(180deg) translateZ(1px);
    z-index: 1;
}

/* ====== RESPONSIVE ====== */
@media screen and (max-width: 950px) {
    .galeria-book-3d {
        transform: translateX(var(--spine-shift)) scale(0.85);
    }

    .bg-typography {
        font-size: clamp(2.5rem, 8vw, 6rem);
    }

    .bg-typography::after {
        font-size: clamp(5rem, 15vw, 14rem);
    }
}

@media (max-width: 600px) {
     .galeria-book-3d {
        width: clamp(120px, 40vw, 180px);
        height: clamp(180px, 55vw, 260px);
    }

    .galeria-book-3d__item {
        width: clamp(200px, 75vw, 280px);
        height: clamp(260px, 90vw, 360px);
    }

    .bg-typography {
        font-size: clamp(2rem, 8vw, 5rem);
    }

    .bg-typography::after {
        font-size: clamp(4rem, 15vw, 12rem);
    }
}

@media (max-width: 480px) {

    .galeria-book-3d {
        width: clamp(100px, 50vw, 150px);
        height: clamp(150px, 70vw, 220px);
    }

    .galeria-book-3d__item {
        width: clamp(180px, 85vw, 240px);
        height: clamp(240px, 110vw, 320px);
    }
}


/********************* Seccción de nosotros *********************/
.nosotros {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
    background: #f4f6f9;
    padding: 40px;
    margin: 20px 20px;
    border-radius: 10px;
    width: 98%  ;
}

.img_nosotros {
    width: 420px;
    min-width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* Contenedor del carrusel */
.carrusel-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1; /* cuadrado perfecto */
    max-width: 320px;     /* que no sea gigante en desktop */
    height: auto;         /* ya no necesitas altura fija */
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #0a2a43; /* fondo para el espacio vacío */
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: contain;  /* muestra la imagen completa sin recortar */
    object-position: center;
    opacity: 0;
    transition: opacity 0.7s ease;
    border-radius: 10px;
}

.slide.active {
    opacity: 1;
}

/* Puntos indicadores */
.dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #1E6BA2;
    border: 2px solid #D4A017;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background: #D4A017;
    transform: scale(1.3);
}

/* Cita con acento dorado */
.cita {
    border-left: 3px solid #D4A017;
    padding-left: 14px;
    color: #D4A017;
    font-style: italic;
}

/* Responsivo */
@media screen and (max-width: 930px) {
    .nosotros {
        flex-direction: column;
        text-align: center;
        padding: 28px 18px;
        gap: 28px;
    }

    .img_nosotros {
        width: 100%;
        min-width: unset;
    }

    .carrusel-wrapper {
        max-width: 220px;
        margin: 0 auto;
    }

    .inf_nosotros {
        width: 90%;
        text-align: left;
    }
}


@media screen and (max-width: 730px) {
    .nosotros {
        flex-direction: column;
        text-align: center;
        padding: 22px 16px;
        gap: 22px;
    }

    .img_nosotros {
        width: 80%;
        min-width: unset;
    }

    .carrusel-wrapper {
        max-width: 170px;
        margin: 0 auto;
    }

    .inf_nosotros {
        width: 70%;
        text-align: left;
    }
}



/*************************** Sección del video ***************************/

.video_promocional {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

#bg {
    position: absolute;
    inset: 0;
    background-image: url("https://www.mattcannon.games/codepen/newyear/nyc.png");
    background-size: cover;
    background-position: center;
    filter: brightness(0.92) contrast(1.1) saturate(0.9);
    z-index: 0;
}

#bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.25), rgba(0,0,0,0.65));
}

#video-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;   /* ← debajo del confeti */
}

#confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;   /* ← encima del video */
}


#yt-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.78vh;
    pointer-events: none;
}

/* Capa semitransparente sobre el video */
#video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 42, 67, 0.55) 0%,
        rgba(10, 42, 67, 0.35) 50%,
        rgba(10, 42, 67, 0.70) 100%
    );
    z-index: 1;
}

/* Contenido encima del video */
#hero-content {
    position: relative;
    z-index: 3;   /* ← encima de todo */
    text-align: center;
    padding: 2rem 1.5rem;
    color: #fff;
    max-width: 700px;
}

#hero-content h1 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 1px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

#hero-content h1 span {
    color: #D4A017;
    display: block;
    font-size: clamp(2.5rem, 8vw, 6rem);
    letter-spacing: 4px;
}

#hero-content p {
    margin: 1.2rem auto 2rem;
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: #E5E5E5;
    max-width: 480px;
    line-height: 1.7;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.btn-hero {
    display: inline-block;
    padding: 0.75rem 2.2rem;
    border: 2px solid #D4A017;
    color: #D4A017;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
}


.btn-hero:hover {
    background: #D4A017;
    color: #0A2A43;
}

@media (max-width: 600px) {
    #hero-content h1 { font-size: 2rem; }
    #hero-content h1 span { font-size: 2.8rem; }
    .btn-hero { padding: 0.65rem 1.6rem; font-size: 0.9rem; }
}

/* ====== MEJORAS RESPONSIVE VIDEO ====== */

/* Tablets */
@media (max-width: 900px) {
    #hero-content {
        max-width: 90%;
        padding: 2rem 1rem;
    }
}

/* Celulares */
@media (max-width: 600px) {

    .video_promocional {
        min-height: 80vh; /* evita que sea demasiado alto */
    }

    #yt-video {
        width: 100vw;
        height: 100vh;
        object-fit: cover; /*clave */
    }

    #hero-content {
        padding: 1.5rem 1rem;
    }

    #hero-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Celulares pequeños */
@media (max-width: 400px) {

    #yt-video {
        width: 140vw;
        height: 78vw;
    }

    #hero-content h1 {
        font-size: 1.7rem;
    }

    #hero-content h1 span {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
}

/* MODO HORIZONTAL (CLAVE) */
@media (max-height: 500px) and (orientation: landscape) {

    .video_promocional {
        min-height: 100vh;
    }

    #yt-video {
        width: 100vw;
        height: 56.25vw;
    }

    #hero-content {
        padding: 1rem;
    }

    #hero-content h1 {
        font-size: 1.5rem;
    }

    #hero-content h1 span {
        font-size: 2rem;
    }

    #hero-content p {
        font-size: 0.85rem;
        margin: 0.5rem auto 1rem;
    }
}


/*
z-index 0 → #bg (imagen NYC)
z-index 1 → #confetti (partículas)
z-index 2 → #video-container
  └── z-index 0 → #yt-video (iframe)
  └── z-index 1 → #video-overlay (capa azul)
z-index 3 → #hero-content (título + botón)
*/


/************************ OFERTAS ACADEMICAS *************************/
.ofertas_acad{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 40px;
    background: #f4f6f9;
    margin: 20px 20px;
    border-radius: 10px;
    width: 98%;
}

.ofertas_acad h1,
.ofertas_acad h3{
    color: #0A2A43;
    text-align: center;
}

.ofertas_acad h1{
    font-size: 38px;
}

.ofertas_acad h3{
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 20px;
}


/* CONTENEDOR */

.ofertas{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 90px;
    flex-wrap: wrap;
    width: 100%;
    padding: 40px;
    margin: 20px 20px;

}


/* TARJETAS */
.of_inicial,
.of_basica,
.of_bachillerato{

    width: 380px;   /* mas ancho */
    height: 480px;  /* mas alto */
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;

    box-shadow: 0 6px 15px rgba(0,0,0,0.15);

    transition: 0.3s;
}

.of_inicial:hover,
.of_basica:hover,
.of_bachillerato:hover{

    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);

}


/* TITULO */

.of_inicial h4,
.of_basica h4,
.of_bachillerato h4{

    color: #0A2A43;
    font-size: 22px;
    margin: 10px 0;
}


/* TEXTO */

.of_inicial p,
.of_basica p,
.of_bachillerato p{

    padding: 0 15px 15px 15px;
    color: #555;
    font-size: 16px;
}


/* IMAGEN */

#img_of{

    width: 100%;
    height: 290px;
    object-fit: cover;

}



/* ---------- TABLET ---------- */

@media (max-width: 930px){

    .of_inicial,
    .of_basica,
    .of_bachillerato{

        width: 300px;
    }


    #img_of{
        height: 220px;
    }

}



/* ---------- CELULAR ---------- */

@media (max-width: 730px){

    .ofertas{
        flex-direction: column;
        align-items: center;
    }

    .of_inicial,
    .of_basica,
    .of_bachillerato{

        width: 90%;
    }

    #img_of{
        height: 200px;
    }

}

/********************* Pie de pagina *********************/
.footer{
     background: linear-gradient(
        90deg,
        #0A2A43 0%,
        #000000 50%,
        #D4A017 100%
    );
    color: #FFFFFF;
    padding: 40px 20px 20px;
}

/* CONTENIDO */
.footer-contenido{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* COLUMNAS */
.footer-col h3{
    color: #D4A017;
    margin-bottom: 10px;
}

.footer-col p,
.footer-col a{
    color: #E5E5E5;
    font-size: 16px;
    text-decoration: none;
}

.footer-col a:hover{
    color: #D4A017;
}

/* LISTAS */
.footer-col ul{
    list-style: none;
    padding: 0;
}

.footer-col ul li{
    margin-bottom: 8px;
}

/* MAPA */
.footer-col iframe{
    border-radius: 10px;
}

/* COPYRIGHT */
.footer-copy{
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
    font-size: 13px;
    color: #f4f6f9;
}

@media (max-width: 900px){

    .footer-contenido{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

}

@media (max-width: 600px){

    /* Todo en columna */
    .footer-contenido{
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Centrar textos */
    .footer-col{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Ajuste de textos */
    .footer-col h3{
        font-size: 16px;
    }

    .footer-col p,
    .footer-col a{
        font-size: 13px;
    }

    /* Mapa más pequeño */
    .footer-col iframe{
        width: 100%;
        height: 180px;
    }

    /* Espaciado inferior */
    .footer-copy{
        font-size: 12px;
        padding-top: 15px;
    }

}