/* legacy.css — keep: element-animation, header/mob, swiper, modal, tv/mac, licenses invert, anime-js; layout on Tailwind */

:root {
  --main-font: "Inter", sans-serif;
  --green-color: rgb(21, 150, 0);
  --black-color: rgb(38, 38, 38);
  --gray-color: rgb(236, 236, 236);
}

/* TW font lock — keep Inter after legacy resets */
html,
body {
  font-family: "Inter", sans-serif;
  color: rgb(38, 38, 38);
}


.element-show,
.element-animation {
  transition: all 0.5s ease !important;
}
.element-animation {
  opacity: 0;
}
.element-show {
  opacity: 1;
}
h1.element-animation,
h2.element-animation,
h3.element-animation,
h4.element-animation,
h6.element-animation {
  transform: translate(-50px, -50px);
}
h1.element-show,
h2.element-show,
h3.element-show,
h4.element-show,
h6.element-show {
  transform: translate(0, 0);
}
p.element-animation {
  transform: translate(15px, 5px);
}
p.element-show {
  transform: translate(0, 0);
}
.small-animate {
  transition: all 0.4s ease;
}

/* Desktop header dropdown (JS hooks) */
header .parent-nav {
  position: relative;
}
header .parent-nav .dropdown {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
header .parent-nav .dropdown::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("/images/icons/dropdown.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
  transition: all 0.3s ease;
}
header .parent-nav.active-parent .dropdown,
header .active-nav > a {
  color: rgb(21, 150, 0) !important;
}
header .parent-nav.active-parent .dropdown::after {
  transform: rotate(0deg);
}
header .sub-nav {
  display: none;
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  width: max-content;
  min-width: 200px;
  padding: 24px;
  list-style: none;
  background: #fff;
  border: 1px solid rgb(220, 222, 221);
  border-radius: 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  z-index: 50;
}
header .sub-nav.active-sub {
  display: flex;
}
header .sub-nav li a {
  display: block;
  color: rgb(95, 95, 95);
  font-size: 18px;
  font-weight: 500;
}
header .sub-nav li a:hover {
  color: rgb(38, 38, 38);
}

/* Mobile header — prod parity */
@media screen and (min-width: 1000px) {
  #mob-header {
    display: none !important;
  }
}
@media screen and (min-width: 700px) {
  #mob-header {
    max-height: 120px;
  }
}
#mob-header {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  max-height: 105px;
  left: 0;
  top: 0;
  z-index: 900;
  background: transparent;
  transition: all 0.6s ease;
}
#mob-header.active-mob-menu {
  height: 100%;
  max-height: 100svh;
  transition: all 0.6s ease;
}
#mob-header.active-mob-menu .container {
  padding: 20px 0 20px 25%;
  transition: all 0.6s ease;
}
#mob-header.active-mob-menu .header {
  transition: all 0.6s ease;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
#mob-header .container {
  padding: 20px;
  box-sizing: border-box;
  height: 100%;
  transition: all 0.6s ease;
}
#mob-header .header {
  box-sizing: border-box;
  background: var(--gray-color);
  border-radius: 20px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  transition: all 0.5s ease;
  overflow: hidden;
}
#mob-header .header__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
#mob-header .header__top .logo a {
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
  max-width: 110px;
}
@media screen and (max-width: 700px) {
  #mob-header .header__top .logo a {
    max-width: 80px;
  }
}
#mob-header .header__top .logo a img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#mob-header .header__top .burger-button {
  all: initial;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-width: 32px;
  max-width: 32px;
  min-height: 24px;
  max-height: 24px;
  margin-left: auto;
  position: relative;
}
@keyframes gapNotZero {
  0% {
    gap: 0px;
  }
  100% {
    gap: 4px;
  }
}
#mob-header .header__top .burger-button {
  animation: gapNotZero 0.6s ease 1;
}
@media screen and (min-width: 1000px) {
  #mob-header .header__top .burger-button {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  #mob-header .header__top .burger-button {
    min-width: 24px;
    max-width: 24px;
    min-height: 17px;
    max-height: 17px;
  }
}
#mob-header .header__top .burger-button span {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  width: 100%;
  max-width: 100px;
  height: 3px;
  background: var(--green-color);
  border-radius: 1px;
  transition: all 0.4s ease;
}
#mob-header .header__top .burger-button.mob-opened {
  gap: 0px;
}
@keyframes gapZero {
  0% {
    gap: 4px;
  }
  100% {
    gap: 0px;
  }
}
#mob-header .header__top .burger-button.mob-opened {
  animation: gapZero 0.6s ease 1;
}
#mob-header .header__top .burger-button.mob-opened span {
  transition: all 0.4s ease;
}
#mob-header .header__top .burger-button.mob-opened span:nth-child(1) {
  margin-bottom: -3px;
  transform: rotate(45deg);
}
#mob-header .header__top .burger-button.mob-opened span:nth-child(2) {
  max-width: 0px;
}
#mob-header .header__top .burger-button.mob-opened span:nth-child(3) {
  margin-top: -3px;
  transform: rotate(-45deg);
}
#mob-header .header__nav {
  width: 100%;
  overflow: hidden;
  height: 100%;
  min-height: 0;
}
#mob-header .header__nav .nav_container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 0;
  gap: 24px;
}
#mob-header .header__nav .nav_container ul {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#mob-header .header__nav .nav_container ul li.active-nav a {
  color: var(--green-color);
}
#mob-header .header__nav .nav_container ul li a {
  color: rgb(95, 95, 95);
  font-family: var(--main-font);
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 500px) {
  #mob-header .header__nav .nav_container ul li a {
    font-size: 15px;
  }
}
#mob-header .header__nav .nav_container ul .parent-nav {
  position: relative;
}
#mob-header .header__nav .nav_container ul .parent-nav.active-parent .dropdown {
  color: var(--green-color);
}
#mob-header .header__nav .nav_container ul .parent-nav.active-parent .dropdown::after {
  transition: all 0.3s ease;
  transform: rotate(0deg);
}
#mob-header .header__nav .nav_container ul .parent-nav .dropdown {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
#mob-header .header__nav .nav_container ul .parent-nav .dropdown::after {
  transition: all 0.3s ease;
  transform: rotate(180deg);
  content: "";
  display: block;
  background-image: url("/images/icons/dropdown.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
}
#mob-header .header__nav .nav_container ul .parent-nav .sub-nav {
  margin-top: 16px;
  margin-left: 2px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: all 0.3s ease;
  overflow: hidden;
  max-height: 0px;
}
@keyframes hideSubMob {
  0% {
    max-height: 200px;
  }
  100% {
    max-height: 0px;
  }
}
#mob-header .header__nav .nav_container ul .parent-nav .sub-nav {
  animation: hideSubMob 0.3s ease 1;
}
#mob-header .header__nav .nav_container ul .parent-nav .sub-nav.active-sub {
  transition: all 0.3s ease;
  max-height: 200px;
}
@keyframes showSubMob {
  0% {
    max-height: 0px;
  }
  100% {
    max-height: 200px;
  }
}
#mob-header .header__nav .nav_container ul .parent-nav .sub-nav.active-sub {
  animation: showSubMob 0.6s ease 1;
}
#mob-header .header__nav .nav_container ul .parent-nav .sub-nav li a {
  color: rgb(95, 95, 95);
  font-family: var(--main-font);
  font-size: 14px;
  font-weight: 500;
}
#mob-header .header__nav .nav_container .green-button {
  width: 100%;
  max-width: 350px;
  margin-bottom: 8px;
}
#mob-header .header__nav .nav_container .green-button span {
  font-size: 22px;
}
@media screen and (max-width: 500px) {
  #mob-header .header__nav .nav_container .green-button span {
    font-size: 16px;
  }
}

