* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* global */
body {
    overflow-x: hidden;
    font-family: "Raleway", sans-serif;
}
:root {
    --col-width: 70px;   /* Ancho de cada columna */
    --gutter: 23px;      /* Espacio entre columnas */
    --total-cols: 12;    /* Número total de columnas */
    --container-width: calc(var(--total-cols) * var(--col-width) + (var(--total-cols) - 1) * var(--gutter));
  }
  
/* colores */

.negro{
    color: #222222;
}
.azul1{
    color: #2324ED;
}
.azul2{
    color: #173090;
}
.rosa{
    color:#FE6484;
}
.rosa2{
    color: #FFD7DF;
}
.rosa-light{
    color: rgba(255, 215, 223, 0.26);
}


/* font */

.regular{
    font-weight: 400;
}
.semibold{
    font-weight: 600;
}
.bold{
    font-weight: 700;
}
.italic{
    font-weight: 300;
    font-style: italic;
}
.medium{
    font-weight: 500;
}

h1{
    font-size: 40px;
}
h2{
    font-size: 42px;
}

/* margenes */
.margen-inicial{
    margin-top: 132px;
}

/* nav */
.nav-link{
    color: white;

}
.nav-link:hover{
    color: white;
    border-bottom: 1px solid white;
}
.navbar-toggler{
    color: white;
    border: 1px solid white;
}
.navbar-toggler-icon{
    filter: invert(1) brightness(1000%);
}


a.logo{
    img{
     width: 180px;
     height: auto;
    }
}

/* botones */
.boton {
    background-color: #234DE4;
    color: white; 
    text-decoration: none;
    padding: 15px;
}
.boton-azul2{
    background-color: #234DE4;
    color: white; 
    text-decoration: none;
    padding: 10px 35px 10px 35px;
    border-radius: 5px;
    text-align: center;
}
.boton-azullight {
    background-color: #E8EFFF; 
    color: #333333; 
    border: 1px solid #D8DFF3; 
    text-decoration: none;
    padding: 10px 35px;
    border-radius: 5px;
    text-align: center;
    display: inline-block; /* Asegura que respete el padding */
    transition: all 0.3s ease-in-out; /* Animación suave */
    width: 100%;
}
.boton-azullight.active{
    background-color: #234DE4; 
    color: white; 
    font-weight: 500;
}

.boton-azullight:hover{
    background-color: #234DE4; 
    color: white; 
    font-weight: 500;

}

.boton-secundario {
    background-color: #FE6484;
    color: white; 
    text-decoration: none;
    padding: 7px 15px;
    border-radius: 5px;
    width: 100%;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 0px; 
    transition: gap 0.6s ease-in-out; 
}
.flecha {
    opacity: 0;
    width: 0;
    overflow: hidden;
    display: inline-block;
    margin-left: 0;
    transition: opacity 0.3s ease-in-out, width 0.3s ease-in-out, margin-left 0.3s ease-in-out;
}

.boton-secundario:hover {
    gap: 5px; 
}

.boton-secundario:hover .flecha {
    opacity: 1;
    width: auto; 
    margin-left: 5px;
}


.boton:hover, .boton-azul2:hover{
    box-shadow: inset 0 0 0 2px blue;
    background-color: white;
    color: #234de4;
    font-weight:500;
}

.iconoshov{
    color: #2324ED;
}
.iconoshov:hover{
    border-bottom: 2px solid #2324ED;
}

a.botiquin:hover{
    text-decoration: underline;
}

/* fin global */

/* index carrusel portada */

.carousel-inner{
    height: 580px;
}
.carousel-item img {
    height: 100%;
    object-fit: cover; 
}

.carousel-caption {
    top: 82%; 
    transform: translateY(-75%); 
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    left: 10%;
    display: block !important;

}
@media (max-width: 768px) {
    .carousel-caption {
        bottom: -48%;
        left: 8%;
        width: 80%;
        
       
        padding: 10px;
        h1 {
            font-size: 24px;
        }
    
        h2 {
            font-size: 26px;
        }
    }
}
@media (max-width: 768px) {
    #carouselExampleFade {
        max-height: 210px;
        margin-top: 163px;
    }
}



