/* Layout */
/* Spacing */
/* Transitions */
/* Breakpoints */
/* Z-index scale */
/* Forms */
/* Minimal base reset for consistent rendering */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  color: #111111;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #f1aa02;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
a:hover {
  color: #d99a02;
}
button,
input,
textarea,
select {
  font-family: 'Montserrat', sans-serif;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}
.wrap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 768px) and (max-width: 989px), all and (max-width: 767px) {
  .wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* Utility */
.u-hidden {
  display: none !important;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 26px 0;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.header:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
  z-index: -1;
}
.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 30px;
  min-height: 86px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.header__logo {
  display: block;
  width: 13.8%;
  min-width: 156px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.header__nav {
  margin-left: auto;
}
.header__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px;
}
.header__link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.header__link:hover {
  color: #f1aa02;
}
.header__toggle {
  display: none;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .header__menu {
    gap: 18px;
  }
  .header__link {
    font-size: 12px;
  }
}
@media all and (max-width: 767px) {
  .header {
    padding: 16px 0;
  }
  .header__logo {
    width: 180px;
  }
  .header__toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 2001;
    display: block;
    width: 32px;
    height: 28px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
  }
  .header__toggle-line {
    display: block;
    position: absolute;
    left: 2px;
    right: 2px;
    height: 2px;
    background: #ffffff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header__toggle-line:nth-child(1) {
    top: 4px;
  }
  .header__toggle-line:nth-child(2) {
    top: 13px;
  }
  .header__toggle-line:nth-child(3) {
    top: 22px;
  }
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin-left: 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(22, 22, 22, 0.96);
    pointer-events: none;
    transform: none;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -ms-transition: all 0.35s ease;
    transition: all 0.35s ease;
  }
  .header__menu {
    display: block;
    text-align: center;
  }
  .header__item {
    margin-bottom: 0;
  }
  .header__link {
    display: block;
    padding: 14px 20px;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
  }
  .header__link:hover {
    color: #f1aa02;
  }
}
.header.is-sticky {
  padding: 8px 0;
}
.header.is-sticky:before {
  background: rgba(22, 22, 22, 0.9);
}
.header.is-sticky .header__inner {
  min-height: 54px;
}
.header.is-sticky .header__logo {
  width: 10.8%;
  min-width: 122px;
}
.header.is-sticky .header__link:hover {
  color: #f1aa02;
}
body:not(.home) .header:before {
  background: rgba(22, 22, 22, 0.82);
}
body:not(.home) .header.is-sticky:before {
  background: rgba(22, 22, 22, 0.92);
}
body.is-menu-open {
  overflow: hidden;
}
body.is-menu-open .header {
  position: fixed;
}
@media all and (max-width: 767px) {
  body.is-menu-open .header__toggle-line:nth-child(1) {
    top: 13px;
    transform: rotate(45deg);
  }
  body.is-menu-open .header__toggle-line:nth-child(2) {
    opacity: 0;
  }
  body.is-menu-open .header__toggle-line:nth-child(3) {
    top: 13px;
    transform: rotate(-45deg);
  }
  body.is-menu-open .header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.footer {
  background: #1b1b1b;
  padding: 72px 0 34px;
  color: #ffffff;
  text-align: center;
}
.footer__grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 120px;
}
.footer__brand,
.footer__contact {
  width: 32%;
}
.footer__logo {
  width: 31%;
  min-width: 170px;
  margin: 0 auto 26px;
}
.footer__title {
  margin-bottom: 24px;
  color: #f1aa02;
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}
.footer__text {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
}
.footer__text--large {
  font-size: 17px;
  font-weight: 600;
}
.footer__link {
  color: #ffffff;
  text-decoration: none;
}
.footer__link:hover {
  color: #f1aa02;
  text-decoration: none;
}
.footer__bottom {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 4px solid #f1aa02;
}
.footer__bottom p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .footer__grid {
    gap: 40px;
  }
  .footer__brand,
  .footer__contact {
    width: 40%;
  }
  .footer__text,
  .footer__text--large,
  .footer__bottom p {
    font-size: 15px;
  }
  .footer__bottom p {
    font-size: 13px;
  }
}
@media all and (max-width: 767px) {
  .footer {
    padding: 44px 0 24px;
  }
  .footer__grid {
    display: block;
  }
  .footer__brand,
  .footer__contact {
    width: 100%;
  }
  .footer__brand {
    margin-bottom: 34px;
  }
  .footer__title {
    font-size: 24px;
  }
  .footer__text,
  .footer__text--large,
  .footer__bottom p {
    font-size: 13px;
  }
  .footer__bottom p {
    font-size: 12px;
  }
}
.cc-pc-container {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  overflow: hidden;
}
.cc-nb-okagree,
.cc-nb-reject,
.cc-cp-foot-save {
  background-color: #f1aa02 !important;
  color: #ffffff !important;
  border: none !important;
}
.cc-nb-okagree:hover,
.cc-nb-reject:hover,
.cc-cp-foot-save:hover {
  background-color: #d99a02 !important;
}
.cc-pc-head-lang-select,
.cc-pc-head-lang-select:focus,
.cc-pc-head-lang-select:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
.cc-cp-foot {
  padding: 20px;
  display: block;
  *zoom: 1;
}
.cc-cp-foot:before,
.cc-cp-foot:after {
  content: "";
  display: table;
}
.cc-cp-foot:after {
  clear: both;
}
.cc-cp-foot-save:focus {
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
.freeprivacypolicy-com---pc-dialog div.cc-cp-foot-byline {
  display: none !important;
}
.button {
  display: inline-block;
  padding: 15px 31px;
  border: 2px solid #f1aa02;
  background: #f1aa02;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.button:hover {
  background: #d99a02;
  border-color: #d99a02;
  color: #ffffff;
}
.button--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #f1aa02;
}
.button--outline:hover {
  background: #f1aa02;
  border-color: #f1aa02;
  color: #ffffff;
}
.button--outline-dark {
  background: transparent;
  border-color: rgba(27, 27, 27, 0.18);
  color: #111111;
}
.button--outline-dark:hover {
  background: #f1aa02;
  border-color: #f1aa02;
  color: #ffffff;
}
.button--full {
  display: block;
  width: 100%;
}
.form__row {
  margin-bottom: 12px;
}
.form__row--split {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}
.form__field {
  width: 100%;
}
.form input,
.form textarea {
  width: 100%;
  padding: 0 28px;
  border: 0;
  background: #F3F3F3;
  color: #111111;
  font-size: 14px;
  font-weight: 400;
}
.form input {
  height: 42px;
}
.form textarea {
  height: 128px;
  padding-top: 14px;
  resize: vertical;
}
.form__actions {
  padding-top: 18px;
}
.form__actions .button {
  min-height: 40px;
  padding-top: 9px;
  padding-bottom: 9px;
  border-radius: 6px;
  font-size: 18px;
  line-height: 1.1;
}
.form input::-webkit-input-placeholder,
.form textarea::-webkit-input-placeholder {
  color: #111111;
}
@media all and (max-width: 767px) {
  .form__row--split {
    display: block;
  }
  .form__row--split .form__field {
    margin-bottom: 12px;
  }
  .form__row--split .form__field:last-child {
    margin-bottom: 0;
  }
}
.wpcf7 br {
  display: none;
}
.wpcf7 .form__field p,
.wpcf7 .form__actions p {
  margin: 0;
}
.wpcf7 .wpcf7-acceptance {
  display: block;
}
.wpcf7 .wpcf7-list-item {
  display: block;
  margin: 0;
}
.wpcf7 .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.wpcf7 .wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin: 2px 0 0;
}
.wpcf7 .wpcf7-list-item-label {
  display: block;
  color: #111111;
  font-size: 14px;
  line-height: 1.45;
}
.wpcf7 .wpcf7-submit.button {
  min-height: 40px;
  padding: 9px 31px;
  border: 2px solid #f1aa02;
  background: #f1aa02;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  text-align: center;
  border-radius: 6px;
  box-shadow: none;
  cursor: pointer;
  -webkit-appearance: none;
}
.wpcf7 .wpcf7-submit.button:hover {
  background: #d99a02;
  border-color: #d99a02;
  color: #ffffff;
}
/* Pages */
.hero {
  position: relative;
  min-height: 798px;
  overflow: hidden;
  color: #ffffff;
}
.hero:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(27, 27, 27, 0.42);
  z-index: 1;
}
.hero .wrap {
  position: relative;
  z-index: 2;
}
.hero__background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  animation: heroBackgroundDrift 22s ease-in-out infinite;
}
.hero__content {
  max-width: 80%;
  padding-top: 363px;
}
.hero__title {
  margin-bottom: 45px;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 800;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .hero {
    min-height: 680px;
  }
  .hero__content {
    max-width: 70%;
    padding-top: 280px;
  }
  .hero__title {
    font-size: 46px;
  }
}
@media all and (max-width: 767px) {
  .hero {
    min-height: 520px;
  }
  .hero__content {
    max-width: 100%;
    padding-top: 188px;
    text-align: center;
  }
  .hero__title {
    margin-bottom: 22px;
    font-size: 30px;
  }
}
.offer {
  padding: 100px 0 24px;
}
.offer__grid {
  display: block;
}
.offer + .offer {
  padding-top: 40px;
  padding-bottom: 110px;
}
@media all and (max-width: 767px) {
  .offer {
    padding: 56px 0 18px;
  }
}
@media all and (max-width: 767px) {
  .offer + .offer {
    padding-top: 24px;
    padding-bottom: 60px;
  }
}
.feature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 24px;
}
.feature--reverse {
  margin-bottom: 0;
}
.feature__content,
.feature__media {
  width: 48%;
}
.feature__content {
  width: 43%;
}
.feature__media {
  width: 52%;
}
.feature__eyebrow {
  margin-bottom: 10px;
  color: #f1aa02;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}
.feature__title {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: 38px;
  line-height: 1.06;
  font-weight: 500;
  text-transform: uppercase;
}
.feature__title span {
  color: #f1aa02;
}
.feature__text {
  color: #111111;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
}
.feature__text p {
  margin-bottom: 14px;
  color: #111111;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
}
.feature__text ul {
  margin-bottom: 20px;
}
.feature__text li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 33px;
  color: #737373;
  font-size: 16px;
  line-height: 1.35;
}
.feature__text li:last-child {
  margin-bottom: 0;
}
.feature__text li:before {
  content: "\f058";
  position: absolute;
  top: 2px;
  left: 0;
  color: #f1aa02;
  font-family: "Font Awesome 6 Free";
  font-size: 16px;
  font-weight: 900;
}
.feature__text .button {
  margin-top: 4px;
}
.feature__media img {
  width: 100%;
  border-radius: 30px;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .feature__title {
    font-size: 31px;
  }
  .feature__item,
  .feature__text {
    font-size: 15px;
  }
  .feature__text p,
  .feature__text li {
    font-size: 15px;
  }
}
@media all and (max-width: 767px) {
  .feature {
    display: block;
    margin-bottom: 58px;
  }
  .feature__content,
  .feature__media {
    width: 100%;
  }
  .feature__media {
    margin-top: 26px;
  }
  .feature--reverse .feature__media {
    margin-top: 0;
    margin-bottom: 22px;
  }
  .feature__title {
    font-size: 24px;
    max-width: none;
  }
  .feature__text,
  .feature__eyebrow {
    font-size: 14px;
  }
  .feature__text p,
  .feature__text li {
    font-size: 14px;
  }
}
.about {
  padding: 96px 0 106px;
  background: #1b1b1b;
  color: #ffffff;
}
.about__grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.about__content {
  width: 47%;
}
.about__media {
  width: 45%;
}
.about__media img {
  width: 100%;
  border-radius: 30px;
}
.about__eyebrow {
  margin-bottom: 24px;
  color: #f1aa02;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}
.about__text p {
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.about__text p:last-child {
  margin-bottom: 0;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .about__text p {
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .about {
    padding: 58px 0 64px;
  }
  .about__grid {
    display: block;
  }
  .about__content,
  .about__media {
    width: 100%;
  }
  .about__media {
    margin-top: 26px;
  }
  .about__eyebrow {
    font-size: 21px;
  }
  .about__text p {
    font-size: 14px;
  }
}
.contact {
  overflow: hidden;
}
.contact__split {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact__info,
.contact__form-wrap {
  width: 50%;
  padding: 92px 7.3% 86px;
}
.contact__info {
  background: #f1aa02;
  padding-right: 0;
}
.contact__form-wrap {
  background: #ffffff;
  padding-left: 4.8%;
}
.contact__box {
  max-width: 520px;
  margin-left: auto;
}
.contact__box--form {
  margin-left: 0;
  margin-right: auto;
  max-width: 560px;
}
.contact__title {
  margin-bottom: 6px;
  font-size: 58px;
  line-height: 0.95;
  font-weight: 500;
  text-transform: uppercase;
}
.contact__subtitle {
  margin-bottom: 60px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 400;
}
.contact__box--form .contact__title {
  margin-bottom: 46px;
  font-size: 64px;
  line-height: 0.92;
}
.contact__list {
  background: #ffffff;
  width: 100%;
}
.contact__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  min-height: 88px;
  background: #ffffff;
}
.contact__item--alt {
  background: #E8E8E8;
}
.contact__item--alt .contact__icon {
  background: #DCDCDC;
}
.contact__icon {
  width: 24%;
  min-height: 88px;
  background: #EFEFEF;
  color: #9C9C9C;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__icon svg {
  width: 40px;
  height: 40px;
  stroke: #9C9C9C;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact__icon svg circle {
  fill: none;
}
.contact__value {
  width: 76%;
  padding: 14px 22px;
  color: #111111;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 400;
}
.contact__value--link {
  display: block;
  color: #111111;
  text-decoration: none;
}
.contact__value--link:hover {
  color: #f1aa02;
  text-decoration: none;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .contact__info,
  .contact__form-wrap {
    padding-left: 4%;
    padding-right: 4%;
  }
  .contact__title {
    font-size: 46px;
  }
  .contact__value {
    font-size: 17px;
  }
  .contact__box--form .contact__title {
    font-size: 50px;
    margin-bottom: 34px;
  }
}
@media all and (max-width: 767px) {
  .contact__split {
    display: block;
  }
  .contact__info,
  .contact__form-wrap {
    width: 100%;
    padding: 46px 10px;
  }
  .contact__info {
    padding-right: 10px;
  }
  .contact__box,
  .contact__box--form {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .contact__list {
    width: 100%;
  }
  .contact__title {
    font-size: 30px;
  }
  .contact__subtitle {
    margin-bottom: 28px;
    font-size: 16px;
  }
  .contact__value {
    font-size: 15px;
  }
  .contact__box--form .contact__title {
    font-size: 34px;
    margin-bottom: 22px;
  }
}
.page-shell {
  background: #F7F3EA;
}
@keyframes pageFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroBackgroundDrift {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.075);
  }
  100% {
    transform: scale(1);
  }
}
.header {
  animation: pageFadeUp 0.72s ease both;
}
.hero__content {
  animation: pageFadeUp 0.82s ease both;
  animation-delay: 0.12s;
}
.feature {
  animation: pageFadeUp 0.82s ease both;
}
.offer:first-of-type .feature {
  animation-delay: 0.22s;
}
.offer + .offer .feature {
  animation-delay: 0.34s;
}
.about__grid {
  animation: pageFadeUp 0.82s ease both;
  animation-delay: 0.22s;
}
.contact__split {
  animation: pageFadeUp 0.82s ease both;
  animation-delay: 0.28s;
}
.page-content__main,
.page-content__card {
  animation: pageFadeUp 0.82s ease both;
  animation-delay: 0.18s;
}
.footer__grid {
  animation: pageFadeUp 0.82s ease both;
  animation-delay: 0.22s;
}
.footer__bottom {
  animation: pageFadeUp 0.82s ease both;
  animation-delay: 0.32s;
}
@media (prefers-reduced-motion: reduce) {
  .hero__background img,
  .header,
  .hero__content,
  .feature,
  .about__grid,
  .contact__split,
  .page-content__main,
  .page-content__card,
  .footer__grid,
  .footer__bottom {
    animation: none;
  }
}
.hero--page {
  min-height: 430px;
}
.hero--page:before {
  background: linear-gradient(90deg, rgba(27, 27, 27, 0.82) 0%, rgba(27, 27, 27, 0.66) 45%, rgba(27, 27, 27, 0.42) 100%);
}
.hero--page .wrap {
  height: 100%;
}
.hero--page .hero__content {
  max-width: 760px;
  padding-top: 205px;
  padding-bottom: 88px;
}
.hero--page .hero__eyebrow {
  margin-bottom: 18px;
  color: #f1aa02;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero--page .hero__title {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .hero--page {
    min-height: 360px;
  }
  .hero--page .hero__content {
    max-width: 100%;
    padding-top: 176px;
    padding-bottom: 62px;
  }
  .hero--page .hero__title {
    font-size: 40px;
  }
}
@media all and (max-width: 767px) {
  .hero--page {
    min-height: 300px;
  }
  .hero--page .hero__content {
    padding-top: 146px;
    padding-bottom: 40px;
    text-align: left;
  }
  .hero--page .hero__eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
  }
  .hero--page .hero__title {
    font-size: 28px;
  }
}
.page-content {
  position: relative;
  z-index: 2;
  padding: 0 0 110px;
  margin-top: -74px;
}
.page-content__inner {
  max-width: 920px;
  margin: 0 auto;
}
.page-content__main,
.page-content__card {
  background: #ffffff;
  border: 1px solid rgba(27, 27, 27, 0.08);
  border-radius: 32px;
  padding: 56px 58px 60px;
  box-shadow: 0 30px 70px rgba(27, 27, 27, 0.1);
  -moz-box-shadow: 0 30px 70px rgba(27, 27, 27, 0.1);
  -webkit-box-shadow: 0 30px 70px rgba(27, 27, 27, 0.1);
}
.page-content__main {
  color: #111111;
  font-size: 17px;
  line-height: 1.75;
}
.page-content__main > *:first-child {
  margin-top: 0;
}
.page-content__main > *:last-child {
  margin-bottom: 0;
}
.page-content__main h2,
.page-content__main h3,
.page-content__main h4 {
  margin: 42px 0 18px;
  color: #111111;
  font-weight: 600;
  line-height: 1.08;
}
.page-content__main h2 {
  font-size: 34px;
}
.page-content__main h3 {
  font-size: 28px;
}
.page-content__main h4 {
  font-size: 22px;
}
.page-content__main p,
.page-content__main ul,
.page-content__main ol,
.page-content__main blockquote {
  margin-bottom: 18px;
}
.page-content__main ul,
.page-content__main ol {
  padding-left: 28px;
}
.page-content__main li {
  margin-bottom: 10px;
}
.page-content__main a:not(.button) {
  color: #f1aa02;
  text-decoration: none;
  border-bottom: 1px solid rgba(241, 170, 2, 0.35);
}
.page-content__main a:not(.button):hover {
  color: #d99a02;
  border-bottom-color: rgba(217, 154, 2, 0.35);
}
.page-content__main img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}
.page-content--404 {
  min-height: calc(-140vh);
  margin-top: 0;
  padding: 198px 0 120px;
  background: radial-gradient(circle at top left, rgba(241, 170, 2, 0.22) 0%, transparent 34%), linear-gradient(180deg, #f8f3e8 0%, #f3eee4 100%);
}
.page-content--404 .page-content__inner {
  max-width: 840px;
}
.page-content--404 .page-content__card {
  padding: 68px 72px 72px;
  border-radius: 38px;
  background: linear-gradient(145deg, #ffffff 0%, #fbf7ef 100%);
}
.page-content__code {
  margin-bottom: 18px;
  color: #f1aa02;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.32em;
}
.page-content__title {
  margin-bottom: 18px;
  color: #111111;
  font-size: 56px;
  line-height: 0.95;
  font-weight: 700;
  text-transform: uppercase;
}
.page-content__lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(17, 17, 17, 0.86);
  font-size: 18px;
  line-height: 1.6;
}
.page-content__actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 14px;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .page-content {
    padding-bottom: 84px;
  }
  .page-content__main,
  .page-content__card {
    padding: 44px 34px 46px;
    border-radius: 26px;
  }
  .page-content__main {
    font-size: 16px;
  }
  .page-content__main h2 {
    font-size: 30px;
  }
  .page-content__main h3 {
    font-size: 25px;
  }
  .page-content--404 {
    min-height: auto;
    padding: 164px 0 94px;
  }
  .page-content--404 .page-content__card {
    padding: 54px 42px 56px;
  }
  .page-content__title {
    font-size: 46px;
  }
  .page-content__lead {
    font-size: 17px;
  }
}
@media all and (max-width: 767px) {
  .page-content {
    padding-bottom: 56px;
    margin-top: -38px;
  }
  .page-content__main,
  .page-content__card {
    padding: 30px 18px 32px;
    border-radius: 22px;
  }
  .page-content__main {
    font-size: 15px;
    line-height: 1.65;
  }
  .page-content__main h2,
  .page-content__main h3,
  .page-content__main h4 {
    margin: 30px 0 14px;
  }
  .page-content__main h2 {
    font-size: 24px;
  }
  .page-content__main h3 {
    font-size: 21px;
  }
  .page-content__main h4 {
    font-size: 18px;
  }
  .page-content--404 {
    min-height: auto;
    padding: 132px 0 60px;
  }
  .page-content--404 .page-content__card {
    padding: 34px 18px 36px;
    border-radius: 24px;
  }
  .page-content__code {
    margin-bottom: 12px;
    font-size: 12px;
  }
  .page-content__title {
    margin-bottom: 14px;
    font-size: 31px;
  }
  .page-content__lead {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.55;
  }
  .page-content__actions {
    display: block;
  }
  .page-content__actions .button {
    display: block;
    width: 100%;
    margin-bottom: 12px;
  }
  .page-content__actions .button:last-child {
    margin-bottom: 0;
  }
}
