@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", "sans-serif";
}

body {
  font-size: 62.5%;
}

a {
  cursor: pointer;
}

ul {
  list-style: none;
}

.btnsetting{
    min-width: 300px;
    background-color: #261F4F!important;
    color: white!important;
    margin: 1%;
}

button {
  margin-top: 32px;
  background-color: #261F4F;
  padding: 16px 32px;
  color: white;
  font-weight: 600;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

.reverse {
  transform: rotate(180deg);
}

#fullpage {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  cursor: "zoom-out";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-color: rgb(228, 228, 228);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}
.header__primary-nav {
  display: none;
}
.header__primary-nav ul {
  display: flex;
}
.header__primary-nav ul li {
  margin-right: 32px;
}
.header__primary-nav ul li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.header__logo {
  display: block;
  width: clamp(60px, 30%, 140px);
}
.header__hamburger {
  width: 36px;
  height: 36px;
}
.header__mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  width: 75vw;
  height: 100vh;
  box-shadow: -8px 4px 24px 0px rgba(66, 68, 90, 0.21);
  background-color: white;
}
.header__mobile nav {
  width: 100%;
}
.header__mobile nav ul li:nth-child(1) {
  margin-top: 64px;
}
.header__mobile nav ul li {
  margin-top: 36px;
}
.header__mobile nav ul li a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}
.header__mobile--close-icon {
  width: 36px;
  height: 36px;
}
.header__mobile--opened {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 32px;
}

.marginbot{
    margin-bottom: 3%;
}

@media (min-width: 1024px) {
  .header {
    padding: 16px 32px;
  }
  .header nav {
    display: block;
  }
  .header__hamburger {
    display: none;
  }
}
@media (min-width: 1440px) {
  .header nav ul li {
    margin-right: 64px;
  }
}
.zoo-company {
  margin-top: 32px;
  padding: 32px;
}
.zoo-company__background {
  width: 560px;
  height: auto;
}
.zoo-company__title {
  margin-top: 8px;
  font-size: clamp(32px, 2.5vw, 64px);
}
.zoo-company div {
  width: 100%;
}
.zoo-company a {
  text-decoration: none;
  color: inherit;
}
.zoo-company__train {
  position: absolute;
  z-index: 100;
  animation: move_train 5s linear infinite;
  -webkit-animation: move_train 5s linear infinite;
  padding-top: 53%;
  scale: 1;
}
.zoo-company__animation-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0;
  white-space: nowrap;
}
.zoo-company__animation-container img {
  display: none;
}
.zoo-company__item {
  display: flex;
  margin-top: 16px;
}
.zoo-company__item__item:nth-child(1) {
  margin-top: 32px;
}
.zoo-company__item img {
  width: 24px;
  height: 24px;
}
.zoo-company__item p {
  margin-left: 8px;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 500;
}
.zoo-company__item--first {
  margin-top: 32px;
}