.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    
}
@media (min-width: 1400px) {
    .container{
        max-width: 1220px;
    }
}

/* fin carrusel */

/* seccion1 portada */

.img-seccion-uno{
    max-height: 366px;

}
.img2-seccion-uno{
    max-height: 134px;

}

@media (max-width: 768px) {
    .img-seccion-uno {
        max-height: 100%;
    }
    .img2-seccion-uno{
        max-height: 100%;
    }
}
/* index seccion2 portada */

.secciondos-portada{
    margin-top: 50px;
}
@media (max-width: 768px) {
    
    .secciondos-portada{
        margin-top: 40px;
    }
}
@media (max-width: 767.98px) {
    /* Ajustar el ancho del SVG (col-md-1) y el texto (col-md-5) */
    .secciondos-portada .col-md-1 {
      flex: 0 0 20%; /* El SVG ocupa el 20% */
      max-width: 20%;
    }
  
    .secciondos-portada .col-md-5 {
      flex: 0 0 80%; /* El texto ocupa el 80% */
      max-width: 80%;
    }
  
    /* Ocultar la segunda imagen */
    .secciondos-portada .img2-seccion-uno {
      display: none;
    }
  
    /* Asegurarse de que la primera imagen se muestre correctamente */
    .secciondos-portada .img-seccion-uno {
      display: block;
      width: 100%; 
      padding: 20px;
    }
  }
/* fin de seccion2 portada */
.margini{
    margin-top: 90px;
}
/* index seccion3 servicios */
@media (max-width: 768px) {
    .seccion-servicios {
        margin-top: 0px !important;
        
    }

}
@media (max-width: 768px) {
    .border-servicios1 {
        max-height: 120px;
    }

}

.border-servicios{
    border: 1px solid #EFF3F7;
    border-radius: 10px;
    position: relative;
    background-color: #E8EFFF;
    height: 148px;
    transition: background 0.3s ease, color 0.3s ease;
    width: 290px;
}
.border-servicios1{
    position: relative;
    height: 148px;
    width: 290px;
}
.border-servicios2{
    
    position: relative;
    height: 148px;
    transition: background 0.3s ease, color 0.3s ease;
    width: 290px;
}
.border-servicios22{
    position: relative;
    height: 148px;
    width: 290px;
    
}
.bordebottom{
    border-bottom: 1px solid #2423ed;
}
.borde-lado{
    border-right: 1px solid #2423ed;
}

.servicios-boton{
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
    z-index: 1;
    padding: 0 10px;
    h6 {
        text-decoration: none;
        color: black;
    }
}
a{
    text-decoration: none;
}
.border-servicios svg {
    transition: fill 0.3s ease;
}

.border-servicios:hover svg {
    path{
        fill: white;

    }
}
.border-servicios:hover::before {
    opacity: 1;
    background: linear-gradient(0deg, rgba(15, 72, 114, 0.67) 0%, rgba(15, 72, 114, 0.67) 100%), url('../img/background-servicios.png') center/cover no-repeat;
    border-radius:10px; 
}

.border-servicios:hover h6 {
    color: white;
}

.border-servicios:hover svg {
    fill: white;
}
.border-servicios::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/background-servicios.png') center/cover no-repeat;
    opacity: 0; 
    transition: opacity 0.3s ease;
}
.filaservicios, .filaservicios2{ 
    padding-left: 120px;
    padding-right: 120px;
}

@media (max-width: 768px) {

    .filaservicios {
        padding-left: 15px !important; 
        padding-right: 15px !important;
       
    }
   .border-servicios, .border-servicios1{
    width: 100%;
   }
} 
/* @media (max-width: 768px) {

    .filaservicios2{
        padding-left: 15px;
        padding-right: 15px;
    }
    .filaservicios2 .col-md-3:first-child {
      width: 100%;
    }
  
    .filaservicios2 .col-md-3:not(:first-child),
    .col-md-3 {
      width: 48%; 
      max-width: 48%;
    }
     
}  */

