.small-animate {
  animation-duration: 0.5s;
  animation-name: animate-fade;
  animation-delay: 0.5s;
  animation-fill-mode: backwards;
}

@keyframes animate-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header {
  background: #fff;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 900;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1000px) {
  header {
    display: none !important;
  }
}
header .header {
  display: flex;
  
  gap: 20px;
  width: 100%;
  padding: 14px 0;
  transition: all 0.3s ease;
  box-sizing: border-box;
  height: 100%;
}
@media screen and (max-width: 1320px) {
  header .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
  }
}
header .header__logo a {
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
  max-width: 110px;
}
@media screen and (max-width: 700px) {
  header .header__logo a {
    max-width: 80px;
  }
}
header .header__logo a img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
header .header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}
header .header__nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1320px) {
  header .header__nav ul {
    gap: 10px;
  }
}
header .header__nav ul li.active-nav a {
  color: var(--green-color);
}
header .header__nav ul li.active-nav a:active, header .header__nav ul li.active-nav a:target {
  color: var(--green-color) !important;
}
header .header__nav ul li a {
  color: rgb(95, 95, 95);
  font-family: var(--main-font);
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1320px) {
  header .header__nav ul li a {
    font-size: 16px;
  }
}
header .header__nav ul li a:active, header .header__nav ul li a:target {
  color: var(--green-color);
}
header .header__nav ul li a:hover {
  color: #262626;
}
header .header__nav ul .parent-nav {
  position: relative;
}
header .header__nav ul .parent-nav.active-parent .dropdown {
  color: var(--green-color);
}
header .header__nav ul .parent-nav.active-parent .dropdown::after {
  transition: all 0.3s ease;
  transform: rotate(0deg);
}
header .header__nav ul .parent-nav .dropdown {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
header .header__nav 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;
}
header .header__nav ul .parent-nav .sub-nav {
  width: -moz-max-content;
  width: max-content;
  left: 0;
  top: calc(100% + 1rem);
  border-radius: 10px;
  position: absolute;
  background: #fff;
  border: 1px solid rgb(220, 222, 221);
  padding: 24px;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s ease;
  opacity: 1;
  animation: hideSub 0.3s ease 1;
}
@keyframes hideSub {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    display: none;
  }
}
header .header__nav ul .parent-nav .sub-nav.active-sub {
  transition: all 0.3s ease;
  opacity: 1;
  display: flex;
  animation: showSub 0.3s ease 1;
}
@keyframes showSub {
  0% {
    opacity: 0;
  }
  99% {
    opacity: 1;
  }
  100% {
    display: flex;
  }
}
header .header__nav ul .parent-nav .sub-nav li a {
  color: rgb(95, 95, 95);
  font-family: var(--main-font);
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 1320px) {
  header .header__nav ul .parent-nav .sub-nav li a {
    font-size: 16px;
  }
}
header .header__nav ul .parent-nav .sub-nav li a:hover {
  color: var(--black-color);
}
header .header__buy-license {
  align-self: center;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
}
header .header__buy-license a span {
  font-size: 16px;
}

#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;
}
@media screen and (min-width: 1000px) {
  #mob-header {
    display: none;
  }
}
@media screen and (min-width: 700px) {
  #mob-header {
    max-height: 120px;
  }
}
#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;
  animation: gapNotZero 0.6s ease 1;
}
@keyframes gapNotZero {
  0% {
    gap: 0px;
  }
  100% {
    gap: 4px;
  }
}
@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;
  animation: gapZero 0.6s ease 1;
}
@keyframes gapZero {
  0% {
    gap: 4px;
  }
  100% {
    gap: 0px;
  }
}
#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;
  animation: hideSubMob 0.3s ease 1;
}
@keyframes hideSubMob {
  0% {
    max-height: 200px;
  }
  100% {
    max-height: 0px;
  }
}
#mob-header .header__nav .nav_container ul .parent-nav .sub-nav.active-sub {
  transition: all 0.3s ease;
  max-height: 200px;
  animation: showSubMob 0.6s ease 1;
}
@keyframes showSubMob {
  0% {
    max-height: 0px;
  }
  100% {
    max-height: 200px;
  }
}
#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;
  }
}

