main {
  /* background-color: rgba(255, 255, 255, 0.2); */
}
.contact-section {
  background-color: #f9f9f9;
}
.contact-map {
  margin-top: 50px;
}
.contact-main {
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  /* background-color: #fff; */
  background-color: #fff;
  margin-top: -130px;
  position: relative;
  z-index: 1;
}
.contact-info {
  flex: 1 1 53%;
  display: flex;
  flex-direction: column;
  padding: 50px;
}
.contact-info-row {
  display: flex;
  margin-bottom: 30px;
}
.contact-text {
  padding-left: 15px;
}
.contact-info-title {
  font-size: 20px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.75);
  margin: 0;
  margin-bottom: 10px;
  text-align: left;
}
.contact-info-desc {
  text-align: left;
  margin: 0;
  font-size: 15px;
}
.contact-icon img {
  width: 22px;
  height: 22px;
}
.contact-form {
  flex: 1 1 47%;
  background-color: #000;
  padding: 32px 48px;
}
.contact-form-title h2 {
  text-align: left;
  font-size: 40px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 30px;
}
#contactForm {
  display: flex;
  flex-direction: column;
  color: white;
}
#contactForm .input {
  border-width: 1px;
  border-color: #fff;
  color: #fff;
  font-size: 14px;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0);
  letter-spacing: 1px;
  margin-bottom: 30px;
}
#contactForm .input::placeholder {
  color: #fff;
  opacity: 1;
}
#contactForm .input:focus {
  outline: none;
  border-color: #fff;
}
#contactForm textarea {
  min-height: 100px;
  resize: none;
}
#contactForm .submitBtnContainer {
  display: flex;
  justify-content: right;
}
#contactForm #submitBtn {
  /* background-color: #068677; */
  background-color: #fff;
  color: white;
  border-radius: 0;
  padding: 15px 40px;
  color: black;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.contact-hero {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 70px 0;
  height: 200px;
}
.contact-hero-bg {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url('../images/dan-meyers-0AgtPoAARtE-unsplash.jpg') center/cover no-repeat; */
  background-position: center 50%;
  z-index: 1;
  opacity: 1;
}
/* Overlay для равномерного затемнения */
.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, 0.6); */
  z-index: 2;
  pointer-events: none;
}
.contact-hero-title {
  position: relative;
  z-index: 2;
  font-size: 60px;
  font-weight: 600;
  /* color: #fff; */
  color: #222;
  text-align: center;
  margin: 0;
  letter-spacing: 2px;
  /* text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25); */
}
@media (max-width: 600px) {
  .contact-hero {
    height: 140px;
    padding-top: 50px;
  }
  .contact-hero-title {
    font-size: 36px;
  }
  .contact-main {
    flex-direction: column;
    width: 90%;
  }
  .contact-info {
    padding: 30px 20px
  }
  .contact-info-title {
    font-size: 18px;
  }
  .contact-form {
    padding-right: 20px;
    padding-left: 20px;
  }
  .contact-form-title h2 {
    font-size: 24px;
  }
}