@font-face {
    font-family: 'CooperHewitt';
    src: url('../fonts/CooperHewitt-Bold.otf') format('opentype'),
         url('../fonts/CooperHewitt-BoldItalic.otf') format('opentype'),
         url('../fonts/CooperHewitt-Semibold.otf') format('opentype'),
         url('../fonts/CooperHewitt-SemiboldItalic.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
body{
    font-family: "CooperHewitt", sans-serif;
}
input[type=text], [type=email] {
  width: 100%;
  height: 60px;
  /* box-sizing: border-box; */
  border: 2px solid #9a3a3e;
  border-radius: 30px;
  font-size: 20px;
  color: white;
  background-color: #9a3a3e;

  /* background-position: 10px 10px;
  background-repeat: no-repeat;*/
  padding-left: 20px;
  padding-right: 20px;
}
::placeholder {
  color: white;
  opacity: 1; /* Firefox */
}

textarea {
  width: 100%;
  border: 2px solid #9a3a3e;
  /* border-radius: 30px; */
  font-size: 20px;
  color: white;
  background-color: #9a3a3e;

  /* background-position: 10px 10px;
  background-repeat: no-repeat;*/
  padding-left: 20px;
  padding-right: 20px;
}
::placeholder {
  color: white;
  opacity: 1; /* Firefox */
}

/* HOME start */
.home_title {
  font-size: 6.5rem;
  font-weight: bolder;
}
.button_free_quote{
  position: absolute;
}


@media (max-width: 768px) {
  .home_title {
      font-size: 4.5rem;
  }
  .button_free_quote{
    position: relative;
  }
}
@media (min-width: 780px) {
  .home1{
  position: absolute;
  left: 12%;
  }
}


/* HOME end */

/* CONTACT BUTTON start */
.marquee {
  display: flex;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}
/* CONTACT BUTTON end */


/*SERVICES*/

.bloque .ul{
  transition: all .5s ease;
  transform: translateX(0%);
}
.bloque .ul.active{
  transition: all .5s ease;
  transform: translateX(30%);
}
.contenedor .textbox{
  transition: all .5s ease;
  opacity: 0;
  padding-bottom: 50px;
  overflow: hidden;
}

.contenedor .textbox.active{
  opacity: 1;
  overflow: hidden;
  margin-bottom:20px;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider{
  width: 95%;
  display: flex;
  aspect-ratio: 15 /8;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.slider img{
  width: 50%;
  flex: 1 0 100%;
  scroll-snap-align: start;
  object-fit: cover;
}


/* Navigation Buttons */
.nav-button {
  position: absolute;
  background-color: rgba(238, 68, 35, 0.9); 
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
  width: 50px; 
  height: 50px; 
  animation: pulse 3s infinite; 
}

.prev {
  position: absolute;
  left: 10px; /* Ajusta la posición según sea necesario */
}

.next {
  position: absolute;
  right: 10px; /* Ajusta la posición según sea necesario */
}

/* Keyframes para la animación de pulso */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes izqui {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-100%);
  }
  75% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(-200%);
  }
}


footer {
    background-color: #ebf3f5;
}

footer::before {
    /* content: "Nuevo Capítulo\A";
    white-space: pre;
    font-size: 0.6em;
    padding: 0.2em 0.4em;
    margin-right: 1em;
    border-radius: 0.2em ; */
    background-color: black;
    color: white;
}

a:link {
    color: #165d1f;
    text-decoration: none;
}

a:visited {
    
    text-decoration: none;
}

.li a:hover {
  color: red;
  text-decoration: underline;
}

a:active {
    text-decoration: underline;
}

/* COPYRIGHT start */
.copyright{
  width: 100%;
  padding: 5px 0px;
  text-align: center;
  color: inherit;
}
.text-light1 a,.copyright span {
  text-decoration: none; /* Esto elimina el subrayado */
}
/* COPYRIGHT end */


/* Boton de contacto Start */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #ebf3f5;
  margin: auto;
  padding: 2%;
  border: 1px solid #aaa;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
}

.close {
  color: #a51e22;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.col {
  margin: 10px 0;
}

.col img {
  margin-bottom: 10px;
}

.info {
  color: #0b273f;
  font-size: 1rem;
  margin-top: 20px;
  text-align: center;
}

/* Boton de contacto end */








/* HEADER START */
.active_header{
  margin-right: 25vw;
}


@media (max-width: 768px) {
  .active_header{
    margin-right: 10vw;
  }
}
/* HEADER end */