main {
  min-height: inherit;
}
main #banner {
  margin-top: 110px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1000px) {
  main #banner {
    margin-bottom: 60px;
  }
}
main #banner .banner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 32px;
  background: var(--gray-color);
  padding: 55px 55px 33px 55px;
  border-radius: 40px;
}
@media screen and (max-width: 1100px) {
  main #banner .banner {
    flex-direction: column-reverse;
    border-radius: 20px;
  }
}
@media screen and (max-width: 700px) {
  main #banner .banner {
    padding: 20px;
  }
}
main #banner .banner__content {
  max-width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 67px;
}
@media screen and (max-width: 1100px) {
  main #banner .banner__content {
    max-width: 100%;
    gap: 24px;
  }
}
main #banner .banner__content .logo_container {
  width: 100%;
  max-width: 210px;
}
@media screen and (max-width: 1100px) {
  main #banner .banner__content .logo_container {
    display: none;
  }
}
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 .logo_container img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
main #banner .banner__content .text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
main #banner .banner__content .text h1 {
  max-width: 90%;
  color: var(--green-color);
  font-family: var(--main-font);
  font-size: 42px;
  font-weight: 700;
}
@media screen and (max-width: 1290px) {
  main #banner .banner__content .text h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 700px) {
  main #banner .banner__content .text h1 {
    font-size: 24px;
  }
}
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 {
  color: var(--black-color);
  font-family: Inter;
  font-size: 24px;
  font-weight: 400;
}
@media screen and (max-width: 1290px) {
  main #banner .banner__content .text p {
    font-size: 16px;
  }
}
@media screen and (max-width: 700px) {
  main #banner .banner__content .text p {
    font-size: 14px;
  }
}
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 {
  width: 40%;
}
@media screen and (max-width: 1530px) {
  main #banner .banner__content .green-button {
    width: 80%;
  }
}
@media screen and (max-width: 1100px) {
  main #banner .banner__content .green-button {
    max-width: 40%;
  }
}
@media screen and (max-width: 700px) {
  main #banner .banner__content .green-button {
    max-width: 80%;
  }
  main #banner .banner__content .green-button span {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  main #banner .banner__content .green-button {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
}
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 {
  width: 100%;
  background-image: url("/images/icons/lines-banned.svg");
  background-repeat: no-repeat;
  background-size: 115%;
  background-position: center;
}
@media screen and (max-width: 1290px) {
  main #banner .banner__image {
    background-size: contain;
  }
}
@media screen and (max-width: 540px) {
  main #banner .banner__image {
    height: 100%;
    max-height: 300px;
    box-sizing: border-box;
  }
}
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;
}
main #business {
  margin-bottom: 120px;
}
@media screen and (max-width: 1000px) {
  main #business {
    margin-bottom: 60px;
  }
}
main #business h2 {
  max-width: 60%;
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  main #business h2 {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 1300px) {
  main #business h2 {
    font-size: 40px;
    max-width: 70%;
  }
}
@media screen and (max-width: 1000px) {
  main #business h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 700px) {
  main #business h2 {
    font-size: 24px;
    max-width: 100%;
  }
}
main #business .business {
  border-radius: 40px;
  background: var(--gray-color);
  background-image: url("/images/icons/circle-lines-green.svg");
  background-position: top right;
  background-repeat: no-repeat;
  padding: 72px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  overflow: hidden;
}
@media screen and (max-width: 1600px) {
  main #business .business {
    background-size: 160px;
  }
}
@media screen and (max-width: 1100px) {
  main #business .business {
    background-image: none;
    flex-direction: column-reverse;
    padding: 20px;
    border-radius: 20px;
    gap: 24px;
  }
}
main #business .business #business_slider {
  width: 100%;
}
main #business .business #business_slider .swiper-wrapper .swiper-slide {
  height: auto;
}
main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 56px;
}
@media screen and (max-width: 1100px) {
  main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element {
    flex-direction: column;
    gap: 16px;
    height: 100%;
  }
}
main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element .image_container {
  min-width: 50%;
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-height: 480px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element .image_container {
    min-height: 248px;
    max-height: 248px;
    border-radius: 15px;
  }
}
main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element .image_container img {
  width: inherit;
  height: inherit;
  min-height: inherit;
  max-height: inherit;
}
main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 56px;
}
@media screen and (max-width: 1170px) {
  main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element .content {
    gap: 27px;
    height: 100%;
    justify-content: space-between;
  }
}
main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element .content .title {
  color: var(--green-color);
  font-family: var(--main-font);
  font-size: 26px;
  font-weight: 700;
}
@media screen and (max-width: 1100px) {
  main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element .content .title {
    display: none;
  }
}
main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element .content .text {
  color: var(--black-color);
  font-family: var(--main-font);
  font-size: 24px;
  font-weight: 400;
}
@media screen and (max-width: 1100px) {
  main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element .content .text {
    font-size: 14px;
  }
}
main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element .content .text.element-animation {
  transition: all 0.8s ease !important;
  transform: translate(-100px, -100px);
}
main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element .content .text.element-show {
  transform: translate(0px, 0px);
}
main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element .content a {
  width: 100%;
  max-width: 45%;
}
main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element .content a span {
  padding: 22px;
}
@media screen and (max-width: 1650px) {
  main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element .content a {
    max-width: 70%;
  }
}
@media screen and (max-width: 1170px) {
  main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element .content a {
    max-width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element .content a {
    max-width: 45%;
  }
}
@media screen and (max-width: 800px) {
  main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element .content a {
    max-width: 100%;
  }
  main #business .business #business_slider .swiper-wrapper .swiper-slide .business_element .content a span {
    font-size: 16px;
  }
}
main #business .business #business_thumbs {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 1100px) {
  main #business .business #business_thumbs {
    align-items: center;
    gap: 9px;
  }
}
@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 {
  visibility: hidden;
}
main #business .business #business_thumbs .button-prev {
  left: -3.5rem;
}
@media screen and (max-width: 1100px) {
  main #business .business #business_thumbs .button-prev {
    visibility: visible;
  }
}
main #business .business #business_thumbs .button-next {
  right: -3.5rem;
}
main #business .business #business_thumbs__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 2px 0;
}
@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);
}
main #advantages {
  margin-bottom: 120px;
  background: var(--green-color);
}
@media screen and (max-width: 1000px) {
  main #advantages {
    margin-bottom: 60px;
  }
}
main #advantages .container {
  padding-top: 132px;
  padding-bottom: 132px;
}
@media screen and (max-width: 1000px) {
  main #advantages .container {
    padding-top: 60px;
    padding-bottom: 20px;
  }
}
main #advantages h3 {
  color: #fff;
}
@media screen and (max-width: 1000px) {
  main #advantages h3 {
    font-size: 32px;
  }
}
@media screen and (max-width: 700px) {
  main #advantages h3 {
    font-size: 24px;
  }
}
main #advantages::after {
  content: "";
  display: none;
  width: 100%;
  height: 334px;
  background: #fff;
  background-image: url("/images/other/green-lines-bg.svg");
  background-repeat: repeat-x;
  background-size: contain;
  background-position: 0px -1px;
}
@media screen and (max-width: 1000px) {
  main #advantages::after {
    height: 64px;
  }
}
main #advantages .advantages {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 1430px) {
  main #advantages .advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages {
    margin-top: 24px;
  }
}
@media screen and (max-width: 870px) {
  main #advantages .advantages {
    display: flex;
    flex-direction: column;
  }
}
main #advantages .advantages .advantages__element {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 40px 32px 40px 32px;
  box-sizing: border-box;
  border-radius: 20px;
}
@media screen and (max-width: 1430px) {
  main #advantages .advantages .advantages__element {
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media screen and (max-width: 700px) {
  main #advantages .advantages .advantages__element {
    padding: 20px 20px 40px 20px !important;
    background-position: bottom -45px right 20px !important;
    min-height: 0px !important;
    gap: 24px !important;
    min-height: 140 !important;
  }
}
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;
}
main #advantages .advantages .advantages__element .title, main #advantages .advantages .advantages__element .text {
  color: var(--black-color);
  font-family: var(--main-font);
}
@media screen and (max-width: 700px) {
  main #advantages .advantages .advantages__element .title, main #advantages .advantages .advantages__element .text {
    gap: 24px !important;
  }
}
main #advantages .advantages .advantages__element .title {
  font-size: 36px;
  font-weight: 700;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1700px) {
  main #advantages .advantages .advantages__element .title {
    font-size: 30px;
  }
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element .title {
    max-width: 100% !important;
  }
}
@media screen and (max-width: 700px) {
  main #advantages .advantages .advantages__element .title {
    font-size: 20px;
  }
}
main #advantages .advantages .advantages__element .text {
  font-size: 22px;
  font-weight: 400;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .advantages__element .text {
    font-size: 14px;
    max-width: 100% !important;
  }
}
main #advantages .advantages .left_box {
  width: 100%;
  max-width: calc(30% - 10px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 1430px) {
  main #advantages .advantages .left_box {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 700px) {
  main #advantages .advantages .left_box {
    gap: 24px !important;
  }
}
main #advantages .advantages .left_box .advantages__element {
  width: 100%;
  height: 100%;
  max-height: calc(55% - 16px);
}
main #advantages .advantages .left_box .advantages__element:nth-child(2n) {
  max-height: calc(45% - 16px);
}
main #advantages .advantages .right_box {
  width: 100%;
  max-width: calc(70% - 10px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1430px) {
  main #advantages .advantages .right_box {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 700px) {
  main #advantages .advantages .right_box {
    gap: 24px !important;
    display: flex;
    flex-direction: column;
  }
}
main #advantages .advantages .right_box .advantages__element {
  width: 100%;
  min-height: 100px;
}
main #advantages .advantages .right_box .advantages__element .text {
  max-width: 90%;
}
@media screen and (max-width: 1000px) {
  main #advantages .advantages .right_box .advantages__element .text {
    max-width: 100% !important;
  }
}
main #advantages .advantages .right_box .row_box {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 1430px) {
  main #advantages .advantages .right_box .row_box {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 700px) {
  main #advantages .advantages .right_box .row_box {
    gap: 24px !important;
  }
}
main #advantages .advantages .right_box .row_box .advantages__element {
  width: 100%;
  max-width: 55%;
}
@media screen and (max-width: 1430px) {
  main #advantages .advantages .right_box .row_box .advantages__element {
    max-width: 100% !important;
  }
}
main #advantages .advantages .right_box .row_box .advantages__element .text {
  max-width: 100%;
}
main #advantages .advantages .right_box .row_box .advantages__element:last-child {
  width: 100%;
  max-width: 45%;
}
main #licenses {
  margin-bottom: 120px;
}
@media screen and (max-width: 1000px) {
  main #licenses {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1000px) {
  main #licenses h4 {
    font-size: 32px;
  }
}
@media screen and (max-width: 700px) {
  main #licenses h4 {
    font-size: 28px;
  }
}
main #licenses .licenses {
  margin-top: 80px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 1320px) {
  main #licenses .licenses {
    gap: 24px;
  }
}
@media screen and (max-width: 1300px) {
  main #licenses .licenses {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1000px) {
  main #licenses .licenses {
    margin-top: 40px;
  }
}
@media screen and (max-width: 850px) {
  main #licenses .licenses {
    display: flex;
    flex-direction: column;
  }
}
main #licenses .licenses__element {
  height: 100%;
  min-height: 692px;
  width: 100%;
  max-width: calc(33% - 16px);
  box-sizing: border-box;
  border: 1px solid rgb(115, 192, 102);
  border-radius: 30px;
  background: #fff;
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media screen and (max-width: 1750px) {
  main #licenses .licenses__element {
    min-height: 550px;
    padding: 32px 20px;
  }
}
@media screen and (max-width: 1300px) {
  main #licenses .licenses__element {
    max-width: calc(50% - 12px);
  }
}
@media screen and (max-width: 850px) {
  main #licenses .licenses__element {
    max-width: 100%;
  }
}
main #licenses .licenses__element h5 {
  color: var(--black-color);
  font-family: var(--main-font);
  font-size: 48px;
  font-weight: 700;
}
@media screen and (max-width: 1750px) {
  main #licenses .licenses__element h5 {
    font-size: 32px;
  }
}
main #licenses .licenses__element .advantages {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
main #licenses .licenses__element .advantages li {
  width: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  color: var(--black-color);
  font-family: var(--main-font);
  font-size: 24px;
  font-weight: 400;
}
@media screen and (max-width: 1750px) {
  main #licenses .licenses__element .advantages li {
    font-size: 16px;
  }
}
main #licenses .licenses__element .advantages li::before {
  content: "";
  display: block;
  background-image: url("/images/icons/mark-check-green.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
}
main #licenses .licenses__element .prices {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
main #licenses .licenses__element .prices li {
  width: inherit;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
}
main #licenses .licenses__element .prices li .title, main #licenses .licenses__element .prices li .value {
  color: var(--black-color);
  font-family: var(--main-font);
  font-size: 24px;
  font-weight: 400;
}
@media screen and (max-width: 1750px) {
  main #licenses .licenses__element .prices li .title, main #licenses .licenses__element .prices li .value {
    font-size: 16px;
  }
}
main #licenses .licenses__element .prices li .value {
  text-align: right;
}
main #licenses .licenses__element .button {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
}
main #licenses .licenses__element .button .green-button {
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}
main #licenses .licenses__element .button .green-button span {
  padding: 20px 22px;
}
@media screen and (max-width: 1750px) {
  main #licenses .licenses__element .button .green-button span {
    font-size: 16px;
  }
}
@media screen and (max-width: 850px) {
  main #licenses .licenses__element .button .green-button span {
    padding: 12px 22px;
  }
}
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 span {
  background: #fff;
  color: var(--green-color);
}
main #licenses .licenses__element:nth-child(2n) .button .green-button::before {
  background: #fff;
}
main #licenses .licenses__element:nth-child(2n) .button .green-button::after {
  background: #fff;
}
main #licenses .licenses__element:nth-child(2n) .button .green-button:hover span {
  background: var(--green-color);
  color: #fff;
  transition: all 0.7s ease;
}
main #performance {
  margin-bottom: 120px;
}
@media screen and (max-width: 1000px) {
  main #performance {
    margin-bottom: 60px;
  }
}
main #performance h6 {
  max-width: 50%;
}
@media screen and (max-width: 1700px) {
  main #performance h6 {
    max-width: 80%;
  }
}
@media screen and (max-width: 1050px) {
  main #performance h6 {
    max-width: 100%;
    font-size: 32px;
  }
}
@media screen and (max-width: 700px) {
  main #performance h6 {
    font-size: 20px;
  }
}
main #performance .performance {
  margin-top: 100px;
}
@media screen and (max-width: 1000px) {
  main #performance .performance {
    margin-top: 24px;
  }
}
main #performance .performance #pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
@media screen and (min-width: 1150px) {
  main #performance .performance #pagination {
    display: none !important;
  }
}
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 {
  overflow: hidden;
}
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;
}
main #performance .performance #performance_slider .swiper-wrapper .swiper-slide {
  box-sizing: border-box;
  position: relative;
  background: var(--gray-color);
  border-radius: 40px;
  padding: 76px 80px 76px 80px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 10%;
}
@media screen and (max-width: 1400px) {
  main #performance .performance #performance_slider .swiper-wrapper .swiper-slide {
    gap: 35px;
  }
}
@media screen and (max-width: 1150px) {
  main #performance .performance #performance_slider .swiper-wrapper .swiper-slide {
    padding: 20px;
    align-items: center;
  }
}
@media screen and (max-width: 1000px) {
  main #performance .performance #performance_slider .swiper-wrapper .swiper-slide {
    flex-direction: column;
    padding: 76px 80px 76px 80px;
    height: auto;
  }
}
@media screen and (max-width: 700px) {
  main #performance .performance #performance_slider .swiper-wrapper .swiper-slide {
    padding: 40px 20px;
    border-radius: 20px;
  }
}
main #performance .performance #performance_slider .swiper-wrapper .swiper-slide .image_container {
  min-width: 30%;
  min-height: 394px;
  max-height: 394px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media screen and (max-width: 1150px) {
  main #performance .performance #performance_slider .swiper-wrapper .swiper-slide .image_container {
    align-items: center;
  }
}
@media screen and (max-width: 1000px) {
  main #performance .performance #performance_slider .swiper-wrapper .swiper-slide .image_container {
    min-height: 300px;
    max-height: 300px;
  }
}
@media screen and (max-width: 700px) {
  main #performance .performance #performance_slider .swiper-wrapper .swiper-slide .image_container {
    min-height: 200px;
    max-height: 200px;
  }
}
main #performance .performance #performance_slider .swiper-wrapper .swiper-slide .image_container img {
  width: 100%;
  max-width: 100%;
  max-height: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}
