*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}
body {
  background-color: #1a3d5b;
  background: url("../imgs/bg-desk.jpg") no-repeat center;
  background-size: cover;
  overflow-y: hidden;
}
main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  gap: 8rem;
  width: 100%;
}

.wrapper .text {
  color: #fff;
  font-size: 80px;
  font-weight: 700;
}

.contact {
  display: flex;
  padding-top: 2.5rem;
  gap: 2rem;
}
.contact a {
  gap: 0.75rem;
}

.contact .container-link {
  background: #ffffff;
  padding: 16px 32px;
  border-radius: 48px;
  line-height: 1.4;
}

.contact .container-link .number {
  color: #02a884;
  font-size: 32px;
  font-weight: 700;
}
.contact img {
  width: 60px;
  border-right: 2px solid #02a884;
  padding-right: 16px;
}
.address {
  max-width: 380px;
}
@media (max-width: 728px) {
  body {
    background: url("../imgs/bg-mobile.jpg") no-repeat bottom center;
    background-size: cover;
  }
  .wrapper {
    padding: 1rem;
    gap: 2rem;
    padding-bottom: 75%;
  }
  .logo {
    max-width: 70%;
    padding-bottom: 5rem;
  }

  .contact .container-link {
    padding: 10px 24px;
  }

  .wrapper .text {
    font-size: 42px;
  }
  .contact {
    flex-direction: column;
    margin-top: 0;
    padding-top: 0px;
  }
  .contact a {
    gap: 1rem;
  }
  .contact .container-link .number {
    font-size: 22px;
  }

  .contact img {
    width: 48px;
  }
}