.contact-wrap {
  padding-bottom: 92px;
  box-sizing: border-box;
}

.contact-hero {
  margin-top: 80px;
  padding: 70px 20px 145px;
  background: url("../images/contact_bg.jpg") center/cover no-repeat;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  box-sizing: border-box;
}
.contact-hero .cnt-auto {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
.contact-hero .contact-map {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.contact-company h1,
.contact-section-head h2 {
  color: #333;
  font-size: 50px;
  line-height: 1.2;
  font-weight: normal;
}

.contact-company p,
.contact-section-head p {
  margin-top: 6px;
  color: #ff6e05;
  font-size: 30px;
  line-height: 1.2;
}

.contact-company p {
  color: #333;
  font-size: 18px;
}

.contact-address {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-size: 18px;
}

.contact-pin {
  width: 22px;
  aspect-ratio: 1;
  border-radius: 50% 50% 50% 0;
  background: #111;
  transform: rotate(-45deg);
  position: relative;
  flex: 0 0 auto;
}
.contact-pin:after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #fff;
}

.contact-methods {
  width: min(100%, 420px);
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 58px;
}

.contact-method {
  text-align: center;
  color: #333;
}
.contact-method strong,
.contact-method span:last-child {
  display: block;
}
.contact-method strong {
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
}
.contact-method span:last-child {
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.25;
}

.contact-icon {
  display: flex;
  justify-content: center;
}

.contact-map img {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 1.5;
  object-fit: cover;
  display: block;
}

.contact-message {
  padding-top: 66px;
}

.contact-message, .contact-jobs {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.contact-section-head {
  margin-bottom: 42px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-row {
  display: grid;
  gap: 20px;
}

.contact-form-row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form-row--mix {
  grid-template-columns: minmax(0, 2fr) repeat(2, minmax(0, 1fr));
}

.contact-field {
  position: relative;
  display: block;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid #999;
  border-radius: 3px;
  padding: 0 18px;
  box-sizing: border-box;
  color: #333;
  background: #fff;
  font-family: inherit;
  font-size: 16px;
}

.contact-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #555 50%), linear-gradient(135deg, #555 50%, transparent 50%);
  background-position: calc(100% - 24px) 50%, calc(100% - 17px) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.contact-field textarea {
  min-height: 92px;
  padding-top: 16px;
  resize: vertical;
}

.contact-field.has-error input {
  border-color: #f80606;
}

.contact-error {
  display: block;
  margin-top: 6px;
  color: #f80606;
  font-size: 14px;
  line-height: 1.4;
}

.contact-field em {
  position: absolute;
  right: 30px;
  top: 22px;
  color: #f80606;
  font-style: normal;
}

.contact-submit {
  width: fit-content;
  min-width: 150px;
  margin-top: 14px;
  border: 1px solid #2f82d6;
  border-radius: 12px;
  padding: 13px 22px;
  background: #fff;
  color: #2f82d6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 24px;
  font-family: inherit;
  cursor: pointer;
}
.contact-submit:hover {
  background: #2f82d6;
  color: #fff;
}

.contact-submit i {
  width: 32px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.contact-submit i:after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.contact-jobs {
  padding-top: 118px;
}

.jobs-table {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.jobs-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.9fr 1fr 0.9fr 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 40px;
  box-sizing: border-box;
  color: #666;
  background: #fff;
  font-size: 18px;
  text-align: center;
}

.jobs-row:nth-child(odd):not(.jobs-row--head) {
  background: #f1f1f1;
}

.jobs-row--head {
  background: #3e86c5;
  color: #fff;
  font-size: 24px;
}

.jobs-row a {
  color: inherit;
}

@media (max-width: 1366px) {
  .contact-hero {
    padding-left: 40px;
    padding-right: 40px;
    gap: 4%;
  }
  .contact-methods {
    gap: 30px 42px;
  }
  .jobs-row {
    padding-left: 28px;
    padding-right: 28px;
  }
}

/*# sourceMappingURL=contact.css.map */