main #performance .performance #performance_slider .swiper-wrapper .swiper-slide .text_container {
  width: 100%;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 32px;
}
@media screen and (max-width: 1000px) {
  main #performance .performance #performance_slider .swiper-wrapper .swiper-slide .text_container {
    max-width: 100%;
  }
}
main #performance .performance #performance_slider .swiper-wrapper .swiper-slide .text_container .title, main #performance .performance #performance_slider .swiper-wrapper .swiper-slide .text_container .text {
  color: var(--black-color);
  font-family: var(--main-font);
}
main #performance .performance #performance_slider .swiper-wrapper .swiper-slide .text_container .title {
  font-size: 48px;
  font-weight: 700;
}
@media screen and (max-width: 1150px) {
  main #performance .performance #performance_slider .swiper-wrapper .swiper-slide .text_container .title {
    font-size: 32px;
  }
}
main #performance .performance #performance_slider .swiper-wrapper .swiper-slide .text_container .text {
  font-size: 24px;
  font-weight: 400;
  max-width: 75%;
}
@media screen and (max-width: 1400px) {
  main #performance .performance #performance_slider .swiper-wrapper .swiper-slide .text_container .text {
    max-width: 100%;
  }
}
@media screen and (max-width: 1150px) {
  main #performance .performance #performance_slider .swiper-wrapper .swiper-slide .text_container .text {
    font-size: 16px;
  }
}
main #performance .performance #performance_slider .swiper-wrapper .swiper-slide .button-prev {
  left: 1rem;
}
@media screen and (max-width: 1150px) {
  main #performance .performance #performance_slider .swiper-wrapper .swiper-slide .button-prev {
    display: none;
  }
}
main #performance .performance #performance_slider .swiper-wrapper .swiper-slide .button-next {
  right: 1rem;
}
@media screen and (max-width: 1150px) {
  main #performance .performance #performance_slider .swiper-wrapper .swiper-slide .button-next {
    display: none;
  }
}
main #steps {
  margin-bottom: 120px;
}
@media screen and (max-width: 1000px) {
  main #steps {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1000px) {
  main #steps h6 {
    font-size: 32px;
  }
}
@media screen and (max-width: 700px) {
  main #steps h6 {
    font-size: 24px;
  }
}
main #steps .steps {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1100px) {
  main #steps .steps {
    flex-direction: row;
    border-left: 2px solid var(--green-color);
    margin-left: 4rem;
    margin-top: 40px;
    width: auto;
  }
}
@media screen and (max-width: 500px) {
  main #steps .steps {
    margin-left: 2.5rem;
  }
}
main #steps .steps__line {
  border: 2px solid var(--green-color);
  width: 100%;
  margin: 140px 0 60px 0;
}
@media screen and (max-width: 1100px) {
  main #steps .steps__line {
    display: none;
  }
}
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 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1100px) {
  main #steps .steps__container {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    max-width: 70%;
    margin-left: 5rem;
    gap: 46px;
  }
}
main #steps .steps__container .element {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  padding-left: 7rem;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1430px) {
  main #steps .steps__container .element {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 1100px) {
  main #steps .steps__container .element {
    gap: 16px;
  }
}
@media screen and (max-width: 650px) {
  main #steps .steps__container .element {
    padding-left: 0;
  }
}
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;
}
main #steps .steps__container .element .icon {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  height: 96px;
  width: 100%;
  top: -8rem;
}
@media screen and (max-width: 1100px) {
  main #steps .steps__container .element .icon {
    top: 0;
    left: -7.2rem;
    height: 100%;
    max-width: 70px;
  }
}
main #steps .steps__container .element .number {
  color: var(--green-color);
  font-family: var(--main-font);
  font-size: 56px;
  font-weight: 700;
}
@media screen and (max-width: 650px) {
  main #steps .steps__container .element .number {
    font-size: 32px;
  }
}
main #steps .steps__container .element .text {
  color: var(--black-color);
  font-family: var(--main-font);
  font-size: 24px;
  font-weight: 400;
  max-width: 90%;
}
@media screen and (max-width: 650px) {
  main #steps .steps__container .element .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 1000px) {
  main #steps .steps__container .element:nth-child(1) {
    margin-top: 3rem;
  }
}
main #about {
  margin-bottom: 120px;
}
@media screen and (max-width: 1000px) {
  main #about {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1000px) {
  main #about h6 {
    font-size: 32px;
  }
}
@media screen and (max-width: 700px) {
  main #about h6 {
    font-size: 24px;
  }
}
main #about .about {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 1200px) {
  main #about .about {
    flex-direction: column;
  }
}
@media screen and (max-width: 1000px) {
  main #about .about {
    margin-top: 40px;
  }
}
main #about .about .image_container {
  min-width: 40%;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  main #about .about .image_container {
    min-width: 100%;
    max-width: 100%;
  }
}
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 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
main #about .about .image_container #anime-js-circle {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  min-height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 800px) {
  main #about .about .image_container #anime-js-circle {
    min-height: 350px;
    overflow: hidden;
  }
}
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 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1790px) {
  main #about .about ul {
    gap: 20px;
  }
}
@media screen and (max-width: 1650px) {
  main #about .about ul {
    grid-template-columns: repeat(2, 1fr);
    z-index: 2;
    background: #fff;
  }
}
@media screen and (max-width: 500px) {
  main #about .about ul {
    gap: 10px;
  }
}
main #about .about ul li {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
}
@media screen and (max-width: 1790px) {
  main #about .about ul li {
    padding: 20px;
  }
}
@media screen and (max-width: 500px) {
  main #about .about ul li {
    margin-top: 20px;
    padding: 0;
  }
}
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);
}
main #about .about ul li .title {
  color: var(--green-color);
  font-family: var(--main-font);
  font-size: 56px;
  font-weight: 700;
  text-wrap: nowrap;
  transition: all 0.3s ease;
}
@media screen and (max-width: 850px) {
  main #about .about ul li .title {
    font-size: 32px;
  }
}
main #about .about ul li .text {
  color: var(--black-color);
  font-family: var(--main-font);
  font-size: 24px;
  font-weight: 400;
  transition: all 0.3s ease;
}
@media screen and (max-width: 850px) {
  main #about .about ul li .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 1000px) {
  main #choose-us h6 {
    font-size: 32px;
  }
}
@media screen and (max-width: 700px) {
  main #choose-us h6 {
    font-size: 24px;
  }
}
main #choose-us .choose-us {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1570px) {
  main #choose-us .choose-us {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 800px) {
  main #choose-us .choose-us {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
