:root {
  --font-family: "OpenSans", sans-serif;
  --content-width: 1350px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #ffffff;
  --accent-color: #8AC926;
  --main-color: #333333;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable value-keyword-case */
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/../fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/../fonts/OpenSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
  font-style: normal;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

._container, .container-box {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.main-title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  font-size: 70px;
  line-height: 60px;
  text-transform: uppercase;
  color: var(--light-color);
}
@media (max-width: 992px) {
  .main-title {
    font-size: 60px;
    line-height: 55px;
  }
}
@media (max-width: 768px) {
  .main-title {
    font-size: 50px;
    line-height: 45px;
  }
}
@media (max-width: 480px) {
  .main-title {
    font-size: 32px;
    line-height: 32px;
  }
}

.title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  font-size: 36px;
  line-height: 50px;
  text-transform: uppercase;
  color: var(--main-color);
}
@media (max-width: 768px) {
  .title {
    font-size: 32px;
    line-height: 46px;
  }
}
@media (max-width: 576px) {
  .title {
    font-size: 28px;
    line-height: 36px;
  }
}

.btn-accent {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--light-color);
  padding: 12px 50px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
}
.btn-accent:hover {
  background-color: transparent;
  color: var(--main-color);
}

.btn-outline {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--light-color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: inline-block;
  border: 2px solid var(--light-color);
  padding: 15px 80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 576px) {
  .btn-outline {
    padding: 10px 60px;
    font-size: 16px;
    line-height: 26px;
  }
}
.btn-outline:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0%;
  height: 100%;
  background-color: var(--light-color);
  z-index: -1;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (min-width: 992px) {
  .btn-outline:hover {
    color: var(--main-color);
  }
  .btn-outline:hover:after {
    width: 100%;
  }
}

.all_pages {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 101;
}
.all_pages:hover ul {
  right: 0;
}
.all_pages .page_point {
  padding: 10px 15px;
  background: #00d2ff;
  cursor: pointer;
  color: #fff;
}
.all_pages ul {
  background: #00D2FF;
  padding: 15px 20px;
  position: absolute;
  top: 100%;
  width: 200px;
  right: -200px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  max-height: 450px;
  overflow-y: auto;
}
.all_pages ul li {
  list-style: none;
  margin-bottom: 15px;
  font-size: 16px;
}
.all_pages ul li a {
  color: #fff;
}

body.lock {
  overflow: hidden;
}

.header {
  background-color: var(--light-color);
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .header {
    padding: 10px 0;
  }
}
.header.scroll {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 0;
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
}
.header__wrap {
  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;
}
.header__wrap > nav {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .header__wrap > nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    overflow-y: auto;
    width: 100%;
    height: 100vh;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  .header__wrap > nav.menu--active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.header__wrap > nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media (max-width: 992px) {
  .header__wrap > nav > ul {
    width: 100%;
    height: 100%;
    background: rgb(69, 102, 17);
    background: -webkit-gradient(linear, left top, right bottom, from(rgb(3, 19, 6)), to(rgb(69, 102, 17)));
    background: -o-linear-gradient(left top, rgb(3, 19, 6), rgb(69, 102, 17));
    background: linear-gradient(to right bottom, rgb(3, 19, 6), rgb(69, 102, 17));
    -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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 25px;
  }
}
@media (max-width: 480px) {
  .header__wrap > nav > ul {
    row-gap: 20px;
  }
}
@media (max-height: 400px) {
  .header__wrap > nav > ul {
    row-gap: 10px;
  }
}
.header__wrap > nav > ul > li > a {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--main-color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (min-width: 993px) {
  .header__wrap > nav > ul > li > a.active {
    color: var(--accent-color);
  }
  .header__wrap > nav > ul > li > a:hover {
    color: var(--accent-color);
  }
}
@media (max-width: 992px) {
  .header__wrap > nav > ul > li > a {
    font-size: 22px;
    line-height: 26px;
    color: var(--light-color);
  }
}
@media (max-width: 480px) {
  .header__wrap > nav > ul > li > a {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-height: 400px) {
  .header__wrap > nav > ul > li > a {
    font-size: 14px;
    line-height: 14px;
  }
}
.header__logo {
  position: relative;
  z-index: 101;
}
.header .burger {
  --burger-width: 30px;
  --burger-height: 20px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer;
  display: none;
}
.header .burger::before, .header .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger::before {
  top: 0;
}
.header .burger::after {
  top: calc(100% - var(--burger-line-height));
}
.header .burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background-color: var(--light-color);
}
.header .burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background-color: var(--light-color);
}
.header .burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .header .burger {
    display: block;
    z-index: 101;
  }
}

