/* ABSTRACTS */
/* ### BREAKPOINTS ### */
/* ### GLOBAL ### */
/* ### LAYOUT ### */
/* ### COLORS ### */
/* main */
/* ### FONTS ### */
/* ### Z INDEX ### */
/* ### TRANSITIONS ### */
@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(10%);
  }
  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}
@keyframes reveal-opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes floatVideo {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-30px);
  }
  100% {
    transform: translatey(0px);
  }
}
/* BASE */
*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1em;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

img {
  max-width: 100%;
}

.grecaptcha-badge {
  display: none !important;
}

body {
  font-family: "Darker Grotesque", sans-serif;
  color: #FFFFFF;
  line-height: 1.35em;
  font-size: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: larken, sans-serif;
  font-weight: 400;
  line-height: 1.1em;
}

h1 {
  font-size: 120px;
}

h2 {
  font-size: 120px;
}

h3 {
  font-size: 56px;
}

h5 {
  font-size: 32px;
}

h6 {
  font-size: 24px;
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 80px;
  }
  h2 {
    font-size: 80px;
  }
  h3 {
    font-size: 32px;
  }
  h5 {
    font-size: 24px;
  }
  h6 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 64px;
  }
  h2 {
    font-size: 64px;
  }
  h3 {
    font-size: 32px;
  }
  h5 {
    font-size: 24px;
  }
  h6 {
    font-size: 20px;
  }
}
strong.red {
  color: #D83F31;
}

strong.green {
  color: #156F49;
}

/* LAYOUT */
.container {
  max-width: 1360px;
  padding: 120px 24px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 80px 24px;
  }
}

main {
  position: relative;
  z-index: 10;
  max-width: 100vw;
  height: 100%;
  overflow: hidden;
}

