/* =====================================================
   RESET GENERAL
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #FF0000;
    --blue: #004999;
    --yellow: #FFD300;
    --white: #FFFFFF;

    --grad-red: linear-gradient(90deg, #FB1400 0%, #8E0000 100%);
    --grad-blue: linear-gradient(135deg, #0076A4 0%, #003C81 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo', sans-serif;
    background: #ffffff;
    color: #111111;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =====================================================
   CONTENEDOR
===================================================== */
.container {
    width: min(1280px, calc(100% - 64px));
    margin: 0 auto;
}

/* =====================================================
   TOPBAR
===================================================== */
.topbar {
    width: 100%;
    background: var(--grad-red);
    color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
    position: relative;
    z-index: 100;
}

.topbar-track {
    display: flex;
    width: max-content;
    animation: scrollTopbar 28s linear infinite;
}

.topbar-content {
    display: flex;
    align-items: center;
    gap: 42px;
    padding-right: 42px;
    font-size: 14px;
    font-weight: 700;
}

.topbar-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar-content i {
    color: var(--yellow);
    font-size: 12px;
}

@keyframes scrollTopbar {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* =====================================================
   HEADER
===================================================== */
.header {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.nav {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--grad-blue);
    color: var(--yellow);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(0, 73, 153, 0.18);
}

.logo-text h2 {
    font-size: 30px;
    line-height: 1;
    color: var(--blue);
    font-weight: 800;
}

.logo-text p {
    margin-top: 4px;
    font-size: 13px;
    color: #7b8ca5;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.menu a {
    color: #6d85a4;
    font-size: 18px;
    font-weight: 600;
    transition: 0.25s ease;
}

.menu a:hover {
    color: var(--blue);
}

.btn-whatsapp-top {
    background: var(--blue);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(0, 73, 153, 0.20);
    transition: 0.25s ease;
}

.btn-whatsapp-top:hover {
    transform: translateY(-2px);
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero {
    position: relative;
    min-height: calc(100vh - 128px);
    background:
        linear-gradient(90deg, rgba(0, 73, 153, 0.88) 0%, rgba(0, 73, 153, 0.76) 48%, rgba(0, 73, 153, 0.28) 100%),
        url('../../img/hero-bg.webp') center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 60, 129, 0.94) 0%,
        rgba(0, 73, 153, 0.82) 52%,
        rgba(0, 73, 153, 0.10) 100%
    );
}

.hero-light {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 73, 153, 0) 58%,
        rgba(123, 180, 196, 0.18) 100%
    );
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.22;
}

.hero::before {
    width: 420px;
    height: 420px;
    background: #0076A4;
    top: -120px;
    left: -120px;
}

.hero::after {
    width: 420px;
    height: 420px;
    background: #FFD300;
    right: -140px;
    top: 80px;
}

.hero-container {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 128px);
    display: flex;
    align-items: center;
    padding: 70px 0 90px;
}

.hero-content {
    max-width: 760px;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid rgba(255, 211, 0, 0.45);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    color: var(--yellow);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 34px;
}

.hero-badge i {
    font-size: 14px;
}

.hero h1 {
    font-size: 64px;
    line-height: 0.98;
    font-weight: 800;
    margin-bottom: 28px;
}

.hero h1 span {
    color: var(--yellow);
}

.hero-text {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 25px;
    line-height: 1.45;
    margin-bottom: 38px;
}

.hero-text strong {
    color: var(--white);
}

.hero-text span {
    color: var(--yellow);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.btn {
    border-radius: 999px;
    padding: 18px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 800;
    transition: 0.25s ease;
}

.btn-main {
    background: var(--yellow);
    color: var(--blue);
    min-width: 420px;
    box-shadow: 0 15px 30px rgba(255, 211, 0, 0.25);
}

.btn-main:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.04);
    min-width: 290px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.reviews {
    display: flex;
    align-items: center;
    gap: 22px;
}

.stars {
    display: flex;
    gap: 7px;
}

.stars i {
    color: var(--yellow);
    font-size: 26px;
}

.reviews-text strong {
    display: block;
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 2px;
}

.reviews-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    font-weight: 500;
}

/* =====================================================
   WHATSAPP FLOTANTE
===================================================== */
.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    background: #25D366;
    color: #ffffff;
    padding: 18px 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    box-shadow: 0 16px 35px rgba(37, 211, 102, 0.35);
}

