/* media queries variables */
/* super extra small */
/* super small */
/* extra small */
a:link,
a:visited,
a:focus,
a:hover,
a:active {
  outline: none;
  text-decoration: none;
  color: #0081c5; }
  a:link:hover,
  a:visited:hover,
  a:focus:hover,
  a:hover:hover,
  a:active:hover {
    color: #00ade4; }

p {
  font-size: 16px;
  line-height: 22px;
  color: #363535; }

h1 {
  font-size: 30px;
  line-height: 30px;
  color: #0081c5;
  margin-bottom: 20px;
  font-weight: 700; }

h2 {
  font-size: 26px;
  line-height: 26px;
  color: #0081c5;
  margin-bottom: 18px;
  font-weight: 700; }

h3 {
  font-size: 22px;
  line-height: 22px;
  color: #0081c5;
  margin-bottom: 16px;
  font-weight: 700; }

h4 {
  font-size: 20px;
  line-height: 20px;
  color: #0081c5;
  margin-bottom: 14px;
  font-weight: 700; }

h5 {
  font-size: 18px;
  line-height: 18px;
  color: #0081c5;
  margin-bottom: 12px;
  font-weight: 700; }

h6 {
  font-size: 16px;
  line-height: 16px;
  color: #363535;
  margin-bottom: 10px;
  font-weight: 700; }

.btn {
  padding: 12px 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 10px;
  font-family: "Poppins", sans-serif; }
  .btn.--primary {
    background-color: #0081c5; }
    .btn.--primary:hover {
      background-color: #2cb6ff; }
  .btn.--secondary {
    background-color: #00ade4; }
    .btn.--secondary:hover {
      background-color: #4bd4ff; }
  .btn.--yellow {
    background-color: #ffdf01;
    color: black;
    font-size: 15px;
    font-weight: 700; }
    .btn.--yellow:hover {
      background-color: #ffec67; }

body, html, textarea {
  scroll-behavior: smooth; }

* {
  font-family: "Poppins", sans-serif !important; }

body.home {
  background-image: url(/assets/bg.png);
  background-repeat: no-repeat;
  background-size: 100%; }

.container {
  width: calc(100% - 200px);
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box; }
  @media (max-width: 1149px) {
    .container {
      width: calc(100% - 60px); } }
  @media (max-width: 1024px) {
    .container {
      width: calc(100% - 75px); } }
  @media (max-width: 500px) {
    .container {
      width: 100%; } }

.svgArrow {
  width: 10px;
  height: 10px;
  margin-left: 5px; }

.languageSelect {
  position: relative;
  height: 50px;
  font-weight: 500; }
  .languageSelect__actual {
    height: 100%;
    display: flex;
    text-transform: uppercase;
    align-items: center;
    width: auto;
    min-width: 40px;
    padding: 0px 0px 10px 0px; }
  .languageSelect__language-list {
    list-style: none;
    display: none;
    flex-flow: row wrap; }
    .languageSelect__language-list li {
      margin-bottom: 10px; }
      .languageSelect__language-list li :last-child {
        margin: 0;
        padding: 0;
        border: none; }
    .languageSelect__language-list a {
      color: #363535; }
  .languageSelect__arrow-down {
    position: absolute;
    right: 5px;
    top: 20px;
    width: 10px;
    height: 10px; }
  .languageSelect:hover {
    cursor: pointer; }
    .languageSelect:hover .languageSelect__language-list {
      display: flex;
      position: absolute;
      top: 50px; }

@media screen and (max-width: 992px) {
  .languageSelect {
    justify-self: flex-start; } }

.configuratorInfo {
  display: grid;
  grid-template-columns: 130px 1fr;
  grid-template-rows: auto 1fr;
  grid-gap: 20px; }
  .configuratorInfo__title {
    grid-row: 1;
    grid-column: 2;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5; }
  .configuratorInfo__description {
    grid-row: 2;
    grid-column: 2;
    font-size: 15px;
    line-height: 1.5; }
  .configuratorInfo__image {
    align-self: flex-start;
    grid-row: 1/3;
    grid-column: 1;
    margin-left: auto;
    margin-right: auto; }

@media screen and (max-width: 1301px) {
  .configuratorInfo {
    margin: 10px 0px; } }

@media screen and (max-width: 992px) {
  .configuratorInfo__description {
    width: 90%; } }

@media screen and (max-width: 480px) {
  .configuratorInfo {
    grid-template-columns: 1fr;
    grid-gap: 0px; }
    .configuratorInfo__title {
      grid-row: 2;
      grid-column: 1; }
    .configuratorInfo__description {
      grid-row: 3;
      grid-column: 1; }
    .configuratorInfo__image {
      grid-row: 1;
      grid-column: 1;
      margin: 0px 0px 10px 0px; } }

.viewport {
  width: 100%;
  height: auto; }
  .viewport__content {
    display: none; }
    .viewport__content.--active {
      display: flex;
      justify-content: center;
      flex-direction: column;
      padding: 0px 20px; }
    .viewport__content.--horizontal {
      flex-direction: row; }
      .viewport__content.--horizontal .viewport__description {
        width: auto;
        padding-right: 85px;
        line-height: 28px; }
      .viewport__content.--horizontal .viewport__image {
        width: 50%;
        margin-left: auto; }
      .viewport__content.--horizontal .viewport__title {
        margin-bottom: 40px;
        line-height: 1.5; }
  .viewport__description {
    font-size: 17px;
    width: 50%;
    line-height: 1.5; }
  .viewport__title {
    color: #0081c5;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.5; }
  .viewport__subtitle {
    font-size: 20px;
    color: #363535;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.5;
    margin-bottom: 50px; }
  .viewport__grid {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr); }

@media screen and (max-width: 1301px) {
  .viewport__grid {
    grid-gap: 10px; }
  .viewport__content.--horizontal {
    flex-direction: column; }
    .viewport__content.--horizontal .viewport__description {
      padding-right: 50px;
      font-size: 15px; }
    .viewport__content.--horizontal .viewport__image {
      width: 100%;
      margin: 50px auto 0px 0px; } }

@media screen and (max-width: 992px) {
  .viewport__grid {
    grid-template-columns: 1fr;
    grid-gap: 50px;
    grid-template-rows: repeat(6, max-content); } }

@media screen and (max-width: 480px) {
  .viewport__title {
    line-height: 1.25; }
  .viewport__grid {
    grid-gap: 20px; }
  .viewport__content {
    display: grid;
    margin-bottom: 40px; }
    .viewport__content.--horizontal {
      display: flex; }
      .viewport__content.--horizontal .viewport__title {
        margin-bottom: 20px; }
    .viewport__content.--active {
      padding: 0px;
      padding-top: 70px; }
  .viewport #configurators {
    padding-top: 0px; }
  .viewport__subtitle {
    margin-bottom: 30px; } }

.selectButtons {
  display: flex;
  width: 50%;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  min-height: 50px;
  margin-left: 20px; }
  .selectButtons__select-wrapper {
    display: none; }
  .selectButtons__button {
    color: #0081c5;
    height: 50px;
    border: none;
    background-color: none;
    background: none;
    border: none;
    outline: none;
    width: auto;
    margin-right: 50px;
    padding: 0px;
    font-size: 22px;
    z-index: 1;
    transition-duration: 0.5s; }
    .selectButtons__button.--active {
      color: white; }
    .selectButtons__button:hover {
      cursor: pointer; }
  .selectButtons__background {
    position: absolute;
    width: 33%;
    height: 50px;
    padding: 10px 20px;
    top: 0px;
    z-index: -1;
    box-sizing: border-box;
    background-color: #0081c5;
    border-radius: 50px;
    transition-duration: 0.5s; }
    .selectButtons__background__round {
      width: 33%;
      height: 50px;
      padding: 10px 20px;
      top: 0px;
      box-sizing: border-box;
      background-color: #0081c5;
      border-radius: 10px;
      color: white !important;
      font-weight: 400;
      transition-duration: 0.5s; }
      .selectButtons__background__round:hover {
        background-color: #0081c5c7 !important; }

@media screen and (max-width: 1301px) {
  .selectButtons {
    width: 70%; } }

@media screen and (max-width: 992px) {
  .selectButtons {
    height: 50px;
    width: 90%; }
    .selectButtons__background {
      height: 50px; }
    .selectButtons__button {
      height: 50px;
      font-size: 20px; } }

@media screen and (max-width: 768px) {
  .selectButtons {
    width: 100%; } }

@media screen and (max-width: 480px) {
  .selectButtons {
    margin-left: 0px;
    position: -webkit-sticky;
    position: sticky;
    top: -1px;
    padding-top: 20px;
    background-color: #fff; }
    .selectButtons__select-wrapper {
      display: flex;
      width: 100%;
      border: 2px solid #0081c5;
      padding: 10px 10px;
      border-radius: 10px;
      background-color: #fff; }
    .selectButtons__select {
      width: 100%;
      color: #0081c5;
      font-size: 17px;
      border: none;
      outline: none;
      background-color: #fff; }
    .selectButtons__button {
      display: none; }
    .selectButtons__background {
      display: none; } }

.opinions {
  background-color: #f5f5f7;
  border-radius: 20px;
  background-image: url("../assets/quote.svg");
  background-repeat: no-repeat;
  background-position: 30px -30px;
  background-size: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative; }
  .opinions__title {
    margin-top: 65px;
    margin-left: 40px;
    color: #000;
    font-size: 30px; }
  .opinions__pagination {
    position: absolute;
    right: 40px;
    top: 65px; }
    .opinions__pagination .swiper-pagination-bullet {
      margin: 2px; }
  .opinions__content {
    height: auto;
    display: flex;
    flex-direction: row; }
    .opinions__content .swiper-slide {
      max-width: 100% !important; }
  .opinions__slider {
    width: 80%;
    overflow: hidden; }
  .opinions__arrow {
    width: 10%;
    height: 100%;
    z-index: 999999;
    outline: none;
    background-color: rgba(0, 0, 0, 0);
    border: none; }
    .opinions__arrow:hover {
      cursor: pointer; }
      .opinions__arrow:hover svg path {
        fill: #0081c5; }
    .opinions__arrow.--left svg {
      transform: rotate(180deg); }
    .opinions__arrow svg {
      width: 30px; }
  .opinions__slide-description {
    padding: 40px;
    font-size: 16px;
    line-height: 28px; }
  .opinions__slide-author-image {
    height: 50px;
    width: auto;
    margin-right: 30px; }
  .opinions__slide-author-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 40px;
    font-weight: 700; }

@media screen and (max-width: 480px) {
  .opinions {
    padding-bottom: 50px; }
    .opinions__arrow {
      display: none; }
    .opinions__slider {
      width: 100%; }
    .opinions__slide-description {
      padding: 10px 15px 20px 15px;
      line-height: 1.5; }
    .opinions__slide-author-wrapper {
      flex-direction: column;
      align-items: flex-start;
      padding-left: 20px; }
      .opinions__slide-author-wrapper p {
        margin: 20px 0px;
        line-height: 18px; }
    .opinions__pagination {
      bottom: 15px;
      left: 15px;
      top: auto; }
    .opinions__title {
      margin-left: 20px; }
    .opinions__pagination {
      display: flex;
      justify-content: center; }
      .opinions__pagination .swiper-pagination-bullet {
        width: 15px;
        height: 15px;
        margin: 10px 20px; } }

.certificates {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #f5f5f7;
  padding: 70px 20px;
  border-radius: 20px; }
  .certificates__image {
    width: 60%;
    margin-bottom: 40px; }
  .certificates__description {
    width: 80%;
    font-weight: 500;
    font-size: 17px;
    line-height: 2; }

@media screen and (max-width: 480px) {
  .certificates {
    margin-bottom: 50px;
    padding: 50px 0px; }
    .certificates__description {
      width: 90%;
      line-height: 1.5;
      font-weight: 400; }
    .certificates__image {
      width: 100%; } }

.header_container {
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 50px; }

.header__hamburger {
  display: none; }
  .header__hamburger:hover {
    cursor: pointer; }

.header__logo {
  margin-right: 30px;
  height: 100%; }

.header__controls-wrapper {
  display: flex;
  align-items: center; }

.header__nav {
  margin-left: auto;
  height: 50px; }
  .header__nav-menu-top {
    position: relative; }
    .header__nav-menu-top:after {
      position: absolute;
      width: 100%;
      height: 50px;
      left: 0px;
      top: 100%;
      content: ''; }
  .header__nav > ul {
    display: flex;
    align-items: center; }
  .header__nav > ul li {
    font-weight: 600;
    color: #363535;
    position: relative;
    white-space: nowrap;
    margin-right: 50px;
    line-height: 40px; }
  .header__nav a {
    color: #363535;
    text-decoration: none; }
  .header__nav a:hover {
    color: #0081c5; }
  .header__nav a:hover + svg * {
    fill: #0081c5; }

.header__nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 40px; }
  .header__nav-menu:hover .header__nav-sub-menu {
    display: flex;
    flex-direction: column; }

.header__nav-sub-menu {
  display: none;
  position: absolute;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  top: 50px;
  left: 0px;
  z-index: 99999; }
  .header__nav-sub-menu ul li {
    line-height: 30px;
    margin-right: 0px;
    font-weight: 400; }
  .header__nav-sub-menu a {
    color: #363535;
    font-weight: 400; }

.header__nav-blue-button {
  white-space: nowrap;
  line-height: 50px; }

@media screen and (max-width: 1680px) {
  .header__nav > ul li {
    margin-right: 25px; } }

@media screen and (max-width: 1450px) {
  .header__nav > ul li {
    margin-right: 20px; } }

@media screen and (max-width: 1301px) {
  .header__logo {
    height: 40px;
    width: 152px; } }

@media screen and (max-width: 1200px) {
  .header__nav {
    font-size: 14px; }
    .header__nav ul > li {
      margin-right: 10px; }
    .header__nav .btn.--primary {
      font-size: 14px; } }

@media screen and (max-width: 992px) {
  .header_container {
    width: 100%;
    height: 70px;
    margin: 0px 0px;
    top: 0px;
    background-color: #fff;
    z-index: 99999999;
    justify-content: space-between;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05); }
    .header_container.--active {
      position: fixed; }
      .header_container.--active .header__hamburger-bar {
        background-color: rgba(0, 0, 0, 0); }
        .header_container.--active .header__hamburger-bar:before {
          top: 50%;
          transform: rotate(45deg);
          transition-duration: 0.5s; }
        .header_container.--active .header__hamburger-bar:after {
          width: 100%;
          top: 50%;
          transition-duration: 0.5s;
          transform: rotate(-45deg); }
      .header_container.--active .btn {
        margin-left: 10px;
        margin-top: 20px; }
      .header_container.--active .header__nav {
        display: flex;
        position: fixed;
        top: 70px;
        left: 0px;
        height: calc(100vh - 70px);
        width: 100vw;
        background-color: none; }
        .header_container.--active .header__nav > ul {
          width: 50%;
          height: 100%;
          flex-direction: column;
          align-items: flex-start;
          background-color: #fff; }
        .header_container.--active .header__nav ul > li > a {
          padding-left: 10px; }
      .header_container.--active .header__nav-menu {
        padding: 0px;
        width: 100%;
        align-items: flex-start; }
        .header_container.--active .header__nav-menu.--active {
          color: #fff;
          width: 100%;
          background-color: #0081c5; }
          .header_container.--active .header__nav-menu.--active svg {
            transform: rotate(180deg); }
          .header_container.--active .header__nav-menu.--active path {
            fill: #fff; }
          .header_container.--active .header__nav-menu.--active .header__nav-menu-top a {
            color: #fff; }
          .header_container.--active .header__nav-menu.--active .header__nav-sub-menu {
            display: flex;
            max-height: 500px;
            border-radius: 0px;
            transition-duration: 0.5s;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
      .header_container.--active .header__nav-menu-top {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 10px;
        box-sizing: border-box; }
      .header_container.--active .header__nav-sub-menu {
        width: 100%;
        box-shadow: none; }
    .header_container:hover .header__nav-sub-menu {
      display: flex;
      max-height: 0px;
      transition-duration: 0.5s; }
  .header__nav {
    display: none; }
    .header__nav-menu-top::after {
      display: flex; }
  .header__nav-sub-menu {
    border-radius: 0px;
    overflow: hidden;
    background-color: #f7f6f6; }
    .header__nav-sub-menu a {
      color: #0081c5; }
  .header__hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    width: 45px;
    height: 45px;
    background-color: #0081c5;
    border: none;
    outline: none;
    border-radius: 10px;
    margin: 0px 0px 0px 20px; }
  .header__hamburger-bar {
    width: 90%;
    height: 3px;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    transition-duration: 0.5s; }
    .header__hamburger-bar:after {
      position: absolute;
      top: 7px;
      right: 0px;
      content: '';
      width: 80%;
      height: 3px;
      background-color: #fff;
      border-radius: 10px;
      transition-duration: 0.5s; }
    .header__hamburger-bar:before {
      position: absolute;
      bottom: 7px;
      right: 0px;
      content: '';
      width: 100%;
      height: 3px;
      background-color: #fff;
      border-radius: 10px;
      transition-duration: 0.5s; }
  .header__nav-sub-menu {
    position: static;
    padding: 0px; } }

@media screen and (max-width: 480px) {
  .header_container.--active .header__nav > ul {
    width: 100%;
    padding-top: 10px; }
  .header__hamburger {
    width: 40px;
    height: 40px; }
  .header__logo {
    height: 35px;
    width: 133px; }
  .header__nav-sub-menu {
    border-radius: 0px; } }

footer {
  width: 100vw;
  max-width: 100%;
  height: auto; }

.footer {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  height: auto;
  padding-top: 65px; }
  .footer__image {
    height: 45px; }
  .footer__content {
    display: grid;
    grid-template-columns: auto max-content max-content max-content min-content;
    grid-gap: 70px; }
  .footer__title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 20px; }
  .footer__copyrights, .footer__content {
    width: 100%; }
  .footer__copyrights {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 40px;
    padding-bottom: 10px;
    grid-row: 2;
    justify-content: space-between; }
    .footer__copyrights p, .footer__copyrights a {
      font-size: 12px;
      margin: 0px 10px 0px 0px; }
    .footer__copyrights a, .footer__copyrights a:hover {
      color: #838181; }
  .footer__info-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 60px;
    background-color: #fff;
    margin: 20px 0px;
    border-radius: 40px;
    color: #0081c5;
    font-weight: 500;
    box-shadow: 0px 8px 8px #a7a7a769; }
  .footer__column {
    display: flex;
    flex-direction: column; }
  .footer__link {
    padding: 0px;
    width: max-content;
    margin: 10px 0px 0px 0px;
    font-weight: 500;
    color: #0081c5;
    line-height: 16px; }
  .footer__column-container {
    display: flex;
    flex-direction: column; }
    .footer__column-container div {
      display: flex;
      flex-direction: column; }
  .footer__list > p {
    color: #0081c5;
    font-weight: 500; }
  .footer__list > ul {
    list-style: none; }
  .footer__list > ul > li {
    margin: 5px 0px;
    font-size: 13px; }
  .footer__list > ul > li > a {
    color: #363535; }

@media screen and (max-width: 1301px) {
  .footer__content {
    grid-template-columns: 200px max-content max-content;
    margin-bottom: 50px; }
  .footer .--career {
    grid-row: 1;
    grid-column: 3; } }

@media screen and (max-width: 900px) {
  .footer__content {
    grid-template-columns: 200px 200px;
    margin-bottom: 50px;
    grid-gap: 30px; }
  .footer .--career {
    grid-row: auto;
    grid-column: auto; }
  .footer__copyrights {
    flex-direction: column; }
    .footer__copyrights img {
      width: 100%; } }

@media screen and (max-width: 500px) {
  .footer__content {
    grid-template-columns: 1fr; }
  .footer__copyrights {
    flex-direction: column;
    margin-top: 0px;
    align-items: flex-start; } }

.hero {
  display: flex;
  align-items: center;
  margin-bottom: 80px; }
  .hero__title {
    position: relative;
    margin-right: auto;
    margin-top: auto;
    max-width: 40%;
    font-size: clamp(17px, 2.5vw, 40px);
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 40px;
    color: #363535; }
    .hero__title::after {
      position: absolute;
      content: '';
      width: 100px;
      height: 2px;
      background-color: #363535;
      bottom: -30px;
      left: 0px; }
  .hero__image {
    margin-left: auto;
    width: 50%; }
    .hero__image img {
      width: 110%; }

@media screen and (max-width: 1301px) {
  .hero__image {
    width: 400px; }
  .hero__title {
    line-height: 1.4; } }

@media screen and (max-width: 992px) {
  .hero {
    margin-top: 90px; }
    .hero__title:after {
      display: none; } }

@media screen and (max-width: 768px) {
  .hero {
    margin-bottom: 50px;
    flex-direction: column; }
    .hero__title {
      max-width: 100%;
      margin-bottom: 40px; }
    .hero__image {
      width: 90%;
      margin: 60px auto 0px auto; } }

@media screen and (max-width: 480px) {
  .hero {
    margin-top: 30px; }
    .hero__title {
      margin-bottom: 20px; }
    .hero__image {
      margin: 40px auto 0px auto; } }

.ourClients {
  margin-bottom: 80px; }
  .ourClients__title {
    color: #0081c5;
    font-size: 35px;
    margin-bottom: 80px; }
  .ourClients__images {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    margin: 0px auto;
    grid-gap: 20px; }
    .ourClients__images img {
      margin: 0px auto;
      max-height: 70px;
      width: auto;
      align-self: center; }

.ourClients__imagessubpage {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 50px 39px; }

@media screen and (max-width: 1900px) {
  .ourClients__images {
    grid-template-columns: 1fr 1fr 1fr; } }

@media screen and (max-width: 992px) {
  .ourClients__title {
    text-align: center; }
  .ourClients__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min-content;
    margin: 0px auto;
    grid-gap: 20px; }
    .ourClients__images img {
      margin: 0px auto; } }

@media screen and (max-width: 768px) {
  .ourClients__images {
    display: grid;
    grid-template-columns: 1fr; } }

.solutions {
  margin-bottom: 80px;
  box-sizing: border-box; }
  .solutions__title {
    font-size: 35px;
    color: #0081c5;
    margin-bottom: 40px;
    line-height: 1.5; }
  .solutions__select-buttons {
    margin-bottom: 50px; }
  .solutions .image-eu {
    float: right;
    margin-top: -25px; }

@media screen and (max-width: 480px) {
  .solutions {
    width: 100%; }
    .solutions__title {
      font-size: 30px;
      margin-bottom: 20px; }
    .solutions__select-buttons {
      margin-bottom: 30px;
      padding-top: 10px; } }

.contactForm {
  background-color: #0081c5;
  border-radius: 20px;
  padding: 0 40px;
  margin-top: 80px; }
  .contactForm--demo {
    margin-top: 0px; }
  .contactForm__subtitle {
    padding-top: 20px; }
  .contactForm__link {
    display: none !important; }
  .contactForm__title {
    font-size: 30px !important;
    margin-top: 10px !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1.1 !important;
    padding-top: 20px; }
  .contactForm__field {
    display: flex;
    flex-direction: column; }
    .contactForm__field.--textarea {
      padding: 15px 0px;
      grid-column: 1/3;
      box-sizing: border-box; }
    .contactForm__field.field2 {
      display: none; }
    .contactForm__field label {
      color: white;
      margin: 20px 0px; }
    .contactForm__field input, .contactForm__field textarea {
      color: white;
      padding-left: 10px; }
    .contactForm__field input {
      background: none;
      outline: none;
      height: 50px;
      width: auto;
      border: 1px solid #fff; }
    .contactForm__field textarea {
      grid-column: 1/3;
      background: none;
      outline: none;
      height: 150px;
      width: 100%;
      border: 1px solid #fff;
      resize: none;
      margin-bottom: 20px;
      box-sizing: border-box;
      padding: 15px 10px; }
  .contactForm__form {
    height: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, auto);
    column-gap: 40px;
    margin-top: 40px; }
  .contactForm__checkbox {
    display: flex;
    grid-template-columns: auto auto;
    margin-bottom: 40px;
    grid-column: 1/3; }
    .contactForm__checkbox label {
      line-height: 1.5;
      color: white;
      margin: 0px;
      font-size: 13px; }
    .contactForm__checkbox input {
      margin: 0px 15px;
      height: 18px;
      width: 18px; }
  .contactForm__submit {
    grid-column: 2;
    margin-left: auto;
    margin-bottom: 30px;
    width: 200px;
    border-radius: 20px; }

@media screen and (max-width: 480px) {
  .contactForm {
    padding: 0 20px; }
    .contactForm__form {
      display: flex;
      flex-direction: column;
      margin-top: 20px; }
    .contactForm__title {
      font-size: 20px !important;
      line-height: 1.5;
      margin-top: 30px !important;
      font-weight: 700;
      color: #fff !important; }
    .contactForm__submit {
      margin-left: auto;
      margin-right: auto; } }

.profits__title {
  max-width: 70%;
  margin-top: 80px;
  margin-bottom: 80px;
  font-size: 35px;
  font-weight: 700;
  color: #0081c5;
  line-height: 1.5; }

.profits__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr); }

.profits__percent {
  position: relative;
  font-size: 40px;
  font-weight: 300;
  color: #0081c5;
  margin-bottom: 40px; }
  .profits__percent::before {
    position: absolute;
    content: '';
    height: 2px;
    width: 50px;
    top: -20px;
    background-color: #0081c5; }

.profits__description {
  width: 80%;
  line-height: 1.5;
  font-size: 15px;
  margin-left: 0px; }

@media screen and (max-width: 768px) {
  .profits__title {
    max-width: 90%;
    width: 90%; }
  .profits__content {
    grid-template-columns: 1fr;
    grid-gap: 50px; } }

@media screen and (max-width: 480px) {
  .profits__title {
    margin-top: 20px; } }

.subpage .header {
  background-color: #f5f5f7;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 1px;
  padding-bottom: 1px; }
  .subpage .header .container {
    max-width: 1800px; }

.subpage .container {
  max-width: 1216px; }

.subpage .content p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
  color: #363535; }

.subpage .content h1 {
  font-size: 32px;
  line-height: 30px;
  color: #0081c5;
  margin-bottom: 20px;
  font-weight: 700; }

.subpage .content h2 {
  font-size: 24px;
  line-height: 26px;
  color: #0081c5;
  margin-top: 45px;
  margin-bottom: 18px;
  font-weight: 700; }

.subpage .content h3 {
  font-size: 22px;
  line-height: 22px;
  color: #0081c5;
  margin-top: 45px;
  margin-bottom: 16px;
  font-weight: 700; }

.subpage .content h4 {
  font-size: 16px;
  line-height: 20px;
  color: #0081c5;
  margin-top: 45px;
  margin-bottom: 14px;
  font-weight: 700; }

.subpage .content h5 {
  font-size: 18px;
  line-height: 18px;
  color: #0081c5;
  margin-bottom: 12px;
  font-weight: 700; }

.subpage .content h6 {
  font-size: 16px;
  line-height: 16px;
  color: #363535;
  margin-bottom: 10px;
  font-weight: 700; }

.subpage .content ul {
  margin-inline-start: 20px;
  line-height: 30px;
  margin-inline-end: 0px;
  font-weight: 300; }
  .subpage .content ul ul ul ul {
    list-style-type: disc; }

.subpage .content ol {
  margin-inline-start: 20px;
  line-height: 30px;
  margin-inline-end: 0px;
  font-weight: 300; }
  .subpage .content ol ol {
    list-style-type: lower-alpha; }
    .subpage .content ol ol ol {
      list-style-type: lower-roman; }

.subpage .content.container > section {
  margin-top: 30px; }

.subpage .content.container .col-md > img {
  object-fit: cover;
  max-width: 100%;
  max-height: 100%; }

.subpage .content.lead {
  margin-top: 100px;
  margin-bottom: 60px;
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  color: #4D4D4D; }

.subpage .content .certificates__description {
  width: 80%;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px; }

.subpage footer {
  margin-top: 10px; }

.boxesWrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-gap: 20px;
  margin-bottom: 0px;
  box-sizing: border-box; }

.boxesWrapperBackground {
  width: 100%;
  padding-bottom: 100px;
  background: linear-gradient(360deg, rgba(196, 196, 196, 0.35) -36.85%, rgba(196, 196, 196, 0) 69.25%); }

.moveTop {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 25px;
  bottom: 25px;
  background-color: #0081c5;
  display: flex;
  opacity: 0;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition-duration: 0.5s; }
  .moveTop img {
    width: 50%; }
  .moveTop.--active {
    opacity: 1; }

@media screen and (max-width: 1301px) {
  .boxesWrapper {
    grid-template-columns: 1fr;
    width: 70%; } }

@media screen and (max-width: 992px) {
  .boxesWrapper {
    width: 80%; } }

@media screen and (max-width: 600px) {
  .boxesWrapper {
    width: 100%; } }

@media screen and (max-width: 480px) {
  body {
    background-image: none; } }