/* COMPONENTS */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
}
.header--container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  height: 80px;
  max-width: 1920px;
  width: 100%;
}
.header #audioPlayer {
  display: none;
}
.header__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  column-gap: 24px;
  display: none;
}
.header__logo img {
  width: 32px;
  height: auto;
}
.header__logo p {
  font-size: 32px;
  display: flex;
  flex-flow: row wrap;
  gap: 3px;
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 600;
  color: #FFFFFF;
}
.header__logo p span {
  color: #D83F31;
}
.header__nav {
  margin: 0 32px 0 auto;
}
.header__nav__list {
  display: flex;
  flex-flow: row wrap;
  column-gap: 40px;
}
.header__nav__list__item__link {
  font-size: 18px;
  font-family: "Darker Grotesque", sans-serif;
  text-decoration: none;
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .header__nav__list {
    column-gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    margin-right: 12px;
  }
  .header__nav__list__item {
    display: none;
  }
  .header__nav__list__item:last-of-type {
    display: block;
  }
  .header__nav__list__item:last-of-type a {
    position: fixed;
    top: 13px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    min-width: 201px;
    text-align: center;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.button {
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
}
.button--inline {
  font-size: 60%;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}
.button--full, .button--border {
  position: relative;
  padding: 12px 24px;
  border: solid 1px #FFFFFF;
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  text-decoration: none;
}
.button--full::before, .button--border::before {
  content: "";
  display: block;
  position: absolute;
  top: -7px;
  left: -3px;
  right: 0;
  height: 23px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACsAAAAXCAYAAACS5bYWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABFpJREFUeNrUV0tIo1cUvpkYjQ4xxSA6DxuNqG0dtaUKOgs3s6i0dFd3pSsXdjeIixakiGA34sZuXCkoONLFwJTK4GMYLYXg29gatTpiXurkbd7vv9/5ub+IxuhA7eiFQ5Kbc8/57ne/e87/ywRBYLdl3GG3aNwqsLJ0k0tLS+fmcnNzWUVFBVMoFGx2djarvLxcm5OTw+bm5iytra2xc4ExNjY27iqVyvvwK6CpeDzuCYVC1urq6qDA9UcfPp+PHR4esmAwKK6tr68/l5/8rgQ2Ozub1dbWyiYmJooaGxt/VqvV38jlchX9l0qlwoFA4DWS/RKLxRxFRUVf5+XlPcaaT2AP0sVPJBL2SCRiAPBpu93+vKamZo/Ae71eZjabWV1dXVqw7CKwp43ksrCw8Bhg7MJ/PLDZ5PHx8cz29vYT5JGD/bSYLgTrcDgYdk6siSc6NjZWDaAe4ZoHQL+cmZnRpZPnhWDpD8kw7uKo9ML/NMCsd2tr61vkzboMrEyv138M7TyLRqMWMBsX3sMgaZhMpp+AR5EJrCocDpuEGzKg4x8khs+CVWxubvZfR9JkMik4nU7BarUKLpeLmLsKuwIqTLynp4fqmIzASrqQT09Pf1VVVfX0KsWZ6uHBwQHTaDSsoKAgo6/H4xHLEcrVyRwuEisrKzs5XrrIVAVwiUVDKRRrL+YI32ewdVhMApuHWvcj6vids6J2u90MF4yBHUZNgKoEBaRBQalJqFSqtJfUYrGIlQX+ydXVVTN+u0tKSjQNDQ1axJVl2iTypebn55d7e3v/kqoDgZU1NTU9LCws/Py0M+2ekuGincxJ3yF+18jIyHJLS0slQJUWFxczrBeBE0vE5tHRkbixlZWVfSR8gTX/0P5gH7S1tX3Z3t7+BW8qAvwSfr8/jA0EIRM/qoFtampqbW9vTw+XA+ojUruVd3Z2tvb19T2TQFEim81GgVJoCvvj4+NLOJZgaWmpemdn5y3a6BbcnJDAw8HBwac6ne6eqCW5XDwB3qVSqM9/DAwMUNy/eVLabT7sI25qwgujThCBhWE+mAt2yNc4SQKSZrOQQE1HS22VJkmPAGTr7+//fX19fRk+Zgq0trbGeFAKEAQT98BSqKOj47vm5uaa/Px8JeIk4GcaHh6eWlxcfAU/A8xG67BxAX3fwdcbYUpSDJ06Z49Ak8ZC3OL8f3YiA4PBYKdLQ2AJ9OTk5GpXV9cQiCVh79M94QtlPLDUE/1gPNrd3f0W33W4cBoco48zQuy/IZYAMnGqlSc4c66L9JruQUaSARXeT8HGKzxAqFBekni6+h46+pMzGiJGMgTOJh1yU/KNEGDvZWvfBawkA9ppwGg0mrRa7SOI2g+gxOgbJIpdFpj72PnxSnPX8vqRxTURgBQWKisrH+GThOm+CtAzoK/9/Uiqq/6hoaHfdnd3jaOjo7/yY7yxbwqkWy3sQzpS2C6YirwvUJk0y7hurfyGRrnduPGvAAMASmo8wzeVwfsAAAAASUVORK5CYII=) no-repeat 0 0, url(data:image/png;base64,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) no-repeat 50% 0, url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAXCAYAAACFxybfAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAodJREFUeNrsVb1rWlEUv2pN/GqspKRSKFYXWzEloIWif0Fn6dJChQ7OQil0qd3EzcEpg0OgdHDr4CQODk7VRlLMEIVqApX4We0zflR9/Z1Ui4T34ksaaAYP/Hzc673n/M6550PG8zz73yKjn0wm83fDYDAwo9HINBrNnwOQg4MDs0ql2lQqlfdAWont7ng8Pjw+Ps44nc4G1pI9EXWaSOzt7TGO42aH5Pv7+08ajUZ0MBiUeXEZd7vdL5VK5fX29rZ+5tQiEmdxKrlcjsEYczgcynK5/BKKv/IXFNz/XiqVXkHdjUuRIA9SqdRD8or/R8Ez9fr9fqHVakUR4c2z0REjIQuHw2ZcrPBXLCA0RHTezEdHjIQqkUhEr9I4HOILhQLf6/VoOUFEvDMiQiToDx1Cdz+bzZ6bUFarlel0OkkVUK/XWbvdPoVer5fh3ntsfwJ+CJ2XA4p0Op1bpBgJyxDehQQ6nQ5DZXHBYDBZq9V+EhFUndnr9drEqoc2bwJbwGPgtohuVSwWe2Gz2TZMJpNgRKi6qtUqg2EWj8dTgUDgo0KhWPN4PC70EvXOzs67fD6/S6kiRIKeZA1YJ2MiJNbdbvfTUCjkV6vVK2hcDF8GI2w0GrGTkxM2HA5PDxaLxSOfz/cWEfk81X0XIMMFgJJ/srBjCgk8IdcfuVyuZ36//7nFYtkQyAMumUzuRiKRD0jMFLa+AZOpYwqgB/ziBVqmVBKUO7eAB/R0WG/Z7XaTVqtdbTabHJL6EK2djBaBPHA0NSqpbUsiMUeEBgpF4Q5AbZrmSJ/yEWgBTaBNHl9kdkgmMUeG7qwAq9PqovceTA3zlxlgsuswyuXsGsiSxJLEkoSY/BZgAEjRodi+uBruAAAAAElFTkSuQmCC) no-repeat 100% 0;
}
.button--full:hover, .button--border:hover {
  color: #120128;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.25);
}
.button--red {
  background-color: #D83F31;
  border-color: #D83F31;
}
.button--red:hover {
  background-color: #D83F31;
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.button--green {
  background-color: #156F49;
  border-color: #156F49;
}
.button--green:hover {
  background-color: #156F49;
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.hero--container {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding-top: 0;
  padding-bottom: 0;
}
.hero__content {
  width: 40%;
}
.hero__content__free {
  top: 20vh;
  right: 10%;
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  opacity: 0;
  animation: reveal-opacity 0.25s ease-in-out forwards, glow 1.5s ease-in-out infinite alternate;
  animation-delay: 3.5s;
  font-size: 14px;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 10;
  transform: translate(0%, 0);
  padding: 6px 24px 8px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: solid 2px #D83F31;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  font-family: "Montserrat", sans-serif;
  width: 240px;
  column-gap: 20px;
}
.hero__content__free div {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -4px;
}
.hero__content__free span {
  font-size: 8px;
  font-weight: 300;
  opacity: 0.5;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__content__free:hover {
  background: rgba(255, 255, 255, 0.25);
}
.hero__content__free::after {
  content: "";
  --size: 64px;
  width: var(--size);
  min-width: var(--size);
  max-width: var(--size);
  height: var(--size);
  min-height: var(--size);
  max-height: var(--size);
  background-image: url("/assets/img/icons/candy.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-35%, -50%);
}
.hero__content__title {
  line-height: 1.15em;
  position: relative;
  opacity: 0;
  animation: reveal-opacity 0.75s ease-in-out forwards;
  animation-delay: 2s;
}
.hero__content__title.text-reveal {
  opacity: 0;
}
.hero__content__title::after {
  --size: 120px;
  content: "";
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  max-width: var(--size);
  max-height: var(--size);
  background-image: url("/assets/img/icons/star.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 100px;
  bottom: 0;
  opacity: 0;
  animation: reveal-opacity 0.25s ease-in-out forwards, glow 1.5s ease-in-out infinite alternate;
  animation-delay: 4.5s;
}
@keyframes glow {
  from {
    filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0));
  }
  to {
    filter: drop-shadow(0 0 50px orange);
  }
}
.hero__content__buttons {
  margin-top: 32px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  opacity: 0;
  animation: reveal-opacity 0.25s ease-in-out forwards;
  animation-delay: 3s;
  position: relative;
}
.hero__content__buttons::before {
  content: "";
  display: block;
  position: absolute;
  top: -7px;
  left: -3px;
  right: 0;
  height: 23px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACsAAAAXCAYAAACS5bYWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABFpJREFUeNrUV0tIo1cUvpkYjQ4xxSA6DxuNqG0dtaUKOgs3s6i0dFd3pSsXdjeIixakiGA34sZuXCkoONLFwJTK4GMYLYXg29gatTpiXurkbd7vv9/5ub+IxuhA7eiFQ5Kbc8/57ne/e87/ywRBYLdl3GG3aNwqsLJ0k0tLS+fmcnNzWUVFBVMoFGx2djarvLxcm5OTw+bm5iytra2xc4ExNjY27iqVyvvwK6CpeDzuCYVC1urq6qDA9UcfPp+PHR4esmAwKK6tr68/l5/8rgQ2Ozub1dbWyiYmJooaGxt/VqvV38jlchX9l0qlwoFA4DWS/RKLxRxFRUVf5+XlPcaaT2AP0sVPJBL2SCRiAPBpu93+vKamZo/Ae71eZjabWV1dXVqw7CKwp43ksrCw8Bhg7MJ/PLDZ5PHx8cz29vYT5JGD/bSYLgTrcDgYdk6siSc6NjZWDaAe4ZoHQL+cmZnRpZPnhWDpD8kw7uKo9ML/NMCsd2tr61vkzboMrEyv138M7TyLRqMWMBsX3sMgaZhMpp+AR5EJrCocDpuEGzKg4x8khs+CVWxubvZfR9JkMik4nU7BarUKLpeLmLsKuwIqTLynp4fqmIzASrqQT09Pf1VVVfX0KsWZ6uHBwQHTaDSsoKAgo6/H4xHLEcrVyRwuEisrKzs5XrrIVAVwiUVDKRRrL+YI32ewdVhMApuHWvcj6vids6J2u90MF4yBHUZNgKoEBaRBQalJqFSqtJfUYrGIlQX+ydXVVTN+u0tKSjQNDQ1axJVl2iTypebn55d7e3v/kqoDgZU1NTU9LCws/Py0M+2ekuGincxJ3yF+18jIyHJLS0slQJUWFxczrBeBE0vE5tHRkbixlZWVfSR8gTX/0P5gH7S1tX3Z3t7+BW8qAvwSfr8/jA0EIRM/qoFtampqbW9vTw+XA+ojUruVd3Z2tvb19T2TQFEim81GgVJoCvvj4+NLOJZgaWmpemdn5y3a6BbcnJDAw8HBwac6ne6eqCW5XDwB3qVSqM9/DAwMUNy/eVLabT7sI25qwgujThCBhWE+mAt2yNc4SQKSZrOQQE1HS22VJkmPAGTr7+//fX19fRk+Zgq0trbGeFAKEAQT98BSqKOj47vm5uaa/Px8JeIk4GcaHh6eWlxcfAU/A8xG67BxAX3fwdcbYUpSDJ06Z49Ak8ZC3OL8f3YiA4PBYKdLQ2AJ9OTk5GpXV9cQiCVh79M94QtlPLDUE/1gPNrd3f0W33W4cBoco48zQuy/IZYAMnGqlSc4c66L9JruQUaSARXeT8HGKzxAqFBekni6+h46+pMzGiJGMgTOJh1yU/KNEGDvZWvfBawkA9ppwGg0mrRa7SOI2g+gxOgbJIpdFpj72PnxSnPX8vqRxTURgBQWKisrH+GThOm+CtAzoK/9/Uiqq/6hoaHfdnd3jaOjo7/yY7yxbwqkWy3sQzpS2C6YirwvUJk0y7hurfyGRrnduPGvAAMASmo8wzeVwfsAAAAASUVORK5CYII=) no-repeat 0 0, url(data:image/png;base64,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) no-repeat 50% 0, url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAXCAYAAACFxybfAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAodJREFUeNrsVb1rWlEUv2pN/GqspKRSKFYXWzEloIWif0Fn6dJChQ7OQil0qd3EzcEpg0OgdHDr4CQODk7VRlLMEIVqApX4We0zflR9/Z1Ui4T34ksaaAYP/Hzc673n/M6550PG8zz73yKjn0wm83fDYDAwo9HINBrNnwOQg4MDs0ql2lQqlfdAWont7ng8Pjw+Ps44nc4G1pI9EXWaSOzt7TGO42aH5Pv7+08ajUZ0MBiUeXEZd7vdL5VK5fX29rZ+5tQiEmdxKrlcjsEYczgcynK5/BKKv/IXFNz/XiqVXkHdjUuRIA9SqdRD8or/R8Ez9fr9fqHVakUR4c2z0REjIQuHw2ZcrPBXLCA0RHTezEdHjIQqkUhEr9I4HOILhQLf6/VoOUFEvDMiQiToDx1Cdz+bzZ6bUFarlel0OkkVUK/XWbvdPoVer5fh3ntsfwJ+CJ2XA4p0Op1bpBgJyxDehQQ6nQ5DZXHBYDBZq9V+EhFUndnr9drEqoc2bwJbwGPgtohuVSwWe2Gz2TZMJpNgRKi6qtUqg2EWj8dTgUDgo0KhWPN4PC70EvXOzs67fD6/S6kiRIKeZA1YJ2MiJNbdbvfTUCjkV6vVK2hcDF8GI2w0GrGTkxM2HA5PDxaLxSOfz/cWEfk81X0XIMMFgJJ/srBjCgk8IdcfuVyuZ36//7nFYtkQyAMumUzuRiKRD0jMFLa+AZOpYwqgB/ziBVqmVBKUO7eAB/R0WG/Z7XaTVqtdbTabHJL6EK2djBaBPHA0NSqpbUsiMUeEBgpF4Q5AbZrmSJ/yEWgBTaBNHl9kdkgmMUeG7qwAq9PqovceTA3zlxlgsuswyuXsGsiSxJLEkoSY/BZgAEjRodi+uBruAAAAAElFTkSuQmCC) no-repeat 100% 0;
  z-index: 10;
}
.hero__content__buttons__row {
  display: flex;
}
.hero__content__buttons__item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  padding: 18px 12px;
  border: solid 1px #FFFFFF;
  margin-left: -1px;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  line-height: 1em;
  column-gap: 10px;
}
.hero__content__buttons__item--1 {
  background-color: #1B8348;
}
.hero__content__buttons__item--2 {
  background-color: #156437;
}
.hero__content__buttons__item--3 {
  background-color: #D83F31;
}
.hero__content__buttons__item--4 {
  background-color: #0F4271;
}
.hero__content__buttons__item:hover {
  background-color: #FFFFFF;
  color: #120128;
}
@media screen and (max-width: 1024px) {
  .hero__content__buttons {
    flex-flow: column;
  }
  .hero__content__buttons__row {
    flex-flow: column;
    width: 100%;
  }
  .hero__content__buttons__item {
    padding: 16px !important;
    width: 100% !important;
  }
}
.hero__video {
  width: 60%;
  min-height: calc(100vh - 80px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero__video .bells {
  width: 250px;
  position: absolute;
  top: 15%;
  left: 5%;
  animation: floatVideo 3s ease-in-out infinite;
}
.hero__video #homepage-video {
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1.3) translate(8%, 5%);
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 1300px) {
  .hero__content {
    width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  .hero__content__title::after {
    --size: 90px;
    right: 120px;
  }
}
@media screen and (max-width: 768px) {
  .hero--container {
    flex-flow: column;
  }
  .hero__content {
    padding-top: 100px;
    width: 100%;
    max-width: unset;
  }
  .hero__content__free {
    left: 50%;
    transform: translate(-50%, 0);
    top: 900px;
  }
  .hero__content__title {
    padding-top: 12px;
    padding-bottom: 24px;
    font-size: 56px;
    text-align: center;
  }
  .hero__content__title * {
    text-align: center;
  }
  .hero__content__title::after {
    --size: 50px;
    right: unset;
    transform: translate(137px, 57px) rotate(15deg);
    z-index: 20;
  }
  .hero__content__buttons {
    margin-top: 32px !important;
    justify-content: center;
    flex-flow: column;
    row-gap: 0;
    margin-top: -1px;
    align-items: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__content__buttons__item {
    padding: 12px 16px;
    width: 240px;
  }
  .hero__content__buttons__item:first-of-type {
    margin-top: 0;
  }
  .hero__video {
    width: 100%;
    max-width: 380px;
  }
  .hero__video #homepage-video {
    transform: scale(1.8) translate(3.5%, -4%) rotate(23deg);
  }
  .hero__video .bells {
    width: 200px;
    top: 5%;
    left: -10%;
  }
}

.register-banner {
  width: 700px;
  max-width: 90%;
  display: flex;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 11;
  text-decoration: none;
  transform: translateY(0);
  transition: transform 0.5s ease-in-out;
  /*
    position: absolute;
    top: 100vh;
    right: 0;
    transform: translateY(-100%);
  */
}
.register-banner.hide {
  transform: translateY(100%);
}
.register-banner.hide .register-banner__close {
  top: 0;
  right: 6px;
  transform: translateY(-100%);
  background-color: #D83F31;
  width: 50px;
  border-radius: 10px 10px 0 0;
}
.register-banner__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background-color: #120128;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  border-radius: 50%;
  z-index: 2;
  line-height: 1em;
  padding-bottom: 5px;
  cursor: pointer;
}
.register-banner__content {
  width: 65%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  display: flex;
  flex-flow: column;
  justify-content: center;
  row-gap: 16px;
  padding: 32px;
}
.register-banner__content__title {
  font-size: 24px;
  color: #FFFFFF;
}
.register-banner__content__desc {
  font-size: 18px;
  color: white;
  line-height: 1.3em;
}
.register-banner__content__desc strong {
  color: white;
}
.register-banner__content .button {
  margin-top: 6px;
  margin-bottom: -6px;
}
.register-banner__icon {
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D83F31;
}
.register-banner__icon__gif {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.15));
}
@media screen and (max-width: 768px) {
  .register-banner {
    width: 700px;
    max-width: 95%;
  }
  .register-banner__content {
    padding: 16px;
    row-gap: 8px;
  }
  .register-banner__content__title {
    font-size: 18px;
  }
  .register-banner__content__desc {
    font-size: 14px;
    line-height: 1.1em;
  }
  .register-banner__content .button {
    margin-top: 0;
    font-size: 10px;
  }
  .register-banner__icon__gif {
    width: 100px;
  }
}

.program {
  margin-top: 50px;
}
.program__heading {
  text-align: center;
}
.program__desc {
  font-size: 24px;
  text-align: center;
  max-width: 680px;
  margin: 32px auto 0 auto;
}
.program__desc strong {
  color: #D83F31;
}
.program__desc .green {
  color: #156F49;
}
.program__listing {
  --video: 400px;
  --gap: 32px;
  display: flex;
  flex-flow: column;
  align-items: center;
  row-gap: 100px;
  margin: 180px auto 0 auto;
  counter-reset: programCounter;
}
.program__listing__item {
  margin: 0 auto 0 0;
  max-width: calc(var(--video) * 2 + var(--gap));
  counter-increment: programCounter;
}
.program__listing__item__about {
  max-width: 70%;
  z-index: 10;
  position: relative;
}
.program__listing__item__about__title {
  position: relative;
  font-size: 80px;
  display: flex;
  align-items: center;
  column-gap: 16px;
}
.program__listing__item__about__title::before {
  content: "";
  --size: 80px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  max-width: var(--size);
  max-height: var(--size);
  background-image: url("/assets/img/icons/panak.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.program__listing__item__about__desc {
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.5em;
  color: rgba(255, 255, 255, 0.75);
}
.program__listing__item__about__desc strong {
  opacity: 1;
}
.program__listing__item__videos {
  max-width: 100%;
  display: flex;
  flex-flow: row wrap;
  gap: 32px;
}
.program__listing__item__videos__item {
  display: flex;
  flex-flow: row;
  gap: var(--gap);
}
.program__listing__item__videos__item:nth-of-type(2) {
  transform: translateY(calc(var(--gap) * 1));
}
.program__listing__item__videos__item--9-16 {
  width: var(--video);
  max-width: 100%;
  overflow: hidden;
  aspect-ratio: 9/16;
  height: auto;
  position: relative;
}
.program__listing__item__videos__item--16-9 {
  width: calc(var(--video) * 2);
  max-width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
  height: auto;
  position: relative;
}
.program__listing__item--rockstanders .program__listing__item__about {
  margin-top: 32px;
}
.program__listing__item--rejoice {
  margin: 0 0 0 auto;
  display: flex;
  max-width: unset;
  align-items: flex-start;
  column-gap: var(--gap);
}
.program__listing__item--rejoice .program__listing__item__about {
  max-width: 45%;
}
.program__listing__item--rejoice .program__listing__item__about__title::before {
  background-image: url("/assets/img/icons/zena.svg");
}
.program__listing__item--rejoice .program__listing__item__videos {
  flex-flow: nowrap;
}
.program__listing__item--rejoice .program__listing__item__videos__item {
  max-width: calc(50% - var(--gap) / 2);
}
.program__listing__item--tombola {
  max-width: unset;
  width: 100%;
}
.program__listing__item--tombola .tombola {
  position: relative;
}
.program__listing__item--tombola .tombola__price {
  position: absolute;
}
.program__listing__item--tombola .tombola__price--wellness {
  right: 11%;
  top: 36%;
}
.program__listing__item--tombola .tombola__price--wellness .tombola__price__about {
  right: 100px;
  top: -150px;
  width: 210px;
  transform: translate(100%, -100%);
}
.program__listing__item--tombola .tombola__price--wellness .tombola__price__about::before {
  width: 50px;
  left: 5px;
  bottom: -20px;
  transform: translate(-100%, 0%) rotate(-45deg);
}
.program__listing__item--tombola .tombola__price--wellness .tombola__price__about::after {
  bottom: -50px;
  left: -50px;
}
.program__listing__item--tombola .tombola__price--wellness .tombola__price__about__title, .program__listing__item--tombola .tombola__price--wellness .tombola__price__about__desc {
  text-align: right;
}
.program__listing__item--tombola .tombola__price--ipad {
  left: 10%;
  top: 35%;
}
.program__listing__item--tombola .tombola__price--ipad .tombola__price__image {
  --size: 180px;
  animation-delay: 0.5s;
}
.program__listing__item--tombola .tombola__price--ipad .tombola__price__about {
  left: 30px;
  top: -150px;
  width: 150px;
  transform: translate(-100%, -100%);
}
.program__listing__item--tombola .tombola__price--ipad .tombola__price__about::before {
  width: 50px;
  right: -2px;
  transform: translate(100%, 100%) rotate(0deg);
}
.program__listing__item--tombola .tombola__price--ipad .tombola__price__about::after {
  bottom: -8px;
  right: -52px;
}
.program__listing__item--tombola .tombola__price--mobile {
  left: 23%;
  top: 33%;
}
.program__listing__item--tombola .tombola__price--mobile .tombola__price__image {
  --size: 150px;
  animation-delay: 1.5s;
}
.program__listing__item--tombola .tombola__price--mobile .tombola__price__about {
  left: 50px;
  top: -200px;
  width: 150px;
  transform: translate(-100%, -100%);
}
.program__listing__item--tombola .tombola__price--mobile .tombola__price__about::before {
  width: 50px;
  right: 5px;
  bottom: -20px;
  transform: translate(100%, 0%) rotate(45deg);
}
.program__listing__item--tombola .tombola__price--mobile .tombola__price__about::after {
  bottom: -50px;
  right: -50px;
}
.program__listing__item--tombola .tombola__price__image {
  --size: 135px;
  width: var(--size);
  position: relative;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
.program__listing__item--tombola .tombola__price__about {
  display: flex;
  flex-flow: column;
  row-gap: 8px;
  position: absolute;
  padding-bottom: 16px;
  border-bottom: dashed 1px #FFFFFF;
  position: relative;
}
.program__listing__item--tombola .tombola__price__about::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  border-bottom: dashed 1px #FFFFFF;
}
.program__listing__item--tombola .tombola__price__about::after {
  content: "";
  position: absolute;
  bottom: 0;
  --size: 16px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  max-width: var(--size);
  max-height: var(--size);
  border: solid 4px #120128;
  background-color: #FFFFFF;
  box-shadow: 0 0 1px 2px #FFFFFF;
  border-radius: 50%;
}
.program__listing__item--tombola .tombola__price__about__title {
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  font-family: "Darker Grotesque", sans-serif;
  line-height: 1.1em;
}
.program__listing__item--tombola .tombola__price__about__desc {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  font-family: "Darker Grotesque", sans-serif;
  line-height: 1.1em;
}
.program__listing__item--tombola .tombola__main-img {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .program__listing__item--tombola .tombola {
    max-width: 900px;
    margin: 0 auto;
  }
  .program__listing__item--tombola .tombola__price--wellness {
    right: 14%;
    top: 38%;
  }
  .program__listing__item--tombola .tombola__price--wellness .tombola__price__about {
    max-width: 150px;
    right: 60px;
    top: -120px;
  }
  .program__listing__item--tombola .tombola__price--wellness .tombola__price__image {
    --size: 100px;
  }
  .program__listing__item--tombola .tombola__price--ipad {
    left: 14%;
  }
  .program__listing__item--tombola .tombola__price--ipad .tombola__price__about {
    left: 0px;
    top: -60px;
    width: 110px;
  }
  .program__listing__item--tombola .tombola__price--ipad .tombola__price__image {
    --size: 110px;
  }
  .program__listing__item--tombola .tombola__price--mobile {
    left: 26%;
    top: 35%;
  }
  .program__listing__item--tombola .tombola__price--mobile .tombola__price__about {
    left: 10px;
    top: -150px;
    width: 120px;
  }
  .program__listing__item--tombola .tombola__price--mobile .tombola__price__image {
    --size: 100px;
  }
  .program__listing__item--tombola .tombola__price__about__title {
    font-size: 22px;
  }
  .program__listing__item--tombola .tombola__price__about__desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .program__listing__item--tombola .tombola {
    max-width: 650px;
  }
  .program__listing__item--tombola .tombola__price--wellness {
    right: 4%;
    top: 39%;
  }
  .program__listing__item--tombola .tombola__price--wellness .tombola__price__about {
    right: 120px;
    top: -120px;
  }
  .program__listing__item--tombola .tombola__price--wellness .tombola__price__about::before {
    display: none;
  }
  .program__listing__item--tombola .tombola__price--wellness .tombola__price__about::after {
    display: none;
  }
  .program__listing__item--tombola .tombola__price--wellness .tombola__price__image {
    --size: 65px;
  }
  .program__listing__item--tombola .tombola__price--ipad {
    top: 33%;
  }
  .program__listing__item--tombola .tombola__price--ipad .tombola__price__about {
    left: 20px;
    top: 50px;
  }
  .program__listing__item--tombola .tombola__price--ipad .tombola__price__about::before {
    display: none;
  }
  .program__listing__item--tombola .tombola__price--ipad .tombola__price__about::after {
    display: none;
  }
  .program__listing__item--tombola .tombola__price--ipad .tombola__price__image {
    --size: 75px;
  }
  .program__listing__item--tombola .tombola__price--mobile {
    top: 36%;
  }
  .program__listing__item--tombola .tombola__price--mobile .tombola__price__about {
    left: 55px;
    top: -176px;
  }
  .program__listing__item--tombola .tombola__price--mobile .tombola__price__about::before {
    display: none;
  }
  .program__listing__item--tombola .tombola__price--mobile .tombola__price__about::after {
    display: none;
  }
  .program__listing__item--tombola .tombola__price--mobile .tombola__price__image {
    --size: 70px;
  }
  .program__listing__item--tombola .tombola__about__title {
    font-size: 22px;
  }
  .program__listing__item--tombola .tombola__about__desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .program__listing__item--tombola .tombola {
    max-width: 0;
    min-height: 450px;
    display: flex;
    justify-content: center;
    position: relative;
  }
  .program__listing__item--tombola .tombola__main-img {
    min-width: 550px;
    position: absolute;
  }
  .program__listing__item--tombola .tombola__price__about {
    opacity: 0 !important;
  }
  .program__listing__item--tombola .tombola__price--wellness {
    right: 0;
    top: 33%;
    transform: translate(271px, 0px);
  }
  .program__listing__item--tombola .tombola__price--ipad {
    top: 33%;
    left: 0;
    transform: translate(-200px, 0);
  }
  .program__listing__item--tombola .tombola__price--mobile {
    top: 32%;
    left: 0;
    transform: translate(-140px, 0);
  }
}
.program__listing__item--tombola .program__listing__item__about {
  width: 100%;
  max-width: unset;
  margin-top: -80px;
}
.program__listing__item--tombola .program__listing__item__about__title {
  text-align: center;
  justify-content: center;
  font-size: 100px;
}
.program__listing__item--tombola .program__listing__item__about__title::before {
  display: none;
}
.program__listing__item--tombola .program__listing__item__about__desc {
  text-align: center;
  width: 600px;
  max-width: 100%;
  margin: 32px auto;
}
.program__listing__item--tombola .program__listing__item__about .button {
  margin: 50px auto 0 auto;
  display: block;
  width: fit-content;
}
@media screen and (max-width: 1360px) {
  .program__listing__item--rejoice {
    flex-flow: column;
    row-gap: 50px;
  }
  .program__listing__item--rejoice .program__listing__item__videos,
  .program__listing__item--rejoice .program__listing__item__about {
    align-self: center;
  }
  .program__listing__item--rockstanders {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .program {
    margin-top: 0px;
  }
  .program--container {
    padding-top: 0;
  }
  .program__listing {
    row-gap: 50px;
  }
  .program__listing__item__videos__item {
    width: auto;
    max-width: unset;
  }
  .program__listing__item__about__title {
    font-size: 50px;
  }
  .program__listing__item--rejoice .program__listing__item__about {
    max-width: 70%;
  }
  .program__listing__item--tombola {
    margin-top: 50px;
  }
  .program__listing__item--tombola .program__listing__item__about {
    margin-top: -32px;
  }
}
@media screen and (max-width: 768px) {
  .program {
    margin-top: -60px;
  }
  .program__listing {
    margin-top: 100px;
  }
  .program__listing__item {
    max-width: 100% !important;
  }
  .program__listing__item__about {
    max-width: unset !important;
  }
  .program__listing__item__about__title {
    font-size: 32px;
  }
  .program__listing__item--rejoice .program__listing__item__videos {
    flex-flow: column;
    row-gap: 12px;
    order: 2;
  }
  .program__listing__item--rejoice .program__listing__item__videos__item {
    max-width: unset;
    transform: none !important;
  }
  .program__listing__item--rejoice .program__listing__item__about {
    order: 1;
    column-gap: 12px;
  }
  .program__listing__item--tombola .program__listing__item__about__title {
    font-size: 64px;
  }
  .program__listing__item--tombola .program__listing__item__about__desc {
    text-align: left;
  }
}

.video {
  position: relative;
  cursor: pointer;
  border: solid 2px transparent;
  transition: border-color 0.25s ease-in-out;
}
.video:not(.no-button)::after, .video:not(.no-button)::before {
  content: "";
  --size: 100px;
  width: var(--size);
  min-width: var(--size);
  max-width: var(--size);
  height: var(--size);
  min-height: var(--size);
  max-height: var(--size);
  border-radius: 50%;
  background-color: transparent;
  border: solid 1px #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease-in-out;
  pointer-events: none;
}
.video:not(.no-button)::after {
  background-image: url("/assets/img/icons/play-black.svg");
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  left: 50%;
  border-radius: 50%;
  border: none;
  background-color: #FFFFFF;
}
.video:not(.no-button):hover {
  border-color: #390F71;
}
.video:not(.no-button):hover::before {
  background-color: #FFFFFF;
}
.video:not(.no-button).pause::after {
  background-image: url("/assets/img/icons/play-black.svg");
}
.video:not(.no-button).play {
  border-color: #390F71;
}
.video:not(.no-button).play::before, .video:not(.no-button).play::after {
  animation: hide 0.5s ease-in-out forwards;
}
.video:not(.no-button).play::after {
  background-image: url("/assets/img/icons/pause-black.svg");
  left: calc(50% + 0px);
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.video video {
  max-width: 100%;
}
.video video::-webkit-media-controls {
  display: none;
}
.video iframe {
  max-width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}

.initial-screen {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  animation: initial-scale 0.5s ease-in-out forwards;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
}
.initial-screen__about {
  display: flex;
  row-gap: 56px;
  flex-flow: column;
  opacity: 0;
  animation: initial-text 0.25s ease-in-out forwards;
  animation-delay: 0.5s;
}
.initial-screen__about .initila-screen__about__title {
  font-size: 28px;
  text-align: center;
}
.initial-screen__about__buttons {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 24px;
  pointer-events: all;
}
.initial-screen__about__buttons .button {
  text-transform: none;
}

@keyframes initial-text {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes initial-scale {
  from {
    opacity: 0.98;
  }
  to {
    opacity: 1;
  }
}
.link {
  position: relative;
}
.link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #FFFFFF;
  left: 0;
  transition: all 0.35s ease-in-out;
}
.link:hover::after {
  width: 100%;
}

.audio-handle {
  --size: 42px;
  width: var(--size);
  height: var(--size);
  background-color: transparent;
  border: solid 1px #FFFFFF;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
.audio-handle::after {
  --icon-size: 16px;
  content: "";
  width: var(--icon-size);
  height: var(--icon-size);
  background-image: url("/assets/img/icons/sound-off.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  mix-blend-mode: exclusion;
}
.audio-handle:hover {
  background-color: #FFFFFF;
}
.audio-handle.play::after {
  background-image: url("/assets/img/icons/sound-on.svg");
  filter: grayscale(1) invert(1);
}

#homepage-video {
  filter: drop-shadow(0px 0px 100px rgba(255, 255, 255, 0.35));
}

.kids {
  max-width: 1000px;
  margin: 0 auto;
}
.kids--container {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  column-gap: 50px;
}
.kids__about {
  width: 60%;
}
.kids__about__desc {
  margin-top: 32px;
}
.kids__image {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .kids--container {
    flex-flow: column;
    row-gap: 32px;
    padding-left: 0;
    padding-right: 0;
  }
  .kids__image {
    max-width: 200px;
    margin: 0 auto;
  }
  .kids__about {
    width: 100%;
  }
  .kids__about__title {
    text-align: center;
  }
  .kids__about__title * {
    text-align: center;
  }
}

.register--container {
  padding-top: 0;
  display: flex;
  flex-flow: row;
  align-items: center;
  column-gap: 0;
}
.register__image {
  width: 50%;
  aspect-ratio: 1/1;
  position: relative;
}
.register__image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.register__content {
  width: 50%;
  padding: 10%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.register__content__about {
  display: flex;
  flex-flow: column;
  row-gap: 32px;
}
.register__content form {
  margin-top: 32px;
  display: flex;
  flex-flow: column;
  width: 100%;
  gap: 12px;
}
.register__content form input {
  width: 100%;
  height: 50px;
  padding: 12px 16px 15px 16px;
  background-color: transparent;
  border: solid 1px #FFFFFF;
  border-radius: 5px;
  color: #FFFFFF;
  font-size: 18px;
  font-family: "Darker Grotesque", sans-serif;
  outline: none !important;
  font-weight: 500;
}
.register__content form input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.register__content form input:hover, .register__content form input:focus, .register__content form input:focus-visible, .register__content form input:focus-within {
  border-color: #156F49;
}
.register__content form input[type=submit] {
  background-color: #D83F31;
  font-weight: 700;
  border-width: 2px;
  border-color: rgba(0, 0, 0, 0.5);
  padding-top: 9px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.register__content form input[type=submit]:hover {
  border-width: 1px;
  border-color: white;
}
.register__content form p {
  margin-top: 12px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3em;
}
.register__content form p a {
  text-decoration: underline;
  color: #D83F31;
}
@media screen and (max-width: 1024px) {
  .register--container {
    flex-flow: column;
    row-gap: 24px;
  }
  .register__image, .register__content {
    width: 100%;
  }
  .register__content {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .register--container {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }
  .register__content {
    padding: 5% 5% 0 5% !important;
  }
}

/* TEXT REVEAL ANIMATION */
.text-reveal {
  opacity: 0;
  line-height: 1em;
}

.text-reveal .line {
  height: fit-content;
  overflow: hidden;
}

.text-reveal .line .line-inner {
  transform: translateY(100%);
}

.text-reveal {
  opacity: 1;
  line-height: 1em;
}

.location--container {
  padding-top: 0;
  display: flex;
  flex-flow: row;
  align-items: center;
  column-gap: 0;
}
.location__image {
  width: 50%;
  aspect-ratio: 1/1;
  position: relative;
}
.location__image__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  transition: all 0.25s ease-in-out;
}
.location__image__img:hover {
  transform: scale(1.025);
}
.location__content {
  width: 50%;
  padding: 10%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.location__content__about {
  display: flex;
  flex-flow: column;
  row-gap: 50px;
}
.location__content__about__info__title {
  margin-bottom: 12px;
}
.location__content__about__info__desc {
  line-height: 1.2em;
}
.location__content__about__info__desc a {
  color: #D83F31;
}
@media screen and (max-width: 1024px) {
  .location--container {
    flex-flow: column;
    row-gap: 24px;
  }
  .location__image, .location__content {
    width: 100%;
  }
  .location__content {
    padding-top: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .location--container {
    padding-left: 0;
    padding-right: 0;
  }
  .location__content {
    padding: 0% 5% 5% 5% !important;
  }
  .location__content__info {
    row-gap: 32px;
  }
  .location__image__img {
    transform: scale(1.15) !important;
  }
}

/* PAGES */
/* THEMES */
html, body {
  scroll-behavior: smooth;
}

body.stop-scroll {
  overflow: hidden;
}

body {
  background-color: #120128;
}

/* text select */
.caret-transparent {
  caret-color: transparent;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
   supported by Chrome, Edge, Opera and Firefox */
}

/* scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #120128;
}

::-webkit-scrollbar-thumb {
  background-color: #D83F31;
}

body.canvas {
  padding: 24px;
  padding-top: 50px;
  background-color: #120128;
  font-family: "Darker Grotesque", sans-serif;
}
body.canvas main {
  max-width: 800px;
  margin: 0 auto 80px auto;
}
body.canvas main .heading {
  padding: 0 0 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: larken, sans-serif;
  font-size: 32px;
  margin-bottom: 32px;
}
body.canvas main .heading a {
  color: #D83F31;
  text-decoration: none;
}
body.canvas main .heading span {
  color: #FFFFFF;
}
body.canvas h1, body.canvas h2, body.canvas h3, body.canvas h4, body.canvas h5, body.canvas h6 {
  margin-top: 32px;
  margin-bottom: 32px;
  font-family: larken, sans-serif;
}
body.canvas h1 {
  font-size: 36px;
}
body.canvas h2 {
  font-size: 32px;
}
body.canvas h3 {
  font-size: 28px;
}
body.canvas h4 {
  font-size: 24px;
}
body.canvas h5 {
  font-size: 20px;
}
body.canvas h6 {
  font-size: 18px;
}

:root {
  --color-bg1: #090014;
  --color-bg2: #14002d;
  --color1: 17, 2, 74;
  --color2: 30, 3, 64;
  --color3: 42, 10, 84;
  --color4: 22, 25, 122;
  --color5: 25, 1, 40;
  --color-interactive: 22, 25, 122;
  /*
  --color1: 18, 113, 255;
  --color2: 221, 74, 255;
  --color3: 100, 220, 255;
  --color4: 200, 50, 50;
  --color5: 180, 180, 50;
  --color-interactive: 140, 100, 255;
  */
  --circle-size: 90%;
  --blending: hard-light;
}

.gradient-bg {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  -webkit-transform: translateZ(0);
  top: 0;
  left: 0;
  overflow: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  pointer-events: none;
}
.gradient-bg svg {
  display: none;
}
.gradient-bg .gradients-container {
  filter: url(#goo) blur(40px);
  width: 100%;
  height: 100%;
}
.gradient-bg .g1 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: center center;
  animation: moveVertical 30s ease infinite;
  opacity: 1;
}
.gradient-bg .g2 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 400px);
  animation: moveInCircle 20s reverse infinite;
  opacity: 1;
}
.gradient-bg .g3 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2 + 200px);
  left: calc(50% - var(--circle-size) / 2 - 500px);
  transform-origin: calc(50% + 400px);
  animation: moveInCircle 40s linear infinite;
  opacity: 1;
}
.gradient-bg .interactive {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .gradient-bg {
    display: none !important;
  }
}

/*# sourceMappingURL=main.css.map */
