.contact-us-banner {
  position: relative;
  width: 100%;
  height: 600px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #545456;
}
.contact-us-banner__inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.contact-us-banner__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contact-us-banner__background > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-us-banner__content {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 35px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.contact-us-banner__text {
  width: 90%;
  max-width: 740px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-us-banner__title {
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}
.contact-us-banner__description {
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  line-height: 36px;
  margin-top: 30px;
  text-align: center;
}
.contact-us-banner__button {
  width: 90%;
  margin-top: 50px;
  max-width: 320px;
}

.contact-us-info {
  width: 100%;
  padding: 50px 0 70px;
}
.contact-us-info__content {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
.contact-us-info__title {
  font-weight: bold;
  color: #0a3635;
  margin-bottom: 15px;
}
.contact-us-info__description {
  width: 100%;
  max-width: 1090px;
  margin: 0 auto;
  font-weight: 400;
  color: #1e293b;
  line-height: 30px;
  text-align: center;
  margin-bottom: 40px;
}
.contact-us-info__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 30px;
  margin-bottom: 50px;
}
.contact-us-info__item {
  width: calc(100% / 3 - 20px);
  max-width: 440px;
  background: #f8f8f8;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 25px 30px;
  box-sizing: border-box;
}
.contact-us-info__item-icon {
  width: 120px;
  flex-shrink: 0;
}
.contact-us-info__item-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.contact-us-info__item-title {
  font-weight: 400;
  font-size: 18px;
  color: #1e293b;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 20px;
}
.contact-us-info__item-desc {
  font-weight: bold;
  font-size: 24px;
  color: #1e293b;
  text-align: center;
}
.contact-us-info__map {
  width: 100%;
}
.contact-us-info__map img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media screen and (max-width: 760px) {
  .contact-us-banner {
    height: auto;
  }
  .contact-us-banner__text {
    width: 100%;
  }

  .contact-us-info__item {
    width: 100%;
  }
}

@media screen and (min-width: 760px) and (max-width: 1020px) {
  .contact-us-banner {
    height: auto;
  }
  .contact-us-banner__text {
    width: 100%;
  }

  .contact-us-info__item {
    width: calc(100% / 2 - 15px);
  }
}

@media screen and (min-width: 1020px) and (max-width: 1350px) {
  .contact-us-info__item {
    width: calc(100% / 2 - 15px);
  }
}
