@charset "UTF-8";
section.cta {
  width: 100%;
  padding: 25px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--color-2);
  & > div {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    & > h1 {
      color: white;
      text-transform: uppercase;
      font-size: 30px;
      font-weight: 200;
    }
    & > p{
      margin-top: 10px;
      color: var(--color-white);
      font-weight: 200;
      display: flex;
      text-align: center;
      padding: 0 90px;
    }
    & > a {
      background-color: transparent;
      border: 1px solid var(--color-white);
      border-radius: 10px;
      padding: 8px 35px;
      border: 1px solid white;
      color: var(--color-white);
      margin-top: 30px;
      font-size: 20px;
      font-weight: 300;
      font-family: var(--font-text);
      transition: 0.4s all ease-in-out;
      cursor: pointer;
      text-decoration: none;
      &:hover {
        background-color: var(--color-white);
        color: var(--color-2);
      }
    }
  }
  &::after {
    content: "";
    z-index: 1;
    background-color: var(--color-2);
    opacity: 0.8;
    position: absolute;
    width: 100%;
    height: 100%;
  }
}
@media (width < 700px) {
  section.cta[data-target="1"] {
    padding: 30px 10px;
    background-position: center center;
    background-size: auto;
    & > div {
      & > h1 {
        font-size: 28px;
        text-align: center;
      }
    }
  }
}
