/**
* Base.
*/
html {
  font-size: 0.0694444444vw;
}
@media (min-width: 1700px) {
  html {
    font-size: 0.0520833333vw;
  }
}
@media (max-width: 1023px) {
  html {
    font-size: 0.1428571429vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 0.25vw;
  }
}

body {
  position: relative;
  font-family: "Gotham Rounded";
  font-size: 1rem;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: "";
  background-color: black;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms;
}
body.shadow {
  width: 100%;
  overflow: hidden;
}
body.shadow::before {
  opacity: 0.6;
  pointer-events: initial;
}

.container {
  width: 100%;
  max-width: 1200rem;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .container {
    padding: 0 20rem;
  }
}

* {
  font-family: "Gotham Rounded";
  font-display: swap;
  line-height: 100%;
  text-decoration: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
  list-style-type: none;
}

s {
  text-decoration: none;
  display: inline-block;
  transition-property: transform;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}

form {
  font-family: "Gotham Rounded";
}
form input {
  line-height: initial;
}
form input,
form textarea,
form select {
  outline: none !important;
}
form input:active, form input:focus,
form textarea:active,
form textarea:focus,
form select:active,
form select:focus {
  outline: none !important;
}

a,
a:link,
a:hover,
a:active,
a:visited,
a:focus {
  text-decoration: none !important;
  outline: none !important;
}

button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

button,
button:active,
button:focus {
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 100%;
  margin: 0;
}

ul,
ol {
  margin: 0;
  list-style-type: none;
}

label {
  font-weight: normal;
}

