@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Regular.ttf);
}

@font-face {
  font-family: "Open Sans";
  src: url(../fonts/open-sans.ttf);
}

:root {
  --color1: #81af37;
  --color2: #ecb845;
  --fuente1: "Roboto";
  --fuente2: "Open Sans";
}

* {
  margin: 0px;
  padding: 0px;
  font-size: 10px;
  box-sizing: border-box;
}

/* Barra de navegación */

.navbar_boton {
  color: #333;
  background-position: bottom;
  background-image: -webkit-linear-gradient(0deg, #009045, #70a83b, #a3bd31);
  background-size: 0% 0%;
  margin-bottom: 4px;
  background-repeat: no-repeat;
  cursor: pointer;
  font-family: var(--fuente-texto);
  font-size: 1.6rem;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.navbar_boton:hover {
  color: #000;
  background-size: 100% 5%;
  animation-name: ani_btn;
  animation-duration: 1.4s;
}
@keyframes ani_btn {
  0% {
    background-size: 0% 5%;
  }
  15% {
    background-size: 100% 5%;
  }
  37% {
    background-size: 78% 5%;
  }
  50% {
    background-size: 100% 5%;
  }
  64% {
    background-size: 91% 5%;
  }
  70% {
    background-size: 100% 5%;
  }
  100% {
    background-size: 100% 5%;
  }
}


/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
  position: relative;
  background: url("../img/intro-bg.png") center bottom no-repeat;
  background-size: cover;
  padding: 150px 0 80px 0;
}

#intro .intro-img {
  width: 50%;
  float: right;
}

#intro .intro-info {
  width: 50%;
  float: left;
}

#intro .intro-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
}

#intro .intro-info h2 span {
  color: #74b5fc;
  text-decoration: underline;
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#intro .intro-info .btn-get-started {
  background: #6c8d32;
  border: 2px solid #6c8d32;
  color: #fff;
}

#intro .intro-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#intro .intro-info .btn-services {
  border: 2px solid #fff;
}

#intro .intro-info .btn-services:hover {
  background: #6c8d32;
  border-color: #6c8d32;
  color: #fff;
}


