@charset "UTF-8";

.container {
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 40px;
  max-width: 1280px;
}

body.locked {
  overflow: hidden;
}

.btn {
  font-style: normal;
  border: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.btn__outline {
  color: #001D5F;
}

.btn__outline:hover {
  color: #DD6200;
}

.btn__primary {
  color: #ffffff;
  background-color: #001D5F;
}

.btn__primary:hover {
  background-color: #010D14;
}

.btn__secondary {
  color: #ffffff;
  background: #DD6200;
}

.btn__secondary:hover {
  background-color: #aa4b00;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.section__title {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 59px;
  text-transform: capitalize;
  color: #001D5F;
}

.section__title.title__center {
  text-align: center;
}

.section__title.title__secondary {
  color: #ffffff;
}

.section__subtitle {
  margin-top: 15px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  letter-spacing: 0.3px;
}

.section__subtitle.subtitle__center {
  text-align: center;
}

.section__subtitle.subtitle__secondary {
  color: #ffffff;
}

@font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/Gilroy-Regular2.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.navbar {
  display: block;
}

.hide-menu {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  position: fixed !important;
  /* Зробити меню фіксованим */
  top: 0 !important;
  /* Меню прикріплюється до верхнього краю екрану */
  width: 100%;
}

.fixed {
  margin-top: 0 !important;
  position: fixed !important;
  top: 0 !important;
  background-color: #ffffff;
  -webkit-transition: 0.1s ease-out;
  -o-transition: 0.1s ease-out;
  transition: 0.1s ease-out;
}

.active_header {
  -webkit-transition: 0.25s background;
  -o-transition: 0.25s background;
  transition: 0.25s background;
  background: #fff !important;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  /* Піднімання меню над іншими елементами на сторінці */
}

.header__logo {
  width: -webkit-fill-available;
  max-width: 43px;
}

.header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  color: #001D5F;
}