@font-face {
  font-family: "Gotham Rounded";
  src: url("../../assets/fonts/GothamRounded-Bold.woff2") format("woff2"), url("../../assets/fonts/GothamRounded-Bold.woff") format("woff"), url("../../assets/fonts/GothamRounded-Bold.svg#GothamRounded-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Rounded";
  src: url("../../assets/fonts/GothamRounded-Book.woff2") format("woff2"), url("../../assets/fonts/GothamRounded-Book.woff") format("woff"), url("../../assets/fonts/GothamRounded-Book.svg#GothamRounded-Book") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Rounded";
  src: url("../../assets/fonts/GothamRounded-Light.woff2") format("woff2"), url("../../assets/fonts/GothamRounded-Light.woff") format("woff"), url("../../assets/fonts/GothamRounded-Light.svg#GothamRounded-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Rounded";
  src: url("../../assets/fonts/GothamRounded-Medium.woff2") format("woff2"), url("../../assets/fonts/GothamRounded-Medium.woff") format("woff"), url("../../assets/fonts/GothamRounded-Medium.svg#GothamRounded-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 56rem;
  padding: 0 8rem 0 24rem;
  border-radius: 50px;
  transition-property: background-color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
@media screen and (max-width: 1024px) {
  .button#dropdownButton {
    justify-content: space-between;
    width: 100%;
    border-radius: 0;
    font-weight: 600;
    font-size: 15rem;
    height: 40rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  }
}
.button span:not(.arrow) {
  font-size: 14rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition-property: color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.button span.arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40rem;
  height: 40rem;
  margin-left: 24rem;
  border-radius: 50px;
  overflow: hidden;
}
@media screen and (max-width: 680px) {
  .button span.arrow {
    width: 30rem;
    height: 30rem;
  }
}
.button span.arrow svg {
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.button span.arrow svg:nth-child(1) {
  position: relative;
}
.button span.arrow svg:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 30rem), -50%);
  z-index: 2;
}
.button:hover span.arrow svg:nth-child(1) {
  transform: translateX(30rem);
}
.button:hover span.arrow svg:nth-child(2) {
  transform: translate(-50%, -50%);
}
.button-green {
  background-color: #deff1c;
}
.button-green span:not(.arrow) {
  color: #082e54;
}
.button-green span.arrow {
  background-color: white;
}
.button-green:hover {
  background-color: #082e54;
}
.button-green:hover span:not(.arrow) {
  color: white;
}
.button-blue {
  padding-left: 0;
}
.button-blue span:not(.arrow) {
  color: #0bbbef;
}
.button-blue span.arrow {
  background-color: transparent;
  border: 1px solid #0bbbef;
}
.button-blue span.arrow svg path {
  fill: #0072bb;
}
.button-blue:hover {
  background-color: transparent;
}
.button-blue-dark {
  padding-left: 0;
}
.button-blue-dark span:not(.arrow) {
  color: #0072bb;
}
.button-blue-dark span.arrow {
  background-color: transparent;
  border: 1px solid #0072bb;
}
.button-blue-dark span.arrow svg path {
  fill: #0072bb;
}
.button-blue-dark:hover {
  background-color: transparent;
}
.button-blue-dark-2 {
  padding-left: 0;
}
.button-blue-dark-2 span:not(.arrow) {
  color: #082e54;
}
.button-blue-dark-2 span.arrow {
  background-color: transparent;
  border: 1px solid #deff1c;
}
.button-blue-dark-2 span.arrow svg path {
  fill: #082e54;
}
.button-blue-dark-2:hover {
  background-color: transparent;
}
.button-green-2 {
  padding-left: 0;
}
.button-green-2 span:not(.arrow) {
  color: white;
}
.button-green-2 span.arrow {
  background-color: transparent;
  border: 1px solid #deff1c;
}
.button-green-2 span.arrow svg path {
  fill: white;
}
.button-green-2:hover {
  background-color: transparent;
}
.button-green-3 {
  padding-left: 0;
}
.button-green-3 span:not(.arrow) {
  color: #0bbbef;
}
.button-green-3 span.arrow {
  background-color: transparent;
  border: 1px solid #deff1c;
}
.button-green-3 span.arrow svg path {
  fill: #0bbbef;
}
.button-green-3:hover {
  background-color: transparent;
}

.appear-fade,
.appear-fade-horizontal,
.appear-fade-vertical {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 1.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.appear-fade.appear,
.appear-fade-horizontal.appear,
.appear-fade-vertical.appear {
  opacity: 1;
  transform: translate(0, 0);
}

.appear-fade-vertical {
  transform: translate(0, 15px);
}

.appear-fade-horizontal {
  transform: translate(15px, 0);
}

[rel=lazy_load] {
  overflow: hidden;
}
@keyframes lazy_load {
  0% {
    transform: scaleX(0);
    transform-origin: 0% 50%;
  }
  50% {
    transform: scaleX(1);
    transform-origin: 0% 50%;
  }
  50.1% {
    transform: scaleX(1);
    transform-origin: 100% 50%;
  }
  100% {
    transform: scaleX(0);
    transform-origin: 100% 50%;
  }
}
[rel=lazy_load]:not(.no-animate) img {
  z-index: 1;
  transform-origin: 25% 25%;
  opacity: 0;
  transform: scale(1.08);
  transition-property: opacity, transform;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
[rel=lazy_load].no-animate img {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1s;
  transition-timing-function: ease;
}
[rel=lazy_load].loaded:not(.no-animate) img {
  opacity: 1;
  transform: scale(1);
}
[rel=lazy_load].loaded.no-animate img {
  opacity: 1;
}

.screen-progress {
  background-color: #082e54;
  text-align: center;
  border-radius: 14px;
  min-width: 300px;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 200;
  margin-top: 15px;
  padding: 30px;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: background-color 0.5s cubic-bezier(0, 0, 0.3, 1), margin-top 0.7s cubic-bezier(0.5, 0, 0, 1), opacity 0.7s cubic-bezier(0, 0, 0.3, 1);
  box-shadow: 0 5px 10px rgba(0, 113, 187, 0.1);
}
@media (max-width: 767px) {
  .screen-progress {
    min-width: 90vw;
    max-width: 95vw;
  }
}
.screen-progress.open {
  margin-top: 0;
  opacity: 1;
}
.screen-progress .screen-message {
  color: white;
  font-size: 14px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  transition: color 0.5s cubic-bezier(0, 0, 0.3, 1);
}
.screen-progress .screen-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.screen-progress .screen-cta .button {
  width: 160px;
  min-width: auto;
}
.screen-progress .spinner {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.screen-progress .spinner span {
  background-color: white;
  border-radius: 50%;
  display: block;
  width: 400px;
  height: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -200px 0 0 -200px;
  opacity: 0;
  transform: scale(0);
  animation: spinner_progress 1.5s infinite;
}
@keyframes spinner_progress {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.screen-progress .spinner span:nth-child(2) {
  animation-delay: 0.5s;
}
.screen-progress.finished .spinner span {
  animation: unset;
}

/** Transition slide. */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  animation-name: fade-in;
  animation-fill-mode: forwards;
  animation-duration: 1000ms;
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fade-out {
  animation-name: fade-out;
  animation-fill-mode: forwards;
  animation-duration: 1000ms;
}

.title-1 {
  font-size: 104rem;
  font-weight: bold;
  letter-spacing: -0.04em;
}
.title-1 * {
  letter-spacing: -0.04em;
}

.title-2 {
  font-size: 56rem;
  font-weight: bold;
  letter-spacing: -0.06em;
}
.title-2 * {
  letter-spacing: -0.06em;
}

.title-3 {
  font-size: 40rem;
  font-weight: bold;
  letter-spacing: -0.04em;
}
.title-3 * {
  letter-spacing: -0.04em;
}

.title-5 {
  font-size: 22rem;
  font-weight: bold;
  letter-spacing: -0.04em;
  line-height: 1.25;
}
@media (max-width: 1023px) {
  .title-5 {
    font-size: 18rem;
  }
}
.title-5 * {
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.title-6 {
  font-size: 16rem;
  font-weight: 500;
  line-height: 1.5;
}
.title-6 * {
  line-height: 1.5;
}

.text {
  font-size: 14rem;
  font-weight: normal;
  line-height: 1.8;
}
.text * {
  line-height: 1.8;
}

@keyframes bullets_paths {
  0% {
    fill: #0bbbef;
  }
  30% {
    fill: #deff1c;
  }
  60%, 100% {
    fill: #0bbbef;
  }
}
.bullets svg path {
  fill: #0bbbef;
  animation-name: bullets_paths;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.bullets svg path:nth-child(0) {
  animation-delay: 0s;
}
.bullets svg path:nth-child(1) {
  animation-delay: 0.05s;
}
.bullets svg path:nth-child(2) {
  animation-delay: 0.1s;
}
.bullets svg path:nth-child(3) {
  animation-delay: 0.15s;
}
.bullets svg path:nth-child(4) {
  animation-delay: 0.2s;
}
.bullets svg path:nth-child(5) {
  animation-delay: 0.25s;
}
.bullets svg path:nth-child(6) {
  animation-delay: 0.3s;
}
.bullets svg path:nth-child(7) {
  animation-delay: 0.35s;
}
.bullets svg path:nth-child(8) {
  animation-delay: 0.4s;
}
.bullets svg path:nth-child(9) {
  animation-delay: 0.45s;
}
.bullets svg path:nth-child(10) {
  animation-delay: 0.5s;
}
.bullets svg path:nth-child(11) {
  animation-delay: 0.55s;
}
.bullets svg path:nth-child(12) {
  animation-delay: 0.6s;
}
.bullets svg path:nth-child(13) {
  animation-delay: 0.65s;
}
.bullets svg path:nth-child(14) {
  animation-delay: 0.7s;
}
.bullets svg path:nth-child(15) {
  animation-delay: 0.75s;
}
.bullets svg path:nth-child(16) {
  animation-delay: 0.8s;
}
.bullets svg path:nth-child(17) {
  animation-delay: 0.85s;
}
.bullets svg path:nth-child(18) {
  animation-delay: 0.9s;
}
.bullets svg path:nth-child(19) {
  animation-delay: 0.95s;
}
.bullets svg path:nth-child(20) {
  animation-delay: 1s;
}
.bullets svg path:nth-child(21) {
  animation-delay: 1.05s;
}
.bullets svg path:nth-child(22) {
  animation-delay: 1.1s;
}
.bullets svg path:nth-child(23) {
  animation-delay: 1.15s;
}
.bullets svg path:nth-child(24) {
  animation-delay: 1.2s;
}
.bullets svg path:nth-child(25) {
  animation-delay: 1.25s;
}
.bullets svg path:nth-child(26) {
  animation-delay: 1.3s;
}
.bullets svg path:nth-child(27) {
  animation-delay: 1.35s;
}
.bullets svg path:nth-child(28) {
  animation-delay: 1.4s;
}
.bullets svg path:nth-child(29) {
  animation-delay: 1.45s;
}
.bullets svg path:nth-child(30) {
  animation-delay: 1.5s;
}
.bullets svg path:nth-child(31) {
  animation-delay: 1.55s;
}
.bullets svg path:nth-child(32) {
  animation-delay: 1.6s;
}
.bullets svg path:nth-child(33) {
  animation-delay: 1.65s;
}
.bullets svg path:nth-child(34) {
  animation-delay: 1.7s;
}
.bullets svg path:nth-child(35) {
  animation-delay: 1.75s;
}
.bullets svg path:nth-child(36) {
  animation-delay: 1.8s;
}
.bullets svg path:nth-child(37) {
  animation-delay: 1.85s;
}
.bullets svg path:nth-child(38) {
  animation-delay: 1.9s;
}
.bullets svg path:nth-child(39) {
  animation-delay: 1.95s;
}
.bullets svg path:nth-child(40) {
  animation-delay: 2s;
}
.bullets svg path:nth-child(41) {
  animation-delay: 2.05s;
}
.bullets svg path:nth-child(42) {
  animation-delay: 2.1s;
}
.bullets svg path:nth-child(43) {
  animation-delay: 2.15s;
}
.bullets svg path:nth-child(44) {
  animation-delay: 2.2s;
}
.bullets svg path:nth-child(45) {
  animation-delay: 2.25s;
}
.bullets svg path:nth-child(46) {
  animation-delay: 2.3s;
}
.bullets svg path:nth-child(47) {
  animation-delay: 2.35s;
}
.bullets svg path:nth-child(48) {
  animation-delay: 2.4s;
}
.bullets svg path:nth-child(49) {
  animation-delay: 2.45s;
}
.bullets svg path:nth-child(50) {
  animation-delay: 2.5s;
}
.bullets svg path:nth-child(51) {
  animation-delay: 2.55s;
}
.bullets svg path:nth-child(52) {
  animation-delay: 2.6s;
}
.bullets svg path:nth-child(53) {
  animation-delay: 2.65s;
}
.bullets svg path:nth-child(54) {
  animation-delay: 2.7s;
}
.bullets svg path:nth-child(55) {
  animation-delay: 2.75s;
}
.bullets svg path:nth-child(56) {
  animation-delay: 2.8s;
}
.bullets svg path:nth-child(57) {
  animation-delay: 2.85s;
}
.bullets svg path:nth-child(58) {
  animation-delay: 2.9s;
}
.bullets svg path:nth-child(59) {
  animation-delay: 2.95s;
}
.bullets svg path:nth-child(60) {
  animation-delay: 3s;
}
.bullets svg path:nth-child(61) {
  animation-delay: 3.05s;
}
.bullets svg path:nth-child(62) {
  animation-delay: 3.1s;
}
.bullets svg path:nth-child(63) {
  animation-delay: 3.15s;
}
.bullets svg path:nth-child(64) {
  animation-delay: 3.2s;
}

/**
* Globals.
*/
#main-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 0 60rem;
  pointer-events: none;
  z-index: 50;
}
@media (max-width: 1023px) {
  #main-header {
    padding: 0 20rem;
  }
}
#main-header .flex-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  #main-header .flex-wrapper {
    justify-content: center;
  }
}
#main-header .flex-wrapper .logo {
  position: relative;
  pointer-events: initial;
}
#main-header .flex-wrapper .logo a {
  position: relative;
  display: block;
  z-index: 2;
}
@media (max-width: 1023px) {
  #main-header .flex-wrapper .logo a img {
    width: 125rem;
    height: unset;
  }
}
#main-header .flex-wrapper .cta {
  position: fixed;
  top: 35rem;
  right: 60rem;
  pointer-events: initial;
  z-index: 50;
}
@media (max-width: 1023px) {
  #main-header .flex-wrapper .cta {
    display: none;
  }
}
#main-header .flex-wrapper .menu {
  display: none;
}
@media (max-width: 1023px) {
  #main-header .flex-wrapper .menu {
    padding-top: 0rem;
    display: flex;
    justify-content: right;
    pointer-events: initial;
  }
}
#main-header .flex-wrapper .menu button {
  display: flex;
  align-items: center;
  justify-content: center;
}
#main-header .flex-wrapper .menu button svg {
  width: 25rem;
  height: unset;
}
#main-header .flex-wrapper .menu button svg path {
  fill: white;
}
#main-header[data-theme=single] {
  padding: 20rem 60rem 0;
}
@media (max-width: 1023px) {
  #main-header[data-theme=single] {
    padding: 10rem 20rem;
  }
}
@media (max-width: 1023px) {
  #main-header[data-theme=single] .flex-wrapper {
    justify-content: flex-start;
  }
}
#main-header[data-theme=single] .flex-wrapper .logo::before {
  content: "";
  background-color: white;
  position: absolute;
  top: -30rem;
  bottom: -20rem;
  right: -45rem;
  width: 400rem;
  border-radius: 0 80px 80px 0;
}
#main-header[data-theme=single] .flex-wrapper .cta a {
  box-shadow: 0 16px 60px rgba(8, 46, 84, 0.25);
}

