@font-face {
  font-family: BebasNeueBold;
  font-display: swap;
  src: url("/bangkok-2024/fonts/BebasNeueBold.woff2") format("woff2"), url("/bangkok-2024/fonts/BebasNeueBold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: BebasNeueBook;
  font-display: swap;
  src: url("/bangkok-2024/fonts/BebasNeueBook.woff2") format("woff2"), url("/bangkok-2024/fonts/BebasNeueBook.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: BebasNeueRegular;
  font-display: swap;
  src: url("/bangkok-2024/fonts/BebasNeueRegular.woff2") format("woff2"), url("/bangkok-2024/fonts/BebasNeueRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: BebasNeueThin;
  font-display: swap;
  src: url("/bangkok-2024/fonts/BebasNeueThin.woff2") format("woff2"), url("/bangkok-2024/fonts/BebasNeueThin.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: BebasNeueLight;
  font-display: swap;
  src: url("/bangkok-2024/fonts/BebasNeueLight.woff2") format("woff2"), url("/bangkok-2024/fonts/BebasNeueLight.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Tungsten;
  font-display: swap;
  src: url("/bangkok-2024/fonts/Tungsten-Semibold.woff2") format("woff2"), url("/bangkok-2024/fonts/Tungsten-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Tungsten;
  font-display: swap;
  src: url("/bangkok-2024/fonts/Tungsten-Medium.woff2") format("woff2"), url("/bangkok-2024/fonts/Tungsten-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

.formbold-main-wrapper {
  font-family: "Roboto", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px;
}

.formbold-main-wrapper * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.formbold-form-wrapper {
  margin: 0 auto;
  width: 100%;
  background: white;
  color: #07074D;
}

.formbold-form-wrapper h3 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 10px;
}

.formbold-form-wrapper h5 {
  font-size: 21px;
  text-align: center;
  margin-bottom: 30px;
}

.formbold-form-wrapper p {
  font-size: 18px;
  margin-bottom: 30px;
}

.formbold-input-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.formbold-input-flex > div {
  width: 50%;
}

.formbold-input-radio-wrapper {
  margin-bottom: 28px;
}

.formbold-radio-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.formbold-radio-label {
  font-size: 14px;
  line-height: 24px;
  color: #07074D;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.formbold-input-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.formbold-radio-checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #FFFFFF;
  border: 1px solid #DDE3EC;
  border-radius: 50%;
}

.formbold-radio-label .formbold-input-radio:checked ~ .formbold-radio-checkmark {
  background-color: #eb6431;
}

.formbold-radio-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.formbold-radio-label .formbold-input-radio:checked ~ .formbold-radio-checkmark:after {
  display: block;
}

.formbold-radio-label .formbold-radio-checkmark:after {
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFFFFF;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.formbold-form-input {
  width: 100%;
  padding: 13px 22px;
  border-radius: 5px;
  border: 1px solid #DDE3EC;
  background: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  color: #07074D;
  outline: none;
  resize: none;
}

.formbold-form-input::-webkit-input-placeholder {
  color: #536387;
}

.formbold-form-input::-moz-placeholder {
  color: #536387;
}

.formbold-form-input:-ms-input-placeholder {
  color: #536387;
}

.formbold-form-input::-ms-input-placeholder {
  color: #536387;
}

.formbold-form-input::placeholder {
  color: #536387;
}

.formbold-form-input:focus {
  border-color: #eb6431;
  -webkit-box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold-form-label {
  color: #07074D;
  font-size: 14px;
  line-height: 24px;
  display: block;
  margin-bottom: 10px;
}

.formbold-btn {
  text-align: center;
  width: 100%;
  font-size: 16px;
  border-radius: 5px;
  padding: 14px 25px;
  border: none;
  font-weight: 500;
  background-color: #eb6431;
  color: white;
  cursor: pointer;
  margin-top: 25px;
}

.formbold-btn:hover {
  -webkit-box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold-mb-3 {
  margin-bottom: 15px;
}

.formbold-relative {
  position: relative;
}

.formbold-opacity-0 {
  opacity: 0;
}

.formbold-stroke-current {
  stroke: #ffffff;
  z-index: 999;
}

input:checked ~ div span {
  opacity: 1;
}

input:checked ~ div {
  background: #eb6431;
  border-color: #eb6431;
}

.formbold-img {
  display: block;
  margin: 0 auto 45px;
}

.formbold-input-wrapp > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.formbold-form-input::-webkit-input-placeholder {
  color: rgba(83, 99, 135, 0.5);
}

.formbold-form-input::placeholder,
select.formbold-form-input,
.formbold-form-input[type=date]::-webkit-datetime-edit-text,
.formbold-form-input[type=date]::-webkit-datetime-edit-month-field,
.formbold-form-input[type=date]::-webkit-datetime-edit-day-field,
.formbold-form-input[type=date]::-webkit-datetime-edit-year-field {
  color: rgba(83, 99, 135, 0.5);
}

.formbold-form-input:focus {
  border-color: #eb6431;
  -webkit-box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold-checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 16px;
  line-height: 24px;
  color: #536387;
}

.formbold-checkbox-label a {
  margin-left: 5px;
  color: #eb6431;
}

.formbold-input-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.formbold-checkbox-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 16px;
  margin-top: 2px;
  border: 0.7px solid #dde3ec;
  border-radius: 3px;
}

.formbold-form-file {
  padding: 12px;
  font-size: 14px;
  line-height: 24px;
  color: rgba(83, 99, 135, 0.5);
}

.formbold-form-file::-webkit-file-upload-button {
  display: none;
}

.formbold-form-file:before {
  content: "Upload";
  display: inline-block;
  background: #EEEEEE;
  border: 0.5px solid #E7E7E7;
  border-radius: 3px;
  padding: 3px 12px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  color: #637381;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  margin-right: 10px;
}

.formbold-w-45 {
  width: 45%;
}

.checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.formbold-checkbox-wrapper {
  margin-right: 40px;
}

.response .error {
  display: none;
  color: red;
}

.response .error a {
  color: red;
}

.response .success {
  display: none;
  color: lightseagreen;
}

/*! 
https://serp.co/tools/css-reset/
<link rel="stylesheet" href="https://css.serp.co/css-reset/normalize.css/">
*/

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  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;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 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;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 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;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * 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;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * 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;
}

/* 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;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  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 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 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] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 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;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * 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;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* 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;
}

:root {
  --font-tung: "Tungsten", serif;
  --orange: #eb6431;
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  background-color: #000;
}

body .container {
  margin: 0 auto;
  width: 100%;
  position: relative;
  overflow: hidden;
}

nav {
  min-height: 90px;
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: 1;
}

nav .wrapper {
  background-color: #fff;
  border-radius: 0 0 63px 63px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

nav .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 90px;
}

nav .logo img {
  margin: 0 19px 0 0;
  height: 60px;
}

nav .logo span {
  font-family: "Roboto", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 21px;
}

nav ul {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
  text-decoration: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  text-wrap: nowrap;
  font-size: 30px;
  text-transform: uppercase;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-family: "Tungsten", serif;
  font-weight: bold;
}

nav .seats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

nav .seats img {
  margin-right: 10px;
}

nav .seats span {
  font-size: 23px;
  font-family: "Roboto", serif;
  font-weight: bold;
}

nav .access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 90px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-preferred-size: 200px;
      flex-basis: 200px;
}

nav .access a {
  text-decoration: none;
  text-wrap: nowrap;
  background-color: var(--orange);
  color: #fff;
  font-size: 28px;
  font-family: "Tungsten", serif;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 24px;
  display: block;
  width: 100%;
  padding: 8px 0;
  text-align: center;
}

.bg-1 {
  aspect-ratio: 1641/830;
  width: 100%;
  background: transparent url("/bangkok-2024/img/bangkok/bg-1.png") no-repeat top left;
  background-size: cover;
  display: inline-block;
  position: relative;
  min-height: 400px;
  background-position-x: 85%;
}

.bg-1 .access {
  position: fixed;
  z-index: 99999;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 37px;
  right: -20px;
  top: 65%;
  padding: 10px 30px;
  border: 4px solid rgb(235, 100, 50);
  -webkit-box-shadow: 0 19px 68px 0 rgba(0, 0, 0, 0.44);
          box-shadow: 0 19px 68px 0 rgba(0, 0, 0, 0.44);
}

.bg-1 .access a {
  font-family: "Tungsten", serif;
  font-weight: bold;
  text-decoration: none;
  font-size: 37px;
  color: #000;
}

.slider {
  margin: -30px 0;
  position: relative;
  z-index: 1;
  background-image: -webkit-linear-gradient(-178deg, rgb(0, 0, 0) 0%, rgb(235, 100, 49) 100%);
  width: 100%;
}

.slider .slide_wrapper {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider .slide_wrapper span {
  font-family: "Tungsten", serif;
  font-weight: bold;
  font-size: 33px;
  color: #fff;
  display: inline-block;
  padding: 10px 0;
  white-space: nowrap;
  -webkit-animation: marquee 5s linear infinite;
          animation: marquee 5s linear infinite;
  max-width: none;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
}

.bg-2 {
  aspect-ratio: 1641/688;
  width: 100%;
  background: transparent url("/bangkok-2024/img/bangkok/bg-2.jpg") no-repeat top left;
  background-size: cover;
  display: inline-block;
  position: relative;
}

.bg-2 .text-wrapper {
  margin: 0 auto;
  padding-right: 300px;
  width: 756px;
}

.bg-2 .text-wrapper h1 {
  text-transform: uppercase;
  font-size: 140px;
  line-height: 110px;
  font-family: "Tungsten", serif;
  font-weight: bold;
  color: #fff;
  margin: 0.97em 0 0;
}

.bg-2 .text-wrapper h1 span {
  color: var(--orange);
}

.bg-2 .text-wrapper p {
  color: #fff;
  font-family: "Roboto", serif;
  font-size: 24px;
  line-height: 33px;
  margin: 36px 0;
}

.bg-3 {
  aspect-ratio: 1641/1130;
  width: 100%;
  background: transparent url("/bangkok-2024/img/bangkok/bg-3.jpg") no-repeat top left;
  background-position-y: 220px;
  background-size: contain;
  display: inline-block;
  position: relative;
}

.bg-3 .banner-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: var(--orange);
  width: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.bg-3 .banner-wrapper div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bg-3 .banner-wrapper div i {
  height: 42px !important;
}

.bg-3 .banner-wrapper div > span {
  text-transform: uppercase;
  color: #fff;
  font-family: "Tungsten", serif;
  font-weight: bold;
  font-size: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 35px 0;
}

.bg-3 .banner-wrapper div > span i {
  display: block;
  margin-right: 10px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.bg-3 .banner-wrapper .date span {
  white-space: nowrap;
}

.bg-3 .banner-wrapper .date i {
  background: url("/bangkok-2024/img/bangkok/icon-date.png") no-repeat top left;
  width: 42px;
  -ms-flex-preferred-size: 42px;
      flex-basis: 42px;
  height: 40px;
}

.bg-3 .banner-wrapper .time span {
  white-space: nowrap;
}

.bg-3 .banner-wrapper .time i {
  background: url("/bangkok-2024/img/bangkok/icon-time.png") no-repeat top left;
  width: 43px;
  -ms-flex-preferred-size: 43px;
      flex-basis: 43px;
  height: 42px;
}

.bg-3 .banner-wrapper .location i {
  background: url("/bangkok-2024/img/bangkok/icon-location.png") no-repeat top left;
  width: 30px;
  -ms-flex-preferred-size: 30px;
      flex-basis: 30px;
  height: 40px;
}

.bg-3 .banner-wrapper .location a {
  color: #fff;
}

.bg-3 video {
  height: auto;
  width: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

.bg-3 h1 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-family: "Tungsten", serif;
  font-weight: bold;
  font-size: 138px;
  line-height: 120px;
  margin: 225px 0 75px;
}

.bg-3 h1 span {
  color: var(--orange);
}

.bg-3 .images-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1067px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 35px;
  padding-bottom: 50px;
}

.bg-3 .images-wrapper div {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  aspect-ratio: 1/1;
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  border: 2px solid var(--orange);
}

.bg-3 .images-wrapper div:first-child:after {
  content: "";
  display: block;
  position: absolute;
  background: transparent url("/bangkok-2024/img/bangkok/sponsor.png") no-repeat top left;
  width: 192px;
  height: 151px;
  top: -45px;
  left: -35px;
}

.bg-3 .images-wrapper div img {
  max-width: 90%;
}

.bg-4 {
  aspect-ratio: 1641/1130;
  width: 100%;
  background: transparent url("/bangkok-2024/img/bangkok/bg-4.jpg") no-repeat top left;
  background-size: cover;
  display: inline-block;
  position: relative;
  padding-bottom: 150px;
}

.bg-4 h1 {
  color: #000;
  text-align: center;
  text-transform: uppercase;
  font-family: "Tungsten", serif;
  font-weight: bold;
  font-size: 138px;
  line-height: 120px;
  margin: 130px 0 120px;
}

.bg-4 h1 span {
  color: var(--orange);
}

.bg-4 .images-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1067px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}

.bg-4 .images-wrapper .event {
  z-index: 1;
  aspect-ratio: 1/1;
  position: relative;
}

.bg-4 .images-wrapper .event img {
  display: block;
  width: 100%;
}

.bg-4 .images-wrapper .event span {
  position: absolute;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-family: "Tungsten", serif;
  font-size: 30px;
  z-index: 1;
  bottom: 10px;
  left: 0;
  width: 100%;
}

.bg-4 .images-wrapper .event:nth-child(3) {
  z-index: 2;
}

.bg-4 .images-wrapper .event:nth-child(3):after {
  content: "";
  display: block;
  position: absolute;
  background: transparent url("/bangkok-2024/img/bangkok/expect-over.png") no-repeat top left;
  width: 236px;
  height: 226px;
  top: -110px;
  right: -120px;
  z-index: 1;
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-duration: 15000ms;
          animation-duration: 15000ms;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.bg-4 .images-wrapper .event:nth-child(3):before {
  content: "";
  display: block;
  position: absolute;
  background: transparent url("/bangkok-2024/img/bangkok/expect-in.png") no-repeat top left;
  width: 236px;
  height: 226px;
  top: -110px;
  right: -120px;
  z-index: 1;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.bg-5 {
  aspect-ratio: 1641/828;
  width: 100%;
  background: #000 url("/bangkok-2024/img/bangkok/bg-5.jpg") no-repeat top left;
  background-size: cover;
  display: inline-block;
  position: relative;
}

.bg-5 .text-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1067px;
  text-align: center;
}

.bg-5 .text-wrapper h1 {
  text-transform: uppercase;
  font-size: 140px;
  line-height: 120px;
  font-family: "Tungsten", serif;
  font-weight: bold;
  color: #fff;
  margin: 0.97em 0 0;
}

.bg-5 .text-wrapper h1 span {
  color: var(--orange);
}

.bg-5 .text-wrapper p {
  color: #fff;
  font-family: "Roboto", serif;
  font-size: 26px;
  line-height: 30px;
  margin: 50px 0 70px;
}

.bg-5 .text-wrapper div {
  padding-bottom: 200px;
}

.bg-5 .text-wrapper div a {
  text-decoration: none;
  background-color: var(--orange);
  color: #fff;
  font-size: 42px;
  font-family: "Tungsten", serif;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 35px;
  padding: 17px 113px;
  text-align: center;
}

.bg-5-2 {
  width: 100%;
  background: #000;
  background-size: cover;
  display: inline-block;
  position: relative;
}

.bg-5-2 .text-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1067px;
  text-align: center;
}

.bg-5-2 .text-wrapper h1 {
  text-transform: uppercase;
  font-size: 140px;
  line-height: 120px;
  font-family: "Tungsten", serif;
  font-weight: bold;
  color: #fff;
  margin: 14px 0;
}

.bg-5-2 .text-wrapper h1 span {
  color: var(--orange);
}

.bg-5-2 .text-wrapper p {
  color: #fff;
  font-family: "Roboto", serif;
  font-size: 21px;
  text-align: left;
  margin-bottom: 20px;
}

.bg-5-2 .text-wrapper p.first {
  color: #fff;
  text-align: center;
  font-family: "Roboto", serif;
  font-size: 36px;
  line-height: 30px;
  margin: 50px 0 70px;
}

.bg-5-2 .img-slider-wrapper {
  padding-top: 40px;
}

.bg-5-2 .img-slider-wrapper .img-slider {
  overflow: hidden;
  height: 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.bg-5-2 .img-slider-wrapper .img-slider .element {
  background-color: transparent;
  aspect-ratio: 1/1;
  display: block;
  height: 100%;
  margin: 0 10px;
}

.bg-6 {
  aspect-ratio: 1641/672;
  width: 100%;
  background: transparent url("/bangkok-2024/img/bangkok/bg-6.jpg") no-repeat top left;
  background-size: contain;
  display: inline-block;
  position: relative;
  padding-bottom: 150px;
}

.bg-6 .text-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1067px;
  text-align: center;
}

.bg-6 .text-wrapper h1 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-family: "Tungsten", serif;
  font-weight: bold;
  font-size: 138px;
  line-height: 120px;
  margin: 305px 0 60px;
}

.bg-6 .text-wrapper h1 span {
  color: var(--orange);
}

.bg-6 .text-wrapper .why-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1067px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 35px;
}

.bg-6 .text-wrapper .why-wrapper > div {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  border: 1px solid var(--orange);
  border-radius: 24px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 15px;
}

.bg-6 .text-wrapper .why-wrapper > div img {
  display: block;
}

.bg-6 .text-wrapper .why-wrapper > div h5 {
  text-transform: uppercase;
  font-size: 39px;
  line-height: 36px;
  font-family: "Tungsten", serif;
  font-weight: bold;
  color: var(--orange);
  margin: 30px 0 15px;
}

.bg-6 .text-wrapper .why-wrapper > div p {
  color: #fff;
  font-size: 21px;
  line-height: 24px;
  font-family: "Roboto", serif;
}

.bg-7 {
  aspect-ratio: 1641/791;
  width: 100%;
  background: transparent url("/bangkok-2024/img/bangkok/bg-7.jpg") no-repeat top left;
  background-size: cover;
  display: inline-block;
  position: relative;
}

.bg-7 .image {
  display: none;
  width: 100%;
}

.bg-7 .image img {
  width: 100%;
}

.bg-7 .text-wrapper {
  margin: 0 auto;
  padding-right: min(530px, 50%);
  width: min(530px, 50%);
}

.bg-7 .text-wrapper h1 {
  text-transform: uppercase;
  font-size: 140px;
  line-height: 120px;
  font-family: "Tungsten", serif;
  font-weight: bold;
  color: #fff;
  margin: 55px 0 0;
}

.bg-7 .text-wrapper h1 span {
  color: var(--orange);
}

.bg-7 .text-wrapper p {
  color: #fff;
  font-family: "Roboto", serif;
  font-size: 24px;
  line-height: 33px;
  margin: 36px 0;
}

.bg-8 {
  aspect-ratio: 1641/1089;
  width: 100%;
  background: transparent url("/bangkok-2024/img/bangkok/bg-8.jpg") no-repeat top left;
  background-size: cover;
  display: inline-block;
  position: relative;
  margin-top: -30px;
}

.bg-8 .text-wrapper {
  margin: 0 auto;
  padding-left: min(530px, 50%);
  width: min(530px, 50%);
}

.bg-8 .text-wrapper h1 {
  text-transform: uppercase;
  font-size: 60px;
  line-height: 1;
  font-family: "Tungsten", serif;
  font-weight: bold;
  color: #fff;
  margin: 165px 0 0;
}

.bg-8 .text-wrapper h1 span {
  color: var(--orange);
}

.bg-8 .text-wrapper p {
  display: block;
  color: #fff;
  font-family: "Roboto", serif;
  font-size: 40px;
  line-height: 45px;
  padding: 36px 0;
}

.bg-8 .text-wrapper p:nth-child(3) {
  border: 2px solid var(--orange);
  border-left: none;
  border-right: none;
}

.bg-8 .text-wrapper p span {
  color: var(--orange);
}

.bg-8 .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 145px 0 50px;
}

.bg-8 .link a {
  text-decoration: none;
  background-color: var(--orange);
  color: #fff;
  font-size: 42px;
  font-family: "Tungsten", serif;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 35px;
  padding: 17px 113px;
  text-align: center;
}

.bg-8-2 {
  width: 100%;
  background: var(--orange);
  display: inline-block;
  position: relative;
}

.bg-8-2 .text-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1061px;
  text-align: center;
}

.bg-8-2 .text-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  background: transparent url("/bangkok-2024/img/bangkok/plain.png") no-repeat top left;
  width: 292px;
  height: 268px;
  top: -18px;
  right: 175px;
}

.bg-8-2 .text-wrapper h1 {
  text-transform: uppercase;
  font-size: 77px;
  line-height: 1;
  font-family: "Tungsten", serif;
  font-weight: bold;
  color: #fff;
  margin: 130px 0 55px;
}

.bg-8-2 .text-wrapper .text-align {
  margin: 0 auto;
  width: 90%;
}

.bg-8-2 .text-wrapper .text-align p {
  color: #fff;
  font-family: "Roboto", serif;
  font-size: 26px;
  line-height: 36px;
  margin: 0;
}

.bg-8-2 .text-wrapper .link {
  margin: 100px 0;
}

.bg-8-2 .text-wrapper .link a {
  text-decoration: none;
  background-color: var(--orange);
  font-size: 46px;
  font-family: "Tungsten", serif;
  font-weight: bold;
  text-transform: uppercase;
  padding: 15px 130px;
  text-align: center;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 45px;
}

.bg-9 {
  aspect-ratio: 1641/822;
  width: 100%;
  background: transparent url("/bangkok-2024/img/bangkok/bg-9.jpg") no-repeat top left;
  background-size: cover;
  display: inline-block;
  position: relative;
}

.bg-9 .text-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1061px;
}

.bg-9 .text-wrapper h1 {
  text-transform: uppercase;
  text-align: center;
  font-size: 77px;
  line-height: 71px;
  font-family: "Tungsten", serif;
  font-weight: bold;
  color: #fff;
  margin: 100px 0 88px;
}

.bg-9 .text-wrapper h1 span {
  color: var(--orange);
}

.bg-9 .text-wrapper .questions {
  margin: 0 20px;
}

.bg-9 .text-wrapper .questions .acordions > div {
  position: relative;
  color: #fff;
  background-color: var(--orange);
  padding: 1px 60px 1px 25px;
  margin-bottom: 65px;
}

.bg-9 .text-wrapper .questions .acordions > div:after {
  content: "";
  display: block;
  position: absolute;
  background: transparent url("/bangkok-2024/img/bangkok/icon-opened.png") no-repeat top left;
  width: 34px;
  height: 34px;
  top: 24px;
  right: 25px;
}

.bg-9 .text-wrapper .questions .acordions > div.closed:after {
  background: transparent url("/bangkok-2024/img/bangkok/icon-closed.png") no-repeat top left;
}

.bg-9 .text-wrapper .questions .acordions > div h3 {
  color: #fff;
  font-family: "Roboto", serif;
  font-weight: bold;
  font-size: 31px;
  line-height: 31px;
  margin: 23px 0;
}

.bg-9 .text-wrapper .questions .acordions > div > div {
  overflow: hidden;
  color: #fff;
  font-family: "Roboto", serif;
  font-size: 31px;
  margin: 35px 0;
}

.bg-9 .text-wrapper .questions .acordions > div > div p {
  margin: 0;
}

.bg-10 {
  border-top: 8px solid var(--orange);
  aspect-ratio: 1641/676;
  width: 100%;
  background: #000 url("/bangkok-2024/img/bangkok/bg-10.jpg") no-repeat top left;
  background-size: contain;
  display: inline-block;
  position: relative;
}

.bg-10 .text-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1067px;
  text-align: center;
}

.bg-10 .text-wrapper h1 {
  text-transform: uppercase;
  font-size: 140px;
  line-height: 120px;
  font-family: "Tungsten", serif;
  font-weight: bold;
  color: #fff;
  margin: 0.97em 0 0;
}

.bg-10 .text-wrapper h1 span {
  color: var(--orange);
}

.bg-10 .text-wrapper p {
  color: #fff;
  font-family: "Roboto", serif;
  font-size: 26px;
  line-height: 30px;
  margin: 50px 0 70px;
}

.bg-10 .text-wrapper div {
  padding-bottom: 140px;
}

.bg-10 .text-wrapper div a {
  text-decoration: none;
  background-color: var(--orange);
  color: #fff;
  font-size: 42px;
  font-family: "Tungsten", serif;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 35px;
  padding: 17px 113px;
  text-align: center;
}

.bg-10-2 {
  padding-top: 60px;
  overflow: hidden;
  position: relative;
}

.bg-10-2 .title-wrap {
  width: 100%;
  margin-left: calc(50% - 530.5px);
  background-color: var(--orange);
}

.bg-10-2 .title-wrap .title {
  text-transform: uppercase;
  color: #000;
  font-family: "Tungsten", serif;
  font-weight: bold;
  font-size: 39px;
  text-indent: 14px;
  padding: 6px 0;
}

.bg-10-2 .list {
  margin: 30px auto 100px;
  width: 100%;
  max-width: 1061px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

.bg-10-2 .media:after {
  content: "";
  display: block;
  position: absolute;
  background: transparent url("/bangkok-2024/img/bangkok/code.png") no-repeat top left;
  width: 292px;
  height: 268px;
  top: 0;
  right: 0;
}

.bg-10-2 .media .list {
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bg-10-2 .media .list div img {
  width: 100%;
  max-height: 100px;
}

.bg-10-2 .contact {
  padding-bottom: 100px;
}

.bg-10-2 .contact .list.list2 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.bg-10-2 .contact .list.list2 p {
  color: #fff;
  font-size: 24px;
  font-family: "Roboto", serif;
  margin: 0;
}

.bg-10-2 .contact .list.list2 p a {
  color: #fff;
}

.bg-10-2 .contact .list {
  margin-bottom: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.slick-arrow {
  z-index: 999;
}

.slick-arrow.slick-next {
  right: 25px;
}

.slick-arrow.slick-prev {
  left: 25px;
}

.modal {
  max-width: 800px;
}

.modal .thank-you > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal .thank-you > div img {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  padding: 30px;
}

.modal .thank-you > div > div {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}

.modal .thank-you > div > div h1,
.modal .thank-you > div > div p {
  text-align: left;
}

.modal a.close-modal {
  border: 1px solid white;
  border-radius: 50%;
}

.blocker {
  z-index: 999;
}

@media screen and (max-width: 1440px) {
  .bg-2 {
    background-size: contain;
  }

  .bg-3 .images-wrapper {
    padding-bottom: 100px;
  }

  .bg-8 {
    margin-top: -10px;
    background-size: contain;
  }

  .bg-8-2 .text-wrapper:after {
    scale: 0.5;
    top: -90px;
  }
}

@media screen and (max-width: 1250px) {
  nav .logo {
    margin-left: 30px;
  }

  nav .logo span {
    display: none;
  }

  .bg-1 .access a {
    font-size: 28px;
  }

  .bg-2 .text-wrapper {
    width: 60%;
    padding: 0 35% 0 5%;
  }

  .bg-2 .text-wrapper h1 {
    font-size: 110px;
    line-height: 1;
  }

  .bg-2 .text-wrapper p {
    font-size: 21px;
  }

  .bg-3 .banner-wrapper {
    width: 100%;
  }

  .bg-3 h1 {
    font-size: 110px;
    line-height: 1;
  }

  .bg-5 .text-wrapper h1 {
    font-size: 110px;
    line-height: 1;
  }

  .bg-5-2 .text-wrapper h1 {
    font-size: 110px;
    line-height: 1;
  }

  .bg-5-2 .text-wrapper p.first {
    font-size: 28px;
  }

  .bg-6 .text-wrapper h1 {
    font-size: 110px;
    line-height: 1;
  }

  .bg-7 .text-wrapper h1 {
    font-size: 110px;
    line-height: 1;
  }

  .bg-8 .text-wrapper h1 {
    margin-top: 100px;
  }

  .bg-8 .text-wrapper p {
    padding: 24px 0;
    margin: 0;
  }

  .bg-8 .link a {
    font-size: 28px;
  }

  .bg-8-2 .text-wrapper .text-align p {
    font-size: 21px;
  }

  .bg-8-2 .text-wrapper .link a {
    font-size: 28px;
  }

  .bg-10 .text-wrapper h1 {
    font-size: 110px;
    line-height: 1;
  }

  .bg-10 .text-wrapper p {
    font-size: 21px;
  }

  .bg-10 .text-wrapper div a {
    font-size: 28px;
  }

  .bg-10-2 .media:after {
    bottom: 150px;
    top: auto;
  }
}

@media screen and (max-width: 1107px) {
  .bg-3 .banner-wrapper {
    background-color: transparent;
  }

  .bg-3 .banner-wrapper div {
    background-color: var(--orange);
    width: 50%;
  }

  .bg-3 .banner-wrapper div > span {
    padding: 17px 0;
  }

  .bg-3 .banner-wrapper .location {
    margin-top: 30px;
    width: 100%;
  }
}

@media screen and (max-width: 1100px) {
  .bg-3 .banner-wrapper {
    height: auto;
  }
}

@media screen and (max-width: 1076px) {
  .bg-10-2 {
    padding-top: 30px;
  }

  .bg-10-2 .title-wrap {
    margin-left: 0;
  }

  .bg-10-2 .list {
    margin: 30px 10px 100px;
  }
}

@media screen and (max-width: 1024px) {
  nav ul li {
    font-size: 21px;
    line-height: 1;
  }

  nav .seats span {
    font-size: 18px;
  }

  nav .access {
    -ms-flex-preferred-size: 150px;
        flex-basis: 150px;
  }

  nav .access a {
    font-size: 21px;
  }

  .bg-1 .access a {
    font-size: 24px;
  }

  .bg-1 .access {
    padding: 5px 15px;
  }

  .bg-2 .text-wrapper h1 {
    font-size: 80px;
  }

  .bg-2 .text-wrapper p {
    font-size: 18px;
  }

  .bg-3 {
    background-size: auto;
  }

  .bg-3 h1 {
    font-size: 80px;
    margin: 120px 0 70px;
    color: var(--orange);
  }

  .bg-3 .images-wrapper div:first-child:after {
    scale: 0.6;
    left: -56px;
  }

  .bg-4 h1 {
    font-size: 110px;
    line-height: 1;
  }

  .bg-4 h1 span {
    color: #000;
  }

  .bg-5 .text-wrapper h1 {
    font-size: 80px;
    margin: 120px 0 70px;
  }

  .bg-5-2 .text-wrapper h1 {
    font-size: 80px;
    margin: 120px 0 70px;
  }

  .bg-5-2 .text-wrapper p {
    margin: 0 20px 20px;
  }

  .bg-5-2 .text-wrapper p.first {
    font-size: 24px;
    margin: 30px 0 35px;
  }

  .bg-6 .text-wrapper h1 {
    font-size: 80px;
    margin: 120px 0 70px;
  }

  .bg-6 .text-wrapper .why-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .bg-6 .text-wrapper .why-wrapper > div {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }

  .bg-7 .text-wrapper {
    padding-bottom: 100px;
    padding-right: 30%;
    width: 70%;
  }

  .bg-7 .text-wrapper h1 {
    font-size: 80px;
  }

  .bg-8 .text-wrapper {
    padding-bottom: 100px;
    padding-left: 30%;
    width: 70%;
  }

  .bg-8 .text-wrapper h1 {
    margin-top: 50px;
  }

  .bg-8 .link a {
    font-size: 24px;
  }

  .bg-8 .link {
    margin-top: 40px;
  }

  .bg-8-2 .text-wrapper .text-align p {
    font-size: 18px;
  }

  .bg-8-2 .text-wrapper .link a {
    font-size: 24px;
  }

  .bg-8-2 .text-wrapper .link {
    margin-top: 40px;
  }

  .bg-10 .text-wrapper h1 {
    font-size: 80px;
  }

  .bg-10 .text-wrapper p {
    font-size: 18px;
  }

  .bg-10 .text-wrapper div a {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  nav {
    min-height: 60px;
  }

  nav .wrapper {
    border-radius: 0 0 45px 45px;
  }

  nav .logo {
    height: 60px;
    margin-right: auto;
  }

  nav .logo img {
    height: 50px;
    margin-right: 5px;
  }

  nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  nav .access {
    height: 60px;
    margin: 0 30px 0 0;
    min-width: 95px;
  }

  .bg-3 {
    background: #000;
  }

  .bg-3 h1 {
    color: #fff;
  }

  .bg-3 .images-wrapper div {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    width: 200px;
  }

  .bg-4 h1 {
    font-size: 80px;
    margin: 120px 0 70px;
  }

  .bg-4 h1 span {
    color: var(--orange);
  }

  .bg-4 .images-wrapper .event {
    width: 200px;
  }

  .bg-5 .text-wrapper div a {
    display: block;
    font-size: 24px;
    padding: 17px 0;
    margin: 0 10px;
  }

  .bg-7 {
    background: #000;
  }

  .bg-7 .image {
    display: block;
  }

  .bg-7 .text-wrapper {
    padding: 0 5%;
    width: 90%;
  }

  .bg-7 .text-wrapper h1 {
    text-align: center;
  }

  .bg-8 {
    background: #000;
  }

  .bg-8 .text-wrapper {
    padding: 0 5%;
    width: 90%;
  }

  .bg-9 .text-wrapper .questions .acordions > div {
    margin-bottom: 30px;
  }

  .bg-9 .text-wrapper .questions .acordions > div:after {
    right: 15px;
  }

  .bg-9 .text-wrapper .questions .acordions > div h3 {
    font-size: 21px;
  }

  .bg-9 .text-wrapper .questions .acordions > div > div p {
    font-size: 18px;
  }

  .modal .thank-you > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .modal .thank-you > div img {
    width: 200px;
  }
}

@media screen and (max-width: 722px) {
  .bg-10-2 .media:after {
    bottom: 180px;
    top: auto;
  }
}

@media screen and (max-width: 640px) {
  .bg-2 .text-wrapper {
    width: 70%;
    padding: 0 25% 0 5%;
  }
}

@media screen and (max-width: 600px) {
  .formbold-input-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .formbold-input-flex > div {
    width: 100%;
  }

  .checkbox-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  nav .logo span {
    font-size: 14px;
    display: inline;
  }

  nav ul {
    display: none;
  }
}

@media screen and (max-width: 540px) {
  .bg-6 .text-wrapper .why-wrapper > div {
    -ms-flex-preferred-size: 90%;
        flex-basis: 90%;
    margin: 0 5%;
  }
}

@media screen and (max-width: 470px) {
  .bg-3 .banner-wrapper div {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .bg-3 .banner-wrapper .time {
    margin-top: 30px;
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  nav .logo {
    margin-left: 15px;
  }

  nav .access {
    margin: 0 10px 0 5px;
  }

  .bg-2 .text-wrapper {
    width: 90%;
    padding: 0 5%;
  }

  .bg-3 h1 {
    font-size: 56px;
    margin: 60px 0 55px;
  }

  .bg-4 h1 {
    font-size: 56px;
    margin: 60px 0 55px;
  }

  .bg-4 .images-wrapper .event {
    width: 200px;
    height: 200px;
  }

  .bg-4 .images-wrapper .event span {
    font-size: 21px;
  }

  .bg-5 .text-wrapper h1 {
    font-size: 56px;
    margin: 60px 0 55px;
  }

  .bg-5 .text-wrapper p {
    font-size: 18px;
  }

  .bg-5 .text-wrapper div {
    padding-bottom: 20px;
  }

  .bg-5-2 .text-wrapper h1 {
    margin: 50px 0 30px;
    font-size: 56px;
  }

  .bg-5-2 .text-wrapper p {
    font-size: 18px;
  }

  .bg-5-2 .text-wrapper p.first {
    font-size: 21px;
  }

  .bg-6 {
    padding-bottom: 50px;
  }

  .bg-7 .text-wrapper h1 {
    font-size: 56px;
    margin: 60px 0 55px;
  }

  .bg-7 .text-wrapper p {
    font-size: 21px;
  }

  .bg-8 .text-wrapper h1 {
    font-size: 40px;
  }

  .bg-8 .text-wrapper p {
    font-size: 28px;
    line-height: 1.2;
  }

  .bg-8 .link a {
    display: block;
    width: 90%;
    margin: 0 5%;
    padding: 17px 0;
  }

  .bg-8-2 .text-wrapper h1 {
    font-size: 56px;
    margin: 105px 0 30px;
  }

  .bg-8-2 .text-wrapper .link a {
    display: block;
    width: 90%;
    margin: 0 5%;
    padding: 17px 0;
  }

  .bg-9 {
    background: #000;
  }

  .bg-9 .text-wrapper h1 {
    font-size: 56px;
    margin: 60px 0 55px;
  }

  .bg-10 .text-wrapper h1 {
    font-size: 56px;
    margin: 60px 0 55px;
  }

  .bg-10 .text-wrapper div {
    padding-bottom: 40px;
  }

  .bg-10 .text-wrapper div a {
    display: block;
    width: 90%;
    margin: 0 5%;
    padding: 17px 0;
  }

  .bg-10-2 .title-wrap .title {
    font-size: 24px;
  }

  .bg-10-2 .media:after {
    display: none;
  }

  .bg-10-2 .media {
    margin: 0 20px;
  }

  .bg-10-2 .media .list div {
    width: 80px;
    gap: 20px;
  }

  .bg-10-2 .contact {
    margin: 0 20px;
  }

  .bg-10-2 .contact .list.list2 p {
    font-size: 18px;
  }
}