/* Swiper sets .swiper-slide { display:block } after our CSS — restore TW flex layouts */
.swiper-slide.flex,
.swiper-slide.\!flex {
  display: flex !important;
}

/* Equal-height feature/step cards (Swiper wrapper uses align-items:normal — stretch explicitly) */
#standart-slider .swiper-wrapper,
#automatic .automatic .swiper-wrapper,
#adven .adven .swiper-wrapper {
  align-items: stretch;
}
#standart-slider .swiper-slide,
#automatic .automatic-card.swiper-slide,
#adven .adven-card.swiper-slide {
  height: auto !important;
  align-self: stretch;
}
#standart-slider .swiper-slide__item {
  height: 100%;
  box-sizing: border-box;
}

/* Swiper arrows */
.button-main-prev,
.button-main-next,
.button-prev,
.button-next {
  width: 48px;
  height: 48px;
  border-radius: 500px;
  border: 1px solid rgb(21, 150, 0);
  background: rgb(21, 150, 0);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: all 0.3s ease;
}
.button-main-prev,
.button-main-next {
  display: none;
}
@media screen and (max-width: 700px) {
  .button-main-prev,
  .button-main-next {
    display: flex;
    width: 25px;
    height: 25px;
  }
}
.button-prev,
.button-next {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  z-index: 5;
}
.button-prev:hover,
.button-next:hover,
.button-main-prev:hover,
.button-main-next:hover {
  background: rgb(18, 130, 0);
  border-color: rgb(18, 130, 0);
}
.button-prev::before,
.button-next::before,
.button-main-prev::before,
.button-main-next::before {
  content: "";
  display: block;
  background-image: url("/images/icons/arrow-slider.svg");
  background-position: 55% 51%;
  background-repeat: no-repeat;
  background-size: 20%;
  width: inherit;
  height: inherit;
  filter: brightness(0) invert(1);
}
.button-prev::before,
.button-main-prev::before {
  transform: rotate(180deg);
}

.notyf {
  align-items: center !important;
}
.fancybox-container {
  z-index: 997 !important;
}
.fancybox-slide--html {
  padding: 20px !important;
}
.fancybox-content {
  background: transparent !important;
}

/* Modal + form */
.modal {
  display: none;
  max-width: 680px !important;
  width: 100%;
  padding: 50px !important;
  border-radius: 30px;
  background: #fff !important;
  position: relative;
  box-sizing: border-box;
}
.modal .modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  line-height: 0;
  z-index: 2;
}
.modal .modal-close-btn svg path {
  transition: stroke 0.2s;
}
.modal .modal-close-btn:hover svg path {
  stroke: #666;
}
.fancybox-close-small { display: none !important; }
.modal-close { display: none !important; }
.modal .title {
  color: rgb(38, 38, 38);
  font-size: 56px;
  font-weight: 700;
  text-align: left;
  font-family: Inter, sans-serif;
  line-height: 1.15;
  margin: 0;
  padding-right: 36px;
}
.modal .modal-title-br {
  display: none;
}
.modal form {
  margin-top: 40px;
  width: 100%;
}
.modal .fields {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal .input-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.modal .field-label {
  font-size: 16px;
  font-weight: 500;
  color: rgb(38, 38, 38);
  font-family: Inter, sans-serif;
}
.modal .field-label .req {
  color: rgb(21, 150, 0);
}
.modal .fields input,
.modal .fields textarea {
  box-sizing: border-box;
  width: 100%;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  padding: 20px;
  color: rgb(38, 38, 38);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s;
}
.modal .fields textarea {
  border-radius: 20px;
  resize: vertical;
  min-height: 120px;
}
.modal .fields input:focus,
.modal .fields textarea:focus {
  border-color: rgb(21, 150, 0);
}
.modal .fields input.is-invalid,
.modal .fields textarea.is-invalid {
  border-color: rgb(226, 61, 61);
}
.modal .fields input::placeholder,
.modal .fields textarea::placeholder {
  color: rgb(189, 192, 191);
  font-size: 16px;
  font-weight: 400;
}
.modal .is-invalid {
  border: 1px solid rgb(226, 61, 61) !important;
  color: rgb(226, 61, 61);
}
.modal .error,
.modal [data-error]:not(:empty) {
  color: rgb(226, 61, 61);
  padding-left: 0;
  font-size: 13px;
  margin-top: 4px;
  text-align: left;
}
.modal [data-error]:empty {
  display: none;
}
.modal .custom-checkbox > input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.modal .custom-checkbox > span,
.modal .custom-checkbox > span a {
  cursor: pointer;
  display: inline-flex;
  align-items: flex-start;
  user-select: none;
  color: rgba(38, 38, 38, 1);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}
.modal .custom-checkbox > span::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid rgb(155, 155, 155);
  border-radius: 4px;
  margin-right: 0.5em;
  background: #fff;
}
.modal .custom-checkbox > input:checked + span::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='24' height='24' rx='4' fill='%23159600'/%3E%3Cpath d='M7.875 12.2674L11.0685 16.8125L16.125 7.1875' stroke='white' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  border-color: transparent;
}
.modal .modal-submit-btn {
  width: 100%;
  margin-top: 24px;
  border: none;
  padding: 16px;
  font-size: 16px;
  height: 60px;
  box-sizing: border-box;
}

.modal .modal-submit-btn .btn-loader {
  display: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  animation: modalSpin 0.7s linear infinite;
}

.modal .modal-submit-btn.is-loading {
  pointer-events: none;
}