#main-footer {
  background-color: #082e54;
  position: relative;
  padding: 95rem 0 144rem;
  overflow: hidden;
}
@media (max-width: 1023px) {
  #main-footer {
    padding: 95rem 0 105rem;
  }
}
#main-footer .vector {
  position: absolute;
  bottom: -240rem;
  right: -150rem;
  opacity: 0.15;
  z-index: 1;
}
@media (max-width: 1023px) {
  #main-footer .vector {
    top: 190rem;
    left: 20rem;
    bottom: unset;
    right: unset;
  }
}
#main-footer .vector svg {
  display: block;
  width: 850rem;
  height: unset;
}
#main-footer .container {
  position: relative;
  max-width: 1320rem;
  z-index: 2;
}
#main-footer .flex-wrapper {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  #main-footer .flex-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 1023px) {
  #main-footer .flex-wrapper .item:not(:last-child) {
    margin-bottom: 70rem;
  }
  #main-footer .flex-wrapper .item:last-child {
    margin-top: 50rem;
  }
}
#main-footer .flex-wrapper .item.item-location {
  width: 330rem;
  margin-right: 80rem;
}
@media (max-width: 1023px) {
  #main-footer .flex-wrapper .item.item-location {
    width: 100%;
    margin-right: 0;
  }
}
#main-footer .flex-wrapper .item.item-location .item-title {
  color: #0bbbef;
  font-size: 12rem;
  font-weight: bold;
  margin-bottom: 24rem;
}
@media (max-width: 1023px) {
  #main-footer .flex-wrapper .item.item-location .item-title {
    font-size: 16rem;
  }
}
#main-footer .flex-wrapper .item.item-location .item-location:not(:last-child) {
  margin-bottom: 32rem;
}
#main-footer .flex-wrapper .item.item-location .item-location--title {
  color: white;
  font-size: 12rem;
  font-weight: bold;
  margin-bottom: 16rem;
}
#main-footer .flex-wrapper .item.item-location .item-location--text {
  color: white;
  font-size: 12rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 16rem;
}
#main-footer .flex-wrapper .item.item-location .item-location--cta a {
  color: #deff1c;
  font-size: 12rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition-property: color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