/* Ajuste para pantallas menores a 768px */
@media (max-width: 1200px) {  
    .filaservicios2 {
        display: flex;  
        flex-wrap: wrap;  
        justify-content: center; 
        padding: 0 !important;  
    }

    .filaservicios2 .col-md-3 {  
        flex: 0 0 25%; 
        max-width: 25%;  
    }  

    .filaservicios2 img{  
        width: 90%; 
        height: auto;  
        display: block;  
        margin: 0 auto;  
    }  
}

@media (max-width: 768px) {  
    .filaservicios2 .col-md-3{  
        flex: 0 0 25%; 
        max-width: 25%;  
    }  
}

@media (max-width: 576px) {  
    .filaservicios2 .col-md-3 {  
        flex: 0 0 50%; 
        max-width: 50%;  
    }  
}


  


.bordearriba{
    border-top: 1px solid #EEEEEE;
}



  
  

/* index seccion instagram */

.seccion-instagram{
    margin-top: 143px;
 

}

/* slider textimonios */
.my-slider.tns-item{
    color: white;
    border-radius: 10px;
    padding: 30px 10px 30px 10px;
    margin-left: 2px;
    border-radius: 10px;
}

#prevBtn, #nextBtn{
    background-color: #FE6484;
    border: none;
    color: white;
    width: 100%;
    transition: background-color 0.3s ease;
    border-radius: 5px;

}

/* @media (max-width: 768px) {
    .btn1{
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 7px;
    }
    

} */
@media (max-width: 767.98px) {
    .contenedor .row {
      display: flex; /* Activa flexbox */
      justify-content: center; /* Centra los botones horizontalmente */
      align-items: center; /* Centra los botones verticalmente */
      flex-wrap: nowrap; /* Evita que los botones se envuelvan a la siguiente línea */
    }
  
    .contenedor .btn1 {
      flex: 0 0 30%; /* Los botones no crecen ni se encogen */
      width: auto; /* Ancho automático */
      margin: 0 5px; /* Espacio entre los botones */
    }
  
    .contenedor .col-md-5 {
      display: none; /* Oculta las columnas vacías en pantallas pequeñas */
    }
  }
#prevBtn:hover{
    box-shadow: inset 0 0 0 2px #2324ED;

}

#nextBtn:hover{
    box-shadow: inset 0 0 0 2px #2324ED;
    
}

#prevBtn:disabled,
#nextBtn:disabled {
    background-color: #FFD7DF;
    cursor: not-allowed;
    opacity: 0.6; /* Opcional: hace que se vea más apagado */
    color: #2324ED;

}

.my-slider .activo {
    background-color: #2324ED !important; 
    color: white;
    transition: background-color 0.3s ease;
    padding: 30px 10px 30px 10px;
    border-radius: 10px;
}

.my-slider .tns-item:not(.activo) {
    background-color: #F9FCFF; 
    opacity: 0.7; 
    color: #222222;
    padding: 30px 10px 30px 10px;
    border-radius: 10px;
}
/* fin slider */

