
	.main {
		margin: none;
		padding: none;
		background: #131224;
    display: flex;
    justify-content: center;
    align-items: center;
	}

  .uniquifier {
    font-family: "Figtree", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }  

  .container {
    display: grid;
    grid-template-rows:1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr ;
  }

  .container2 {
    display: grid;
    grid-template-rows: repeat(10, 100px);
    grid-template-columns: 160px 1fr 1fr 1fr 1fr 1fr;
  }

  .item-1{
    grid-row: 1 / 11;
    grid-column: 1 / 2;
  }
  
  .slider{
    position: relative;
    width: 100%;
    overflow: hidden;
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    padding-top: 42px;
  
  }

  .slider img{
    width: 100%;
    display: none;
  }

  img.displaySlide{
    display: block;
    animation-name: fade;
    animation-duration: 1.2s;
  }

  .slider button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    padding: 10px 15px;
    background-color: #7989c92d;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
  }
  .previous{
    left: 0;
  }
  .next{
    right: 0;
  }
  @keyframes fade {
    from {opacity: .5}
    to {opacity: 1}
  }

    /* AGENDA LLAMADA */
  .item-2{
    grid-row: 4 / 5;
    grid-column: 1 / 2;
    width: 550px;
    height: 90px;
    background:#8496df;
    opacity: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 3px solid #ffff;
    color: whitesmoke;
    font-size: 36px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.25);
    position: fixed;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 36px;
    z-index: 1;
  }

  /* INSTAGRAM */
  .item-3{
    grid-row: 5;
    grid-column: 2/3;
    width: 50px;
    height: 50px;
    background:#8496df;
    opacity: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: whitesmoke;
    font-size: 20px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.25);
    position: fixed;
    z-index: 2;
    left: 87.5%;
    bottom: 50px;
  }

  /*TIKTOK*/
  .item-4{
    grid-row: 5;
    grid-column: 2/3;
    width: 50px;
    height: 50px;
    background:#8496df;
    opacity: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: whitesmoke;
    font-size: 20px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.25);
    position: fixed;
    z-index: 2;
    left: 93%;
    bottom: 50px;
  }

  /* FORMULARIO CONTACTO */

  .item-6{
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }

  .item-7{
    display: flex;
    grid-row: 3 / 4;
    grid-column: 2 / 6;
    align-items: last baseline ;
    justify-content: center;
  }

  .item-8{
    display: flex;
    grid-row: 4 / 5;
    grid-column: 1 / 6;
    align-items: flex-start;
    justify-content: center;
  }
  
  .contact-inputs{
    width: 200px;
    height: 16px;
    border:1px solid #8496df;
    outline: none;
    padding: 20px;
    font-weight: 500;
    color: white;
    background:#131224;
    border-radius: 15px;
    margin-top: 5px;
  }

  .contact-inputs:focus{
    border: 2px solid white;
  }

  .contact-inputs::placeholder{
    color: #8f9198;
  }

  .contact-inputs2{
    width: 400px;
    height: 16px;
    border:1px solid #8496df;
    outline: none;
    padding: 20px;
    font-weight: 400;
    color: white;
    background:#131224;
    border-radius: 15px;
  }

  .contact-inputs2:focus{
    border: 2px solid white;
  }

  .contact-inputs2::placeholder{
    color: #8f9198;
  }

  .container2 textarea{
    height: 60px;
    padding-top: 15px;
    border-radius: 10px;
  }

  .container2 button{
    display: flex;
    align-items: center;
    padding: none;
    background-color: #131224;
    width: 200px;
    height: 100px;
    border: 0;
  }
  

/* CHECKBOXES FORMULARIO */

* {
  box-sizing: border-box;
 }

.container3{
  display: flex;
  flex-direction: column;
  padding: 2em;

}

 .checkbox-container {
    display: flex;
    align-content: flex-start;
    justify-content: left;
    margin-left: 30%;  
   }

 .checkbox-container label {
    cursor: pointer;
    display: flex;
    align-items: left;
    gap: 30px;
    margin-top: 16px;
    color: #8496df;
    font-size: x-large;
    font-family: 'Inter', serif;
    font-weight: 370;
 }

 .checkbox-container input[type='checkbox']{
    cursor: pointer;
    opacity: 0;
 }

.checkbox-container label::before {
  content: '';
  width: 1em;
  height: 1em;
  border-radius: .15em;
  margin-right: .5em;
  border: 0.05em solid #8496df;
}

.checkbox-container label:hover::before,
.checkbox-container input[type='checkbox']:hover + label::before {
  background-color: #8496df;
}
  
.checkbox-container input[type='checkbox']:checked + label::before {
  
  background-color: #7989c9;
}

.item-enviar {
  grid-row: 8 / 9;
  grid-column: 1 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.25);
  position: fixed;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  margin-top: 36px;
  
}
.enviar{
  background-color: #8496df;
  opacity: 90%;
  color: white;
  text-decoration: none; 
  font-family: "Figtree", serif;
  cursor: pointer;
  font-size: 26px;
  width: 130px;
  height: 50px;
  border-radius: 20px;
  border: 3px solid #ffff;

}

/* FUENTES */

.figtree-fontform {
  font-family: "Figtree", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


.inter-fontform {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

h1 {
  font-size: 2.5em;
  font-family: "Inter", serif;
  color: white;
  font-weight: 450;
  margin-bottom: 0.2em;
  margin-top: -2em;
}

h2 {
  font-size: 1.7em;
  font-family: "Figtree", serif;
  color: white;
  font-weight: 330;
  margin-top: 0.08em;
  margin-bottom: 1.5em;
}

h3 {
  font-size: 1.8em;
  font-family: "Inter", serif;
  color: white;
  font-weight: 420;
  margin-bottom: 0.2em;
  margin-top: 0.5em;
}

h4 {
  font-size: small;
  font-family: "Figtree", serif;
  color: white;
  font-weight: 100;
  margin-top: 0.3em;
  margin-bottom: 0em;
  text-align: left;
  margin-left: 35.5%;

}