.modal .modal-submit-btn.is-loading .btn-portal__icon {
  opacity: 0;
}

.modal .modal-submit-btn.is-loading .btn-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@keyframes modalSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Mobile modal — match Figma 375 (node 147:497) */
@media screen and (max-width: 1000px) {
  .fancybox-slide--html {
    padding: 16px !important;
  }
  .modal {
    max-width: 100% !important;
    width: 100% !important;
    padding: 24px 20px 20px !important;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  }
  .modal .modal-close-btn {
    top: 16px;
    right: 16px;
  }
  .modal .modal-close-btn svg {
    width: 20px;
    height: 20px;
  }
  .modal .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    padding-right: 32px;
    max-width: none;
  }
  .modal .modal-title-br {
    display: block;
  }
  .modal form {
    margin-top: 24px;
  }
  .modal .fields {
    margin-bottom: 16px;
    gap: 16px;
  }
  .modal .input-container {
    gap: 4px;
  }
  .modal .field-label {
    font-size: 12px;
  }
  .modal .fields input,
  .modal .fields textarea {
    font-size: 12px;
    padding: 16px;
    border-radius: 40px;
  }
  .modal .fields textarea {
    border-radius: 24px;
    min-height: 88px;
  }
  .modal .fields input::placeholder,
  .modal .fields textarea::placeholder {
    font-size: 12px;
  }
  .modal .error,
  .modal [data-error]:not(:empty) {
    font-size: 12px;
  }
  .modal .custom-checkbox {
    display: block;
  }
  .modal .custom-checkbox > span,
  .modal .custom-checkbox > span a {
    font-size: 12px;
    line-height: 1.4;
  }
  .modal .custom-checkbox > span::before {
    width: 24px;
    height: 24px;
    margin-top: 0;
  }
  .modal .modal-submit-btn {
    margin-top: 20px;
    padding: 0 20px;
    height: 52px;
    min-height: 52px;
    font-size: 15px;
    gap: 12px;
  }
  .modal .modal-submit-btn .btn-portal__icon {
    width: 24px;
    height: 24px;
  }
  .modal .modal-submit-btn .btn-loader {
    width: 24px;
    height: 24px;
  }
}

/* Policy rich text */
.policy-text,
#text-content .text {
  color: rgb(38, 38, 38);
  font-size: 16px;
  line-height: 1.6;
}
.policy-text p,
#text-content .text p {
  margin-bottom: 1em;
}

/* Hide honeypot */
.modal input[name="secondname"] {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* Fitness benefits tabs РІР‚вЂќ business tab hidden until JS shows it */
.benefits-cards__item.business {
  display: none;
}

/* Business thumbs active state */
#business_thumbs .swiper-slide-thumb-active .thumb_element {
  border-color: rgb(21, 150, 0);
  color: rgb(21, 150, 0);
  background: #fff;
}

/* Swiper pagination bullets */
#pagination .swiper-pagination-bullet {
  background: #939393;
  opacity: 1;
}
#pagination .swiper-pagination-bullet-active {
  background: rgb(21, 150, 0);
}

.swiper-scrollbar-drag {
  background: rgb(21, 150, 0) !important;
}

/* Swiper scrollbar: offset below slides (match original) */
#automatic .automatic-scrollbar,
#adven .adven-scrollbar,
#integrate .swiper-scrollbar,
#standart-slider .swiper-scrollbar {
  position: relative !important;
  left: 0 !important;
  bottom: auto !important;
  top: auto !important;
  width: 100%;
  height: 7px;
  margin-top: 24px;
  background: rgb(236, 236, 236);
  border-radius: 999px;
}

#adven .adven-scrollbar {
  display: none;
}

@media screen and (max-width: 700px) {
  #adven .adven-scrollbar {
    display: block;
  }
}


/* header/mob layout owned by Tailwind + slim JS hooks above */
main {
  min-height: inherit;
}
/* #banner layout on Tailwind; kept: element-animation/-show + tv_image/mac_image overlap */
main #banner .banner__content .logo_container.element-animation {
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
main #banner .banner__content .logo_container.element-show {
  transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -webkit-transform: translateX(0px);
}
main #banner .banner__content .text h1.element-animation {
  transform: translateY(-100px);
  -o-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -webkit-transform: translateY(-100px);
}
main #banner .banner__content .text h1.element-show {
  transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
}
main #banner .banner__content .text h1 span {
  color: var(--black-color);
}
main #banner .banner__content .text p.element-animation {
  transition-delay: 0.4s !important;
  transform: translateY(-100px);
  -o-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -webkit-transform: translateY(-100px);
}
@media screen and (max-width: 1000px) {
  main #banner .banner__content .text p.element-animation {
    transition-delay: 0.2s !important;
  }
}
main #banner .banner__content .text p.element-show {
  transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
}
main #banner .banner__content .green-button.element-animation {
  transition-delay: 0.8s !important;
  transform: translateY(-100px);
  -o-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -webkit-transform: translateY(-100px);
}
@media screen and (max-width: 1000px) {
  main #banner .banner__content .green-button.element-animation {
    transition-delay: 0.4s !important;
  }
}
main #banner .banner__content .green-button.element-show {
  transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
}
main #banner .banner__image .tv_image {
  max-width: 600px;
  width: 100%;
  margin-top: 0;
  margin-left: auto;
}
@media screen and (max-width: 1290px) {
  main #banner .banner__image .tv_image {
    max-width: 480px;
  }
}
@media screen and (max-width: 880px) {
  main #banner .banner__image .tv_image {
    max-width: 300px;
  }
}
@media screen and (max-width: 540px) {
  main #banner .banner__image .tv_image {
    max-width: 180px;
    margin-left: 1rem;
    height: 100%;
  }
}
main #banner .banner__image .tv_image.element-animation {
  transition: all 0.8s ease !important;
  transition-delay: 0.5s !important;
  transform: translateX(100px);
  -o-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -webkit-transform: translateX(100px);
}
@media screen and (max-width: 1000px) {
  main #banner .banner__image .tv_image.element-animation {
    transition-delay: 0.4s !important;
  }
}
main #banner .banner__image .tv_image.element-show {
  transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -webkit-transform: translateX(0px);
}
main #banner .banner__image .tv_image img {
  max-width: inherit;
  height: inherit;
  width: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}