@media (max-width: 1023px) {
  #main-footer .flex-wrapper .item.item-location .item-location--cta a {
    font-size: 14rem;
  }
}
#main-footer .flex-wrapper .item.item-location .item-location--cta a:hover {
  color: white;
}
#main-footer .flex-wrapper .item.item-navigation {
  margin-right: 80rem;
}
@media (max-width: 1023px) {
  #main-footer .flex-wrapper .item.item-navigation {
    margin-right: 0;
  }
}
#main-footer .flex-wrapper .item.item-navigation:nth-child(2) {
  width: 225rem;
}
@media (max-width: 1023px) {
  #main-footer .flex-wrapper .item.item-navigation:nth-child(2) {
    width: 100%;
  }
}
#main-footer .flex-wrapper .item.item-navigation:nth-child(3) {
  width: 180rem;
}
#main-footer .flex-wrapper .item.item-navigation .item-content:not(:last-child) {
  margin-bottom: 32rem;
}
#main-footer .flex-wrapper .item.item-navigation .item-content--title {
  color: #0bbbef;
  font-size: 12rem;
  font-weight: bold;
  margin-bottom: 24rem;
}
@media (max-width: 1023px) {
  #main-footer .flex-wrapper .item.item-navigation .item-content--title {
    font-size: 16rem;
  }
}
#main-footer .flex-wrapper .item.item-navigation .item-content--list ul li:not(:last-child) {
  margin-bottom: 24rem;
}
#main-footer .flex-wrapper .item.item-navigation .item-content--list ul li a {
  color: white;
  font-size: 12rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition-property: color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