.hero {
  position: relative;
  margin-top: var(--header-height);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 200px;
  padding-bottom: 235px;
}
@media (max-width: 576px) {
  .hero {
    padding-top: 150px;
    padding-bottom: 200px;
  }
}
@media (max-width: 400px) {
  .hero {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
.hero__wrap {
  position: relative;
  z-index: 10;
}
@media (max-width: 400px) {
  .hero__wrap {
    text-align: center;
  }
}
.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero__title {
  max-width: 600px;
  margin-bottom: 30px;
}
.hero__subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
  max-width: 660px;
  margin-bottom: 50px;
}
@media (max-width: 576px) {
  .hero__subtitle {
    font-size: 16px;
    line-height: 26px;
  }
}

.services {
  padding-top: 140px;
  padding-bottom: 100px;
}
@media (max-width: 1200px) {
  .services {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .services {
    padding-top: 80px;
  }
}
.services__title {
  text-align: center;
  margin-bottom: 40px;
}
.services__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .services__items {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.services__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.3333333333%;
  flex: 0 1 33.3333333333%;
  padding: 60px 40px 45px;
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border: 1px solid #eeeeee;
  border-left: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1200px) {
  .services__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 10px);
    flex: 0 1 calc(50% - 10px);
    border-left: 1px solid #eeeeee;
  }
}
@media (max-width: 992px) {
  .services__item {
    -webkit-box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.08);
    padding: 50px 30px 40px;
  }
}
@media (max-width: 768px) {
  .services__item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 480px) {
  .services__item {
    padding: 40px 15px;
  }
}
@media (min-width: 993px) {
  .services__item:hover {
    -webkit-box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.08);
  }
  .services__item:hover .services__icon {
    background-color: var(--accent-color);
  }
  .services__item:hover .services__icon img {
    -webkit-animation: iconsTransform 1s ease 0s alternate infinite;
    animation: iconsTransform 1s ease 0s alternate infinite;
  }
  .services__item:hover .services__link {
    opacity: 1;
  }
}
.services__item:first-child {
  border-left: 1px solid #eeeeee;
}
@media (max-width: 1200px) {
  .services__item:first-child {
    border-left: none;
  }
}
.services__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  margin-bottom: 40px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .services__name {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    margin-bottom: 20px;
  }
}
.services__name h4 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--main-color);
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 120px);
  flex: 0 1 calc(100% - 120px);
}
@media (max-width: 768px) {
  .services__name h4 {
    font-size: 20px;
    line-height: 26px;
  }
}
.services__icon {
  width: 90px;
  height: 90px;
  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;
  border-radius: 50%;
  background-color: #429625;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 90px;
  flex: 0 1 90px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.services__icon img {
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 768px) {
  .services__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 70px;
    flex: 0 1 70px;
    width: 70px;
    height: 70px;
  }
  .services__icon img {
    width: 30px;
    height: 30px;
  }
}
.services__text {
  font-weight: 400;
  line-height: 28px;
  color: var(--main-color);
  margin-bottom: 40px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.services__link {
  display: inline-block;
  margin-top: auto;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 480px) {
  .services__link {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 993px) {
  .services__link {
    opacity: 0.2;
  }
}

.mission {
  padding-top: 100px;
  padding-bottom: 120px;
}
@media (max-width: 992px) {
  .mission {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .mission {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.mission__wrap .tabs__text h3 {
  margin-bottom: 20px;
}
.mission__wrap .tabs__text p:not(:last-child) {
  margin-bottom: 25px;
}

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 70px;
  -moz-column-gap: 70px;
  column-gap: 70px;
}
.tabs .tabs__nav-btn--active {
  background-color: #ff0001;
}
.tabs .tabs__panel {
  display: none;
}
.tabs .tabs__panel--active {
  display: block;
}
@media (max-width: 1200px) {
  .tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 60px;
  }
}
@media (max-width: 480px) {
  .tabs {
    row-gap: 40px;
  }
}
.tabs__nav {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 230px;
  flex: 0 1 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .tabs__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .tabs__nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px;
  }
}
@media (max-width: 480px) {
  .tabs__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    row-gap: 10px;
  }
}
.tabs__nav-btn {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--main-color);
  background-color: transparent;
  width: 100%;
  text-align: left;
  padding: 10px 0;
  position: relative;
}
@media (max-width: 1200px) {
  .tabs__nav-btn {
    padding: 8px 30px;
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .tabs__nav-btn {
    text-align: center;
  }
}
.tabs__nav-btn:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #f2f2f2;
}
@media (max-width: 1200px) {
  .tabs__nav-btn:after {
    content: none;
  }
}
.tabs__nav-btn--active {
  color: var(--accent-color);
  background-color: transparent !important;
}
@media (max-width: 1200px) {
  .tabs__nav-btn--active {
    background-color: var(--accent-color) !important;
    border-radius: 3px;
    color: var(--light-color);
  }
}
.tabs__nav-btn--active:after {
  background-color: var(--accent-color);
}
.tabs__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 300px);
  flex: 0 1 calc(100% - 300px);
}
@media (max-width: 1200px) {
  .tabs__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.tabs__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 155px;
  -moz-column-gap: 155px;
  column-gap: 155px;
}
@media (max-width: 1400px) {
  .tabs__wrap {
    -webkit-column-gap: 100px;
    -moz-column-gap: 100px;
    column-gap: 100px;
  }
}
@media (max-width: 992px) {
  .tabs__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 60px;
  }
}
@media (max-width: 480px) {
  .tabs__wrap {
    row-gap: 40px;
  }
}
.tabs__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 350px;
  flex: 0 1 350px;
  max-width: 350px;
  max-height: 500px;
  position: relative;
}
.tabs__img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 2px solid var(--accent-color);
  opacity: 0.5;
  z-index: 5;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.tabs__img:after {
  -webkit-transform: translate(40px, 40px);
  -ms-transform: translate(40px, 40px);
  transform: translate(40px, 40px);
}
.tabs__img:hover img {
  -webkit-transform: translate(40px, 40px);
  -ms-transform: translate(40px, 40px);
  transform: translate(40px, 40px);
}
@media (max-width: 992px) {
  .tabs__img:hover img {
    -webkit-transform: translate(20px, 20px);
    -ms-transform: translate(20px, 20px);
    transform: translate(20px, 20px);
  }
}
@media (max-width: 480px) {
  .tabs__img:hover img {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
.tabs__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .tabs__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
  .tabs__img:after {
    -webkit-transform: translate(20px, 20px);
    -ms-transform: translate(20px, 20px);
    transform: translate(20px, 20px);
  }
}
@media (max-width: 480px) {
  .tabs__img:after {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    border: 5px solid var(--accent-color);
    opacity: 1;
  }
}
.tabs__text {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 505px);
  flex: 0 1 calc(100% - 505px);
}
.tabs__text p {
  font-weight: 400;
  line-height: 28px;
  color: var(--main-color);
}
@media (max-width: 992px) {
  .tabs__text {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}

.advantages {
  padding-top: 120px;
  padding-bottom: 100px;
}
@media (max-width: 992px) {
  .advantages {
    padding-top: 60px;
  }
}
@media (max-width: 768px) {
  .advantages {
    padding-bottom: 60px;
  }
}
.advantages__title {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .advantages__title {
    margin-bottom: 40px;
  }
}

.block-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-auto-rows: auto;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 50px;
}
@media (max-width: 1200px) {
  .block-items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .block-items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.block-items__item {
  text-align: center;
}
.block-items__item h4 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--main-color);
  margin-bottom: 10px;
}
.block-items__item p {
  font-weight: 400;
  line-height: 28px;
  color: var(--main-color);
}
.block-items__item:hover .block-items__img img {
  -webkit-animation: iconsJump 0.8s ease-in-out 0s;
  animation: iconsJump 0.8s ease-in-out 0s;
}
.block-items__img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.block-items__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.markets {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (min-width: 993px) {
  .markets:hover .markets__img {
    -webkit-animation-play-state: running;
    animation-play-state: running;
  }
}
@media (max-width: 768px) {
  .markets {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.markets__wrap {
  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;
}
@media (max-width: 1200px) {
  .markets__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 40px;
  }
}
.markets__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 600px);
  flex: 0 1 calc(100% - 600px);
  max-width: 545px;
}
@media (max-width: 1200px) {
  .markets__content {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: none;
  }
}
.markets__content p {
  font-weight: 400;
  line-height: 28px;
  color: var(--main-color);
}
.markets__content p:not(:last-child) {
  margin-bottom: 25px;
}
.markets__title {
  margin-bottom: 20px;
}
.markets__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 600px;
  flex: 0 1 600px;
  max-width: 600px;
  position: relative;
  padding: 40px 0 40px 40px;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(100%, rgba(138, 201, 38, 0.5)), to(rgba(138, 201, 38, 0.5))), -webkit-gradient(linear, left top, left bottom, color-stop(100%, rgba(138, 201, 38, 0.5)), to(rgba(138, 201, 38, 0.5))), -webkit-gradient(linear, left top, right top, color-stop(100%, rgba(138, 201, 38, 0.5)), to(rgba(138, 201, 38, 0.5))), -webkit-gradient(linear, left top, left bottom, color-stop(100%, rgba(138, 201, 38, 0.5)), to(rgba(138, 201, 38, 0.5)));
  background-image: -o-linear-gradient(left, rgba(138, 201, 38, 0.5) 100%, rgba(138, 201, 38, 0.5) 100%), -o-linear-gradient(top, rgba(138, 201, 38, 0.5) 100%, rgba(138, 201, 38, 0.5) 100%), -o-linear-gradient(left, rgba(138, 201, 38, 0.5) 100%, rgba(138, 201, 38, 0.5) 100%), -o-linear-gradient(top, rgba(138, 201, 38, 0.5) 100%, rgba(138, 201, 38, 0.5) 100%);
  background-image: linear-gradient(to right, rgba(138, 201, 38, 0.5) 100%, rgba(138, 201, 38, 0.5) 100%), linear-gradient(to bottom, rgba(138, 201, 38, 0.5) 100%, rgba(138, 201, 38, 0.5) 100%), linear-gradient(to right, rgba(138, 201, 38, 0.5) 100%, rgba(138, 201, 38, 0.5) 100%), linear-gradient(to bottom, rgba(138, 201, 38, 0.5) 100%, rgba(138, 201, 38, 0.5) 100%);
  background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  -webkit-animation: bg 1.25s cubic-bezier(0.19, 1, 0.22, 1) 1;
  animation: bg 1.25s cubic-bezier(0.19, 1, 0.22, 1) 1;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
