/*!******************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./components/button/button.scss ***!
  \******************************************************************************************************************************************************************/
/*
  Fonts Variables
 */
/*
  Colors Variables
 */
@keyframes rotateGradient {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn {
  position: relative;
  display: flex;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  font: 400 14px/1.3 "DMSans", sans-serif;
  text-decoration: none;
  padding: 10px 36px;
  border-radius: 20px;
  cursor: pointer;
  overflow: hidden;
  z-index: 5;
}
.btn--solid-dark {
  color: #ffffff;
  background: #0a1430;
  border: 1px solid #0a1430;
}
.btn--solid-light {
  color: #0a1430;
  background: #ffffff;
  border: 1px solid #ffffff;
}
.btn--gradient-gold {
  color: #000000;
  background: linear-gradient(0deg, #c3996c -18.35%, #cca478 10.65%, #e5c19a 64.65%, #efcca7 81.65%);
  border: #cca478;
}
.btn--outline-light {
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
}
.btn--animated-dark {
  background: linear-gradient(0deg, rgb(204, 164, 120) 0%, rgba(204, 164, 120, 0) 50%);
  color: #ffffff;
  border: 0;
}
.btn--animated-dark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: linear-gradient(0deg, #0a1430 0%, #0a1532 28%, #0b1b3a 45%, #0d2548 58%, #0f335c 70%, #124476 81%, #165a96 91%, #1b75bc 100%);
  border-radius: 20px;
  transform: translate(-50%, -50%);
  transition: width 300ms ease-in-out, height 300ms ease-in-out;
  z-index: -1;
}
.btn--animated-light {
  background: linear-gradient(0deg, rgb(204, 164, 120) 0%, rgba(204, 164, 120, 0) 100%);
  color: #000000;
  border: 0;
}
.btn--animated-light::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #ffffff;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  transition: width 300ms ease-in-out, height 300ms ease-in-out;
  z-index: -1;
}

@media (min-width: 1024px) {
  .btn--solid-dark, .btn--solid-light, .btn--outline-light {
    background: transparent;
    transition: color 1s cubic-bezier(0.8, 0, 0.2, 1);
  }
  .btn--solid-dark::before, .btn--solid-light::before, .btn--outline-light::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 1s cubic-bezier(0.8, 0, 0.2, 1);
    transform: translateX(-100%);
    border-radius: 20px;
    z-index: -1;
  }
  .btn--solid-dark:hover::before, .btn--solid-light:hover::before, .btn--outline-light:hover::before {
    transform: translateX(0);
  }
  .btn--solid-dark {
    color: #0a1430;
  }
  .btn--solid-dark::before {
    background: #0a1430;
  }
  .btn--solid-dark:hover {
    color: #ffffff;
  }
  .btn--solid-light, .btn--outline-light {
    color: #ffffff;
  }
  .btn--solid-light::before, .btn--outline-light::before {
    background: #ffffff;
  }
  .btn--solid-light:hover, .btn--outline-light:hover {
    color: #0a1430;
  }
}
/*!*****************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/page-thank-you.scss ***!
  \*****************************************************************************************************************************************************************/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  position: relative;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  -moz-osx-font-smoothing: grayscale; /*(For Firefox)*/
  -webkit-font-smoothing: antialiased; /*(For Chrome and Safari)*/
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
blockquote {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  display: block;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*
  Custom Fonts
 */
@font-face {
  font-family: "DMSans";
  src: url(../fonts/DMSans-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GildaDisplay";
  src: url(../fonts/GildaDisplay-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/*
  Fonts Variables
 */
/*
  Colors Variables
 */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.h1,
.h2 {
  text-transform: uppercase;
}

.h1 {
  font: 400 30px/1.1 "GildaDisplay", serif;
  letter-spacing: -0.9px;
  text-transform: uppercase;
}

.h2 {
  font: 400 30px/1.1 "GildaDisplay", serif;
}

.h4 {
  font: 400 26px/1.1 "GildaDisplay", serif;
}

p {
  font: 400 14px/1.3 "DMSans", sans-serif;
}

@media (min-width: 1280px) {
  .h1 {
    font-size: 80px;
    letter-spacing: -2.4px;
  }
  .h2 {
    font-size: 52px;
  }
  .h4 {
    font-size: 42px;
  }
  p {
    font-size: 16px;
  }
}
.pre-header {
  background-color: #cca478;
  padding: 24px 0 8px;
  position: relative;
  z-index: 998;
}
@media (min-width: 991px) {
  .pre-header .container {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
.pre-header__close {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 22px;
}
@media (min-width: 991px) {
  .pre-header__close {
    margin-bottom: 0;
  }
}
.pre-header__close button {
  background: transparent;
  border: 0;
  cursor: pointer;
}
.pre-header__content {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.pre-header__content a,
.pre-header__content span {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
}
.pre-header__content a.dot,
.pre-header__content span.dot {
  background-color: #ffffff;
  border-radius: 50%;
  width: 3px;
  height: 3px;
}
.pre-header__content a {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

@media only screen and (min-width: 991px) {
  .pre-header {
    padding: 10px 0;
    z-index: 99999;
  }
  .pre-header__content {
    justify-content: flex-end;
  }
  .pre-header__content a,
  .pre-header__content span {
    font-size: 17px;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, #0a1430 0%, #0a1532 28%, #0b1b3a 45%, #0d2548 58%, #0f335c 70%, #124476 81%, #165a96 91%, #1b75bc 100%);
  padding: 20px 0;
  transition: padding 300ms ease-in-out;
  z-index: 998;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__hamburger {
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}
.header__hamburger-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__hamburger-line {
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(0deg, #c3996c -18.35%, #cca478 10.65%, #e5c19a 64.65%, #efcca7 81.65%);
  margin: 5px 0;
  transition: transform 300ms ease-in-out;
}
.header__hamburger-label {
  display: none;
  font: 400 14px/1.3 "DMSans", sans-serif;
  color: #ffffff;
}
.header__logos {
  flex: 1;
  position: relative;
  height: 60px;
  width: 100%;
  overflow: hidden;
}
.header__logo {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
}
.header__logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  transition: transform 300ms ease-in-out;
}
.header__logo--dark {
  display: none;
}
.header__logo--dark .header__logo-img {
  max-width: 150px;
}
.header__logo--small-dark .header__logo-img {
  max-width: 50px;
}
.header__logo--inline-dark {
  display: none;
}
.header__controls {
  display: flex;
  gap: 8px;
}
.header__langs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.header__lang {
  font: 400 14px/1.3 "DMSans", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
}
.header__menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  transform: translateX(-100%);
  transition: transform 1s cubic-bezier(0.8, 0, 0.2, 1);
}
.header__menu-container {
  position: relative;
  height: 100%;
}
.header__menu-content {
  padding: 20px 0;
}
.header__menu-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  background: linear-gradient(0deg, #0a1430 0%, #0a1532 28%, #0b1b3a 45%, #0d2548 58%, #0f335c 70%, #124476 81%, #165a96 91%, #1b75bc 100%);
  z-index: -1;
}
.header__menu-list {
  display: flex;
  flex-flow: row wrap;
  gap: 6px;
  padding: 20px 0;
}
.header__menu-item {
  flex: 0 0 100%;
  overflow: hidden;
}
.header__menu-item-link {
  font: 400 30px/1.3 "GildaDisplay", serif;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 300ms ease-in-out;
}
.header__menu-item-link:hover {
  color: #cca478;
}
.header__menu-logo {
  position: absolute;
  top: 70vh;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header__menu-logo-img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #0a1430;
  border: 1px solid #cca478;
  border-radius: 100%;
  padding: 15px;
}
.header__close {
  position: relative;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 20px;
  cursor: pointer;
}
.header__close svg {
  display: block;
  width: 20px;
  height: 20px;
}
.header__close-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #cca478;
  border-radius: 100%;
  z-index: -1;
}
.header__images {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30vh;
  filter: brightness(0.8);
  z-index: -1;
}
.header__images-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.header__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header__img--menu {
  display: none;
}
.header.sticky {
  padding: 0;
}
.header.sticky .header__logo--dark .header__logo-img {
  transform: translateY(-100%);
}
.header.sticky .header__logo--small-dark .header__logo-img {
  transform: translateY(0);
}
.header.expended .header__menu {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .header__hamburger, .header__controls {
    width: 300px;
  }
  .header__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
  }
  .header__controls .btn {
    display: flex;
  }
  .header__logo--dark {
    display: block;
  }
  .header__logo--small-dark .header__logo-img {
    transform: translateY(100%);
  }
}
@media (min-width: 1024px) {
  @keyframes pointer-enable {
    0% {
      pointer-events: none;
      z-index: -999;
    }
    30% {
      pointer-events: none;
      z-index: -999;
    }
    100% {
      pointer-events: auto;
      z-index: 999;
    }
  }
  @keyframes pointer-disable {
    0% {
      pointer-events: auto;
      z-index: 999;
    }
    50% {
      pointer-events: auto;
      z-index: 999;
    }
    100% {
      pointer-events: none;
      z-index: -999;
    }
  }
  .header__hamburger-container {
    transform: translateX(-56px);
    transition: transform 300ms ease-in-out;
  }
  .header__hamburger-label {
    display: block;
  }
  .header__hamburger:hover .header__hamburger-container {
    transform: translateX(0);
  }
  .header__logo--dark {
    display: none;
  }
  .header__logo--small {
    width: 60px;
  }
  .header__logo--inline-dark {
    display: block;
    width: 300px;
  }
  .header__menu {
    background: transparent;
    transform: translate(0);
    pointer-events: none;
    z-index: -999;
  }
  .header__menu-gradient {
    height: 200vh;
    width: 100%;
    left: auto;
    right: 30%;
    transform: translate(-100%, -100%) rotate(45deg);
    transition: transform 1200ms cubic-bezier(0.5, 0.3, 0.2, 1);
  }
  .header__menu .container {
    height: 100%;
  }
  .header__menu-content {
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
  }
  .header__menu-list {
    flex: 1;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
  }
  .header__menu-item {
    flex: initial;
    overflow: hidden;
  }
  .header__menu-item-container {
    transform: translateY(100%);
    transition: transform 1s cubic-bezier(0.8, 0, 0.2, 1);
  }
  .header__menu-item-link {
    display: block;
    font-size: 52px;
  }
  .header__menu-logo {
    top: 50%;
    left: 70%;
    overflow: hidden;
  }
  .header__menu-logo-img {
    width: 170px;
    height: 170px;
    padding: 24px;
    transform: translateX(-101%);
    transition: transform 800ms cubic-bezier(0.8, 0, 0.2, 1);
  }
  .header__close {
    opacity: 0;
    padding: 40px;
    transition: opacity 1s cubic-bezier(0.8, 0, 0.2, 1);
  }
  .header__close-border {
    transition: transform 300ms ease-in-out;
  }
  .header__close:hover .header__close-border {
    transform: scale(0.6);
  }
  .header__images {
    left: auto;
    right: 0;
    height: 100vh;
    width: 30%;
    transform: translateX(100%);
    transition: transform 1s cubic-bezier(0.8, 0, 0.2, 1);
  }
  .header__img--menu {
    display: block;
    z-index: 1;
    transform: translateY(100%);
    transition: transform 1s cubic-bezier(0.8, 0, 0.2, 1);
  }
  .header__img--menu.active {
    z-index: 2;
    transform: translate(0);
  }
  .header.sticky .header__logo--inline-dark .header__logo-img {
    transform: translateY(-100%);
  }
  .header.expended .header__menu {
    animation: pointer-enable 1500ms forwards;
  }
  .header.expended .header__menu-gradient {
    transform: translateX(0) rotate(0);
  }
  .header.expended .header__menu-item-container {
    transition-delay: 1500ms;
    transform: translateY(0);
  }
  .header.expended .header__menu-logo-img {
    transition-delay: 1500ms;
    transform: translate(0);
  }
  .header.expended .header__close {
    transition-delay: 1500ms;
    opacity: 1;
  }
  .header.expended .header__images {
    transition-delay: 1500ms;
    transform: translate(0);
  }
  .header.closed .header__menu {
    animation: pointer-disable 1500ms forwards;
  }
  .header.closed .header__closed {
    opacity: 0;
  }
}
.footer {
  background: linear-gradient(0deg, #0a1430 0%, #0a1532 28%, #0b1b3a 45%, #0d2548 58%, #0f335c 70%, #124476 81%, #165a96 91%, #1b75bc 100%);
  margin-top: 80px;
}
.footer__container {
  max-width: 420px;
  padding: 50px 0 30px;
  margin: 0 auto;
}
.footer__logo {
  display: block;
  margin-bottom: 30px;
}
.footer__logo-media {
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
}
.footer .menu {
  list-style: none;
  border-top: 1px solid #cca478;
  border-bottom: 1px solid #cca478;
  padding: 30px 0;
  margin: 30px 0;
}
.footer .menu-item {
  text-align: center;
}
.footer .menu-item a {
  display: inline-block;
  font: 400 14px/1.3 "DMSans", sans-serif;
  color: #ffffff;
  text-decoration: none;
  transition: color 300ms ease-in-out;
  padding: 6px 0;
}
.footer .menu-item a:hover {
  color: #cca478;
}
.footer__quote {
  font: 400 14px/1.1 "DMSans", sans-serif;
  color: #ffffff;
  text-align: center;
  border-top: 1px solid #cca478;
  border-bottom: 1px solid #cca478;
  padding: 30px 0;
  margin: 30px 0;
}
.footer__socials {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer__social {
  transition: filter 300ms ease-in-out;
}
.footer__social-icon {
  width: 50px;
  height: auto;
}
.footer__social:hover {
  filter: brightness(2);
}
.footer__menu {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin-top: 50px;
}
.footer__copyright {
  font: 400 10px/1.5 "DMSans", sans-serif;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 50px;
}
.footer__copyright a {
  color: inherit;
}

.privacy-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, #0a1430 0%, #0a1532 28%, #0b1b3a 45%, #0d2548 58%, #0f335c 70%, #124476 81%, #165a96 91%, #1b75bc 100%);
  color: #ffffff;
  transition: transform 300ms ease-in-out;
  z-index: 999;
}
.privacy-banner__container {
  padding: 24px 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
.privacy-banner p {
  font: 400 16px/1.2 "DMSans", sans-serif;
  margin: 0;
}
.privacy-banner a {
  color: inherit;
  font-weight: 700;
}
.privacy-banner__close {
  background: transparent;
  padding: 0;
  outline: 0;
  border: 0;
  margin-top: 2px;
  cursor: pointer;
}
.privacy-banner__close-icon {
  display: block;
  width: 16px;
  height: auto;
}
.privacy-banner.close {
  transform: translateY(100%);
}

html {
  color: #0a1430;
}

.iti {
  width: 100%;
}
.iti input {
  padding-left: 0 !important;
}

.iti--inline-dropdown .iti__dropdown-content {
  color: #000;
  z-index: 999;
}

#iti-0__search-input::-moz-placeholder {
  font: 400 16px/1.5 "DMSans", sans-serif;
}

#iti-0__search-input::placeholder {
  font: 400 16px/1.5 "DMSans", sans-serif;
}

#iti-0__search-input {
  padding-left: 30px !important;
  font: 400 16px/1.5 "DMSans", sans-serif;
  padding-top: 10px;
  padding-bottom: 10px;
}

.iti--fullscreen-popup.iti--container {
  align-items: center;
  justify-content: center;
}

.iti--fullscreen-popup .iti__dropdown-content {
  max-height: 80vh;
}

.iti__search-clear {
  padding: 0 !important;
}

.iti__country-name {
  font: 400 14px/1.5 "DMSans", sans-serif;
}

.iti__search-clear-svg {
  width: 100%;
  height: 100%;
}

.iti__selected-dial-code {
  font: 400 12px/1.5 "DMSans", sans-serif;
}

.contact__form-checkbox:has(#tPrivacy) span a {
  color: #000000;
}

.touch {
  display: none;
}

.footer {
  margin: 0;
}

.thank {
  position: relative;
  color: #ffffff;
  text-align: center;
  padding: 150px 0 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thank__img, .thank__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.thank__img {
  z-index: -2;
}
.thank__overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7) 100%);
  z-index: -1;
}
.thank__container {
  display: grid;
  gap: 48px;
}
.thank__heading {
  display: grid;
  gap: 12px;
  max-width: 850px;
  margin: 0 auto;
}
.thank__title {
  color: #cca478;
  text-transform: uppercase;
}
.thank__subtitle p {
  font: 400 21px/1.15 "GildaDisplay", serif;
}
.thank__content {
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 750px;
  border: 1px solid #cca478;
  border-radius: 12px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  padding: 36px 24px;
  margin: 0 auto;
}
.thank__content-inner {
  display: grid;
  gap: 24px;
  max-width: 450px;
  margin: 0 auto;
}
.thank__separator {
  display: block;
  width: 100px;
  height: 1px;
  background: #cca478;
  margin: 0 auto;
}
.thank .btn {
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .thank {
    padding: 200px 0 150px;
  }
  .thank__container {
    gap: 80px;
  }
  .thank__subtitle p {
    font-size: 32px;
  }
  .thank__content {
    padding: 100px;
  }
  .thank__content-inner {
    gap: 32px;
  }
}