main #choose-us .choose-us__element {
  border: 1px solid var(--green-color);
  border-radius: 40px;
  padding: 56px 32px 10px 32px;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1570px) {
  main #choose-us .choose-us__element {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
@media screen and (max-width: 1100px) {
  main #choose-us .choose-us__element {
    border-radius: 20px;
    padding: 20px;
  }
}
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);
}
main #choose-us .choose-us__element .number_container {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 40px;
}
main #choose-us .choose-us__element .number_container .number {
  background: var(--green-color);
  color: #fff;
  font-family: var(--main-font);
  font-size: 20px;
  font-weight: 500;
  min-width: 44px;
  max-width: 44px;
  min-height: 44px;
  max-height: 44px;
  border-radius: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  main #choose-us .choose-us__element .number_container .number {
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
  }
}
@media screen and (max-width: 700px) {
  main #choose-us .choose-us__element .number_container .number {
    min-width: 38px;
    max-width: 38px;
    min-height: 38px;
    max-height: 38px;
    font-size: 20px;
  }
}
main #choose-us .choose-us__element .number_container .image_container {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: center;
  min-height: 200px;
}
@media screen and (max-width: 1570px) {
  main #choose-us .choose-us__element .number_container .image_container {
    min-height: 180px;
  }
}
@media screen and (max-width: 1100px) {
  main #choose-us .choose-us__element .number_container .image_container {
    display: none;
  }
}
main #choose-us .choose-us__element .number_container .image_container img {
  margin-top: -2.8rem;
  width: 100%;
  max-height: 70px;
  min-height: 70px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 1570px) {
  main #choose-us .choose-us__element .number_container .image_container img {
    min-width: 262px;
    max-width: 262px;
  }
}
main #choose-us .choose-us__element .text {
  color: var(--black-color);
  font-family: var(--main-font);
  font-size: 24px;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1570px) {
  main #choose-us .choose-us__element .text {
    font-size: 20px;
  }
}
@media screen and (max-width: 700px) {
  main #choose-us .choose-us__element .text {
    font-size: 14px;
  }
}
main #choose-us .choose-us__element:last-child {
  grid-column: span 2;
}
@media screen and (max-width: 1570px) {
  main #choose-us .choose-us__element:last-child {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    grid-column: span 3;
  }
}
@media screen and (max-width: 1100px) {
  main #choose-us .choose-us__element:last-child {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 800px) {
  main #choose-us .choose-us__element:last-child {
    grid-column: unset;
  }
}
main #choose-us .choose-us__element:last-child .number_container {
  min-width: 30%;
}
@media screen and (max-width: 1400px) {
  main #choose-us .choose-us__element:last-child .number_container {
    min-width: 40%;
  }
}
@media screen and (max-width: 1220px) {
  main #choose-us .choose-us__element:last-child .number_container {
    min-width: 50%;
  }
}
@media screen and (max-width: 1100px) {
  main #choose-us .choose-us__element:last-child .number_container {
    min-width: auto;
  }
}
main #text-content {
  margin-top: 150px;
}
@media screen and (max-width: 1000px) {
  main #text-content {
    margin-top: 110px;
  }
}
@media screen and (max-width: 1000px) {
  main #text-content h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 700px) {
  main #text-content h1 {
    font-size: 24px;
  }
}
main #text-content .text {
  margin-top: 40px;
  color: var(--black-color);
  font-family: var(--main-font);
  font-size: 24px;
  font-weight: 400;
  transition: all 0.3s ease;
}
main #text-content .text.element-animation {
  transition: all 0.3s ease !important;
  transition-delay: 0.2s !important;
  opacity: 0;
  transform: translate(-50px, -50px);
}
main #text-content .text.element-show {
  opacity: 1 !important;
  transform: translate(0px, 0px);
}
@media screen and (max-width: 1000px) {
  main #text-content .text {
    margin-top: 24px;
  }
}
@media screen and (max-width: 800px) {
  main #text-content .text {
    font-size: 14px;
  }
}
main #text-content .text p {
  margin-bottom: 24px;
}
main #integrator {
  margin-top: 110px;
}
@media screen and (max-width: 1000px) {
  main #integrator {
    margin-top: 40px;
  }
}
main #integrator h2 {
  max-width: 90%;
}
@media screen and (max-width: 1000px) {
  main #integrator h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 700px) {
  main #integrator h2 {
    font-size: 24px;
  }
}
main #integrator h2 span {
  color: var(--green-color);
}
main #integrator .integrator {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1300px) {
  main #integrator .integrator {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator {
    margin-top: 30px;
    gap: 15px;
  }
}
@media screen and (max-width: 600px) {
  main #integrator .integrator {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
}
main #integrator .integrator__element {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  transition: all 0.3s ease;
}
main #integrator .integrator__element.element-animation {
  transition: all 0.3s ease !important;
}
main #integrator .integrator__element.element-animation:nth-child(1n) .icon_placeholder {
  opacity: 0;
  transform: translateX(-50px);
  transition-delay: 0.2s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(1n) .icon_placeholder {
    transition-delay: 0.1s;
  }
}
main #integrator .integrator__element.element-animation:nth-child(1n) .text {
  opacity: 0;
  transform: translateY(-50px);
  transition-delay: 0.3s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(1n) .text {
    transition-delay: 0.2s;
  }
}
main #integrator .integrator__element.element-animation:nth-child(2n) .icon_placeholder {
  opacity: 0;
  transform: translateX(-50px);
  transition-delay: 0.4s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(2n) .icon_placeholder {
    transition-delay: 0.2s;
  }
}
main #integrator .integrator__element.element-animation:nth-child(2n) .text {
  opacity: 0;
  transform: translateY(-50px);
  transition-delay: 0.6s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(2n) .text {
    transition-delay: 0.4s;
  }
}
main #integrator .integrator__element.element-animation:nth-child(3n) .icon_placeholder {
  opacity: 0;
  transform: translateX(-50px);
  transition-delay: 0.6s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(3n) .icon_placeholder {
    transition-delay: 0.3s;
  }
}
main #integrator .integrator__element.element-animation:nth-child(3n) .text {
  opacity: 0;
  transform: translateY(-50px);
  transition-delay: 0.9s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(3n) .text {
    transition-delay: 0.6s;
  }
}
main #integrator .integrator__element.element-animation:nth-child(4n) .icon_placeholder {
  opacity: 0;
  transform: translateX(-50px);
  transition-delay: 0.8s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(4n) .icon_placeholder {
    transition-delay: 0.4s;
  }
}
main #integrator .integrator__element.element-animation:nth-child(4n) .text {
  opacity: 0;
  transform: translateY(-50px);
  transition-delay: 1.2s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(4n) .text {
    transition-delay: 0.8s;
  }
}
main #integrator .integrator__element.element-animation:nth-child(5n) .icon_placeholder {
  opacity: 0;
  transform: translateX(-50px);
  transition-delay: 1s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(5n) .icon_placeholder {
    transition-delay: 0.5s;
  }
}
main #integrator .integrator__element.element-animation:nth-child(5n) .text {
  opacity: 0;
  transform: translateY(-50px);
  transition-delay: 1.5s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(5n) .text {
    transition-delay: 1s;
  }
}
main #integrator .integrator__element.element-animation:nth-child(6n) .icon_placeholder {
  opacity: 0;
  transform: translateX(-50px);
  transition-delay: 1.2s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(6n) .icon_placeholder {
    transition-delay: 0.6s;
  }
}
main #integrator .integrator__element.element-animation:nth-child(6n) .text {
  opacity: 0;
  transform: translateY(-50px);
  transition-delay: 1.8s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(6n) .text {
    transition-delay: 1.2s;
  }
}
main #integrator .integrator__element.element-animation:nth-child(7n) .icon_placeholder {
  opacity: 0;
  transform: translateX(-50px);
  transition-delay: 1.4s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(7n) .icon_placeholder {
    transition-delay: 0.7s;
  }
}
main #integrator .integrator__element.element-animation:nth-child(7n) .text {
  opacity: 0;
  transform: translateY(-50px);
  transition-delay: 2.1s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(7n) .text {
    transition-delay: 1.4s;
  }
}
main #integrator .integrator__element.element-animation:nth-child(8n) .icon_placeholder {
  opacity: 0;
  transform: translateX(-50px);
  transition-delay: 1.6s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(8n) .icon_placeholder {
    transition-delay: 0.8s;
  }
}
main #integrator .integrator__element.element-animation:nth-child(8n) .text {
  opacity: 0;
  transform: translateY(-50px);
  transition-delay: 2.4s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(8n) .text {
    transition-delay: 1.6s;
  }
}
main #integrator .integrator__element.element-animation:nth-child(9n) .icon_placeholder {
  opacity: 0;
  transform: translateX(-50px);
  transition-delay: 1.8s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(9n) .icon_placeholder {
    transition-delay: 0.9s;
  }
}
main #integrator .integrator__element.element-animation:nth-child(9n) .text {
  opacity: 0;
  transform: translateY(-50px);
  transition-delay: 2.7s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(9n) .text {
    transition-delay: 1.8s;
  }
}
main #integrator .integrator__element.element-animation:nth-child(10n) .icon_placeholder {
  opacity: 0;
  transform: translateX(-50px);
  transition-delay: 2s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(10n) .icon_placeholder {
    transition-delay: 1s;
  }
}
main #integrator .integrator__element.element-animation:nth-child(10n) .text {
  opacity: 0;
  transform: translateY(-50px);
  transition-delay: 3s;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element.element-animation:nth-child(10n) .text {
    transition-delay: 2s;
  }
}
main #integrator .integrator__element.element-show .icon_placeholder {
  opacity: 1 !important;
  transform: translateX(0px) !important;
}
main #integrator .integrator__element.element-show .text {
  opacity: 1 !important;
  transform: translateY(0px) !important;
}
@media screen and (max-width: 700px) {
  main #integrator .integrator__element {
    margin-top: 14px;
  }
}
@media screen and (max-width: 600px) {
  main #integrator .integrator__element {
    width: 100%;
    max-width: calc(50% - 5px);
    gap: 24px;
  }
  main #integrator .integrator__element:last-child {
    max-width: 65%;
  }
}
main #integrator .integrator__element .icon_placeholder {
  background: var(--green-color);
  border-radius: 10px;
  min-width: 88px;
  max-width: 88px;
  min-height: 88px;
  max-height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element .icon_placeholder {
    min-width: 60px;
    max-width: 60px;
    min-height: 60px;
    max-height: 60px;
  }
}
@media screen and (max-width: 700px) {
  main #integrator .integrator__element .icon_placeholder {
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
  }
}
main #integrator .integrator__element .icon_placeholder img {
  max-width: 30px;
  width: 100%;
  transition: all 0.3s ease;
}
@media screen and (max-width: 700px) {
  main #integrator .integrator__element .icon_placeholder img {
    max-width: 22px;
  }
}
main #integrator .integrator__element .text {
  color: var(--black-color);
  font-family: var(--main-font);
  font-size: 24px;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  main #integrator .integrator__element .text {
    font-size: 16px;
  }
}
@media screen and (max-width: 700px) {
  main #integrator .integrator__element .text {
    font-size: 13px;
  }
}
main #have-question {
  margin-top: 110px;
}
@media screen and (max-width: 1000px) {
  main #have-question {
    margin-top: 40px;
  }
}
main #have-question .question {
  padding: 72px 56px 91px 56px;
  background: var(--gray-color);
  border-radius: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1300px) {
  main #have-question .question {
    gap: 20px;
  }
}
@media screen and (max-width: 1000px) {
  main #have-question .question {
    padding: 32px 20px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 700px) {
  main #have-question .question {
    flex-direction: column-reverse;
  }
}
main #have-question .question.element-animation {
  transition: all 0.6s ease !important;
  opacity: 0;
  transform: translateX(-100px);
}
main #have-question .question.element-show {
  opacity: 1 !important;
  transform: translateX(0px);
}
main #have-question .question .content {
  width: 100%;
  min-width: 50%;
  max-width: 50%;
}
@media screen and (max-width: 700px) {
  main #have-question .question .content {
    max-width: 100%;
  }
}
main #have-question .question .content h3 {
  font-size: 40px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1300px) {
  main #have-question .question .content h3 {
    font-size: 32px;
  }
}
@media screen and (max-width: 1000px) {
  main #have-question .question .content h3 {
    font-size: 20px;
  }
}
main #have-question .question .content p {
  margin-top: 32px;
  color: var(--black-color);
  font-family: var(--main-font);
  font-size: 24px;
  font-weight: 400;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1300px) {
  main #have-question .question .content p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  main #have-question .question .content p {
    font-size: 16px;
  }
}
@media screen and (max-width: 700px) {
  main #have-question .question .content p {
    margin-top: 24px;
  }
}
main #have-question .question .content .green-button {
  margin-top: 60px;
  width: 100%;
  max-width: 50%;
}
@media screen and (max-width: 1300px) {
  main #have-question .question .content .green-button {
    max-width: 70%;
  }
}
@media screen and (max-width: 1000px) {
  main #have-question .question .content .green-button span {
    font-size: 16px;
  }
}
@media screen and (max-width: 700px) {
  main #have-question .question .content .green-button {
    max-width: 350px;
    margin-top: 32px;
  }
}
main #have-question .question .image_container {
  width: 100%;
  max-width: 550px;
}
@media screen and (max-width: 700px) {
  main #have-question .question .image_container {
    max-width: 350px;
  }
}
main #have-question .question .image_container img {
  width: inherit;
  max-width: inherit;
}
main #manual {
  margin-top: 150px;
}
@media screen and (max-width: 1000px) {
  main #manual {
    margin-top: 110px;
  }
}
main #manual .manual {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 80px);
}
main #manual .manual h1 {
  font-family: var(--main-font);
  color: var(--black-color);
  font-weight: 600;
  font-size: clamp(20px, 4vw, 44px);
}
main #manual .manual .manuals {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 32px;
}
@media screen and (max-width: 1500px) {
  main #manual .manual .manuals {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1100px) {
  main #manual .manual .manuals {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media screen and (max-width: 660px) {
  main #manual .manual .manuals {
    grid-template-columns: repeat(1, 1fr);
  }
}
main #manual .manual .manuals .item {
  background: rgb(236, 236, 236);
  padding: 40px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1100px) {
  main #manual .manual .manuals .item {
    gap: 21px;
    padding: 32px;
  }
}
main #manual .manual .manuals .item:hover {
  background-color: var(--green-color);
}
main #manual .manual .manuals .item:hover .name {
  color: #fff;
}
main #manual .manual .manuals .item:hover::after {
  background-image: url("/images/icons/white-file.svg");
}
main #manual .manual .manuals .item .name {
  flex-grow: 1;
  font-family: var(--main-font);
  color: var(--black-color);
  font-weight: 600;
  font-size: 24px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1100px) {
  main #manual .manual .manuals .item .name {
    font-size: 18px;
  }
}
main #manual .manual .manuals .item::after {
  align-self: flex-end;
  content: "";
  display: block;
  background-image: url("/images/icons/black-file.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 34px;
  max-height: 34px;
  min-width: 34px;
  min-height: 34px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1100px) {
  main #manual .manual .manuals .item::after {
    max-width: 24px;
    max-height: 24px;
    min-width: 24px;
    min-height: 24px;
  }
}

