@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

h1, h2, h3, h4, h5 {
  font-family: "Oxanium", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 3rem;
}

a {
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s;
  cursor: pointer;
}

button {
  border: none;
  cursor: pointer;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  background: transparent;
  transition: all 0.4s;
  font-size: 1.6rem;
}

input {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
}

textarea {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  resize: vertical;
}

.tit_home {
  font-size: clamp(4.5rem, 10vw, 7rem);

  & span {
    color: var(--verde-acceso);
  }
}

.tit_1 {
  font-size: clamp(4rem, 13vw, 8rem);

  & span {
    color: var(--verde-acceso);
  }
}
h1, h2, .tit_2 {
  font-size: clamp(3.8rem, 11vw, 7.5rem);

  & strong {
    color: var(--verde-acceso);
    font-weight: 700;
  }
}
.tit_3 {
  font-size: clamp(3.4rem, 9vw, 6rem);

  & strong {
    color: var(--verde-acceso);
    font-weight: 700;
  }
}
.tit_4, h3 {
  font-size: clamp(3.2rem, 7vw, 4.5rem);

  & strong {
    color: var(--verde-acceso);
    font-weight: 700;
  }
}

.stit, h4 {
  font-size: clamp(2.5rem, 6vw, 3.2rem);
  font-family: "Oxanium", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.2;
  font-weight: 700;

  & strong {
    color: var(--verde-acceso);
    font-weight: 700;
  }
}

h5 {
  font-size: clamp(2.2rem, 5vw, 3rem);

  & strong {
    color: var(--verde-acceso);
    font-weight: 700;
  }
}

.btn {
  display: inline-block;
  line-height: 1.1;
  background-color: var(--verde-acceso);
  color: var(--black);
  padding: 1.4rem 2.8rem;
  border-radius: 3rem;
  margin: 4rem 0 0;
  transition: all .3s;
  font-weight: 500;
  text-align: center;

  @media screen and (min-width: 769px) {
    margin: 6rem 0 0;
  }

  &:hover {
    translate: 0 -8px;
  }
}



::selection {
  color: var(--white);
  background: var(--verde-acceso);
}