:root {
    --fuenteHeading: 'PT Sans', sans-serif;
    --fuenteParrafos: 'Open Sans', sans-serif;

    --primario: #784D3C;
    --gris: #e1e1e1;
    --blanco: #ffffff;
    --negro: #000000;
}
html {
    font-size: 62.5%; /* 1 rem = 10px */ 

}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    font-family: var(--fuenteParrafos);
    font-size: 1.6rem;
    line-height: 2;
   
}

/** Globales **/
.contenedor {
    width: min(90%, 120rem);
    margin: 0 auto;
}
a {
    text-decoration: none;
}
h1, h2, h3, h4 {
    font-family: var(--fuenteHeading);
    line-height: 1.2;
}
h1 {
    font-size: 4.8rem;
}
h2 {
    font-size: 4rem;
}
h3 {
    font-size: 3.2rem;
}
h4 {
    font-size: 2rem;
}
img {
    max-width: 100%;
}
/** Utilidades **/
.no-margin {
    margin: 0;
}
.no-padding {
    padding: 0;
}
.centrar-texto {
    text-align: center;
}
.barra{
    position: absolute;
    z-index:6;
    display: flex;
    /*background-color: #000;*/
}
.header{
    /*background-image: url(../img/banner.jpg);*/
    height: 60rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.header__texto{
    text-align: center;
    color: var(--blanco);
    margin-top: 5rem;
}

@media (min-width: 768px) {
    .barra{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
.logo img{
    width: 100%;
    height: 75px;
}
.logo{
    color: var(--blanco);
}
.logo__nombre{
    font-weight: 400; /*400*/
}
.logo__bold{
    font-weight: 700;
}
@media (min-width: 768px) {
    .navegacion{
        display: flex;
        gap: 2rem;
        position: relative;
        top: 0;
        left: 100%;
    }
    
}
.tittle_2 {
    text-align: center;
    padding: 20px;
}
.info{
    width: min(90%, 120rem);
    margin: 0 auto;
}
.navegacion__enlace, .navegacion__enlace_Avi{
    display: block;
    text-align: center;
    font-size: 1.8rem;
    color: var(--blanco);
}

@media (min-width: 768px) {
    .navegacion_2{
        flex-direction: row;
        position: relative;
        top: 0;
        left: 100%;
    }
    
}
@media (min-width: 768px) {
    .contenido-principal{
        display: grid;
        grid-template-columns: 2fr 1fr;
        column-gap: 4rem;
        padding: 90px 0;
    }

}
.cards{
    width: 100%;
    /*height: 100vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px){
    .cards{
        flex-direction: column;
    }
}
.card{
    width: 300px;
    margin: 25px;
    padding: 40px 20px;
    background: linear-gradient(-45deg, #0080FF,#113E75); /*background: linear-gradient(-45deg, #24ff72,#9a4eff);*/
    border-radius: 15px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.5);
    text-align: center;
}
.cards a{
    color: black;
}
.cards a:hover{
    color: white;
}
.tittle .icon{ /* e icono*/
    color: #ffffff;
    /*font-size: 60px;*/
    width: 100px;
    height: 100px;
    /*line-height: 100px;*/
    
    
}
.tittle h2{
    color: white;
    font-size: 24px;
    /*margin-top: 15px;*/
}
.subtitulo{
    color: white;
    font-size: 25px;

}
.option p{
    margin-top: 20px;
    color: #ffffff;
}
.entrada{
    border: 1px solid var(--gris);
    margin-bottom: 2rem;
}
.entrada:last-of-type{
    border: none;
    margin-bottom: 0;
}
.boton{
    display: block;
    font-family: var(--fuenteHeading);
    color: var(--blanco);
    text-align: center;
    padding: 1rem 3rem;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .boton{
        display: inline-block;
    }
    
}
.boton--primario{
    background-color: var(--negro);
}
.boton--secundario{
    background-color: var(--primario);
}
.cursos{
    list-style: none;
}
.widget-curso{
    border-bottom: 1px solid var(--gris);
    margin-bottom: 2rem;
}
.widget-curso:last-of-type{
    border: none;
    margin-bottom: 0;
}
.widget-curso__label{
    font-family: var(--fuenteHeading);
    font-weight: bold;
}
.widget-curso__info{
    font-weight: normal;
}
.widget-curso__label,
.widget-curso__info{
    font-size: 2rem;
}
.footer{
    background-color: #113E75; /* background-color: var(--negro);*/
    padding-bottom: 8rem;
    margin-top: 4rem;
}

/*CONTACTANOS*/
.cantact_info::before{
    content: '';
    width: 100%;
    height: 100%;
    margin: 50px auto;
    position: absolute;
    top: 5;
    left: 0;
    
    opacity: 0.9;
    
  }
  .cantact_info{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;  
  }
  
  .info_title{
    position: relative;
    z-index: 1;
    color: #fff;
  }
  
  .info_title{
    margin-bottom: 30px;
  }
  
  
  .info_title h2{
    font-size: 3.5rem;
    text-align: center;
    font-family:  'Agency FB', arial;
    color: #000000;
  }
   
  /* Formulario de contacto*/
  form.form_contact,.form-adress{
    /*width: 62%;*/
    padding: 30px 40px;
  
  }
  
  form.form_contact h2{
    font-size: 20px;
    font-weight: 600;
    color: #303030;
    margin-bottom: 30px;
  }
  form.form_contact .user_info{
    display: flex;
    flex-direction: column;
  }

 
  form.form_contact label {
    font-weight: 600;
    color: #000000;
  }
  form.form_contact p {
    font-weight: 600;
    color: gray;
    
  }
  
form.form_contact input,
form.form_contact textarea{
    width: 100%;
    padding: 4px 0px 5px;
    margin-bottom: 10px;
  
    border: none;
    border-bottom: 2px dashed #D1D1D1;
  
    font-family: 'Open sans';
      color: #5A5A5A;
      font-size: 14px;
      font-weight: 400;
}
form.form_contact textarea{
    max-width: 100%;
    min-width: 100%;
    max-height: 90px;
}
  
.button, form.form_contact input[type="submit"]{
    width: 180px;
    background: #4091EC;
    padding: 10px;
    border: none;
    border-radius: 25px;
  
    align-self: flex-end;
  
    color: #fff;
    font-family: 'Open sans';
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
form.form_contact input[type="submit"]:hover{
    background: #3371B6;
}

  /* Ventana de errores*/
.modal_wrap{
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.7);
  
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
  
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.mensaje_modal{
    background: #fff;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.5);
    width: 400px;
    padding: 30px 20px 15px;
}
  
.mensaje_modal h3{
  text-align: center;
  font-family: 'Ubuntu';
  font-size: 20px;
  font-weight: 400;
}
  
  .mensaje_modal h3:after{
    content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #C5C5C5;
  margin: 10px 0px 15px;
  }
  
  .mensaje_modal p{
    font-size: 16px;
    color: #606060;
  }
  
  .mensaje_modal p:before{
    content: "\f00d";
    font-family: FontAwesome;
    display: inline-block;
    color: #E25151;
    margin-right: 8px;
  }
  
  #btnClose{
    display: inline-block;
  padding: 3px 10px;
  margin-top: 10px;
  
  background: #E25151;
  color: #fff;
  border: 2px solid #B14141;
  cursor: pointer;
  /*float: right;*/
  }
   
.contacto{
    width: 100%;
    height: 100px;
    align-items: right;
}
/*SLIDE SHOW*/
.slider-show{
  position: absolute;
  left: 15px;
  width: 98%;
  height: 360px;
  background-color: #CDCDCD;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 0C6.716 0 0 6.716 0 15c8.284 0 15-6.716 15-15zM0 15c0 8.284 6.716 15 15 15 0-8.284-6.716-15-15-15zm30 0c0-8.284-6.716-15-15-15 0 8.284 6.716 15 15 15zm0 0c0 8.284-6.716 15-15 15 0-8.284 6.716-15 15-15z' fill='%239C92AC' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
  color: #CDCDCD;
}

.slider-show button{
  color: black;
  

}
.text {
  color: #000000;
  font-size: 15px;
  padding: 8px 12px;
  width: 100%;
  text-align: center;
  margin-top: 120px;
}

.slick-prev:before {
  color: black;
}

.contenedor-services{
  /*background: steelblue;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;*/
  background: #CCC;
  display: flex;
  width: 100%;
  height: 200px;

  justify-content: center;
}

.item {
  font-family: 'Courier New', Courier, monospace;
  width: 100%;
  height: 10px;
}
.content ul > li{
  justify-content: space-between;
}
@media (min-width: 786px) {
  .valores{
      display: grid;
      grid-template-columns: repeat(6, 1fr); /* = 1fr 1fr 1fr ó repeat(3, 1fr)*/
      /*grid-template-rows: 200px 800px;*/
      /* ó  grid: 200px 800px / 300px 300px;*/
      column-gap: 1rem;
  }
  
}
.valor{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.valor .iconos{
  height: 10rem;
  width: 10rem;
  background-color: blue;
  border-radius: 50%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: #C5C5C5;
}

.up i{
  font-size: 1.8rem;
  color: white;
}
.cards-banner3 {
    width: 100%;
    height: 180px;
    /*background: url("./img/pexels-louis-tran-11210402.jpg");*/
    background-color: #CDCDCD;
    padding: 50px 0 0 0;
    margin: 20px 0;
  
  }
  .cards-banner3 .contextoo{
    text-align: center;
    font-size: 2rem;
    font-family:  'Agency FB', arial;
    margin: 10px;
  }
  .cards-banner3 .contexto-titulo{
    text-shadow: 2px 2px 6px #000;
    font-family:  'Agency FB', arial;
    font-size: 2.5rem;
    text-align: center;
  }