@keyframes move_train {
  0% {
    transform: translateX(-590px);
  }
  10% {
    transform: translateX(-590px);
  }
  45% {
    transform: translateX(-200px);
  }
  55% {
    transform: translateX(-200px);
  }
  90% {
    transform: translateX(-590px);
  }
  100% {
    transform: translateX(-590px);
  }
}
@keyframes move_train_tablet {
  0% {
    transform: translateX(-430px);
  }
  10% {
    transform: translateX(-430px);
  }
  45% {
    transform: translateX(-200px);
  }
  55% {
    transform: translateX(-200px);
  }
  90% {
    transform: translateX(-430px);
  }
  100% {
    transform: translateX(-430px);
  }
}
@media (min-width: 1500px) {
  .zoo-company {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .zoo-company__background {
    width: 700px;
    height: auto;
  }
  .zoo-company__train {
    position: absolute;
    z-index: 100;
    animation: move_train_tablet 10s linear infinite;
    -webkit-animation: move_train_tablet 10s linear infinite;
    padding-top: 340px;
    scale: 1.5;
  }
  .zoo-company__animation-container img {
    display: initial;
  }
}
@media (min-width: 2000px) {
  .zoo-company {
    display: flex;
    justify-content: center;
  }
  .zoo-company__background {
    width: 950px;
    height: auto;
  }
  .zoo-company__train {
    position: absolute;
    z-index: 100;
    animation: move_train 10s linear infinite;
    -webkit-animation: move_train 10s linear infinite;
    padding-top: 472px;
    scale: 1.5;
  }
  .zoo-company__animation-container img {
    display: initial;
  }
}
.jdg-company {
  background-color: #edebf2;
  margin-top: 32px;
  padding: 32px;
}
.jdg-company__background {
  width: 100%;
  max-width: 1024px;
  position: relative;
}
.jdg-company a {
  text-decoration: none;
  color: inherit;
}
@keyframes move_car {
  0% {
    transform: translateX(-90%);
    padding-right: 80%;
  }
  100% {
    transform: translateX(10%);
    padding-right: 80%;
  }
}
.jdg-company__animation-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0;
  white-space: nowrap;
}
.jdg-company__animation-container__road {
  position: absolute;
  bottom: 15%;
  width: 94%;
  height: 5px;
  background-color: #110929;
  max-width: 1024px;
  border-radius: 8px;
}
.jdg-company__animation-container img {
  display: none;
}
.jdg-company__car {
  position: absolute;
  z-index: 100;
  animation: move_car 5s linear infinite;
  -webkit-animation: move_car 5s linear infinite;
  bottom: 32%;
  scale: 1;
}
.jdg-company__title {
  font-size: clamp(32px, 2.5vw, 64px);
}
.jdg-company__item {
  display: flex;
  margin-top: 16px;
}
.jdg-company__item__item:nth-child(1) {
  margin-top: 32px;
}
.jdg-company__item img {
  width: 24px;
  height: 24px;
}
.jdg-company__item p {
  margin-left: 8px;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 500;
}
.jdg-company__item--first {
  margin-top: 32px;
}