.floating-whatsapp i {
    font-size: 24px;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 64px;
    }

    .hero-text {
        font-size: 22px;
    }

    .logo-text h2 {
        font-size: 24px;
    }

    .menu {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .topbar {
        display: none;
    }

    .nav {
        min-height: 80px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 16px 0;
    }

    .menu {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        min-height: auto;
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 32px, 1280px);
    }

    .menu {
        gap: 16px;
        flex-wrap: wrap;
    }

    .menu a {
        font-size: 16px;
    }

    .btn-whatsapp-top {
        width: 100%;
        justify-content: center;
    }

    .hero-content {
        text-align: left;
    }

    .hero-badge {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-text {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-main,
    .btn-secondary {
        width: 100%;
        min-width: 100%;
    }

    .reviews {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .floating-whatsapp {
        right: 14px;
        left: 14px;
        bottom: 14px;
        justify-content: center;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 12px;
}

.logo-text h2 {
    font-size: 30px;
    line-height: 1;
    color: var(--blue);
    font-weight: 800;
}

.logo-text p {
    margin-top: 4px;
    font-size: 13px;
    color: #7b8ca5;
    letter-spacing: 1.5px;
    font-weight: 600;
}


/* =====================================================
   SECCIÓN ESTADÍSTICAS (FONDO BLANCO)
===================================================== */
.stats{
    background:#ffffff;
    padding:38px 0;
    position:relative;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    align-items:center;
}

.stat-box{
    text-align:center;
    position:relative;
}

.stat-box:not(:last-child)::after{
    content:"";
    position:absolute;
    top:50%;
    right:0;
    transform:translateY(-50%);
    width:1px;
    height:58px;
    background:rgba(0,73,153,.12);
}

.stat-box h2{
    font-size:52px;
    font-weight:800;
    color:#004999;
    line-height:1;
    margin-bottom:8px;
}

.stat-box p{
    font-size:13px;
    letter-spacing:2px;
    font-weight:700;
    color:#666;
}

/* RESPONSIVE */
@media (max-width:768px){

    .stats{
        padding:25px 0;
    }

    .stats-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .stat-box:not(:last-child)::after{
        display:none;
    }

    .stat-box{
        padding-bottom:15px;
        border-bottom:1px solid rgba(0,73,153,.08);
    }

    .stat-box:last-child{
        border-bottom:none;
        padding-bottom:0;
    }

    .stat-box h2{
        font-size:38px;
    }
}


/* =====================================================
   WHY US SECTION - ESTILO MÁS PREMIUM / MODERNO
===================================================== */
.why-us{
    padding:120px 0;
    background:
    radial-gradient(circle at top left, rgba(255,211,0,.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(0,118,164,.10), transparent 35%),
    #f6f9ff;
    position:relative;
    overflow:hidden;
}

/* TOP */
.why-top{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
    margin-bottom:70px;
}

.mini-title{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,0,0,.08);
    color:#FF0000;
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:22px;
}

.why-title h2{
    font-size:64px;
    line-height:1.05;
    font-weight:900;
    color:#004999;
    max-width:720px;
}

.why-title h2 span{
    color:#FFD300;
    text-shadow:0 2px 0 rgba(0,0,0,.05);
}

.why-text p{
    font-size:24px;
    line-height:1.8;
    color:#456894;
}

/* GRID */
.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD MODERNA */
.why-card{
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.9);
    border-radius:30px;
    padding:35px;
    box-shadow:
    0 20px 40px rgba(0,73,153,.08),
    inset 0 1px 0 rgba(255,255,255,.9);
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.why-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(to right,#FF0000,#FFD300,#004999);
}

.why-card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:
    0 28px 55px rgba(0,73,153,.16);
}

/* TOP CARD */
.card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:28px;
    gap:15px;
}

.icon-box{
    width:62px;
    height:62px;
    border-radius:20px;
    background:linear-gradient(135deg,#0076A4,#003C81);
    color:#FFD300;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    box-shadow:0 10px 20px rgba(0,73,153,.18);
}

.card-top span{
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    color:#7d98bd;
}

/* TEXTOS */
.why-card h3{
    font-size:36px;
    line-height:1.2;
    color:#004999;
    margin-bottom:18px;
    font-weight:900;
}

.why-card p{
    font-size:20px;
    line-height:1.7;
    color:#607ca5;
    margin-bottom:28px;
}

/* FOOTER CARD */
.card-bottom{
    margin-top:auto;
    padding-top:22px;
    border-top:1px solid #e5eefc;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.card-bottom strong{
    font-size:14px;
    color:#004999;
    letter-spacing:1px;
    font-weight:900;
}

.card-bottom i{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#eef4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#004999;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:992px){

    .why-top{
        grid-template-columns:1fr;
        gap:30px;
    }

    .why-title h2{
        font-size:46px;
    }

    .why-text p{
        font-size:18px;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-card h3{
        font-size:30px;
    }

    .why-card p{
        font-size:17px;
    }
}

@media(max-width:768px){

    .why-us{
        padding:80px 0;
    }

    .why-title h2{
        font-size:34px;
    }

    .why-card{
        padding:26px;
        border-radius:24px;
    }

    .icon-box{
        width:55px;
        height:55px;
        font-size:20px;
    }
}

/* =====================================================
   CONTACTO / UBICACIÓN
===================================================== */
.contact-section{
    padding:120px 0;
    background:linear-gradient(135deg,#0076A4,#004999,#003C81);
    position:relative;
    overflow:hidden;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* IZQUIERDA */
.mini-contact{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#FFD300;
    font-size:13px;
    font-weight:800;
    letter-spacing:3px;
    margin-bottom:20px;
}

.contact-info h2{
    font-size:64px;
    line-height:1.05;
    color:#fff;
    font-weight:900;
    margin-bottom:24px;
}

.contact-info h2 span{
    color:#FFD300;
}

.contact-info p{
    font-size:22px;
    line-height:1.8;
    color:rgba(255,255,255,.82);
    margin-bottom:35px;
}

/* CARDS */
.contact-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    padding:22px;
    border-radius:24px;
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:18px;
    backdrop-filter:blur(10px);
    transition:.3s;
}

.contact-card.active,
.contact-card:hover{
    background:rgba(255,255,255,.14);
    border-color:#FFD300;
}

.icon-contact{
    width:58px;
    height:58px;
    border-radius:18px;
    background:#FFD300;
    color:#004999;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.contact-card small{
    color:#FFD300;
    font-size:12px;
    letter-spacing:2px;
    font-weight:800;
}

.contact-card h4{
    font-size:28px;
    color:#fff;
    margin:5px 0;
}

.contact-card span{
    color:rgba(255,255,255,.78);
    font-size:17px;
}

/* BOTONES */
.contact-buttons{
    display:flex;
    gap:18px;
    margin-top:28px;
    flex-wrap:wrap;
}

.btn-green{
    background:#25D366;
    color:#fff;
    padding:18px 28px;
    border-radius:50px;
    font-weight:800;
}

.btn-light{
    background:#fff;
    color:#004999;
    padding:18px 28px;
    border-radius:50px;
    font-weight:800;
}

/* MAPA */
.map-box{
    position:relative;
}

.map-box img{
    width:100%;
    border-radius:28px;
    box-shadow:0 20px 45px rgba(0,0,0,.22);
}

.map-float{
    position:absolute;
    left:-35px;
    bottom:30px;
    background:#004999;
    color:#fff;
    padding:26px;
    border-radius:24px;
    max-width:280px;
    box-shadow:0 18px 40px rgba(0,0,0,.20);
}

.map-float small{
    color:#FFD300;
    font-size:12px;
    letter-spacing:2px;
    font-weight:800;
}

.map-float h4{
    font-size:31px;
    line-height:1.3;
    margin-top:10px;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:992px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-info h2{
        font-size:46px;
    }

    .contact-info p{
        font-size:18px;
    }

    .map-float{
        left:20px;
        bottom:20px;
    }
}

@media(max-width:768px){

    .contact-section{
        padding:80px 0;
    }

    .contact-info h2{
        font-size:36px;
    }

    .contact-card h4{
        font-size:21px;
    }

    .contact-buttons{
        flex-direction:column;
    }

    .btn-green,
    .btn-light{
        width:100%;
        text-align:center;
    }

    .map-float{
        position:static;
        margin-top:20px;
        max-width:100%;
    }
}

/* MAPA */
.map-box{
    position:relative;
}

.map-box iframe{
    width:100%;
    height:650px;
    border:0;
    border-radius:28px;
    box-shadow:0 20px 45px rgba(0,0,0,.22);
}

/* =====================================================
   UNIVERSIDADES CARRUSEL
===================================================== */
.universidades{
    padding:110px 0;
    background:#ffffff;
    overflow:hidden;
}

.universidades-head{
    text-align:center;
    max-width:900px;
    margin:0 auto 55px;
}

.universidades-head .mini-title{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#FF0000;
    font-size:13px;
    font-weight:800;
    letter-spacing:3px;
    margin-bottom:18px;
}

.universidades-head h2{
    font-size:58px;
    line-height:1.1;
    color:#004999;
    font-weight:900;
    margin-bottom:18px;
}

.universidades-head h2 span{
    color:#FFD300;
}

.universidades-head p{
    font-size:22px;
    color:#666;
}

/* SLIDER */
.uni-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.uni-track{
    display:flex;
    align-items:center;
    gap:28px;
    width:max-content;
    animation:uniMove 28s linear infinite;
}

/* ITEM */
.uni-item{
    width:220px;
    height:130px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    flex-shrink:0;
    transition:.3s;
}

.uni-item:hover{
    transform:translateY(-8px);
    border-color:#FFD300;
    box-shadow:0 18px 35px rgba(0,73,153,.12);
}

.uni-item img{
    max-width:100%;
    max-height:75px;
    object-fit:contain;
}

/* LOOP */
@keyframes uniMove{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* RESPONSIVE */
@media(max-width:992px){

    .universidades-head h2{
        font-size:42px;
    }

    .universidades-head p{
        font-size:18px;
    }

    .uni-item{
        width:180px;
        height:110px;
    }
}

@media(max-width:768px){

    .universidades{
        padding:80px 0;
    }

    .universidades-head h2{
        font-size:32px;
    }

    .uni-track{
        gap:18px;
        animation-duration:22s;
    }

    .uni-item{
        width:150px;
        height:95px;
        border-radius:18px;
    }

    .uni-item img{
        max-height:55px;
    }
}

/* =====================================================
   FOOTER
===================================================== */
.footer{
    background:linear-gradient(135deg,#004999,#003C81);
    color:#fff;
    padding-top:90px;
    position:relative;
    overflow:hidden;
}

.footer::before{
    content:"John Neper";
    position:absolute;
    bottom:-20px;
    left:50%;
    transform:translateX(-50%);
    font-size:220px;
    font-weight:900;
    color:rgba(255,255,255,.03);
    white-space:nowrap;
    pointer-events:none;
}

/* GRID */
.footer-grid{
    display:grid;
    grid-template-columns:1.4fr .8fr 1fr;
    gap:60px;
    position:relative;
    z-index:2;
}

/* BRAND */
.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.footer-logo img{
    width:56px;
    background:#fff;
    border-radius:14px;
    padding:8px;
}

.footer-logo h3{
    font-size:34px;
    font-weight:800;
}

.footer-logo span{
    color:#FFD300;
    font-size:13px;
    letter-spacing:2px;
    font-weight:800;
}

.footer-brand p{
    color:rgba(255,255,255,.78);
    font-size:22px;
    line-height:1.7;
    max-width:520px;
    margin-bottom:28px;
}

/* SOCIAL */
.footer-social{
    display:flex;
    gap:14px;
}

.footer-social a{
    width:46px;
    height:46px;
    border-radius:50%;
    background:rgba(255,255,255,.10);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.footer-social a:hover{
    background:#FFD300;
    color:#004999;
}

/* LINKS */
.footer-links h4,
.footer-contact h4{
    color:#FFD300;
    font-size:14px;
    letter-spacing:3px;
    margin-bottom:22px;
}

.footer-links a{
    display:block;
    color:#fff;
    margin-bottom:18px;
    font-size:20px;
    transition:.3s;
}

.footer-links a:hover{
    color:#FFD300;
    padding-left:6px;
}

/* CONTACT */
.footer-contact p{
    display:flex;
    gap:12px;
    align-items:flex-start;
    color:#fff;
    margin-bottom:18px;
    font-size:19px;
    line-height:1.6;
}

.footer-contact i{
    color:#FFD300;
    margin-top:4px;
}

/* BOTTOM */
.footer-bottom{
    margin-top:70px;
    border-top:1px solid rgba(255,255,255,.08);
    padding:24px 0;
    position:relative;
    z-index:2;
}

.footer-copy{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-copy span{
    color:rgba(255,255,255,.75);
    font-size:16px;
}

.footer-copy a{
    color:#FFD300;
    font-size:16px;
    font-weight:700;
}

.footer-copy a strong{
    color:#fff;
}

/* RESPONSIVE */
@media(max-width:992px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-logo h3{
        font-size:28px;
    }

    .footer-brand p{
        font-size:18px;
    }

    .footer-links a,
    .footer-contact p{
        font-size:17px;
    }

    .footer::before{
        font-size:120px;
    }
}

@media(max-width:768px){

    .footer{
        padding-top:70px;
    }

    .footer-copy{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer::before{
        display:none;
    }
}