:root {
  --main-color: #8CFC65;
  --white-color: #fff;
  --black-color: #141615;
  --black-bg:#000;
  --border-lite: #d6d6d6;
  --fontSize-text: 18px;
  --fontSWeight-text: 400;
  --fontFamily-title: 'PlateiaBold';
  --fontFamily-text: 'Jost', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body, html {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 8px;
  height: 12px;
}

::-webkit-scrollbar-thumb {
  background: #acacac;
  /* цвет ползунка */
  border-radius: 4px;
  /* скругление углов */
}

/* Оформление кнопки (ползунка) скроллбара при наведении */
::-webkit-scrollbar-thumb:hover {
  background: #8CFC65;
  cursor: pointer;
}

/* Оформление фона скроллбара */
::-webkit-scrollbar-track {
  background: #eaeaea;
  /* цвет фона */
  border-radius: 4px;
}

/* Оформление фона скроллбара при активации ползунка */
::-webkit-scrollbar-track:active {
  background: #d7d7d7;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

a, svg {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

body {
  -webkit-transition: background-color 0.8s;
  transition: background-color 0.8s;
  line-height: 1rem;
  background-color: #ffffff;
  color: var(--black-color);
  font-size: var(--fontSize-text);
  font-family: var(--fontFamily-text);
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
  font-weight: var(--fontSWeight-text);
  font-display: swap;
  overflow-x: hidden;
}

body.overflow {
  overflow: hidden;
}

.header__nav, .header__nav ul, .header__logo, .btn__round, .header__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

ul {
  list-style: none;
}

ol, li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

p {
  line-height: 24px;
}

p a:hover {
  text-decoration: underline;
}

.btn__round {
  background-color: transparent;
  color: inherit;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  font-family: var(--fontFamily-title);
  font-size: 18px;
  border: inherit;
  cursor: pointer;
  white-space: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn__round span {
  line-height: 16px;
  height: 22px;
  z-index: 1;
}

.btn__round:hover .btn__icon {
  -webkit-transform: translateX(30%) scale(1.6);
          transform: translateX(30%) scale(1.6);
}

.btn__round .btn__icon {
  margin-left: 30px;
  width: 30px;
  height: 30px;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.btn__round .btn__icon svg {
  width: 30px;
  height: 30px;
  fill: var(--main-color);
}

.stroke_action {
  background-color: transparent;
  color: var(--main-color);
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  border: 1px solid var(--main-color);
  border-radius: 30px;
}

.stroke_action:hover {
  background-color: var(--main-color);
  color: var(--black-color);
}

.stroke_action:hover svg {
  fill: var(--black-color);
}

.fill_action {
  background-color: var(--main-color);
  color: var(--black-color);
  border-radius: 40px;
  border: 1px solid var(--main-color);
}

.fill_action svg {
  fill: var(--black-bg) !important;
}

.sticky-header.cloned-header.cloned-change {
  border-bottom: 1px solid #ffffff5c;
}

.sticky-header.cloned-header.cloned-change .header__container {
  padding-top: 12px;
  padding-bottom: 12px;
}

.sticky-header.cloned-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--black-bg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--black-bg);
}

.header__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
  max-width: 1560px;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  padding-left: 24px;
  padding-right: 24px;
  margin: 0 auto;
}

.header__nav {
  grid-column: span 4;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__nav ul li a {
  position: relative;
  margin: 0 12px;
  line-height: normal;
  color: var(--white-color);
  font-size: var(--fontSize-text);
  text-transform: uppercase;
}

.header__logo {
  color: var(--white-color);
}

.header__logo__text {
  font-size: 20px;
  height: auto;
  white-space: nowrap;
  font-family: var(--fontFamily-title);
  margin-right: 2px;
}

.header__logo__icon, .header__logo__icon svg {
  width: 24px;
  height: 24px;
}

.header__logo, .header__action {
  grid-column: span 1;
}

.header__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header__lang {
  margin-left: 16px;
  position: relative;
}

.header__lang:hover .header__lang_list {
  display: block;
}

.header__lang_current {
  cursor: pointer;
  color: var(--white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 16px;
}

.header__lang_current svg {
  fill: var(--white-color);
  width: 12px;
  height: 12px;
}

.header__lang_list {
  display: none;
  position: absolute;
  margin-top: 10px;
  left: 0;
  width: 100%;
  color: var(--white-color);
  background-color: #000;
}

.header__lang_list a {
  line-height: 20px;
  z-index: 10;
  position: relative;
}

.header__lang_list a:hover {
  color: var(--main-color);
}

.header__lang_list::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 100%;
}

.menu_mobile {
  position: fixed;
  opacity: 0;
  display: none;
  left: 0;
  width: 100%;
  height: 100vh;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  background-color: rgba(8, 19, 4, 0.725);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  top: 0;
  z-index: 999;
}

.menu_mobile.active {
  display: block;
  opacity: 1;
}

.menu_mobile.active .mobile_content {
  right: 0;
}

.mobile_content {
  position: absolute;
  right: -340px;
  top: 0;
  height: 100%;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  background-color: var(--white-color);
  width: 320px;
  padding: 10px 30px;
}

.header_menu {
  display: none;
  margin-left: 10px;
  position: relative;
}

.header_menu .header_menu_active {
  background-color: #1f1f1f;
  border-radius: 20px;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border: 1px solid #000;
  outline: none;
  list-style: 20px;
  cursor: pointer;
}

.header_menu .header_menu_active span svg {
  width: 1.40rem;
  height: 1.25rem;
  fill: var(--white-color);
}

.mobile_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

.mobile_header .header__logo {
  color: var(--black-color);
}

.mobile_lang {
  max-width: 100%;
  border-bottom: 1px solid #cfcfcf;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.mobile_lang ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 16px;
}

.mobile_lang ul li {
  width: 100%;
}

.mobile_lang ul li a {
  padding: 4px 24px;
  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;
  max-width: 100%;
  font-size: 0.9rem;
  background-color: var(--black-color);
  color: var(--white-color);
  border-radius: 8px;
}

.mobile_nav {
  max-width: 100%;
}

.mobile_nav ul li a {
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  font-weight: 500;
}

.mobile_socials {
  max-width: 100%;
  position: absolute;
  bottom: 40px;
  left: 30px;
}

.mobile_socials ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.mobile_socials ul li a {
  padding: 12px;
  background-color: var(--black-color);
  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;
  border-radius: 50%;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.mobile_socials ul li a:hover {
  background-color: var(--main-color);
}

.mobile_socials ul li a:hover svg {
  fill: var(--black-color);
}

.mobile_socials ul li a svg {
  width: 16px;
  height: 16px;
  fill: var(--white-color);
}

.mobile_wrap_active button {
  background-color: var(--main-color);
  border-radius: 20px;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  list-style: 20px;
  cursor: pointer;
}

.mobile_wrap_active button svg {
  width: 1.40rem;
  height: 1.25rem;
  fill: var(--black-color);
}

.container {
  max-width: 1560px;
  padding-left: 24px;
  padding-right: 24px;
  margin: 0 auto;
}

h1 {
  font-size: 5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  font-family: var(--fontFamily-title);
  color: var(--white-color);
}

h1 span {
  color: var(--main-color);
  display: block;
}

h2 {
  font-size: 4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  font-family: var(--fontFamily-title);
}

h2 span {
  color: var(--main-color);
  display: block;
}

.link {
  position: relative;
}

.link:hover::after {
  width: 100%;
}

.link::after {
  content: '';
  width: 0;
  height: 4px;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  border-radius: 4px;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  bottom: -2px;
}

.offer_section {
  background: #000;
  height: 80vh;
}

.offer_content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80vh;
  position: relative;
  z-index: 1;
}

.offer_content p {
  color: var(--white-color);
  margin: 30px 0;
  max-width: 400px;
}

.offer_author {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.offer_author a {
  color: var(--white-color);
  font-family: var(--fontFamily-title);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.offer_bg {
  position: absolute;
  right: 200px;
  bottom: 50px;
}

.offer_videos {
  max-width: 100%;
}

.offer_videos img {
  width: 110%;
  height: 110%;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn_offer_bottom {
  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;
  color: #aeadad;
  background-color: #ffffff2d;
  padding: 10px 16px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: 40px;
}

.btn_offer_bottom svg {
  fill: #8A8A8A;
  margin-left: 24px;
}

.arrows-wrapper {
  width: 40px;
  height: 20px;
  overflow: hidden;
  position: relative;
}

.arrows-wrapper svg {
  position: absolute;
  left: 0;
  top: 10px;
}

.animate-svg {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: slide 2s linear infinite;
          animation: slide 2s linear infinite;
}

.animate-svg2 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes slide {
  from {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  to {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
}

@keyframes slide {
  from {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  to {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
}

.parters_section {
  border-top: 1px solid #ffffff24;
  padding: 24px 0;
  background-color: var(--black-bg);
}

.partners_content {
  max-width: 100%;
}

.partners_content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.partners_content ul li a {
  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;
  cursor: pointer;
}

.partners_content ul li a:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.partners_content ul li a img {
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  opacity: 0.8;
  max-width: 150px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.subtitle {
  margin-bottom: 60px;
}

.subtitle span {
  font-family: var(--fontFamily-text);
  font-size: 1rem;
  font-weight: var(--fontSWeight-text);
  color: var(--black-color);
  text-transform: uppercase;
}

.title_content p {
  margin-top: 20px;
  font-weight: var(--fontSWeight-text);
  max-width: 500px;
}

.white_title {
  color: var(--black-color);
}

.center_title {
  width: 100%;
  text-align: center;
}

.center_title p {
  margin: 0 auto;
  margin-top: 40px;
  max-width: 800px;
}

.video_section, .video_play_btn {
  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;
}

.video_section {
  position: relative;
}

.video_section.hideBefore::before {
  display: none;
}

.video_section::before {
  content: '';
  width: 100%;
  height: 100%;
  z-index: 4;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #00000044;
}

.video_descr {
  position: absolute;
  left: 100px;
  z-index: 5;
  bottom: 50px;
}

.video_descr h3 {
  font-size: 26px;
  font-family: var(--fontFamily-title);
  color: var(--white-color);
}

.video_descr p {
  margin-top: 10px;
  color: var(--white-color);
}

.video_play_btn {
  width: 100px;
  height: 100px;
  cursor: pointer;
  background-color: var(--main-color);
  position: absolute;
  z-index: 5;
  border-radius: 50%;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.video_play_btn.opacityBtn {
  background-color: #0000001d;
  width: 60px;
  height: 60px;
}

.video_play_btn.opacityBtn:hover svg {
  opacity: 1;
}

.video_play_btn.opacityBtn svg {
  fill: var(--main-color);
  opacity: 0.6;
}

.video_play_btn.opacityBtn::after {
  display: none;
}

.video_play_btn::after {
  content: '';
  position: absolute;
  -webkit-animation: pulseBtn 1.2s infinite;
          animation: pulseBtn 1.2s infinite;
  opacity: 0;
  width: 99%;
  height: 99%;
  border-radius: 50%;
  z-index: -1;
  border: 1px solid var(--main-color);
}

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

.video_play_btn:hover svg {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  fill: var(--main-color);
}

.video_play_btn svg {
  -webkit-transition: .1s;
  transition: .1s;
  fill: var(--black-color);
  width: 24px;
  height: 24px;
}

@-webkit-keyframes pulseBtn {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes pulseBtn {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}

.video_banner {
  max-width: 100%;
  height: 80vh;
  position: relative;
}

.video_banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 2;
}

.video_hide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.my-video-dimensions {
  width: 100vw;
}

.section {
  padding-top: 200px;
  padding-bottom: 80px;
}

.portfolio_grids {
  margin-top: 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.port_item.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.port_item {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
  width: calc(30%);
  padding-top: 0.25rem;
  padding-right: 0px;
  padding-bottom: 0;
  padding-left: auto;
  position: relative;
}

.port_item:nth-of-type(4n+1) {
  width: calc(65%);
  margin-left: 0;
}

.port_item.port_th:nth-of-type(4n+1) {
  margin-left: auto;
}

.port_item:nth-of-type(4n+2) {
  margin-left: auto;
  padding-top: 0;
}

.port_item:nth-of-type(4n+3) {
  margin-top: 0px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 0;
}

.services_content {
  overflow: hidden;
}

.port_inner {
  width: calc(30%);
  margin-left: auto;
  margin-top: auto;
  position: absolute;
  top: 0;
  height: 570px;
  right: 0;
}

.port_inner_content {
  color: var(--black-bg);
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  border-radius: 1.5rem;
  padding: 30px;
  background-color: #f0f0f0;
}

.port_inner_content span {
  font-family: var(--fontFamily-title);
  font-size: 80px;
  color: #8CFC65;
}

.port_inner_desr {
  font-size: 15px;
  margin-top: 20px;
  text-transform: uppercase;
  color: #3c3c3c;
  font-weight: 400;
}

.port_title {
  font-family: var(--fontFamily-text);
  font-size: 20px;
  color: var(--white-color);
  padding: 0 8px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 26px;
}

.port_descr {
  padding: 0 8px;
  margin-top: 10px;
  line-height: 20px;
  font-size: 18px;
  font-weight: 300;
  color: #b5b5b5;
}

.port_descr, .port_title {
  padding-right: 10%;
}

.load_wrapper {
  width: 100%;
  height: 350px;
  left: 0;
  bottom: 0;
  position: absolute;
  margin-top: 35px;
}

.load_wrapper a {
  position: -webkit-sticky;
  position: sticky;
  top: 250px;
}

.port_fig {
  width: 100%;
  position: absolute;
  top: calc(100% + 1.3rem);
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.port_fig svg {
  position: absolute;
  right: 0;
  top: 15px;
  fill: var(--white-color);
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  width: 24px;
  height: 24px;
}

.port_fig_serv span {
  font-family: var(--fontFamily-text);
  color: var(--black-color);
  font-weight: 300;
  font-size: 16px;
  text-transform: lowercase;
  padding: .2rem .6rem;
  color: var(--white-color);
  background-color: var(--black-color);
  border-radius: 20px;
}

.port_item:hover .port_banner img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.port_item:hover .port_fig svg {
  fill: var(--main-color);
}

.port_banner {
  overflow: hidden;
  position: relative;
  border-radius: 1.5rem;
  padding-bottom: 56%;
}

.port_banner img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 1.5s cubic-bezier(0.05, 0.66, 0.14, 0.86);
  transition: -webkit-transform 1.5s cubic-bezier(0.05, 0.66, 0.14, 0.86);
  transition: transform 1.5s cubic-bezier(0.05, 0.66, 0.14, 0.86);
  transition: transform 1.5s cubic-bezier(0.05, 0.66, 0.14, 0.86), -webkit-transform 1.5s cubic-bezier(0.05, 0.66, 0.14, 0.86);
}

.sevr_conrainer {
  width: 100%;
  margin-top: 80px;
}

.set_grid {
  width: 100%;
}

.serv_items_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.serv_items_col a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 20px;
  position: relative;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.serv_items_col a p {
  margin-top: 8px;
  font-weight: 300;
}

.serv_items_col a:hover {
  background-color: var(--black-bg);
}

.serv_items_col a:hover span {
  color: var(--main-color);
}

.serv_items_col a:hover p {
  color: #fff;
}

.serv_items_col a:hover svg {
  fill: var(--main-color);
}

.serv_items_col a:hover::after {
  background-color: var(--main-color);
}

.serv_items_col a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #797979;
}

.serv_items_col a span {
  font-family: var(--fontFamily-title);
  font-size: 30px;
  color: var(--black-color);
  line-height: 30px;
}

.serv_items_col a svg {
  width: 24px;
  height: 24px;
}

.serv_img_item {
  width: 100%;
  height: 500px;
}

.serv_img_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.serv_stacks {
  margin-top: 40px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.serv_stack_span {
  position: relative;
  padding-left: 20px;
  margin-left: 10px;
  font-size: 18px;
  font-family: var(--fontFamily-title);
}

.serv_stack_span span::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 5px;
  width: 6px;
  height: 6px;
  background-color: var(--black-color);
}

.serv_stack_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.serv_stack_item {
  cursor: pointer;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.serv_stack_item:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.serv_stack_item svg {
  width: 60px;
  height: 60px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  fill: var(--border-lite);
}

.serv_stack_item span {
  font-size: 10px;
  margin-top: 4px;
  text-transform: uppercase;
  color: #4a4a4a;
}

.adven_grids {
  display: -ms-grid;
  display: grid;
  margin-top: 40px;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
}

.adven_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.5rem;
  height: 400px;
  overflow: hidden;
  background-image: url(/assets/resource/images/chander-r-AtfA8NDgpKA-unsplash.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.adven_item::after {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #141414;
}

.adven_item:hover::after {
  background-color: #141414d2;
}

.adven_item:hover .adven_item_link {
  opacity: 1;
}

.adven_item:hover .adven_item_content::after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.adven_item_content {
  z-index: 2;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  width: 100%;
  position: relative;
  height: 100%;
}

.adven_item_content::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 20px;
  bottom: 20px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  right: 20px;
  border-radius: 0.4rem;
  -webkit-box-shadow: 1px 1px 10px #8bfc656a;
          box-shadow: 1px 1px 10px #8bfc656a;
  opacity: 0;
  -webkit-transition: opacity .2s, -webkit-transform .4s;
  transition: opacity .2s, -webkit-transform .4s;
  transition: opacity .2s, transform .4s;
  transition: opacity .2s, transform .4s, -webkit-transform .4s;
  border: 1px solid var(--main-color);
}

.adven_item_wrapper {
  max-width: 120px;
  position: relative;
  height: auto;
}

.adven_item_wrapper svg {
  width: 100%;
  height: 100%;
  fill: var(--main-color);
}

.adven_item_descr {
  color: var(--white-color);
  font-family: var(--fontFamily-title);
  font-size: 24px;
  line-height: 25px;
  max-width: 80%;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.adven_item_link {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding: 4px 0;
  margin-top: 40px;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 10;
  border-bottom: 1px solid transparent;
}

.adven_item_link:hover {
  border-bottom-color: var(--main-color);
}

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

.slide_partners {
  overflow: hidden;
  position: relative;
  width: 300px;
  height: 300px;
  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;
}

.slide_partners img {
  width: 200px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  height: auto;
  opacity: 0.8;
  -o-object-fit: cover;
     object-fit: cover;
}