body {
  background: #0c0c0d;
  position: relative;
}
.title {
  color: #fafafa;
  text-align: center;
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  padding: 108px 0;
}
.bg {
  width: 100%;
  position: relative;
}
.bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/hero-bg.png");
  z-index: -2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.wave1,
.wave2 {
  position: absolute;
  filter: blur(10px);
  z-index: -1;
}
.wave1 {
  left: 0;
  top: 0;
}
.wave2 {
  right: 0;
  top: 0;
}
.footer {
  background: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: -2;
  max-height: 336px;
}
.reg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 75px;
}
.trust {
  padding-block: 76px;
}
.contact-block {
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact-block-title {
  color: #fafafa;
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.contact-block-text {
  color: #fafafa;
  font-family: "Outfit";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info img {
  width: 24px;
  height: 25px;
}
.contact-info p {
  color: #eaeaec;
  font-family: "Outfit";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.contact-info {
  display: flex;
  gap: 18px;
  align-items: center;
}
hr {
  border-color: #005ed3;
}

/* Tablet */
@media (max-width: 1439px) {
  .reg {
    flex-direction: column;
    gap: 24px;
    padding-block: 60px;
  }
  .trust {
    padding-block: 60px;
  }
  .title {
    padding: 62px 0px 80px 0px;
  }
  .contact-block-title {
    font-size: 30px;
  }
  .wave1,
  .wave2 {
    display: none;
  }
}
/* Phone */
@media (max-width: 744px) {
  .reg {
    flex-direction: column;
    gap: 20px;
    padding-block: 48px;
  }
  .trust {
    padding-block: 48px;
  }
  .title {
    padding: 62px 0px 80px 0px;
  }
  .contact-block-title {
    font-size: 30px;
  }
  .wave1,
  .wave2 {
    display: none;
  }
}
