.contact__page .menu:not(.menu-fixed) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.contact-page {
  position: relative;
  overflow: hidden;
  padding: 0 0 5rem;
  background: #ffffff;
}
.contact-page__inner {
  display: grid;
  grid-template-columns: minmax(0, 50.75rem) minmax(20rem, 28.5625rem);
  gap: 1.875rem;
  align-items: start;
}
.contact-page__media {
  width: calc(100% + 7rem);
  margin-left: -7rem;
  overflow: hidden;
  border-radius: 0 0 6.25rem 0;
}
.contact-page__media img {
  display: block;
  width: 100%;
  height: 52.1875rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-page__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 5.625rem;
}
.contact-page__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-page__title {
  color: #194885;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
}
.contact-page__description {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.contact-page__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-radius: 1.25rem;
  background: #ffffff;
}
.contact-page__field {
  position: relative;
}
.contact-page__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.contact-page input,
.contact-page textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #cfd3d7;
  border-radius: 0;
  background: transparent;
  color: #484F56;
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
  outline: none;
  padding: 1.25rem 0;
  transition: border-color 0.3s ease;
}
.contact-page input::-moz-placeholder, .contact-page textarea::-moz-placeholder {
  color: #939ca5;
  opacity: 1;
}
.contact-page input::placeholder,
.contact-page textarea::placeholder {
  color: #939ca5;
  opacity: 1;
}
.contact-page input:focus,
.contact-page textarea:focus {
  border-color: #194885;
}
.contact-page textarea {
  min-height: 11.875rem;
  resize: vertical;
}
.contact-page__submit {
  display: inline-flex;
  min-height: 3.5rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border: 0;
  border-radius: 0.75rem;
  background: #194885;
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 1rem 0.75rem;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.contact-page__submit:hover:not(:disabled) {
  background: #5993DF;
}
.contact-page__submit:disabled {
  cursor: not-allowed;
  opacity: 0.75;
}
.contact-page__submit-icon {
  display: inline-flex;
  width: 0.875rem;
  height: 0.875rem;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
@media (max-width: 1199px) {
  .contact-page {
    padding-top: 4rem;
  }
  .contact-page__inner {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
  }
  .contact-page__media {
    width: 100%;
    margin-left: 0;
  }
  .contact-page__media img {
    height: 42rem;
  }
}
@media (max-width: 991px) {
  .contact-page__inner {
    grid-template-columns: 1fr;
  }
  .contact-page__media {
    border-radius: 0;
  }
  .contact-page__media img {
    height: auto;
    aspect-ratio: 914/835;
  }
  .contact-page__content {
    gap: 2rem;
    padding-top: 0;
  }
}
@media (max-width: 575px) {
  .contact-page {
    padding: 2rem 0;
  }
}