@media (max-width: 1023px) {
  #main-footer .flex-wrapper .item.item-navigation .item-content--list ul li a {
    font-size: 14rem;
  }
}
#main-footer .flex-wrapper .item.item-navigation .item-content--list ul li a:hover {
  color: #deff1c;
}
#main-footer .flex-wrapper .item.item-social {
  width: 90rem;
}
@media (max-width: 1023px) {
  #main-footer .flex-wrapper .item.item-social {
    width: 130rem;
  }
}
#main-footer .flex-wrapper .item.item-social span {
  color: #0bbbef;
  font-size: 12rem;
  font-weight: bold;
  margin-bottom: 32rem;
  display: block;
}
@media (max-width: 1023px) {
  #main-footer .flex-wrapper .item.item-social span {
    font-size: 16rem;
  }
}
#main-footer .flex-wrapper .item.item-social ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 32rem;
  grid-row-gap: 32rem;
}
#main-footer .flex-wrapper .item.item-social ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 24rem;
}
#main-footer .flex-wrapper .item.item-social ul li a svg {
  display: block;
}
#main-footer .flex-wrapper .item.item-social ul li a svg path {
  fill: white;
  transition-property: fill;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-footer .flex-wrapper .item.item-social ul li a:hover svg path {
  fill: #deff1c;
}
#main-footer .flex-wrapper .item.item-copyright {
  flex-grow: 1;
  text-align: right;
}
@media (max-width: 1023px) {
  #main-footer .flex-wrapper .item.item-copyright {
    width: 100%;
    text-align: center;
  }
}
#main-footer .flex-wrapper .item.item-copyright .copyright {
  color: white;
  font-size: 12rem;
  font-weight: 500;
  margin-bottom: 160rem;
}
@media (max-width: 1023px) {
  #main-footer .flex-wrapper .item.item-copyright .copyright {
    margin-bottom: 50rem;
  }
}
@media (max-width: 1023px) {
  #main-footer .flex-wrapper .item.item-copyright .logo {
    display: none;
  }
}
#main-footer .flex-wrapper .item.item-copyright .logo a {
  display: inline-block;
}
#main-footer .flex-wrapper .item.item-copyright .logo a svg {
  display: block;
}

