@font-face {
  font-family: "Bodoni 72";
  src: url("../fonts/BodoniSvtyTwoITCTT-Book.eot");
  src: url("../fonts/BodoniSvtyTwoITCTT-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/BodoniSvtyTwoITCTT-Book.woff2") format("woff2"), url("../fonts/BodoniSvtyTwoITCTT-Book.woff") format("woff"), url("../fonts/BodoniSvtyTwoITCTT-Book.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bodoni 72 Oldstyle";
  src: url("../fonts/BodoniSvtyTwoOSITCTT-Book.eot");
  src: url("../fonts/BodoniSvtyTwoOSITCTT-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/BodoniSvtyTwoOSITCTT-Book.woff2") format("woff2"), url("../fonts/BodoniSvtyTwoOSITCTT-Book.woff") format("woff"), url("../fonts/BodoniSvtyTwoOSITCTT-Book.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Consultant";
  src: url("../fonts/ConsultantRegular.eot");
  src: url("../fonts/ConsultantRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/ConsultantRegular.woff2") format("woff2"), url("../fonts/ConsultantRegular.woff") format("woff"), url("../fonts/ConsultantRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Light.eot");
  src: url("../fonts/OpenSans-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-Light.woff2") format("woff2"), url("../fonts/OpenSans-Light.woff") format("woff"), url("../fonts/OpenSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Regular.eot");
  src: url("../fonts/OpenSans-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff"), url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-SemiBold.eot");
  src: url("../fonts/OpenSans-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-SemiBold.woff2") format("woff2"), url("../fonts/OpenSans-SemiBold.woff") format("woff"), url("../fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.payments {
  min-height: 100vh;
  display: flex;
  padding: 0 5%;
  padding-top: 100px;
  background: #FAE8D5;
  align-items: center;
}
.payments-image {
  width: 35%;
  max-height: 80vh;
  object-fit: contain;
}
.payments-form {
  padding: 4em 5%;
  width: 60%;
  background: white;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  transform: translateX(-5%);
}
.payments-form h2 {
  font-size: 4em;
  color: #AC9A4F;
}
.payments-form input {
  border-bottom: 1px solid black;
}
.payments-miss {
  cursor: pointer;
  transition: all ease-in 0.2s;
}
.payments-miss:hover {
  color: #AC9A4F;
}
@media screen and (max-width: 993px) {
  .payments {
    flex-direction: column-reverse;
    padding-bottom: 2em;
  }
  .payments-image {
    max-height: 40vh;
    width: 100%;
    object-fit: cover;
  }
  .payments-form {
    width: 100%;
    transform: none;
    text-align: center;
  }
  .payments-form input {
    text-align: center;
    justify-content: center;
  }
  .payments-form button {
    justify-content: center;
  }
}