* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  transition: 0s;
}

.main {
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: #ffffff;
}

html {
  -moz-text-size-adjust: 90% !important;
  -ms-text-size-adjust: 90% !important;
  -webkit-text-size-adjust: 85% !important;
  text-size-adjust: 90% !important;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375vw;
  font-weight: 400;
}
@media (max-width: 1200px) {
  body {
    font-size: 1.953125vw;
  }
}

.container {
  max-width: 76.875vw;
  width: 100%;
  padding: 0 0.9375vw;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 1.953125vw;
    max-width: 156.25vw;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 5.1282051282vw;
  }
}

.h1 {
  font-family: "Unbounded", sans-serif;
  font-size: 2.25vw;
  line-height: 125%;
  font-weight: 600;
  text-align: left;
  color: #ffffff;
}
@media (max-width: 1200px) {
  .h1 {
    font-size: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .h1 {
    font-size: 5.1282051282vw;
  }
}

.h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.5vw;
  font-weight: 700;
  line-height: 1.62;
}
@media (max-width: 1200px) {
  .h2 {
    font-size: 3.125vw;
  }
}
@media (max-width: 767px) {
  .h2 {
    line-height: 1.25;
    font-size: 6.1538461538vw;
  }
}
.h2--dark {
  color: #000;
}
.h2--primary {
  color: #B91D0F;
}
.h2--white {
  color: #fff;
}

.button {
  position: relative;
  padding: 1.5vw 4.125vw;
  font-family: "Unbounded", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 0.875vw;
  line-height: 1.0625vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: #000000;
  border: 1px solid #FFFFFF;
  border-radius: 3.3125vw;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.button:active {
  transform: scale(0.98);
}
@media (max-width: 1200px) {
  .button {
    padding: 3.125vw 8.59375vw;
    font-size: 1.8229166667vw;
    line-height: 2.2135416667vw;
    border-radius: 6.9010416667vw;
  }
}
@media (max-width: 767px) {
  .button {
    padding: 6.1538461538vw 16.9230769231vw;
    font-size: 3.5897435897vw;
    line-height: 4.358974359vw;
    border-radius: 13.5897435897vw;
  }
}
.button:hover {
  color: #000000;
  background: #FFFFFF;
  border: 1px solid #000;
}

.menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  display: none;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .menu {
    display: none !important;
  }
}
.menu__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: translateY(-100%);
  overflow: hidden;
}
.menu__background img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.menu__wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 5.1282051282vw;
}
.menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8.2051282051vw;
  text-align: center;
  padding: 0;
}
.menu__list li {
  opacity: 0;
  transform: translateY(5.1282051282vw);
}
.menu__list a {
  font-family: "Unbounded", sans-serif;
  font-size: 5.1282051282vw;
  color: #fff;
  font-weight: 800;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  transition: background 0.3s ease-in-out;
}
.header.menu-open {
  background: transparent !important;
  backdrop-filter: none !important;
}
.header.is-sticky {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(0.5vw);
}
@media (max-width: 1200px) {
  .header.is-sticky {
    backdrop-filter: blur(1.0416666667vw);
  }
}
.header__logo {
  display: flex;
  width: 3.125vw;
  height: 2.8125vw;
  position: relative;
  z-index: 1000;
}
@media (max-width: 1200px) {
  .header__logo {
    width: 6.5104166667vw;
    height: 5.859375vw;
  }
}
@media (max-width: 767px) {
  .header__logo {
    width: 12.8205128205vw;
    height: 11.5384615385vw;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}
.header__logo img:hover {
  transform: rotate(-45deg);
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2.4375vw 0;
  transition: padding 0.3s ease-in-out;
}
@media (max-width: 1200px) {
  .header__wrapper {
    padding: 5.078125vw 0;
  }
}
@media (max-width: 767px) {
  .header__wrapper {
    padding: 6.4102564103vw 4.1025641026vw 6.4102564103vw 1.5384615385vw;
  }
}
.header.is-sticky .header__wrapper {
  padding: 0.9375vw 0;
}
@media (max-width: 1200px) {
  .header.is-sticky .header__wrapper {
    padding: 1.953125vw 0;
  }
}
.header__menu {
  position: relative;
  display: flex;
  gap: 2vw;
  list-style: none;
}
@media (max-width: 1200px) {
  .header__menu {
    gap: 4.1666666667vw;
  }
}
@media (max-width: 767px) {
  .header__menu {
    display: none;
  }
}
.header__menu a {
  position: relative;
  display: inline-block;
  font-size: 0.9375vw;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  color: #fff;
  z-index: 1;
}
@media (max-width: 1200px) {
  .header__menu a {
    font-size: 1.953125vw;
  }
}
.header__menu a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -20%;
  height: 0.5vw;
  width: 0;
  background: #B91D0F;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
@media (max-width: 1200px) {
  .header__menu a:before {
    height: 1.0416666667vw;
  }
}
.header__menu a:hover:before {
  width: 120%;
}
.header__burger {
  position: relative;
  display: none;
  gap: 2.5641025641vw;
  flex-direction: column;
  cursor: pointer;
  z-index: 100;
}
.header__burger span {
  display: block;
  height: 1px;
  width: 100%;
  background: #fff;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
    width: 9.4871794872vw;
  }
}
.header__burger.active span:first-child {
  transform: translateY(1.5384615385vw) rotate(35deg);
}
.header__burger.active span:last-child {
  transform: translateY(-1.5384615385vw) rotate(-35deg);
}

