.menu-active {
  overflow: hidden;
  position: fixed;
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  width: 100vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 38px 40px 0;
  z-index: 100;
}

@media (max-width: 767px) {
  .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 38px 24px 0;
  }
}

.page-template-page-new-landing .header {
  padding: 0;
}

.header .logo {
  width: 70px;
  display: block;
  margin-left: 22px;
  position: relative;
  top: -6px;
  height: 43px;
}

@media (max-width: 767px) {
  .header .logo {
    z-index: 2;
  }
}

.header .logo--light,
.header .logo--dark {
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
  -webkit-transition: 0.25s all;
  -moz-transition: 0.25s all;
  transition: 0.25s all;
  height: 43px;
}

.header .logo--light {
  top: 0;
}

.header .logo--dark {
  bottom: 0;
}

.header .logo--dark img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.header .logo img,
.header .logo svg {
  width: 70px;
  height: 43px;
}

.header .left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 767px) {
  .header .left .logo {
    margin-left: auto;
  }
}

.header .left-mobile {
  padding-left: 10px;
  z-index: 2;
  display: none;
}

@media (max-width: 767px) {
  .header .left-mobile {
    display: block;
  }
}

.header .left-mobile a:not(:first-child) {
  display: none;
}

.header .left-mobile .button--blue {
  color: #7bf6fb;
}

.header .left-mobile .button--blue:hover {
  color: #1d245b;
}

.header .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 21px;
  z-index: 2;
  position: relative;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  visibility: hidden;
}

@media (max-width: 767px) {
  .header .right {
    display: none;
  }
}

.wf-active .header .right {
  visibility: visible;
}

.header #maskerV,
.header #maskerV2 {
  -webkit-transition: 0.7s all;
  -moz-transition: 0.7s all;
  transition: 0.7s all;
}

.header.dark .logo--dark {
  height: 0;
}

.header.light .logo--light {
  height: 0;
}

.toggle-menu {
  background-color: #7bf6fb;
  color: #2d60f6;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px 12px;
  width: 119px;
  height: 28px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  position: relative;
  text-transform: uppercase;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  -webkit-transition: 0.25s all;
  -moz-transition: 0.25s all;
  transition: 0.25s all;
  z-index: 2;
  position: relative;
}

.toggle-menu::after {
  content: "";
  width: 11px;
  height: 1px;
  background-color: #2d60f6;
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.25s all;
  -moz-transition: 0.25s all;
  transition: 0.25s all;
}

.toggle-menu::before {
  content: "";
  height: 11px;
  width: 1px;
  background-color: #2d60f6;
  position: absolute;
  right: 17px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.25s all;
  -moz-transition: 0.25s all;
  transition: 0.25s all;
}

.toggle-menu:hover,
.toggle-menu:focus,
.toggle-menu:active,
.toggle-menu.active {
  color: #fff;
  background-color: #2d60f6;
  cursor: pointer;
  outline: none;
}

.toggle-menu:hover::before,
.toggle-menu:hover::after,
.toggle-menu:focus::before,
.toggle-menu:focus::after,
.toggle-menu:active::before,
.toggle-menu:active::after,
.toggle-menu.active::before,
.toggle-menu.active::after {
  background-color: #fff;
}

.toggle-menu.active::before,
.toggle-menu.active::after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header-menu-wrapper {
  display: none;
  background: #000 url(../img/menubg.png) no-repeat center/cover;
}

.header-menu-wrapper.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
}

.header-menu-wrapper .header-menu-inside {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 650px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .header-menu-wrapper .menu-top {
    background-color: rgba(45, 96, 246, 0.15);
    padding: 120px 24px 40px 24px;
    width: 100%;
    height: 100%;
    min-height: inherit;
    position: relative;
    min-height: 350px;
  }
}

.header-menu-wrapper .menu-top ul {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: 0.25s all;
  -moz-transition: 0.25s all;
  transition: 0.25s all;
}