/* división roja */
.footer-main {
	margin-top: 147px;
	border-top: 2px solid #244de5;
	background-color: #fff;
}
@media (max-width: 768px) {
    .footer-main {
        margin-top: 60px;
    }
}
.footer-main .widget {
	padding-right: 60px;
	padding-bottom: 0;
	color: #163194;
	background-color: transparent;
	margin-bottom: 0;
	border: none;
}
.footer-main .widget a {
	color: #163194;
}
.footer-main .widget .llamanos {
	font-size: 18px;
	color: #244de5;
}
.footer-main .widget-about h3 {
	margin-bottom: 35px;
	margin-top: 0;
}
.footer-main .widget-about > p {
	margin-bottom: 0;
	line-height: 24px;
}
.footer-main .widget-about .time-schedule {
	padding-right: 45px;
	padding-top: 40px;
}
.footer-main .widget-about .time-schedule p { 
	padding-bottom: 10px;
	border-bottom: 1px solid #26292c;
	margin-bottom: 20px;
	line-height: 18px;
}
.footer-main .widget-about .time-schedule p span {  
	float: right;
}
.footer-main .widget-title {
	font-weight: bold;
	color: #333;
	font-size: 14px;
	text-transform: uppercase;
	padding-bottom: 14px;
	position: relative;
	margin-bottom: 25px;
	margin-left: 0;
	margin-right: 0;
	background-color: transparent;
	border-bottom: none;
}
.footer-main .widget-title:before { 
	content: "";
	width: 20px;
	height: 2px;
	left: 0;
	bottom: 0;
	position: absolute;
	background-color: #244de5;
}

/* -- Contact Details */
.contact-details,
.contact-details .detail-box {
	position: relative;
}
.contact-details {
	width: 100%;
	display: inline-block;
	margin-top: -60px;
	margin-bottom: 55px;
	padding: 32px;
	background-color: #ca0813;
}
.contact-details:before,
.contact-details:after {
	content: "";
	position: absolute;
	border-bottom: 60px solid #ff000e; 
	top: 0;
}
.contact-details:before {
	border-left: 20px solid transparent;
	left: -20px;
}
.contact-details:after {
	border-right: 20px solid transparent;
	right: -20px;
}

.contact-details .detail-box { 
	color: #fff;
}
.contact-details .detail-box i {
	width: 64px;
	height: 64px;
	position: absolute;
	right: 0;
	line-height: 60px;
	text-align: center;
}
.contact-details .detail-box i img {
	filter: brightness(0) invert(1);
}
.contact-details .detail-box h3 { 

	margin: 0;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.contact-details .detail-box p { 
	font-size: 16px;
	margin-bottom: 0;
	line-height: 20px;
}
.contact-details .detail-box.phone-box {
	background-color: #ca0813;
}
.contact-details .detail-box.phone-box i {
	background-color: #163194;
	border-bottom-color: #163194;
}

.contact-details .detail-box.mail-box i {
	background-color: #0779bc;
}

.footer1{
    background-color: #173090;
    color: white; 
    li {
        list-style: none;
        margin-bottom: 5px;

    }
    a{
        color: white;
    }
    a:hover{
        text-decoration: underline;
    }
}





@media only screen and (min-width: 768px) and (max-width: 991px) {
	/* -- Middle Header */
	.middle-header .location h3,
	.middle-header .phone h3 {
		font-size: 23px;
	}
	.middle-header .location p,
	.middle-header .phone p {
		font-size: 12px;
	}
	.middle-header .phone {
		margin-left: 10px;
	}
	
	.page-banner {
		padding-top: 60px;
	}
	
	/* ## Footer */
	/* -- Contact Details */
	.contact-details .detail-box {
		padding-left: 57px;
	}
	.contact-details .detail-box i {
		width: 47px;
	}
	.contact-details .detail-box p {
		font-size: 12px;
	}
}
.logos {
    overflow: hidden;
    padding: 60px 0;
    white-space: nowrap;
    position: relative;
    width: 100%;
}
  
  .logos:before,
  .logos:after {
    position: absolute;
    top: 0;
    height: 100%;
    content: "";
    z-index: 2;
}
  

.logos-slide {
    display: inline-block;
    animation: 35s slide infinite linear;
}
  
.logos-slide img {
    display: inline-block;

}


.logos-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
  }
  
  .logos-slide {
    display: flex;
    width: max-content;
    animation: slide 60s linear infinite;

  }
  
  .logos-slide img {
    height: 50px; /* Ajusta el tamaño según lo necesites */
    margin: 0 27px; /* Espaciado entre imágenes */
  }
  
  /* Animación de desplazamiento infinito */
  @keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
  
/* fin index */