main #banner .banner__image .mac_image {
  max-width: 520px;
  width: 100%;
  margin-top: -3rem;
  margin-left: 5rem;
}
@media screen and (max-width: 1290px) {
  main #banner .banner__image .mac_image {
    max-width: 416px;
  }
}
@media screen and (max-width: 880px) {
  main #banner .banner__image .mac_image {
    max-width: 260px;
  }
}
@media screen and (max-width: 540px) {
  main #banner .banner__image .mac_image {
    max-width: 180px;
    margin-left: auto;
    margin-right: 1rem;
    height: 100%;
  }
}
main #banner .banner__image .mac_image.element-animation {
  transition: all 0.8s ease !important;
  transition-delay: 0.5s !important;
  transform: translateX(-100px);
  -o-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  -moz-transform: translateX(-100px);
  -webkit-transform: translateX(-100px);
}
@media screen and (max-width: 1000px) {
  main #banner .banner__image .mac_image.element-animation {
    transition-delay: 0.4s !important;
  }
}
main #banner .banner__image .mac_image.element-show {
  transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -webkit-transform: translateX(0px);
}
main #banner .banner__image .mac_image img {
  max-width: inherit;
  height: inherit;
  width: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}
/* #banner-iiko layout on Tailwind; kept: element-animation/-show + tv_image/mac_image overlap */
main #banner-iiko .banner-iiko__content .logo_container.element-animation {
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
main #banner-iiko .banner-iiko__content .logo_container.element-show {
  transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -webkit-transform: translateX(0px);
}
@media screen and (max-width: 700px) {
  }
@media screen and (max-width: 1290px) {
  }
@media screen and (max-width: 700px) {
  }
main #banner-iiko .banner-iiko__content .text h1.element-animation {
  transform: translateY(-100px);
  -o-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -webkit-transform: translateY(-100px);
}
main #banner-iiko .banner-iiko__content .text h1.element-show {
  transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
}
main #banner-iiko .banner-iiko__content .text h1 span {
  color: var(--black-color);
}
@media screen and (max-width: 1290px) {
  }
@media screen and (max-width: 700px) {
  }
main #banner-iiko .banner-iiko__content .text p.element-animation {
  transition-delay: 0.4s !important;
  transform: translateY(-100px);
  -o-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -webkit-transform: translateY(-100px);
}
@media screen and (max-width: 1000px) {
  main #banner-iiko .banner-iiko__content .text p.element-animation {
    transition-delay: 0.2s !important;
  }
}
main #banner-iiko .banner-iiko__content .text p.element-show {
  transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
}
@media screen and (max-width: 700px) {
  }
@media screen and (max-width: 1290px) {
  }
@media screen and (max-width: 700px) {
  }
@media screen and (max-width: 1530px) {
  }
@media screen and (max-width: 1100px) {
  }
@media screen and (max-width: 700px) {
  }
@media screen and (max-width: 500px) {
  }
main #banner-iiko .banner-iiko__content .button_container .green-button.element-animation {
  transition-delay: 0.8s !important;
  transform: translateY(-100px);
  -o-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -webkit-transform: translateY(-100px);
}
@media screen and (max-width: 1000px) {
  main #banner-iiko .banner-iiko__content .button_container .green-button.element-animation {
    transition-delay: 0.4s !important;
  }
}
main #banner-iiko .banner-iiko__content .button_container .green-button.element-show {
  transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
}
@media screen and (max-width: 1100px) {
  }
@media screen and (max-width: 1290px) {
  }
@media screen and (max-width: 540px) {
  }
main #banner-iiko .banner-iiko__image .tv_image {
  max-width: 600px;
  width: 100%;
  margin-top: 0;
  margin-left: auto;
}
@media screen and (max-width: 1290px) {
  main #banner-iiko .banner-iiko__image .tv_image {
    max-width: 480px;
  }
}
@media screen and (max-width: 880px) {
  main #banner-iiko .banner-iiko__image .tv_image {
    max-width: 300px;
  }
}
@media screen and (max-width: 540px) {
  main #banner-iiko .banner-iiko__image .tv_image {
    max-width: 180px;
    margin-left: 1rem;
    height: 100%;
  }
}
main #banner-iiko .banner-iiko__image .tv_image.element-animation {
  transition: all 0.8s ease !important;
  transition-delay: 0.5s !important;
  transform: translateX(100px);
  -o-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -webkit-transform: translateX(100px);
}
@media screen and (max-width: 1000px) {
  main #banner-iiko .banner-iiko__image .tv_image.element-animation {
    transition-delay: 0.4s !important;
  }
}
main #banner-iiko .banner-iiko__image .tv_image.element-show {
  transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -webkit-transform: translateX(0px);
}
main #banner-iiko .banner-iiko__image .tv_image img {
  max-width: inherit;
  height: inherit;
  width: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}
main #banner-iiko .banner-iiko__image .mac_image {
  max-width: 520px;
  width: 100%;
  margin-top: -3rem;
  margin-left: 5rem;
}
@media screen and (max-width: 1290px) {
  main #banner-iiko .banner-iiko__image .mac_image {
    max-width: 416px;
  }
}
@media screen and (max-width: 880px) {
  main #banner-iiko .banner-iiko__image .mac_image {
    max-width: 260px;
  }
}
@media screen and (max-width: 540px) {
  main #banner-iiko .banner-iiko__image .mac_image {
    max-width: 180px;
    margin-left: auto;
    margin-right: 1rem;
    height: 100%;
  }
}
main #banner-iiko .banner-iiko__image .mac_image.element-animation {
  transition: all 0.8s ease !important;
  transition-delay: 0.5s !important;
  transform: translateX(-100px);
  -o-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  -moz-transform: translateX(-100px);
  -webkit-transform: translateX(-100px);
}
@media screen and (max-width: 1000px) {
  main #banner-iiko .banner-iiko__image .mac_image.element-animation {
    transition-delay: 0.4s !important;
  }
}
main #banner-iiko .banner-iiko__image .mac_image.element-show {
  transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -webkit-transform: translateX(0px);
}
main #banner-iiko .banner-iiko__image .mac_image img {
  max-width: inherit;
  height: inherit;
  width: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