.hero {
  position: relative;
  padding: 20.8125vw 0 1.25vw;
}
@media (max-width: 1200px) {
  .hero {
    padding: 43.359375vw 0 2.6041666667vw;
  }
}
@media (max-width: 767px) {
  .hero {
    padding: 59.2307692308vw 0 5.1282051282vw;
  }
}
.hero__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
@media (max-width: 767px) {
  .hero__background img {
    object-fit: cover;
  }
}
.hero__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.hero__header {
  position: relative;
  max-width: 66.5625vw;
  width: 100%;
}
@media (max-width: 1200px) {
  .hero__header {
    max-width: 138.671875vw;
  }
}
@media (max-width: 767px) {
  .hero__header {
    max-width: 100%;
  }
  .hero__header .h1 {
    max-width: 82.0512820513vw;
  }
}
.hero__header-decor {
  position: absolute;
  left: -5vw;
  top: -3.125vw;
  width: 5.1875vw;
  height: 4.875vw;
}
@media (max-width: 1200px) {
  .hero__header-decor {
    left: -10.4166666667vw;
    top: -6.5104166667vw;
    width: 10.8072916667vw;
    height: 10.15625vw;
  }
}
@media (max-width: 767px) {
  .hero__header-decor {
    left: -5.8974358974vw;
    top: -9.4871794872vw;
    width: 9.2307692308vw;
    height: 9.2307692308vw;
  }
}
.hero__header-decor img {
  width: 100%;
  height: 100%;
}
.hero__description {
  max-width: 42.8125vw;
  width: 100%;
  font-style: normal;
  font-weight: 200;
  font-size: 1.5vw;
  line-height: 115%;
  color: #FFFFFF;
  margin-top: 2.1875vw;
}
@media (max-width: 1200px) {
  .hero__description {
    max-width: 89.1927083333vw;
    font-size: 3.125vw;
    margin-top: 4.5572916667vw;
  }
}
@media (max-width: 767px) {
  .hero__description {
    max-width: 100%;
    font-size: 4.1025641026vw;
    margin-top: 4.8717948718vw;
  }
}
.hero__description span {
  font-weight: 500;
}
.hero__info {
  position: relative;
  align-self: flex-end;
  font-family: "Unbounded", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.25vw;
  line-height: 157%;
  color: #FFFFFF;
  margin-top: 14.375vw;
  max-width: 21.25vw;
  width: 100%;
}
@media (max-width: 1200px) {
  .hero__info {
    font-size: 2.6041666667vw;
    margin-top: 29.9479166667vw;
    max-width: 44.2708333333vw;
  }
}
@media (max-width: 767px) {
  .hero__info {
    font-size: 3.5897435897vw;
    margin-top: 42.5641025641vw;
    max-width: 61.5384615385vw;
  }
}
.hero__info-decor {
  position: absolute;
  left: 0;
  top: -0.9375vw;
  width: 21.75vw;
  height: 8.9375vw;
}
@media (max-width: 1200px) {
  .hero__info-decor {
    top: -1.953125vw;
    width: 45.3125vw;
    height: 18.6197916667vw;
  }
}
@media (max-width: 767px) {
  .hero__info-decor {
    top: -4.358974359vw;
    left: -12.8205128205vw;
    width: 89.2307692308vw;
    height: 36.6666666667vw;
  }
}
.hero__info-decor svg {
  width: 100%;
  height: 100%;
}
.hero__content {
  position: relative;
  max-width: 61.25vw;
  width: 100%;
  margin: 9.375vw auto 4.5vw;
}
@media (max-width: 1200px) {
  .hero__content {
    max-width: 127.6041666667vw;
    margin: 19.53125vw auto 9.375vw;
  }
}
@media (max-width: 767px) {
  .hero__content {
    max-width: 100%;
    margin: 47.4358974359vw auto 8.2051282051vw;
  }
}
.hero__content-header {
  text-align: center;
  line-height: 1.62;
}
@media (max-width: 767px) {
  .hero__content-header {
    font-size: 3.8461538462vw;
  }
}
.hero__content-decor {
  position: absolute;
  left: -5.625vw;
  top: -3.125vw;
  width: 5.1875vw;
  height: 4.875vw;
}
@media (max-width: 1200px) {
  .hero__content-decor {
    left: -11.71875vw;
    top: -6.5104166667vw;
    width: 10.8072916667vw;
    height: 10.15625vw;
  }
}
@media (max-width: 767px) {
  .hero__content-decor {
    left: -3.8461538462vw;
    top: -16.6666666667vw;
    width: 14.6153846154vw;
    height: 13.8461538462vw;
  }
}
.hero__content-decor img {
  width: 100%;
  height: 100%;
}