.header__body {
  padding: 18.5px 0px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .menu {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  transition: -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  -o-transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.header .menu__item a {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: #000;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.header .menu__item a:hover {
  color: #FFA384;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.header .menu__item.with__submenu {
  position: relative;
}

.header .header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.header .header__menu ul {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform: translateX(30px);
      -ms-transform: translateX(30px);
          transform: translateX(30px);
  z-index: 12;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 31px;
}

.header .burger {
  display: none;
}

.active_menu {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  transition: -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  -o-transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  -webkit-transform: translateX(0) !important;
      -ms-transform: translateX(0) !important;
          transform: translateX(0) !important;
}

header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  display: none;
}

.nav {
  cursor: pointer;
}

.header__menu {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.active_menu {
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  transition: -webkit-transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  -o-transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.menu {
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  transition: -webkit-transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  -o-transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.menu li {
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  transition: -webkit-transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  -o-transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.active_menu li:nth-child(1) {
  -webkit-transform: translateX(0px) !important;
      -ms-transform: translateX(0px) !important;
          transform: translateX(0px) !important;
}

.active_menu li:nth-child(2) {
  -webkit-transform: translateX(0px) !important;
      -ms-transform: translateX(0px) !important;
          transform: translateX(0px) !important;
}

.active_menu li:nth-child(3) {
  -webkit-transform: translateX(0px) !important;
      -ms-transform: translateX(0px) !important;
          transform: translateX(0px) !important;
}

.active_menu li:nth-child(4) {
  -webkit-transform: translateX(0px) !important;
      -ms-transform: translateX(0px) !important;
          transform: translateX(0px) !important;
}

.active_menu li:nth-child(5) {
  -webkit-transform: translateX(0px) !important;
      -ms-transform: translateX(0px) !important;
          transform: translateX(0px) !important;
}

.menu li:nth-child(1) {
  -webkit-transform: translateX(10px);
      -ms-transform: translateX(10px);
          transform: translateX(10px);
}

.menu li:nth-child(2) {
  -webkit-transform: translateX(20px);
      -ms-transform: translateX(20px);
          transform: translateX(20px);
}

.menu li:nth-child(3) {
  -webkit-transform: translateX(30px);
      -ms-transform: translateX(30px);
          transform: translateX(30px);
}

.menu li:nth-child(4) {
  -webkit-transform: translateX(40px);
      -ms-transform: translateX(40px);
          transform: translateX(40px);
}

.menu li:nth-child(5) {
  -webkit-transform: translateX(50px);
      -ms-transform: translateX(50px);
          transform: translateX(50px);
}

.first {
  margin-bottom: 40px;
}

.first__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 175px;
  padding-top: 227px;
}

.first__item-margin {
  position: relative;
  margin-top: -100px;
}

.first__item h1 {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 38px;
  line-height: 45.6px;
  padding-bottom: 20px;
  color: #000;
}

.first__item p {
  margin-top: 20px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  line-height: 28px;
}

.first__item img {
  max-width: 470px;
}

.first__item-special-icon {
  max-width: 198px !important;
  position: absolute;
  top: 250px;
  z-index: -1;
  left: -110px;
}

@-webkit-keyframes unfoldIn {
  0% {
    -webkit-transform: scaleY(0.005) scaleX(0);
            transform: scaleY(0.005) scaleX(0);
  }

  50% {
    -webkit-transform: scaleY(0.005) scaleX(1);
            transform: scaleY(0.005) scaleX(1);
  }

  100% {
    -webkit-transform: scaleY(1) scaleX(1);
            transform: scaleY(1) scaleX(1);
  }
}

@keyframes unfoldIn {
  0% {
    -webkit-transform: scaleY(0.005) scaleX(0);
            transform: scaleY(0.005) scaleX(0);
  }

  50% {
    -webkit-transform: scaleY(0.005) scaleX(1);
            transform: scaleY(0.005) scaleX(1);
  }

  100% {
    -webkit-transform: scaleY(1) scaleX(1);
            transform: scaleY(1) scaleX(1);
  }
}

@-webkit-keyframes unfoldOut {
  0% {
    -webkit-transform: scaleY(1) scaleX(1);
            transform: scaleY(1) scaleX(1);
  }

  50% {
    -webkit-transform: scaleY(0.005) scaleX(1);
            transform: scaleY(0.005) scaleX(1);
  }

  100% {
    -webkit-transform: scaleY(0.005) scaleX(0);
            transform: scaleY(0.005) scaleX(0);
  }
}

@keyframes unfoldOut {
  0% {
    -webkit-transform: scaleY(1) scaleX(1);
            transform: scaleY(1) scaleX(1);
  }

  50% {
    -webkit-transform: scaleY(0.005) scaleX(1);
            transform: scaleY(0.005) scaleX(1);
  }

  100% {
    -webkit-transform: scaleY(0.005) scaleX(0);
            transform: scaleY(0.005) scaleX(0);
  }
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes zoomOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    background: rgba(0, 0, 0, 0);
  }

  100% {
    background: rgba(0, 0, 0, 0.7);
  }
}

@keyframes fadeIn {
  0% {
    background: rgba(0, 0, 0, 0);
  }

  100% {
    background: rgba(0, 0, 0, 0.7);
  }
}

@-webkit-keyframes fadeOut {
  0% {
    background: rgba(0, 0, 0, 0.7);
  }

  100% {
    background: rgba(0, 0, 0, 0);
  }
}

@keyframes fadeOut {
  0% {
    background: rgba(0, 0, 0, 0.7);
  }

  100% {
    background: rgba(0, 0, 0, 0);
  }
}

@-webkit-keyframes scaleUp {
  0% {
    -webkit-transform: scale(0.8) translateY(1000px);
            transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
    opacity: 1;
  }
}

@keyframes scaleUp {
  0% {
    -webkit-transform: scale(0.8) translateY(1000px);
            transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
    opacity: 1;
  }
}

@-webkit-keyframes scaleDown {
  0% {
    -webkit-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(0.8) translateY(1000px);
            transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
}

@keyframes scaleDown {
  0% {
    -webkit-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(0.8) translateY(1000px);
            transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
}

@-webkit-keyframes scaleBack {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
}

@keyframes scaleBack {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
}

@-webkit-keyframes scaleForward {
  0% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scaleForward {
  0% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes quickScaleDown {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  99.9% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes quickScaleDown {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  99.9% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@-webkit-keyframes slideUpLarge {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }

  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes slideUpLarge {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }

  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@-webkit-keyframes slideDownLarge {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes slideDownLarge {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@-webkit-keyframes moveUp {
  0% {
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes moveUp {
  0% {
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes moveDown {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }

  100% {
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
  }
}

@keyframes moveDown {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }

  100% {
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
  }
}

@-webkit-keyframes blowUpContent {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }

  99.9% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes blowUpContent {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }

  99.9% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@-webkit-keyframes blowUpContentTwo {
  0% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes blowUpContentTwo {
  0% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes blowUpModal {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes blowUpModal {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes blowUpModalTwo {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
}

@keyframes blowUpModalTwo {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
}

@-webkit-keyframes roadRunnerIn {
  0% {
    -webkit-transform: translateX(-1500px) skewX(30deg) scaleX(1.3);
            transform: translateX(-1500px) skewX(30deg) scaleX(1.3);
  }

  70% {
    -webkit-transform: translateX(30px) skewX(0deg) scaleX(0.9);
            transform: translateX(30px) skewX(0deg) scaleX(0.9);
  }

  100% {
    -webkit-transform: translateX(0px) skewX(0deg) scaleX(1);
            transform: translateX(0px) skewX(0deg) scaleX(1);
  }
}

@keyframes roadRunnerIn {
  0% {
    -webkit-transform: translateX(-1500px) skewX(30deg) scaleX(1.3);
            transform: translateX(-1500px) skewX(30deg) scaleX(1.3);
  }

  70% {
    -webkit-transform: translateX(30px) skewX(0deg) scaleX(0.9);
            transform: translateX(30px) skewX(0deg) scaleX(0.9);
  }

  100% {
    -webkit-transform: translateX(0px) skewX(0deg) scaleX(1);
            transform: translateX(0px) skewX(0deg) scaleX(1);
  }
}

@-webkit-keyframes roadRunnerOut {
  0% {
    -webkit-transform: translateX(0px) skewX(0deg) scaleX(1);
            transform: translateX(0px) skewX(0deg) scaleX(1);
  }

  30% {
    -webkit-transform: translateX(-30px) skewX(-5deg) scaleX(0.9);
            transform: translateX(-30px) skewX(-5deg) scaleX(0.9);
  }

  100% {
    -webkit-transform: translateX(1500px) skewX(30deg) scaleX(1.3);
            transform: translateX(1500px) skewX(30deg) scaleX(1.3);
  }
}

@keyframes roadRunnerOut {
  0% {
    -webkit-transform: translateX(0px) skewX(0deg) scaleX(1);
            transform: translateX(0px) skewX(0deg) scaleX(1);
  }

  30% {
    -webkit-transform: translateX(-30px) skewX(-5deg) scaleX(0.9);
            transform: translateX(-30px) skewX(-5deg) scaleX(0.9);
  }

  100% {
    -webkit-transform: translateX(1500px) skewX(30deg) scaleX(1.3);
            transform: translateX(1500px) skewX(30deg) scaleX(1.3);
  }
}

@-webkit-keyframes sketchIn {
  0% {
    stroke-dashoffset: 778;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes sketchIn {
  0% {
    stroke-dashoffset: 778;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes sketchOut {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: 778;
  }
}

@keyframes sketchOut {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: 778;
  }
}

@-webkit-keyframes modalFadeIn {
  0% {
    background-color: transparent;
  }

  100% {
    background-color: white;
  }
}

@keyframes modalFadeIn {
  0% {
    background-color: transparent;
  }

  100% {
    background-color: white;
  }
}

@-webkit-keyframes modalFadeOut {
  0% {
    background-color: white;
  }

  100% {
    background-color: transparent;
  }
}

@keyframes modalFadeOut {
  0% {
    background-color: white;
  }

  100% {
    background-color: transparent;
  }
}

@-webkit-keyframes modalContentFadeIn {
  0% {
    opacity: 0;
    top: -20px;
  }

  100% {
    opacity: 1;
    top: 0;
  }
}

@keyframes modalContentFadeIn {
  0% {
    opacity: 0;
    top: -20px;
  }

  100% {
    opacity: 1;
    top: 0;
  }
}

@-webkit-keyframes modalContentFadeOut {
  0% {
    opacity: 1;
    top: 0px;
  }

  100% {
    opacity: 0;
    top: -20px;
  }
}

@keyframes modalContentFadeOut {
  0% {
    opacity: 1;
    top: 0px;
  }

  100% {
    opacity: 0;
    top: -20px;
  }
}

@-webkit-keyframes bondJamesBond {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
  }

  80% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    border-radius: 75px;
    height: 75px;
    width: 75px;
  }

  90% {
    border-radius: 3px;
    height: 182px;
    width: 247px;
  }

  100% {
    border-radius: 3px;
    height: 162px;
    width: 227px;
  }
}

@keyframes bondJamesBond {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
  }

  80% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    border-radius: 75px;
    height: 75px;
    width: 75px;
  }

  90% {
    border-radius: 3px;
    height: 182px;
    width: 247px;
  }

  100% {
    border-radius: 3px;
    height: 162px;
    width: 227px;
  }
}

@-webkit-keyframes killShot {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(300px) rotate(45deg);
            transform: translateY(300px) rotate(45deg);
    opacity: 0;
  }
}

@keyframes killShot {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(300px) rotate(45deg);
            transform: translateY(300px) rotate(45deg);
    opacity: 0;
  }
}

@-webkit-keyframes fadeToRed {
  0% {
    background-color: rgba(0, 0, 0, 0.6);
  }

  100% {
    background-color: rgba(255, 0, 0, 0.8);
  }
}

@keyframes fadeToRed {
  0% {
    background-color: rgba(0, 0, 0, 0.6);
  }

  100% {
    background-color: rgba(255, 0, 0, 0.8);
  }
}

@-webkit-keyframes slowFade {
  0% {
    opacity: 1;
  }

  99.9% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes slowFade {
  0% {
    opacity: 1;
  }

  99.9% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

#modal-container .modal-background {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

#modal-container .modal-background .modal {
  padding: 45px 0px 60px 0px;
  border-radius: 3px;
  font-weight: 300;
  position: relative;
}

#modal-container .modal-background .modal .modal-svg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 3px;
}

#modal-container .modal-background .modal .modal-svg rect {
  stroke: #fff;
  stroke-width: 2px;
  stroke-dasharray: 778;
  stroke-dashoffset: 778;
}

.product__anim h1 {
  max-width: 490px;
  margin-top: 110px !important;
}

.my-container2 .swiper-slide-container {
  min-height: 380px !important;
}

.card-container2 {
  margin-top: 90px !important;
  height: 2879px !important;
}

.enc {
  position: absolute;
  left: 0;
  height: 100%;
  right: 0;
  bottom: 0;
  top: 50%;
  -webkit-transform: translateY(20%);
      -ms-transform: translateY(20%);
          transform: translateY(20%);
  margin: auto;
}

.enc h1 {
  margin-top: 0;
}

.second_bg {
  background: url("../img/bg__1-icon.png");
  position: absolute;
  width: 100%;
  height: 1200px;
  top: 960px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
}

.second_bg2 {
  background: url("../img/17.webp");
  position: absolute;
  width: 100%;
  height: 1200px;
  top: 5350px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
}

.swiper-slide3 .swiper-slide-wrapper {
  padding: 54px 54px;
}

.second__wrapper {
  margin-bottom: 291px;
  max-width: 580px;
  margin-left: auto;
  padding-top: 241px;
}

.second__wrap-text p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
}

.second__wrap-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 168px;
  width: 100%;
}

.how__container2 {
  display: none;
}

.second__wrap-text-title {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  line-height: 33.6px;
  margin-bottom: 40px;
}

.second__wrapper-spec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 196px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 160px;
  margin-bottom: 60px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding-top: 40px;
}

.second__wrapper-spec img {
  max-width: 250px;
}

.default__title {
  color: #000;
  font-size: 36px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 49.32px;
}

.text-default__title {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  font-family: "Montserrat";
  line-height: 33.6px;
}

.active {
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.active .faq_bg_icon {
  background: url("../img/minus.svg");
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.faq_bg_icon {
  background-repeat: no-repeat !important;
  background-size: cover;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: block;
  background: url("../img/plus.svg");
}

.default__subtitle {
  margin-top: 32px;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.6);
}

.how__wrapper {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.how__item {
  cursor: pointer;
}

.faq {
  margin-bottom: 60px;
}

.faq h2 {
  margin-bottom: 48px;
  margin-top: 70px;
}

.join__screen2 {
  margin-bottom: 80px;
}

.join__screen2 h2 {
  color: #000000 !important;
  font-size: 36px !important;
  line-height: 39px !important;
}

.how {
  padding-bottom: 0px;
}

.how__container2-item img {
  max-width: 180px;
  margin: 0 auto;
}

.how__container {
  margin-left: 157px;
}

.how h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 39px;
  color: #000000;
  margin-bottom: 42px;
  margin-top: -60px;
}

.how__wrap1 {
  -webkit-box-shadow: 2px 2px 20px 0px rgba(164, 171, 155, 0.4);
          box-shadow: 2px 2px 20px 0px rgba(164, 171, 155, 0.4);
  background: #FAFAF8;
  padding: 30px;
  border-radius: 12px;
}

.mySwiper2 {
  width: 250px;
}

.how__slider {
  overflow: hidden;
  position: relative;
  height: 610px;
  margin-left: 159px;
}

.how__slider .swiper-slide {
  width: 250px !important;
}

.how__slider .swiper-pagination2 {
  bottom: 9px !important;
}

.swiper-pagination2 .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  margin: 0 3px !important;
}

.mySwiper2 .swiper-slide img {
  max-width: 250px !important;
  width: 250px !important;
}

.how-active {
  background: rgba(196, 203, 185, 0.5019607843);
}

.how__item {
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  padding: 24px;
  max-width: 580px;
  border-radius: 36px;
  margin-bottom: 18px;
}

.how__item h5 {
  font-size: 24px;
  line-height: 29px;
  font-weight: 500;
  color: #000000;
  margin-top: 0;
  margin-bottom: 14px;
}

.how__item p {
  font-size: 20px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
}

.faq__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin: 0 auto;
  gap: 75px;
}

.accordion-container {
  position: relative;
  max-width: 600px;
  height: auto;
}

.set {
  cursor: pointer;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 20px;
  border-bottom: 1px solid #E6E3DF;
  padding-bottom: 20px;
}

.set > a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.set > a i {
  float: right;
  margin-top: 2px;
}

.set > a.active {
  padding-bottom: 0;
  border-bottom: 0;
}

a.active img {
  rotate: 180deg;
}

a.active ~ .default__subtitle {
  border-bottom: 1px solid #E6E3DF;
  padding-bottom: 20px;
}

.content {
  display: none;
}

.content p {
  padding: 26px 0px 0px 0px;
  margin: 0;
}

.faq_buttons {
  padding-bottom: 54px;
  padding-top: 80px;
  max-width: 758px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.default__btn {
  cursor: pointer;
  background: #A4AB9B;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 20px 64px;
  color: #fff;
  border-radius: 100px;
  font-size: 20px;
  font-family: "Montserrat";
  line-height: 24.38px;
  font-weight: 600;
  -webkit-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.default__btn:hover {
  background: #C4CBB9;
  -webkit-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.team__wrapper {
  margin-top: 50px;
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.team__wrap {
  position: relative;
  max-width: 446px;
  background: #fff;
  border-radius: 100px;
}

.team__wrap-icon {
  right: 10px;
  top: 30px;
  position: absolute;
}

.team__wrap p {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 16px !important;
  text-align: left !important;
}

.team h1 {
  margin-top: 100px;
  margin-bottom: 0;
}

.team p {
  padding-right: 20px;
  text-align: left;
  margin-top: 32px;
}

.my-container .swiper-pagination {
  display: none;
}

.my-container .swiper-pagination2 {
  display: none;
}

.product__anim {
  padding-bottom: 70px;
}

.team__subtitle {
  font-size: 24px;
}

.swiper-container {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.swiper-slide {
  width: 100%;
  height: 30vw;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-slide-icon {
  min-width: 275px;
}

.swiper-slide-container {
  min-height: 440px;
}

.my-container {
  overflow: hidden;
  padding: 70px 0;
  margin: auto;
}

.my-wrapper {
  padding: 0 10%;
}

.swiper__flex-btns {
  position: relative;
}

.swiper-slide-icon {
  width: 275px;
  height: 250px;
  border-radius: 160px 190px 150px 230px;
  margin-top: 37px;
  margin-left: 20px;
  background-size: cover !important;
  background-position: top;
}

.swiper-slide-icon1 {
  background: url("../img/photo1.png");
}

.swiper-slide-icon2 {
  background: url("../img/photo2.png");
}

.swiper-slide-icon3 {
  background-position: center !important;
  background: url("../img/photo3.png");
}

.swiper-slide-icon4 {
  background: url("../img/photo4.png");
}

.swiper-slide-icon5 {
  background: url("../img/photo5.png");
  background-position: center !important;
}

.last__title {
  text-align: center;
  margin-top: 150px;
  margin-bottom: 58px;
  color: #000;
  font-size: 28px;
  line-height: 34.13px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

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

.team__text-container {
  max-width: 600px;
  width: 100%;
  position: sticky;
  top: -20px;
  z-index: 100;
  height: 430px;
}

.swiper-button-next:after {
  background: url("../img/icon12.svg");
  background-repeat: no-repeat;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  background-size: cover;
  height: 62px;
  background-position: center;
  background-size: inherit !important;
  border-radius: 100px;
  width: 62px;
  background-color: #A4AB9B;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  display: block;
}

.swiper-button-next {
  right: 20px !important;
}

.swiper-pagination-bullet {
  height: 15px !important;
  width: 15px !important;
  margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
  background: #FFA384 !important;
}

.swiper-pagination {
  bottom: -20px !important;
}

.swiper-button-prev {
  left: -153px !important;
}

.swiper-button-prev,
.swiper-button-next {
  width: 62px !important;
  border-radius: 100px;
  height: 62px !important;
}

.swiper-button-prev:after {
  background: url("../img/icon12.svg");
  background-position: center;
  background-size: inherit !important;
  background-repeat: no-repeat;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  background-size: cover;
  height: 62px;
  width: 62px;
  border-radius: 100px;
  background-color: #A4AB9B;
  display: block;
}

.swiper-slide-wrapper a {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  color: #000;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.swiper-slide-wrapper p {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 16px;
  font-size: 20px;
  line-height: 28px;
  text-align: justify !important;
}

.swiper-slide-subtitle {
  color: rgba(0, 0, 0, 0.8) !important;
  margin-top: 10px !important;
}

.swiper-slide {
  width: 800px;
}

.swiper-slide-container {
  background: #fff;
  border-radius: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.swiper-wrapper {
  padding: 30px 0px;
}

.swiper-slide-wrapper {
  padding: 30px 20px 30px 0px;
}

.team__slider-wrapper {
  position: relative;
}

.card-container {
  margin-top: 110px;
  position: relative;
  height: 1649px;
  /* 10 cards = 240px each plus transform: translateY(32px); plus top: 32px; */
}

.swiper__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card-list {
  text-align: center;
  margin: 0 24px;
}

.card:nth-child(2) {
  top: 60px;
}

.card:nth-child(1) {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  top: 90px;
}

.card-container2 .card:nth-child(1) {
  top: 70px;
}

.card-container2 .card:nth-child(2) {
  top: 40px;
}

.card-container2 .card:nth-child(3) {
  top: 10px;
}

.card-container2 .card:nth-child(4) {
  top: 0px;
}

.card-container2 .card:nth-child(5) {
  top: -30px;
}

.card-container2 .card:nth-child(6) {
  top: -70px;
}

.card:nth-child(2) {
  -webkit-transform: translateY(32px);
      -ms-transform: translateY(32px);
          transform: translateY(32px);
}

.card:nth-child(3) {
  -webkit-transform: translateY(62px);
      -ms-transform: translateY(62px);
          transform: translateY(62px);
}

.card:nth-child(4) {
  -webkit-transform: translateY(96px);
      -ms-transform: translateY(96px);
          transform: translateY(96px);
}

.card:nth-child(5) {
  -webkit-transform: translateY(128px);
      -ms-transform: translateY(128px);
          transform: translateY(128px);
}

.card:nth-child(6) {
  -webkit-transform: translateY(160px);
      -ms-transform: translateY(160px);
          transform: translateY(160px);
}

.card:nth-child(7) {
  -webkit-transform: translateY(192px);
      -ms-transform: translateY(192px);
          transform: translateY(192px);
}

.card:nth-child(8) {
  -webkit-transform: translateY(224px);
      -ms-transform: translateY(224px);
          transform: translateY(224px);
}

.card:nth-child(9) {
  -webkit-transform: translateY(256px);
      -ms-transform: translateY(256px);
          transform: translateY(256px);
}

.card {
  position: sticky;
  will-change: transform;
  top: 32px;
  width: 570px;
  height: auto;
  padding: 190px 70px;
  margin: 0 auto;
  border-radius: 100px;
  background: #fff;
}

.card--spade {
  color: #252525;
}

.card__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 24px;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.card__inner--centered {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card__column--centered {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card__symbol {
  display: inline-block;
  height: 40px;
  text-align: center;
}

.card__symbol:before {
  font-size: 40px;
  line-height: 40px;
}

.card__symbol--rotated,
.card__symbol:last-of-type {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.card__symbol:first-of-type {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}

.card__symbol--big {
  -ms-flex-preferred-size: 60px;
      flex-basis: 60px;
}

.card__symbol--huge {
  -ms-flex-preferred-size: 108px;
      flex-basis: 108px;
}

.after-card-list {
  margin-top: 32px;
}

.team__wrap .text-default__title {
  text-align: left;
}

.team__form-wrapper {
  padding-bottom: 80px;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.team__form-wrapper h4 {
  color: #000000;
  font-weight: 600;
  font-size: 36px;
  line-height: 39px;
  margin-top: 12px;
}

.team__form-wrapper p {
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
}

.body__enc {
  height: 100vh;
  overflow: hidden;
  background: url("../img/desk2.png");
  background-size: cover !important;
  background-repeat: no-repeat;
}

.enc h1 {
  font-size: 54px;
  line-height: 54px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 24px;
  color: #000000;
  text-align: center;
}

.enc p {
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 29px;
  font-weight: 500;
}

.blog {
  margin-top: 123px;
  margin-bottom: 80px;
}

.blog__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

.blog__wrap img {
  min-width: 570px;
}

.blog__wrap p {
  margin-top: 32px;
}

main {
  position: relative;
}

.team__bg1 {
  background: url("../img/desk2.png");
  position: absolute;
  width: 100%;
  height: 1200px;
  top: 60px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.blog__bg1 {
  background: url("../img/bg__1-icon.png");
  position: absolute;
  width: 100%;
  height: 1200px;
  top: 380px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.blog__section5 .default__title {
  margin-top: 0px;
}

.blog__bg2 {
  background: url("../img/17.png");
  position: absolute;
  width: 100%;
  height: 1200px;
  top: 2020px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

body {
  position: relative;
  background-color: #F4F5F2;
}

.blog__wrap-title {
  margin-bottom: 0;
  margin-top: 47px;
  color: #000000;
  text-align: left;
}

.blog__wrap-title span {
  display: block;
  color: #000000;
  font-size: 24px;
  line-height: 29.76px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.blog__section-text h2 {
  margin-top: 106px;
}

.blog__section .blog__section-wrap {
  margin-top: 80px;
}

.blog__section-wrap {
  padding-bottom: 0px;
  gap: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog__section-wrap img {
  min-width: 570px;
}

.special__subtitle {
  margin-top: 20px !important;
}

.blog__description__wrap p {
  margin-top: 30px;
}

.blog__description__wrap-title {
  margin-top: 40px;
}

.modal-active {
  overflow: hidden;
}

.modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal-container {
  position: relative;
}

.team__container-special {
  padding-top: 120px;
}

.four__screen-wrapper img {
  max-width: 576px;
}

.modal-container {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 40px;
}

.main__screen {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

.main__screen h1 {
  margin-top: 146px;
  font-family: "Montserrat", sans-serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 54.4px;
  text-align: left;
  margin-bottom: 32px;
}

.main__screen h1 span {
  font-size: 24px;
  margin-top: 12px;
  font-weight: 500;
  line-height: 29px;
  color: #000;
}

.title_main {
  margin-bottom: 32px;
  font-size: 36px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 39.4px;
  color: #000;
}

.swiper-slide-wrapper h2 {
  font-weight: 600;
  text-transform: uppercase;
}

.team__wrap .text-default__title {
  font-weight: 600;
  text-transform: uppercase;
}

.subtitle_main {
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}

.second__screen {
  margin-bottom: 55px;
}

.second__screen h2 {
  margin-top: 150px;
  max-width: 510px;
}

.third__screen {
  margin-top: 240px;
  margin-bottom: 70px;
}

.third__screen img {
  margin-top: 15px;
  display: block;
  margin: 0 auto;
  max-width: 595px;
}

.third__screen-item-text {
  max-width: 196px;
}

.third__screen-item-text p {
  color: #000;
  font-size: 36px;
  line-height: 39px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2px;
}

.third__screen-item-text span {
  text-align: center;
  display: block;
  color: #000;
  line-height: 26px;
  font-size: 20px;
  font-weight: 400;
}

.third__screeen-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.third__screen-items {
  position: relative;
  width: 100%;
  height: 470px;
}

.third__screen-item1 {
  background: url("../img/third_icon-bg1.svg");
  max-width: 388px;
  height: 356px;
  position: absolute;
  top: -250px;
  left: 120px;
}

.third__screen-item2 {
  background: url("../img/third__icon-bg2.svg");
  max-width: 342px;
  height: 320px;
  position: absolute;
  top: -23px;
  right: -60px;
}

.third__screen-item3 {
  background: url("../img/third__icon-bg3.svg");
  max-width: 342px;
  height: 320px;
  position: absolute;
  top: 150px;
  left: 120px;
}

.third__screen-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.third__screen-text {
  max-width: 516px;
}

.main__screen-bg {
  max-height: 890px;
  z-index: -1;
  right: 0;
  max-width: 1440px;
  position: absolute;
}

.blog {
  padding-top: 180px;
  margin-top: 0;
}

.main__screen-wrapper {
  padding-top: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.container_motion {
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
  /* Початкове зміщення вниз */
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  -o-transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
  /* Плавна анімація */
}

.show_content {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  /* Зміщення назад вверх */
}

.main__screen-wrap {
  max-width: 750px;
}

.main__screen-wrap a {
  margin-top: 40px;
}

.main__screen-wrap img {
  margin-top: 90px;
  max-width: 335px;
}

.main__screen-wrap p {
  max-width: 510px;
  margin-top: 30px;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.6);
}

.default__btn {
  display: block;
}

.main__screen-special {
  margin-top: 14px !important;
}

.main__screen-special span {
  display: inline-block;
  color: #FFA384;
}

.swiper-slide2 h2 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 29px;
  margin-bottom: 16px;
  color: #000;
}

.swiper-slide2 p {
  color: rgba(0, 0, 0, 0.6);
  line-height: 140%;
  font-size: 20px;
  font-weight: 400;
}

.swiper-slide2 .swiper-slide-wrapper {
  padding: 52px 52px;
}

.blog .default__subtitle {
  font-family: "Montserrat", sans-serif !important;
}

.join__screen-wrapper {
  max-width: 890px;
  margin: 0 auto;
  border-radius: 100px;
  background: rgba(196, 203, 185, 0.5019607843);
  padding: 50px 50px;
}

.join__screen-wrapper h2 {
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  font-size: 54px;
  font-weight: 600;
  line-height: 59px;
  margin-bottom: 32px;
}

.join__screen-wrapper p {
  max-width: 481px;
  margin: 0 auto;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}

.join__screen-wrapper a {
  margin: 0 auto;
  margin-top: 50px;
  padding: 20px 79px !important;
}

.contact__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.join__screen {
  padding-top: 20px;
  padding-bottom: 0px;
}

.swiper__flex {
  margin-bottom: 25px;
}

.four__screen-special-text {
  margin-top: 604px;
  max-width: 470px;
  margin-bottom: 294px;
}

.how__items {
  margin-left: -24px;
}

.contact {
  padding: 80px 0px;
  background: #F4F5F2;
  margin-bottom: 0px;
}

.contact h2 {
  margin-top: 12px;
  text-align: center;
  color: #000000;
  font-size: 36px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 39.4px;
}

.contact p {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  color: rgba(0, 0, 0, 0.6);
}

.accordion-container .set:nth-child(5) {
  border: none;
}

.form {
  max-width: 600px;
}

.form button {
  display: block;
  margin: 0 auto;
  margin-top: 40px;
  border: none;
  cursor: pointer;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 20px;
  background: #A4AB9B;
  border-radius: 100px;
  padding: 20px 89px;
  line-height: 24.38px;
  text-align: center;
  -webkit-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.form button:hover {
  background: #C4CBB9;
  -webkit-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.modal__logo {
  position: absolute;
  max-width: 43px;
  left: 32px;
  top: -51px;
}

.form-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.form__box {
  margin-bottom: 20px;
  max-width: 600px;
  width: 100%;
}

.form__box input {
  outline: none;
  border: none;
  width: 100%;
  padding: 16px 32px;
  background: #fff;
  border-radius: 20px;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 26.6px;
  -webkit-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  border: 1px solid transparent;
}

.form__box input::-moz-placeholder {
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 26.6px;
  color: rgba(0, 0, 0, 0.6);
}

.form__box input:-ms-input-placeholder {
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 26.6px;
  color: rgba(0, 0, 0, 0.6);
}

.form__box input::-webkit-input-placeholder {
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 26.6px;
  color: rgba(0, 0, 0, 0.6);
}

.form__box input::-ms-input-placeholder {
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 26.6px;
  color: rgba(0, 0, 0, 0.6);
}

.form__box input::placeholder {
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 26.6px;
  color: rgba(0, 0, 0, 0.6);
}

.form__box input:focus {
  -webkit-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  border: 1px solid #000000;
}

.form__box textarea {
  resize: none;
  outline: none;
  border: none;
  width: 100%;
  padding: 16px 32px;
  background: #fff;
  border-radius: 20px;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 21.6px;
  -webkit-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  border: 1px solid transparent;
}

.form__box textarea:focus {
  -webkit-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  border: 1px solid #000000;
}

.form__box textarea::-moz-placeholder {
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 21.6px;
  color: rgba(0, 0, 0, 0.6);
}

.form__box textarea:-ms-input-placeholder {
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 21.6px;
  color: rgba(0, 0, 0, 0.6);
}

.form__box textarea::-webkit-input-placeholder {
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 21.6px;
  color: rgba(0, 0, 0, 0.6);
}

.form__box textarea::-ms-input-placeholder {
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 21.6px;
  color: rgba(0, 0, 0, 0.6);
}

.form__box textarea::placeholder {
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 21.6px;
  color: rgba(0, 0, 0, 0.6);
}

.last__icon2 {
  right: 0;
  bottom: 0;
}

.form__special textarea {
  height: 162px;
}

.closebtn {
  cursor: pointer;
  z-index: 100;
  font-size: 30px;
  position: absolute;
  width: 42px;
  height: 42px;
  background: #A4AB9B;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 43px;
  right: 40px;
  top: -51px;
  -webkit-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.closebtn:hover {
  background: #ced5c4;
  -webkit-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.modal {
  margin-top: 190px;
}

.modal h2 {
  margin-top: 0 !important;
  padding-bottom: 12px;
  color: #000000;
  text-align: left;
  line-height: 29.2px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
}

.modal p {
  max-width: 600px;
  color: #000;
  text-align: left;
  font-size: 36px;
  font-weight: 600;
  font-family: "Montsserat", sans-serif;
  line-height: 39.6px;
}

.modal__last-subtitle {
  margin-top: 32px;
  color: rgba(0, 0, 0, 0.6);
  font-family: "Gilroy-Regular", sans-serif !important;
  line-height: 26px !important;
  font-size: 20px !important;
  font-weight: 400 !important;
}

.second__screen-wrapper {
  padding-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 141px;
  margin-top: 20px;
}

.second__screen-wrapper img {
  min-width: 449px;
}

.main_screen-bg1 {
  background: url("../img/17.png");
  position: absolute;
  width: 100%;
  height: 1200px;
  top: 460px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.main_screen-bg2 {
  background: url("../img/19i.png");
  position: absolute;
  width: 100%;
  height: 1200px;
  top: 2550px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.four__screen-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

.swiper-slide-wrapper a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-slide-wrapper a img {
  max-width: 24px;
}

.four__screen-wrapper-special {
  margin-top: 70px;
  margin-bottom: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.four__screen-wrapper-special img {
  max-width: 485px;
}

.fours__screen-text p {
  max-width: 520px;
}

.footer {
  padding-top: 0px;
  padding-bottom: 24px;
  background: url("../img/footer__bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: -75px;
}

.footer__wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.footer__wrap a {
  display: block;
  width: 40px;
  height: 40px;
}

.footer__wrap a img {
  width: 40px;
  height: 40px;
}

.footer__wrap p {
  margin-top: 6px;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 33.6px;
  font-family: "Gilroy-Regular", sans-serif;
}

.blog__section5 {
  margin-bottom: 80px;
}

.footer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__title {
  margin-bottom: 24px;
  line-height: 29px;
  font-size: 24px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}

.footer__privacy {
  text-align: left;
}

.footer__privacy_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.footer__privacy_btn a {
  text-transform: initial;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #000;
}

.footer__copyrating {
  font-size: 20px;
  line-height: 26px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  text-align: center;
  margin-top: 42px;
}

.privacy {
  padding-top: 153px;
}

.privacy__description {
  margin-bottom: 70px;
}

.privacy__description h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  line-height: 39.6px;
  color: #000000;
}

.privacy__description h4 {
  color: #000000;
  line-height: 29.76px;
  font-size: 24px;
  font-weight: 400;
}

.privacy__description p {
  margin-top: 16px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  line-height: 28px;
}

.privacy__description p a {
  color: #000000;
  text-decoration: underline;
  line-height: 28px;
  font-weight: 400;
  font-size: 20px;
}

.privacy__description ul {
  padding-left: 0;
  color: rgba(0, 0, 0, 0.6);
}

.privacy__description ul li {
  padding-left: 35px;
  position: relative;
  line-height: 28px;
  font-weight: 400;
  font-size: 20px;
}

.mt-32 {
  margin-top: 32px !important;
}

.footer__container {
  margin-right: 178px;
}

.privacy ul li::before {
  position: absolute;
  content: "";
  /* Додаємо псевдоелемент для кожного елемента li */
  display: inline-block;
  border-radius: 50%;
  /* Створюємо круглий кружочок */
  background-color: rgba(0, 0, 0, 0.6);
  /* Задаємо колір кружочка */
  margin-right: 5px;
  /* Задаємо відступ між кружочками */
  width: 6px;
  top: 10px;
  height: 6px;
  left: 10px;
}

.my-container2 {
  padding-bottom: 0px;
  padding-top: 70px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
  list-style: none;
}

ul {
  list-style: none;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
}

.active__link {
  color: #FFA384 !important;
}

@media only screen and (min-width: 1449px) {
  .third__screen-item2 {
    right: -100px;
  }
}

@media only screen and (min-width: 1600px) {
  .second_bg {
    top: 270px;
    left: auto !important;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    max-width: initial !important;
  }

  .second_bg2 {
    left: auto !important;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    max-width: initial !important;
  }

  .blog__bg1 {
    top: 360px;
  }
}

@media (max-width: 1450px) {
  .main__screen-bg {
    max-width: 1340px;
  }
}

@media (max-width: 1449.98px) {
  .container {
    max-width: 1310px;
  }

  .btn {
    font-size: 14px;
    padding: 10px 15px;
  }

  .section__title {
    font-size: 42px;
  }

  .header .header__menu ul {
    gap: 31px;
  }
}

@media (max-width: 997.98px) {
  .container {
    padding: 0 25px;
    max-width: 998px;
  }

  .btn__outline {
    color: #ffffff;
  }

  .section__title {
    font-size: 34px;
  }

  .header {
    padding-top: 8px;
    height: 60px;
  }

  .header .navbar {
    padding: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .header .burger {
    z-index: 10;
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
    -webkit-transition: 0.1s ease-in;
    -o-transition: 0.1s ease-in;
    transition: 0.1s ease-in;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center;
  }

  .header .burger:before,
  .header .burger:after {
    -webkit-transition: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    content: "";
    background-color: #000000;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
  }

  .header .burger:before {
    -webkit-transition: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    top: 3px;
  }

  .header .burger:after {
    -webkit-transition: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    bottom: 6px;
  }

  .header .burger span {
    position: absolute;
    background-color: #000000;
    left: 0;
    width: 100%;
    height: 2px;
    top: 9px;
    -webkit-transition: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .header .burger.active:before {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 9px;
    background-color: #000000;
  }

  .header .burger.active:after {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 13px;
    background-color: #000000;
  }

  .header .burger.active span {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }

  .header .header__menu {
    -webkit-transition: opacity 0.25s ease-out, visibility 0.25s ease-out;
    -o-transition: opacity 0.25s ease-out, visibility 0.25s ease-out;
    transition: opacity 0.25s ease-out, visibility 0.25s ease-out;
    left: 0%;
    padding-top: 50px;
    opacity: 0;
    -webkit-transform: translateX(100);
        -ms-transform: translateX(100);
            transform: translateX(100);
    visibility: hidden;
    z-index: 7;
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 60px;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
  }

  .header .header__menu ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .header .header__menu.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    background-size: cover;
    background-repeat: no-repeat;
  }

  .header .header__menu ul {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 10px;
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .container {
    max-width: 768px;
  }

  .section__title {
    font-size: 28px;
  }

  header:before {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .footer__container {
    margin-right: 0;
  }

  .footer__privacy_btn a {
    font-size: 16px;
    line-height: 24px;
  }

  .footer__box {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 26px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .privacy {
    padding-top: 113px;
  }

  .privacy h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .privacy p {
    font-size: 17px;
    line-height: 23px;
  }

  .privacy .mt-32 {
    margin-top: 24px !important;
  }

  .privacy ul li {
    font-size: 17px;
    line-height: 23px;
  }

  .privacy a {
    font-size: 17px;
    line-height: 23px;
  }

  .my-container2 .my-wrapper {
    padding: 0;
  }

  .my-container2 .swiper-slide-container {
    min-height: 380px !important;
  }

  .card-list {
    margin: 0;
  }

  .team__wrap .text-default__title {
    font-size: 18px;
    line-height: 22.6px;
  }

  .team__wrap p {
    text-align: justify !important;
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
  }

  .card-container {
    height: auto;
    margin-top: 30px;
  }

  .my-container-team .swiper-slide-container {
    height: 710px;
    gap: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .team__form-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .team__form-wrapper p {
    font-size: 18px;
    line-height: 22px;
  }

  .team__form-wrapper {
    margin-top: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 70px;
  }

  .team__form-wrapper {
    gap: 32px;
  }

  .team__form-wrapper h4 {
    font-size: 28px;
    line-height: 32px;
  }

  .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 20px;
    position: static;
    width: auto;
    border-radius: 46px;
  }

  .team h1 {
    margin-top: 0px;
    padding-top: 0px;
  }

  .product__anim h1 {
    margin-top: 0 !important;
  }

  .content p {
    padding: 18px 0px 0px 0px;
  }

  .swiper-pagination2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 14px;
  }

  .card-container2 {
    margin-top: 0;
  }

  .how__container,
  .how__slider {
    margin-left: 0;
  }

  .text-default__title {
    line-height: 22px;
    font-size: 18px;
  }

  .default__subtitle {
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
  }

  .faq h2 {
    margin-top: 20px;
    margin-bottom: 16px;
  }

  .faq_bg_icon {
    width: 23px;
    height: 23px;
    background-size: contain !important;
  }

  .faq {
    margin-bottom: 40px;
  }

  .faq__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }

  .how__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .how__item h5 {
    font-size: 18px;
    line-height: 22px;
  }

  .how h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .team__text-container {
    height: 20px;
    position: static;
  }

  .my-container2 .container {
    padding: 0 !important;
  }

  .main__screen-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .main__screen h1 {
    margin-top: 50px;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 0px;
  }

  .swiper-slide3 .swiper-slide-wrapper {
    padding: 30px 20px;
  }

  .swiper-slide-wrapper p {
    padding-right: 0;
    font-size: 17px;
    line-height: 23px;
  }

  .swiper-slide-wrapper h2 {
    font-size: 18px;
    line-height: 22px;
  }

  .second__screen h2 {
    margin-top: 30px;
  }

  .third__screeen-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .my-container {
    padding: 60px 16px;
  }

  .swiper-slide-subtitle {
    margin-top: 8px;
  }

  .my-container-team .swiper-slide-wrapper {
    padding: 0px 20px 33px 20px;
  }

  .my-container .swiper-pagination2 {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .team__form2 .team__form-wrapper {
    margin-top: 10px;
  }

  .swiper-slide-wrapper a {
    font-size: 18px;
    line-height: 22px;
  }

  .swiper-slide2 p {
    padding-right: 0;
    font-size: 17px;
    font-weight: 400;
  }

  .swiper-slide2 h2 {
    font-size: 18px;
    line-height: 22px;
  }

  .contact h2 {
    text-align: left;
    font-size: 28px;
    line-height: 31.4px;
    margin-bottom: 32px;
  }

  .form button {
    width: 100%;
    max-width: 345px;
    margin: 0 auto;
    line-height: 21.38px;
    font-size: 18px;
    margin-top: 28px;
  }

  .footer__title {
    font-size: 18px;
    line-height: 22px;
  }

  .footer__wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 46px;
  }

  .footer__copyrating {
    font-size: 17px;
    line-height: 23px;
  }

  .footer {
    background-position-y: 5px;
    padding-bottom: 20px;
    padding-top: 0;
  }

  .contact {
    padding: 60px 0px;
    margin-bottom: 0;
  }

  .form__box input {
    padding: 20px 24px;
    font-size: 17px;
    line-height: 23px;
  }

  .form__box input::-moz-placeholder {
    font-size: 17px;
    line-height: 23px;
  }

  .form__box input:-ms-input-placeholder {
    font-size: 17px;
    line-height: 23px;
  }

  .form__box input::-webkit-input-placeholder {
    font-size: 17px;
    line-height: 23px;
  }

  .form__box input::-ms-input-placeholder {
    font-size: 17px;
    line-height: 23px;
  }

  .form__box input::placeholder {
    font-size: 17px;
    line-height: 23px;
  }

  .form__box textarea {
    padding: 20px 24px;
    font-size: 17px;
    line-height: 23px;
  }

  .form__box textarea::-moz-placeholder {
    font-size: 17px;
    line-height: 23px;
  }

  .form__box textarea:-ms-input-placeholder {
    font-size: 17px;
    line-height: 23px;
  }

  .form__box textarea::-webkit-input-placeholder {
    font-size: 17px;
    line-height: 23px;
  }

  .form__box textarea::-ms-input-placeholder {
    font-size: 17px;
    line-height: 23px;
  }

  .form__box textarea::placeholder {
    font-size: 17px;
    line-height: 23px;
  }

  .form__box {
    margin-bottom: 12px;
  }

  .form-flex {
    gap: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .contact p {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
  }

  .join__screen-wrapper {
    border-radius: 54px;
    padding: 40px 20px;
  }

  .join__screen {
    padding-top: 10px;
  }

  .swiper__flex {
    margin-bottom: 0;
  }

  .default__title {
    font-size: 24px;
    line-height: 32px;
  }

  .swiper__flex-btns {
    display: none;
  }

  .main_screen-bg2 {
    top: 3300px;
  }

  .swiper-slide2 .swiper-slide-wrapper {
    padding: 30px 30px;
  }

  .four__screen-special-text {
    margin-top: 134px;
    margin-bottom: 0px;
  }

  .third__screen-items {
    height: 760px;
    margin-bottom: 70px;
    margin-top: 30px;
  }

  .subtitle_main {
    font-size: 17px !important;
    line-height: 22px !important;
  }

  .third__screen-item2 {
    height: 257px;
  }

  .how-active {
    background: transparent;
  }

  .how__slider {
    display: none;
  }

  .third__screen-item3 {
    max-width: 274px;
    height: 252px;
  }

  .third__screen-item-text p {
    font-size: 28px;
    line-height: 32px;
  }

  .third__screen-item-text span {
    line-height: 23px;
    font-size: 17px;
  }

  .title_main {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  .third__screen-item1 {
    height: 263px;
  }

  .main_screen-bg1 {
    top: 660px;
  }

  .third__screen-item {
    margin: 0 auto;
    margin-bottom: 30px;
    position: initial;
    position: initial;
    width: 287px;
    background-size: contain !important;
  }

  .four__screen-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }

  .modal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 0px;
    margin-top: 70px;
  }

  .modal h2 {
    line-height: 22.2px;
    font-size: 18px;
  }

  .modal p {
    font-size: 29px;
    line-height: 32.6px;
  }

  .modal__last-subtitle {
    line-height: 23px !important;
    font-size: 17px !important;
  }

  .modal-container {
    padding: inherit;
  }

  .modal__logo {
    left: 16px;
    top: -60px;
    width: 40px;
  }

  .closebtn {
    right: 16px;
    top: -60px;
  }

  .four__screen-wrapper img {
    max-width: 393px;
  }

  .four__screen-wrapper {
    margin-top: 60px;
  }

  .join__screen2 {
    margin-bottom: 50px;
  }

  .join__screen-wrapper a {
    width: 100%;
    max-width: 350px;
    text-align: center;
  }

  .my-wrapper {
    padding: 0;
  }

  .third__screen-text h2 {
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 24px;
  }

  .second__screen {
    margin-bottom: 0;
  }

  .third__screen {
    margin-top: 0;
  }

  .my-container .swiper-pagination {
    display: block !important;
  }

  .second__screen-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 0;
    gap: 40px;
    padding-bottom: 50px;
  }

  .second__screen-wrapper img {
    min-width: 276px;
    max-width: 276px;
  }

  .header .header__menu ul {
    gap: 32px !important;
  }

  .header .menu__item a {
    font-size: 28px;
    line-height: 32px;
  }

  .main__screen-wrap img {
    margin-top: 60px !important;
    max-width: 215px;
    margin: 0 auto;
  }

  .second__wrapper-spec {
    gap: 60px;
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .four__screen-wrapper-special {
    margin-top: 60px;
    margin-bottom: 0px;
  }

  .body__enc {
    overflow-y: hidden;
    background-repeat: inherit;
  }

  .body__enc h1 {
    margin-top: 0;
  }

  .second__wrapper-spec img {
    max-width: 180px;
  }

  .four__screen-wrapper-special img {
    max-width: 315px;
    margin: 0 auto;
  }

  .default__btn {
    font-size: 18px;
    padding: 20px 86px;
    margin: 0 auto;
  }

  .team__container {
    padding-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .first__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0px;
    padding-top: 109px;
    gap: 60px;
  }

  .second__wrapper {
    margin-bottom: 0px;
    padding-top: 0px;
  }

  .first {
    margin-bottom: 70px;
  }

  .second_bg {
    top: 440px;
  }

  .swiper-slide-icon {
    margin: 0 auto;
    margin-top: 20px;
  }

  .blog__section-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 20px;
  }

  .blog__wrap-title span {
    font-size: 18px;
    line-height: 22px;
  }

  .blog__bg1 {
    top: 560px;
  }

  .blog__wrap-title {
    font-size: 28px;
    line-height: 32px;
    margin-top: 0;
  }

  .blog__section-wrap img {
    min-width: 350px;
  }

  .blog {
    padding-top: 112px;
    margin-bottom: 0;
    margin-top: 0px;
  }

  .first__item-margin {
    margin-top: 0;
    max-width: 332px;
    margin: 0 auto;
    margin-right: -10px;
  }

  .first__item img {
    width: 100%;
  }

  .burger .active {
    width: 32px;
    height: 32px;
    background: url("../img/Close_burger.svg");
  }

  .main__screen-wrap p {
    margin-top: 24px;
    font-size: 17px;
    font-weight: 400;
    line-height: 23.6px;
    color: rgba(0, 0, 0, 0.6);
  }

  .card__inner {
    position: static;
  }

  .team__text-container2 {
    z-index: 10;
    margin-top: 110px;
    height: auto;
  }

  .blog__section4 .blog__section-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .blog__section .blog__section-wrap {
    margin-top: 20px;
  }

  .team h1 {
    margin: 0;
  }

  .blog__section5 {
    margin-bottom: 50px;
  }

  .blog__section2 .blog__section-wrap {
    margin-top: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .container {
    padding: 0 16px !important;
  }

  .my-container {
    position: relative;
  }

  .main__screen-wrap a {
    margin-top: 42px;
  }

  .four__screen {
    margin-top: 60px;
  }

  .my-container-team {
    padding: 163px 16px 130px 16px;
  }

  .team__form2 {
    margin-top: -50px;
  }

  .swiper-pagination {
    bottom: 48px !important;
  }

  .my-container-team .swiper-pagination {
    bottom: 98px !important;
  }

  .join__screen-wrapper h2 {
    line-height: 32px !important;
    font-size: 28px !important;
  }

  .how h2 {
    margin-top: 180px;
    margin-bottom: 70px;
  }

  .card-container2 {
    margin-top: 112px !important;
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
  }

  .product__anim {
    padding-bottom: 0px;
  }

  .blog__section5 {
    margin-bottom: 30px;
  }

  .blog__section-text h2 {
    margin-top: 0px;
  }

  .how {
    padding-bottom: 0;
  }

  .how__container2 {
    display: block;
  }

  .how__container2-item .how__item {
    margin-bottom: 50px;
    padding: 0;
    border-radius: 0;
    margin-top: 32px;
  }

  .how__container2-item .how__item h5 {
    margin-bottom: 16px;
  }

  .how__container2 .how__item p {
    font-size: 17px;
    line-height: 23px;
  }

  .how__container {
    display: none;
  }

  #modal-container .modal-background {
    display: table-cell;
    background-color: #F4F5F2 !important;
    text-align: center;
    background: #F4F5F2 !important;
  }

  .join__screen-wrapper a {
    margin-top: 42px;
  }

  .join__screen-wrapper p {
    font-size: 17px;
    line-height: 22px;
  }

  .swiper-pagination-bullet {
    height: 10px !important;
    width: 10px !important;
    margin: 0 3px !important;
  }

  .main__screen-special {
    margin-top: 12px;
  }

  .contact__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer__wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .main__screen h1 span {
    font-size: 18px;
    margin-top: 12px;
    font-weight: 500;
    line-height: 22px;
    color: #000;
    display: block;
  }

  .enc h1 {
    margin-top: 0px;
    font-size: 38px;
    line-height: 40px;
  }

  .enc p {
    font-size: 21px;
    line-height: 23px;
  }

  .join__screen3 {
    padding-bottom: 0;
  }
}

@media (max-width: 479.98px) {
  .container {
    max-width: none;
    padding: 0 20px;
  }

  .section__title {
    line-height: 120%;
    font-size: 24px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1250px) {
  .third__screen-text {
    max-width: initial;
  }

  .card-container2 .card:nth-child(4) {
    top: 50px;
  }

  .blog__section-wrap img {
    min-width: 440px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .third__screen-item2 {
    right: 150px;
  }

  .third__screen-items {
    margin-top: 290px;
  }

  .third__screeen-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .how__slider {
    margin-left: 0;
  }

  .how__wrapper {
    gap: 0;
  }

  .footer {
    background-position-y: 2px;
  }

  .four__screen-wrapper img {
    max-width: 500px;
  }

  .third__screen {
    margin-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .footer__container {
    margin-right: 0;
  }

  .accordion-container {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }

  .how__container2-item img {
    max-width: 340px;
  }

  .how__container2 {
    display: block;
  }

  .how__slider {
    display: none;
  }

  .how__container {
    display: none;
  }

  .mySwiper2 .swiper-slide img {
    width: 240px;
  }

  .header .header__menu ul {
    gap: 50px;
    margin-top: -100px;
  }

  .header .menu__item a {
    font-size: 29px;
    line-height: 33px;
  }

  .four__screen-wrapper img {
    max-width: 323px;
  }

  .third__screeen-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .main__screen-wrap img {
    max-width: 285px;
  }

  .card-container {
    margin-top: 210px;
  }

  .blog {
    margin-bottom: 60px;
    padding-top: 80px;
  }

  .blog__section-wrap img {
    margin: 0 auto;
    max-width: 700px;
  }

  .blog__section-wrap {
    margin-top: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
    padding-bottom: 30px;
  }

  .blog__section-text h2 {
    margin-top: 26px;
  }

  .blog__section2 .blog__section-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .blog__section4 .blog__section-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .main__screen-wrapper {
    padding-bottom: 30px;
    padding-top: 50px;
  }

  .my-container {
    padding: 70px 0px;
  }

  .how__slider {
    margin-left: 0;
  }

  .faq h2 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .how__item {
    margin-top: 40px;
    padding: 0;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }

  .how {
    padding-bottom: 70px;
  }

  .faq__wrapper {
    gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .how__wrapper {
    gap: 0;
  }

  .card {
    position: initial;
  }

  .team__container {
    padding-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .second__wrapper-spec {
    padding-top: 40px;
    gap: 70px;
    margin-left: 0;
    margin-bottom: 80px;
  }

  .team__form-wrapper {
    margin-top: 60px;
  }

  .team__subtitle {
    max-width: 500px;
    margin: 0 auto;
  }

  .team__form-wrapper {
    padding-bottom: 130px;
  }

  .four__screen-wrapper {
    margin-top: 60px;
  }

  .my-container-team .swiper-slide-container {
    min-height: 730px;
  }

  .swiper-slide-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .my-container-team .swiper-slide-wrapper {
    padding: 30px 20px 30px 20px;
  }

  .team h1 {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 100px;
  }

  .team__text-container {
    max-width: initial;
    position: initial;
    height: 230px;
  }

  .card-container2 {
    margin-top: 0 !important;
  }

  .product__anim h1 {
    margin-top: 0 !important;
  }

  .first__item img {
    max-width: 380px;
  }

  .first__item-margin {
    gap: 70px;
    margin-top: -40px;
  }

  .first__items {
    padding-top: 180px;
    gap: 55px;
  }

  .main__screen h1 {
    font-size: 47px;
    font-weight: 600;
    line-height: 50.4px;
  }

  .third__screen {
    margin-top: 50px;
  }

  .contact {
    margin-bottom: 0;
  }

  .contact h2 {
    text-align: left;
  }

  .footer {
    padding-top: 0;
    background-position-y: 5px;
  }

  .third__screen {
    margin-top: 0;
  }

  .join__screen {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .third__screen-items {
    margin-top: 40px;
    height: auto;
  }

  .four__screen-wrapper-special {
    margin-top: 90px;
    margin-bottom: 60px;
  }

  .four__screen-wrapper-special img {
    max-width: 325px;
  }

  .third__screeen-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .third__screen-item {
    position: initial;
  }

  .third__screen-item2 {
    margin-left: 50%;
    margin-top: -160px;
  }

  .third__screen-item3 {
    margin-top: -130px;
    margin-left: 60px;
  }

  .second__screen-wrapper {
    gap: 90px;
    padding-bottom: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .second__screen h2 {
    margin-top: 0;
  }

  .second__screen-wrapper img {
    max-width: 500px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 2000px) {
  .form__special {
    padding-bottom: 20px;
  }
}

@media only screen and (min-width: 700px) and (max-width: 1024px) {
  #modal-container .modal-background {
    background: inherit;
  }
}

.webp .second_bg{ background: url(../img/bg__1-icon.webp); }

.webp .swiper-slide-icon1{ background: url(../img/photo1.webp); }

.webp .swiper-slide-icon2{ background: url(../img/photo2.webp); }

.webp .swiper-slide-icon3{ background: url(../img/photo3.webp); }

.webp .swiper-slide-icon4{ background: url(../img/photo4.webp); }

.webp .swiper-slide-icon5{ background: url(../img/photo5.webp); }

.webp .body__enc{ background: url(../img/desk2.webp); }

.webp .team__bg1{ background: url(../img/desk2.webp); }

.webp .blog__bg1{ background: url(../img/bg__1-icon.webp); }

.webp .blog__bg2{ background: url(../img/17.webp); }

.webp .main_screen-bg1{ background: url(../img/17.webp); }

.webp .main_screen-bg2{ background: url(../img/19i.webp); }

.webp .footer{ background: url(../img/footer__bg.webp); }