@media (max-width: 767px) {
  .header-menu-wrapper .menu-top ul.swipe {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@media (min-width: 768px) {
  .header-menu-wrapper .menu-top .header-menu {
    background-color: rgba(45, 96, 246, 0.15);
    position: absolute;
    top: 0;
    height: 100vh;
    min-height: 650px;
    width: 240px;
    left: 0;
    padding: 145px 0 30px 40px;
  }
}

.header-menu-wrapper .menu-top .header-menu li.item-before {
  display: none;
}

@media (max-width: 767px) {
  .header-menu-wrapper .menu-top .header-menu li.item-before {
    display: block;
    margin-left: -26px;
  }

  .header-menu-wrapper .menu-top .header-menu li.item-before a {
    font-weight: 600;
    font-size: 17px;
    line-height: 24px;
    font-family: termina, sans-serif;
    color: #7bf6fb;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .header-menu-wrapper .menu-top .header-menu li.item-before a::before {
    content: "";
    width: 16px;
    height: 14px;
    background: url(../img/back.svg) no-repeat center;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    left: 0;
    margin-right: 10px;
  }
}

@media (min-width: 768px) {
  .header-menu-wrapper .menu-top .header-menu li:hover > a,
  .header-menu-wrapper .menu-top .header-menu li:active > a,
  .header-menu-wrapper .menu-top .header-menu li:focus > a,
  .header-menu-wrapper .menu-top .header-menu li.active > a {
    color: #7bf6fb;
    padding-left: 15px;
    outline: none;
  }

  .header-menu-wrapper .menu-top .header-menu li:hover > a::before,
  .header-menu-wrapper .menu-top .header-menu li:active > a::before,
  .header-menu-wrapper .menu-top .header-menu li:focus > a::before,
  .header-menu-wrapper .menu-top .header-menu li.active > a::before {
    left: 0;
  }
}

.header-menu-wrapper .menu-top .header-menu li.first-lvl > a {
  font-family: termina, sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  margin: 4px 0 16px;
}

@media (max-width: 1024px) {
  .header-menu-wrapper .menu-top .header-menu li.first-lvl > a {
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
  }
}

@media (max-width: 767px) {
  .header-menu-wrapper .menu-top .header-menu li.first-lvl > a {
    font-size: 16px;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    margin: 4px 0 25px;
  }
}

.header-menu-wrapper .menu-top .header-menu a {
  color: #fff;
  text-decoration: none;
  display: block;
  position: relative;
  -webkit-transition: 0.25s all;
  -moz-transition: 0.25s all;
  transition: 0.25s all;
  padding-left: 0;
  overflow: hidden;
  line-height: 20px;
}

.header-menu-wrapper .menu-top .header-menu a::before {
  content: "";
  background: url(../img/arrow.svg) no-repeat center;
  width: 8px;
  height: 8px;
  position: absolute;
  left: -8px;
  top: -2px;
  bottom: 0;
  margin: auto;
}

.header-menu-wrapper .menu-top .header-menu a.view-all {
  padding-left: 15px;
  color: #7bf6fb;
}

.header-menu-wrapper .menu-top .header-menu a.view-all:hover {
  color: #fff;
}

.header-menu-wrapper .menu-top .header-menu a.view-all:hover::before {
  background-image: url(../img/arrow-white.svg);
}

.header-menu-wrapper .menu-top .header-menu a.view-all::before {
  left: 0;
}

.header-menu-wrapper .menu-top .header-menu a:hover,
.header-menu-wrapper .menu-top .header-menu a:active,
.header-menu-wrapper .menu-top .header-menu a:focus {
  outline: none;
}

.header-menu-wrapper .menu-top .header-menu .submenu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 90%;
  padding: 145px 0 30px 40px;
  font-size: 14px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  z-index: 2;
}

@media (max-width: 767px) {
  .header-menu-wrapper .menu-top .header-menu .submenu {
    padding: 0 0 40px 26px !important;
  }
}

.header-menu-wrapper .menu-top .header-menu .submenu.active {
  visibility: visible;
  opacity: 1;
  left: 100%;
}

@media (max-width: 767px) {
  .header-menu-wrapper .menu-top .header-menu .submenu.active {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .header-menu-wrapper .menu-top .header-menu .submenu li.space {
    margin-bottom: 23px;
  }
}

.header-menu-wrapper .menu-top .header-menu .submenu a {
  margin: 3px 0 12px;
}

@media (max-width: 767px) {
  .header-menu-wrapper .menu-top .header-menu .submenu a {
    margin-bottom: 20px;
  }
}

.header-menu-wrapper .menu-top .header-menu .submenu-1 {
  background-color: #000c18;
  width: 240px;
}

@media (max-width: 1024px) {
  .header-menu-wrapper .menu-top .header-menu .submenu-1 {
    width: 208px;
    padding: 145px 24px 24px 24px;
  }
}

@media (max-width: 767px) {
  .header-menu-wrapper .menu-top .header-menu .submenu-1 {
    background: none;
    width: 100%;
  }
}

.header-menu-wrapper .menu-top .header-menu .submenu-2 {
  width: 350px;
  z-index: 1;
}

@media (max-width: 1024px) {
  .header-menu-wrapper .menu-top .header-menu .submenu-2 {
    max-width: 100%;
    padding: 145px 32px 32px 24px;
  }
}

.header-menu-wrapper
  .menu-top
  .header-menu
  .submenu-2
  li:not(.item-before)
  a:not(.view-all)::before {
  display: none;
}

.header-menu-wrapper
  .menu-top
  .header-menu
  .submenu-2
  li:not(.item-before)
  a:not(.view-all):hover {
  padding-left: 0;
}

.header-menu-wrapper .inside {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60%;
  background: no-repeat center/cover;
  z-index: -1;
}

@media (max-width: 1024px) {
  .header-menu-wrapper .inside {
    display: none;
  }
}

.header-menu-wrapper .inside__firsttext {
  position: absolute;
  right: 40px;
  bottom: 40px;
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  line-height: 20px;
  text-transform: uppercase;
  font-family: termina, sans-serif;
  text-align: right;
}

.header-menu-wrapper .inside__firsttext strong {
  font-weight: 900;
  font-size: 24px;
  line-height: 20px;
  display: block;
  margin-top: 9px;
}

.header-menu-wrapper .inside__firsttext.hidden {
  display: none;
}

.header-menu-wrapper .inside__menutext {
  position: absolute;
  right: 40px;
  bottom: 40px;
  color: #fff;
  text-align: left;
  max-width: 480px;
}

.header-menu-wrapper .inside__menutext.hidden {
  display: none;
}

.header-menu-wrapper .inside__title {
  font-weight: 900;
  font-size: 20px;
  line-height: 24px;
  color: #7bf6fb;
  font-family: termina, sans-serif;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.header-menu-wrapper .inside__text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 2px;
}

.header-menu-wrapper .inside__mobiletext {
  display: none;
}

@media (max-width: 1024px) {
  .header-menu-wrapper .inside__mobiletext {
    font-size: 24px;
    line-height: 20px;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    font-family: termina, sans-serif;
    text-align: right;
    color: #fff;
  }

  .header-menu-wrapper .inside__mobiletext strong {
    margin-top: 4px;
    font-weight: 900;
    display: block;
  }
}

@media (max-width: 767px) {
  .header-menu-wrapper .inside__mobiletext {
    font-size: 12px;
    line-height: 12px;
    width: 210px;
    max-width: -webkit-calc(100% - 45px);
    max-width: -moz-calc(100% - 45px);
    max-width: calc(100% - 45px);
  }

  .header-menu-wrapper .inside__mobiletext strong {
    display: inline;
  }
}

.header-menu-wrapper .menu-bottom {
  position: absolute;
  bottom: 32px;
  left: 40px;
  right: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media (max-width: 767px) {
  .header-menu-wrapper .menu-bottom {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 24px 40px;
    position: relative;
  }

  .header-menu-wrapper .menu-bottom .menu-header-menu-small-container {
    display: none;
  }
}

.header-menu-wrapper .menu-bottom.toggle {
  padding-top: 60px;
}

@media (max-width: 767px) {
  .header-menu-wrapper .menu-bottom.toggle {
    padding-top: 34px;
  }
}

.header-menu-wrapper .menu-bottom.toggle .menu-header-menu-small-container {
  display: block;
  margin-top: 34px;
}

.header-menu-wrapper .menu-bottom.toggle .menu-bottom__toggle {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  background-color: #2d60f6;
  background-image: url(../img/arrow2.svg);
}

.header-menu-wrapper .menu-bottom li {
  display: block;
}

.header-menu-wrapper .menu-bottom a {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 9px;
  display: block;
}

.header-menu-wrapper .menu-bottom a[href="#"] {
  color: #979797;
  margin: 16px 0 15px;
}

.header-menu-wrapper .menu-bottom a[href="#"]:hover {
  cursor: inherit;
}

.header-menu-wrapper .menu-bottom a:not([href="#"]):hover {
  color: #7bf6fb;
}

.header-menu-wrapper .menu-bottom__toggle {
  display: none;
}

@media (max-width: 767px) {
  .header-menu-wrapper .menu-bottom__toggle {
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: #fff url(../img/sliderarrow.svg) no-repeat center/16px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

.header-menu-wrapper .menu-buttons-mobile {
  display: none;
}

@media (max-width: 767px) {
  .header-menu-wrapper .menu-buttons-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 24px;
    left: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .header-menu-wrapper .menu-buttons-mobile a {
    margin-top: 16px;
  }
}

.cookie_popup {
  background-color: #2d60f6;
  bottom: 27px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  font-family: aktiv-grotesk, sans-serif;
  position: fixed;
  right: 27px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0.3s ease-out, opacity 0.3s ease-out;
  -moz-transition: visibility 0.3s ease-out, opacity 0.3s ease-out;
  transition: visibility 0.3s ease-out, opacity 0.3s ease-out;
}

@media (max-width: 767px) {
  .cookie_popup {
    left: 0;
    right: initial;
    margin: 0 27px;
    width: -webkit-calc(100% - 54px);
    width: -moz-calc(100% - 54px);
    width: calc(100% - 54px);
    max-width: 100%;
  }
}

.cookie_popup.active {
  opacity: 1;
  visibility: visible;
}

.cookie_popup .cp_close {
  width: 11px;
  height: 11px;
  position: absolute;
  top: 20px;
  right: 25px;
  cursor: pointer;
}

.cookie_popup .cp_close::before,
.cookie_popup .cp_close::after {
  content: "";
  position: absolute;
  background-color: #fff;
  height: 1px;
  width: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  left: -4px;
  top: 4px;
}

.cookie_popup .cp_close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.cookie_popup .cp_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 19px 35px 28px 32px;
  max-width: 396px;
  width: 100%;
  height: 100%;
  min-height: 179px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .cookie_popup .cp_wrap {
    padding: 19px 32px 28px 32px;
  }
}

.cookie_popup .cp_wrap .cp_top .cp_title {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: left;
  margin-bottom: 14px;
}

.cookie_popup .cp_wrap .cp_top .cp_content {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 14px;
}

.cookie_popup .cp_wrap .cp_top .cp_content a {
  color: #fff;
  margin-bottom: 14px;
}

.cookie_popup .cp_wrap .cp_bottom .cp_btn {
  left: 0px;
  top: 0px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 8px 12px;
  background-color: #fff;
  color: #2d60f6;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.08em;
  text-align: left;
  text-decoration: none;
  height: 92px;
  font-family: aktiv-grotesk, sans-serif;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.cookie_popup .cp_wrap .cp_bottom .cp_link {
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  margin-left: 21px;
}

@media (max-width: 1199px) {
  .solutions-template-accelerated_migrations .subhero1__left {
    height: 595px;
  }
}

@media (max-width: 767px) {
  .solutions-template-accelerated_migrations .subhero1__left {
    height: 662px;
  }
}

.subhero h1 {
  text-align: right;
}

.subhero1 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: no-repeat center/cover;
  min-height: 100vh;
  color: #fff;
}

@media (max-width: 1199px) {
  .subhero1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: auto;
  }
}

.subhero1__left {
  width: 100%;
}

@media (max-width: 1199px) {
  .subhero1__left {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 53.3vh;
    min-height: 414px;
  }
}

@media (max-width: 767px) {
  .subhero1__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 498px;
  }
}

@media (max-width: 1199px) {
  .subhero1__left--am {
    position: absolute;
  }
}

.subhero1__image {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  padding: 40px;
  height: 100%;
}

@media (max-width: 767px) {
  .subhero1__image {
    padding: 24px;
    background-position: center !important;
  }
}

.subhero1__image--desktop {
  display: block;
}

@media (max-width: 1199px) {
  .subhero1__image--desktop {
    display: none;
  }
}

@media (max-width: 767px) {
  .subhero1__image--desktop {
    display: none;
  }
}

.subhero1__image--tablet {
  display: none;
}

@media (max-width: 1199px) {
  .subhero1__image--tablet {
    display: block;
    background-position: left center;
    background-size: auto 100%;
  }
}

@media (max-width: 767px) {
  .subhero1__image--tablet {
    display: none;
  }
}

.subhero1__image--mobile {
  display: none;
}

@media (max-width: 1199px) {
  .subhero1__image--mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .subhero1__image--mobile {
    display: block;
  }
}

.subhero1__right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 50%;
  width: 720px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 720px;
  -moz-box-flex: 0;
  -ms-flex: 0 0 720px;
  flex: 0 0 720px;
  padding: 126px 40px 40px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.subhero1__right.black {
  color: #000;
}

.subhero1__right.white {
  color: #fff;
}

@media (max-width: 1199px) {
  .subhero1__right {
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding-top: 28px;
    padding-bottom: 26px;
    max-width: inherit;
  }
}

@media (max-width: 767px) {
  .subhero1__right {
    padding-top: 0;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.subhero1__right--am {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-top: 32px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  right: 0;
  height: 100vh;
  top: 0;
}

@media (max-width: 1199px) {
  .subhero1__right--am {
    position: relative;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    min-height: 595px;
  }

  .subhero1__right--am::after {
    position: absolute;
    width: 100%;
    height: 180px;
    content: "";
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#000000),
      to(rgba(0, 0, 0, 0))
    );
    background: -webkit-linear-gradient(top, #000000 0%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(top, #000000 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    z-index: 1;
    left: 0;
    top: initial;
    bottom: 0;
  }

  .subhero1__right--am .subhero1__image {
    background-position: top;
  }

  .subhero1__right--am .subhero1__image {
    background-size: 100%;
    height: 595px;
  }

  .subhero1__right--am .subhero1__left {
    min-height: 595px;
  }

  .subhero1__right--am .subhero1 {
    height: 595px;
  }
}

@media (max-width: 767px) {
  .subhero1__right--am {
    min-height: 662px;
    position: relative;
  }

  .subhero1__right--am::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#000000),
      to(rgba(0, 0, 0, 0))
    );
    background: -webkit-linear-gradient(top, #000000 0%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(top, #000000 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    z-index: 1;
    left: 0;
    top: 0;
  }

  .subhero1__right--am .subhero1__image {
    background-position: top;
  }

  .subhero1__right--am .subhero1__image {
    background-size: 100%;
    height: 662px;
  }

  .subhero1__right--am .subhero1__left {
    min-height: 662px;
  }

  .subhero1__right--am .subhero1 {
    height: 662px;
  }
}

.subhero1__top {
  max-width: 100%;
  margin-left: auto;
  text-align: right;
}

.subhero1__top img {
  max-width: 100%;
  margin-bottom: 20px;
}

.subhero1__titletablet {
  display: none;
}

@media (max-width: 1199px) {
  .subhero1__titletablet {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px 24px;
  }

  .subhero1__titletablet h1 span {
    width: 100%;
    display: block;
  }
}

@media (max-width: 767px) {
  .subhero1__titletablet {
    padding-bottom: 12px;
  }

  .subhero1__titletablet h1 {
    max-width: -webkit-calc(100% - 80px);
    max-width: -moz-calc(100% - 80px);
    max-width: calc(100% - 80px);
  }
}

.subhero1__titletablet h1 {
  text-align: right;
}

.subhero1__titletablet img {
  max-width: 100%;
}

@media (max-width: 1199px) {
  .subhero1__top {
    display: none;
  }
}

.subhero1__top h1 {
  text-align: right;
}

.subhero1__text {
  padding-top: 12px;
}

.subhero1__text p {
  margin-bottom: 14px;
}

.subhero1__anchors {
  padding-top: 15px;
  margin-top: 20px;
  border-top: 1px solid #7bf6fb;
}

.subhero1__anchors .swiper-slide {
  width: auto;
}

.subhero1__labels {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 8px;
}

.subhero1__labels--mobile {
  display: none;
}

@media (max-width: 1199px) {
  .subhero1__labels--mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 1199px) {
  .subhero1__labels--desktop {
    display: none;
  }
}

@media (max-width: 1199px) {
  .subhero1__bottom {
    margin-top: 34px;
  }
}

.subhero1__logo {
  line-height: 0;
  text-align: right;
}

@media (max-width: 1199px) {
  .subhero1__logo {
    text-align: left;
    display: none;
  }
}

.subhero1__logo img {
  max-width: 100%;
  max-height: 100%;
}

.subhero1__logo_mobile {
  display: none;
}

@media (max-width: 1199px) {
  .subhero1__logo_mobile {
    display: block;
    margin-right: auto;
    max-width: 50%;
    padding-right: 10px;
  }
}

.subhero1__logo_mobile img {
  display: block;
}

.subhero1__am_title {
  font-family: Termina;
  font-size: 54px;
  font-weight: 800;
  line-height: 64px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: right;
}

@media (max-width: 1199px) {
  .subhero1__am_title {
    font-family: Termina;
    font-size: 42px;
    font-weight: 800;
    line-height: 56px;
    letter-spacing: 0.04em;
    max-width: 481px;
    margin-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .subhero1__am_title {
    font-size: 34px;
    line-height: 40px;
    max-width: 316px;
    margin-bottom: 96px;
  }
}

.subhero1__am_title strong {
  color: #7bf6fb;
  font-weight: 800;
}

.subhero1__am_wrap {
  z-index: 2;
}

@media (max-width: 1199px) {
  .subhero1__am_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

.subhero1__am_desc {
  font-family: Termina;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: right;
}

@media (max-width: 1199px) {
  .subhero1__am_desc {
    max-width: 640px;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 767px) {
  .subhero1__am_desc {
    max-width: 316px;
    font-size: 14px;
    line-height: 20px;
  }
}

.subhero1__am_logos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 51px;
}

@media (max-width: 767px) {
  .subhero1__am_logos {
    margin-bottom: 138px;
  }
}

.subhero1__am_logos img {
  margin-left: 34px;
}

@media (max-width: 767px) {
  .subhero1__am_logos img {
    max-height: 31px;
  }
}

.subhero1__am_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.subhero2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: no-repeat center/cover;
  min-height: -webkit-calc(100vh + 88px);
  min-height: -moz-calc(100vh + 88px);
  min-height: calc(100vh + 88px);
  color: #fff;
  padding-top: 96px;
  position: relative;
  padding-bottom: 40px;
}

@media (max-width: 1199px) {
  .subhero2 {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .subhero2 {
    padding-top: 172px;
    padding-bottom: 58px;
  }
}

.subhero2 .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100%;
}

@media (max-width: 1199px) {
  .subhero2 .container {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.subhero2__top {
  height: 31vh;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: right;
}

@media (max-width: 1199px) {
  .subhero2__top {
    height: 21.5vh;
  }
}

@media (max-width: 767px) {
  .subhero2__top {
    height: auto;
    padding-bottom: 88px;
  }
}

.subhero2__bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 66.7vh;
  z-index: 2;
}

@media (max-width: 1199px) {
  .subhero2__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
  }
}

.subhero2__left {
  background: no-repeat center/cover;
  height: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 800px;
  -moz-box-flex: 0;
  -ms-flex: 0 0 800px;
  flex: 0 0 800px;
  max-width: 60%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1199px) {
  .subhero2__left.image_only {
    padding-bottom: 61.4%;
  }
}

@media (max-width: 1199px) {
  .subhero2__left {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    max-width: inherit;
    height: 0;
  }
}

.subhero2__left video {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  z-index: 1;
}

.subhero2__left svg {
  z-index: 2;
  position: absolute;
  top: -webkit-calc(50% - 32px);
  top: -moz-calc(50% - 32px);
  top: calc(50% - 32px);
  right: -webkit-calc(50% - 32px);
  right: -moz-calc(50% - 32px);
  right: calc(50% - 32px);
  cursor: pointer;
}

.subhero2__left .svg_file {
  opacity: 0;
  visibility: hidden;
}

.subhero2__left .svg_file.active {
  opacity: 1;
  visibility: visible;
}

.subhero2__left .header_video {
  position: relative;
  min-width: 100%;
}

.subhero2__left .header_video.ready svg {
  opacity: 1;
  visibility: visible;
}

.subhero2__left .header_video.active img,
.subhero2__left .header_video.active svg {
  opacity: 0;
  visibility: hidden;
}

.subhero2__left .header_video img {
  position: absolute;
  z-index: 7;
  max-width: 800px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
  -webkit-transition: visibility 0.6s ease-out 1s, opacity 0.6s ease-out 1s;
  -moz-transition: visibility 0.6s ease-out 1s, opacity 0.6s ease-out 1s;
  transition: visibility 0.6s ease-out 1s, opacity 0.6s ease-out 1s;
  object-fit: cover;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
}

.subhero2__left .header_video svg {
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0.3s ease-out, opacity 0.3s ease-out;
  -moz-transition: visibility 0.3s ease-out, opacity 0.3s ease-out;
  transition: visibility 0.3s ease-out, opacity 0.3s ease-out;
}

.subhero2__left .header_video .video_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-top: 56.25%;
  position: relative;
}

.subhero2__left .header_video .video_img {
  -moz-border-radius: 28px;
  border-radius: 28px;
}

.subhero2__left .header_video .video_wrap {
  width: 100%;
  height: 100%;
}

.subhero2__left .header_video .video_wrap iframe {
  width: 100%;
  height: 100%;
}

.subhero2__left .header_video .video_wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  top: 0;
}

.subhero2__text {
  padding-top: 16px;
}

.subhero2__text p {
  margin-bottom: 14px;
}

@media (max-width: 1199px) {
  .subhero2__text {
    width: 77%;
  }
}

@media (max-width: 767px) {
  .subhero2__text {
    width: 100%;
  }
}

.subhero2__right {
  padding-left: 40px;
  padding-top: 12px;
}

.subhero2__right.black {
  color: #000;
}

.subhero2__right.white {
  color: #fff;
}

@media (max-width: 1199px) {
  .subhero2__right {
    padding-left: 0;
    padding-top: 40px;
  }
}

.subhero2__subtitle {
  margin-top: 12px;
}

.subhero2::after {
  content: "";
  width: 100%;
  height: 88px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #060f1e;
  display: none;
}

@media (max-width: 1199px) {
  .subhero2::after {
    height: 33%;
  }
}

@media (max-width: 767px) {
  .subhero2::after {
    background-color: rgba(0, 0, 0, 0);
  }
}

.subhero2__anchors {
  padding-top: 15px;
  margin-top: 20px;
  border-top: 1px solid #7bf6fb;
}

.subhero2__anchors .swiper-wrapper {
  margin-top: 2px;
}

.subhero2__anchors .swiper-slide {
  width: auto;
}

.subhero3 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 310px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .subhero3 {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100vh;
  }
}

.subhero3__subtitle {
  margin-top: 16px;
}

.subhero3__right {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  padding: 81px 40px 40px;
  text-align: right;
}

@media (max-width: 767px) {
  .subhero3__right {
    padding-top: 40px;
  }
}

.subhero3__right.black {
  color: #fff;
}

.subhero3__right.white {
  color: #000;
}

@media (max-width: 767px) {
  .subhero3__right {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

.subhero3__left {
  background: no-repeat right bottom/cover;
  height: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

@media (max-width: 1199px) {
  .subhero3__left {
    background: no-repeat center/cover;
  }
}

@media (max-width: 767px) {
  .subhero3__left {
    background: no-repeat center/cover;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    height: 62vh;
  }
}

.subhero--white {
  color: #060f1e;
}

.subhero--white .subhero1__anchors {
  border-color: #2d60f6;
}

.subhero--white .button--anchor {
  border-color: #2d60f6;
  color: #2d60f6;
}

.footer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #000;
  padding: 42px 40px 28px;
  min-height: 520px;
}

@media (max-width: 767px) {
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.footer__top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 64px;
  }
}

.footer__menus {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 1199px) {
  .footer__menus {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 56%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 56%;
    flex: 0 0 56%;
  }
}

@media (max-width: 767px) {
  .footer__menus {
    margin-bottom: 26px;
  }
}

.footer__menu {
  width: 192px;
}

@media (max-width: 1199px) {
  .footer__menu {
    width: 50%;
    margin-bottom: 32px;
  }
}

.footer__menu__title {
  font-family: termina, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer__menu .menu {
  font-size: 14px;
  line-height: 20px;
  margin: 6px 0;
}

.footer__menu .menu li {
  margin-bottom: 12px;
}

.footer__menu .menu a {
  color: #888;
  text-decoration: none;
}

.footer__menu .menu a:hover {
  color: #7bf6fb;
}

.footer__right {
  text-align: right;
}

.footer__right__text1 {
  font-size: 12px;
  line-height: 14px;
  color: #7bf6fb;
}

.footer__right__text2 {
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  margin: 8px 0 20px;
  max-width: 400px;
  margin-left: auto;
}

.footer__bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 180px;
  }
}

@media (max-width: 767px) {
  .footer__bottom {
    margin-top: 0;
  }
}

.footer__regs {
  font-size: 12px;
  line-height: 16px;
}

.footer__regs .menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 400px) {
  .footer__regs .menu {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 400px) {
  .footer__regs li {
    margin-right: 24px;
  }
}

.footer__regs a {
  color: #888;
  text-decoration: none;
}

.footer__regs a:hover {
  color: #7bf6fb;
}

.footer__copyrights {
  font-size: 12px;
  line-height: 16px;
  color: #888;
}

@media (max-width: 767px) {
  .footer__copyrights {
    margin-top: 16px;
  }
}

.footer__copyrights__text {
  font-family: termina, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 16px;
  display: inline-block;
}

@media (max-width: 1199px) {
  .footer__copyrights__text {
    margin: 16px;
  }
}

@media (max-width: 767px) {
  .footer__copyrights__text {
    display: block;
    margin: 16px 0;
  }
}

@media (min-width: 767px) {
  .footer__copyrights p {
    display: inline-block;
  }
}

.footer__copyrights a {
  text-decoration: none;
  color: #fff;
}

@media (max-width: 1199px) {
  .footer__copyrights a {
    display: inline-block;
  }
}

.footer__copyrights img {
  vertical-align: middle;
  margin-left: 6px;
}

.footer--am {
  padding: 42px 40px 43px 40px;
}

.footer--am .footer__right__text1 {
  line-height: 15px;
}

.footer--am .footer__right__text2 {
  line-height: 15px;
  color: #f6f6f6;
}

.footer--am .footer__regs .button--main {
  font-weight: 500;
}

.footer--am .footer__copyrights__text {
  color: #f6f6f6;
}

@media (max-width: 1199px) {
  .footer--am {
    padding: 40px 40px 70px 41px;
  }

  .footer--am .footer__copyrights a {
    color: #888;
  }

  .footer--am .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer--am .footer__right {
    text-align: left;
  }

  .footer--am .footer__right__text2 {
    margin-left: 0px;
    max-width: 312px;
    margin: 14px 0 20px;
  }

  .footer--am .footer__menus {
    margin-bottom: 0;
  }

  .footer--am .footer__copyrights__text {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .footer--am {
    padding: 40px 24px 51px 24px;
  }

  .footer--am .footer__right__text2 {
    margin: 8px 0 20px;
  }

  .footer--am .footer__regs a {
    line-height: 20px;
  }
}

.footer__am_title {
  font-family: termina, sans-serif;
  margin-bottom: 16px;
  color: #fff;
  text-transform: uppercase;
  font-family: termina, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.75px;
}

.footer__am_copy {
  color: #888;
  max-width: 693px;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 16px;
}

@media (max-width: 1199px) {
  .footer__am_copy {
    margin-bottom: 103px;
  }
}

@media (max-width: 767px) {
  .footer__am_copy {
    margin-bottom: 64px;
  }
}

.footer__am_copy ul li {
  margin-bottom: 1em;
}

.post__header.post__header--new {
  height: auto;
  padding: 0;
}

.post__header-bg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.post__header-bg img {
  width: 100%;
}

.wysiwyg img {
  max-width: 100%;
  height: auto;
}

.wysiwyg img.aligncenter {
  display: block;
  margin: 0 auto;
}

.wysiwyg img.alignright {
  display: block;
  margin-left: auto;
}

div.newspage__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 27px;
}

@media (max-width: 1199px) {
  div.newspage__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 14px;
  }
}