/* #business layout on Tailwind; kept: swiper thumbs/arrows chrome + element-animation/-show */
@media screen and (max-width: 1100px) {
  main #business .business #business_thumbs .button-main-prev,
  main #business .business #business_thumbs .button-main-next {
    display: flex;
  }
}
@media screen and (max-width: 1100px) {
  main #business .business #business_thumbs .button-prev,
  main #business .business #business_thumbs .button-next {
    display: none !important;
  }
}
main #business .business #business_thumbs .button-prev.swiper-button-disabled,
main #business .business #business_thumbs .button-next.swiper-button-disabled {
  background: #c0c0c0;
  border-color: #c0c0c0;
  cursor: default;
}
@media screen and (max-width: 1100px) {
  main #business .business #business_thumbs .button-prev {
    visibility: visible;
  }
}
@media screen and (max-width: 1100px) {
  main #business .business #business_thumbs__slider .swiper-wrapper {
    align-items: center;
  }
}
main #business .business #business_thumbs__slider .swiper-wrapper .swiper-slide-thumb-active .thumb_element {
  background: var(--green-color) !important;
  border: 1px solid var(--green-color) !important;
  color: #fff !important;
}
@media screen and (max-width: 1100px) {
  main #business .business #business_thumbs__slider .swiper-wrapper .swiper-slide-thumb-active .thumb_element {
    background: none !important;
    border: none !important;
    color: var(--green-color) !important;
  }
}
main #business .business #business_thumbs__slider .swiper-wrapper .swiper-slide {
  width: -moz-fit-content;
  width: fit-content;
}
main #business .business #business_thumbs__slider .swiper-wrapper .swiper-slide .thumb_element {
  transition: all 0.3s ease;
  -webkit-user-select: none;
  /* Safari */
  /* IE 10 and IE 11 */
  -moz-user-select: none;
  user-select: none;
  /* Standard syntax */
  cursor: pointer;
  background: #fff;
  color: var(--green-color);
  font-family: var(--main-font);
  font-size: 20px;
  font-weight: 700;
  border-radius: 50px;
  text-align: center;
  padding: 24px 24px;
  border: 1px solid #fff;
}
@media screen and (max-width: 1100px) {
  main #business .business #business_thumbs__slider .swiper-wrapper .swiper-slide .thumb_element {
    background: none !important;
    border: none !important;
    color: var(--green-color) !important;
    padding: 0 !important;
  }
}
@media screen and (max-width: 700px) {
  main #business .business #business_thumbs__slider .swiper-wrapper .swiper-slide .thumb_element {
    font-size: 14px;
  }
}
main #business .business #business_thumbs__slider .swiper-wrapper .swiper-slide .thumb_element.element-animation {
  transition: all 0.2s ease !important;
}
main #business .business #business_thumbs__slider .swiper-wrapper .swiper-slide .thumb_element.element-animation:nth-child(1n) {
  transition-delay: 0.2s !important;
}
main #business .business #business_thumbs__slider .swiper-wrapper .swiper-slide .thumb_element.element-animation:nth-child(2n) {
  transition-delay: 0.4s !important;
}
main #business .business #business_thumbs__slider .swiper-wrapper .swiper-slide .thumb_element.element-animation:nth-child(3n) {
  transition-delay: 0.6s !important;
}
main #business .business #business_thumbs__slider .swiper-wrapper .swiper-slide .thumb_element.element-animation:nth-child(4n) {
  transition-delay: 0.8s !important;
}
main #business .business #business_thumbs__slider .swiper-wrapper .swiper-slide .thumb_element:hover {
  border: 1px solid var(--green-color);
}
/* #ingi-server fully migrated to Tailwind utility classes */

