@-webkit-keyframes icon-up {
  0% {
    transform: translateY(0);
  }
  49% {
    transform: translateY(-110%);
  }
  50% {
    transform: translateY(110%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes icon-up {
  0% {
    transform: translateY(0);
  }
  49% {
    transform: translateY(-110%);
  }
  50% {
    transform: translateY(110%);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes icon-down {
  0% {
    transform: translateY(0);
  }
  49% {
    transform: translateY(110%);
  }
  50% {
    transform: translateY(-110%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes icon-down {
  0% {
    transform: translateY(0);
  }
  49% {
    transform: translateY(110%);
  }
  50% {
    transform: translateY(-110%);
  }
  100% {
    transform: translateY(0);
  }
}
.button {
  position: relative;
  display: flex;
  padding: 16px 24px 16px 24px;
  align-items: center;
  gap: 8px;
  border-radius: 56px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-transform: uppercase;
  --icon-shift: 14px;
  justify-content: center;
}
@media (max-width: 580px) {
  .button.full_width__mobile {
    width: 100%;
  }
}
.button.primary, .button:focus {
  background: #FF4600;
  color: #FFFFFF;
}
.button.primary:hover, .button:focus:hover {
  box-shadow: 0 6px 18px 0 rgba(255, 70, 0, 0.3);
}
.button.secondary {
  background: #FFFFFF;
  color: #17171C;
  border: 1px solid #17171C;
}
.button.secondary:hover, .button.secondary:focus {
  border-color: #FF4600;
  color: #FF4600;
}
.button .btn-icon {
  display: inline-flex;
  overflow: hidden;
  width: 10px;
  height: 10px;
}
.button .btn-icon svg {
  flex-shrink: 0;
  -webkit-animation: icon-down 0.4s ease forwards;
          animation: icon-down 0.4s ease forwards;
}
.button:hover .btn-icon svg {
  -webkit-animation: icon-up 0.4s ease forwards;
          animation: icon-up 0.4s ease forwards;
}
.button.no_icon {
  padding: 16px 24px;
}
.button.no_icon::before, .button.no_icon::after {
  display: none;
}
#wpadminbar {
  position: fixed !important;
  opacity: 0;
  transition: opacity 0.2s ease;
}
#wpadminbar:hover {
  opacity: 1;
}
.preloader {
  background-color: #F9F9FB;
  width: 100%;
  height: 100%;
  z-index: 10001;
  position: fixed;
  left: 0;
  top: 0;
  visibility: visible;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.preloader_hide {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
html,
body {
  margin-top: 0 !important;
}
body {
  font-family: "General Sans", sans-serif;
  background: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #17171C;
}
.container {
  max-width: 1336px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
img {
  vertical-align: middle;
  max-width: 100%;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
p {
  margin-bottom: 16px;
}
p:last-child {
  margin-bottom: 0;
}
.no-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .hide_medium {
    display: none !important;
  }
}
@media screen and (min-width: 992px) {
  .hide_large {
    display: none !important;
  }
}
@media screen and (max-width: 580px) {
  .hide_mobile {
    display: none !important;
  }
}
.only_mobile {
  display: none;
}
@media screen and (max-width: 479px) {
  .only_mobile {
    display: flex;
  }
}
/*
* HEADER STYLES
*/
header {
  position: -webkit-sticky;
  position: sticky;
  border-bottom: 1px solid #F7F7F7;
  top: 0;
  background: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
  transition: all 0.3s ease;
  z-index: 98;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  max-width: 100%;
}
header.sticky {
  max-width: 900px;
  border-bottom: 0px;
  border-radius: 100px;
  padding: 0px;
  top: 20px;
}
header.sticky .header_row {
  padding: 6px 0;
}
header * {
  transition: all 0.3s ease;
}
header .logo {
  max-width: 150px;
}
header .menu_list {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
  row-gap: 10px;
}
header .menu_list .menu_item a {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #17171C;
  transition: all 0.3s ease;
}
header .menu_list .menu_item a:hover {
  color: #FF4600;
}
header .header_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
@media (max-width: 991px) {
  header .header_row {
    gap: 16px;
  }
  header .header_row .logo {
    max-width: 100%;
    flex-grow: 1;
  }
  header .header_row .logo img {
    max-width: 150px;
  }
}
/* SANDWICH */
.mobile__menu {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.menu-text {
  margin-left: auto;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}
.sandwich {
  width: 36px;
  height: 36px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.sandwich * {
  transition: all 0.5s cubic-bezier(0.47, 0.02, 0.03, 0.86);
}
.sandwich span {
  width: 34px;
  height: 2px;
  background: #000000;
  position: absolute;
}
.sandwich .sand {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.sandwich .sand span:nth-child(1) {
  top: 12px;
  left: 0;
}
.sandwich .sand span:nth-child(2) {
  top: 20px;
  left: 0;
}
.sandwich .sand span:nth-child(3) {
  top: 28px;
  left: 0;
}
.sandwich .closed {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 2px;
  z-index: 2;
  opacity: 1;
  overflow: hidden;
  transform: rotate(45deg);
  transform-origin: center;
}
.sandwich .closed span:nth-child(1) {
  width: 36px;
  top: 17px;
  left: 0;
  transform: rotate(0deg) translateX(-130%);
  transition-delay: 0.3s;
}
.sandwich .closed span:nth-child(2) {
  width: 36px;
  top: 17px;
  right: 0;
  transform: rotate(90deg) translateX(-130%);
  transition-delay: 0.45s;
}
.sandwich:hover .sand span:nth-child(1) {
  width: 26px;
}
.sandwich:hover .sand span:nth-child(2) {
  width: 26px;
  left: 10px;
}
.sandwich:hover .sand span:nth-child(3) {
  width: 26px;
}
.sandwich.active {
  position: relative;
}
.sandwich.active .sand span:nth-child(1) {
  width: 0;
}
.sandwich.active .sand span:nth-child(2) {
  width: 0;
  left: 0;
  transition-delay: 0.15s;
}
.sandwich.active .sand span:nth-child(3) {
  width: 0;
  left: 0;
  transition-delay: 0.15s;
}
.sandwich.active .closed span:nth-child(1) {
  width: 36px;
  transform: rotate(0deg) translateX(0);
}
.sandwich.active .closed span:nth-child(2) {
  width: 36px;
  transform: rotate(90deg) translateX(0);
  transition-delay: 0.15s;
}
.display-nav .sandwich {
  position: relative;
}
.display-nav .sandwich .sand span:nth-child(1) {
  width: 0;
}
.display-nav .sandwich .sand span:nth-child(2) {
  width: 0;
  left: 0;
  transition-delay: 0.15s;
}
.display-nav .sandwich .sand span:nth-child(3) {
  width: 0;
  left: 0;
  transition-delay: 0.15s;
}
.display-nav .sandwich:hover .sand span:nth-child(1) {
  width: 0;
}
.display-nav .sandwich:hover .sand span:nth-child(2) {
  width: 0;
  left: 10px;
}
.display-nav .sandwich .closed span:nth-child(1) {
  width: 36px;
  transform: rotate(0deg) translateX(0);
}
.display-nav .sandwich .closed span:nth-child(2) {
  width: 36px;
  transform: rotate(90deg) translateX(0);
  transition-delay: 0.15s;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.site-header {
  position: relative;
  z-index: 100;
}
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 64px 0;
}
.hero__section {
  text-align: center;
}
.hero__section_title h1 {
  max-width: 436px;
  margin: 0 auto 24px;
}
.hero__section_description {
  max-width: 476px;
  margin: 0 auto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #666666;
}
.hero__section_description p:last-child {
  margin-bottom: 0;
}
.hero__section .hero__section_button {
  margin-top: 24px;
}
.hero__section_gallery {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}
.hero__section_gallery_track {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  -webkit-animation: hero-gallery-marquee 28s linear infinite;
          animation: hero-gallery-marquee 28s linear infinite;
  will-change: transform;
}
.hero__section_gallery_group {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  padding-right: 16px;
  flex: 0 0 auto;
}
.hero__section_gallery_image {
  height: 100%;
  max-height: 448px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  display: block;
  flex: 0 0 auto;
}
@-webkit-keyframes hero-gallery-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}
@keyframes hero-gallery-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}
.loading {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}
.loading.loaded {
  opacity: 1;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  -webkit-animation: fadeIn 0.5s ease-in forwards;
          animation: fadeIn 0.5s ease-in forwards;
}
.primary_btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
  background: #FF4600;
  padding: 16px 32px;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #ffffff;
  transition: all 0.3s ease;
  margin-top: 24px;
}
.primary_btn:hover {
  background: #FF4600;
  color: #ffffff;
}
.icon_btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 14px 16px 14px 32px;
  color: #181818;
  font-weight: 500;
  transition: all 0.3s ease;
}
.icon_btn:before {
  position: absolute;
  content: "";
  width: 26px;
  height: 18px;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='26' height='18' viewBox='0 0 26 18' fill='none'><path d='M19.7074 8.92156L26 15.0723L23.1695 17.8411L15.0843 9.9382V18H10.9157V9.94024L9.12522 11.6883L2.83053 17.8411L0 15.0723L6.29261 8.91952L0 2.76876L2.83053 0L10.9157 7.90289V0H15.0843V7.90085L16.8748 6.1528L23.1695 0L26 2.76876L19.7074 8.92156Z' fill='%23181818'/></svg>");
  transition: all 0.3s ease;
}
.icon_btn:hover {
  color: #FF4600;
}
.icon_btn:hover:before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='26' height='18' viewBox='0 0 26 18' fill='none'><path d='M19.7074 8.92156L26 15.0723L23.1695 17.8411L15.0843 9.9382V18H10.9157V9.94024L9.12522 11.6883L2.83053 17.8411L0 15.0723L6.29261 8.91952L0 2.76876L2.83053 0L10.9157 7.90289V0H15.0843V7.90085L16.8748 6.1528L23.1695 0L26 2.76876L19.7074 8.92156Z' fill='%23B015FF'/></svg>");
}
.icon_btn.icon_white_btn {
  color: #ffffff;
}
.icon_btn.icon_white_btn:before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='26' height='18' viewBox='0 0 26 18' fill='none'><path d='M19.7074 8.92156L26 15.0723L23.1695 17.8411L15.0843 9.9382V18H10.9157V9.94024L9.12522 11.6883L2.83053 17.8411L0 15.0723L6.29261 8.91952L0 2.76876L2.83053 0L10.9157 7.90289V0H15.0843V7.90085L16.8748 6.1528L23.1695 0L26 2.76876L19.7074 8.92156Z' fill='%23ffffff'/></svg>");
}
.icon_btn.icon_white_btn:hover {
  color: #FF4600;
}
.icon_btn.icon_white_btn:hover:before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='26' height='18' viewBox='0 0 26 18' fill='none'><path d='M19.7074 8.92156L26 15.0723L23.1695 17.8411L15.0843 9.9382V18H10.9157V9.94024L9.12522 11.6883L2.83053 17.8411L0 15.0723L6.29261 8.91952L0 2.76876L2.83053 0L10.9157 7.90289V0H15.0843V7.90085L16.8748 6.1528L23.1695 0L26 2.76876L19.7074 8.92156Z' fill='%23B015FF'/></svg>");
}