@media (min-width: 1500px) {
  .jdg-company {
    display: flex;
    justify-content: center;
  }
  .jdg-company__car {
    position: absolute;
    z-index: 100;
    animation: move_car 10s linear infinite;
    -webkit-animation: move_car 10s linear infinite;
    padding-top: 45%;
    scale: 1.3;
  }
  .jdg-company__animation-container img {
    display: initial;
  }
}
@keyframes book3 {
  0% {
    opacity: 0;
  }
  59% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes book2 {
  0% {
    opacity: 0;
  }
  29% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pen {
  0% {
    transform: translateY(0) translateX(0);
  }
  30% {
    transform: translateY(10px) translateX(10px);
  }
  80% {
    transform: translateY(-20px) translateX(25px);
  }
  100% {
    transform: translateY(-20px) translateX(25px);
  }
}
@keyframes check {
  0% {
    opacity: 0;
  }
  79% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.payments {
  background-color: #9c96b1;
  padding: 32px 16px;
  text-align: center;
}
.payments img {
  display: none;
}
.payments div {
  margin-top: 24px;
}
.payments div h1 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 300;
}
.payments div p {
  margin-top: 16px;
  font-size: clamp(16px, 2.5vw, 20px);
}

@media (min-width: 1280px) {
  .payments {
    display: flex;
  }
  .payments img {
    display: block;
  }
  .payments__images {
    width: 744px !important;
    height: 527px;
    position: relative;
  }
  .payments__check {
    width: 40px;
    position: absolute;
    top: 127px;
    left: 307px;
    animation: check 5s linear infinite;
    -webkit-animation: check 5s linear infinite;
  }
  .payments__pen {
    position: absolute;
    top: 147px;
    left: 306px;
    width: 200px;
    animation: pen 5s linear infinite;
    -webkit-animation: pen 5s linear infinite;
  }
  .payments .book3 {
    animation: book3 5s linear infinite;
    -webkit-animation: book3 5s linear infinite;
  }
  .payments .book2 {
    animation: book2 5s linear infinite;
    -webkit-animation: book2 5s linear infinite;
  }
  .payments .payments__background {
    width: 744px;
    height: 527px;
  }
  .payments .books {
    position: absolute;
    width: 90px;
    top: 380px;
    left: 150px;
  }
  .payments div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
  }
  .payments div button {
    color: white;
  }
}
@keyframes shine {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(8px) scale(1.05);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
.business-advices {
  background-color: #524a71;
  padding-top: 32px;
  padding-bottom: 32px;
  position: relative;
}
.business-advices__shine {
  display: none;
  max-width: 828px;
}
.business-advices__background {
  max-width: 828px;
  display: none;
}
.business-advices__content {
  padding-top: 10%;
  text-align: center;
  color: white;
}
.business-advices__content h1 {
  font-size: clamp(32px, 2.5vw, 64px);
  font-weight: 300;
}
.business-advices__content h2 {
  margin-top: 32px;
  font-weight: 500;
}
.business-advices__content p {
  padding: 0 16px;
  margin-top: 8px;
  font-size: clamp(16px, 2.5vw, 20px);
}
.business-advices__content--buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.business-advices__content--buttons button {
  width: 100%;
  max-width: 360px;
}
.business-advices__content--buttons a {
  width: 80%;
  max-width: 360px;
}

@media (min-width: 1280px) {
  .business-advices {
    display: flex;
  }
  .business-advices__shine {
    display: block;
    width: 454px;
    height: 321px;
    position: absolute;
    top: 0%;
    left: 0%;
  }
  .business-advices__shine img {
    width: 25%;
    position: absolute;
    top: 65px;
    left: 200px;
    animation: shine 4s linear infinite;
    -webkit-animation: shine 4s linear infinite;
  }
  .business-advices__background {
    width: 454px;
    height: 321px;
    display: block;
  }
  .business-advices__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0%;
  }
  .business-advices__content p {
    padding: 0 10vw;
  }
  .business-advices__content--buttons {
    margin-top: 32px;
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
  .business-advices__content--buttons a:nth-child(1) {
    margin-right: 8px;
  }
  .business-advices__content--buttons a:nth-child(2) {
    margin-left: 8px;
  }
}
@keyframes scale_heart {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes rotate_thumb {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}
.opinions {
  padding: 64px 0;
  background-color: #312b4f;
  color: white;
  text-align: center;
}
.opinions__animations {
  width: 50%;
}
.opinions__animations__background {
  display: none;
  width: 100%;
}
.opinions__animations__heart {
  display: none;
  animation: scale_heart 3s linear infinite;
  -webkit-animation: scale_heart 3s linear infinite;
}
.opinions__animations__like {
  display: none;
  animation: rotate_thumb 2s linear infinite;
  -webkit-animation: rotate_thumb 2s linear infinite;
}
.opinions__content h1 {
  font-size: clamp(32px, 2.5vw, 64px);
}
.opinions__content--stars {
  margin-top: 40px;
}
.opinions__content--stars img {
  width: 32px;
  height: 32px;
}
.opinions__content--text {
  margin-top: 8px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.opinions__content--text div {
  padding: 0 32px;
  max-width: 840px;
}
.opinions__content--text div h2 {
  font-size: clamp(16px, 2.5vw, 20px);
}
.opinions__content--text div p {
  font-size: clamp(14px, 2.5vw, 18px);
}
.opinions__content--text img {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .opinions__content--text div {
    padding: 0 clamp(32px, 10%, 128px);
  }
}
@media (min-width: 1280px) {
  .opinions {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .opinions__animations {
    position: relative;
  }
  .opinions__animations__background {
    display: block;
  }
  .opinions__animations__heart {
    display: block;
    position: absolute;
    width: 15%;
    top: 53%;
    right: 31%;
  }
  .opinions__animations__like {
    display: block;
    position: absolute;
    width: 15%;
    top: 17%;
    left: 33%;
    z-index: 100;
  }
}
.footer-container {
  background-color: #110929;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer {
  width: 100%;
  max-width: 1920px;
  color: white;
  padding: 40px 0 40px 0;
}
.footer__image {
  width: 100%;
  max-width: 260px;
  margin: 36px auto 0 auto;
}
.footer__contact {
  margin-top: 36px;
  text-align: center;
}
.footer__contact h1 {
  font-size: 16px;
}
.footer__contact h2 {
  font-size: 14px;
  margin-top: 32px;
}
.footer__contact p {
  font-size: 12px;
}
.footer__contact--with-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__contact--with-icon img {
  width: 26px;
  height: 26px;
  margin-right: 16px;
}
.footer__contact--with-icon p {
  font-weight: 600;
}
.footer__cookies {
  font-size: 12px;
  padding: 0 32px;
  text-align: center;
  max-width: 375px;
  margin: 36px auto 0 auto;
}

@media (min-width: 1024px) {
  .footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 64px;
  }
  .footer__image {
    width: 15%;
    margin: 0;
    padding: 0;
  }
  .footer__contact {
    text-align: left;
  }
  .footer__contact--with-icon {
    justify-content: flex-start;
  }
  .footer__cookies {
    margin: 0;
    padding: 0;
    width: 20%;
  }
}
@keyframes move_plane {
  0% {
    transform: translateX(-100%);
    padding-right: 110%;
  }
  100% {
    transform: translateX(20%);
    padding-right: 110%;
  }
}
@keyframes move_tower {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes move_tower-platform-begin {
  0% {
    opacity: 1;
  }
  34% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes move_tower-platform-middle {
  0% {
    opacity: 0;
  }
  32% {
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  66% {
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes move_tower-platform-end {
  0% {
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes move_crane {
  10% {
    transform: rotateY(0deg);
    transform-origin: 30%;
  }
  40% {
    transform: rotateY(30deg);
    transform-origin: 30%;
  }
  60% {
    transform: rotateY(30deg);
    transform-origin: 30%;
  }
  90% {
    transform: rotateY(0deg);
    transform-origin: 30%;
  }
}
@keyframes move_man {
  0% {
    transform: translateX(-1%);
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes move_man2 {
  0% {
    transform: translateX(-4%);
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateX(125%);
    opacity: 0;
  }
}
@keyframes move_man_left {
  0% {
    transform: translateX(-1%);
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@keyframes move_man_left2 {
  0% {
    transform: translateX(-1%);
  }
  100% {
    transform: translateX(-300%);
  }
}
@keyframes move_man_left3 {
  0% {
    transform: translateX(-1%);
  }
  100% {
    transform: translateX(-350%);
  }
}
@keyframes move_man_right2 {
  0% {
    transform: translateX(-400%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes move_man_right4 {
  0% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(-150%);
  }
}
.main-animation {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0;
  white-space: nowrap;
}
.main-animation__plane {
  position: absolute;
  z-index: 100;
  animation: move_plane 10s linear infinite;
  -webkit-animation: move_plane 10s linear infinite;
  width: 120%;
  top: 10px;
}
.main-animation__tower {
  position: absolute;
  z-index: 50;
  right: 50%;
  animation: move_tower 5s linear infinite;
  -webkit-animation: move_tower 5s linear infinite;
  padding-top: 5.7%;
  width: 4%;
  bottom: 17.8%;
  scale: 1;
}
.main-animation__tower-platform-begin {
  position: absolute;
  z-index: 50;
  right: 50%;
  animation: move_tower-platform-begin 2.1s linear infinite;
  -webkit-animation: move_tower-platform-begin 2.1s linear infinite;
  padding-top: 5.7%;
  width: 4%;
  bottom: 57.8%;
  scale: 1;
}
.main-animation__tower-platform-middle {
  position: absolute;
  z-index: 50;
  right: 50%;
  animation: move_tower-platform-middle 2.1s linear infinite;
  -webkit-animation: move_tower-platform-middle 2.1s linear infinite;
  padding-top: 5.7%;
  width: 4%;
  bottom: 57.8%;
  scale: 1;
}
.main-animation__tower-platform-end {
  position: absolute;
  z-index: 50;
  right: 50%;
  animation: move_tower-platform-end 2.1s linear infinite;
  -webkit-animation: move_tower-platform-end 2.1s linear infinite;
  padding-top: 5.7%;
  width: 4%;
  bottom: 57.8%;
  scale: 1;
}
.main-animation__crane {
  position: absolute;
  z-index: 50;
  left: 14%;
  animation: move_crane 5s linear infinite;
  -webkit-animation: move_crane 5s linear infinite;
  padding-top: 5.7%;
  width: 13%;
  bottom: 40%;
  scale: 1;
}
.main-animation__gate {
  position: absolute;
  z-index: 90;
  right: 50%;
  bottom: 2%;
  width: 29.1%;
  left: 45%;
}
.main-animation__man-right {
  height: 16px;
  position: absolute;
  z-index: 100;
  left: -1%;
  padding-right: 9.5%;
  bottom: 1.5%;
  animation: move_man 30s linear infinite;
  -webkit-animation: move_man 30s linear infinite;
}
.main-animation__man-right3 {
  height: 16px;
  position: absolute;
  z-index: 100;
  left: -1%;
  padding-right: 9.5%;
  bottom: 1.5%;
  animation: move_man2 40s linear infinite;
  -webkit-animation: move_man2 40s linear infinite;
}
.main-animation__man-left {
  height: 16px;
  position: absolute;
  z-index: 100;
  right: -1%;
  padding-left: 9.5%;
  bottom: 1.5%;
  animation: move_man_left 45s linear infinite;
  -webkit-animation: move_man_left 45s linear infinite;
}
.main-animation__man-left2 {
  height: 16px;
  position: absolute;
  z-index: 100;
  right: 25%;
  padding-left: 9.5%;
  bottom: 1.5%;
  animation: move_man_left2 45s linear infinite;
  -webkit-animation: move_man_left2 45s linear infinite;
}
.main-animation__man-left3 {
  height: 16px;
  position: absolute;
  z-index: 100;
  right: 25%;
  padding-left: 9.5%;
  bottom: 1.5%;
  animation: move_man_left3 37s linear infinite;
  -webkit-animation: move_man_left3 37s linear infinite;
}
.main-animation__man-right2 {
  height: 16px;
  position: absolute;
  z-index: 100;
  right: 15%;
  padding-left: 9.5%;
  bottom: 1.5%;
  animation: move_man_right2 45s linear infinite;
  -webkit-animation: move_man_right2 45s linear infinite;
}
.main-animation__man-right4 {
  height: 16px;
  position: absolute;
  z-index: 100;
  right: 15%;
  padding-left: 9.5%;
  bottom: 1.5%;
  animation: move_man_right4 60s linear infinite;
  -webkit-animation: move_man_right4 60s linear infinite;
}

@media (min-width: 768px) {
  .main-animation__man-right {
    height: 24px;
  }
  .main-animation__man-left {
    height: 24px;
  }
  .main-animation__man-left2 {
    height: 24px;
  }
  .main-animation__man-left3 {
    height: 24px;
  }
  .main-animation__man-right2 {
    height: 24px;
  }
  .main-animation__man-right3 {
    height: 24px;
  }
  .main-animation__man-right4 {
    height: 24px;
  }
}
@media (min-width: 1440px) {
  .main-animation__man-right {
    height: 32px;
  }
  .main-animation__man-left {
    height: 32px;
  }
  .main-animation__man-left2 {
    height: 32px;
  }
  .main-animation__man-left3 {
    height: 32px;
  }
  .main-animation__man-right2 {
    height: 32px;
  }
  .main-animation__man-right3 {
    height: 32px;
  }
  .main-animation__man-right4 {
    height: 32px;
  }
}
@media (min-width: 1280px) {
  .jdg-company__plane {
    position: absolute;
    z-index: 100;
    animation: move_car 10s linear infinite;
    -webkit-animation: move_car 10s linear infinite;
    scale: 1.5;
  }
  .jdg-company__tower {
    position: absolute;
    z-index: 100;
    right: 50%;
    padding-top: 5.7%;
    animation: move_tower 5s linear infinite;
    -webkit-animation: move_tower 5s linear infinite;
    scale: 1.3;
  }
}
@keyframes move_chackmate {
  0% {
    transform: rotateZ(-5deg);
    transform-origin: center;
  }
  50% {
    transform: rotateZ(15deg);
    transform-origin: center;
  }
  100% {
    transform: rotateZ(-5deg);
    transform-origin: center;
  }
}
@keyframes move_books {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.pricing {
  display: block;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.pricing__images {
  width: 100%;
  position: relative;
  display: none;
}
.pricing__images__books {
  position: absolute;
  width: 20%;
  top: 30%;
  left: 51%;
  animation: move_books 5s linear infinite;
  -webkit-animation: move_books 5s linear infinite;
}
.pricing__images__chackmate {
  position: absolute;
  width: 12%;
  top: 40%;
  left: 15%;
  animation: move_chackmate 5s linear infinite;
  -webkit-animation: move_chackmate 5s linear infinite;
}
.pricing__images__numbers {
  position: absolute;
  width: 6%;
  top: 50%;
  left: 71%;
  animation: move_books 5s linear infinite;
  -webkit-animation: move_books 5s linear infinite;
}
.pricing__images__background {
  width: 100%;
}
.pricing div h1 {
  margin-top: 3%;
  font-size: clamp(32px, 1.5vw, 32px);
}
.pricing div p {
  margin-top: 16px;
  font-size: clamp(16px, 2.5vw, 20px);
}

@media (min-width: 768px) {
  .pricing {
    display: flex;
    justify-content: center;
    text-align: start;
    align-items: flex-start;
  }
  .pricing__images {
    width: 100%;
    position: relative;
    display: block;
  }
  .pricing div h1 {
    margin-top: 10%;
    font-size: clamp(32px, 1.5vw, 32px);
  }
  .pricing div p {
    margin-top: 16px;
    font-size: clamp(16px, 2.5vw, 20px);
  }
}
.downloadPDF {
  cursor: pointer;
  margin: 3% 0;
  text-align: center;
}

@keyframes small_shine {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(2px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
@keyframes move_arrow {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  50% {
    transform: translateY(2px) scale(1.02);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
}
@keyframes move_clock {
  0% {
    transform: rotate(0deg);
    transform-origin: 9.5px 25px;
  }
  100% {
    transform: rotate(360deg);
    transform-origin: 9.5px 25px;
  }
}
.accounting {
  display: block;
  padding-bottom: 32px;
}
.accounting__text {
  margin: 0% 10%;
}
.accounting__background {
  width: 650px;
}
.accounting__shine {
  width: 70px;
  position: absolute;
  right: 34px;
  top: 164px;
  animation: small_shine 3s linear infinite;
  -webkit-animation: small_shine 3s linear infinite;
}
.accounting__arrow {
  width: 90px;
  position: absolute;
  left: 150px;
  top: 125px;
  animation: move_arrow 3s linear infinite;
  -webkit-animation: move_arrow 3s linear infinite;
}
.accounting .image-container {
  width: 650px;
  display: none;
  position: relative;
}
.accounting .image-container-germany {
  width: 600px;
  display: none;
  position: relative;
}
.accounting .image-container-germany__background {
  width: 600px;
}
.accounting div h1 {
  margin-top: 10%;
  font-size: clamp(32px, 1.5vw, 32px);
}
.accounting div p {
  margin-top: 16px;
  font-size: clamp(16px, 2.5vw, 20px);
}

.accounting-buttons {
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: #edecf4;
  padding: clamp(32px, 6%, 64px) 0px;
}
.accounting-buttons a {
  width: 100%;
  text-align: center;
}
.accounting-buttons a img {
  filter: brightness(0) saturate(100%) invert(28%) sepia(38%) saturate(527%) hue-rotate(212deg) brightness(92%) contrast(85%);
  scale: 2.2;
  margin: 0 5%;
}
.accounting-buttons a span {
  font-size: clamp(16px, 1.5vw, 32px);
  color: #524a71;
}
.accounting-buttons a:hover {
  width: 100%;
  text-align: center;
}
.accounting-buttons a:hover img {
  filter: brightness(0) saturate(100%) invert(74%) sepia(73%) saturate(1772%) hue-rotate(9deg) brightness(102%) contrast(101%);
}
.accounting-buttons a:hover span {
  color: #e6cc00;
}

@media (min-width: 768px) {
  .accounting {
    display: flex;
    justify-content: center;
  }
  .accounting__text {
    margin: 0% 10%;
  }
  .accounting div h1 {
    margin-top: 10%;
    font-size: clamp(32px, 1.5vw, 32px);
  }
  .accounting div p {
    margin-top: 16px;
    font-size: clamp(16px, 2.5vw, 20px);
  }
  .accounting-buttons a span {
    display: contents;
  }
}
@media (min-width: 1280px) {
  .accounting {
    display: flex;
    justify-content: center;
  }
  .accounting .image-container {
    width: 650px;
    display: initial;
  }
  .accounting .image-container-germany {
    width: 600px;
    display: initial;
    position: relative;
  }
  .accounting .image-container-germany__background {
    width: 600px;
  }
  .accounting .image-container-germany__steam {
    width: 30px;
    position: absolute;
    right: 120px;
    top: 244px;
    animation: steam 5s linear infinite;
    -webkit-animation: steam 5s linear infinite;
  }
  .accounting .image-container-germany__arrow {
    width: 40px;
    position: absolute;
    left: 130px;
    top: 85px;
    animation: move_clock 3s linear infinite;
    -webkit-animation: move_clock 3s linear infinite;
  }
  .accounting__text {
    margin: 0% 10%;
  }
  .accounting div h1 {
    margin-top: 10%;
    font-size: clamp(32px, 1.5vw, 32px);
  }
  .accounting div p {
    margin-top: 16px;
    font-size: clamp(16px, 2.5vw, 20px);
  }
}
.contact_container {
  display: flex;
  justify-content: flex-start;
  text-align: start;
  align-items: center;
  margin: 4% 0;
}
.contact_container p {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}
.contact_container .contact_icon {
  width: 100%;
  max-width: 20px;
  margin-right: 3%;
}

.splide {
  padding: 20px 0;
}
.splide__slide {
  width: auto !important;
}
.splide__slide img {
  display: block;
  height: 300px;
  width: auto;
  transition: transform 400ms;
  transform: scale(0.98);
  transform-origin: center center;
}
.splide__slide .is-active img {
  transform: scale(1);
}

@keyframes steam {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.contact-box {
  display: block;
}
.contact-box__text {
  width: 100%;
  margin: 0% 10%;
}
.contact-box img {
  position: relative;
}
.contact-box .contact-images {
  position: relative;
  display: none;
  width: 100%;
  margin-left: 15%;
}
.contact-box div h1 {
  margin-top: 10%;
  font-size: clamp(32px, 1.5vw, 32px);
}
.contact-box div p {
  margin-top: 16px;
  font-size: clamp(16px, 2.5vw, 20px);
}

@media (min-width: 768px) {
  .contact-box {
    display: flex;
    justify-content: center;
  }
  .contact-box__text {
    width: 100%;
    margin: 0% 10%;
  }
  .contact-box img {
    position: relative;
  }
  .contact-box .contact-images {
    position: relative;
    display: block;
    width: 454px;
    height: 321px;
  }
  .contact-box .contact-background {
    width: 454px;
    height: 321px;
    z-index: 100;
  }
  .contact-box .contact-destination {
    bottom: 255px;
    left: 230px;
  }
  .contact-box .contact-steam {
    bottom: 205px;
    left: 50px;
    animation: steam 5s linear infinite;
    -webkit-animation: steam 5s linear infinite;
  }
  .contact-box div h1 {
    margin-top: 10%;
    font-size: clamp(32px, 1.5vw, 32px);
  }
  .contact-box div p {
    margin-top: 16px;
    font-size: clamp(16px, 2.5vw, 20px);
  }
}
.bussiness-advices-details {
  position: relative;
  margin-top: 32px;
  padding: 32px;
}
.bussiness-advices-details div {
  padding: 0 clamp(8px, 4%, 48px);
  max-width: 1024px;
}
.bussiness-advices-details__background {
  display: none;
}
.bussiness-advices-details__shine {
  display: none;
}
.bussiness-advices-details__title {
  margin-top: 8px;
  font-size: clamp(32px, 4vw, 96px);
}
.bussiness-advices-details__subtitle {
  margin-top: 16px;
}
.bussiness-advices-details__text {
  font-size: clamp(16px, 2.5vw, 18px);
  margin-top: 8px;
}

@media (min-width: 1280px) {
  .bussiness-advices-details {
    display: flex;
  }
  .bussiness-advices-details__background {
    display: block;
    width: 454px;
    height: 342px;
  }
  .bussiness-advices-details__shine {
    display: block;
    position: absolute;
    top: 110px;
    left: 230px;
    width: 120px;
    animation: shine 4s linear infinite;
    -webkit-animation: shine 4s linear infinite;
  }
}


/* ================= HERO USLUGI ================= */

.hero {
    position: relative;
    height: 85vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    padding-left: 8%;
    color: white;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(6,55,121,0.95) 0%,
        rgba(6,55,121,0.8) 40%,
        rgba(6,55,121,0.4) 70%,
        rgba(6,55,121,0) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.hero-subtitle {
    font-size: 48px;
    font-weight: 700;
    color: #FDB515;
    margin: 0 0 20px 0;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    font-size: 15px;
}

.hero-features div {
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 8px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #FDB515;
    color: #063779;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #ffca40;
}

.btn-secondary {
    border: 1px solid white;
    color: white;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #063779;
}

