.contact .page-banner {
  background-image: url(../images/contact_banner_bg.png);
}
.contact .page-banner-main-container {
  margin-top: 232px;
}
.contact .page-banner-main-container-content {
  width: 624px;
}
.contact-section-container {
  display: flex;
  flex-direction: column;
  gap: 160px;
  padding-top: 40px;
  padding-bottom: 160px;
}
.contact-main-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.contact-form-container {
  width: 516px;
}
.contact-section-title {
  font-size: 32px;
  font-weight: 400;
  font-family: "Magnita";
}
.contact-separator {
  width: 516px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    90deg,
    color(display-p3 1 1 1 / 0.18) 0%,
    color(display-p3 1 1 1 / 0) 100%
  );
  margin: 24px 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-first-row {
  display: flex;
  gap: 24px;
}
.contact-form-input-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form-input-label {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
.contact-form-input {
  display: block;
  height: 48px;
  padding: 8px;
  border-radius: 4px;
  box-sizing: border-box;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border: 2px solid color(display-p3 1 1 1 / 0.7);
  border-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
  border-image-slice: 1;
  outline: none;
}
.contact-form-input-name {
  width: 193px;
}
.contact-form-input-email {
  width: 300px;
}
.contact-form-message {
  box-sizing: border-box;
  width: 100%;
  height: 240px;
  color: #fff;
  padding: 8px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border: 2px solid color(display-p3 1 1 1 / 0.7);
  border-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
  border-image-slice: 1;
  outline: none;
  resize: none;
}
.contact-form-third-row {
  display: flex;
}
.contact-form-submit-button {
  font-family: "Funnel Display";
  width: 192px;
  height: 48px;
  border-radius: 36px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  color: rgba(24, 24, 27, 1);
  background: rgba(255, 255, 255, 1);
  font-weight: 600;
}
.contact-form-submit-button:disabled {
  color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: not-allowed;
}

.contact-info-container {
  width: 410px;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 32px;
}
.contact-info-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.contact-info-item-address {
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon-phone {
  background: url(../images/contact_phone.png) no-repeat center center;
  background-size: contain;
}
.contact-info-icon-fax {
  background: url(../images/contact_fax.png) no-repeat center center;
  background-size: contain;
}
.contact-info-icon-email {
  background: url(../images/contact_email.png) no-repeat center center;
  background-size: contain;
}
.contact-info-icon-address {
  background: url(../images/contact_address.png) no-repeat center center;
  background-size: contain;
}
.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info-label {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.contact-info-value {
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  color: #fff;
  font-family: "Funnel Display";
}
.contact-location-section-image {
  width: 100%;
}

.message-modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(40, 40, 50, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.message-modal-content {
  background: #18181B;
  border: 2px solid transparent;
  border-image: linear-gradient(
      to bottom,
      rgba(228, 25, 54, 0.7),
      rgba(228, 25, 54, 0.3)
    )
    1;
  width: 408px;
  height: 262px;
  padding: 12px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.18);
  position: relative;
  text-align: center;
  color: #fff;
  font-family: "Funnel Display", "Magnita", serif;
  box-sizing: border-box;
}
.message-modal-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.message-modal-title {
  font-size: 14px;
  font-family: "Magnita", serif;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.message-modal-close {
  width: 24px;
  height: 24px;
  background: url(../images/close_icon.png) no-repeat center center;
  background-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.message-modal-close:hover {
  opacity: 1;
}
.message-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 24px;
}
.message-modal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(
      to right,
      #18181B,
      #18181B
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent);
  margin: 0 auto;
}
.message-modal-icon img {
  width: 24px;
  height: 24px;
}
.message-modal-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
}
.message-modal-ok {
  width: 100%;
  padding: 6px 0;
  border-radius: 2px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.message-modal-ok:hover {
  background: #fff;
  color: #18181B;
}