/* Nosotros pagina */

.portada-nosotros{
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), url(../img/bannernosotros.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 350px;
    h2 {
       
            transform: translateY(200%); 
            padding: 15px;
            display: block !important;
            color: white;

    }
   
}

@media (max-width: 768px) {
    .portada-nosotros {
        background-size: cover;
        height: 145px;
        margin-top: 160px;
        padding: 10px;

    
        h2 {
            font-size: 26px;
            transform: translateY(90%); 
        }
    }
}


.portada-servicios{
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), url(../img/bannerservicios.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 350px;
    h2 {
       
            transform: translateY(200%); /* Centra el texto en la imagen */
            padding: 15px;
            display: block !important;
            color: white;

    }
   
}
.portada-contacto{
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), url(../img/bannercontacto.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 300px;
    h2 {
       
            transform: translateY(200%); /* Centra el texto en la imagen */
            padding: 15px;
            display: block !important;
            color: white;

    }
   
}


.seccionnosotros2{
    background-color: #E8EFFF;
    padding: 31px 20px 30px 20px;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .div4-nosotros1{
        padding: 10px;
    }
 
        .seccionnosotros2 .col-md-1 {
          flex: 0 0 10%;
          max-width: 10%;
        }
      
        .seccionnosotros2 .col-md-5 {
          flex: 0 0 90%;
          max-width: 90%;
        }
}

.parentnosotros1 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 23px;
    grid-row-gap: 22.7px;
    }
    
    .div1-nosotros1 { grid-area: 1 / 1 / 5 / 4; }
    .div2-nosotros1 { grid-area: 1 / 4 / 4 / 7; }
    .div3-nosotros1 { grid-area: 4 / 4 / 5 / 7; }
    .div4-nosotros1 { grid-area: 1 / 7 / 5 / 13; }

    @media (max-width: 768px) {
        .parentnosotros1 {
            grid-template-columns: repeat(6, 1fr); /* Menos columnas para que todo entre bien */
            grid-template-rows: auto;
        }
    
        
        .div1-nosotros1 { grid-area: 1 / 1 / 3 / 4; } 
        .div2-nosotros1 { grid-area: 1 / 4 / 4 / 7; } 
        .div3-nosotros1 { grid-area: 2 / 4 / 3 / 7; } 
        
       
        .div4-nosotros1 { grid-area: 3 / 1 / 4 / 7; }
    }

.parentnosotros2 {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-column-gap: 23px;
        grid-row-gap: 20px;
        }
        
        .div1-nosotros2{ 
            grid-area: 1 / 1 / 2 / 6; 
            background-color: #2324ED;
            border-radius: 10px;
            color: white;
            padding: 50px 35px 50px 35px;
        }
        .div2-nosotros2 { grid-area: 1 / 6 / 2 / 13; }
        .div3-nosotros2 { grid-area: 2 / 1 / 3 / 5; }
        .div4-nosotros2 { grid-area: 2 / 5 / 3 / 9; }
        .div5-nosotros2 { grid-area: 2 / 9 / 3 / 13; }
        .div6-nosotros2 { grid-area: 3 / 1 / 4 / 13;}
        .div3-nosotros2, .div4-nosotros2, .div5-nosotros2{
            background-color: #FFD7DF;
            border-radius: 10px;
            color: #222222;
            padding: 50px 35px 50px 35px;
        }
        .div6-nosotros2 {
            background-color: #2324ED;
            border-radius: 10px;
            color: white;
            padding: 20px 25px 20px 25px;
            height: 34%;

        }

        @media screen and (max-width: 768px) {
            .parentnosotros2 {
                display: grid;
                grid-template-columns: 1fr; /* Una sola columna */
                grid-template-rows: auto;
                grid-row-gap: 20px;
            }
        
            .div1-nosotros2 { 
                grid-area: auto;
                width: 100%; /* Ocupa todo el ancho */
            }
        
            .div2-nosotros2 { 
                grid-area: auto;
                width: 100%; /* Ocupa todo el ancho */
            }
        
            .div3-nosotros2,
            .div4-nosotros2,
            .div5-nosotros2,
            .div6-nosotros2 { 
                grid-area: auto;
                width: 100%; /* Cada uno ocupa todo el ancho */
            }
            .div6-nosotros2{
                height: 100%;
               
            }
        }
        

        @media (max-width: 768px) {
         
                .creemos .coluno {
                  flex: 0 0 20%;
                  max-width: 20%;
                }
              
                .creemos .coldos {
                  flex: 0 0 80%;
                  max-width: 80%;
                }
        }