footer {
  margin-top: 120px;
  background: var(--gray-color);
}
@media screen and (max-width: 1000px) {
  footer {
    margin-top: 60px;
  }
}
footer .footer {
  display: grid;
  grid-template-columns: calc(20% - 10px) calc(60% - 20px) calc(20% - 20px);
  gap: 20px;
  width: 100%;
  padding: 64px 0 22px 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 700px) {
  footer .footer {
    padding: 40px 0 12px 0;
  }
}
footer .footer .mob-show {
  display: none;
}
@media screen and (max-width: 940px) {
  footer .footer .mob-show {
    margin-top: 20px;
    display: flex;
  }
}
footer .footer .mob-hidden {
  display: flex;
}
@media screen and (max-width: 940px) {
  footer .footer .mob-hidden {
    display: none !important;
  }
}
@media screen and (max-width: 940px) {
  footer .footer {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 940px) {
  footer .footer__logo {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 700px) {
  footer .footer__logo {
    justify-content: flex-start;
  }
}
footer .footer__logo a {
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
  max-width: 210px;
}
@media screen and (max-width: 700px) {
  footer .footer__logo a {
    max-width: 125px;
  }
}
footer .footer__logo a img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
footer .footer__center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1330px) {
  footer .footer__center {
    gap: 40px;
  }
}
@media screen and (max-width: 700px) {
  footer .footer__center nav {
    width: 100%;
  }
}
footer .footer__center nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1330px) {
  footer .footer__center nav ul {
    gap: 14px;
  }
}
@media screen and (max-width: 700px) {
  footer .footer__center nav ul {
    width: inherit;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
footer .footer__center nav ul li a {
  color: var(--black-color);
  font-family: var(--main-font);
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1330px) {
  footer .footer__center nav ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 700px) {
  footer .footer__center nav ul li a {
    font-size: 16px;
  }
}
footer .footer__center nav ul li a:hover {
  color: var(--green-color);
}
footer .footer__phone {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
@media screen and (max-width: 940px) {
  footer .footer__phone {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    align-items: center;
  }
}
@media screen and (max-width: 700px) {
  footer .footer__phone {
    align-items: flex-start;
    margin: initial;
  }
}
footer .footer__phone .title, footer .footer__phone a {
  color: var(--black-color);
  font-family: var(--main-font);
}
footer .footer__phone .title {
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1330px) {
  footer .footer__phone .title {
    font-size: 14px;
  }
}
@media screen and (max-width: 700px) {
  footer .footer__phone .title {
    font-size: 16px;
  }
}
footer .footer__phone a {
  font-size: 24px;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1330px) {
  footer .footer__phone a {
    font-size: 16px;
  }
}
@media screen and (max-width: 700px) {
  footer .footer__phone a {
    font-size: 20px;
    font-weight: 600;
  }
}
footer .footer__phone a:hover {
  color: rgb(100, 100, 100);
}
footer .footer .under_info {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
footer .footer .under_info .copyright, footer .footer .under_info a {
  color: rgb(151, 154, 151);
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1330px) {
  footer .footer .under_info .copyright, footer .footer .under_info a {
    font-size: 14px;
  }
}
footer .footer .under_info a:hover {
  color: rgb(97, 97, 97);
}/*# sourceMappingURL=style.css.map */