/* #advantages layout on Tailwind; kept: element-animation/-show stagger rules */
main #advantages .advantages .advantages__element.element-animation {
  transition: all 0.8s ease !important;
  transform: translate(-100px, -100px);
}
main #advantages .advantages .advantages__element.element-animation:nth-child(1n) {
  transition-delay: 0.2s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(1n) {
    transition-delay: 0s !important;
  }
}
main #advantages .advantages .advantages__element.element-animation:nth-child(1n) .text {
  opacity: 0;
  transition: all 0.8s ease !important;
  transform: translate(-50px, -50px);
  transition-delay: 0.4s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(1n) .text {
    transition-delay: 0.2s !important;
  }
}
main #advantages .advantages .advantages__element.element-animation:nth-child(2n) {
  transition-delay: 0.4s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(2n) {
    transition-delay: 0s !important;
  }
}
main #advantages .advantages .advantages__element.element-animation:nth-child(2n) .text {
  opacity: 0;
  transition: all 0.8s ease !important;
  transform: translate(-50px, -50px);
  transition-delay: 0.6s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(2n) .text {
    transition-delay: 0.4s !important;
  }
}
main #advantages .advantages .advantages__element.element-animation:nth-child(3n) {
  transition-delay: 0.6s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(3n) {
    transition-delay: 0s !important;
  }
}
main #advantages .advantages .advantages__element.element-animation:nth-child(3n) .text {
  opacity: 0;
  transition: all 0.8s ease !important;
  transform: translate(-50px, -50px);
  transition-delay: 0.8s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(3n) .text {
    transition-delay: 0.6s !important;
  }
}
main #advantages .advantages .advantages__element.element-animation:nth-child(4n) {
  transition-delay: 0.8s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(4n) {
    transition-delay: 0s !important;
  }
}
main #advantages .advantages .advantages__element.element-animation:nth-child(4n) .text {
  opacity: 0;
  transition: all 0.8s ease !important;
  transform: translate(-50px, -50px);
  transition-delay: 1s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(4n) .text {
    transition-delay: 0.8s !important;
  }
}
main #advantages .advantages .advantages__element.element-animation:nth-child(5n) {
  transition-delay: 1s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(5n) {
    transition-delay: 0s !important;
  }
}
main #advantages .advantages .advantages__element.element-animation:nth-child(5n) .text {
  opacity: 0;
  transition: all 0.8s ease !important;
  transform: translate(-50px, -50px);
  transition-delay: 1.2s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(5n) .text {
    transition-delay: 1s !important;
  }
}
main #advantages .advantages .advantages__element.element-animation:nth-child(6n) {
  transition-delay: 1.2s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(6n) {
    transition-delay: 0s !important;
  }
}
main #advantages .advantages .advantages__element.element-animation:nth-child(6n) .text {
  opacity: 0;
  transition: all 0.8s ease !important;
  transform: translate(-50px, -50px);
  transition-delay: 1.4s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(6n) .text {
    transition-delay: 1.2s !important;
  }
}
main #advantages .advantages .advantages__element.element-animation:nth-child(7n) {
  transition-delay: 1.4s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(7n) {
    transition-delay: 0s !important;
  }
}
main #advantages .advantages .advantages__element.element-animation:nth-child(7n) .text {
  opacity: 0;
  transition: all 0.8s ease !important;
  transform: translate(-50px, -50px);
  transition-delay: 1.6s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(7n) .text {
    transition-delay: 1.4s !important;
  }
}
main #advantages .advantages .advantages__element.element-animation:nth-child(8n) {
  transition-delay: 1.6s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(8n) {
    transition-delay: 0s !important;
  }
}
main #advantages .advantages .advantages__element.element-animation:nth-child(8n) .text {
  opacity: 0;
  transition: all 0.8s ease !important;
  transform: translate(-50px, -50px);
  transition-delay: 1.8s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(8n) .text {
    transition-delay: 1.6s !important;
  }
}
main #advantages .advantages .advantages__element.element-animation:nth-child(9n) {
  transition-delay: 1.8s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(9n) {
    transition-delay: 0s !important;
  }
}
main #advantages .advantages .advantages__element.element-animation:nth-child(9n) .text {
  opacity: 0;
  transition: all 0.8s ease !important;
  transform: translate(-50px, -50px);
  transition-delay: 2s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(9n) .text {
    transition-delay: 1.8s !important;
  }
}
main #advantages .advantages .advantages__element.element-animation:nth-child(10n) {
  transition-delay: 2s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(10n) {
    transition-delay: 0s !important;
  }
}
main #advantages .advantages .advantages__element.element-animation:nth-child(10n) .text {
  opacity: 0;
  transition: all 0.8s ease !important;
  transform: translate(-50px, -50px);
  transition-delay: 2.2s !important;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element.element-animation:nth-child(10n) .text {
    transition-delay: 2s !important;
  }
}
main #advantages .advantages .advantages__element.element-show {
  transform: translate(0px, 0px);
}
main #advantages .advantages .advantages__element.element-show .text {
  opacity: 1 !important;
  transition: all 0.8s ease !important;
  transform: translate(0px, 0px) !important;
}
/* #licenses layout on Tailwind; kept: element-animation/-show + :nth-child(2n) color-inversion (icon/hover swap) */
main #licenses .licenses__element.element-animation {
  transition: all 0.4s ease !important;
  transform: translateY(-100px);
}
main #licenses .licenses__element.element-animation:nth-child(2) {
  transition-delay: 0.3s !important;
}
@media screen and (max-width: 1000px) {
  main #licenses .licenses__element.element-animation:nth-child(2) {
    transition-delay: 0s !important;
  }
}
main #licenses .licenses__element.element-animation:nth-child(1) {
  transition-delay: 0.6s !important;
}
@media screen and (max-width: 1000px) {
  main #licenses .licenses__element.element-animation:nth-child(1) {
    transition-delay: 0s !important;
  }
}
main #licenses .licenses__element.element-animation:nth-child(3) {
  transition-delay: 0.8s !important;
}
@media screen and (max-width: 1000px) {
  main #licenses .licenses__element.element-animation:nth-child(3) {
    transition-delay: 0s !important;
  }
}
main #licenses .licenses__element.element-show {
  transform: translateY(0px) !important;
}
main #licenses .licenses__element:nth-child(2n) {
  background: var(--green-color);
  border: 1px solid var(--green-color);
}
@media screen and (max-width: 1300px) {
  main #licenses .licenses__element:nth-child(2n) {
    order: 5;
    max-width: calc(50% - 12px);
  }
}
@media screen and (max-width: 850px) {
  main #licenses .licenses__element:nth-child(2n) {
    order: unset;
    max-width: 100%;
  }
}
main #licenses .licenses__element:nth-child(2n) h5 {
  color: #fff;
}
main #licenses .licenses__element:nth-child(2n) .advantages li {
  color: #fff;
}
main #licenses .licenses__element:nth-child(2n) .advantages li::before {
  background-image: url("/images/icons/mark-check-white.svg");
}
main #licenses .licenses__element:nth-child(2n) .prices li .title,
main #licenses .licenses__element:nth-child(2n) .prices li .value {
  color: #fff;
}
main #licenses .licenses__element:nth-child(2n) .button .green-button {
  background: transparent;
}
main #licenses .licenses__element:nth-child(2n) .button .green-button::before,
main #licenses .licenses__element:nth-child(2n) .button .green-button::after {
  background: #fff;
}
main #licenses .licenses__element:nth-child(2n) .button .green-button span {
  background: #fff !important;
  color: var(--green-color) !important;
}
main #licenses .licenses__element:nth-child(2n) .button .green-button:hover span {
  background: var(--green-color) !important;
  color: #fff !important;
  transition: all 0.7s ease;
}
/* #performance layout on Tailwind; kept: pagination bullet chrome + element-animation/-show */
main #performance .performance #pagination .swiper-pagination-bullet {
  background: var(--gray-color);
  border-radius: 500px;
  min-width: 16px;
  max-width: 16px;
  min-height: 16px;
  max-height: 16px;
  opacity: 1;
  transition: all 0.3s ease;
}
main #performance .performance #pagination .swiper-pagination-bullet-active {
  background: var(--green-color);
}
main #performance .performance #performance_slider.element-animation {
  transition: all 0.4s ease !important;
  transform: translate(-100px, -100px);
  transition-delay: 0.3s !important;
}
@media screen and (max-width: 1000px) {
  main #performance .performance #performance_slider.element-animation {
    transition-delay: 0s !important;
  }
}
main #performance .performance #performance_slider.element-show {
  transform: translate(0px, 0px) !important;
}
/* #steps layout on Tailwind; kept: element-animation/-show stagger rules */
main #steps .steps__line.element-animation {
  transition: all 0.4s ease !important;
  transform: translateX(-100px);
}
main #steps .steps__line.element-show {
  transform: translateX(0px) !important;
}
main #steps .steps__container .element.element-animation {
  transition: all 0.4s ease !important;
  transform: translateX(-100px);
}
main #steps .steps__container .element.element-animation .number,
main #steps .steps__container .element.element-animation .text {
  transition: all 0.4s ease !important;
  opacity: 0;
  transform: translateY(-50px);
}
main #steps .steps__container .element.element-animation:nth-child(1) {
  transition-delay: 0.5s !important;
}
@media screen and (max-width: 1000px) {
  main #steps .steps__container .element.element-animation:nth-child(1) {
    transition-delay: 0.1s !important;
  }
}
main #steps .steps__container .element.element-animation:nth-child(1) .number {
  transition-delay: 0.8s !important;
}
@media screen and (max-width: 1000px) {
  main #steps .steps__container .element.element-animation:nth-child(1) .number {
    transition-delay: 0.3s !important;
  }
}
main #steps .steps__container .element.element-animation:nth-child(1) .text {
  transition-delay: 1s !important;
}
@media screen and (max-width: 1000px) {
  main #steps .steps__container .element.element-animation:nth-child(1) .text {
    transition-delay: 0.5s !important;
  }
}
main #steps .steps__container .element.element-animation:nth-child(2) {
  transition-delay: 0.8s !important;
}
@media screen and (max-width: 1000px) {
  main #steps .steps__container .element.element-animation:nth-child(2) {
    transition-delay: 0.3s !important;
  }
}
main #steps .steps__container .element.element-animation:nth-child(2) .number {
  transition-delay: 1.1s !important;
}
@media screen and (max-width: 1000px) {
  main #steps .steps__container .element.element-animation:nth-child(2) .number {
    transition-delay: 0.6s !important;
  }
}
main #steps .steps__container .element.element-animation:nth-child(2) .text {
  transition-delay: 1.3s !important;
}
@media screen and (max-width: 1000px) {
  main #steps .steps__container .element.element-animation:nth-child(2) .text {
    transition-delay: 0.8s !important;
  }
}
main #steps .steps__container .element.element-animation:nth-child(3) {
  transition-delay: 1.1s !important;
}
@media screen and (max-width: 1000px) {
  main #steps .steps__container .element.element-animation:nth-child(3) {
    transition-delay: 0.6s !important;
  }
}
main #steps .steps__container .element.element-animation:nth-child(3) .number {
  transition-delay: 1.4s !important;
}
@media screen and (max-width: 1000px) {
  main #steps .steps__container .element.element-animation:nth-child(3) .number {
    transition-delay: 0.8s !important;
  }
}
main #steps .steps__container .element.element-animation:nth-child(3) .text {
  transition-delay: 1.7s !important;
}
@media screen and (max-width: 1000px) {
  main #steps .steps__container .element.element-animation:nth-child(3) .text {
    transition-delay: 1s !important;
  }
}
main #steps .steps__container .element.element-show {
  transform: translateX(0px) !important;
}
main #steps .steps__container .element.element-show .number,
main #steps .steps__container .element.element-show .text {
  transform: translateY(0px);
  opacity: 1;
}
/* #about layout on Tailwind; kept: image_container element-animation/-show + anime-js-circle .el (JS-generated) */
main #about .about .image_container.element-animation {
  opacity: 1;
  transition: all 0.8s ease !important;
  transform: rotate(-50deg);
}
main #about .about .image_container.element-show {
  transform: rotate(0deg);
}
main #about .about .image_container #anime-js-circle .el {
  position: absolute;
  opacity: 1;
  width: 1px;
  height: 150px;
  margin-top: -12vh;
  transform-origin: 50% 100%;
  background: white;
}
@media screen and (max-width: 800px) {
  main #about .about .image_container #anime-js-circle .el {
    height: 120px;
  }
}
main #about .about ul li.element-animation {
  transition: all 0.4s ease !important;
  transform: translate(-25px, -50px);
}
main #about .about ul li.element-animation .text {
  transform: translateY(-50px);
}
main #about .about ul li.element-animation:nth-child(1n) {
  transition-delay: 0.2s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(1n) {
    transition-delay: 0.1s !important;
  }
}
main #about .about ul li.element-animation:nth-child(1n) .text {
  transition-delay: 0.25s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(1n) .text {
    transition-delay: 0.15s !important;
  }
}
main #about .about ul li.element-animation:nth-child(2n) {
  transition-delay: 0.4s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(2n) {
    transition-delay: 0.2s !important;
  }
}
main #about .about ul li.element-animation:nth-child(2n) .text {
  transition-delay: 0.5s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(2n) .text {
    transition-delay: 0.3s !important;
  }
}
main #about .about ul li.element-animation:nth-child(3n) {
  transition-delay: 0.6s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(3n) {
    transition-delay: 0.3s !important;
  }
}
main #about .about ul li.element-animation:nth-child(3n) .text {
  transition-delay: 0.75s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(3n) .text {
    transition-delay: 0.45s !important;
  }
}
main #about .about ul li.element-animation:nth-child(4n) {
  transition-delay: 0.8s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(4n) {
    transition-delay: 0.4s !important;
  }
}
main #about .about ul li.element-animation:nth-child(4n) .text {
  transition-delay: 1s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(4n) .text {
    transition-delay: 0.6s !important;
  }
}
main #about .about ul li.element-animation:nth-child(5n) {
  transition-delay: 1s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(5n) {
    transition-delay: 0.5s !important;
  }
}
main #about .about ul li.element-animation:nth-child(5n) .text {
  transition-delay: 1.25s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(5n) .text {
    transition-delay: 0.75s !important;
  }
}
main #about .about ul li.element-animation:nth-child(6n) {
  transition-delay: 1.2s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(6n) {
    transition-delay: 0.6s !important;
  }
}
main #about .about ul li.element-animation:nth-child(6n) .text {
  transition-delay: 1.5s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(6n) .text {
    transition-delay: 0.9s !important;
  }
}
main #about .about ul li.element-animation:nth-child(7n) {
  transition-delay: 1.4s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(7n) {
    transition-delay: 0.7s !important;
  }
}
main #about .about ul li.element-animation:nth-child(7n) .text {
  transition-delay: 1.75s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(7n) .text {
    transition-delay: 1.05s !important;
  }
}
main #about .about ul li.element-animation:nth-child(8n) {
  transition-delay: 1.6s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(8n) {
    transition-delay: 0.8s !important;
  }
}
main #about .about ul li.element-animation:nth-child(8n) .text {
  transition-delay: 2s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(8n) .text {
    transition-delay: 1.2s !important;
  }
}
main #about .about ul li.element-animation:nth-child(9n) {
  transition-delay: 1.8s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(9n) {
    transition-delay: 0.9s !important;
  }
}
main #about .about ul li.element-animation:nth-child(9n) .text {
  transition-delay: 2.25s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(9n) .text {
    transition-delay: 1.35s !important;
  }
}
main #about .about ul li.element-animation:nth-child(10n) {
  transition-delay: 2s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(10n) {
    transition-delay: 1s !important;
  }
}
main #about .about ul li.element-animation:nth-child(10n) .text {
  transition-delay: 2.5s !important;
}
@media screen and (max-width: 1000px) {
  main #about .about ul li.element-animation:nth-child(10n) .text {
    transition-delay: 1.5s !important;
  }
}
main #about .about ul li.element-show {
  transform: translate(0px, 0px);
}
main #about .about ul li.element-show .text {
  transform: translateY(0px);
}
/* #about ul li title/text and #choose-us layout fully migrated to Tailwind; kept: element-animation/-show stagger */
main #choose-us .choose-us__element.element-animation {
  transition: all 0.4s ease !important;
  transform: translate(-25px, -50px);
}
main #choose-us .choose-us__element.element-animation .image_container img {
  transition: all 0.4s ease !important;
  opacity: 0;
  transform: translateY(20px);
}
main #choose-us .choose-us__element.element-animation:nth-child(1n) {
  transition-delay: 0.1s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(1n) .text {
  transition-delay: 0.25s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(1n) .image_container img:nth-child(1n) {
  transition-delay: 0.4s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(1n) .image_container img:nth-child(2n) {
  transition-delay: 0.6s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(1n) .image_container img:nth-child(3n) {
  transition-delay: 0.8s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(1n) .image_container img:nth-child(4n) {
  transition-delay: 1s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(1n) .image_container img:nth-child(5n) {
  transition-delay: 1.2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(1n) .image_container img:nth-child(6n) {
  transition-delay: 1.4s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(1n) .image_container img:nth-child(7n) {
  transition-delay: 1.6s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(1n) .image_container img:nth-child(8n) {
  transition-delay: 1.8s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(1n) .image_container img:nth-child(9n) {
  transition-delay: 2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(1n) .image_container img:nth-child(10n) {
  transition-delay: 2.2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(2n) {
  transition-delay: 0.2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(2n) .text {
  transition-delay: 0.5s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(2n) .image_container img:nth-child(1n) {
  transition-delay: 0.6s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(2n) .image_container img:nth-child(2n) {
  transition-delay: 0.8s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(2n) .image_container img:nth-child(3n) {
  transition-delay: 1s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(2n) .image_container img:nth-child(4n) {
  transition-delay: 1.2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(2n) .image_container img:nth-child(5n) {
  transition-delay: 1.4s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(2n) .image_container img:nth-child(6n) {
  transition-delay: 1.6s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(2n) .image_container img:nth-child(7n) {
  transition-delay: 1.8s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(2n) .image_container img:nth-child(8n) {
  transition-delay: 2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(2n) .image_container img:nth-child(9n) {
  transition-delay: 2.2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(2n) .image_container img:nth-child(10n) {
  transition-delay: 2.4s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(3n) {
  transition-delay: 0.3s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(3n) .text {
  transition-delay: 0.75s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(3n) .image_container img:nth-child(1n) {
  transition-delay: 0.8s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(3n) .image_container img:nth-child(2n) {
  transition-delay: 1s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(3n) .image_container img:nth-child(3n) {
  transition-delay: 1.2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(3n) .image_container img:nth-child(4n) {
  transition-delay: 1.4s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(3n) .image_container img:nth-child(5n) {
  transition-delay: 1.6s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(3n) .image_container img:nth-child(6n) {
  transition-delay: 1.8s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(3n) .image_container img:nth-child(7n) {
  transition-delay: 2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(3n) .image_container img:nth-child(8n) {
  transition-delay: 2.2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(3n) .image_container img:nth-child(9n) {
  transition-delay: 2.4s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(3n) .image_container img:nth-child(10n) {
  transition-delay: 2.6s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(4n) {
  transition-delay: 0.4s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(4n) .text {
  transition-delay: 1s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(4n) .image_container img:nth-child(1n) {
  transition-delay: 1s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(4n) .image_container img:nth-child(2n) {
  transition-delay: 1.2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(4n) .image_container img:nth-child(3n) {
  transition-delay: 1.4s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(4n) .image_container img:nth-child(4n) {
  transition-delay: 1.6s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(4n) .image_container img:nth-child(5n) {
  transition-delay: 1.8s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(4n) .image_container img:nth-child(6n) {
  transition-delay: 2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(4n) .image_container img:nth-child(7n) {
  transition-delay: 2.2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(4n) .image_container img:nth-child(8n) {
  transition-delay: 2.4s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(4n) .image_container img:nth-child(9n) {
  transition-delay: 2.6s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(4n) .image_container img:nth-child(10n) {
  transition-delay: 2.8s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(5n) {
  transition-delay: 0.5s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(5n) .text {
  transition-delay: 1.25s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(5n) .image_container img:nth-child(1n) {
  transition-delay: 1.2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(5n) .image_container img:nth-child(2n) {
  transition-delay: 1.4s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(5n) .image_container img:nth-child(3n) {
  transition-delay: 1.6s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(5n) .image_container img:nth-child(4n) {
  transition-delay: 1.8s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(5n) .image_container img:nth-child(5n) {
  transition-delay: 2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(5n) .image_container img:nth-child(6n) {
  transition-delay: 2.2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(5n) .image_container img:nth-child(7n) {
  transition-delay: 2.4s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(5n) .image_container img:nth-child(8n) {
  transition-delay: 2.6s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(5n) .image_container img:nth-child(9n) {
  transition-delay: 2.8s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(5n) .image_container img:nth-child(10n) {
  transition-delay: 3s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(6n) {
  transition-delay: 0.6s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(6n) .text {
  transition-delay: 1.5s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(6n) .image_container img:nth-child(1n) {
  transition-delay: 1.4s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(6n) .image_container img:nth-child(2n) {
  transition-delay: 1.6s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(6n) .image_container img:nth-child(3n) {
  transition-delay: 1.8s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(6n) .image_container img:nth-child(4n) {
  transition-delay: 2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(6n) .image_container img:nth-child(5n) {
  transition-delay: 2.2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(6n) .image_container img:nth-child(6n) {
  transition-delay: 2.4s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(6n) .image_container img:nth-child(7n) {
  transition-delay: 2.6s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(6n) .image_container img:nth-child(8n) {
  transition-delay: 2.8s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(6n) .image_container img:nth-child(9n) {
  transition-delay: 3s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(6n) .image_container img:nth-child(10n) {
  transition-delay: 3.2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(7) {
  transition-delay: 0.1s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(7) .image_container img:nth-child(1n) {
  transition-delay: 0.1s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(7) .image_container img:nth-child(2n) {
  transition-delay: 0.2s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(7) .image_container img:nth-child(3n) {
  transition-delay: 0.3s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(7) .image_container img:nth-child(4n) {
  transition-delay: 0.4s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(7) .image_container img:nth-child(5n) {
  transition-delay: 0.5s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(7) .image_container img:nth-child(6n) {
  transition-delay: 0.6s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(7) .image_container img:nth-child(7n) {
  transition-delay: 0.7s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(7) .image_container img:nth-child(8n) {
  transition-delay: 0.8s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(7) .image_container img:nth-child(9n) {
  transition-delay: 0.9s !important;
}
main #choose-us .choose-us__element.element-animation:nth-child(7) .image_container img:nth-child(10n) {
  transition-delay: 1s !important;
}
main #choose-us .choose-us__element.element-show {
  transform: translate(0px, 0px);
}
main #choose-us .choose-us__element.element-show .image_container img {
  transition: all 0.4s ease !important;
  opacity: 1;
  transform: translateY(0px);
}
/* #choose-us number_container/image_container/text/last-child layout fully migrated to Tailwind; kept: rich-text safety for CMS content */
main #choose-us .choose-us__element .text h6 {
  font-size: 24px;
  font-weight: 700;
}
main #choose-us .choose-us__element .text p {
  font-size: 16px;
  font-weight: 400;
}