@media (max-width: 767px) {
  div.newspage__content {
    display: block;
  }
}

div.newspage__content .article__title {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}

@media (min-width: 768px) {
  div.newspage__content .article {
    height: auto;
  }
}

div.newspage__content .article:last-of-type {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

div.newspage__content .newspage__pagination {
  grid-column-start: 1;
  grid-column-end: 4;
}

@media (max-width: 1199px) {
  div.newspage__content .newspage__pagination {
    grid-column-end: 3;
  }
}

.new-navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100vw;
  padding: 24px 130px;
  -webkit-transition: 0.25s background-color;
  -moz-transition: 0.25s background-color;
  transition: 0.25s background-color;
}

@media (max-width: 1199px) {
  .new-navigation {
    padding: 20px 40px;
  }
}

@media (max-width: 767px) {
  .new-navigation {
    padding: 18px 16px;
  }
}

.header.light .new-navigation {
  background-color: #091b43;
}

.header.dark .new-navigation {
  background-color: #fff;
}

.header .new-navigation .logo {
  height: 40px;
  margin: 0;
  top: 0;
}

.header .new-navigation .logo img {
  max-width: 100%;
  width: auto;
  height: 40px;
}

@media (max-width: 1199px) {
  .header .new-navigation .logo img {
    width: 40px;
  }
}