#main-menu {
  background-color: white;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  position: fixed;
  border-radius: 50px;
  width: 750px;
  transition-property: width, padding;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  box-shadow: 0px 16px 64px 0px rgba(8, 46, 84, 0.25);
  z-index: 50;
}
@media (max-width: 1023px) {
  #main-menu {
    background-color: transparent;
    width: 211px;
    transition-duration: 0.5s;
    border-radius: 0px;
    box-shadow: unset;
  }
  #main-menu::before {
    content: "";
    background-color: white;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 210px;
    height: 64px;
    border-radius: 50px;
    z-index: 1;
  }
}
#main-menu .mobile {
  display: none;
}
@media (max-width: 1023px) {
  #main-menu .mobile {
    display: block;
  }
}
#main-menu .mobile .logo {
  position: absolute;
  bottom: 17px;
  left: calc(50% - 62px);
  transition-property: left;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  z-index: 3;
}
#main-menu .mobile .logo a {
  display: inline-block;
}
#main-menu .mobile .tip,
#main-menu .mobile .close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 25px;
  left: calc(50% + 9px);
  opacity: 0;
  pointer-events: none;
  transition-property: left, opacity;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  z-index: 3;
}
#main-menu .mobile .tip span,
#main-menu .mobile .close span {
  color: #082e54;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-left: 8px;
}
#main-menu .mobile .tip {
  opacity: 1;
  pointer-events: initial;
}
#main-menu .mobile .close {
  pointer-events: none;
}
#main-menu .mobile .close svg {
  width: 14px;
  height: unset;
}
#main-menu .mobile .list {
  background-color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
  max-height: 0px;
  padding: 0;
  margin-bottom: 95rem;
  border-radius: 20px;
  position: relative;
  bottom: -1px;
  overflow: hidden;
  transition-property: max-height, padding;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  z-index: 2;
}
#main-menu .mobile .list .item {
  position: relative;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-menu .mobile .list .item:not(:last-child) {
  margin: 0 0 20px;
}
#main-menu .mobile .list .item-link {
  position: relative;
  text-align: center;
  z-index: 2;
}
#main-menu .mobile .list .item-link a,
#main-menu .mobile .list .item-link button {
  color: #082e54;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  display: inline-block;
  white-space: nowrap;
  transition-property: color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-menu .mobile .list .item-link a svg,
