:root {
  --inc-step: 1;
  --height: 100vh;
  --x: 0px;
  --y: 0px;
  --relx: 0px;
  --rely: 0px;
  --size: 400px;
  --bg: #fff;
  --bg-gray: #EDEDED;
  --bg-dgray: #303336;
  --bg-success: #dff0d8;
  --white: #fff;
  --hover: #EF6314;
  --text: #303336;
  --text-gray: rgb(48,51,54,0.6);
  --border: rgb(0,0,0,0.1);
  --swiper-btn: #fff6f8;
  --swiper-btn-hover: #ffeff1;
  --white: #fff;
  --black: #202020;
  --color: #EF6314;
  --error: #c01818;
  --ease: cubic-bezier(.22,.6,.36,1);
}

:root.dark {
  --bg: rgb(14, 14, 14);
  --bg-gray: rgb(20, 20, 20);
  --text: rgb(255, 255, 255);
  --text-gray: rgb(168, 171, 178);
  --border: rgb(33, 34, 35);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::-moz-selection {
  background-color: var(--text);
  color: var(--bg);
}

*::selection {
  background-color: var(--text);
  color: var(--bg);
}

input {
  outline: none;
}

textarea {
  outline: none;
  resize: none;
} 

label {
  cursor: pointer;
}

input::-moz-selection {
  background-color: var(--color);
  color: var(--white);
}

input::selection {
  background-color: var(--color);
  color: var(--white);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  display: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

*::marker {
  font-size: 0;
}

::-webkit-scrollbar {
  width: 8px;
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  width: 8px;
  background: var(--hover);
}

html {
  height: 100vh;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: scroll;
}

html.noscroll {
  height: 100vh;
  overflow: hidden;
}

body {
  position: relative;
  height: 100%;
  font-family: var(--text-font);
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
  background-color: var(--bg-gray);
}

button {
  padding: 0;
  margin: 0;
  background: transparent;
  -webkit-transition: color 0.15s linear, background-color 0.15s linear;
  transition: color 0.15s linear, background-color 0.15s linear;
  cursor: pointer;
}

.main {
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* opacity: 0;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear; */
}

/* body.loaded .main {
  opacity: 1;
} */

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  background: transparent;
  -webkit-transition: visibility 0s linear, opacity 0.3s linear, background-color 0.3s linear;
  transition: visibility 0s linear, opacity 0.3s linear, background-color 0.3s linear;
  -webkit-transition-delay: 0.8s, 0.5s, 0.5s;
  transition-delay: 0.8s, 0.5s, 0.5s;
  cursor: pointer;
}

.overlay.active {
  opacity: 0.58;
  visibility: visible;
  background-color: var(--bg-dgray);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

img {
  pointer-events: none;
}

form,
img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  border: none;
  -webkit-text-fill-color: var(--text);
  -webkit-box-shadow: 0 0 0 1000px var(--bg-gray) inset;
  color: var(--text);
  box-shadow: 0 0 0 1000px var(--bg) inset;
}

button,
button:hover {
  outline: 0;
  border: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

a,
a svg {
  color: var(--text);
  -webkit-transition: color 0.15s linear;
  transition: color 0.15s linear;
  text-decoration: none;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a:hover {
  color: var(--hover);
  text-decoration: none;
}

ul,
p,
div,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.app {
  width: 100%;
  height: 100%;
}

section {
  position: relative;
  pointer-events: all;
  background-color: var(--bg-gray);
}

.container {
  width: 100%;
  /* max-width: 1840px; */
  max-width: 1170px;
  padding: 0 40px;
  margin: 0 auto;
  position: relative;
}

.top {
  height: 60px;
  width: 100%;
  background-color: transparent;
  overflow: hidden;
}

/* start btn */

.btn,
.new_btn {
  height: 53px;
  width: fit-content;
  padding: 16px 52px;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  -webkit-transition: color 0.15s linear, background-color 0.15s linear;
  transition: color 0.15s linear, background-color 0.15s linear;
}

.btn__primary,
.new_btn__primary {
  color: var(--white);
  background-color: var(--color);
}

.btn__primary:hover,
.new_btn__primary:hover {
  background-color: var(--black);
}

.btn__second,
.new_btn__second {
  color: var(--text);
  background-color: var(--bg);
}

.btn__second:hover,
.new_btn__second:hover {
  color: var(--bg);
  background-color: var(--color);
}

.btn__gray,
.new_btn__gray {
  color: var(--text);
  background-color: var(--bg-gray);
}

.btn__gray:hover,
.new_btn__gray:hover {
  color: var(--bg);
  background-color: var(--text);
}

.new_btn__gray

.btn_black {
  padding: 16px 61px;
  border-radius: 30px;
  color: var(--white);
  background-color: var(--black);
}

.btn_black:hover {
  background-color: var(--color);
}

.btn_white,
.new_btn_white {
  color: var(--black);
  background-color: var(--white);
}

.btn_white:hover,
.new_btn_white:hover {
  color: var(--white);
  background-color: var(--black);
}

/* end btn */

/* start swiper */

.swiper {
  width: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.swiper-slide {
  -webkit-transform: translateZ(0);
  -o-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next::after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev::after {
  display: none;
}

.swiper-button-lock {
  visibility: hidden;
  opacity: 0;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: transparent;
}

.swiper-pagination-bullet {
  background: transparent;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.swiper-pagination-bullet {
  display: flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  background: transparent;
  background-color: transparent;
  border-radius: 100%;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: transparent;
}

.swiper-pagination-bullet::after {
  content: "";
  width: 6px;
  height: 6px;
  background: transparent;
  background-color: transparent;
  border: 1px solid var(--text);
  border-radius: 100%;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

.swiper-pagination-bullet-active.swiper-pagination-bullet::after {
  background-color: var(--text);
}

.swiper-wrapper,
.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper,
.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide,
.swiper-3d {
  will-change: transform, -webkit-transform, -moz-transform, -ms-transform, -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -moz-transform, -ms-transform, -o-transform;
}

[data-scroll-section],
.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  perspective: 111px !important;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  pointer-events: all;
  opacity: 0.5;
  cursor: pointer;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev,
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  right: 0;
  left: 0;
}

.swiper-button-next,
.swiper-button-prev {
  display: flex;
  width: 30px;
  height: 30px;
  margin-top: 0;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 0;
  z-index: 10;
  cursor: pointer;
  color: var(--color);
 -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 21px;
  height: 10px;
  object-fit: contain;
}

.swiper__navigation {
  display: flex;
  align-items: center;
}

/* end swiper */

/* start form */

.form__control_info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form__control_flex {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form__control_flex .form__control {
  width: calc(50% - 5px);
}

.form__control {
  display: flex;
  padding: 0;
  flex-direction: column-reverse;
  position: relative;
  overflow: hidden;
  -webkit-transition: padding 0.3s linear;
  transition: padding 0.3s linear;
}

.form__control.error {
  padding: 0 0 17px;
}

.form__control .form__error {
  height: 12px;
  position: absolute;
  bottom: 5px;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
}

.form__control.error .form__error {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.form__input:focus ~ .form__counter {
  display: block;
}

.form__counter {
  display: none;
  height: 12px;
  position: absolute;
  bottom: 23px;
  right: 20px;
  z-index: 5;
  -webkit-transition: bottom 0.3s linear;
  transition: bottom 0.3s linear;
}

.form__control.error .form__counter {
  bottom: 40px;
}

.form__counter.success {
  color: var(--text);
}

.form__input {
  display: block;
  width: 100%;
  height: 53px;
  max-height: 53px;
  padding: 16px 50px 18px 20px;
  border: none;
  border-radius: 10px;
  background: var(--bg-gray);
  position: relative;
  z-index: 2;
  -webkit-transition: max-height 0.3s linear;
  transition: max-height 0.3s linear;
}

.form__input.date[type="date"] {
  padding: 16px 20px 18px 20px;
}

.form__input:focus {
  max-height: 500px;
  outline: none;
}

.form__textarea {
  resize: none;
  overflow: hidden;
}

.form__policy {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form__policy a {
  color: var(--color);
}

.form__policy_check {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background-color: var(--bg-gray);
  border-radius: 4px;
}

.form__policy input,
.form__input_file {
  display: none;
  position: absolute;
  -webkit-appearance: none;
  appearance: none;
}

.form__policy_check svg {
  width: 12px;
  height: 8px;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.form__policy input:checked ~ .form__policy_check svg {
  opacity: 1;
}

.form__policy input ~ .form__policy_check svg {
  opacity: 0;
}

.form__file {
  display: flex;
  width: 100%;
  padding: 5px;
  align-items: center;
  gap: 15px;
  background-color: var(--bg-gray);
  border-radius: 10px;
}

.form__file_button {
  padding: 12px 20px;
  flex: 0 0 auto;
  color: var(--text);
  background-color: var(--bg);
  border-radius: 7px;
  -webkit-transition: color 0.15s linear, background-color 0.15s linear;
  transition: color 0.15s linear, background-color 0.15s linear;
  cursor: pointer;
}

.form__file_button:hover {
  color: var(--bg);
  background-color: var(--color);
}

.form__file_list,
.form__file_item {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 5px;
}

.form__file_list p,
.form__file_list span {
  color: var(--text-gray);
}

.form__file_item:not(:last-child)::after {
  content: ",";
  margin: 0 0 0 -5px;
}

.form__file_list p {
  margin: 0;
}

.dark .form__input:focus::-webkit-calendar-picker-indicator,
.form__input::-webkit-calendar-picker-indicator {
  display: flex;
  width: 24px;
  height: 24px;
  position: absolute;
  top: calc(50% - 1px);
  right: 20px;
  z-index: 2;
  border-radius: 20px;
  background-color: transparent;
  background-image: url("data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iZm9ybV9fY291bnRlciIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+DQogICAgPHBhdGgNCiAgICBkPSJNMy4zMzMzNyA3LjVWMTUuODMzM0MzLjMzMzM3IDE2LjI3NTQgMy41MDg5NyAxNi42OTkzIDMuODIxNTMgMTcuMDExOEM0LjEzNDA5IDE3LjMyNDQgNC41NTgwMSAxNy41IDUuMDAwMDQgMTcuNUgxNUMxNS40NDIxIDE3LjUgMTUuODY2IDE3LjMyNDQgMTYuMTc4NiAxNy4wMTE4QzE2LjQ5MTEgMTYuNjk5MyAxNi42NjY3IDE2LjI3NTQgMTYuNjY2NyAxNS44MzMzVjcuNU0zLjMzMzM3IDcuNVY1LjgzMzMzQzMuMzMzMzcgNS4zOTEzMSAzLjUwODk3IDQuOTY3MzggMy44MjE1MyA0LjY1NDgyQzQuMTM0MDkgNC4zNDIyNiA0LjU1ODAxIDQuMTY2NjcgNS4wMDAwNCA0LjE2NjY3SDYuNjY2NzFNMy4zMzMzNyA3LjVIMTYuNjY2N00xNi42NjY3IDcuNVY1LjgzMzMzQzE2LjY2NjcgNS4zOTEzMSAxNi40OTExIDQuOTY3MzggMTYuMTc4NiA0LjY1NDgyQzE1Ljg2NiA0LjM0MjI2IDE1LjQ0MjEgNC4xNjY2NyAxNSA0LjE2NjY3SDEzLjMzMzRNNi42NjY3MSA0LjE2NjY3SDEzLjMzMzRNNi42NjY3MSA0LjE2NjY3VjIuNU0xMy4zMzM0IDQuMTY2NjdWMi41Ig0KICAgIHN0cm9rZT0iIzAwMCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIC8+DQo8L3N2Zz4=");
  opacity: 0.5;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.form__control.error .form__input::-webkit-calendar-picker-indicator,
.form__control.success .form__input::-webkit-calendar-picker-indicator,
.form__input:focus::-webkit-calendar-picker-indicator {
  opacity: 1;
}

.form__input:focus::-webkit-calendar-picker-indicator {
  color: var(--text);
}

/* end form */

/* start form__successfully */

.form__successfully_image {
  width: 100%;
  max-width: 256px;
  max-height: 256px;
  padding: 0 0 10px;
  color: var(--green);
}

.form__successfully_image img {
  width: 100%;
  object-fit: contain;
}

.form__successfully_head {
  padding: 0 0 30px;
}

.form__button_pass {
  display: flex;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  bottom: 16px;
  z-index: 3;
  color: var(--text-gray);
  -webkit-transition: color 0.2s linear, bottom 0.3s linear;
  transition: color 0.2s linear, bottom 0.3s linear;
}

.form__control.error .form__button_pass {
  bottom: 32px;
}

.form__button_pass:hover {
  color: var(--color);
}

.form__button_pass svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.form__button_pass svg:nth-child(1),
.form__button_pass.active svg:nth-child(2) {
  display: flex;
}

.form__button_pass.active svg:nth-child(1),
.form__button_pass svg:nth-child(2) {
  display: none;
} 

/* end form__successfully */

/* start form__select */

.form__select_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.form__select {
  position: relative;
  width: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.form__select_selected_item {
  display: flex;
  width: max-content;
  min-height: 53px;
  padding: 10px 15px;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  color: var(--text);
  background-color: var(--bg-gray);
  border: none;
  border-radius: 10px;
  -webkit-transition: background-color 0.15s linear;
  transition: background-color 0.15s linear;
  cursor: pointer;
}

.form__control_flex .form__select_selected_item {
  width: 100%;
}

.form__control_flex .form__select_box {
  width: calc(50% - 5px);
}

.form__select_selected_item:hover {
  background-color: var(--bg-gray);
}

.dark .form__select_selected_item:hover {
  background-color: var(--border);
}

.form__select_arrow {
  width: 11px;
  height: 11px;
  object-fit: contain;
  color: var(--text);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
}

.form__select_arrow_rotate {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.form__select_list {
  width: 100%;
  max-width: calc(100vw - 30px);
  height: 170px;
  max-height: 0;
  position: absolute;
  top: 54px;
  z-index: 10;
  border: 1px solid transparent;
  border-radius: 10px;
  visibility: hidden;
  box-shadow: 0px 4px 14px 0px #0000001A;
  opacity: 0;
  -webkit-transition: max-height 0.3s linear, visibility 0.3s linear, border-color 0.3s linear, opacity 0.3s linear;
  transition: max-height 0.3s linear, visibility 0.3s linear, border-color 0.3s linear, opacity 0.3s linear;
  -webkit-transition-delay: 0s, 0.3s, 0.3s, 0.3s;
  transition-delay: 0s, 0.3s, 0.3s, 0.3s;
  overflow-y: scroll;
  overflow-x: hidden;
}

.form__select_list_opened {
  max-height: 170px;
  border-color: var(--border);
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  z-index: 11;
}

.form__select_list::-webkit-scrollbar {
  width: 3px;
  background: var(--bg);
}

.form__select_list::-webkit-scrollbar-thumb {
  width: 3px;
  background: var(--color);
}

.form__select_list_item {
  padding: 10px 20px;
  color: var(--text);
  background-color: var(--bg);
  cursor: pointer;
}

.form__select_list_item:hover {
  color: var(--text);
  background-color: var(--bg);
}

.form__select_input {
  display: none;
}

.form__select_label {
  color: var(--text);
}

/* end form__select */

/* all */

.pageWrapper .form__input {
  text-transform: none;
}

/* all */

/* start 1919px */
/* @media (max-width: 1919px) { */
@media (max-width: 10000px) {
  .container {
    padding: 0 30px;
  }
}
/* end 1919px */

/* start 1439px */
@media (max-width: 1439px) {
}
/* end 1439px */

/* start min 1280px */
@media (min-width: 1280px) {
}
/* end min 1280px */

/* start 1280px */
@media (max-width: 1280px) {
}
/* end 1280px */

/* start 767px */
/* @media (max-width: 767px) { */
@media (max-width: 9999px) {
  .form__control_flex .form__control,
  .form__control_flex .form__select_box {
    width: 100%;
  }
}
/* end 767px */

/* start 390px */
@media (max-width: 390px) {
}
/* end 390px */

/* start animate */

.animate_image img {
  opacity: 0;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: opacity 1s var(--ease), -webkit-transform 1s var(--ease);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.loaded .animate_image.animated img {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.animate_top {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: -webkit-transform 0.7s var(--ease), opacity 0.5s var(--ease);
  transition: -webkit-transform 0.7s var(--ease), opacity 0.5s var(--ease);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.loaded .animate_top.animated {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.animate_left {
  opacity: 0;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  -webkit-transition: -webkit-transform 0.7s var(--ease), opacity 0.5s var(--ease);
  transition: -webkit-transform 0.7s var(--ease), opacity 0.5s var(--ease);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.loaded .animate_left.animated {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.animate_right {
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: -webkit-transform 0.7s var(--ease), opacity 0.5s var(--ease);
  transition: -webkit-transform 0.7s var(--ease), opacity 0.5s var(--ease);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.loaded .animate_right.animated {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* end animate */