@font-face {
  font-family: "RobotoSlab-Light";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/font/RobotoSlab-Light.woff2") format("woff2");
}
@font-face {
  font-family: "RobotoSlab-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/RobotoSlab-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/Roboto-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/font/Roboto-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/Roboto-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/Roboto-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/font/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/Poppins-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/Poppins-Bold.woff2") format("woff2");
}
.contact {
  padding: 40px 0 60px 0;
}
.contact .container {
  flex-direction: column;
  gap: 30px;
}
.contact__title {
  color: #5c5c5c;
  font-family: "Poppins-Bold";
  --font-size: 40px;
  --font-size-rem: 2.5rem;
  --line-height: 64px;
  --line-height-rem: 4rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  letter-spacing: -0.03em;
}
.contact__info {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 30px;
}
.contact__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 20px;
  gap: 20px;
  background-color: rgba(240, 240, 240, 0.5);
}
.contact__box img {
  width: 40px;
  height: 40px;
}
.contact__box address, .contact__box a {
  color: #000000;
  font-style: normal;
  text-align: center;
}
.contact__container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  gap: 40px;
}
.contact__map {
  width: 100%;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}
.contact__form {
  width: 100%;
}
.contact__form .form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact__form .form__input {
  width: 100%;
  padding: 10px;
  background-color: rgba(199, 199, 199, 0.0901960784);
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  border-radius: 0px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  font-family: "Poppins-Regular";
  transition: border-color 0.3s ease;
}
.contact__form .form__input:focus {
  border-color: rgba(0, 0, 0, 0.5);
}
.contact__form .form__input.-textarea {
  resize: vertical;
  min-height: 150px;
}
.contact__form .form__input.-invalid {
  border-color: #960048;
}
.contact__form .form__error {
  position: absolute;
  display: flex;
  color: #960048;
  font-family: "Poppins-Regular";
  --font-size: 12px;
  --font-size-rem: 0.75rem;
  --line-height: 20px;
  --line-height-rem: 1.25rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.contact__form .form__label {
  font-family: "Poppins-Medium";
}
.contact__form .form__button {
  width: 100%;
  padding: 10px;
  background-color: #062f6e;
  color: #ffffff;
  border: none;
  font-family: "Poppins-Bold";
  letter-spacing: 0.065em;
  text-transform: uppercase;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.contact__form .form__button:hover {
  background-color: #3377e6;
}
.contact__form .form__button:disabled {
  background-color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.contact__form .form__button:disabled:hover {
  background-color: rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 768px) {
  .contact__info {
    flex-direction: row;
    max-width: unset;
    gap: 40px;
  }
  .contact__box {
    width: calc((100% - 80px) / 3);
    padding: 30px;
  }
  .contact__container {
    flex-direction: row;
  }
  .contact__map {
    width: 50%;
  }
  .contact__form {
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .contact {
    padding: 80px 0 100px 0;
  }
  .contact .container {
    gap: 50px;
  }
  .contact__title {
    --font-size: 50px;
    --font-size-rem: 3.125rem;
    --line-height: 80px;
    --line-height-rem: 5rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .contact__container {
    gap: 60px;
  }
}