#main-menu .mobile .list .item-link button svg {
  display: inline-block;
  margin-left: 8rem;
  top: -2rem;
  position: relative;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-menu .mobile .list .item-submenu {
  position: relative;
  width: 100%;
  height: 0;
  transition-property: height;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  overflow: hidden;
  z-index: 1;
}
#main-menu .mobile .list .item-submenu--list {
  background-color: white;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid #0bbbef;
  padding: 20rem 0 24rem;
}
#main-menu .mobile .list .item-submenu--list ul {
  flex-shrink: 0;
}
#main-menu .mobile .list .item-submenu--list ul li:not(:last-child) {
  margin: 0 0 24rem;
}
#main-menu .mobile .list .item-submenu--list ul li a,
#main-menu .mobile .list .item-submenu--list ul li button {
  color: #082e54;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  display: inline-block;
  white-space: nowrap;
  transition-property: color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-menu .mobile .list .item.active .item-link svg {
  transform: rotate(180deg);
}
@media (max-width: 1023px) {
  #main-menu .desktop {
    display: none;
  }
}
#main-menu .desktop .logo {
  position: absolute;
  bottom: 17px;
  left: 44px;
  transition-property: left;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  z-index: 3;
}
@media (max-width: 1023px) {
  #main-menu .desktop .logo {
    left: calc(50% - 62px);
  }
}
#main-menu .desktop .logo a {
  display: inline-block;
}
#main-menu .desktop .tip,
#main-menu .desktop .close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 25px;
  left: 116px;
  opacity: 0;
  pointer-events: none;
  transition-property: left, opacity;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  z-index: 3;
}
@media (max-width: 1023px) {
  #main-menu .desktop .tip,
  #main-menu .desktop .close {
    left: calc(50% + 9px);
  }
}
#main-menu .desktop .tip span,
#main-menu .desktop .close span {
  color: #082e54;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-left: 8px;
}
@media (max-width: 1023px) {
  #main-menu .desktop .tip {
    opacity: 1;
    pointer-events: initial;
  }
}
#main-menu .desktop .close {
  pointer-events: none;
}
#main-menu .desktop .close svg {
  width: 14px;
  height: unset;
}
#main-menu .desktop .list {
  display: flex;
  align-items: center;
  position: relative;
  height: 64px;
  padding-left: 116px;
  bottom: -1px;
}
@media (max-width: 1023px) {
  #main-menu .desktop .list {
    background-color: white;
    flex-direction: column;
    height: 0px;
    padding: 0;
    margin-bottom: 95rem;
    border-radius: 20px;
    overflow: hidden;
    transition-property: height, padding;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
    z-index: 2;
  }
}
#main-menu .desktop .list .item {
  position: relative;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
@media (max-width: 1023px) {
  #main-menu .desktop .list .item {
    opacity: 0;
  }
}
#main-menu .desktop .list .item:not(:last-child) {
  margin-right: 24px;
}
@media (max-width: 1023px) {
  #main-menu .desktop .list .item:not(:last-child) {
    margin: 0 0 20px;
  }
}
#main-menu .desktop .list .item-link {
  position: relative;
  z-index: 2;
}
#main-menu .desktop .list .item-link a,
#main-menu .desktop .list .item-link button {
  color: #082e54;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  display: inline-block;
  white-space: nowrap;
  transition-property: color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-menu .desktop .list .item-submenu {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 46rem;
  opacity: 0;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  z-index: 1;
}
#main-menu .desktop .list .item-submenu--list {
  background-color: white;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  bottom: 100%;
  padding: 20rem 18rem;
  border-radius: 16px;
  box-shadow: 0px 16px 64px 0px rgba(8, 46, 84, 0.25);
}
#main-menu .desktop .list .item-submenu--list ul {
  flex-shrink: 0;
}
#main-menu .desktop .list .item-submenu--list ul li:not(:last-child) {
  margin: 0 0 24rem;
}
#main-menu .desktop .list .item-submenu--list ul li a,
#main-menu .desktop .list .item-submenu--list ul li button {
  color: #082e54;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  display: inline-block;
  white-space: nowrap;
  transition-property: color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-menu .desktop .list .item-submenu--list ul li a:hover,
