@font-face {
  font-family: "Loos-Wide";
  src: url("../fonts/Loos-Wide/loos-wide-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora/Sora-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora/Sora-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora/Sora-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora/Sora-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora/Sora-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora/Sora-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora/Sora-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora/Sora-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-primary: "Sora";
  --font-heading: "Loos-Wide";
  --white: #fffcf6;
  --linen: #f3eee6;
  --platinum: #e7e1d7;
  --gray-umber: #2d2d2b;
  --pearl: #8c9486;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 200px;
  scrollbar-gutter: stable;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

::-moz-selection {
  color: var(--white);
  background-color: var(--pearl);
}

::selection {
  color: var(--white);
  background-color: var(--pearl);
}

body {
  min-width: 375px;
  position: relative;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-umber);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
video {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

svg {
  display: block;
  flex-shrink: 0;
}

ul,
ol {
  list-style: none;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  font: inherit;
  outline: none;
}

button {
  cursor: pointer;
}

.body-md {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.label-md {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.heading-sm {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.heading-md {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .heading-md {
    font-size: 20px;
  }
}

.display-md {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .display-md {
    font-size: 32px;
  }
}

.cont {
  width: 100%;
  max-width: 1440px;
}
@media (max-width: 1440px) {
  .cont {
    max-width: 1180px;
  }
}

.corners {
  --cut: 12px;
  border-radius: 0 4px 0 4px;
  mask-image: linear-gradient(135deg, transparent var(--cut), #000 var(--cut)), linear-gradient(315deg, transparent var(--cut), #000 var(--cut));
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
  -webkit-mask-image: linear-gradient(135deg, transparent var(--cut), #000 var(--cut)), linear-gradient(315deg, transparent var(--cut), #000 var(--cut));
  -webkit-mask-composite: destination-in;
}

.corners-btn {
  --cut: 12px;
  border-radius: 0 2px 0 2px;
  mask-image: linear-gradient(135deg, transparent var(--cut), #000 var(--cut)), linear-gradient(315deg, transparent var(--cut), #000 var(--cut));
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
  -webkit-mask-image: linear-gradient(135deg, transparent var(--cut), #000 var(--cut)), linear-gradient(315deg, transparent var(--cut), #000 var(--cut));
  -webkit-mask-composite: destination-in;
  --cut: 8px;
}

.gray-back {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  padding-bottom: 100px;
  background-color: var(--linen);
}
@media (max-width: 1024px) {
  .gray-back {
    margin-top: 72px;
    padding-bottom: 72px;
  }
}
@media (max-width: 768px) {
  .gray-back {
    margin-top: 64px;
    padding-bottom: 64px;
  }
}

.button {
  width: -moz-fit-content;
  width: fit-content;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 20px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: var(--platinum);
  background-color: var(--gray-umber);
  transition: opacity 0.3s;
}
.button-plat {
  color: var(--gray-umber);
  background-color: var(--platinum);
}
@media (hover: hover) {
  .button:hover {
    opacity: 0.8;
  }
}

.title-logo {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.title-logo__left {
  width: 100%;
  max-width: 708px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.title-logo__left h2 {
  text-transform: uppercase;
}
.title-logo__left h2 span {
  color: var(--pearl);
}
.title-logo__left .label-md {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .title-logo__left {
    max-width: 536px;
  }
}
@media (max-width: 768px) {
  .title-logo__left {
    max-width: unset;
  }
}
.title-logo__right {
  width: 91px;
  height: auto;
}
@media (max-width: 768px) {
  .title-logo__right {
    width: 68px;
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .title-logo {
    flex-direction: column;
    align-items: unset;
    justify-content: unset;
    gap: 12px;
  }
}

.title-between {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.title-between p {
  width: 100%;
  max-width: 464px;
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .title-between p {
    max-width: unset;
  }
}
.title-between__left {
  width: 100%;
  max-width: 708px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.title-between__left h2 {
  text-transform: uppercase;
}
.title-between__left h2 span {
  color: var(--pearl);
}
.title-between__left .label-md {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .title-between__left {
    max-width: 536px;
  }
}
@media (max-width: 768px) {
  .title-between__left {
    max-width: unset;
  }
}
@media (max-width: 1024px) {
  .title-between {
    flex-direction: column;
    justify-content: unset;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .title-between {
    gap: 8px;
  }
}

.title-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.title-center h2 {
  width: 100%;
  max-width: 708px;
  text-align: center;
  text-transform: uppercase;
}
.title-center h2 span {
  color: var(--pearl);
}
@media (max-width: 768px) {
  .title-center h2 {
    max-width: unset;
  }
}
.title-center .label-md {
  text-align: center;
  opacity: 0.8;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  position: relative;
  background-color: var(--white);
  border-radius: 4px;
}
.form .form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form .form-field__input {
  width: 100%;
  height: 46px;
  padding: 0 12px;
  color: var(--gray-umber);
  background-color: var(--linen);
  border: 1px solid transparent;
  border-radius: 2px;
  transition: border-color 0.3s;
}
.form .form-field__input::-moz-placeholder {
  color: var(--gray-umber);
  opacity: 0.8;
}
.form .form-field__input::placeholder {
  color: var(--gray-umber);
  opacity: 0.8;
}
@media (hover: hover) {
  .form .form-field__input:hover {
    border-color: var(--pearl);
  }
}
.form .form-field__input:focus {
  border-color: var(--pearl);
}
.form .form-field__dropdown {
  position: relative;
}
.form .form-field__dropdown.is-open .form-field__dropdown-trigger {
  border-color: var(--pearl);
}
.form .form-field__dropdown.is-open .form-field__dropdown-arrow {
  transform: rotate(180deg);
}
.form .form-field__dropdown.is-open-up .form-field__dropdown-list {
  top: auto;
  bottom: calc(100% + 4px);
}
.form .form-field__dropdown-trigger {
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background-color: var(--linen);
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.3s;
}
@media (hover: hover) {
  .form .form-field__dropdown-trigger:hover {
    border-color: var(--pearl);
  }
}
.form .form-field__dropdown-arrow {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.form .form-field__dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  z-index: 2;
  background-color: var(--linen);
  border: 1px solid var(--pearl);
  border-radius: 2px;
}
.form .form-field__dropdown-list[hidden] {
  display: none;
}
.form .form-field__dropdown-option {
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: rgba(45, 45, 43, 0.8);
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
@media (hover: hover) {
  .form .form-field__dropdown-option:hover {
    color: rgb(45, 45, 43);
    background-color: var(--white);
  }
}
.form .form-field__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.form .form-field__privacy {
  text-decoration: underline;
  opacity: 0.8;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .form .form-field__privacy:hover {
    opacity: 0.5;
  }
}
.form .form-field__submit {
  transition: opacity 0.3s, background-color 0.3s;
}
.form .form-field__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form .form-field__hp {
  width: 1px;
  height: 1px;
  position: absolute;
  left: -9999px;
  overflow: hidden;
}
.form .form-field__status {
  margin: -4px 0 0;
  font-family: var(--font-primary);
  font-size: 13px;
  line-height: 1.4;
  color: var(--gray-umber);
}
.form .form-field__status[hidden] {
  display: none;
}
.form .form-field__status--success {
  color: #2e7d32;
}
.form .form-field__status--error {
  color: #c62828;
}
.form::before, .form::after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  z-index: 1;
  background-color: var(--gray-umber);
  pointer-events: none;
}
.form::before {
  top: -1px;
  left: -1px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.form::after {
  right: -1px;
  bottom: -1px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
@media (max-width: 768px) {
  .form {
    padding: 16px;
  }
}/*# sourceMappingURL=style.css.map */