.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

@media only screen and (min-width: 1500px) {
  .container--fluid {
    max-width: 100%;
    padding: 0 70px;
  }
}
@media only screen and (max-width: 1299px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media only screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media only screen and (max-width: 575px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-Regular.woff2") format("woff2"), url("./fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-Medium.woff2") format("woff2"), url(".fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-SemiBold.woff2") format("woff2"), url("./fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-Bold.woff2") format("woff2"), url("./fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-ExtraBold.woff2") format("woff2"), url("./fonts/Inter-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --blue: #3395FF;
  --grey: #EFF2F6;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  min-width: 320px;
  line-height: 1.4;
  color: #000;
  font-weight: 400;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  background-color: #fff;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

input:required, textarea:required {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
input:invalid, textarea:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}
input:focus, textarea:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: #000;
}
a:focus, a:hover {
  outline: none;
  text-decoration: none;
}

button:active, button:focus {
  outline: none;
}

button::-moz-focus-inner {
  border: 0;
}

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

input, select, button {
  outline: none;
}

input,
textarea {
  -webkit-appearance: none;
}

input:disabled {
  opacity: 1;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]:hover,
input[type=number]:focus {
  -moz-appearance: number-input;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal,
input[type=tel]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

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

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.slick-slide {
  outline: none;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.hidden {
  display: none;
}

svg {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.wrap {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 78px;
}

.h1 {
  margin: 0;
  font-weight: 500;
  font-size: 55px;
  line-height: normal;
}

.h2 {
  margin: 0;
  font-weight: 600;
  font-size: 40px;
  text-transform: capitalize;
}

.h3 {
  margin: 0;
  font-weight: 600;
  font-size: 32px;
  text-transform: capitalize;
}

.h4 {
  margin: 0;
  font-weight: 600;
  font-size: 22px;
}

.format-text-p p {
  margin: 20px 0;
}
.format-text-p p:nth-child(1) {
  margin-top: 0;
}
.format-text-p p:last-child {
  margin-bottom: 0;
}
.format-text-p b, .format-text-p strong {
  font-weight: 700;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  border: none;
  text-align: center;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 60px;
  color: #fff;
  background-color: var(--blue);
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-transform: capitalize;
}
.btn:active {
  background-color: #156ECF;
}
.btn--outline {
  border: 1px solid var(--blue);
  background-color: transparent;
  color: var(--blue);
  padding: 19px 59px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn--outline:active {
  background-color: #156ECF;
  color: #fff;
  border-color: #156ECF;
}

@media (hover) {
  .btn:hover {
    background-color: #156ECF;
  }
  .btn--outline:hover {
    background-color: #156ECF;
    color: #fff;
    border-color: #156ECF;
  }
}
.section {
  padding: 100px 0;
  overflow: hidden;
}
.section--bg {
  background-color: var(--grey);
}
.section--dark-bg {
  background-color: #F2F4F6;
}
.section-title {
  text-align: center;
}
.section-uptitle {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  color: var(--blue);
  margin-bottom: 10px;
  line-height: normal;
}
.section-subtitle {
  font-size: 20px;
  text-align: center;
  color: #333741;
  line-height: normal;
  margin-top: 30px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.section-block {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section-content {
  width: 100%;
}
.section-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 80px;
  width: 650px;
}

.social {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.social__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0f0d2b), to(#151242));
  background-image: linear-gradient(180deg, #0f0d2b 0%, #151242 100%);
}
.social__link svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.social__link + .social__link {
  margin-left: 22px;
}
.social__link:active svg path {
  fill: var(--blue);
}

@media (hover) {
  .social__link:hover svg path {
    fill: var(--blue);
  }
}
.swiper-pagination-horizontal.swiper-pagination-bullets {
  margin-top: 40px;
  position: relative;
  top: 0;
  bottom: 0;
  z-index: 3;
  line-height: 1;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7.5px;
  width: 12px;
  height: 12px;
  background: #DEE1E5;
  border: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  border-radius: 2px;
  opacity: 1;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: var(--blue);
}

.wow {
  visibility: hidden;
}

@media (hover) {
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:hover {
    background-color: var(--blue);
  }
}
.list {
  margin: 0;
  padding: 0;
}
.list li {
  padding-left: 27px;
  position: relative;
}
.list li + li {
  margin-top: 10px;
}
.list li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 2px;
  background-image: url("./img/check-li-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 16px;
  height: 16px;
}

@media only screen and (max-width: 1199px) {
  body.noscroll {
    overflow: hidden;
  }
  .section-uptitle {
    font-size: 14px;
  }
  .section-subtitle {
    font-size: 18px;
  }
  .section-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section-image {
    width: auto;
    margin-left: 0;
    margin-top: 40px;
  }
  .h1 {
    font-size: 42px;
  }
  .h2 {
    font-size: 32px;
  }
  .h3 {
    font-size: 26px;
  }
  .h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  body {
    font-size: 14px;
  }
  .main {
    margin-top: 60px;
  }
  .section {
    padding: 80px 0;
  }
  .section-uptitle {
    font-size: 12px;
  }
  .section-subtitle {
    font-size: 16px;
    margin-top: 20px;
  }
  .h1 {
    font-size: 30px;
  }
  .h2 {
    font-size: 24px;
  }
  .h3 {
    font-size: 20px;
  }
  .h4 {
    font-size: 16px;
  }
}
.slideInLeftOpacity {
  -webkit-animation-name: slideInLeftOpacity;
          animation-name: slideInLeftOpacity;
}

@-webkit-keyframes slideInLeftOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInLeftOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slideInRightOpacity {
  -webkit-animation-name: slideInRightOpacity;
          animation-name: slideInRightOpacity;
}

@-webkit-keyframes slideInRightOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInRightOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slideInUpOpacity {
  -webkit-animation-name: slideInUpOpacity;
          animation-name: slideInUpOpacity;
}

@-webkit-keyframes slideInUpOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInUpOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.slideInDownOpacity {
  -webkit-animation-name: slideInDownOpacity;
          animation-name: slideInDownOpacity;
}

@-webkit-keyframes slideInDownOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInDownOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInOpacity {
  -webkit-animation-name: fadeInOpacity;
          animation-name: fadeInOpacity;
}

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

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomInImage {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomInImage {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
}

@-webkit-keyframes rotateImage {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes rotateImage {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.rotateImage {
  -webkit-animation-name: rotateImage;
          animation-name: rotateImage;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

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

@keyframes fadeInScaleOpacity {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.fadeInScaleOpacity {
  -webkit-animation-name: fadeInScaleOpacity;
          animation-name: fadeInScaleOpacity;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

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

@keyframes fadeInScaleCircles {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.fadeInScaleCircles {
  -webkit-animation-name: fadeInScaleCircles;
          animation-name: fadeInScaleCircles;
}

.logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.logo img {
  width: 100%;
}

.header {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  background-color: #fff;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.header.fixed {
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
}
.header-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 78px;
}
.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 116px;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.menu__item {
  position: relative;
}
.menu__item + .menu__item {
  margin-left: 60px;
}
.menu__item.current_page_item .menu__link {
  color: var(--blue);
}
.menu__item.current_page_item .menu__link svg path {
  stroke: var(--blue);
}
.menu__item:hover .sub-menu {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.menu__link {
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
  margin-top: 10px;
  text-transform: capitalize;
}
.menu__link:active, .menu__link.highlight {
  color: var(--blue);
}
.menu__link:active svg path, .menu__link.highlight svg path {
  stroke: var(--blue);
}
.menu__link svg {
  margin-left: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.menu__link svg path {
  -webkit-transition: stroke 0.3s;
  transition: stroke 0.3s;
}

@media (hover) {
  .menu__link:hover {
    color: var(--blue);
  }
  .menu__link:hover svg path {
    stroke: var(--blue);
  }
}
.sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 20px;
  background-color: var(--blue);
  border-radius: 20px;
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sub-menu__item + .sub-menu__item {
  margin-top: 20px;
}
.sub-menu__item.current_page_item .sub-menu__link {
  color: #022F60;
}
.sub-menu__link {
  color: #fff;
  white-space: nowrap;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 14px;
  line-height: normal;
  font-weight: 600;
}
.sub-menu__link:active {
  color: #022F60;
}

@media (hover) {
  .sub-menu__link:hover {
    color: #022F60;
  }
}
.hamburger {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  padding: 0;
  height: 36px;
  background-color: transparent;
  z-index: 12;
}
.hamburger .hamburger-box {
  width: 36px;
  height: 24px;
}
.hamburger .hamburger-inner,
.hamburger .hamburger-inner::after,
.hamburger .hamburger-inner::before {
  background-color: #081830;
  height: 3px;
  width: 36px;
  border-radius: 0;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger .hamburger-inner::before {
  top: 10px;
}

@media only screen and (max-width: 1299px) {
  .menu__item + .menu__item {
    margin-left: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .header.opened .menu {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .header.opened .menu__list {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .header__logo {
    z-index: 2;
  }
  .header__hamburger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 30px;
  }
  .menu {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    height: 100dvh;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    padding-top: 100px;
  }
  .menu .container {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 50px;
    margin-top: auto;
    margin-bottom: auto;
  }
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    margin-top: 20px;
  }
  .menu__item {
    margin-right: 0;
    width: auto;
  }
  .menu__item + .menu__item {
    margin-left: 0;
    margin-top: 40px;
  }
  .menu__item:hover .sub-menu {
    margin-top: 20px;
  }
  .menu__link {
    padding-bottom: 0;
    font-size: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .menu__link svg {
    width: 20px;
    height: 20px;
    top: 2px;
    position: relative;
  }
  .sub-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    position: relative;
    top: auto;
    left: auto;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: center;
    margin-top: 20px;
    background-color: transparent;
  }
  .sub-menu.opened {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sub-menu__link {
    font-size: 16px;
    color: #000;
    white-space: normal;
    font-weight: 500;
  }
  .sub-menu__link:active {
    color: var(--blue);
  }
  .sub-menu__item.current_page_item .sub-menu__link {
    color: var(--blue);
  }
}
@media only screen and (max-width: 1199px) and (hover) {
  .sub-menu__link:hover {
    color: var(--blue);
  }
}
@media only screen and (max-width: 575px) {
  .header {
    height: 60px;
  }
  .header-block {
    height: 60px;
  }
  .menu {
    padding-top: 60px;
  }
}
*::-webkit-input-placeholder {
  opacity: 0.5;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
*::-moz-placeholder {
  opacity: 0.5;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
*:-ms-input-placeholder {
  opacity: 0.5;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
*::-ms-input-placeholder {
  opacity: 0.5;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
*::placeholder {
  opacity: 0.5;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.form input[type=text],
.form input[type=password],
.form input[type=url],
.form input[type=email],
.form input[type=number],
.form input[type=tel],
.form textarea {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  height: 44px;
  padding: 0 15px;
  text-align: left;
  border: 1px solid #d0d5dd;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #000;
}
.form input[type=text]:focus::-webkit-input-placeholder, .form input[type=password]:focus::-webkit-input-placeholder, .form input[type=url]:focus::-webkit-input-placeholder, .form input[type=email]:focus::-webkit-input-placeholder, .form input[type=number]:focus::-webkit-input-placeholder, .form textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::-moz-placeholder, .form input[type=password]:focus::-moz-placeholder, .form input[type=url]:focus::-moz-placeholder, .form input[type=email]:focus::-moz-placeholder, .form input[type=number]:focus::-moz-placeholder, .form textarea:focus::-moz-placeholder {
  opacity: 0;
}
.form input[type=text]:focus:-ms-input-placeholder, .form input[type=password]:focus:-ms-input-placeholder, .form input[type=url]:focus:-ms-input-placeholder, .form input[type=email]:focus:-ms-input-placeholder, .form input[type=number]:focus:-ms-input-placeholder, .form textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::-ms-input-placeholder, .form input[type=password]:focus::-ms-input-placeholder, .form input[type=url]:focus::-ms-input-placeholder, .form input[type=email]:focus::-ms-input-placeholder, .form input[type=number]:focus::-ms-input-placeholder, .form textarea:focus::-ms-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::placeholder,
.form input[type=password]:focus::placeholder,
.form input[type=url]:focus::placeholder,
.form input[type=email]:focus::placeholder,
.form input[type=number]:focus::placeholder,
.form textarea:focus::placeholder {
  opacity: 0;
}
.form textarea {
  resize: none;
  height: 150px;
  padding-top: 15px;
}
.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 0 44px #fff;
  -webkit-text-fill-color: #000;
}
.form-label {
  font-weight: 500;
  margin-bottom: 5px;
}
.form .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 25px;
}
.form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form .form-row .input-group {
  width: calc(50% - 10px);
}

.iti {
  width: 100%;
}
.iti__flag-container {
  padding: 0;
}
.iti .iti__selected-flag {
  outline: none;
  font-weight: 400;
  font-size: 16px;
  border-radius: 5px 0 0 5px;
  color: #000;
}
.iti__divider {
  padding-bottom: 10px;
  margin-bottom: 5px;
  border-color: #28292F;
}
.iti__arrow {
  border-top: 4px solid #000;
}
.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #000;
}
.iti__country-list {
  max-height: 250px;
  z-index: 11;
  margin: 0;
  margin-top: 10px;
  border: 1px solid #d0d5dd;
  white-space: normal;
  font-size: 16px;
  font-weight: 400;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.iti__country-list li {
  color: #000;
}
.iti-mobile .iti--container {
  z-index: 100000;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.iti-mobile .iti__country-list {
  margin: 0;
  border-radius: 0;
  width: calc(100% - 20px);
}

.wpcf7-list-item-label {
  display: inline-block;
  cursor: pointer;
  padding-left: 30px;
  text-align: left;
  line-height: normal;
  position: relative;
}
.wpcf7-list-item-label:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 2px;
  height: 20px;
  width: 20px;
  top: calc(50% - 10px);
  left: 0px;
  border: 1px solid #d0d5dd;
  background-color: #fff;
}
.wpcf7-list-item-label:after {
  display: block;
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  top: calc(50% - 10px);
  left: 0px;
  background-image: url("./img/check-icon.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wpcf7-list-item input[type=checkbox] {
  display: none;
}
.wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  visibility: visible;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 16px;
}
.wpcf7-acceptance .wpcf7-list-item-label a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: var(--blue);
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.wpcf7-acceptance .wpcf7-list-item-label a:active {
  text-decoration: none;
  text-decoration-color: transparent;
}

@media (hover) {
  .wpcf7-acceptance .wpcf7-list-item-label a:hover {
    text-decoration: none;
    text-decoration-color: transparent;
  }
}
.fancybox-bg {
  background-color: #022F60;
}

.fancybox-is-open .fancybox-bg {
  background-color: #022F60;
  opacity: 0.75;
}

/* Custom animation */
.fancybox-fx-slide-in-down.fancybox-slide--previous {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.fancybox-fx-slide-in-down.fancybox-slide--next {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.fancybox-fx-slide-in-down.fancybox-slide--current {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fancybox-fx-slide-in-up.fancybox-slide--previous {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.fancybox-fx-slide-in-up.fancybox-slide--next {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.fancybox-fx-slide-in-up.fancybox-slide--current {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fancybox-fx-slide-in-right.fancybox-slide--previous {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.fancybox-fx-slide-in-right.fancybox-slide--next {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.fancybox-fx-slide-in-right.fancybox-slide--current {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.popup {
  border: none;
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.06);
          box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.06);
  padding: 60px;
  width: 100%;
  max-width: 800px;
  background-color: var(--grey);
  position: relative;
  display: none;
  margin: 20px auto;
}
.popup-subtitle {
  margin-top: 15px;
}
.popup .fancybox-close-small {
  display: none;
}
.popup-close {
  padding: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: transparent;
  top: 15px;
  right: 15px;
  position: absolute;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.popup-close svg {
  width: 20px;
  height: 20px;
}
.popup-close svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.popup-close:hover svg path {
  fill: #156ECF;
}
.popup .form {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.popup .form__btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}

.thanks {
  text-align: center;
  max-width: 500px;
}
.thanks-image {
  width: 200px;
  margin-bottom: 30px;
}
.thanks-text {
  font-size: 16px;
  margin-top: 20px;
}

@media only screen and (max-width: 991px) {
  .popup {
    max-width: calc(100% - 40px);
  }
  .thanks {
    max-width: 500px;
  }
}
@media only screen and (max-width: 767px) {
  .popup .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .popup .form-row .input-group {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 14px;
  }
  .popup {
    padding: 50px 30px 40px;
    border-radius: 15px;
  }
  .popup .form {
    margin-top: 40px;
  }
  .popup .form__btn {
    width: 100%;
  }
  .thanks {
    max-width: calc(100% - 40px);
    padding-top: 70px;
  }
  .thanks-text {
    font-size: 14px;
  }
}
.hero {
  position: relative;
  padding: 80px 0;
  min-height: 600px;
  height: calc(100vh - 78px);
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  pointer-events: none;
}
.hero-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
}
.hero-title {
  text-transform: capitalize;
}
.hero-subtitle {
  margin-top: 40px;
  font-weight: 500;
  font-size: 20px;
  color: #333741;
  text-transform: capitalize;
}
.hero-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.hero-btns .btn + .btn {
  margin-left: 20px;
}

@media only screen and (min-width: 2000px) {
  .hero {
    padding: 10vw 0;
    min-height: 1300px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero {
    min-height: auto;
    height: auto;
    padding-bottom: 300px;
  }
  .hero-bg {
    background-size: cover;
  }
  .hero-block {
    max-width: 700px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .hero {
    padding-top: 60px;
    padding-bottom: 300px;
  }
  .hero-bg {
    background-position: bottom left calc(50% - 10px);
  }
  .hero-subtitle {
    font-size: 16px;
    margin-top: 30px;
  }
  .hero-btns {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero-btns .btn + .btn {
    margin-top: 10px;
    margin-left: 0;
  }
}
.about {
  position: relative;
  overflow: visible;
}
.about-arrow {
  position: absolute;
  width: 16px;
  height: 123px;
  background-image: url("./img/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
  bottom: -50px;
  left: calc(50% - 8px);
  pointer-events: none;
}
.about-circles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./img/circles.svg");
  background-repeat: no-repeat;
  background-position: top -390px center;
  z-index: -1;
  pointer-events: none;
}
.about-pretext {
  text-align: center;
  font-size: 20px;
  color: #333741;
  line-height: normal;
  margin-top: 60px;
  max-width: 755px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}
.about-pretext strong {
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  color: #000;
}
.about-pretext p {
  margin: 15px 0;
}
.about-text {
  margin-top: 100px;
  text-align: center;
  color: #333741;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 830px;
}

@media only screen and (max-width: 1199px) {
  .about-circles {
    background-position: top -300px center;
    background-size: 800px;
  }
  .about-pretext {
    font-size: 18px;
    margin-top: 60px;
  }
  .about-pretext strong {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .about-arrow {
    height: 100px;
  }
  .about-circles {
    background-position: top -250px center;
    background-size: 650px;
  }
  .about-pretext {
    font-size: 16px;
    margin-top: 50px;
  }
  .about-pretext strong {
    font-size: 18px;
  }
  .about-text {
    margin-top: 80px;
  }
}
.about-advantages {
  padding: 60px 50px;
  border-radius: 20px;
  background-color: var(--grey);
  margin: 100px 0;
}
.about-advantages-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -50px;
  margin-top: 60px;
}

.about-advantage {
  width: calc(25% - 20px);
  margin: 0 10px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 0 40px;
}
.about-advantage__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about-advantage__title {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
}
.about-advantage__text {
  margin-top: 20px;
  font-size: 14px;
  color: #8590ac;
}

@media only screen and (max-width: 1199px) {
  .about-advantage {
    padding: 0 20px;
  }
  .about-advantage__title {
    font-size: 18px;
  }
  .about-advantage__text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 991px) {
  .about-advantage {
    width: calc(50% - 20px);
    padding: 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .about-advantages {
    padding: 60px 40px;
  }
  .about-advantage {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 575px) {
  .about-advantages {
    margin: 80px 0;
  }
  .about-advantages-grid {
    margin-top: 50px;
  }
  .about-advantage {
    width: calc(100% - 20px);
    padding: 0 40px;
  }
  .about-advantage__title {
    font-size: 16px;
  }
  .about-advantage__text {
    font-size: 12px;
    max-width: 200px;
  }
}
.journey {
  overflow: hidden;
}
.journey-items {
  margin: 50px -55px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url("./img/path.svg");
  background-repeat: no-repeat;
  background-size: 1280px;
  background-position: top 10px center;
}
.journey-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  position: relative;
  padding-top: 30px;
  width: 400px;
  margin: 0 55px;
  height: 187px;
}
.journey-item:last-child {
  height: auto;
}
.journey-item:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: var(--blue);
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 3px 1px 6px 0 rgba(51, 149, 255, 0.4);
          box-shadow: 3px 1px 6px 0 rgba(51, 149, 255, 0.4);
  background-image: url("./img/check.svg");
  background-repeat: no-repeat;
  background-position: top 8px center;
  background-size: 9px;
}
.journey-item__year {
  font-weight: 700;
  font-size: 24px;
  color: var(--blue);
  line-height: normal;
}
.journey-item__text {
  font-size: 16px;
  line-height: normal;
  margin-top: 10px;
}

@media (max-width: 1199px) {
  .journey-items {
    margin: 50px -45px 0;
    background-image: url("./img/path-1024px.svg");
    background-size: 900px;
  }
  .journey-item {
    width: 300px;
    margin: 0 45px;
    height: 192px;
  }
}
@media (max-width: 991px) {
  .journey-items {
    margin: 50px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-image: none;
  }
  .journey-item {
    width: 100%;
    max-width: 400px;
    margin: 0;
    height: auto;
  }
  .journey-item + .journey-item {
    margin-top: 80px;
  }
  .journey-item:after {
    position: absolute;
    content: "";
    width: 2px;
    bottom: -75px;
    top: calc(100% + 5px);
    left: calc(50% - 1px);
    background-image: url("./img/path-vertical.svg");
    background-repeat: repeat-y;
    background-position: top center;
  }
  .journey-item:last-child:after {
    display: none;
  }
}
@media (max-width: 575px) {
  .journey-items {
    margin-top: 40px;
  }
  .journey-item {
    max-width: 300px;
  }
  .journey-item__year {
    font-size: 22px;
  }
  .journey-item__text {
    font-size: 14px;
  }
}
.advantages-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -50px;
  margin-top: 60px;
}

.advantage {
  width: calc(25% - 20px);
  margin: 0 10px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 0 40px;
}
.advantage__icon {
  width: 67px;
  height: 67px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.advantage__title {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
}
.advantage__text {
  margin-top: 30px;
  font-size: 14px;
  color: #8590ac;
}

@media only screen and (max-width: 1199px) {
  .advantage {
    padding: 0 20px;
  }
  .advantage__title {
    font-size: 18px;
  }
  .advantage__text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 991px) {
  .advantage {
    width: calc(50% - 20px);
    padding: 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .advantage {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 575px) {
  .advantages-grid {
    margin-top: 40px;
  }
  .advantage {
    width: calc(100% - 20px);
    padding: 0 40px;
  }
  .advantage__icon {
    margin-bottom: 20px;
  }
  .advantage__title {
    font-size: 16px;
  }
  .advantage__text {
    font-size: 12px;
    margin-top: 20px;
    max-width: 190px;
  }
}
.integrations-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 50px -10px -10px;
}
.integrations-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: none;
  margin: 10px;
  width: calc(25% - 20px);
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.06);
          box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.06);
  background-color: #fff;
  position: relative;
  overflow: hidden;
  padding: 40px;
}
.integrations-item__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 65px;
}
.integrations-item__logo img {
  height: auto;
  width: auto;
  position: relative;
}
.integrations-item__title {
  font-weight: 500;
  font-size: 20px;
  position: relative;
  margin-top: 20px;
}
.integrations-item__text {
  position: relative;
  font-size: 14px;
  color: #8590ac;
  margin-top: 20px;
}
.integrations__show-more {
  margin-top: 20px;
}
.integrations__show-more-block {
  margin-top: 15px;
  width: 100%;
  display: block;
  text-align: center;
  display: none;
}

@media only screen and (max-width: 1199px) {
  .integrations-item {
    padding: 30px;
  }
  .integrations-item__title {
    font-size: 18px;
  }
  .integrations-item__text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 991px) {
  .integrations-item {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 575px) {
  .integrations-items {
    margin-top: 40px;
  }
  .integrations-item {
    width: calc(100% - 20px);
  }
  .integrations-item__logo {
    height: auto;
  }
  .integrations-item__title {
    font-size: 16px;
    margin-top: 30px;
  }
  .integrations-item__text {
    font-size: 12px;
  }
}
.modules-info {
  position: relative;
  z-index: 2;
}
.modules-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 3;
}
.modules-tabs-wrap {
  margin-top: 60px;
}
.modules-tabs__line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: var(--blue);
  -webkit-transition: width 0.3s ease, -webkit-transform 0.3s ease;
  transition: width 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, width 0.3s ease;
  transition: transform 0.3s ease, width 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.modules-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 64px;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  position: relative;
  text-align: center;
  padding: 0 30px;
  white-space: nowrap;
  border-bottom: 4px solid #E7ECF0;
  cursor: pointer;
}

.module {
  position: relative;
  display: none;
}
.module.visible {
  display: block;
}
.module-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.module-info {
  width: 410px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 2;
}
.module-subtitle {
  margin-top: 50px;
}
.module-pretext {
  font-size: 20px;
  line-height: normal;
  color: #333741;
  margin-top: 20px;
}
.module-text {
  margin-top: 30px;
  color: #333741;
  line-height: normal;
}
.module__btn {
  margin-top: 50px;
}
.module-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.module-image-wrap {
  position: absolute;
  aspect-ratio: 1.735;
  top: -4.25vw;
  left: calc(50% - 30vw);
  right: -2.75vw;
}
.module-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.module-dot {
  position: absolute;
  border-radius: 100%;
  width: 1.7vw;
  height: 1.7vw;
  -webkit-box-shadow: 3px 5px 20px 0 rgba(51, 149, 255, 0.4);
          box-shadow: 3px 5px 20px 0 rgba(51, 149, 255, 0.4);
  background-color: var(--blue);
  cursor: pointer;
  margin-top: -0.85vw;
  margin-left: -0.85vw;
}
.module-dot:before, .module-dot:after {
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: #fff;
  border-radius: 10em;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.module-dot:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.module-dot.active {
  z-index: 3;
}
.module-dot.active:after {
  opacity: 0;
}
.module-dot:nth-child(1) {
  left: calc(50% + 1.5vw);
  top: calc(50% - 10.3vw);
}
.module-dot:nth-child(2) {
  right: calc(50% + 10vw);
  top: calc(50% - 13.8vw);
}
.module-dot:nth-child(3) {
  left: calc(50% + 15.9vw);
  top: calc(50% - 8.3vw);
}
.module-dot:nth-child(4) {
  right: calc(50% + 7.9vw);
  top: calc(50% + 4.1vw);
}
.module-dot:nth-child(5) {
  left: calc(50% + 14.7vw);
  top: calc(50% + 7.5vw);
}
.module.altimaProp .module-dot:nth-child(1) {
  left: calc(50% + 1.5vw);
  top: calc(50% - 9vw);
}
.module.altimaProp .module-dot:nth-child(2) {
  right: calc(50% + 10.75vw);
  top: calc(50% - 14vw);
}
.module.altimaProp .module-dot:nth-child(3) {
  left: calc(50% + 15.9vw);
  top: calc(50% - 8.3vw);
}
.module.altimaProp .module-dot:nth-child(4) {
  right: calc(50% + 7.9vw);
  top: calc(50% + 4.1vw);
}
.module.altimaProp .module-dot:nth-child(5) {
  left: calc(50% + 16.5vw);
  top: calc(50% + 8.5vw);
}
.module.altimaIB .module-dot:nth-child(1) {
  left: calc(50% + 1.5vw);
  top: calc(50% - 11vw);
}
.module.altimaIB .module-dot:nth-child(2) {
  right: calc(50% + 11.5vw);
  top: calc(50% - 14.5vw);
}
.module.altimaIB .module-dot:nth-child(3) {
  left: calc(50% + 15.9vw);
  top: calc(50% - 8.3vw);
}
.module.altimaIB .module-dot:nth-child(4) {
  right: calc(50% + 7.9vw);
  top: calc(50% + 4.1vw);
}
.module.altimaIB .module-dot:nth-child(5) {
  left: calc(50% + 16.5vw);
  top: calc(50% + 8.5vw);
}
.module.altimaVoIP .module-dot:nth-child(1) {
  left: calc(50% + 1.5vw);
  top: calc(50% - 11vw);
}
.module.altimaVoIP .module-dot:nth-child(2) {
  right: calc(50% + 11.5vw);
  top: calc(50% - 14.5vw);
}
.module.altimaVoIP .module-dot:nth-child(3) {
  left: calc(50% + 15.9vw);
  top: calc(50% - 8.3vw);
}
.module.altimaVoIP .module-dot:nth-child(4) {
  right: calc(50% + 7.9vw);
  top: calc(50% + 4.1vw);
}
.module.altimaVoIP .module-dot:nth-child(5) {
  left: calc(50% + 16.5vw);
  top: calc(50% + 8.5vw);
}
.module.altimaTrader .module-dot:nth-child(1) {
  left: calc(50% + 1.5vw);
  top: calc(50% - 11vw);
}
.module.altimaTrader .module-dot:nth-child(2) {
  right: calc(50% + 11.5vw);
  top: calc(50% - 14.5vw);
}
.module.altimaTrader .module-dot:nth-child(3) {
  left: calc(50% + 15.9vw);
  top: calc(50% - 8.3vw);
}
.module.altimaTrader .module-dot:nth-child(4) {
  right: calc(50% + 7.9vw);
  top: calc(50% + 4.1vw);
}
.module.altimaTrader .module-dot:nth-child(5) {
  left: calc(50% + 16.5vw);
  top: calc(50% + 8.5vw);
}
.module.clientPortal .module-dot:nth-child(1) {
  left: calc(50% + 1.5vw);
  top: calc(50% - 11vw);
}
.module.clientPortal .module-dot:nth-child(2) {
  right: calc(50% + 11.5vw);
  top: calc(50% - 14.5vw);
}
.module.clientPortal .module-dot:nth-child(3) {
  left: calc(50% + 15.9vw);
  top: calc(50% - 8.3vw);
}
.module.clientPortal .module-dot:nth-child(4) {
  right: calc(50% + 7.9vw);
  top: calc(50% + 4.1vw);
}
.module.clientPortal .module-dot:nth-child(5) {
  left: calc(50% + 16.5vw);
  top: calc(50% + 8.5vw);
}
.module-popup {
  position: absolute;
  border-radius: 20px;
  padding: 30px;
  background-color: #fff;
  left: -7.5vw;
  right: -7.5vw;
  top: calc(100% + 0.5vw);
  -webkit-box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.06);
          box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.06);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.module-popup.visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.module-popup__title {
  font-weight: 500;
  font-size: 16px;
}
.module-popup__text {
  font-size: 14px;
  color: #8590ac;
  margin-top: 20px;
}

.features {
  margin-top: 7.55vw;
  position: relative;
  z-index: 2;
}
.features-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px -10px -20px;
}

.feature {
  margin: 0 10px 20px;
  width: calc(25% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 40px 60px;
  -webkit-box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.06);
          box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.06);
  background-color: #fff;
  border-radius: 20px;
}
.feature__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
}
.feature__title {
  font-weight: 500;
  font-size: 16px;
}
.feature__text {
  font-size: 14px;
  color: #8590ac;
  margin-top: 20px;
}

@media only screen and (max-width: 1599px) {
  .module-image-wrap {
    top: -2vw;
  }
}
@media only screen and (min-width: 2000px) {
  .module-image-wrap {
    top: -6vw;
  }
  .module-popup {
    left: -5vw;
    right: -5vw;
  }
  .features {
    margin-top: 12vw;
  }
}
@media only screen and (min-width: 2600px) {
  .module-image-wrap {
    top: -8vw;
  }
  .features {
    margin-top: 14vw;
  }
}
@media only screen and (max-width: 1199px) {
  .modules-tab {
    font-size: 18px;
    padding: 0 20px;
  }
  .modules-tab:before {
    position: absolute;
    bottom: -4px;
    height: 4px;
    left: 0;
    right: 0;
    content: "";
    background-color: var(--blue);
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .modules-tab.current:before {
    opacity: 1;
  }
  .module-info {
    width: 100%;
    margin-top: 0;
  }
  .module-subtitle {
    margin-top: 40px;
  }
  .module__btn {
    margin-top: 40px;
  }
  .module-pretext {
    font-size: 18px;
  }
  .module-image-wrap {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    aspect-ratio: auto;
    margin: 0 -20vw;
    z-index: 3;
  }
  .module-image-wrap img {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
  }
  .module-dot {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
  }
  .module-dot:before, .module-dot:after {
    width: 14px;
  }
  .module-dot:nth-child(1) {
    left: calc(50% + 3vw);
    top: calc(50% - 18vw);
  }
  .module-dot:nth-child(2) {
    right: calc(50% + 17vw);
    top: calc(50% - 24vw);
  }
  .module-dot:nth-child(3) {
    left: calc(50% + 27vw);
    top: calc(50% - 13.5vw);
  }
  .module-dot:nth-child(4) {
    right: calc(50% + 12vw);
    top: calc(50% + 7vw);
  }
  .module-dot:nth-child(5) {
    left: calc(50% + 25vw);
    top: calc(50% + 13vw);
  }
  .module.altimaProp .module-dot:nth-child(1) {
    left: calc(50% + 2vw);
    top: calc(50% - 15vw);
  }
  .module.altimaProp .module-dot:nth-child(2) {
    right: calc(50% + 18vw);
    top: calc(50% - 24vw);
  }
  .module.altimaProp .module-dot:nth-child(3) {
    left: calc(50% + 27vw);
    top: calc(50% - 14vw);
  }
  .module.altimaProp .module-dot:nth-child(4) {
    right: calc(50% + 13vw);
    top: calc(50% + 7vw);
  }
  .module.altimaProp .module-dot:nth-child(5) {
    left: calc(50% + 28vw);
    top: calc(50% + 14vw);
  }
  .module.altimaIB .module-dot:nth-child(1) {
    left: calc(50% + 2vw);
    top: calc(50% - 18vw);
  }
  .module.altimaIB .module-dot:nth-child(2) {
    right: calc(50% + 19vw);
    top: calc(50% - 24vw);
  }
  .module.altimaIB .module-dot:nth-child(3) {
    left: calc(50% + 27vw);
    top: calc(50% - 14vw);
  }
  .module.altimaIB .module-dot:nth-child(4) {
    right: calc(50% + 13vw);
    top: calc(50% + 7vw);
  }
  .module.altimaIB .module-dot:nth-child(5) {
    left: calc(50% + 28vw);
    top: calc(50% + 14vw);
  }
  .module.altimaVoIP .module-dot:nth-child(1) {
    left: calc(50% + 2vw);
    top: calc(50% - 18vw);
  }
  .module.altimaVoIP .module-dot:nth-child(2) {
    right: calc(50% + 19vw);
    top: calc(50% - 24vw);
  }
  .module.altimaVoIP .module-dot:nth-child(3) {
    left: calc(50% + 27vw);
    top: calc(50% - 14vw);
  }
  .module.altimaVoIP .module-dot:nth-child(4) {
    right: calc(50% + 13vw);
    top: calc(50% + 7vw);
  }
  .module.altimaVoIP .module-dot:nth-child(5) {
    left: calc(50% + 28vw);
    top: calc(50% + 14vw);
  }
  .module.altimaTrader .module-dot:nth-child(1) {
    left: calc(50% + 2vw);
    top: calc(50% - 18vw);
  }
  .module.altimaTrader .module-dot:nth-child(2) {
    right: calc(50% + 19vw);
    top: calc(50% - 24vw);
  }
  .module.altimaTrader .module-dot:nth-child(3) {
    left: calc(50% + 27vw);
    top: calc(50% - 14vw);
  }
  .module.altimaTrader .module-dot:nth-child(4) {
    right: calc(50% + 13vw);
    top: calc(50% + 7vw);
  }
  .module.altimaTrader .module-dot:nth-child(5) {
    left: calc(50% + 28vw);
    top: calc(50% + 14vw);
  }
  .module.clientPortal .module-dot:nth-child(1) {
    left: calc(50% + 2vw);
    top: calc(50% - 18vw);
  }
  .module.clientPortal .module-dot:nth-child(2) {
    right: calc(50% + 19vw);
    top: calc(50% - 24vw);
  }
  .module.clientPortal .module-dot:nth-child(3) {
    left: calc(50% + 27vw);
    top: calc(50% - 14vw);
  }
  .module.clientPortal .module-dot:nth-child(4) {
    right: calc(50% + 13vw);
    top: calc(50% + 7vw);
  }
  .module.clientPortal .module-dot:nth-child(5) {
    left: calc(50% + 28vw);
    top: calc(50% + 14vw);
  }
  .module-popup {
    left: -150px;
    right: auto;
    width: 300px;
    margin-left: 15px;
    top: calc(100% + 10px);
  }
  .features {
    margin-top: 100px;
  }
  .feature {
    width: calc(33.33% - 20px);
  }
}
@media only screen and (max-width: 991px) {
  .modules-tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .modules-tab {
    width: 33.33%;
  }
  .feature {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .feature {
    padding: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .modules-tabs-wrap {
    margin-top: 40px;
  }
  .modules-tab {
    font-size: 14px;
    min-height: 54px;
    padding: 0;
    border-bottom: 3px solid #E7ECF0;
  }
  .modules-tab:before {
    bottom: -3px;
    height: 3px;
  }
  .module-subtitle {
    margin-top: 30px;
  }
  .module-pretext {
    font-size: 16px;
    margin-top: 20px;
  }
  .module-text {
    margin-top: 20px;
  }
  .module__btn {
    margin-top: 30px;
  }
  .module-image-wrap {
    margin: 0 -35vw;
  }
  .module-dot {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  .module-dot:nth-child(1) {
    left: calc(50% + 3vw);
    top: calc(50% - 23vw);
  }
  .module-dot:nth-child(2) {
    right: calc(50% + 19vw);
    top: calc(50% - 30vw);
  }
  .module-dot:nth-child(2) .module-popup {
    left: 0;
    margin-left: 0;
  }
  .module-dot:nth-child(3) {
    left: calc(50% + 34vw);
    top: calc(50% - 16.5vw);
  }
  .module-dot:nth-child(3) .module-popup {
    left: auto;
    margin-left: 0;
    right: 0;
  }
  .module-dot:nth-child(4) {
    right: calc(50% + 15vw);
    top: calc(50% + 9vw);
  }
  .module-dot:nth-child(4) .module-popup {
    left: 0;
    margin-left: 0;
  }
  .module-dot:nth-child(5) {
    left: calc(50% + 32vw);
    top: calc(50% + 17vw);
  }
  .module-dot:nth-child(5) .module-popup {
    left: auto;
    margin-left: 0;
    right: 0;
  }
  .module.altimaProp .module-dot:nth-child(1) {
    left: calc(50% + 3vw);
    top: calc(50% - 20vw);
  }
  .module.altimaProp .module-dot:nth-child(2) {
    right: calc(50% + 19.5vw);
    top: calc(50% - 30vw);
  }
  .module.altimaProp .module-dot:nth-child(2) .module-popup {
    left: 0;
    margin-left: 0;
  }
  .module.altimaProp .module-dot:nth-child(3) {
    left: calc(50% + 34vw);
    top: calc(50% - 16.5vw);
  }
  .module.altimaProp .module-dot:nth-child(3) .module-popup {
    left: auto;
    margin-left: 0;
    right: 0;
  }
  .module.altimaProp .module-dot:nth-child(4) {
    right: calc(50% + 15vw);
    top: calc(50% + 9vw);
  }
  .module.altimaProp .module-dot:nth-child(4) .module-popup {
    left: 0;
    margin-left: 0;
  }
  .module.altimaProp .module-dot:nth-child(5) {
    left: calc(50% + 33vw);
    top: calc(50% + 18vw);
  }
  .module.altimaProp .module-dot:nth-child(5) .module-popup {
    left: auto;
    margin-left: 0;
    right: 0;
  }
  .module.altimaIB .module-dot:nth-child(1) {
    left: calc(50% + 3vw);
    top: calc(50% - 22vw);
  }
  .module.altimaIB .module-dot:nth-child(2) {
    right: calc(50% + 19.5vw);
    top: calc(50% - 30vw);
  }
  .module.altimaIB .module-dot:nth-child(2) .module-popup {
    left: 0;
    margin-left: 0;
  }
  .module.altimaIB .module-dot:nth-child(3) {
    left: calc(50% + 34vw);
    top: calc(50% - 16.5vw);
  }
  .module.altimaIB .module-dot:nth-child(3) .module-popup {
    left: auto;
    margin-left: 0;
    right: 0;
  }
  .module.altimaIB .module-dot:nth-child(4) {
    right: calc(50% + 15vw);
    top: calc(50% + 9vw);
  }
  .module.altimaIB .module-dot:nth-child(4) .module-popup {
    left: 0;
    margin-left: 0;
  }
  .module.altimaIB .module-dot:nth-child(5) {
    left: calc(50% + 33vw);
    top: calc(50% + 18vw);
  }
  .module.altimaIB .module-dot:nth-child(5) .module-popup {
    left: auto;
    margin-left: 0;
    right: 0;
  }
  .module.altimaVoIP .module-dot:nth-child(1) {
    left: calc(50% + 3vw);
    top: calc(50% - 22vw);
  }
  .module.altimaVoIP .module-dot:nth-child(2) {
    right: calc(50% + 19.5vw);
    top: calc(50% - 30vw);
  }
  .module.altimaVoIP .module-dot:nth-child(2) .module-popup {
    left: 0;
    margin-left: 0;
  }
  .module.altimaVoIP .module-dot:nth-child(3) {
    left: calc(50% + 34vw);
    top: calc(50% - 16.5vw);
  }
  .module.altimaVoIP .module-dot:nth-child(3) .module-popup {
    left: auto;
    margin-left: 0;
    right: 0;
  }
  .module.altimaVoIP .module-dot:nth-child(4) {
    right: calc(50% + 15vw);
    top: calc(50% + 9vw);
  }
  .module.altimaVoIP .module-dot:nth-child(4) .module-popup {
    left: 0;
    margin-left: 0;
  }
  .module.altimaVoIP .module-dot:nth-child(5) {
    left: calc(50% + 33vw);
    top: calc(50% + 18vw);
  }
  .module.altimaVoIP .module-dot:nth-child(5) .module-popup {
    left: auto;
    margin-left: 0;
    right: 0;
  }
  .module.altimaTrader .module-dot:nth-child(1) {
    left: calc(50% + 3vw);
    top: calc(50% - 22vw);
  }
  .module.altimaTrader .module-dot:nth-child(2) {
    right: calc(50% + 19.5vw);
    top: calc(50% - 30vw);
  }
  .module.altimaTrader .module-dot:nth-child(2) .module-popup {
    left: 0;
    margin-left: 0;
  }
  .module.altimaTrader .module-dot:nth-child(3) {
    left: calc(50% + 34vw);
    top: calc(50% - 16.5vw);
  }
  .module.altimaTrader .module-dot:nth-child(3) .module-popup {
    left: auto;
    margin-left: 0;
    right: 0;
  }
  .module.altimaTrader .module-dot:nth-child(4) {
    right: calc(50% + 15vw);
    top: calc(50% + 9vw);
  }
  .module.altimaTrader .module-dot:nth-child(4) .module-popup {
    left: 0;
    margin-left: 0;
  }
  .module.altimaTrader .module-dot:nth-child(5) {
    left: calc(50% + 33vw);
    top: calc(50% + 18vw);
  }
  .module.altimaTrader .module-dot:nth-child(5) .module-popup {
    left: auto;
    margin-left: 0;
    right: 0;
  }
  .module.clientPortal .module-dot:nth-child(1) {
    left: calc(50% + 3vw);
    top: calc(50% - 22vw);
  }
  .module.clientPortal .module-dot:nth-child(2) {
    right: calc(50% + 19.5vw);
    top: calc(50% - 30vw);
  }
  .module.clientPortal .module-dot:nth-child(2) .module-popup {
    left: 0;
    margin-left: 0;
  }
  .module.clientPortal .module-dot:nth-child(3) {
    left: calc(50% + 34vw);
    top: calc(50% - 16.5vw);
  }
  .module.clientPortal .module-dot:nth-child(3) .module-popup {
    left: auto;
    margin-left: 0;
    right: 0;
  }
  .module.clientPortal .module-dot:nth-child(4) {
    right: calc(50% + 15vw);
    top: calc(50% + 9vw);
  }
  .module.clientPortal .module-dot:nth-child(4) .module-popup {
    left: 0;
    margin-left: 0;
  }
  .module.clientPortal .module-dot:nth-child(5) {
    left: calc(50% + 33vw);
    top: calc(50% + 18vw);
  }
  .module.clientPortal .module-dot:nth-child(5) .module-popup {
    left: auto;
    margin-left: 0;
    right: 0;
  }
  .module-popup {
    left: -100px;
    width: 200px;
    margin-left: 15px;
    top: calc(100% + 10px);
    padding: 20px;
    border-radius: 10px;
  }
  .module-popup__title {
    font-size: 14px;
  }
  .module-popup__text {
    font-size: 12px;
    margin-top: 10px;
  }
  .feature {
    width: calc(100% - 20px);
  }
  .feature__title {
    font-size: 14px;
  }
  .feature__text {
    font-size: 12px;
  }
  .features {
    margin-top: 80px;
  }
}
.offer {
  text-align: center;
  padding: 240px 0;
  position: relative;
}
.offer-circles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./img/circles.svg");
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  pointer-events: none;
}
.offer-btns {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.offer-btns .btn + .btn {
  margin-left: 20px;
}

@media only screen and (max-width: 1199px) {
  .offer {
    padding: 100px 0;
  }
  .offer-circles {
    background-size: 800px;
  }
}
@media only screen and (max-width: 575px) {
  .offer {
    padding: 80px 0;
    min-height: 460px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .offer-circles {
    background-size: 650px;
  }
  .offer-btns {
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .offer-btns .btn + .btn {
    margin-left: 0;
    margin-top: 10px;
  }
}
.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.social-link img, .social-link svg {
  width: 16px;
  height: 16px;
}
.social-link + .social-link {
  margin-left: 20px;
}
.social-link svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.social-link:active path {
  fill: var(--blue);
}

@media (hover) {
  .social-link:hover path {
    fill: var(--blue);
  }
}
.footer {
  background-color: var(--grey);
  padding: 100px 0;
  color: #081830;
  line-height: normal;
  overflow: hidden;
}
.footer-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-info {
  max-width: 540px;
}
.footer__logo {
  width: 88px;
}
.footer-text {
  margin-top: 30px;
  font-size: 13px;
}
.footer-text p {
  margin: 20px 0;
}
.footer-text b, .footer-text strong {
  font-weight: 600;
}
.footer-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 52px;
  margin-right: -40px;
  margin-bottom: -20px;
}
.footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: #081830;
  white-space: nowrap;
  margin-right: 40px;
  margin-bottom: 20px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer-contact img, .footer-contact svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 6px;
  width: 16px;
}
.footer-contact:active {
  color: var(--blue);
}
.footer__social {
  margin-right: 40px;
  margin-bottom: 20px;
}
.footer-copy {
  font-size: 14px;
  margin-top: auto;
}
.footer-aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: 100px;
  width: 540px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer-menu__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-menu__item + .footer-menu__item {
  margin-left: 50px;
}
.footer-menu__link {
  display: block;
  font-weight: 600;
  text-align: center;
  font-size: 16px;
  text-transform: capitalize;
  color: #000;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer-menu__link:active {
  color: var(--blue);
}

@media (hover) {
  .footer-contact:hover {
    color: var(--blue);
  }
  .footer-menu__link:hover {
    color: var(--blue);
  }
}
@media only screen and (max-width: 1199px) {
  .footer {
    padding-bottom: 40px;
  }
  .footer-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .footer-copy {
    margin-top: 80px;
  }
  .footer-contacts {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-top: 0;
  }
  .footer-menu {
    margin-top: 80px;
  }
  .footer-aside {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 575px) {
  .footer {
    padding-top: 80px;
  }
  .footer-menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-menu__item + .footer-menu__item {
    margin-left: 0px;
    margin-top: 30px;
  }
  .footer-text {
    font-size: 12px;
  }
  .footer-contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-copy {
    font-size: 12px;
  }
}
.wrap--has-banner {
  margin-bottom: 90px;
}

.head-banner {
  background-color: #ECF0F4;
  border-radius: 10px;
  margin-right: auto;
  margin-left: 40px;background-image: linear-gradient(340deg, #e32e4c, #430027);
}
.head-banner-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 55px;
  position: relative;
  padding: 7px 10px;
}
.head-banner__date {
  font-weight: 700;
  font-size: 32px;
  text-transform: capitalize;
  color: #fff;
  line-height: normal;
  font-size: 13px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 20px;
}
.head-banner__date strong {
  font-weight: 800;
  font-size: 20px;
  display: block;
}
.head-banner__btn {
  margin-left: 20px;
  font-weight: 600;
  font-size: 13px;
  text-transform: capitalize;
  padding: 10px 25px;
  color: #a61b33;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(#9d91d8), color-stop(#f85a7e), to(#9d91d8));
  background: #fff!important;
  background-size: 200% 100%;
  -webkit-transition: background-position 0.3s ease;
  transition: background-position 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.head-banner__btn:active {
  background-position: 100% 0;
}
.head-banner__logo {
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 6px;
}
.head-banner__logo img {
  width: 100%;
}

.foot-banner {
    height: 90px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(270deg, #430027, #e32e4c);
}

.foot-banner-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 100%;
    position: relative;
}

.foot-banner__title {
    font-weight: 600;
    font-size: 32px;
    text-transform: capitalize;
    background-clip: text;
    -webkit-background-clip: text;
    padding-right: 30px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: normal;
    height: 90px;
    color: #fff;
}

.foot-banner__title:after {
    position: absolute;
    content: "";
    right: 0;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background-color: #fff;
}

.foot-banner__date {
    font-weight: 600;
    font-size: 32px;
    text-transform: capitalize;
    color: #fff;
    line-height: normal;
    font-size: 20px;
    height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 30px;
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.foot-banner__date:after {
    position: absolute;
    content: "";
    right: 0;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background-color: #fff;
}

.foot-banner__date strong {
    font-weight: 600;
    font-size: 32px;
}

.foot-banner__meeting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 90px;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    line-height: normal;
    padding: 0 30px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.foot-banner__btn {
    margin-left: 40px;
    font-weight: 600;
    font-size: 13px;
    text-transform: capitalize;
    padding: 15px 40px;
    color: #a61b33!important;
    overflow: hidden;
    background: #fff!important;
    background-size: 200% 100%;
    -webkit-transition: background-position 0.3s ease;
    transition: background-position 0.3s ease;
}

.foot-banner__btn:active {
    background-position: 100% 0;
}

.foot-banner__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #14141400;
    height: 90px;
    width: 150px;
    padding: 10px 0;
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.foot-banner__logo:after {
    position: absolute;
    content: "";
    background-color: #000000a3;
    left: 0px;
    top: 0;
    bottom: 0;
    width: 100vw;
}

.foot-banner__logo img {
    position: relative;
    z-index: 2;
    width: 62px;
}

.foot-banner__bg {
    width: 110px;
    height: 90px;
    background-image: url('http://altimacrm.com/wp-content/themes/altimacrm/./img/foot-banner-bg1.svg');
    background-repeat: repeat-x;
    background-position: center left;
}

.foot-banner__close {
    padding: 0;
    cursor: pointer;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: -30px;
    width: 34px;
    height: 34px;
    top: calc(50% - 17px);
}

.foot-banner__close svg path {
    fill: #fff;
}

@media (hover) {
  .foot-banner__btn:hover,
  .head-banner__btn:hover {
    background-position: 100% 0;
  }
}
@media only screen and (max-width: 1599px) {
  .foot-banner__close {
    right: 0;
  }
  .foot-banner__title {
    padding-right: 25px;
  }
  .foot-banner__date {
    padding: 0 25px;
  }
  .foot-banner__meeting {
    padding: 0 25px;
  }
  .foot-banner__btn {
    margin-left: 25px;
  }
}
@media only screen and (max-width: 1299px) {
  .foot-banner__close {
    right: 0;
  }
  .foot-banner__title {
    padding-right: 20px;
  }
  .foot-banner__date {
    padding: 0 20px;
  }
  .foot-banner__meeting {
    padding: 0 2px;
  }
  .foot-banner__btn {
    margin-left: 25px;
  }
}
@media only screen and (max-width: 1199px) {
  .wrap--has-banner {
    margin-bottom: 0;
  }
  .foot-banner {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .head-banner {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .wrap--has-banner .main {
    margin-top: 138px;
  }
  .head-banner {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    border-radius: 0;
    margin-right: 0;
    margin-left: 0;
    border-top: 1px solid #E0E6ED;
    border-bottom: 1px solid #E0E6ED;
  }
  .head-banner-block {
    height: 60px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .head-banner-block {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
  .head-banner__logo {
    margin-left: 0;
  }
}
@media only screen and (max-width: 575px) {
  .wrap--has-banner .main {
    margin-top: 118px;
  }
  .head-banner {
    top: 59px;
  }
  .head-banner-block {
    padding-left: 20px;
    padding-right: 20px;
    height: 60px;
    max-width: 100%;
  }
}
.about-hero {
  min-height: 660px;
}

@media only screen and (max-width: 1199px) {
  .about-hero {
    min-height: auto;
    height: auto;
    padding-bottom: 400px;
  }
}
@media only screen and (max-width: 575px) {
  .about-hero {
    padding-bottom: 300px;
  }
}
.more-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 16px;
  color: var(--blue);
  white-space: nowrap;
  padding-right: 10px;
}
.more-link svg {
  margin-left: 20px;
  width: 25px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  left: 0;
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
}
.more-link:hover svg {
  left: 10px;
}

.about-section-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-section-block + .about-section-block {
  margin-top: 100px;
}
.about-section-block:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.about-section-block:nth-child(2n) .about-section-image {
  margin-left: 0;
  margin-right: 80px;
}
.about-section-content {
  width: 100%;
  max-width: 515px;
}
.about-section-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 80px;
  max-width: 685px;
}
.about-section__text {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.about-modules {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 50px -10px -20px;
}
.about-module {
  width: calc(25% - 20px);
  margin: 0 10px 20px;
  padding: 40px;
  border: 1px solid #dfdfdf;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.about-module__title {
  font-weight: 500;
  font-size: 20px;
}
.about-module__more-link {
  margin-top: auto;
}
.about-module__text {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #8590ac;
}

@media only screen and (max-width: 1199px) {
  .about-section-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .about-section-block:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-section-block:nth-child(2n) .about-section-image {
    margin-right: 0px;
  }
  .about-section-content {
    max-width: 100%;
  }
  .about-section-image {
    max-width: auto;
    margin-left: 0;
    margin-top: 40px;
  }
  .about-section__text {
    font-size: 18px;
  }
  .about-module {
    width: calc(33.33% - 20px);
  }
}
@media only screen and (max-width: 991px) {
  .about-module {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .about-module {
    width: calc(100% - 20px);
  }
}
@media only screen and (max-width: 575px) {
  .more-link {
    font-size: 14px;
  }
  .about-section + .about-section-block {
    margin-top: 80px;
  }
  .about-section-image {
    margin-top: 30px;
  }
  .about-section__text {
    font-size: 16px;
  }
  .about-module__title {
    font-size: 18px;
  }
  .about-module__text {
    font-size: 12px;
  }
}
.why-altima {
  padding-bottom: 0;
}
.why-altima-info {
  position: relative;
  z-index: 2;
}
.why-altima__text {
  max-width: 1000px;
  line-height: 1.5;
}
.why-altima-block {
  position: relative;
  pointer-events: none;
}
.why-altima-bg {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.why-altima__h3 {
  text-align: center;
  text-transform: none;
}
.why-altima-item {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .why-altima-block {
    height: 460px;
    margin-top: 0px;
  }
  .why-altima__h3 {
    position: absolute;
    bottom: 330px;
    z-index: 2;
    left: 0;
    right: 0;
  }
  .why-altima-item {
    position: absolute;
    width: 220px;
    padding-top: 56px;
    padding-bottom: 0;
  }
  .why-altima-item:before {
    position: absolute;
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 100%;
    -webkit-box-shadow: 3px 5px 20px 0 rgba(51, 149, 255, 0.4);
            box-shadow: 3px 5px 20px 0 rgba(51, 149, 255, 0.4);
    background-color: #3395ff;
    bottom: auto;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .why-altima-item:nth-child(1) {
    right: calc(50% + 145px);
    bottom: calc(50% - 160px);
  }
  .why-altima-item:nth-child(2) {
    padding-bottom: 56px;
    padding-top: 0;
    right: calc(50% - 110px);
    bottom: calc(50% - 60px);
  }
  .why-altima-item:nth-child(2):before {
    bottom: 0;
    top: auto;
  }
  .why-altima-item:nth-child(3) {
    left: calc(50% + 145px);
    bottom: calc(50% - 140px);
  }
}
@media only screen and (min-width: 992px) {
  .why-altima-block {
    height: 660px;
    margin-top: -100px;
  }
  .why-altima__h3 {
    bottom: 420px;
  }
  .why-altima-item:nth-child(1) {
    right: calc(50% + 255px);
    bottom: calc(50% - 180px);
  }
  .why-altima-item:nth-child(2) {
    right: calc(50% - 110px);
    bottom: calc(50% - 80px);
  }
  .why-altima-item:nth-child(3) {
    left: calc(50% + 255px);
    bottom: calc(50% - 160px);
  }
}
@media only screen and (min-width: 1200px) {
  .why-altima-block {
    height: 800px;
    margin-top: -190px;
  }
  .why-altima__h3 {
    bottom: 495px;
  }
  .why-altima-item:nth-child(1) {
    right: calc(50% + 325px);
    bottom: calc(50% - 195px);
  }
  .why-altima-item:nth-child(2) {
    right: calc(50% - 110px);
    bottom: calc(50% - 85px);
  }
  .why-altima-item:nth-child(3) {
    left: calc(50% + 340px);
    bottom: calc(50% - 175px);
  }
}
@media only screen and (min-width: 2000px) {
  .why-altima-block {
    aspect-ratio: 2;
    height: auto;
    margin-top: -350px;
  }
  .why-altima__h3 {
    bottom: calc(50% + 2vw);
  }
  .why-altima-item:nth-child(1) {
    right: calc(50% + 23vw);
    bottom: calc(50% - 9.5vw);
  }
  .why-altima-item:nth-child(2) {
    right: calc(50% - 4vw);
    bottom: calc(50% - 5vw);
  }
  .why-altima-item:nth-child(3) {
    left: calc(50% + 23.5vw);
    bottom: calc(50% - 8.7vw);
  }
}
@media only screen and (min-width: 3000px) {
  .why-altima-block {
    margin-top: -400px;
  }
  .why-altima__h3 {
    bottom: calc(50% + 1vw);
  }
  .why-altima-item:nth-child(1) {
    right: calc(50% + 24vw);
    bottom: calc(50% - 8.7vw);
  }
  .why-altima-item:nth-child(2) {
    right: calc(50% - 3.8vw);
    bottom: calc(50% - 5vw);
  }
  .why-altima-item:nth-child(3) {
    left: calc(50% + 24vw);
    bottom: calc(50% - 8.1vw);
  }
}
@media only screen and (max-width: 767px) {
  .why-altima-block {
    aspect-ratio: 1.5;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 60px;
  }
  .why-altima-bg {
    position: relative;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .why-altima-items {
    margin-top: 40px;
  }
  .why-altima-item {
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding-left: 42px;
    text-align: left;
  }
  .why-altima-item:before {
    position: absolute;
    content: "";
    top: -3px;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: var(--blue);
    background-image: url("./img/check-icon-2.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px;
  }
  .why-altima-item + .why-altima-item {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .why-altima-bg {
    margin-top: -30px;
  }
  .why-altima-block {
    margin-top: 50px;
    aspect-ratio: 1.6;
  }
  .why-altima-items {
    margin-top: 30px;
  }
  .why-altima-item {
    font-size: 14px;
  }
  .why-altima-item + .why-altima-item {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .ecosystem-hero {
    padding-bottom: 250px;
  }
}
.ecosystem-matters {
  padding-bottom: 0;
}
.ecosystem-matters-block {
  position: relative;
  height: 900px;
  margin-top: -75px;
  pointer-events: none;
}
.ecosystem-matters-bg {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: -1;
}
.ecosystem-matters-item {
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding-left: 42px;
}
.ecosystem-matters-item:before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: var(--blue);
  background-image: url("./img/check-icon-2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
}

@media only screen and (min-width: 768px) {
  .ecosystem-matters-item {
    width: 230px;
    position: absolute;
  }
  .ecosystem-matters-item:nth-child(1) {
    bottom: calc(50% + 180px);
    right: calc(50% + 100px);
  }
  .ecosystem-matters-item:nth-child(2) {
    bottom: calc(50% + 180px);
    left: calc(50% + 100px);
  }
  .ecosystem-matters-item:nth-child(3) {
    top: calc(50% + 200px);
    right: calc(50% + 100px);
  }
  .ecosystem-matters-item:nth-child(4) {
    top: calc(50% + 200px);
    left: calc(50% + 100px);
  }
}
@media only screen and (min-width: 992px) {
  .ecosystem-matters-item {
    width: 280px;
    position: absolute;
  }
  .ecosystem-matters-item:nth-child(1) {
    bottom: calc(50% + 180px);
    right: calc(50% + 150px);
  }
  .ecosystem-matters-item:nth-child(2) {
    bottom: calc(50% + 180px);
    left: calc(50% + 150px);
  }
  .ecosystem-matters-item:nth-child(3) {
    top: calc(50% + 225px);
    right: calc(50% + 150px);
  }
  .ecosystem-matters-item:nth-child(4) {
    top: calc(50% + 225px);
    left: calc(50% + 150px);
  }
}
@media only screen and (min-width: 1200px) {
  .ecosystem-matters-item {
    width: 320px;
    position: absolute;
  }
  .ecosystem-matters-item:nth-child(1) {
    bottom: calc(50% + 200px);
    right: calc(50% + 230px);
  }
  .ecosystem-matters-item:nth-child(2) {
    bottom: calc(50% + 200px);
    left: calc(50% + 250px);
  }
  .ecosystem-matters-item:nth-child(3) {
    top: calc(50% + 250px);
    right: calc(50% + 230px);
  }
  .ecosystem-matters-item:nth-child(4) {
    top: calc(50% + 250px);
    left: calc(50% + 250px);
  }
}
@media only screen and (max-width: 991px) {
  .ecosystem-matters {
    padding-bottom: 80px;
  }
  .ecosystem-matters-block {
    height: 660px;
    margin-top: 0;
  }
}
@media only screen and (min-width: 2000px) {
  .ecosystem-matters-block {
    aspect-ratio: 2.13;
    height: auto;
  }
  .ecosystem-matters-item {
    width: 320px;
    position: absolute;
  }
  .ecosystem-matters-item:nth-child(1) {
    bottom: calc(50% + 12vw);
    right: 60vw;
  }
  .ecosystem-matters-item:nth-child(2) {
    bottom: calc(50% + 12vw);
    left: calc(50% + 10vw);
  }
  .ecosystem-matters-item:nth-child(3) {
    top: calc(50% + 12vw);
    right: calc(50% + 10vw);
  }
  .ecosystem-matters-item:nth-child(4) {
    top: calc(50% + 12vw);
    left: calc(50% + 10vw);
  }
}
@media only screen and (max-width: 767px) {
  .ecosystem-matters {
    padding-bottom: 50px;
  }
  .ecosystem-matters-block {
    aspect-ratio: 1.5;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 60px;
  }
  .ecosystem-matters-bg {
    position: relative;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .ecosystem-matters-item + .ecosystem-matters-item {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .ecosystem-matters {
    padding-bottom: 10vw;
  }
  .ecosystem-matters-block {
    aspect-ratio: 1.2;
    margin-top: 50px;
  }
  .ecosystem-matters-item {
    font-size: 14px;
  }
  .ecosystem-matters-item + .ecosystem-matters-item {
    margin-top: 30px;
  }
}
.ecosystem-modules-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 60px -10px -20px;
}
.ecosystem-module {
  background-color: #fff;
  width: calc(33.33% - 20px);
  margin: 0 10px 20px;
  padding: 40px;
  border-radius: 20px;
  min-height: 330px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.ecosystem-module__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
}
.ecosystem-module__title {
  font-weight: 500;
  font-size: 16px;
}
.ecosystem-module__more-link {
  margin-top: auto;
}
.ecosystem-module__text {
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 14px;
  color: #8590ac;
}

@media only screen and (max-width: 991px) {
  .ecosystem-module {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .ecosystem-module {
    width: calc(100% - 20px);
  }
}
@media only screen and (max-width: 575px) {
  .ecosystem-modules-grid {
    margin-top: 40px;
  }
}
.intro {
  padding: 0;
}
.intro-block {
  background-color: var(--grey);
  border-radius: 20px;
  padding: 100px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.intro-text {
  margin-top: 60px;
  font-size: 20px;
  line-height: normal;
  max-width: 1010px;
}
.intro-text p {
  margin: 30px 0;
}

@media only screen and (max-width: 1199px) {
  .intro-block {
    padding-left: 60px;
    padding-right: 60px;
  }
  .intro-text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .intro-block {
    padding: 80px 40px;
  }
  .intro-text {
    font-size: 16px;
    margin-top: 40px;
  }
  .intro-text p {
    margin: 20px 0;
  }
}
.product-hero {
  position: relative;
  background-color: #EFF2F6;
  overflow: hidden;
  position: relative;
}
.product-hero-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 0;
  min-height: 800px;
}
.product-hero-info {
  max-width: 500px;
  position: relative;
  z-index: 2;
}
.product-hero-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0px;
  top: 0;
  bottom: 0;
  left: calc(50% - 315px);
  pointer-events: none;
}
.product-hero-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-hero-subtitle {
  margin-top: 40px;
  font-weight: 500;
  font-size: 20px;
  text-transform: capitalize;
  color: #333741;
}
.product-hero__btn {
  margin-top: 40px;
}

@media only screen and (max-width: 1599px) {
  .product-hero-block {
    min-height: 600px;
  }
}
@media only screen and (max-width: 1199px) {
  .product-hero-block {
    min-height: auto;
  }
  .product-hero-info {
    max-width: 350px;
  }
  .product-hero-subtitle {
    font-size: 18px;
  }
  .product-hero-image {
    right: -200px;
  }
}
@media only screen and (max-width: 991px) {
  .product-hero {
    padding-bottom: 75%;
    padding-top: 80px;
  }
  .product-hero-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
  .product-hero-info {
    max-width: 100%;
  }
  .product-hero-image {
    aspect-ratio: 1.775;
    left: -20vw;
    right: auto;
    top: auto;
    width: calc(100% + 40vw);
    bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .product-hero {
    padding-top: 60px;
    padding-bottom: 95%;
  }
  .product-hero-subtitle {
    font-size: 16px;
    margin-top: 30px;
  }
  .product-hero__btn {
    margin-top: 30px;
  }
  .product-hero-image {
    left: -35vw;
    width: calc(100% + 65vw);
  }
}
.product-about {
  position: relative;
  padding: 165px 0;
}
.product-about-circles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./img/circles.svg");
  background-repeat: no-repeat;
  background-position: top -295px center;
  z-index: -1;
  pointer-events: none;
}
.product-about-pretext {
  text-align: center;
  font-size: 16px;
  color: #333741;
  line-height: normal;
  margin-top: 60px;
  max-width: 860px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}
.product-about-pretext strong {
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  color: #000;
}
.product-about-text {
  margin-top: 60px;
  text-align: center;
  color: #333741;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
}
.product-about-text p {
  margin: 15px 0;
}

@media only screen and (max-width: 1199px) {
  .product-about {
    padding: 100px 0;
  }
  .product-about-circles {
    background-position: top -240px center;
    background-size: 800px;
  }
  .product-about-pretext {
    font-size: 15px;
  }
  .product-about-pretext strong {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .product-about {
    padding: 80px 0;
  }
  .product-about-circles {
    background-position: top -200px center;
    background-size: 650px;
  }
  .product-about-pretext {
    font-size: 14px;
    margin-top: 40px;
  }
  .product-about-pretext strong {
    font-size: 18px;
  }
  .product-about-text {
    margin-top: 40px;
  }
}
.core__features-grid {
  margin-top: 60px;
}

@media only screen and (max-width: 575px) {
  .core__features-grid {
    margin-top: 40px;
  }
}
.product-advantages-block {
  background-color: var(--grey);
  padding: 60px 50px;
  border-radius: 20px;
}
.product-advantages-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 60px -10px -40px;
}

.product-advantage {
  width: calc(33.33% - 20px);
  margin: 0 10px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 0 40px;
}
.product-advantage__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-advantage__title {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
}
.product-advantage__text {
  margin-top: 20px;
  font-size: 14px;
  color: #8590ac;
}

@media only screen and (max-width: 1199px) {
  .product-advantage {
    padding: 0 20px;
  }
  .product-advantage__title {
    font-size: 18px;
  }
  .product-advantage__text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 991px) {
  .product-advantage {
    width: calc(50% - 20px);
    padding: 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .product-advantages-block {
    padding: 60px 40px;
  }
  .product-advantage {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 575px) {
  .product-advantages-grid {
    margin-top: 50px;
  }
  .product-advantage {
    width: calc(100% - 20px);
    padding: 0 40px;
  }
  .product-advantage__title {
    font-size: 16px;
  }
  .product-advantage__text {
    font-size: 12px;
    max-width: 300px;
  }
}
.products-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 60px -10px -20px;
}
.products-grid--count-5 .product {
  width: calc(20% - 20px);
}

.product {
  width: calc(25% - 20px);
  margin: 0 10px 20px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.06);
          box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.06);
}
.product__title {
  font-weight: 500;
  font-size: 20px;
}
.product__text {
  font-size: 14px;
  color: #8590ac;
  margin-top: 20px;
}

@media (hover) {
  .product {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .product:hover {
    -webkit-box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.24);
            box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.24);
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@media only screen and (max-width: 1199px) {
  .products-grid--count-5 .product {
    width: calc(33.33% - 20px);
  }
  .product {
    padding: 30px;
  }
  .product__title {
    font-size: 18px;
  }
  .product__text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 991px) {
  .products-grid--count-5 .product {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .products-grid--count-5 .product:last-child {
    width: calc(100% - 20px);
  }
  .product {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 575px) {
  .products-grid {
    margin-top: 50px;
  }
  .product__title {
    font-size: 16px;
  }
  .product__text {
    font-size: 12px;
    margin-top: 15px;
  }
}

.resource-hero {
    position: relative;
    padding: 78px 0 89px;
    background-color: var(--grey);
}

.resource-hero-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
}

.resource-hero-title {
    text-transform: capitalize;
}

.resource-hero-subtitle {
    margin-top: 40px;
    font-weight: 500;
    font-size: 20px;
    color: #333741;
    text-transform: capitalize;
}

@media only screen and (max-width: 1199px) {
    .resource-hero {
        padding:80px 0;
    }

    .resource-hero-subtitle {
        font-size: 18px;
    }
}

@media only screen and (max-width: 575px) {
    .resource-hero {
        padding:60px 0;
    }

    .resource-hero-subtitle {
        font-size: 16px;
        margin-top: 20px;
    }
}

.video-play {
    padding: 0;
    cursor: pointer;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background-color: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: var(--blue);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.resource-wrap {
    padding: 100px 0;
}

.resource-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 60px;
}

.resource-tab {
    font-weight: 500;
    font-size: 20px;
    padding: 0px 30px;
    line-height: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    height: 64px;
    border-bottom: 4px solid #e7ecf0;
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

.resource-tab.active, .resource-tab:active {
    border-color: var(--blue);
}

.resource-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px -40px;
}

.resource-item {
    margin: 0 10px 40px;
    width: calc(25% - 20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #dee4ed;
    -webkit-box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.1);
    box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.1);
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 310px;
}

.resource-item__header {
    height: 180px;
    width: 100%;
    padding: 20px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    overflow: hidden;
}

.resource-item__header {
    padding: 0;
}

.resource-item__header-title {
    position: relative;
    z-index: 2;
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    line-height: normal;
}

.resource-item__header-title span {
    display: block;
    font-size: 12px;
    line-height: 1.3;
}

.resource-item__logo {
    position: relative;
    z-index: 2;
}

.resource-item__logo img {
    width: 100%;
}

.resource-item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    padding: 30px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.resource-item__date {
    font-size: 13px;
    color: #bfc7da;
}

.resource-item__title {
    font-weight: 500;
    font-size: 16px;
    margin-top: 20px;
}

.resource-item__text {
    margin-bottom: 20px;
    font-size: 14px;
    color: #8590ac;
    margin-top: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.resource-item__more-link {
    margin-top: auto;
}

.resource-item--blogs .resource-item__header {
    padding: 20px;
}

.resource-item--blogs .resource-item__header-title {
    text-align: center;
    margin: auto;
}

.resource-item--blogs .resource-item__header-title span {
    font-size: 14px;
    margin-top: 5px;
}

.resource-item--blogs .resource-item__text {
    -webkit-line-clamp: 5;
}

.resource-item--press .resource-item__header {
    position: relative;
    border-radius: 0 0 20px 20px;
}

.resource-item--press .resource-item__header:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 140, 255, 0.6) 0%, rgba(0, 13, 65, 0.9) 100%);
}

.resource-item--expo .resource-item__header {
    position: relative;
}

.resource-item--expo .resource-item__header:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 140, 255, 0.48) 0%, rgba(0, 13, 65, 0.72) 100%);
}

.resource-item--media .resource-item__logo {
    margin-bottom: 15px;
}

@media (hover) {
    .video-play {
        -webkit-transition: width 0.3s, height 0.3s;
        transition: width 0.3s, height 0.3s;
    }

    .video-play:hover {
        width: 70px;
        height: 70px;
    }

    .resource-tab:hover {
        border-color: var(--blue);
    }
}

@media only screen and (max-width: 1199px) {
    .resource-wrap {
        padding:80px 0 100px;
    }

    .resource-tab {
        font-size: 18px;
    }

    .resource-item {
        width: calc(33.33% - 20px);
    }

    .resource-item__header-title {
        font-size: 22px;
    }

    .resource-item__header-title span {
        font-size: 11px;
    }

    .resource-item--blogs .resource-item__header-title span {
        font-size: 13px;
    }
}

@media only screen and (max-width: 991px) {
    .resource-tabs {
        -webkit-box-pack:justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .resource-tab {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
        padding: 0;
        height: 60px;
    }

    .resource-item {
        width: calc(50% - 20px);
    }
}

@media only screen and (max-width: 767px) {
    .resource-tab {
        font-size:14px;
    }

    .resource-item {
        width: calc(100% - 20px);
        min-height: auto;
    }

    .resource-item__header {
        height: auto;
        aspect-ratio: 1.7;
    }

    .resource-item--blogs {
        width: calc(50% - 20px);
    }

    .resource-item--blogs .resource-item__header {
        aspect-ratio: auto;
        height: -webkit-fill-available;
        height: -moz-available;
        height: fill-available;
    }
}

@media only screen and (max-width: 575px) {
    .resource-wrap {
        padding:50px 0 80px;
    }

    .resource-tabs {
        margin-bottom: 40px;
    }

    .resource-tab {
        font-size: 12px;
        height: 50px;
        border-width: 3px;
    }

    .resource-grid {
        margin-bottom: -30px;
    }

    .resource-item {
        margin-bottom: 30px;
    }

    .resource-item--blogs {
        width: calc(100% - 20px);
    }

    .resource-item--blogs .resource-item__header {
        aspect-ratio: auto;
        min-height: 150px;
    }
}

.resource-banner {
    background-image: -webkit-gradient(linear, left top, right top, from(#302971), to(#787aba));
    background-image: linear-gradient(90deg, #302971 0%, #787aba 100%);
    margin-bottom: 60px;
    border-radius: 20px;
    padding: 25px 47px;
    position: relative;
    overflow: hidden;
}

.resource-banner-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.resource-banner__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 600;
    font-size: 48px;
    text-transform: capitalize;
    background-image: -webkit-gradient(linear, left top, right top, from(#9d91d8), to(#f85a7e));
    background-image: linear-gradient(90deg, #9d91d8 0%, #f85a7e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: normal;
    border-right: 1px solid #6868aa;
    padding-right: 45px;
}

.resource-banner__meeting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 45px;
    position: relative;
    z-index: 2;
}

.resource-banner__date {
    font-weight: 600;
    font-size: 32px;
    text-transform: capitalize;
    color: #e2def6;
    line-height: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.resource-banner__date strong {
    font-weight: 600;
    font-size: 48px;
}

.resource-banner__place {
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
    color: #9e90d6;
    line-height: normal;
    margin-top: 6px;
}

.resource-banner__logo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #e2def6;
    width: 280px;
    padding: 55px;
}

.resource-banner__logo img {
    width: 100%;
}

.resource-banner__bg {
    width: 270px;
    position: absolute;
    right: 255px;
    top: 0;
    bottom: 0;
    background-image: url('https://altimacrm.com/wp-content/themes/altimacrm/./img/foot-banner-bg.svg');
    background-repeat: repeat-x;
    background-position: center left;
    background-size: cover;
}

@media only screen and (max-width: 1299px) {
    .resource-banner__logo {
        width:240px;
        padding: 40px;
    }

    .resource-banner__bg {
        width: 170px;
        right: 225px;
    }
}

@media only screen and (max-width: 1199px) {
    .resource-banner__title {
        font-size:32px;
    }

    .resource-banner__date {
        font-size: 20px;
    }

    .resource-banner__date strong {
        font-size: 32px;
    }

    .resource-banner__place {
        font-size: 16px;
    }

    .resource-banner__bg {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .resource-banner {
        padding-left:30px;
        padding-right: 30px;
    }

    .resource-banner__title {
        font-size: 24px;
        padding-right: 30px;
    }

    .resource-banner__meeting {
        padding-left: 30px;
    }

    .resource-banner__date {
        font-size: 16px;
    }

    .resource-banner__date strong {
        font-size: 24px;
    }

    .resource-banner__place {
        font-size: 12px;
    }

    .resource-banner__logo {
        width: 200px;
        padding: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .resource-banner {
        display:none;
    }
}

.faq-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 1064px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border-radius: 20px;
    -webkit-box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.1);
    box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.1);
    background-color: #fff;
    border: 1px solid #dee4ed;
}

.faq-item + .faq-item {
    margin-top: 20px;
}

.faq-item.is-open .faq-item__body {
    max-height: 2000px;
}

.faq-item.is-open .faq-item__content {
    padding-top: 5px;
    padding-bottom: 25px;
    opacity: 1;
}

.faq-item.is-open .faq-item__toggle {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq-item__header {
    position: relative;
    padding: 25px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
}

.faq-item__title {
    font-weight: 500;
    font-size: 20px;
}

.faq-item__toggle {
    padding: 0;
    cursor: pointer;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 40px;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
}

.faq-item__body {
    position: relative;
    padding: 0px 40px;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease;
    transition: max-height 0.5s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.faq-item__content {
    padding-top: 0;
    -webkit-transition: padding 0.3s, opacity 0.3s;
    transition: padding 0.3s, opacity 0.3s;
    font-size: 14px;
    opacity: 0;
}

@media only screen and (max-width: 1199px) {
    .faq-items {
        max-width:100%;
    }

    .faq-item__title {
        font-size: 18px;
    }

    .faq-item__content {
        font-size: 13px;
    }
}

@media only screen and (max-width: 575px) {
    .faq-item__header {
        padding-left:30px;
        padding-right: 30px;
    }

    .faq-item__title {
        font-size: 16px;
    }

    .faq-item__body {
        padding-left: 30px;
        padding-right: 30px;
    }

    .faq-item__content {
        font-size: 12px;
    }

    .faq-item__toggle {
        margin-left: 30px;
        width: 30px;
        height: 30px;
    }
}

.pagination {
    margin-top: 60px;
}

.pagination ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
}

.page-numbers {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    text-decoration: none;
    background-color: var(--grey);
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: #000;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.page-numbers:active {
    background-color: var(--blue);
    color: #fff;
}

.page-numbers.current {
    background-color: var(--blue);
    color: #fff;
    font-weight: 600;
}

.page-numbers.prev.disabled, .page-numbers.next.disabled {
    display: none;
}

@media (hover) {
    .page-numbers: hover {
        background-color:var(--blue);
        color: #fff;
    }
}

@media only screen and (max-width: 575px) {
    .pagination {
        margin-top:40px;
    }
}

.news-hero {
    position: relative;
    padding: 78px 0 89px;
    background-image: url('https://altimacrm.com/wp-content/themes/altimacrm/./img/news-bg.svg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    color: #fff;
}

.news-hero-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
}

.news-hero-title {
    text-transform: capitalize;
}

.news-hero-subtitle {
    margin-top: 40px;
    font-weight: 500;
    font-size: 20px;
    text-transform: capitalize;
}

.news-wrap {
    padding: 70px 0 100px;
}

.news-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.news-aside {
    width: 305px;
    margin-right: 127px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    position: sticky;
    top: 100px;
}

.news-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

.news-menu__indicator {
    position: absolute;
    left: 0;
    width: 4px;
    background: var(--blue);
    -webkit-transition: top 0.3s, height 0.3s;
    transition: top 0.3s, height 0.3s;
}

.news-menu__link {
    padding: 20px 0 20px 26px;
    border-left: 4px solid #e7ecf0;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
}

.news-menu__link.highlight {
    font-weight: 600;
}

.news-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 13px;
    color: #8590ac;
    margin-bottom: 30px;
}

.news-author {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.news-author__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #eff2f6;
    margin-right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.news-date {
    white-space: nowrap;
    border-left: 1px solid #dee4ed;
    margin-left: 30px;
    padding-left: 30px;
}

.news-image {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 45px;
}

.news-section {
    padding-left: 28px;
    color: #081830;
}

.news-section + .news-section {
    margin-top: 30px;
}

.news-title {
    margin: 0;
    position: relative;
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.news-title:before {
    position: absolute;
    content: '';
    top: 5px;
    left: -27px;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background-color: var(--blue);
    background-image: url('https://altimacrm.com/wp-content/themes/altimacrm/./img/check.svg');
    background-repeat: no-repeat;
    background-size: 9px 7px;
    background-position: center;
}

.news-pretext {
    font-size: 16px;
    margin-bottom: 50px;
}

.news-text {
    font-size: 14px;
    margin-top: 10px;
}

.news-text ul {
    padding: 0;
    margin: 0;
}

.news-text ul li {
    padding-left: 20px;
    position: relative;
}

.news-text ul li:before {
    position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    background-color: #081830;
    top: 9px;
    left: 8px;
    border-radius: 100%;
}

.news-text ul li + li {
    margin-top: 6px;
}

.news-social {
    width: 100%;
    margin-top: 60px;
    -webkit-box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.1);
    box-shadow: 0 5px 24px 0 rgba(5, 74, 152, 0.1);
    background: #fff;
    border-radius: 20px;
    border: 1px solid #dee4ed;
    padding: 30px;
}

.news-social__title {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 30px;
}

.news__btn {
    margin-top: 20px;
    width: 100%;
}

.related-posts {
    margin-bottom: 100px;
}

.related-posts .h3 {
    margin-bottom: 30px;
}

@media only screen and (max-width: 1199px) {
    .news-hero {
        padding:80px 0;
    }

    .news-hero-subtitle {
        font-size: 18px;
    }

    .news-aside {
        width: 250px;
        margin-right: 80px;
    }
}

@media only screen and (max-width: 991px) {
    .news-hero {
        background-position:left top;
    }

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

    .news-aside {
        width: 100%;
        position: static;
        top: auto;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 50px;
    }

    .news-menu {
        display: none;
    }

    .news-menu__indicator {
        display: none;
    }

    .news-social {
        margin-top: 0;
        width: calc(50% - 15px);
    }

    .news__btn {
        margin-top: 0;
        width: calc(50% - 15px);
    }
}

@media only screen and (max-width: 575px) {
    .news-hero {
        padding:60px 0;
    }

    .news-hero-subtitle {
        font-size: 16px;
        margin-top: 30px;
    }

    .news-wrap {
        padding: 50px 0 80px;
    }

    .news-header {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .news-image {
        margin-bottom: 35px;
        border-radius: 10px;
    }

    .news-title {
        font-size: 18px;
    }

    .news-pretext {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .news-text {
        font-size: 12px;
    }

    .news-text ul li:before {
        top: 7px;
    }

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

    .news-social {
        width: 100%;
    }

    .news__btn {
        margin-top: 20px;
        width: 100%;
    }

    .related-posts {
        margin-bottom: 80px;
    }
}

.news-social .social {
    margin: unset;
}