#main-menu .desktop .list .item-submenu--list ul li button:hover {
  color: #0bbbef;
}
#main-menu .desktop .list .item:hover .item-link a,
#main-menu .desktop .list .item:hover .item-link button {
  color: #0bbbef;
}
#main-menu .desktop .list .item:hover .item-submenu {
  opacity: 1;
  pointer-events: initial;
}
#main-menu.sticky, #main-menu.single {
  width: 211px;
}
#main-menu.sticky .desktop .tip, #main-menu.single .desktop .tip {
  opacity: 1;
}
#main-menu.sticky .desktop .list .item, #main-menu.single .desktop .list .item {
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 1024px) {
  #main-menu.sticky:hover, #main-menu.single:hover {
    width: 750px;
  }
}
#main-menu.sticky:hover .desktop .tip, #main-menu.single:hover .desktop .tip {
  opacity: 0;
}
#main-menu.sticky:hover .desktop .list .item, #main-menu.single:hover .desktop .list .item {
  pointer-events: initial;
  opacity: 1;
  transition-duration: 0.5s;
}
#main-menu.sticky:hover .desktop .list .item:nth-child(0), #main-menu.single:hover .desktop .list .item:nth-child(0) {
  transition-delay: 0s;
}
#main-menu.sticky:hover .desktop .list .item:nth-child(1), #main-menu.single:hover .desktop .list .item:nth-child(1) {
  transition-delay: 0.05s;
}
#main-menu.sticky:hover .desktop .list .item:nth-child(2), #main-menu.single:hover .desktop .list .item:nth-child(2) {
  transition-delay: 0.1s;
}
#main-menu.sticky:hover .desktop .list .item:nth-child(3), #main-menu.single:hover .desktop .list .item:nth-child(3) {
  transition-delay: 0.15s;
}
#main-menu.sticky:hover .desktop .list .item:nth-child(4), #main-menu.single:hover .desktop .list .item:nth-child(4) {
  transition-delay: 0.2s;
}
#main-menu.sticky:hover .desktop .list .item:nth-child(5), #main-menu.single:hover .desktop .list .item:nth-child(5) {
  transition-delay: 0.25s;
}
#main-menu.sticky:hover .desktop .list .item:nth-child(6), #main-menu.single:hover .desktop .list .item:nth-child(6) {
  transition-delay: 0.3s;
}
#main-menu.sticky:hover .desktop .list .item:nth-child(7), #main-menu.single:hover .desktop .list .item:nth-child(7) {
  transition-delay: 0.35s;
}
#main-menu.sticky:hover .desktop .list .item:nth-child(8), #main-menu.single:hover .desktop .list .item:nth-child(8) {
  transition-delay: 0.4s;
}
#main-menu.sticky:hover .desktop .list .item:nth-child(9), #main-menu.single:hover .desktop .list .item:nth-child(9) {
  transition-delay: 0.45s;
}
#main-menu.open {
  width: calc(100% - 100px);
}
#main-menu.open .mobile .list {
  padding: 40px 0;
  max-height: 550px;
}
#main-menu.open .mobile .list .item {
  opacity: 1;
}
#main-menu.open .mobile .logo {
  left: calc(50% - 62px);
}
#main-menu.open .mobile .tip,
#main-menu.open .mobile .close {
  left: calc(50% + 9px);
}
#main-menu.open .mobile .tip {
  opacity: 0;
  pointer-events: none;
}
#main-menu.open .mobile .close {
  opacity: 1;
  pointer-events: initial;
}

.rellax {
  will-change: transform;
}
/*# sourceMappingURL=main.min.css.map */
