@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
  font-family: "DM Sans", serif;
}

.loader {
  position: fixed;
  background-color: white;
  height: 100vh;
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader__spinner {
  border: 5px solid rgba(0, 0, 0, 0.25);
  border-left: 5px solid #621132;
  transform: translateZ(0);
  animation: spinner 1.1s infinite cubic-bezier(0.785, 0.135, 0.15, 0.86);
  border-radius: 50%;
  width: 55px;
  height: 55px;
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.checkbox input[type="checkbox"] {
  width: 25px;
  height: 25px;
}

.z-cont {
  margin: auto;
  max-width: 1200px;
  width: 90%;
}

.lg {
  font-size: 25px;
  color: #621132;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.lg svg {
  width: 40px;
  color: #621132;
}

.sirvice {
  display: grid;
  gap: 75px;
  background-color: #f9dae6;
  margin-top: 50px;
  padding: 40px;
  border-radius: 5px;
  grid-template-columns: repeat(2, 1fr);
}

.sirvice h3 {
  margin: 0px;
  font-size: 17px;
}

.sirvice p {
  font-size: 14px;
  margin: 0px;
    margin-top: 5px;
}

header {
  padding: 50px 0px;
  background-color: white;
}

.title svg {
  width: 45px;
  color: #621132;
}
.title {
  gap: 15px;
  display: flex;
  align-items: center;
  font-size: 35px;
  margin-bottom: 100px;
  margin-top: 60px;
  font-weight: bold;
  display: flex;
}

.caja_de_tiempos_servicios {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.caja_de_tiempos_servicios .box {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 30px 0px;
  border-top: solid 1px #dcdcdc;
  border-bottom: solid 1px #dcdcdc;
}

.caja_de_tiempos_servicios .box svg {
  width: 45px;
  color: #9b9b9b;
}

.caja_de_tiempos_servicios .box p {
  color: #9b9b9b;
  font-weight: 500;
  font-size: 16px;
  margin: 0px;
}

.caja_de_tiempos_servicios .box h2 {
  color: #621132;
  font-size: 19px;
  margin: 0px;
}

.form-container {
  background-color: white;
  padding: 50px 0px;
  margin-top: 75px;
  margin-bottom: 100px;
}

.form-container form {
  background-color: #f9dae6;
  padding: 50px;
  border-radius: 10px;
}

.form-container form input,
.form-container form select {
  width: 100%;
  height: 50px;
  margin: 10px 0px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  text-indent: 20px;
  font-family: "DM Sans", serif;
  font-weight: 200;
  outline: none;
}

.form-container .title {
  margin: 0px;
  display: block;
  margin-bottom: 20px;
  text-align: center;
}

.form-container form label {
  font-weight: 200;
  font-size: 13.5px;
}

.form-container form input:focus,
.form-container form select:focus {
  border: solid 2px #dd206c;
}

.btn {
  display: flex;
  justify-content: right;
  margin-top: 20px;
}

.btn button {
  padding: 0px 40px;
  background-color: #621132;
  color: white;
  height: 50px;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
  font-weight: 600;
  font-size: 1;
  border-radius: 5px;
}

.btn button:hover {
  cursor: pointer;
  background-color: #621132;
}

footer {
  background-color: #621132;
  padding: 35px 0px;
  color: white;
  text-align: center;
  border-radius: 50px 0px 0px 0px;
  font-size: 13px;
}

footer a {
  color: white;
}

.ventana-flotante{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.ventana-flotante .ventana{
  background-color: white;
  min-height: 150px;
  max-width: 450px;
  width: 90%;
  padding: 40px;
  border-left: 9px solid #621132;
}

.ventana-flotante .ventana svg {
    width: 60px;
    color: #621132;
}

.ventana-flotante .ventana .cerrar{
    border: none;
    background-color: #621132;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
}

.ventana-flotante .ventana p{
    font-size: 15px;
    margin: 0;
}

.ventana-flotanteS{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.ventana-flotanteS .ventanaS{
  background-color: white;
  min-height: 150px;
  max-width: 450px;
  padding: 40px;
  border-left: 9px solid #336211;
}

.ventana-flotanteS .ventanaS svg{
    width: 60px;
    color: #336211;
}

.ventana-flotanteS .ventanaS .cerrarS{
    border: none;
    background-color: #336211;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
}

.ventana-flotanteS .ventanaS p{
    font-size: 15px;
    margin: 0;
}

@media (max-width: 1100px) {
    .title {
        font-size: 28px;
    }
    
    .title svg {
        width: 40px;
    }
}

@media (max-width: 870px) {
    .caja_de_tiempos_servicios {
        grid-template-columns: repeat(2, 1fr);
    }

    .title svg{
        width: 50px;
    }
    
    .title {
        font-size: 23px;
        display: flex;
        flex-direction: column;
        align-items: right;
        text-align: center;
    }

    .sirvice {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .lg {
        font-size: 22px;
        align-items: center;
        justify-content: center;
      }
      
      .lg svg {
        width: 33px;
      }

      .form-container form {
        padding: 25px;
      }
}

@media (max-width: 570px) {
    .caja_de_tiempos_servicios {
        grid-template-columns: 1fr;
    }
}


.examplex{
  position: relative;
  background: #621132;
  color: white;
  padding: 20px;
  font-size: 16px;
  margin-bottom: 32px;
  margin-top: 20px;
  border-radius: 5px; max-width: 600px;
}