.new-navigation .button--new-nav {
  font-family: termina, sans-serif;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0;
  padding: 6px 12px;
  color: #fff;
  background-color: #2d60f6;
  -moz-border-radius: 0;
  border-radius: 0;
  visibility: visible;
}

.header.light .new-navigation .logo--light,
.header.dark .new-navigation .logo--dark {
  height: 40px;
}

.header.light .new-navigation .logo--dark,
.header.dark .new-navigation .logo--light {
  height: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}

em {
  font-style: italic;
}

footer,
header,
nav,
section,
main {
  display: block;
}

body {
  font-family: aktiv-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: left;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  -moz-border-radius: 0;
  border-radius: 0;
}

a {
  color: #2d60f6;
}

.clients__blue a,
.subscription-form a,
.testimonial-slider__slide a {
  /* color: inherit; */
}

h1 {
  font-family: termina, sans-serif;
  font-size: 38px;
  font-style: normal;
  font-weight: 800;
  line-height: 44px;
  letter-spacing: 0.04em;
  text-align: left;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  h1 {
    font-size: 22px;
    line-height: 32px;
  }
}

h2 {
  font-family: termina, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

h2 strong {
  font-weight: 900;
}

h3 {
  font-family: termina, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  h3 {
    font-size: 16px;
    font-weight: 600;
  }
}

h4 {
  font-family: termina, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  h4 {
    font-size: 12px;
    line-height: 16px;
  }
}

h4 strong {
  font-weight: 900;
}

h5 {
  font-family: termina, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 767px) {
  .container {
    padding: 0 24px;
  }
}

.container--full {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 767px) {
  .container--full {
    padding: 0 24px;
  }
}

.container--max {
  max-width: 100%;
  margin: 0 auto;
}

.button--main {
  font-family: aktiv-grotesk, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  color: #7bf6fb;
  background-color: #1d245b;
  padding: 4px 12px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  transition: 200ms;
  display: inline-block;
  text-decoration: none;
}

.button--main:hover {
  color: #fff;
  background-color: #2d60f6;
}

.button--blue {
  font-family: aktiv-grotesk, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  color: #fff;
  background-color: #2d60f6;
  padding: 4px 12px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  transition: 200ms;
  display: inline-block;
  text-decoration: none;
}

.button--blue:hover {
  color: #2d60f6;
  background-color: #fff;
}

.button--white {
  font-family: aktiv-grotesk, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  color: #2d60f6;
  background-color: #fff;
  padding: 4px 12px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  transition: 200ms;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.button--white:hover {
  color: #2d60f6;
  background-color: #fff;
}

.button--anchor {
  font-family: aktiv-grotesk, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  color: #7bf6fb;
  background-color: rgba(0, 0, 0, 0);
  padding: 3px 15px;
  border: 1px solid #7bf6fb;
  -moz-border-radius: 12px;
  border-radius: 12px;
  display: inline-block;
  text-decoration: none;
}

.button--more {
  font-family: termina, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  color: #fff;
  background-color: #1d245b;
  padding: 7px 15px;
  border: 1px solid #7bf6fb;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  transition: 200ms;
  display: inline-block;
  text-decoration: none;
}

.button--more:hover {
  color: #1d245b;
  background-color: #7bf6fb;
}

.button--black {
  font-family: aktiv-grotesk, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  background-color: #000;
  padding: 8px 16px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  transition: 200ms;
  display: inline-block;
  text-decoration: none;
}

.button--black:hover {
  color: #fff;
  background-color: #2d60f6;
}

.button--pink {
  font-family: aktiv-grotesk, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  color: #fff;
  background-color: #e300bb;
  padding: 16px 28px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-size: 16px;
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  transition: 200ms;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
}

.button--pink:hover {
  color: #2d60f6;
  background-color: #fff;
}

.tabs__tab {
  display: none;
}

.tabs__tab.active {
  display: block;
}

.tabs__wrapper {
  padding-top: 24px;
  margin-top: 0;
}

@media (max-width: 1199px) {
  .tabs__wrapper {
    padding-top: 15px;
  }
}

.tabs__wrapper.dark {
  border-top: 1px solid #2d60f6;
}

.tabs__wrapper.dark li {
  color: #2d60f6;
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  transition: 200ms;
}

.tabs__wrapper.dark li:before {
  background-color: #2d60f6;
}

.tabs__wrapper.dark li:hover,
.tabs__wrapper.dark li:focus,
.tabs__wrapper.dark li.active {
  color: #f6f6f6;
}

.tabs__wrapper.dark li:hover:before,
.tabs__wrapper.dark li:focus:before,
.tabs__wrapper.dark li.active:before {
  background-color: #f6f6f6;
}

.tabs__wrapper.light {
  border-top: 1px solid #2d60f6;
}

.tabs__wrapper.light li {
  color: #c7c7c7;
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  transition: 200ms;
}

.tabs__wrapper.light li:before {
  background-color: #c7c7c7;
}

.tabs__wrapper.light li:hover,
.tabs__wrapper.light li:focus,
.tabs__wrapper.light li.active {
  color: #2d60f6;
}

.tabs__wrapper.light li:hover:before,
.tabs__wrapper.light li:focus:before,
.tabs__wrapper.light li.active:before {
  background-color: #2d60f6;
}

.tabs__menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}

@media (max-width: 767px) {
  .tabs__menu {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.tabs__menu li {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.08em;
  position: relative;
  padding-left: 20px;
  margin-right: 24px;
  text-transform: uppercase;
  padding-bottom: 8px;
}

@media (max-width: 767px) {
  .tabs__menu li {
    width: auto;
    white-space: nowrap;
    margin-right: 0;
  }
}

.tabs__menu li:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 8px;
  height: 8px;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.tabs__menu li a {
  text-decoration: none;
  color: inherit;
}

.label--category {
  font-family: termina, sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 12px;
  color: #fff;
  text-transform: uppercase;
  padding: 6px 8px 2px 8px;
  background-color: #fff;
  color: #2d60f6;
}

.label--category:hover {
  color: #2d60f6;
  background-color: #fff;
}

.label--date {
  font-family: termina, sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 12px;
  color: #fff;
  text-transform: uppercase;
  background-color: #000;
  padding: 6px 8px 2px 8px;
}

.label--header {
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 20px;
  color: #2d60f6;
  text-transform: uppercase;
  background-color: #fff;
  padding: 4px 16px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-right: 12px;
  margin-top: 12px;
}

b,
strong {
  font-weight: 700;
}

i {
  font-style: italic;
}

.titledesc {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .titledesc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.titledesc__desc {
  margin-bottom: 32px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 48.824%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 48.824%;
  flex: 0 0 48.824%;
}

@media (max-width: 1199px) {
  .titledesc__desc {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 47.578%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 47.578%;
    flex: 0 0 47.578%;
  }
}

@media (max-width: 767px) {
  .titledesc__desc {
    margin-bottom: 24px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.titledesc__title {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 48.824%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 48.824%;
  flex: 0 0 48.824%;
}

@media (max-width: 1199px) {
  .titledesc__title {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 47.578%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 47.578%;
    flex: 0 0 47.578%;
  }
}

@media (max-width: 767px) {
  .titledesc__title {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-bottom: 24px;
  }
}

.article {
  position: relative;
  padding: 0;
  z-index: 1;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 32%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
  margin-bottom: 32px;
  text-decoration: none;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.article__img {
  height: 302px;
  background: no-repeat center/cover;
  width: 100%;
}

.article:focus {
  outline: none;
}

@media (max-width: 1199px) {
  .article {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 49%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 49%;
    flex: 0 0 49%;
    height: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .article:last-of-type {
    display: none;
  }
}

@media (max-width: 767px) {
  .article {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-bottom: 32px;
    height: 206px;
  }
}

.article.shadow:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #060f1e;
  background: -moz-linear-gradient(
    0deg,
    rgba(6, 15, 30, 0) 0%,
    rgba(6, 15, 30, 0.8) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(6, 15, 30, 0) 0%,
    rgba(6, 15, 30, 0.8) 100%
  );
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(6, 15, 30, 0)),
    to(rgba(6, 15, 30, 0.8))
  );
  background: -webkit-linear-gradient(
    bottom,
    rgba(6, 15, 30, 0) 0%,
    rgba(6, 15, 30, 0.8) 100%
  );
  background: -moz-linear-gradient(
    bottom,
    rgba(6, 15, 30, 0) 0%,
    rgba(6, 15, 30, 0.8) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(6, 15, 30, 0) 0%,
    rgba(6, 15, 30, 0.8) 100%
  );
  z-index: -1;
}

.article .button--more {
  position: absolute;
  bottom: 16px;
  right: 16px;
}

@media (max-width: 1199px) {
  .article .button--more {
    display: none;
  }
}

.article__labels {
  margin-bottom: 0;
  padding-left: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #2d60f6;
}

.article__title {
  color: #fff;
  font-size: 16px;
  line-height: 27px;
  text-decoration: none;
  background-color: #2d60f6;
  padding: 16px 24px 7px 24px;
}

.article__title:hover {
  color: #7bf6fb;
}

.article__quote {
  color: #fff;
  margin-top: 16px;
}

.post__header {
  background: no-repeat center/cover;
  height: 505px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 40px;
  position: relative;
}

@media (max-width: 767px) {
  .post__header {
    height: 100vh;
    padding: 0 24px;
    max-height: 505px;
  }
}

.post__header.shadow {
  position: relative;
  z-index: 1;
}

.post__header.shadow:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #060f1e;
  background: -moz-linear-gradient(0deg, #060f1e 0%, rgba(6, 15, 30, 0) 100%);
  background: -webkit-linear-gradient(
    0deg,
    #060f1e 0%,
    rgba(6, 15, 30, 0) 100%
  );
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#060f1e),
    to(rgba(6, 15, 30, 0))
  );
  background: -webkit-linear-gradient(
    bottom,
    #060f1e 0%,
    rgba(6, 15, 30, 0) 100%
  );
  background: -moz-linear-gradient(bottom, #060f1e 0%, rgba(6, 15, 30, 0) 100%);
  background: linear-gradient(0deg, #060f1e 0%, rgba(6, 15, 30, 0) 100%);
  z-index: -1;
}

.post .post__share {
  position: absolute;
  right: 40px;
  bottom: 0;
  width: 127px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #2d60f6;
  -moz-border-radius: 8px 8px 0px 0px;
  border-radius: 8px 8px 0px 0px;
  text-decoration: none;
}

.post .post__share span {
  padding-right: 12px;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.8px;
  color: #2d60f6;
  text-transform: uppercase;
  color: #fff;
}

.post .post__share svg {
  height: 16px;
  width: 16px;
}

.post .post__share svg path {
  fill: #fff;
}

@media (max-width: 1199px) {
  .post .post__share {
    width: 122px;
  }
}

@media (max-width: 767px) {
  .post .post__share {
    right: 24px;
    width: 48px;
  }

  .post .post__share span {
    display: none;
  }
}

.post .post__share:hover {
  background-color: #fff;
}

.post .post__share:hover span {
  color: #2d60f6;
}

.post .post__share:hover svg path {
  fill: #2d60f6;
}

.post__info {
  width: 100%;
  background-color: #2d60f6;
  padding: 0 40px 28px;
}

.post__info .article__labels {
  margin-bottom: 0;
}

.post__info .label--category {
  background-color: #fff;
  color: #2d60f6;
}

@media (max-width: 767px) {
  .post__info {
    padding: 0 24px 22px;
  }
}

.post__author {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 31px 0 16px;
}

.post__author img {
  width: 48px;
  height: 48px;
  margin-right: 22px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.post__author span {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.08em;
  font-weight: 400;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .post__author {
    padding: 42px 0 28px;
  }
}

.post__container {
  padding: 120px 40px 80px;
  max-width: 960px;
  margin: 0 auto;
  color: #060f1e;
}

@media (max-width: 767px) {
  .post__container {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 72px;
  }
}

.post__container blockquote {
  font-family: termina, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #2d60f6;
  border: 1px solid #2d60f6;
  padding: 20px;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.post__container blockquote p {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .post__container blockquote {
    margin-bottom: 49px;
  }
}

.post__container p {
  margin-bottom: 12px;
}

.post__container p:last-of-type {
  margin-bottom: 0;
}

.post__container h2,
.post__container h3,
.post__container h4,
.post__container h5 {
  margin-top: 35px;
  margin-bottom: 32px;
  font-weight: 900;
}

.post__container img {
  margin-top: 16px;
  margin-bottom: 0;
  max-width: 100%;
  height: auto;
}

.post__container .wp-caption {
  margin: 0 auto 54px;
  max-width: 100%;
}

.post__container .wp-caption-text {
  font-size: 12px;
  line-height: 2;
  color: #2d60f6;
}

.post__container .embed-video {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  width: 100%;
  margin-bottom: 10px;
  margin-top: 50px;
}

.post__container .embed-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post__container .embed-video + wp-caption-text {
  margin-bottom: 42px;
}

.post__container ul {
  list-style: disc;
  color: #2d60f6;
  padding-left: 30px;
  margin-bottom: 16px;
}

.post__container ol {
  list-style: decimal;
  color: #2d60f6;
  padding-left: 30px;
  margin-bottom: 16px;
}

.post .post__share-box {
  width: 142px;
  height: 44px;
  background-color: #2d60f6;
  -moz-border-radius: 8px 8px 0px 0px;
  border-radius: 8px 8px 0px 0px;
  line-height: 44px;
  color: #fff;
  position: absolute;
  right: 40px;
  bottom: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 16px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}

@media (max-width: 767px) {
  .post .post__share-box {
    width: 52px;
  }
}

.post .post__share-box:hover {
  background-color: #1e235b;
  cursor: pointer;
}

.post .post__share-box svg,
.post .post__share-box img {
  width: 20px;
  margin-left: 12px;
}

@media (max-width: 767px) {
  .post .post__share-box svg,
  .post .post__share-box img {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .post .post__share-box span {
    display: none;
  }
}

.author__box {
  background-color: #2d60f6;
  color: #fff;
  padding: 64px 24px 104px;
  position: relative;
  margin-bottom: 130px;
}

@media (max-width: 767px) {
  .author__box {
    margin-bottom: 178px;
  }
}

.author__text {
  max-width: 1110px;
  margin: 20px auto 0;
  text-align: center;
}

.author h4 {
  text-align: center;
}

.author__author {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -54px;
  text-align: center;
}

.author__image img {
  width: 96px;
  height: 96px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin: 16px auto 0;
}

.author__name {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.08em;
  font-weight: 400;
  text-transform: uppercase;
}

section ul {
  list-style: disc;
  padding-left: 30px;
}

section ol {
  list-style: decimal;
  padding-left: 30px;
}

.newspage {
  padding-top: 82px;
  padding-bottom: 120px;
  background-color: #060f1e;
  color: #fff;
}

@media (max-width: 767px) {
  .newspage {
    padding-bottom: 70px;
  }
}

.newspage--engineers {
  background-color: #f6f6f6;
  color: #060f1e;
}

.newspage--engineers .titledesc__desc {
  text-align: right;
}

@media (max-width: 767px) {
  .newspage--engineers .titledesc__desc {
    text-align: left;
  }
}

.newspage .titledesc {
  margin-bottom: 10px;
}

.newspage .titledesc__desc {
  margin-bottom: 12px;
}

.newspage__bigpost {
  margin: 38px 0 80px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .newspage__bigpost {
    margin-bottom: 120px;
  }
}

@media (max-width: 767px) {
  .newspage__bigpost {
    margin-bottom: 10px;
  }
}

.newspage__bigpost .article {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 49%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 49%;
  flex: 0 0 49%;
  height: 372px;
}

@media (max-width: 1199px) {
  .newspage__bigpost .article {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-bottom: 40px;
  }

  .newspage__bigpost .article:last-of-type {
    display: block;
  }
}

.newspage__wrapper {
  padding-top: 15px;
  margin-top: 0;
  border-top: 1px solid #2d60f6;
  margin-bottom: 72px;
}

.newspage__menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}

@media (max-width: 767px) {
  .newspage__menu {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.newspage__menu li {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.08em;
  position: relative;
  padding-left: 20px;
  margin-right: 24px;
  text-transform: uppercase;
  color: #2d60f6;
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  transition: 200ms;
}

@media (max-width: 767px) {
  .newspage__menu li {
    width: auto;
    white-space: nowrap;
  }
}

.newspage__menu li:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 8px;
  height: 8px;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #2d60f6;
}

.newspage__menu li:hover,
.newspage__menu li:focus,
.newspage__menu li.active {
  color: #fff;
}

.newspage__menu li:hover:before,
.newspage__menu li:focus:before,
.newspage__menu li.active:before {
  background-color: #fff;
}

.newspage__menu li a {
  text-decoration: none;
  color: inherit;
}

.newspage__content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.newspage__content::after {
  content: "";
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 32%;
  -moz-box-flex: 0;
  -ms-flex: 0 1 32%;
  flex: 0 1 32%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media (max-width: 1199px) {
  .newspage__content::after {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 49%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 49%;
    flex: 0 0 49%;
  }
}

@media (max-width: 767px) {
  .newspage__content::after {
    display: none;
  }
}

.newspage__content .article {
  margin-bottom: 32px;
}

@media (max-width: 1199px) {
  .newspage__content .article:last-of-type {
    display: block;
  }
}

.newspage__pagination {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  padding-top: 48px;
}

.newspage__pagination a,
.newspage__pagination span {
  display: block;
  width: 49px;
  height: 38px;
  font-family: termina, sans-serif;
  text-decoration: none;
  font-size: 12px;
  line-height: 38px;
  font-weight: 700;
  margin: 0 8.5px;
  text-align: center;
  background-color: #1d245b;
  color: #fff;
  border: none;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.newspage__pagination a.prev,
.newspage__pagination span.prev {
  background-image: url("../img/sliderarrow.svg");
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
}

.newspage__pagination a.prev:hover,
.newspage__pagination span.prev:hover {
  background-image: url("../img/arrow2.svg");
  background-color: #000;
}

.newspage__pagination a.next,
.newspage__pagination span.next {
  background-image: url("../img/sliderarrow.svg");
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.newspage__pagination a.next:hover,
.newspage__pagination span.next:hover {
  background-image: url("../img/arrow2.svg");
  background-color: #000;
}

.newspage__pagination a.disabled,
.newspage__pagination span.disabled {
  display: none;
}

.newspage__pagination a.dots,
.newspage__pagination span.dots {
  width: 12px;
  background-color: rgba(0, 0, 0, 0);
}

.newspage__pagination a.dots:hover,
.newspage__pagination span.dots:hover {
  background-color: rgba(0, 0, 0, 0);
}

.newspage__pagination a.current,
.newspage__pagination span.current {
  background-color: #000;
  color: #fff;
}

.newspage__pagination a:hover,
.newspage__pagination a:focus,
.newspage__pagination span:hover,
.newspage__pagination span:focus {
  background-color: #000;
  color: #fff;
}

.newspage__pagination span.prev {
  display: none;
}

.newspage__pagination span.next {
  display: none;
}

.notfound {
  background: no-repeat center/cover;
  padding-top: 200px;
  padding-bottom: 101px;
}

@media (max-width: 767px) {
  .notfound {
    padding-top: 208px;
    padding-bottom: 173px;
  }
}

.notfound__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.notfound__content h3 {
  font-family: termina, sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 900;
  line-height: 68px;
  letter-spacing: 0px;
  text-align: left;
  text-align: center;
}

@media (max-width: 767px) {
  .notfound__content h3 {
    font-size: 70px;
  }
}

.notfound__content h4 {
  font-family: termina, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 68px;
  letter-spacing: 0px;
  text-align: left;
  text-align: center;
}

@media (max-width: 767px) {
  .notfound__content h4 {
    font-size: 38px;
    line-height: 60px;
  }
}

.notfound__text {
  max-width: 601px;
  margin-bottom: 56px;
}

@media (max-width: 767px) {
  .notfound__text {
    max-width: 339px;
    margin-bottom: 38px;
  }
}

.notfound__heading-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 56px;
}

@media (max-width: 767px) {
  .notfound__heading-group {
    margin-bottom: 38px;
  }
}

.notfound__button {
  font-weight: 600;
  background-color: #e0e0e0;
}

.notfound--background-color {
  background-color: #2d60f6;
}

.texttext {
  padding: 80px 0;
}

.texttext.dark {
  background-color: #060f1e;
  color: #fff;
}

.texttext__content h1,
.texttext__content h2,
.texttext__content h3,
.texttext__content h4 {
  padding-top: 60px;
  padding-bottom: 20px;
}

.lab3 {
  color: #7bf6fb !important;
}

.heropost {
  text-decoration: none;
}

.heropost .article__quote {
  margin-top: 3px;
  margin-bottom: 18px;
}

.heropost .subhero1__image {
  padding-bottom: 28px;
  position: relative;
  z-index: 2;
}

.heropost .subhero1__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(0, 0, 0, 0.7)),
      to(rgba(0, 0, 0, 0.7))
    )
    no-repeat center/cover;
  background: -webkit-linear-gradient(
      bottom,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)
    )
    no-repeat center/cover;
  background: -moz-linear-gradient(
      bottom,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)
    )
    no-repeat center/cover;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7))
    no-repeat center/cover;
  z-index: -1;
}

.heropost__text .article__title {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: termina, sans-serif;
}

.newspage--engineers {
  padding-top: 57px;
  padding-bottom: 0;
}

.newspage--engineers .article__title {
  text-transform: uppercase;
  font-family: termina, sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.newspage--engineers .article__quote {
  margin-top: 0;
  background-color: #2d60f6;
  padding: 0 24px 7px 24px;
}

@media (min-width: 1200px) {
  .newspage--engineers .newspage__bigpost {
    margin: 38px 0 50px;
  }
}

@media (min-width: 1200px) {
  .newspage--engineers .newspage__wrapper {
    margin-bottom: 63px;
  }
}

.newspage--engineers .newspage__menu li:hover a,
.newspage--engineers .newspage__menu li.active a {
  color: #060f1e;
}

.newspage--engineers .newspage__menu li:hover::before,
.newspage--engineers .newspage__menu li.active::before {
  background-color: #060f1e;
}

.newspage__topics {
  background-color: #f6f6f6;
  color: #060f1e;
  padding-top: 81px;
  padding-bottom: 80px;
}

.newspage__topics .titledesc__desc {
  text-align: right;
}

@media (max-width: 767px) {
  .newspage__topics .titledesc__desc {
    text-align: left;
  }
}

.topics {
  border-top: 1px solid #2d60f6;
  padding-top: 11px;
}

.topics__term {
  background: #e0e0e0;
  display: inline-block;
  color: #2d60f6;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  height: 28px;
  min-width: 106px;
  width: auto;
  text-align: center;
  line-height: 28px;
  margin-right: 5px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  font-weight: 600;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}

.topics__term:hover {
  cursor: pointer;
  color: #7bf6fb;
  background-color: #1d245b;
}

@media (max-width: 767px) {
  .topics__term {
    margin-right: 10px;
  }
}

.post__share-popup {
  position: fixed;
  z-index: 9;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: #2d60f6;
  width: 435px;
  height: 172px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  color: #fff;
  padding: 20px;
}

@media (max-width: 767px) {
  .post__share-popup {
    width: 382px;
    max-width: 95%;
    height: 218px;
  }
}

.post__share-popup.active {
  display: block;
}

.post__share-popup .shares {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .post__share-popup .shares {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.post__share-popup a {
  padding: 8px 12px;
  color: #fff;
  background: #1e235b;
  font-size: 14px;
  line-height: 22px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-border-radius: 4px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.3px;
}

@media (max-width: 767px) {
  .post__share-popup a {
    width: -webkit-calc(50% - 4px);
    width: -moz-calc(50% - 4px);
    width: calc(50% - 4px);
    margin-right: 0 !important;
    margin-bottom: 8px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.post__share-popup a:not(:last-of-type) {
  margin-right: 8px;
}

.post__share-popup a svg,
.post__share-popup a img {
  margin-right: 8px;
}

.post__share-popup .share-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
}

.post__share-popup .share-close:hover {
  cursor: pointer;
}

.post__share-popup .share-title {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: termina, sans-serif;
}

.post__share-popup .share-input {
  margin-top: 8px;
  position: relative;
}

.post__share-popup .share-input input {
  height: 43px;
  border: none;
  -moz-border-radius: 4px;
  border-radius: 4px;
  width: 100%;
  background: #f6f6f6;
  padding: 0 8px;
  font-size: 16px;
}

@media (max-width: 767px) {
  .post__share-popup .share-input input {
    padding-right: 40px;
  }
}

.post__share-popup .share-copy {
  position: absolute;
  width: 20px;
  display: block;
  right: 9px;
  height: 20px;
  top: 11px;
}

.post__share-popup .share-copy:hover {
  cursor: pointer;
}

.postbox {
  margin-bottom: 80px;
}

.postbox__box {
  background-color: #f6f6f6;
  padding: 20px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .postbox__box {
    padding: 20px 12px 10px;
  }
}

.postbox__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

@media (max-width: 767px) {
  .postbox__top {
    display: block;
  }
}

.postbox__metatitle {
  color: #888;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.08em;
}

@media (max-width: 767px) {
  .postbox__metatitle {
    margin-bottom: 16px;
  }
}

.postbox__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.postbox__tags a {
  font-weight: 800;
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
  color: #2d60f6;
  text-decoration: none;
  padding: 4px 8px;
  background: #fff;
  font-family: termina, sans-serif;
  margin-left: 12px;
}

@media (max-width: 767px) {
  .postbox__tags a:first-of-type {
    margin-left: 0;
  }
}

.postbox__bottom {
  padding-top: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -8px;
}

@media (max-width: 767px) {
  .postbox__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin: 0;
  }
}

.postbox .reaction-button {
  padding: 0 12px;
  background: #fff;
  border: none;
  -moz-border-radius: 40px;
  border-radius: 40px;
  height: 36px;
  color: #060f1e;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: aktiv-grotesk, sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .postbox .reaction-button {
    margin-bottom: 12px;
  }
}

.postbox .reaction-button span {
  font-size: 24px;
  margin-right: 4px;
}

.postbox .reaction-button:not(:last-of-type) {
  margin-right: 10px;
}

.postbox .reaction-button:hover {
  cursor: pointer;
}

.postbox .reaction-counter {
  padding: 0 12px;
  background: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  -moz-border-radius: 24px;
  border-radius: 24px;
  color: #060f1e;
  height: 36px;
  margin-left: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .postbox .reaction-counter {
    margin-left: 0;
    margin-right: 12px;
    margin-bottom: 12px;
  }
}

.postbox .reaction-counter span {
  font-size: 28px;
  margin-right: 13px;
}

.postbox__reactions-get {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.postbox__reactions-add {
  display: none;
  position: absolute;
  bottom: -115px;
  left: -12px;
  background: #f6f6f6;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 16px;
  z-index: 9;
}

@media (max-width: 767px) {
  .postbox__reactions-add {
    position: relative;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    bottom: 0;
    left: 0;
    padding: 16px 0 0;
  }
}

.postbox__reactions-add.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.postbox__reactions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media (max-width: 767px) {
  .postbox__reactions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    width: 100%;
  }
}

.postbox__reactions-button {
  height: 36px;
  display: inline-block;
  padding: 0 12px;
  background: #2d60f6;
  color: #fff;
  line-height: 36px;
  color: #7bf6fb;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  -moz-border-radius: 80px;
  border-radius: 80px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}

@media (max-width: 767px) {
  .postbox__reactions-button {
    margin-top: 0;
    text-align: center;
  }
}

.postbox__reactions-button.active,
.postbox__reactions-button:hover {
  background: #7bf6fb;
  color: #060f1e;
}

.postbox__share {
  width: 142px;
  height: 43px;
  background-color: #2d60f6;
  -moz-border-radius: 8px;
  border-radius: 8px;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 16px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  position: relative;
}

@media (max-width: 767px) {
  .postbox__share {
    width: 100%;
    margin-bottom: 16px;
  }
}

.postbox__share:hover {
  background-color: #1e235b;
  cursor: pointer;
}

.postbox__share svg,
.postbox__share img {
  width: 20px;
  margin-left: 12px;
}

@media (max-width: 767px) {
  .home .hero__logos > * {
    width: 50%;
    padding: 0 10px;
  }

  .home .hero__logos a img {
    width: 100%;
  }

  .header-menu-wrapper .menu-bottom__toggle {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .home .hero__logos {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .home .hero__text {
    margin-bottom: -2vh;
  }
}

.grecaptcha-badge {
  z-index: 999;
}

.webinar {
  margin-bottom: 95px;
}

@media (max-width: 767px) {
  .webinar {
    margin-bottom: 72px;
  }
}

.webinar .post__info {
  color: #fff;
}