@media (max-width: 1200px) {
  .markets__img {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 0;
    background-image: none;
  }
}
@media (max-width: 768px) {
  .markets__img svg {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (min-width: 993px) {
  .markets__img:hover {
    -webkit-animation-play-state: running;
    animation-play-state: running;
  }
}
.markets__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.partners {
  padding-top: 80px;
  padding-bottom: 110px;
  background-color: #FAFAFA;
}
@media (max-width: 768px) {
  .partners {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.partners__title {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 576px) {
  .partners__title {
    margin-bottom: 30px;
  }
}

.ticker {
  overflow: hidden;
}
.ticker__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}
.ticker__wrapper .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 576px) {
  .ticker__wrapper {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
.ticker__item {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0 50px;
}
@media (max-width: 768px) {
  .ticker__item {
    padding: 0 35px;
  }
}
@media (max-width: 576px) {
  .ticker__item {
    padding: 0 20px;
  }
}
.ticker__item svg {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ticker__item svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ticker__item svg:hover path {
  fill: var(--accent-color);
}
@media (max-width: 576px) {
  .ticker__item svg {
    width: 80%;
  }
}

.banner {
  margin-top: var(--header-height);
  height: 500px;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 576px) {
  .banner {
    height: 400px;
  }
}
.banner ._container {
  height: 100%;
}
.banner__wrap {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 400px) {
  .banner__wrap {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.banner__title {
  max-width: 600px;
}

.aerospace, .energies, .analysis {
  padding-top: 100px;
  padding-bottom: 120px;
}
@media (max-width: 992px) {
  .aerospace, .energies, .analysis {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .aerospace, .energies, .analysis {
    padding-top: 60px;
  }
}
.aerospace__wrap, .energies__wrap, .analysis__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 140px;
}
@media (max-width: 992px) {
  .aerospace__wrap, .energies__wrap, .analysis__wrap {
    row-gap: 80px;
  }
}
@media (max-width: 576px) {
  .aerospace__wrap, .energies__wrap, .analysis__wrap {
    row-gap: 40px;
  }
}
.aerospace__item, .energies__item, .analysis__item {
  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;
  -webkit-column-gap: 190px;
  -moz-column-gap: 190px;
  column-gap: 190px;
}
.aerospace__item:nth-child(even) .aerospace__content, .aerospace__item:nth-child(even) .energies__content, .aerospace__item:nth-child(even) .analysis__content, .energies__item:nth-child(even) .aerospace__content, .energies__item:nth-child(even) .energies__content, .energies__item:nth-child(even) .analysis__content, .analysis__item:nth-child(even) .aerospace__content, .analysis__item:nth-child(even) .energies__content, .analysis__item:nth-child(even) .analysis__content {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
@media (max-width: 992px) {
  .aerospace__item:nth-child(even) .aerospace__content, .aerospace__item:nth-child(even) .energies__content, .aerospace__item:nth-child(even) .analysis__content, .energies__item:nth-child(even) .aerospace__content, .energies__item:nth-child(even) .energies__content, .energies__item:nth-child(even) .analysis__content, .analysis__item:nth-child(even) .aerospace__content, .analysis__item:nth-child(even) .energies__content, .analysis__item:nth-child(even) .analysis__content {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}
.aerospace__item:nth-child(even) .aerospace__img:after, .aerospace__item:nth-child(even) .energies__img:after, .aerospace__item:nth-child(even) .analysis__img:after, .energies__item:nth-child(even) .aerospace__img:after, .energies__item:nth-child(even) .energies__img:after, .energies__item:nth-child(even) .analysis__img:after, .analysis__item:nth-child(even) .aerospace__img:after, .analysis__item:nth-child(even) .energies__img:after, .analysis__item:nth-child(even) .analysis__img:after {
  left: -80px;
}
@media (max-width: 992px) {
  .aerospace__item:nth-child(even) .aerospace__img:after, .aerospace__item:nth-child(even) .energies__img:after, .aerospace__item:nth-child(even) .analysis__img:after, .energies__item:nth-child(even) .aerospace__img:after, .energies__item:nth-child(even) .energies__img:after, .energies__item:nth-child(even) .analysis__img:after, .analysis__item:nth-child(even) .aerospace__img:after, .analysis__item:nth-child(even) .energies__img:after, .analysis__item:nth-child(even) .analysis__img:after {
    left: 0px;
  }
}
.aerospace__item:nth-child(even) .aerospace__img:hover:hover img, .aerospace__item:nth-child(even) .energies__img:hover:hover img, .aerospace__item:nth-child(even) .analysis__img:hover:hover img, .energies__item:nth-child(even) .aerospace__img:hover:hover img, .energies__item:nth-child(even) .energies__img:hover:hover img, .energies__item:nth-child(even) .analysis__img:hover:hover img, .analysis__item:nth-child(even) .aerospace__img:hover:hover img, .analysis__item:nth-child(even) .energies__img:hover:hover img, .analysis__item:nth-child(even) .analysis__img:hover:hover img {
  -webkit-transform: translate(-40px, 40px);
  -ms-transform: translate(-40px, 40px);
  transform: translate(-40px, 40px);
}
@media (max-width: 992px) {
  .aerospace__item:nth-child(even) .aerospace__img:hover:hover img, .aerospace__item:nth-child(even) .energies__img:hover:hover img, .aerospace__item:nth-child(even) .analysis__img:hover:hover img, .energies__item:nth-child(even) .aerospace__img:hover:hover img, .energies__item:nth-child(even) .energies__img:hover:hover img, .energies__item:nth-child(even) .analysis__img:hover:hover img, .analysis__item:nth-child(even) .aerospace__img:hover:hover img, .analysis__item:nth-child(even) .energies__img:hover:hover img, .analysis__item:nth-child(even) .analysis__img:hover:hover img {
    -webkit-transform: translate(-20px, 20px);
    -ms-transform: translate(-20px, 20px);
    transform: translate(-20px, 20px);
  }
}
@media (max-width: 576px) {
  .aerospace__item:nth-child(even) .aerospace__img:hover:hover img, .aerospace__item:nth-child(even) .energies__img:hover:hover img, .aerospace__item:nth-child(even) .analysis__img:hover:hover img, .energies__item:nth-child(even) .aerospace__img:hover:hover img, .energies__item:nth-child(even) .energies__img:hover:hover img, .energies__item:nth-child(even) .analysis__img:hover:hover img, .analysis__item:nth-child(even) .aerospace__img:hover:hover img, .analysis__item:nth-child(even) .energies__img:hover:hover img, .analysis__item:nth-child(even) .analysis__img:hover:hover img {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
@media (max-width: 1200px) {
  .aerospace__item, .energies__item, .analysis__item {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media (max-width: 992px) {
  .aerospace__item, .energies__item, .analysis__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 60px;
  }
}
@media (max-width: 576px) {
  .aerospace__item, .energies__item, .analysis__item {
    row-gap: 40px;
  }
}
.aerospace__img, .energies__img, .analysis__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 500px;
  flex: 0 1 500px;
  max-width: 500px;
  max-height: 500px;
  position: relative;
}
.aerospace__img:after, .energies__img:after, .analysis__img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 2px solid var(--accent-color);
  opacity: 0.5;
  z-index: 5;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.aerospace__img:after, .energies__img:after, .analysis__img:after {
  -webkit-transform: translate(40px, 40px);
  -ms-transform: translate(40px, 40px);
  transform: translate(40px, 40px);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.aerospace__img:hover img, .energies__img:hover img, .analysis__img:hover img {
  -webkit-transform: translate(40px, 40px);
  -ms-transform: translate(40px, 40px);
  transform: translate(40px, 40px);
}
@media (max-width: 992px) {
  .aerospace__img:hover img, .energies__img:hover img, .analysis__img:hover img {
    -webkit-transform: translate(20px, 20px);
    -ms-transform: translate(20px, 20px);
    transform: translate(20px, 20px);
  }
}
@media (max-width: 576px) {
  .aerospace__img:hover img, .energies__img:hover img, .analysis__img:hover img {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
.aerospace__img img, .energies__img img, .analysis__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .aerospace__img, .energies__img, .analysis__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
  .aerospace__img:after, .energies__img:after, .analysis__img:after {
    -webkit-transform: translate(20px, 20px);
    -ms-transform: translate(20px, 20px);
    transform: translate(20px, 20px);
  }
}
@media (max-width: 576px) {
  .aerospace__img:after, .energies__img:after, .analysis__img:after {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    border: 5px solid var(--accent-color);
    opacity: 1;
  }
}
.aerospace__content, .energies__content, .analysis__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 690px);
  flex: 0 1 calc(100% - 690px);
}
@media (max-width: 1200px) {
  .aerospace__content, .energies__content, .analysis__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% - 550px);
    flex: 0 1 calc(100% - 550px);
  }
}
@media (max-width: 992px) {
  .aerospace__content, .energies__content, .analysis__content {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.aerospace__content p, .energies__content p, .analysis__content p {
  font-weight: 400;
  line-height: 28px;
  color: var(--main-color);
}
.aerospace__content p:not(:last-of-type), .energies__content p:not(:last-of-type), .analysis__content p:not(:last-of-type) {
  margin-bottom: 25px;
}
.aerospace__content > ul > li, .energies__content > ul > li, .analysis__content > ul > li {
  position: relative;
  padding-left: 20px;
}
.aerospace__content > ul > li:after, .energies__content > ul > li:after, .analysis__content > ul > li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  background-color: var(--accent-color);
}
.aerospace__title, .energies__title, .analysis__title {
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .services .block-items .block-items__item h4 br {
    display: none;
  }
}
@media (max-width: 768px) {
  .services {
    padding-top: 60px;
  }
}

@media (max-width: 992px) {
  .analysis .analysis__item:first-child .analysis__content {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}
.analysis .analysis__item:last-child p {
  margin-bottom: 25px;
}

.we-serve {
  padding-top: 120px;
  padding-bottom: 200px;
}
@media (max-width: 992px) {
  .we-serve {
    padding-top: 60px;
  }
}
@media (max-width: 768px) {
  .we-serve {
    padding-bottom: 60px;
  }
}
.we-serve__title {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .we-serve__title {
    margin-bottom: 40px;
  }
}

.cybernetics {
  padding-top: 100px;
  padding-bottom: 120px;
}
@media (max-width: 992px) {
  .cybernetics {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .cybernetics {
    padding-top: 60px;
  }
}
.cybernetics__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 140px;
}
@media (max-width: 992px) {
  .cybernetics__wrap {
    row-gap: 80px;
  }
}
@media (max-width: 576px) {
  .cybernetics__wrap {
    row-gap: 40px;
  }
}
.cybernetics__item {
  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;
  -webkit-column-gap: 190px;
  -moz-column-gap: 190px;
  column-gap: 190px;
}
@media (max-width: 1200px) {
  .cybernetics__item {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 992px) {
  .cybernetics__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 60px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .cybernetics__item {
    row-gap: 40px;
  }
}
.cybernetics__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 500px;
  flex: 0 1 500px;
  max-width: 500px;
  max-height: 500px;
  position: relative;
}
.cybernetics__img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 2px solid var(--accent-color);
  opacity: 0.5;
  z-index: 5;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.cybernetics__img:after {
  -webkit-transform: translate(-40px, 40px);
  -ms-transform: translate(-40px, 40px);
  transform: translate(-40px, 40px);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.cybernetics__img:hover img {
  -webkit-transform: translate(-40px, 40px);
  -ms-transform: translate(-40px, 40px);
  transform: translate(-40px, 40px);
}
@media (max-width: 992px) {
  .cybernetics__img:hover img {
    -webkit-transform: translate(-20px, 20px);
    -ms-transform: translate(-20px, 20px);
    transform: translate(-20px, 20px);
  }
}
@media (max-width: 576px) {
  .cybernetics__img:hover img {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
.cybernetics__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .cybernetics__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
  .cybernetics__img:after {
    -webkit-transform: translate(-20px, 20px);
    -ms-transform: translate(-20px, 20px);
    transform: translate(-20px, 20px);
  }
}
@media (max-width: 576px) {
  .cybernetics__img:after {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    border: 5px solid var(--accent-color);
    opacity: 1;
  }
}
.cybernetics__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 690px);
  flex: 0 1 calc(100% - 690px);
}
@media (max-width: 1200px) {
  .cybernetics__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% - 550px);
    flex: 0 1 calc(100% - 550px);
  }
}
@media (max-width: 992px) {
  .cybernetics__content {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.cybernetics__content p {
  font-weight: 400;
  line-height: 28px;
  color: var(--main-color);
}
.cybernetics__content p:not(:last-of-type) {
  margin-bottom: 25px;
}

.design {
  padding-top: 100px;
  padding-bottom: 120px;
}
@media (max-width: 992px) {
  .design {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .design {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.design__wrap .tabs__text h3 {
  margin-bottom: 20px;
}
.design__wrap .tabs__text p:not(:last-child) {
  margin-bottom: 25px;
}

.faq {
  padding-top: 120px;
  padding-bottom: 200px;
}
@media (max-width: 1200px) {
  .faq {
    padding-bottom: 120px;
  }
}
@media (max-width: 768px) {
  .faq {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.faq__title {
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .faq__title {
    margin-bottom: 40px;
  }
}

.accordion-item {
  margin-bottom: 10px;
  border: 2px solid rgba(138, 201, 38, 0.5) !important;
}
.accordion-item.active {
  position: relative;
  z-index: 95;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}

.accordion-button {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: var(--main-color) !important;
  background-color: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 15px 30px;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.accordion-button:after {
  background-image: url("../img/arrow-down.svg");
  background-size: 16px 16px;
  width: 16px !important;
  height: 16px !important;
}
@media (max-width: 576px) {
  .accordion-button:after {
    background-size: 10px 10px;
    width: 10px !important;
    height: 10px !important;
  }
}
@media (max-width: 480px) {
  .accordion-button {
    padding: 10px 20px 10px 20px;
    font-size: 14px;
    line-height: 20px;
  }
}

.accordion-button:not(.collapsed) {
  background: none !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../img/arrow-down.svg");
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.accordion-body {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--main-color);
  padding: 0px 85px 25px 30px;
}
@media (max-width: 480px) {
  .accordion-body {
    font-size: 14px;
    line-height: 23px;
    padding: 10px 30px 10px 20px;
  }
}

.contact {
  padding-top: 100px;
  padding-bottom: 200px;
}
@media (max-width: 1200px) {
  .contact {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.contact_pd {
  padding-left: 50px;
}
@media (max-width: 992px) {
  .contact_pd {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .contact_pd {
    padding-left: 30px;
  }
}
@media (max-width: 400px) {
  .contact_pd {
    padding-left: 0;
  }
}
.contact__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
@media (max-width: 992px) {
  .contact__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 40px;
  }
}
.contact__contacts {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 250px;
  flex: 0 1 250px;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: var(--main-color);
}
@media (max-width: 992px) {
  .contact__contacts {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.contact__contacts > a {
  color: var(--main-color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.contact__contacts > a:hover {
  color: var(--accent-color);
}
.contact__contacts address, .contact__contacts a {
  display: block;
  margin: 0;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .contact__contacts address, .contact__contacts a {
    margin-bottom: 20px;
  }
}
@media (max-width: 400px) {
  .contact__contacts address, .contact__contacts a {
    margin-bottom: 15px;
  }
}
.contact__contacts address {
  background-image: url("../img/contact-location.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 30px 30px;
}
@media (max-width: 576px) {
  .contact__contacts address, .contact__contacts a {
    background-size: 20px 20px;
    background-position: left center;
  }
}
@media (max-width: 400px) {
  .contact__contacts address, .contact__contacts a {
    background-image: none;
  }
}
.contact__title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .contact__title {
    text-align: center;
  }
}
.contact__phone {
  background-image: url("../img/contact-call.svg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 30px 30px;
}
.contact__mail {
  background-image: url("../img/contact-mail.svg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 30px 30px;
}
.contact__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
@media (max-width: 992px) {
  .contact__social {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
  }
}
.contact__social > li {
  width: 30px;
  height: 30px;
}
.contact__social > li > a {
  width: 100%;
  height: 100%;
}
.contact__social a {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: inline-block;
}
.contact__social a:hover {
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
}
.contact__form {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 890px;
  flex: 0 1 890px;
}
@media (max-width: 992px) {
  .contact__form {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.contact__form form label, .contact__form form input:not([type=submit]), .contact__form form textarea {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--main-color);
  border-radius: 0 !important;
}
.contact__form form label::-webkit-input-placeholder, .contact__form form input:not([type=submit])::-webkit-input-placeholder, .contact__form form textarea::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgba(51, 51, 51, 0.5);
}
.contact__form form label::-moz-placeholder, .contact__form form input:not([type=submit])::-moz-placeholder, .contact__form form textarea::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgba(51, 51, 51, 0.5);
}
.contact__form form label:-ms-input-placeholder, .contact__form form input:not([type=submit]):-ms-input-placeholder, .contact__form form textarea:-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgba(51, 51, 51, 0.5);
}
.contact__form form label::-ms-input-placeholder, .contact__form form input:not([type=submit])::-ms-input-placeholder, .contact__form form textarea::-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgba(51, 51, 51, 0.5);
}
.contact__form form label::placeholder, .contact__form form input:not([type=submit])::placeholder, .contact__form form textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgba(51, 51, 51, 0.5);
}
.contact__form form input:not([type=submit]), .contact__form form textarea {
  border-bottom: 1px solid #eeeeee;
}
.contact__form form input {
  background-color: none !important;
}
.contact__form form label {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--main-color);
}
.contact__form form input:not([type=submit]) {
  padding: 6px 6px 6px 0;
  margin-bottom: 30px;
}
.contact__form form textarea {
  resize: vertical;
  height: 100px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .contact__form form input[type=submit] {
    margin: 0 auto;
    display: block;
  }
}
.contact__btn {
  padding: 12px 90px;
}
.contact .contact-form__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .contact .contact-form__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.page-404 {
  height: 100vh;
  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;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media (max-width: 768px) {
  .page-404 {
    height: auto;
  }
}
@media (max-height: 770px) {
  .page-404 {
    height: auto;
  }
}
.page-404__wrap {
  padding: 60px 0;
  max-width: 1120px;
  margin: 0 auto;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  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-column-gap: 95px;
  -moz-column-gap: 95px;
  column-gap: 95px;
  margin-top: var(--header-height);
}
@media (max-width: 992px) {
  .page-404__wrap {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
@media (max-width: 768px) {
  .page-404__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
  }
}
@media (max-width: 992px) {
  .page-404__img img {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .page-404__img {
    text-align: center;
  }
  .page-404__img img {
    width: 70%;
  }
}
.page-404__content {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .page-404__content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.page-404__content h1 {
  font-family: "Montserrat";
  font-size: 36px;
  line-height: 50px;
  font-weight: 900;
  color: var(--main-color);
  margin-bottom: 28px;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .page-404__content h1 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .page-404__content h1 {
    font-size: 28px;
    line-height: 36px;
  }
}
.page-404__content p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  color: var(--main-color);
  margin-bottom: 20px;
  max-width: 545px;
}
@media (max-width: 768px) {
  .page-404__content p {
    text-align: center;
    padding: 0 15px;
  }
}
.page-404__content a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}
.page-404__link {
  padding: 12px 72px;
}

.single {
  padding-top: 100px;
  padding-bottom: 120px;
}
@media (max-width: 992px) {
  .single {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .single {
    padding-top: 60px;
  }
}
.single a {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.single a:hover {
  color: var(--accent-color);
}
.single h2 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--main-color);
  margin-bottom: 15px;
}
.single p {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--main-color);
  margin-bottom: 15px;
}
.single p strong {
  font-family: sans-serif;
}

.footer {
  background-color: var(--main-color);
}
.footer nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media (max-width: 1200px) {
  .footer nav > ul {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
}
@media (max-width: 768px) {
  .footer nav > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    row-gap: 10px;
  }
}
.footer nav > ul > li > a {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--light-color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (min-width: 993px) {
  .footer nav > ul > li > a.active {
    color: var(--accent-color);
  }
  .footer nav > ul > li > a:hover {
    color: var(--accent-color);
  }
}
@media (max-width: 1200px) {
  .footer nav > ul > li > a {
    font-size: 12px;
  }
}
.footer__wrap {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 992px) {
  .footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 25px;
  }
}
.footer__wrap > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.footer__wrap > ul > li {
  width: 30px;
  height: 30px;
}
@media (max-width: 480px) {
  .footer__wrap > ul > li {
    width: 24px;
    height: 24px;
  }
  .footer__wrap > ul > li img {
    width: 100%;
    height: 100%;
  }
}
.footer__wrap > ul > li > a {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: inline-block;
}
.footer__wrap > ul > li > a:hover {
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
}
.footer__logo {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-left: auto;
}
@media (max-width: 992px) {
  .footer__logo {
    margin-left: 0;
  }
}
.footer__social {
  margin-left: 60px;
}
@media (max-width: 992px) {
  .footer__social {
    margin-left: 0;
  }
}
.footer__copyright {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
}
@media (max-width: 480px) {
  .footer__copyright {
    font-size: 12px;
    line-height: 18px;
  }
}
.footer__copyright a {
  color: var(--light-color);
}
.footer__copyright a:hover {
  text-decoration: underline;
}
.footer__copyright-wrap {
  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;
  padding: 20px 0;
  border-top: 1px solid #555555;
}
@media (max-width: 768px) {
  .footer__copyright-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
    text-align: center;
  }
}
.footer__policy a {
  display: inline-block;
}
.footer__policy a:first-child {
  margin-right: 10px;
}

@-webkit-keyframes iconsTransform {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes iconsTransform {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes iconsJump {
  from {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  25% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
  70% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  to {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes iconsJump {
  from {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  25% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
  70% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  to {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-webkit-keyframes bg {
  0% {
    background-size: 0 3px, 3px 0, 0 3px, 3px 0;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(100%, rgba(138, 201, 38, 0.5)), to(rgba(138, 201, 38, 0.5)));
    background-image: linear-gradient(to right, rgba(138, 201, 38, 0.5) 100%, rgba(138, 201, 38, 0.5) 100%);
  }
  25% {
    background-size: 100% 3px, 3px 0, 0 3px, 3px 0;
  }
  50% {
    background-size: 100% 3px, 3px 100%, 0 3px, 3px 0;
  }
  75% {
    background-size: 100% 3px, 3px 100%, 100% 3px, 3px 0;
  }
  100% {
    background-size: 100% 3px, 3px 100%, 100% 3px, 3px 100%;
  }
}
@keyframes bg {
  0% {
    background-size: 0 3px, 3px 0, 0 3px, 3px 0;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(100%, rgba(138, 201, 38, 0.5)), to(rgba(138, 201, 38, 0.5)));
    background-image: -o-linear-gradient(left, rgba(138, 201, 38, 0.5) 100%, rgba(138, 201, 38, 0.5) 100%);
    background-image: linear-gradient(to right, rgba(138, 201, 38, 0.5) 100%, rgba(138, 201, 38, 0.5) 100%);
  }
  25% {
    background-size: 100% 3px, 3px 0, 0 3px, 3px 0;
  }
  50% {
    background-size: 100% 3px, 3px 100%, 0 3px, 3px 0;
  }
  75% {
    background-size: 100% 3px, 3px 100%, 100% 3px, 3px 0;
  }
  100% {
    background-size: 100% 3px, 3px 100%, 100% 3px, 3px 100%;
  }
}
/*# sourceMappingURL=main.css.map */