.container1 {
    display: flex;
    flex-direction: col1umn;
    align-items: center;
    min-height: 600px;
    position: relative;
    justify-content: center;
  }

  .background-image1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://nic.ec/templates/nic-2023/assets/images/WebHost1.png);
    background-size: cover;
    background-position: center;
  }

  .background-image2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }

  .row1 {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    padding: 30px;
    z-index: 1;
  }

  .col1 {
    margin: 0 10px;
  }

  .card1 {
    border: 1px solid #d7d9db;
    padding: 20px;
    text-align: center;
    border-radius: 25px;
  
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centra verticalmente el contenido */
  }

  .card2 {
    border: 1px solid #d7d9db;
    padding: 20px;
    text-align: center;
    border-radius: 25px;
  
    width: 425px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centra verticalmente el contenido */
  }


  h2 {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }

  p {
    margin-bottom: 10px;
  }

.subtitle1{
display: flex;
padding: 20px;
justify-content: center;
}
.subtitle1 b{
font-size: 50px;
color: #000000;
}

.button-content1{
display: flex;
  justify-content: center;
}

  .button1 a{
    text-decoration: none;
    color: #0e4a94;
  }

  .button1 {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: #0e4a94;
    background-color: transparent;
    border: 2px solid;
    border-radius: 20px;
    border-color: #0e4a94;
    width: 60%;
  }

  .button-icon1 {
    margin-right: 5px;
    width: 30px;
    height: 20px;
  }

  .list1{
    display: flex;
    padding-top: 15px;
  }

  .ul1{
    padding-inline-start:0px;
  }

  .ul1 span{
    padding-left: 10px;
    font-size: .9rem;
  }

  .ul1 b{
    padding-left: 10px;
  }
  /* Estilos para tablets y pantallas más grandes */
  @media (max-width: 1024px) {
    .row1 {
      flex-wrap: wrap; /* Permite que las tarjetas se envuelvan en filas */
      justify-content: center;
    }
    .col1 {
      flex-basis: 33%; /* Ocupa 1/3 del ancho disponible en la fila */
    }
    .button-section{
      flex-direction: column;
      height: 50vh;
    }

    .titulo-button h2{
      font-size: 2rem!important;
    }
  }

  /* Estilos para dispositivos móviles */
  @media (max-width: 600px) {
    .row1 {
      flex-direction: column; /* Muestra las tarjetas una debajo de la otra */
      align-items: center; /* Centra horizontalmente las tarjetas */

    }

    
    .col1 {
      margin: 10px 0;
      width: 100%; /* Ocupa el ancho completo en pantallas pequeñas */
    }

    .card2{
      width: 300px;
      
    }

    .card1 h2{
      font-size: 1.3em;
    }
    .card2 h2{
      font-size: 1.3em;
    }

    .hosting{
      padding-top: 30px;
    }

    .hosting h2.subtitle{
      font-size: 1rem!important;
      text-align: center!important;
    }
    .hosting p{
      font-size: 1rem!important;
      text-align: center!important;
    }

    .title-hosting h2.subtitle{
      font-size: 1rem!important;
      text-align: center!important;
    }
    .title-hosting p{
      font-size: 1rem!important;
      text-align: center!important;
    }
  }

  .hosting h2.subtitle{
    color: #333;
    font-family: helvetic, sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

.hosting p{
    justify-content: center;
    color: grey;
    font-size: 1.3rem;
    font-weight: 400;
    padding: 0 0 2rem;
    text-align: center;
    width: 100%;
}

.title-hosting{
    color: #333;
    font-family: helvetic, sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
}

.title-hosting p{
    justify-content: center;
    color: grey;
    font-size: 1.3rem;
    font-weight: 400;
    padding: 0 0 2rem;
    text-align: center;
    width: 100%;
}



.button-section {
  margin: 0;
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: grey;
}

.button-section button{
  --c: #ffffff;
  color: var(--c);
  font-size: 16px;
  border: 0.3em solid var(--c);
  border-radius: 0.5em;
  width: 16em;
  
  text-transform: uppercase;
  font-weight: bold;
  font-family: sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 3em;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
  margin: 1em;
  background-color: transparent;
  cursor: pointer;
}

.button-section  button::before {
  content: '';
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: var(--c);
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}

.button-section button:hover {
  color: black;
}

.button-section button:hover::before {
  transform: translateY(0) scale(7);
}


.btn-dominio{
    width: 230px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background-color: #ff9f00;
    color: #ffffff;
    border: none;
}

.btn-dominio:hover{
  
  height: 40px;
  align-items: center;
  justify-content: center;
  background-color: #f1dab3;
  color: #000000;
  border: none;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
}

.video-wrapper .video-item {
  flex: 1 0 300px;
  margin: 10px;
}

@media (max-width: 768px) {
  .video-wrapper .video-item {
      flex-basis: 100%;
  }

  .button-section {
    height: 50vh;
  }
}

.titulo-button h2 {
    padding: 80px 30px 0px 30px;
    color: rgb(40, 69, 150);
    font-family: helvetic, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
}

.video-carousel {
  width: 80%;
  margin: 0 auto;
  position: relative; /* Agregamos esta propiedad para posicionar las flechas */
}
.video-slide {
  outline: none;
  padding: 10px; /* Agregamos padding a cada video */
}
.video-slide iframe {
  width: 100%;
  height: 300px;
}

/* Agregamos estilos para las flechas */
.slick-prev,
.slick-next {
  font-size: 0; /* Ocultamos el texto de las flechas */
  line-height: 0; /* Ocultamos el espacio ocupado por el texto */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-prev:before,
.slick-next:before {
  font-size: 30px; /* Tamaño del icono de flecha */
  line-height: 1;
  color: black; /* Color de las flechas */
}

.slick-next:before, .slick-prev:before {
  color: #000000!important;
}


/* Estilos de hero image */
.top-banner-section {
  display: grid;
  grid-template-columns: 1fr; 
  grid-template-rows: 350px; 
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-content: center;
  justify-content: center;

  .banner-image-div {
    grid-area: 1 / 1 / 2 / 2;
  }
  .banner-overlay-div {
    grid-area: 1 / 1 / 2 / 2;
  }
  .banner-text-div {
    grid-area: 1 / 1 / 2 / 2;
  }
}

.banner-image {
  display: grid;
  min-width: 350px;
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.banner-overlay-div {
  display: grid;
  max-width: 100%;
  background: black;
  background: linear-gradient(
    60deg,
    rgba(0, 0, 0, 0.7777485994397759) 30%,
    rgba(255, 255, 255, 0) 100%
  );
}


.banner-text-div {
  display: grid;
  align-items: center;
  margin-left: 15px;
  margin-right: 15px;
}

.banner-h1-text {
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: bolder;
  text-transform: uppercase;
  color: white;
}

.banner-body-text {
  font-size: calc(10pt + 0.15vw);
  margin-top: 0.5em;
  color: white;
  text-decoration: none;

  &:hover {
    color: white;
  }
  &:visited {
    color: white;
  }
  &:active {
    color: white;
  }
}

.banner-btn {
  margin-top: 1em;
}

.banner-btn-item {
  font-size: calc(8pt + 0.15vw);
  padding-top: calc(0.5em + 0.08vw);
  padding-bottom: calc(0.5em + 0.08vw);
  padding-left: calc(0.5em + 0.08vw);
  padding-right: calc(0.5em + 0.08vw);
  color: blue;
  background-color: white;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  border: 1px solid white;

  &:link {
    text-decoration: none;
  }
  &:visited {
    text-decoration: none;
  }
}


.titulo-nosotros{
  font-size: 2rem;
  color: #284596;
}

.subtitulo-nosotros{
  font-size: 1.5rem;
  font-weight: bold;
  color: #284596;
}

.icon-nosotros{
  height: 50px;
  margin-right: 1rem;
}

.lista-nosotros .lista-item{
  list-style-type:circle !important;
}

.carousel-home{
  max-height: 265px;
}
.carousel-home img{
  height: 250px;
}

/* Estilos para el fondo oscuro */
#overlay {
  position: fixed; 
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6); /* Fondo negro con 60% de opacidad */
  z-index: 1000; /* Colocar el overlay encima de todo */
  display: none; /* Oculto por defecto */
}

/* Estilos para el loader */
#loaderSpinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 16px solid #f3f3f3; /* Colores del spinner */
  border-radius: 50%;
  border-top: 16px solid #3498db; /* Color del borde superior */
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite; /* Animación de rotación */
}

/* Animación de rotación */
@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}