/* slider 2 */
.my-slider2.tns-item{
    color: black;
}

.perfil1{
    padding: 10px 5px 10px 5px;
    width: 270px !important; 
    height: 370px;
    /* background-color: #E8EFFF;
    border: 1px solid #EFF3F7; */
}

.accordion-item{
    background-color: rgba(255, 214.57, 222.97, 0.26);
}
.accordion{
    --bs-accordion-bg: #2324ed;
    --bs-accordion-btn-color: white;
    --bs-accordion-active-color: white;
    --bs-accordion-active-bg: #2423ed;

}
.accordion-button::after {
    filter: brightness(0) invert(1);
  }


.fondo-examenes{
    background-color:rgba(255, 214.57, 222.97, 0.26);
    border-radius: 10px;
}
/* contacto */

.formulario {
    background-color: #EEEEEE;
    border-radius: 10px;
}
.formulariowo{
    padding: 30px 20px 30px 20px !important;
    
}

.counter-section {
    background: url('../img/happy-customer.jpg') no-repeat center center/cover;
    position: relative;
    padding: 100px 0;
    margin-top: 110px;
    margin-bottom: 100px;
}
.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(36 77 229 / 97%);
    z-index: 1;
}
.container, .row, .happy-customer, .statistics-graph {
    position: relative;
    z-index: 2;
}
.happy-customer h3, .happy-customer h4, .statistics-content span, .statistics-content h6 {
    color: #fff;
    font-family: "Raleway", sans-serif;
}
.statistics-graph {
    
    padding: 15px;
    border-radius: 8px;
    p{
        color: white;
    }
}
canvas {
    background: transparent;
    display: block;
    max-width: 100%;
    height: auto;
    
}
.modelos {
    border: 1px solid blue;
    padding: 10px;
    min-width: 276px;
    min-height: 166px;
    margin-bottom: 15px;
    border-radius: 5px;

    h5{
        color: #173090;
    }
  
    button{
        color: #FE6484;
        background-color: transparent;
        font-weight: 600;
        border: none;
        text-align: left;
        padding:0;

    }
    button:hover{
        color:#ca0813;
        background-color: transparent;
        font-weight: 600;
        border: none;
    }
    
}




@media (max-width: 768px) {
    .logo-social-container {
        display: flex;
        justify-content: center !important;
        align-items: center;
        width: 100%;
    }

    .social-icons {
        display: flex;
        justify-content: center !important;
        align-items: center;
    }
    .logo-footer{
        padding-left: 50px;
    }
    
    .uno {
        flex: 0 0 20%; /* El SVG ocupa el 20% */
        max-width: 20%;
      }
    
      .dos {
        flex: 0 0 80%; /* El texto ocupa el 80% */
        max-width: 80%;
      }
}


@media (max-width: 768px) {
    .convenios-container {
      justify-content: center;
    }
  
    .convenios-container .convenios-item {
      flex: 0 0 auto;
      width: 25%; /* Mantiene 4 imágenes por fila */
      max-width: 25%;
    }
  
    .convenios-container .convenios-item img {
      max-width: 80%; /* Evita que se expandan al 100% */
      height: auto;
    }
  }
.convenios-item{
    min-height: 70px;
}
.bordee{
    border-bottom: 1px solid #D8DFF3;
}
.offcanvas-header{
    background-color: #2324ED;
    color: white;
    font-weight: 500;
}