.gallery {
  position: relative;
  padding-bottom: 7.5vw;
}
@media (max-width: 1200px) {
  .gallery {
    padding-bottom: 15.625vw;
  }
}
@media (max-width: 767px) {
  .gallery {
    padding-bottom: 30.7692307692vw;
  }
}
@media (max-width: 767px) {
  .gallery .container {
    padding: 0;
  }
}
.gallery__decor {
  position: absolute;
  bottom: -3.75vw;
  left: 5.9375vw;
  z-index: 1;
  width: 7.1875vw;
  height: 7.1875vw;
}
@media (max-width: 1200px) {
  .gallery__decor {
    bottom: -7.8125vw;
    left: 12.3697916667vw;
    width: 14.9739583333vw;
    height: 14.9739583333vw;
  }
}
@media (max-width: 767px) {
  .gallery__decor {
    bottom: -15.3846153846vw;
    left: 2.5641025641vw;
    width: 29.4871794872vw;
    height: 29.4871794872vw;
  }
}
.gallery__decor img {
  width: 100%;
  height: 100%;
}
.gallery__background {
  position: absolute;
  left: 0;
  top: 16.875vw;
  width: 100%;
  height: calc(100% - 16.875vw);
  overflow: hidden;
}
@media (max-width: 1200px) {
  .gallery__background {
    top: 35.15625vw;
    height: calc(100% - 35.15625vw);
  }
}
@media (max-width: 767px) {
  .gallery__background {
    top: 25.641025641vw;
    left: -4%;
    height: calc(100% - 25.641025641vw);
    width: 108%;
  }
}
.gallery__background img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
}
@media (max-width: 767px) {
  .gallery__background img {
    transform: scale(1);
  }
}
.gallery__wrapper {
  position: relative;
  z-index: 1;
}
.gallery__inner {
  position: relative;
}
.gallery__items {
  position: relative;
  display: flex;
  gap: 0.5vw;
  margin-top: 1.5vw;
}
@media (max-width: 1200px) {
  .gallery__items {
    gap: 1.0416666667vw;
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .gallery__items {
    flex-direction: column;
    margin-top: 8.9743589744vw;
  }
}
.gallery__items-icon {
  position: absolute;
  right: -2.5vw;
  top: -2.5vw;
  z-index: 1;
  width: 6.625vw;
  height: 5.75vw;
}
@media (max-width: 1200px) {
  .gallery__items-icon {
    right: -2.6041666667vw;
    top: -2.6041666667vw;
    width: 8.0729166667vw;
    height: 7.2916666667vw;
  }
}
@media (max-width: 767px) {
  .gallery__items-icon {
    right: 5.1282051282vw;
    top: -10.2564102564vw;
    width: 15.8974358974vw;
    height: 14.358974359vw;
  }
}
.gallery__items-icon img {
  width: 100%;
  height: 100%;
}
.gallery__items-decor {
  position: absolute;
  left: -7.6875vw;
  bottom: -8.4375vw;
  z-index: -1;
  width: 89.875vw;
  height: 26.0625vw;
}
@media (max-width: 1200px) {
  .gallery__items-decor {
    left: -16.015625vw;
    bottom: -17.578125vw;
    width: 187.2395833333vw;
    height: 54.296875vw;
  }
}
@media (max-width: 767px) {
  .gallery__items-decor {
    left: -16%;
    top: 5%;
    bottom: unset;
    width: 134.8717948718vw;
    height: 453.3333333333vw;
  }
}
.gallery__items-decor svg {
  width: 100%;
  height: 100%;
}
.gallery__items-decor svg:first-child {
  display: block;
}
@media (max-width: 767px) {
  .gallery__items-decor svg:first-child {
    display: none;
  }
}
.gallery__items-decor svg:nth-child(2) {
  display: none;
}
@media (max-width: 767px) {
  .gallery__items-decor svg:nth-child(2) {
    display: block;
  }
}
.gallery__header {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .gallery__header {
    padding: 0 5.1282051282vw;
  }
}
@media (max-width: 767px) {
  .gallery__item {
    position: relative;
    width: 100%;
  }
}
.gallery__item-inner {
  position: relative;
  z-index: 1;
  padding-left: 3.5625vw;
}
@media (max-width: 1200px) {
  .gallery__item-inner {
    padding-left: 0vw;
  }
}
@media (max-width: 767px) {
  .gallery__item-inner {
    max-width: 97.4358974359vw;
    padding-left: 17.6923076923vw;
    padding-bottom: 12.8205128205vw;
  }
}
.gallery__item-decor {
  position: absolute;
  left: -2.4375vw;
  bottom: 2.1875vw;
  width: 0.5vw;
  height: 3.625vw;
}
@media (max-width: 1200px) {
  .gallery__item-decor {
    left: 1.6927083333vw;
    bottom: 3.90625vw;
    width: 1.0416666667vw;
    height: 7.5520833333vw;
  }
}
@media (max-width: 767px) {
  .gallery__item-decor {
    left: -8.7179487179vw;
    bottom: 7.6923076923vw;
    width: 2.0512820513vw;
    height: 12.8205128205vw;
  }
}
.gallery__item-decor svg {
  width: 100%;
  height: 100%;
}
.gallery__item-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75vw;
  margin-top: 1.5625vw;
}
@media (max-width: 1200px) {
  .gallery__item-title {
    gap: 1.5625vw;
    margin-top: 3.2552083333vw;
    font-size: 2.34375vw;
    padding-left: 6.1197916667vw;
  }
}
@media (max-width: 767px) {
  .gallery__item-title {
    gap: 3.0769230769vw;
    margin-top: 6.4102564103vw;
    font-size: 6.1538461538vw;
    padding-left: 0;
  }
}
.gallery__item-title > svg {
  position: absolute;
  left: -3.5625vw;
  height: 1.4375vw;
  width: 3.25vw;
}
@media (max-width: 1200px) {
  .gallery__item-title > svg {
    left: 0vw;
    height: 2.9947916667vw;
    width: 4.5572916667vw;
  }
}
@media (max-width: 767px) {
  .gallery__item-title > svg {
    left: -13.5897435897vw;
    height: 7.6923076923vw;
    width: 11.0256410256vw;
  }
}
.gallery__item-subtitle {
  font-style: normal;
  font-weight: 600;
  font-size: 1vw;
  line-height: 1.25vw;
  color: #E84132;
  margin-top: 1vw;
}
@media (max-width: 1200px) {
  .gallery__item-subtitle {
    font-size: 1.953125vw;
    line-height: 2.6041666667vw;
    margin-top: 2.0833333333vw;
  }
}
@media (max-width: 767px) {
  .gallery__item-subtitle {
    font-size: 4.1025641026vw;
    line-height: 5.1282051282vw;
    margin-top: 4.1025641026vw;
  }
}
.gallery__item-desc {
  margin-top: 0.3125vw;
  font-weight: 400;
  font-size: 0.875vw;
  line-height: 1.1875vw;
  color: #FFFFFF;
}
@media (max-width: 1200px) {
  .gallery__item-desc {
    margin-top: 0.6510416667vw;
    font-size: 1.8229166667vw;
    line-height: 2.4739583333vw;
  }
}
@media (max-width: 767px) {
  .gallery__item-desc {
    margin-top: 1.2820512821vw;
    font-size: 3.5897435897vw;
    line-height: 4.8717948718vw;
  }
}
.gallery__item-img {
  position: relative;
  width: 24.625vw;
  height: 32.625vw;
}
@media (max-width: 1200px) {
  .gallery__item-img {
    width: 31.25vw;
    height: 41.9270833333vw;
  }
}
@media (max-width: 767px) {
  .gallery__item-img {
    width: 100%;
    height: 98.9743589744vw;
  }
}
.gallery__item-img {
  overflow: hidden;
}
.gallery__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.gallery__item-img img:hover {
  transform: scale(1.02);
}
.gallery__receive {
  position: relative;
  margin-top: 15.3125vw;
}
@media (max-width: 1200px) {
  .gallery__receive {
    margin-top: 31.9010416667vw;
  }
}
@media (max-width: 767px) {
  .gallery__receive {
    margin-top: 11.5384615385vw;
    padding: 0 5.1282051282vw;
  }
}
.gallery__receive-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .gallery__receive-header {
    flex-direction: column-reverse;
    gap: 14.358974359vw;
  }
}
@media (max-width: 1200px) {
  .gallery__receive-title {
    max-width: 45.5729166667vw;
  }
}
@media (max-width: 767px) {
  .gallery__receive-title {
    max-width: 100%;
  }
}
.gallery__receive-items {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 3.4375vw;
  gap: 3vw;
}
@media (max-width: 1200px) {
  .gallery__receive-items {
    margin-top: 7.1614583333vw;
    gap: 6.25vw;
  }
}
@media (max-width: 767px) {
  .gallery__receive-items {
    grid-template-columns: 1fr;
    gap: 9.2307692308vw;
  }
}
.gallery__receive-btn {
  position: relative;
  font-family: "Unbounded", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 0.875vw;
  line-height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  padding: 1.5vw 4.125vw;
  background: #000000;
  border: 1px solid #FFFFFF;
  border-radius: 3.3125vw;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1200px) {
  .gallery__receive-btn {
    font-size: 1.8229166667vw;
    padding: 3.125vw 8.59375vw;
    border-radius: 6.9010416667vw;
  }
}
@media (max-width: 767px) {
  .gallery__receive-btn {
    font-size: 3.5897435897vw;
    padding: 6.1538461538vw 16.9230769231vw;
    border-radius: 13.5897435897vw;
  }
}
.gallery__receive-btn:before {
  content: "";
  position: absolute;
  left: -7.8125vw;
  width: 9.875vw;
  height: 1px;
  background: #fff;
  transform-origin: right;
  transform: scaleX(1);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1200px) {
  .gallery__receive-btn:before {
    left: -9.765625vw;
    width: 13.28125vw;
  }
}
@media (max-width: 767px) {
  .gallery__receive-btn:before {
    left: -17.9487179487vw;
    width: 26.1538461538vw;
  }
}
.gallery__receive-btn-circle {
  position: absolute;
  left: 1.4375vw;
  width: 1.125vw;
  height: 1.125vw;
}
@media (max-width: 1200px) {
  .gallery__receive-btn-circle {
    left: 2.9947916667vw;
    width: 2.34375vw;
    height: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .gallery__receive-btn-circle {
    left: 5.8974358974vw;
    width: 4.6153846154vw;
    height: 4.6153846154vw;
  }
}
.gallery__receive-btn-circle svg {
  width: 100%;
  height: 100%;
}
.gallery__receive-btn:hover {
  background: rgba(253, 253, 253, 0.25);
}
.gallery__receive-btn:hover:before {
  transform: scaleX(0);
}
.gallery__receive-item-icon {
  width: 2vw;
  height: 2vw;
}
@media (max-width: 1200px) {
  .gallery__receive-item-icon {
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
}
@media (max-width: 767px) {
  .gallery__receive-item-icon {
    width: 8.2051282051vw;
    height: 8.2051282051vw;
  }
}
.gallery__receive-item-icon svg {
  width: 100%;
  height: 100%;
}
.gallery__receive-item-title {
  position: relative;
  gap: 0.75vw;
  font-weight: 600;
  font-size: 1.125vw;
  line-height: 100%;
  display: flex;
  align-items: center;
  color: #e84132;
}
@media (max-width: 1200px) {
  .gallery__receive-item-title {
    gap: 1.5625vw;
    font-size: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .gallery__receive-item-title {
    gap: 4.1025641026vw;
    font-size: 4.6153846154vw;
  }
}
.gallery__receive-item-desc {
  font-weight: 500;
  font-size: 0.9375vw;
  line-height: 1.125vw;
  color: #FFFFFF;
  margin-top: 1vw;
}
@media (max-width: 1200px) {
  .gallery__receive-item-desc {
    font-size: 1.953125vw;
    line-height: 2.34375vw;
    margin-top: 2.0833333333vw;
  }
}
@media (max-width: 767px) {
  .gallery__receive-item-desc {
    font-size: 3.8461538462vw;
    line-height: 4.6153846154vw;
    margin-top: 4.1025641026vw;
  }
}

.video-intro {
  position: relative;
  padding: 7.5vw 0 7.5vw;
}
@media (max-width: 1200px) {
  .video-intro {
    padding: 15.625vw 0 15.625vw;
  }
}
@media (max-width: 767px) {
  .video-intro {
    padding: 26.9230769231vw 0 8.9743589744vw;
  }
  .video-intro .container {
    padding: 0 3.8461538462vw;
  }
}
.video-intro__wrapper {
  max-width: 56.25vw;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 1200px) {
  .video-intro__wrapper {
    max-width: 117.1875vw;
  }
}
.video-intro__title {
  line-height: 125%;
}
.video-intro__title span {
  display: block;
}
.video-intro__subtitle {
  font-weight: 400;
  font-size: 1.25vw;
  line-height: 1.5vw;
  text-align: center;
  color: #000000;
  margin-top: 1.4375vw;
}
@media (max-width: 1200px) {
  .video-intro__subtitle {
    font-size: 2.6041666667vw;
    line-height: 3.125vw;
    margin-top: 2.9947916667vw;
  }
}
@media (max-width: 767px) {
  .video-intro__subtitle {
    font-size: 5.1282051282vw;
    line-height: 6.1538461538vw;
    margin-top: 5.8974358974vw;
  }
}
.video-intro__video {
  position: relative;
  display: block;
  height: 25.125vw;
  max-width: 52.5vw;
  width: 100%;
  margin: 5.1875vw auto 0;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}
@media (max-width: 1200px) {
  .video-intro__video {
    height: 52.34375vw;
    max-width: 109.375vw;
    margin: 10.8072916667vw auto 0;
  }
}
@media (max-width: 767px) {
  .video-intro__video {
    height: 52.5641025641vw;
    max-width: 215.3846153846vw;
    margin: 9.7435897436vw auto 0;
  }
}
.video-intro__video img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.video-intro__video img:hover {
  transform: scale(1.02);
}
.video-intro__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-intro__video:hover img {
  transform: scale(1.02);
}
.video-intro__video:hover .video-intro__play {
  transform: translate(-50%, -50%) scale(1.06);
}
.video-intro__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4.25vw;
  height: 3vw;
  border-radius: 1vw;
  background: #FF311F;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 0.75vw 2vw rgba(255, 49, 31, 0.24);
  border: 0;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .video-intro__play {
    width: 8.8541666667vw;
    height: 6.25vw;
    border-radius: 2.0833333333vw;
    box-shadow: 0 1.5625vw 4.1666666667vw rgba(255, 49, 31, 0.24);
  }
}
@media (max-width: 767px) {
  .video-intro__play {
    width: 17.4358974359vw;
    height: 12.3076923077vw;
    border-radius: 4.1025641026vw;
  }
}

.join {
  position: relative;
  background: rgba(253, 251, 218, 0.3);
  padding: 0 0 5.9375vw;
  margin-top: 2.8125vw;
}
@media (max-width: 1200px) {
  .join {
    padding: 0 0 12.3697916667vw;
    margin-top: 5.859375vw;
  }
}
@media (max-width: 767px) {
  .join {
    padding: 0 0 13.8461538462vw;
    margin-top: 11.5384615385vw;
  }
  .join .container {
    padding: 0 3.8461538462vw;
  }
}
.join__ticker {
  position: absolute;
  top: -3.125vw;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 7.125vw;
  overflow: hidden;
  margin-top: 0px;
}
@media (max-width: 1200px) {
  .join__ticker {
    top: -6.5104166667vw;
    left: -88%;
    width: 250%;
    min-height: 33.0729166667vw;
  }
}
@media (max-width: 767px) {
  .join__ticker {
    left: 0;
    min-height: 29.2307692308vw;
    width: 100%;
  }
}
.join__ticker img {
  width: 100%;
  height: 100%;
}
.join__message {
  display: none;
  padding: 0.9375vw;
  border-radius: 0.5vw;
  font-size: 1vw;
  font-weight: 500;
  text-align: center;
  margin-top: 0.9375vw;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (max-width: 1200px) {
  .join__message {
    padding: 1.953125vw;
    border-radius: 1.0416666667vw;
    font-size: 2.0833333333vw;
    margin-top: 1.953125vw;
  }
}
@media (max-width: 767px) {
  .join__message {
    padding: 3.8461538462vw;
    border-radius: 2.0512820513vw;
    font-size: 3.5897435897vw;
    margin-top: 3.8461538462vw;
  }
}
.join__message--success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.join__message--error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.join__message--visible {
  opacity: 1;
}
.join__wrapper {
  padding-top: 10.625vw;
}
@media (max-width: 1200px) {
  .join__wrapper {
    padding-top: 22.1354166667vw;
  }
}
@media (max-width: 767px) {
  .join__wrapper {
    padding-top: 34.8717948718vw;
  }
}
.join__top {
  max-width: 57.1875vw;
  width: 100%;
}
@media (max-width: 1200px) {
  .join__top {
    max-width: 119.140625vw;
  }
}
.join__title {
  font-family: "Unbounded", sans-serif;
  font-size: 1.5vw;
  font-weight: 700;
  line-height: 1.35;
  color: #B91D0F;
}
@media (max-width: 1200px) {
  .join__title {
    font-size: 3.125vw;
  }
}
.join__subtitle {
  margin-top: 0.625vw;
  max-width: 36.25vw;
  width: 100%;
  font-weight: 500;
  font-size: 1vw;
  line-height: 125%;
  color: #000000;
}
@media (max-width: 1200px) {
  .join__subtitle {
    margin-top: 1.3020833333vw;
    max-width: 75.5208333333vw;
    font-size: 2.0833333333vw;
  }
}
@media (max-width: 767px) {
  .join__subtitle {
    margin-top: 6.1538461538vw;
    max-width: 148.7179487179vw;
    font-size: 4.1025641026vw;
  }
}
.join__content {
  display: flex;
  justify-content: space-between;
  gap: 1.25vw;
  margin-top: 2.5vw;
}
@media (max-width: 1200px) {
  .join__content {
    gap: 2.6041666667vw;
    margin-top: 5.2083333333vw;
    flex-direction: column-reverse;
  }
}
.join__note {
  position: relative;
  max-width: 31.875vw;
  width: 100%;
  padding-top: 3.4375vw;
}
@media (max-width: 1200px) {
  .join__note {
    max-width: 66.40625vw;
    padding-top: 7.1614583333vw;
    align-self: center;
  }
}
@media (max-width: 767px) {
  .join__note {
    max-width: 100%;
    padding-top: 14.1025641026vw;
    align-self: center;
  }
}
.join__note-decor {
  position: absolute;
  left: -6.25vw;
  top: 0px;
}
@media (max-width: 1200px) {
  .join__note-decor {
    left: -13.0208333333vw;
  }
}
@media (max-width: 767px) {
  .join__note-decor {
    left: -33.3333333333vw;
    top: -3.3333333333vw;
  }
}
.join__note-decor svg {
  width: 37.1875vw;
  height: 22.3125vw;
}
@media (max-width: 1200px) {
  .join__note-decor svg {
    width: 77.4739583333vw;
    height: 46.484375vw;
  }
}
@media (max-width: 767px) {
  .join__note-decor svg {
    width: 152.5641025641vw;
    height: 91.5384615385vw;
  }
}
.join__note-text {
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: 1.25vw;
  line-height: 150%;
  color: #000000;
  padding-left: 2.5vw;
}
@media (max-width: 1200px) {
  .join__note-text {
    font-size: 2.6041666667vw;
    padding-left: 5.2083333333vw;
  }
}
@media (max-width: 767px) {
  .join__note-text {
    font-size: 4.1025641026vw;
    padding-left: 0;
  }
}
.join__note-text strong {
  display: block;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.76);
  margin-top: 2.0625vw;
}
@media (max-width: 1200px) {
  .join__note-text strong {
    margin-top: 4.296875vw;
  }
}
@media (max-width: 767px) {
  .join__note-text strong {
    margin-top: 6.1538461538vw;
    font-size: 5.1282051282vw;
  }
}
.join__form {
  max-width: 36.5625vw;
  width: 100%;
  padding-top: 0px;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}
@media (max-width: 1200px) {
  .join__form {
    max-width: 76.171875vw;
    gap: 3.125vw;
  }
}
@media (max-width: 767px) {
  .join__form {
    max-width: 150vw;
    gap: 6.1538461538vw;
  }
}
.join__field {
  display: block;
  position: relative;
}
.join__field span {
  position: absolute;
  left: 0.75vw;
  top: 1.125vw;
  font-size: 1vw;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.42);
  pointer-events: none;
  transition: all 0.25s ease;
}
@media (max-width: 1200px) {
  .join__field span {
    left: 1.5625vw;
    top: 2.34375vw;
    font-size: 2.0833333333vw;
  }
}
@media (max-width: 767px) {
  .join__field span {
    left: 3.0769230769vw;
    top: 4.6153846154vw;
    font-size: 4.1025641026vw;
  }
}
.join__field input {
  width: 100%;
  padding: 1.1875vw 0.75vw 0.875vw;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #3D3D3D;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125vw;
  color: #000;
  outline: none;
  transition: border-color 0.25s ease;
}
@media (max-width: 1200px) {
  .join__field input {
    padding: 2.4739583333vw 1.5625vw 1.8229166667vw;
    font-size: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .join__field input {
    padding: 4.8717948718vw 3.0769230769vw 3.5897435897vw;
    font-size: 4.6153846154vw;
  }
}
.join__field input:focus ~ span, .join__field input:not(:placeholder-shown) ~ span {
  top: 0;
  font-size: 0.8125vw;
  color: #000;
}
@media (max-width: 1200px) {
  .join__field input:focus ~ span, .join__field input:not(:placeholder-shown) ~ span {
    font-size: 1.6927083333vw;
  }
}
@media (max-width: 767px) {
  .join__field input:focus ~ span, .join__field input:not(:placeholder-shown) ~ span {
    font-size: 3.3333333333vw;
  }
}
.join__field input:focus {
  border-bottom-color: #000;
}
.join__actions {
  display: flex;
  align-items: center;
  gap: 1.375vw;
  margin-top: 0.75vw;
}
@media (max-width: 1200px) {
  .join__actions {
    gap: 2.8645833333vw;
    margin-top: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .join__actions {
    gap: 1.5384615385vw;
    margin-top: 3.0769230769vw;
  }
}
.join__caption {
  font-weight: 500;
  font-size: 0.875vw;
  line-height: 1.1875vw;
  color: #000000;
}
@media (max-width: 1200px) {
  .join__caption {
    font-size: 1.8229166667vw;
    line-height: 2.4739583333vw;
  }
}
@media (max-width: 767px) {
  .join__caption {
    font-size: 2.5641025641vw;
    line-height: 125%;
  }
}

.footer {
  position: sticky;
  bottom: 0;
  background: #000;
  padding: 2.1875vw 0 2.9375vw;
}
@media (max-width: 1200px) {
  .footer {
    padding: 4.5572916667vw 0 5.859375vw;
  }
}
@media (max-width: 767px) {
  .footer {
    position: relative;
    padding: 8.9743589744vw 0 8.9743589744vw;
  }
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6.25vw;
}
@media (max-width: 1200px) {
  .footer__top {
    gap: 13.0208333333vw;
  }
}
@media (max-width: 767px) {
  .footer__top {
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }
}
.footer__info {
  max-width: 34.375vw;
  width: 100%;
}
@media (max-width: 1200px) {
  .footer__info {
    max-width: 71.6145833333vw;
  }
}
@media (max-width: 767px) {
  .footer__info {
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
.footer__logo {
  display: inline-flex;
  width: 3.375vw;
  height: 3.375vw;
}
@media (max-width: 1200px) {
  .footer__logo {
    width: 7.03125vw;
    height: 7.03125vw;
  }
}
@media (max-width: 767px) {
  .footer__logo {
    width: 13.8461538462vw;
    height: 13.8461538462vw;
  }
}
.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}
.footer__logo img:hover {
  transform: rotate(-45deg);
}
.footer__text {
  margin-top: 1.5625vw;
  font-style: normal;
  font-weight: 300;
  font-size: 0.875vw;
  line-height: 1.3125vw;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
@media (max-width: 1200px) {
  .footer__text {
    margin-top: 3.2552083333vw;
    font-size: 1.8229166667vw;
    line-height: 2.734375vw;
  }
}
@media (max-width: 767px) {
  .footer__text {
    margin-top: 6.4102564103vw;
    font-size: 3.5897435897vw;
    line-height: 5.3846153846vw;
  }
}
.footer__nav {
  max-width: 32.5vw;
  width: 100%;
  padding-top: 4.875vw;
}
@media (max-width: 1200px) {
  .footer__nav {
    max-width: 67.7083333333vw;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .footer__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }
}
.footer__nav-title {
  font-family: "Unbounded", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.9375vw;
  line-height: 1.1875vw;
  color: #FFFFFF;
}
@media (max-width: 1200px) {
  .footer__nav-title {
    font-size: 1.953125vw;
    line-height: 2.4739583333vw;
  }
}
@media (max-width: 767px) {
  .footer__nav-title {
    font-size: 3.8461538462vw;
    line-height: 4.8717948718vw;
  }
}
.footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw;
  list-style: none;
  margin-top: 1vw;
  padding: 0;
}
@media (max-width: 1200px) {
  .footer__menu {
    gap: 3.125vw;
    margin-top: 2.0833333333vw;
  }
}
@media (max-width: 767px) {
  .footer__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    gap: 6.1538461538vw;
    margin-top: 4.1025641026vw;
  }
}
.footer__menu a {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 0.9375vw;
  line-height: 1.125vw;
  color: #FFFFFF;
  z-index: 1;
}
@media (max-width: 1200px) {
  .footer__menu a {
    font-size: 1.953125vw;
    line-height: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .footer__menu a {
    font-size: 3.8461538462vw;
    line-height: 4.6153846154vw;
  }
}
.footer__menu a:before {
  content: "";
  position: absolute;
  bottom: -0.125vw;
  left: -20%;
  height: 0.5vw;
  width: 0;
  background: #B91D0F;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
@media (max-width: 1200px) {
  .footer__menu a:before {
    bottom: -0.2604166667vw;
    height: 1.0416666667vw;
  }
}
@media (max-width: 767px) {
  .footer__menu a:before {
    bottom: -0.5128205128vw;
    height: 2.0512820513vw;
  }
}
.footer__menu a:hover:before {
  width: 120%;
}
.footer__bottom {
  margin-top: 4vw;
  padding-top: 2.25vw;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.875vw;
  font-weight: 300;
  font-size: 0.875vw;
  line-height: 1.3125vw;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1200px) {
  .footer__bottom {
    margin-top: 8.3333333333vw;
    padding-top: 4.6875vw;
    gap: 1.8229166667vw;
    font-size: 1.8229166667vw;
    line-height: 2.734375vw;
  }
}
@media (max-width: 767px) {
  .footer__bottom {
    flex-wrap: nowrap;
    margin-top: 14.1025641026vw;
    padding-top: 10vw;
    gap: 1.2820512821vw;
    font-size: 2.8205128205vw;
    line-height: 5.3846153846vw;
  }
}
.footer__bottom a {
  color: rgba(255, 255, 255, 0.8);
}