.section_hero {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.ground {
  background-color: #eee;
  width: 100%;
  height: 25%;
  position: absolute;
  inset: auto 0% 0%;
}

.dogs {
  height: 40%;
  position: absolute;
  inset: auto auto 9%;
}

.logo {
  height: 16%;
  position: absolute;
  inset: auto auto 60%;
}

.wave {
  opacity: .7;
  background-image: url('../images/wave.svg');
  background-position: 100% 0;
  background-repeat: repeat-x;
  background-size: auto 100%;
  width: 100%;
  height: 30%;
  position: absolute;
  inset: 0% 0% auto;
}

.links {
  z-index: 50;
  margin: 20px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.screener {
  background-color: #272203;
  background-image: url('../images/dex.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 70%;
  border: 2px #f9e4a3;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  margin-left: 7px;
}

.screener:hover {
  border-color: #fff;
}

.x {
  background-color: #272203;
  background-image: url('../images/x.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 89%;
  border: 2px #f9e4a3;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  margin-left: 7px;
}

.x:hover {
  border-color: #fff;
}

.ca {
  background-color: #272201;
  border: 2px #f9e4a3;
  border-radius: 100px;
  width: auto;
  height: 45px;
  margin: 25px;
  padding-top: 13px;
  font-family: Changa One, Impact, sans-serif;
  font-size: 17px;
  line-height: 17px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.ca:hover {
  border-color: #fff;
}

.block_ca_mobile {
  display: none;
}

.ca_mobile {
  background-color: #eb8691;
  border: 2px solid #f9e4a3;
  border-radius: 100px;
  width: auto;
  height: 45px;
  margin: 25px;
  font-family: Changa One, Impact, sans-serif;
  font-size: 17px;
  line-height: 20px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.ca_mobile:hover {
  border-color: #fff;
}

@media screen and (max-width: 991px) {
  .dogs {
    height: 400px;
  }

  .logo {
    height: 118px;
  }

  .wave {
    height: 250px;
  }
}

@media screen and (max-width: 767px) {
  .ground {
    height: 200px;
  }

  .dogs {
    height: 300px;
    margin-bottom: 75px;
    inset: auto auto 0%;
  }

  .logo {
    height: 72px;
    bottom: auto;
  }
}

@media screen and (max-width: 479px) {
  .dogs {
    height: 219px;
  }

  .logo {
    height: 52px;
  }

  .links {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    right: auto;
  }

  .ca {
    display: none;
  }

  .block_ca_mobile {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 51px;
    display: flex;
    position: absolute;
    inset: 0% auto auto;
  }

  .ca_mobile {
    background-color: #272206;
    border-style: none;
    padding-top: 12px;
    position: relative;
    inset: 0% auto auto;
  }
}