.contenedor-formulario {
  position: relative;
  max-width: 109.4rem;
  margin: auto;
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.formulario {
  display: grid;
  grid-template-columns: 58% 42%;
  width: 100%;
  box-shadow: 0rem 0rem 1.6rem 0rem rgba(0, 0, 0, 0.4);
}

.contenedor-cuerpo {
  position: relative;
  padding: 3rem 2.9rem;
}

.grid-items-formulario {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 3.5rem;
}

.titulo-formulario {
  grid-column: 1/3;
  position: relative;
  width: 100%;
}

.titulo-formulario h1 {
  position: relative;
  margin: auto;
  font-family: var(--fuente1);
  font-size: 3rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
}

.item-1 label,
.item-2 label,
.item-3 label,
.item-4 label,
.item-5 label,
.item-6 label,
.item-7 label {
  display: block;
  font-family: var(--fuente1);
  font-size: 1.6rem;
  font-weight: normal;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.item-1 input,
.item-2 input,
.item-3 input,
.item-4 input,
.item-5 input,
.item-7 textarea {
  display: block;
  width: 80%;
  height: 2.5rem;
  padding: 0.5rem;
  margin-top: 0.5rem;
  font-family: var(--fuente2);
  font-size: 1.5rem;
  color: #747474;
  border: none;
  border-bottom: solid 0.1rem #74747494;
  outline: thick;
}

.item-7 label {
  position: relative;
  margin: auto;
  text-align: center;
}

.item-7 textarea {
  width: 100%;
  max-width: 100%;
  height: 7.6rem;
  max-height: 7.6rem;
}

.item-1 input:focus,
.item-2 input:focus,
.item-3 input:focus,
.item-4 input:focus,
.item-5 input:focus,
.item-7 textarea:focus {
  border-bottom: solid 0.15rem var(--color1);
}

.item-6 select {
  width: 90%;
  height: 4rem;
  margin-top: 0.5rem;
  font-family: var(--fuente2);
  font-size: 1.5rem;
  border: solid 0.1rem #74747494;
  border-radius: 1rem;
}

.item-6 select:focus {
  border: solid 0.15rem var(--color1);
}

.item-6 select option {
  font-family: var(--fuente2);
  font-size: 1.6rem;
}

.confirmacion > .contenedor-radios {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  width: 13rem;
}

.confirmacion > .contenedor-radios > .tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.confirmacion > .contenedor-radios > .tab input {
  position: absolute;
  opacity: 0;
  width: 24%;
cursor: pointer;
}

.confirmacion > .contenedor-radios > .tab label {
  position: relative;
  width: 100%;
  font-family: var(--fuente1);
  font-size: 1.5rem;
  color: #747474;
  cursor: pointer;
}

.confirmacion > .contenedor-radios > .tab div {
  position: absolute;
  display: inline-block;
  width: 3rem;
  height: 3rem;
  margin-left: 12.5rem;
  background-color: #fff;
  border: solid 1px var(--color2);
  border-radius: 10rem;
  z-index: -1;
}

.confirmacion > .contenedor-radios input[type="checkbox"]:checked ~ div {
  border: solid 1px var(--color2);
}

.confirmacion > .contenedor-radios input[type="checkbox"]:checked ~ div::before {
  content: "\2714";
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-color: var(--color1);
  border-radius: 2rem;
  left: 0.4rem;
  top: 0.4rem;
  animation: checked-radio 1s linear;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
}

.item-7 {
  position: relative;
  width: 100%;
  margin-top: 3.5rem;
}

.item-8 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80%;
  min-width: 29rem;
  margin: auto;
  margin-top: 3.5rem;
  padding: 2.5rem 0rem;
  border: dotted 0.2rem var(--color1);
}

.item-8:hover {
  border: solid 0.2rem var(--color1);
}

.item-8 h2 {
  font-family: var(--fuente1);
  font-size: 1.5rem;
  color: #747474;
}

.item-8 input {
  position: absolute;
  opacity: 0;
}

.item-8 label {
  position: relative;
  width: 70%;
  min-width: 28rem;
  padding: 1.4rem 0rem;
  margin: auto;
  margin-top: 2rem;
  font-family: var(--fuente2);
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: var(--color1);
  border-radius: 1rem;
  box-shadow: 0rem 0.4rem 1rem rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.contenedor-soportes {
  position: relative;
  width: 100%;
  margin: 3.5rem auto;
}

.contenedor-soportes button {
  position: relative;
  display: block;
  width: 40%;
  min-width: 20.2rem;
  height: 4.8rem;
  margin: 1.4rem auto;
  font-family: var(--fuente2);
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: var(--color2);
  border: none;
  border-radius: 1rem;
  cursor: pointer;
}

.contenedor-soportes button::after {
  content: "";
  position: absolute;
  width: 85%;
  height: 100%;
  left: 7.5%;
  background-color: var(--color2);
  filter: blur(11px);
  opacity: 0.7;
  border-radius: 1rem;
  z-index: -1;
}

.cuerpo > p {
  position: relative;
  margin-top: 3rem;
  font-family: var(--fuente2);
  font-size: 1.1rem;
  text-align: justify;
  color: #747474;
}

.cuerpo > button {
  position: relative;
  display: block;
  width: 20%;
  min-width: 10rem;
  height: 4.8rem;
  margin: 3.5rem auto;
  font-family: var(--fuente2);
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: var(--color1);
  border: none;
  border-radius: 1rem;
  cursor: pointer;
}

.cuerpo > button::after {
  content: "";
  position: absolute;
  width: 85%;
  height: 100%;
  left: 7.5%;
  background-color: var(--color1);
  filter: blur(11px);
  opacity: 0.7;
  border-radius: 1rem;
  z-index: -1;
}

.contenedor-imagen {
  overflow: hidden;
}

.contenedor-imagen img {
height: 100%;

min-width: 45.9rem;
left: -8rem;
position: relative;;
}


/*
--------------------------------/-
Animaciones 
--------------------------------/-
 */

@keyframes checked-radio {
  0% {
    transform: rotate(0) translateY(-4.8vw) scale(0.2);
  }
  83% {
    transform: rotate(360deg) translateY(-2.5vw) scale(1);
    transform-origin: 2vw;
  }
  88% {
    transform: translateY(0.6vw) scale(1);
  }
  93% {
    transform: translateY(-0.9vw) scale(1);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}


@keyframes ocultar-foto {
  0% {
    width: 5rem;
    height: 5rem;
  }
  50% {
    width: 50%;
    height: 50%;
  }
  100% {
    width: 100%;
    height: 100%;
  }

}


/*
--------------------------------/-
Clases para funconalidades javaScript 
--------------------------------/-
*/



/*
--------------------------------/-
Puntos de interrupción 
--------------------------------/-
 */

@media only screen and (max-width: 1094px) {
  .contenedor-formulario {
    width: 100%;
    padding: 0rem 5rem;
  }
  .formulario {
    grid-template-columns: 100%;
  }
  .contenedor-cuerpo {
    padding: 3rem 7rem;
  }
  .grid-items-formulario {
    column-gap: 6rem;
  }
  .item-1 input,
  .item-2 input,
  .item-3 input,
  .item-4 input,
  .item-5 input {
    width: 100%;
  }

  .contenedor-imagen {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .grid-items-formulario {
    position: relative;
    grid-template-columns: 100%;
  }
  .titulo-formulario {
    grid-column: auto;
  }
  .item-5 select {
    width: 100%;
  }
}

@media only screen and (max-width: 500px) {
  .contenedor-formulario {
    width: 100%;
    padding: 0rem;
  }
  .contenedor-cuerpo {
    padding: 3rem 2rem;
  }
}

