#CybotCookiebotDialog a,
#CybotCookiebotDialog div,
#CybotCookiebotDialogBodyContentControls,
#CybotCookiebotDialogBodyContentTitle {
  font-family: "Montserrat", "Segoe UI", Arial, Helvetica, Verdana, sans-serif !important;
}

a#CybotCookiebotDialogBodyLevelButtonLevelOptinDeclineAll {
  width: auto !important;
}

@media only screen and (min-width: 768px) {
  #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelectionWrapper {
    display: flex !important;
    justify-content: space-between;
    margin-left: 8px !important;
    float: none !important;
  }
  a#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll,
  a#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection,
  a#CybotCookiebotDialogBodyLevelButtonLevelOptinDeclineAll {
    margin: 6px 0 0;
  }
}
.menu-header {
  display: flex;
  width: 100%;
  z-index: 10000;
  top: 0;
  height: 90px;
  background-color: rgb(255, 255, 255);
  position: fixed;
  box-shadow: 0px 10px 34px 6px rgba(106, 108, 109, 0.09);
  transition: all ease-in-out 0.4s;
}
.menu-header .innerContainer {
  color: #242a30;
  font-size: 12px;
  position: relative;
  max-width: 75.2083333333vw;
  margin: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .menu-header .innerContainer {
    padding: 0 18px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .menu-header .innerContainer .rightPart .demo-button {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .menu-header .innerContainer .rightPart {
    max-width: 47px;
  }
}
.menu-header .innerContainer .header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.menu-header .innerContainer .header-logo .h-logo {
  max-width: 134px;
}
.menu-header .innerContainer .header-logo .logo-label {
  color: #242a30;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.08em;
  transition: all ease-in-out 0.4s;
}
@media only screen and (max-width: 767px) {
  .menu-header .innerContainer .header-logo .logo-label {
    display: none;
  }
}
.menu-header .innerContainer .header-logo:hover .logo-label {
  margin-left: 7px;
}
.menu-header .innerContainer .menu {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin-top: 25px;
  margin-right: 59px;
}
@media only screen and (max-width: 1199px) {
  .menu-header .innerContainer .menu {
    display: none;
  }
}
.menu-header .innerContainer .menu .top-level-li {
  display: inline-block;
  list-style: none;
  margin: 0 5px;
  padding: 0;
  position: relative;
  height: 37px;
}
@media only screen and (min-width: 991px) and (max-width: 1300px) {
  .menu-header .innerContainer .menu .top-level-li {
    margin: 0 2px;
  }
}
.menu-header .innerContainer .menu .top-level-li > a {
  display: inline-block;
  position: relative;
  height: 27px;
  font-weight: 500;
  letter-spacing: 0.025em;
  font-size: 12px;
  text-decoration: none;
  color: #000;
  padding: 0 7px;
  border-bottom: solid 4px transparent;
  transition: color ease-in-out 0.4s, border-bottom ease-in-out 0.4s;
}
.menu-header .innerContainer .menu .top-level-li > a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  height: 4px;
  left: 0;
  width: 0;
  background: #39bede;
  transition: width ease-in-out 0.4s;
}
.menu-header .innerContainer .menu .top-level-li > a:hover {
  border-bottom: 4px solid #46bedc;
}
.menu-header .innerContainer .menu .top-level-li > a:hover::after {
  width: 100%;
}
.menu-header .innerContainer .menu .top-level-li > a .svg-arrow {
  position: absolute;
  top: 2px;
  right: 0;
  width: 15.6px;
  height: 12.4px;
}
.menu-header .innerContainer .menu .top-level-li > a .svg-arrow path {
  fill: #000000;
}
.menu-header .innerContainer .menu .top-level-li > a .svg-arrow.blue-rotate {
  top: 50%;
  left: 80px;
  transform: rotate(270deg) translateX(100%);
}
.menu-header .innerContainer .menu .top-level-li > a .svg-arrow.blue-rotate path {
  fill: #46bedc;
}
.menu-header .innerContainer .menu .top-level-li.active > a {
  border-bottom: 4px solid #46bedc;
}
.menu-header .innerContainer .menu .top-level-li.active > a::after {
  width: 100%;
}
.menu-header .innerContainer .menu .top-level-li:hover .sub-menu {
  top: 38px;
  opacity: 1;
  pointer-events: all;
}
.menu-header .innerContainer .menu .top-level-li .has-submenu-link {
  padding-right: 20px;
  z-index: 1;
}
.menu-header .innerContainer .menu .sub-menu {
  position: absolute;
  padding: 30px 50px;
  background-color: #ffffff;
  background: linear-gradient(180deg, rgb(247, 247, 247) 0%, #F7F7F7 100%);
  border-radius: 25px;
  top: -25px;
  min-width: 500px;
  left: 50%;
  opacity: 0;
  z-index: 0;
  transform: translateX(-50%);
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out;
  pointer-events: none;
  display: grid;
  grid-template-rows: repeat(4, auto);
  grid-auto-columns: auto;
  grid-auto-flow: column;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.menu-header .innerContainer .menu .sub-menu::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  background-color: #f7f7f7;
  transform: translateX(-50%) rotate(45deg);
}
.menu-header .innerContainer .menu .sub-menu .sub-li {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 15px;
}
.menu-header .innerContainer .menu .sub-menu .sub-li a {
  position: relative;
  text-decoration: none;
  font-family: inherit;
  font-weight: bold;
  color: black;
  font-size: 15px;
  display: block;
  margin-bottom: 5px;
}
.menu-header .innerContainer .menu .sub-menu .sub-li a .svg-arrow {
  position: relative;
  top: 1px;
  width: 15.6px;
  height: 12.4px;
  margin-left: 4px;
}
.menu-header .innerContainer .menu .sub-menu .sub-li a .svg-arrow.blue-rotate {
  transform: rotate(270deg);
}
.menu-header .innerContainer .menu .sub-menu .sub-li a .svg-arrow.blue-rotate path {
  fill: #46bedc;
}
.menu-header .innerContainer .search-button:not(.s-button) {
  position: absolute;
  top: 0;
  right: 97px;
  margin-top: 0;
  max-width: 47px !important;
  cursor: pointer;
  max-height: 70px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .menu-header .innerContainer .search-button:not(.s-button) {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .menu-header .innerContainer .search-button:not(.s-button) {
    right: 160px;
  }
}
.menu-header .innerContainer .search-button:not(.s-button) .search-button-img {
  transition: all ease-in-out 0.3s;
}
.menu-header .innerContainer .search-button:not(.s-button) .search-button-img:hover {
  margin-top: -66px;
}
.menu-header .innerContainer .burger.mobile {
  display: block;
  max-width: 47px;
}
@media only screen and (min-width: 1200px) {
  .menu-header .innerContainer .burger.mobile {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .menu-header .innerContainer .burger.mobile {
    position: relative;
    top: -10px;
  }
}
.menu-header .demo-button {
  background-color: #46bedc;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 10px;
  box-shadow: 4px 5px 14.87px 1.12px rgba(70, 190, 220, 0.18);
  transition: all ease-in-out 0.4s;
  letter-spacing: 0.025em;
  top: 0px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .menu-header .demo-button {
    padding: 10px 30px;
    font-size: 12px;
    border-radius: 100px;
    margin: 0 auto;
    margin-top: 34px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .menu-header .demo-button {
    top: 10px;
    right: 100px;
  }
}
.menu-header .demo-button:hover {
  background: #fff;
  color: #46bedc;
}
.menu-header .modal {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  padding: 40px;
  background-color: #fff;
  text-align: right;
  height: 100vh;
  background-image: url(../images/modal-bg.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: inherit;
  opacity: 0;
  top: -90%;
  transition: all 0.65s ease-out;
}
.menu-header .modal.menu-mobile {
  overflow: auto;
  background-image: none;
}
@media only screen and (min-width: 1200px) {
  .menu-header .modal.menu-mobile {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .menu-header .modal.menu-mobile .demo-button,
  .menu-header .modal.menu-mobile form {
    display: none;
  }
}
.menu-header .modal.menu-mobile .mobile-menu-list {
  margin: 0;
  padding: 0;
  font-weight: 300;
  width: 100%;
}
.menu-header .modal.menu-mobile .mobile-menu-list.expanded {
  padding: 0 0 200px;
}
.menu-header .modal.menu-mobile .mobile-menu-list .mobile-li {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  min-height: 50px;
}
.menu-header .modal.menu-mobile .mobile-menu-list .mobile-li a {
  color: #46bedc;
  display: block;
  margin: 10px auto;
  margin: 0;
  padding: 17px 20px;
  padding-left: 0;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  max-width: 160px;
}
.menu-header .modal.menu-mobile .mobile-menu-list .mobile-li > a {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  padding: 17px 0;
  text-transform: uppercase;
}
.menu-header .modal.menu-mobile .mobile-menu-list .mobile-li .has-submenu-link {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
.menu-header .modal.menu-mobile .mobile-menu-list .mobile-li .has-submenu-link .plus-btn {
  position: relative;
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  border-radius: 25px;
  box-shadow: 0px 0px 10px rgba(70, 190, 220, 0.16);
}
.menu-header .modal.menu-mobile .mobile-menu-list .mobile-li .has-submenu-link .plus-btn .line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background-color: #46bedc;
  transform: translate(-50%, -50%);
}
.menu-header .modal.menu-mobile .mobile-menu-list .mobile-li .has-submenu-link .plus-btn .line.line-vertical {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 0.3s ease-out;
}
.menu-header .modal.menu-mobile .mobile-menu-list .mobile-li .has-submenu-link .plus-btn .line.line-vertical.be-minus {
  opacity: 0;
}
.menu-header .modal.menu-mobile .mobile-menu-list .mobile-li .has-submenu-link .svg-arrow {
  display: none;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.menu-header .modal.menu-mobile .mobile-menu-list .mobile-li .has-submenu-link .svg-arrow.rotate {
  transform: translateY(-50%) rotate(180deg);
}
.menu-header .modal.menu-mobile .mobile-menu-list .sub-menu {
  padding: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
.menu-header .modal.menu-mobile .mobile-menu-list .sub-menu.open {
  display: flex;
  flex-wrap: wrap;
  opacity: 1;
  max-height: 300px;
}
.menu-header .modal.menu-mobile .mobile-menu-list .sub-menu .sub-li {
  display: block;
  width: auto;
  white-space: nowrap;
}
.menu-header .modal.menu-mobile .mobile-menu-list .sub-menu .sub-li a {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 5px;
  color: #000;
  max-width: 100%;
}
.menu-header .modal.menu-mobile .mobile-menu-list .sub-menu .sub-li span {
  display: none;
}
.menu-header .modal.menu-mobile .mobile-menu-list .sub-menu .sub-li .svg-arrow {
  position: relative;
  top: 4px;
  transform: rotate(270deg) scale(0.6);
}
.menu-header .modal.menu-mobile .mobile-menu-list .sub-menu .sub-li .svg-arrow path {
  fill: #46bedc;
}
.menu-header .modal .innerContainer {
  position: static;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .menu-header .modal .innerContainer {
    padding: 0;
  }
}
.menu-header .modal .innerContainer .toolbar {
  display: flex;
  align-self: flex-end;
  min-height: 20px;
}
.menu-header .modal .innerContainer .toolbar .button-close-wrap {
  position: absolute;
  top: 27px;
  right: 20px;
  padding: 3px;
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
  color: #46bedc;
  display: inline-block;
  text-decoration: none;
}
.menu-header .modal .innerContainer .toolbar .button-close-wrap .button-close {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
}
.menu-header .modal .innerContainer .toolbar .button-close-wrap .button-close .line {
  display: block;
  width: 25px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #000000;
}
.menu-header .modal .innerContainer .toolbar .button-close-wrap .button-close .line-one {
  transform: translate(-50%, -50%) rotate(45deg);
}
.menu-header .modal .innerContainer .toolbar .button-close-wrap .button-close .line-two {
  transform: translate(-50%, -50%) rotate(135deg);
}
.menu-header .modal .fixed-mobile {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFffFF 20%);
  position: fixed;
  bottom: 0;
  padding: 25px;
  width: 100%;
  pointer-events: none;
}
.menu-header .modal form {
  position: relative;
  width: 100%;
}
.menu-header .modal form a {
  width: 32px;
  height: 32px;
  display: block;
  margin-left: -40px;
  position: relative;
  background-image: url(../images/search.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 15px;
}
.menu-header .modal form a span {
  visibility: hidden;
}
.menu-header .modal form input {
  border: none;
  border-bottom: 1px solid #242a30;
  padding-bottom: 13px;
  font-size: 20px;
  font-weight: 300;
  background: none;
  width: 100%;
  margin: 0;
  margin-top: 40px;
  border-radius: 0;
  line-height: normal;
  font-family: inherit;
}
@media only screen and (max-width: 767px) {
  .menu-header .modal form input {
    font-size: 15px;
  }
}
.menu-header .modal form label {
  display: none;
}
.menu-header .modal.search-section .toolbar .button-close-wrap {
  position: static;
}
.menu-header .modal.search-section form {
  top: 30vh;
  height: 30vh;
  text-align: center;
}
.menu-header .modal.search-section form input {
  padding: 10px;
  border: none;
  border-bottom: solid 1px #242a30;
  font-size: 25px;
  font-weight: 300;
  padding-right: 5%;
  width: 75%;
  color: #46bedc;
  background: transparent;
  box-sizing: content-box;
}
.menu-header .modal.search-section form label {
  display: none;
}
.menu-header .modal.search-section form .s-button {
  display: inline-block;
  position: relative;
  bottom: 15px;
  transition: all 0.2s ease-in-out;
}
.menu-header .modal.search-section form .s-button:hover {
  background-position: 0px -45px;
}
.menu-header .modal.search-section form .s-button span {
  visibility: hidden;
}
.menu-header .modal.show {
  opacity: 1;
  top: 0;
  z-index: 99999;
}
.menu-header .modal.show .fixed-mobile {
  pointer-events: all;
}

.footer-section {
  background-color: #1b2025;
}
.footer-section p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 300;
}
.footer-section .innerContainer {
  width: 100%;
  max-width: 1168px;
  margin: auto;
  padding-bottom: 2px;
}
@media only screen and (max-width: 767px) {
  .footer-section .innerContainer {
    padding: 2px 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-section .innerContainer {
    max-width: 910px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-section .innerContainer {
    max-width: 90%;
  }
}
.footer-section .innerContainer .footer-up {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  width: 100%;
  flex-wrap: nowrap;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .footer-section .innerContainer .footer-up {
    flex-direction: column-reverse;
  }
}
.footer-section .innerContainer .footer-up h5, .footer-section .innerContainer .footer-up span {
  font-size: 12px;
  line-height: 20px;
  color: #3ebede;
  font-weight: 600;
}
@media only screen and (min-width: 992px) {
  .footer-section .innerContainer .footer-up .leftPart {
    max-width: 40%;
  }
}
.footer-section .innerContainer .footer-up .leftPart .footer-logos {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .footer-section .innerContainer .footer-up .leftPart .footer-logos {
    display: none;
  }
}
.footer-section .innerContainer .footer-up .leftPart .footer-logos .logo-wrap {
  max-width: 40%;
}
.footer-section .innerContainer .footer-up .leftPart .address-wrap {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .footer-section .innerContainer .footer-up .leftPart .address-wrap {
    justify-content: center;
  }
}
.footer-section .innerContainer .footer-up .rightPart {
  display: flex;
  width: 60%;
  justify-content: space-between;
  border-left: solid 1px #2b3035;
  margin-top: 24px;
  padding-left: 36px;
}
@media only screen and (max-width: 991px) {
  .footer-section .innerContainer .footer-up .rightPart {
    width: 100%;
    padding: 0;
    border: 0;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
  }
}
.footer-section .innerContainer .footer-up .rightPart .mobile {
  width: 100%;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  .footer-section .innerContainer .footer-up .rightPart .mobile {
    display: none;
  }
}
.footer-section .innerContainer .footer-up .rightPart .menu {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 992px) {
  .footer-section .innerContainer .footer-up .rightPart .menu {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-section .innerContainer .footer-up .rightPart .menu {
    width: 50%;
    margin-bottom: 30px;
  }
}
.footer-section .innerContainer .footer-up .rightPart .menu h5 {
  color: #ffffff;
  margin: 0;
  line-height: initial;
}
.footer-section .innerContainer .footer-up .rightPart .menu .top-level {
  font-size: 12px;
  color: #ffffff;
  font-weight: 600;
  line-height: 14px;
  display: inline-block;
  text-decoration: none;
  transition: all ease-in-out 0.4s;
}
.footer-section .innerContainer .footer-up .rightPart .menu .top-level:hover {
  color: #46bedc;
}
.footer-section .innerContainer .footer-up .rightPart .menu #menu-footer-menu-products {
  margin-top: 9px;
}
.footer-section .innerContainer .footer-up .rightPart .menu #menu-footer-menu-products li {
  margin-bottom: 9px;
}
.footer-section .innerContainer .footer-up .rightPart .menu #menu-footer-menu-products li a {
  line-height: initial;
}
.footer-section .innerContainer .footer-up .rightPart .menu ul {
  margin: 0;
  padding: 0;
  font-weight: 300;
}
.footer-section .innerContainer .footer-up .rightPart .menu ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-section .innerContainer .footer-up .rightPart .menu ul li .top-level {
  margin-bottom: 15px;
}
.footer-section .innerContainer .footer-up .rightPart .menu ul li a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  line-height: 24px;
  transition: all ease-in-out 0.4s;
}
.footer-section .innerContainer .footer-up .rightPart .menu ul li a:hover {
  color: #46bedc;
}
@media only screen and (max-width: 767px) {
  .footer-section .innerContainer .footer-up .rightPart .menu ul li a {
    display: inline-block;
  }
}
.footer-section .innerContainer .footer-up .rightPart .menu .contact-link {
  color: inherit;
  text-decoration: none;
}
.footer-section .innerContainer .footer-up .rightPart .menu .social {
  position: relative;
  left: -8px;
}
.footer-section .innerContainer .footer-up .rightPart .menu .social p {
  margin: 0;
  line-height: initial;
}
.footer-section .innerContainer .footer-up .rightPart .menu .social a {
  display: inline-block;
  max-width: 35px;
}
.footer-section .innerContainer .footer-up .rightPart .menu .social a img {
  transition: all ease-in-out 0.4s;
}
.footer-section .innerContainer .footer-up .rightPart .menu .social a:nth-child(2) {
  margin: 0 4px;
}
@media only screen and (max-width: 991px) {
  .footer-section .innerContainer .footer-up .address {
    width: 50%;
    margin-right: 0;
  }
}
.footer-section .innerContainer .footer-up .address:nth-child(1) {
  margin-right: 80px;
}
@media only screen and (max-width: 991px) {
  .footer-section .innerContainer .footer-up .address:nth-child(1) {
    margin-right: 0;
  }
}
.footer-section .innerContainer .footer-up .address h5 {
  margin: 10px 0 5px 0;
}
.footer-section .innerContainer .footer-up .address p {
  margin: 0 0 20px 0;
  line-height: 20px;
  letter-spacing: initial;
}
.footer-section .innerContainer .footer-up .address .email {
  text-decoration: none;
  color: inherit;
  font-weight: 400;
}
.footer-section .innerContainer .copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 10px 0;
  border-top: solid 1px #2b3035;
  overflow: hidden;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .footer-section .innerContainer .copyright {
    flex-direction: column-reverse;
  }
}
.footer-section .innerContainer .copyright .copyright-part {
  padding-top: 9px;
}
.footer-section .innerContainer .copyright .menu-part p {
  margin-bottom: 0;
}
.footer-section .innerContainer .copyright .menu-part a {
  color: rgba(255, 255, 255, 0.5);
  margin-right: 20px;
  text-decoration: none;
  transition: all ease-in-out 0.4s;
}
.footer-section .innerContainer .copyright .menu-part a:hover {
  color: rgb(99, 112, 124);
}

.banner {
  margin-top: 90px;
  position: relative;
  background-color: #242a30;
}
.banner h4 {
  color: #46bedc;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.025em;
}
.banner h3 {
  font-size: min(34px, max(23px, 3.3203125vw));
  color: #cecfcf;
  font-weight: 300;
  line-height: 1.2191176471em;
}
.banner .container {
  max-width: min(840px, 58.3333333333vw);
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .banner .container {
    max-width: 100%;
    margin: 0 25px;
  }
}
.banner .wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 262px;
}
.banner .wrapper header {
  text-align: center;
}
.banner .wrapper header h3,
.banner .wrapper header h4 {
  margin: 0;
}
.banner .wrapper header h4 {
  margin-bottom: 11px;
}
.banner .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.banner .bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .breadcrumbs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  padding-bottom: 13px;
  transform: translateX(-137px);
}
@media only screen and (max-width: 767px) {
  .banner .breadcrumbs {
    transform: unset;
  }
}
.banner .breadcrumbs .breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10.5px;
  font-weight: 600;
  color: #46bedc;
}
.banner .breadcrumbs .breadcrumb a {
  text-decoration: none;
  color: white;
  transition: all ease-in-out 0.4s;
}
.banner .breadcrumbs .breadcrumb a:hover {
  color: #46bedc;
}
.banner .breadcrumbs .breadcrumb.current a {
  color: #46bedc;
}
.banner .breadcrumbs .breadcrumb .arrow {
  max-width: 15px;
  margin: 0 9px;
}

body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
}
body * {
  box-sizing: border-box;
}
body *:focus {
  outline: none;
}
body::before {
  content: "";
  width: 100px;
  height: 100px;
  background: url(../images/loading.svg);
  position: fixed;
  left: 50%;
  top: 50%;
  margin-top: -50px;
  margin-left: -50px;
  display: block;
  z-index: 9999999;
  transition: all ease-in-out 0.7s;
  background-size: cover;
  background-repeat: no-repeat;
  animation: rotation 7s infinite;
  opacity: 1;
}
body::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background: #242a30;
  background: #fff;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+55,ededed+99 */
  background: #ffffff;
  background: radial-gradient(ellipse at center, #ffffff 55%, #ededed 99%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ededed", GradientType=1);
  z-index: 99999;
  top: 0;
  left: 0;
  transition: all ease-in-out 1s;
}
body.pageLoaded::before, body.pageLoaded::after {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body main section .container {
    padding: 0 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body main .text-image .container .part {
    padding: 0 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body main .tabbed-content .container {
    padding: 0;
  }
  body main .tabbed-content .container .image-text {
    padding: 30px 10px 60px;
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
b,
strong {
  font-weight: bold;
  word-break: break-word;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2 {
  font-size: min(36px, max(20px, 3.515625vw));
  line-height: 1.0555555556em;
  font-weight: 400;
}

h3 {
  font-size: 16px;
  line-height: 1.1875em;
  font-weight: 400;
}

h6 {
  font-size: 12px;
  line-height: 1.6666666667em;
  letter-spacing: 0.025em;
  font-weight: 400;
}

p {
  font-weight: 400;
  font-size: min(18px, max(14px, 1.7578125vw));
  line-height: 1.6666666667em;
}

li::marker {
  color: #46bedc;
}

.scaled-in {
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.8s cubic-bezier(0.6, 0.2, 0.1, 1) 0s;
}
.scaled-in.from-right {
  transform: translate(25px, 25px) scale(0.95);
  transform-origin: right center;
}
.scaled-in.from-left {
  transform: translate(-25px, 25px) scale(0.95);
  transform-origin: left center;
}
.scaled-in.from-down {
  transform: translate(0, 25px) scale(0.95);
  transform-origin: center bottom;
}
.scaled-in.scaled {
  transform: translate(0, 0) scale(1);
  transition: transform 0.8s cubic-bezier(0.6, 0.2, 0.1, 1) 0.4s, opacity 0.8s cubic-bezier(0.6, 0.2, 0.1, 1) 0s;
  opacity: 1;
}

body.no-js .scaled-in {
  opacity: 1;
}
body.no-js .scaled-in.from-right {
  transform: translate(0, 0) scale(1);
}
body.no-js .scaled-in.from-left {
  transform: translate(0, 0) scale(1);
}
body.no-js .scaled-in.from-down {
  transform: translate(0, 0) scale(1);
}

.header-banner-big-text {
  font-size: min(34px, max(23px, 3.3203125vw));
  font-weight: 300;
  line-height: 1.2191176471em;
  color: #cecfcf;
  margin-top: 0;
  margin-bottom: 0;
}

.header-banner-small-text {
  font-size: 12px;
  font-weight: 700;
  line-height: 14.63px;
  letter-spacing: 0.21em;
  color: #46bedc;
  margin-top: 0;
}

.section-header {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: min(40px, max(28px, 2.7083333333vw));
  font-weight: 800;
  line-height: min(40px, max(30px, 2.6041666667vw));
  margin-bottom: 10px;
}

.sub-title {
  color: #46bedc;
  font-size: min(16px, max(12px, 1.0416666667vw));
  font-weight: 700;
  margin: 0;
}

.text-normal,
.text-normal p {
  position: relative;
  font-size: min(20px, max(16px, 1.25vw));
  font-weight: 300;
  line-height: min(32px, max(24px, 1.9444444444vw));
}
.text-normal .bold,
.text-normal p .bold {
  font-weight: bold;
}

.text-light,
.text-light p {
  position: relative;
  font-size: min(16px, max(12px, 1.0416666667vw));
  font-weight: 300;
  line-height: min(24px, max(20px, 1.5277777778vw));
}
.text-light .bold,
.text-light p .bold {
  font-weight: bold;
}

.btn-learn {
  position: relative;
  display: inline-block;
  color: #46bedc;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  margin-top: 20px;
}
.btn-learn:hover .svg-arrow {
  margin-left: 25px;
}
.btn-learn .svg-arrow {
  position: absolute;
  top: 48%;
  margin-left: 15px;
  transform: translateY(-50%) rotate(270deg) scale(0.75);
  transition: margin 0.3s ease-out;
}
.btn-learn .svg-arrow path {
  fill: #46bedc;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .btn-learn .svg-arrow {
    top: 50%;
  }
}

.btn-round {
  display: inline-block;
  padding: 15px 25px;
  font-size: min(12px, max(9px, 0.6944444444vw));
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 12px;
  border-radius: 50px;
  text-decoration: none;
  color: #46bedc;
  background-color: #ffffff;
  box-shadow: 0 0 8px 8px rgba(70, 190, 220, 0.2);
  transition: all 0.3s ease-out;
}
.btn-round:hover {
  transition: all ease-in-out 0.4s;
  color: white;
  background-color: #46bedc;
}

.platform-page main section:not(.banner) {
  border-top: 90px solid transparent;
  margin-top: -90px;
  background-clip: padding-box;
}
@media only screen and (min-width: 768px) {
  .platform-page main .banner .container {
    max-width: min(840px, 58.3333333333vw);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .platform-page main .banner .container {
    max-width: min(840px, 58.3333333333vw);
    margin: 0 auto;
    padding: 0 35px;
  }
}
.platform-page main .container {
  max-width: min(63.6111111111vw, 1440px);
  margin: 0 auto;
}
@media only screen and (max-width: 1199px) {
  .platform-page main .container {
    max-width: 100%;
    margin: 0 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .platform-page main .container {
    padding: 0 10px;
  }
}
.platform-page main h2 {
  font-size: min(39px, max(30px, 3.80859375vw));
  font-weight: 800;
  line-height: 1em;
  margin: 0;
  color: #242a30;
}
.platform-page main h1 {
  font-size: min(34px, max(23px, 3.3203125vw));
  color: #cecfcf;
  font-weight: 300;
  line-height: 1.2191176471em;
}
.platform-page main h4, .platform-page main h3 {
  color: #46bedc;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.025em;
}
.platform-page main p {
  color: #242a30;
  font-size: min(20px, max(16px, 1.25vw));
  font-weight: 300;
  line-height: min(32px, max(24px, 1.9444444444vw));
}
.platform-page main .btn-wrapper {
  margin-top: 20px;
}
@media only screen and (max-width: 991px) {
  .platform-page main .btn-wrapper {
    margin-bottom: 20px;
  }
}
.platform-page main .btn-wrapper .learn-more {
  padding: 15px 30px;
  color: #46bedc;
  text-decoration: none;
  background-color: white;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  transition: all ease-in-out 0.4s;
  display: inline-block;
  box-shadow: 0 0 8px 8px rgba(70, 190, 220, 0.2);
}
.platform-page main .btn-wrapper .learn-more:hover {
  transition: all ease-in-out 0.4s;
  color: white;
  background-color: #46bedc;
}

.what-we-do {
  padding: 70px 0;
}
.what-we-do header {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .what-we-do header {
    flex-direction: column;
  }
}
.what-we-do header .left-part {
  flex: 1 1 35.119047619%;
}
.what-we-do header .left-part h2 {
  margin: 0;
}
.what-we-do header .right-part {
  font-size: min(18px, max(16px, 2.1428571429vw));
  flex: 1 1 64.880952381%;
  box-sizing: border-box;
  padding-left: 9.5238095238%;
}
.what-we-do header .right-part p {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .what-we-do header .right-part {
    padding-left: 0;
    margin-top: 1.6666666667em;
    margin-bottom: 1em;
  }
}
.what-we-do .diagram {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 70px 0;
}
@media only screen and (max-width: 767px) {
  .what-we-do .diagram {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.what-we-do .diagram .diagram-item {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .what-we-do .diagram .diagram-item {
    margin-bottom: 50px;
  }
  .what-we-do .diagram .diagram-item:last-child {
    margin-bottom: 0;
  }
}
.what-we-do .diagram .diagram-item p {
  font-size: 16px;
  margin: 0;
  line-height: 1;
  font-weight: 800;
  line-height: 17px;
}
.what-we-do .diagram .diagram-item img {
  width: 96px;
  display: inline-block;
  max-width: unset;
}
@media only screen and (max-width: 991px) {
  .what-we-do .diagram .diagram-item img {
    width: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .what-we-do .diagram .diagram-item img {
    width: 96px;
  }
}
@media only screen and (max-width: 767px) {
  .what-we-do .diagram .diagram-item.separator-image {
    display: none;
  }
}
.what-we-do .diagram .diagram-item.separator-image img {
  width: 6.6666666667vw;
  max-width: 96px;
}
.what-we-do .btn-wrapper {
  padding-top: 50px;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .what-we-do .btn-wrapper {
    justify-content: center;
    padding-top: 120px;
  }
}

.our-solutions {
  background-color: #f6f6f6;
  padding: 70px 0;
  background-image: url("../images/platform-solutions-bg.png");
  background-position: right bottom;
  background-repeat: no-repeat;
}
.our-solutions .section-intro header h2 {
  margin: 0.2564102564em 0;
}
.our-solutions .section-intro header h4 {
  margin-top: 0;
  margin-bottom: 25px;
}
.our-solutions .content p {
  margin-top: 0;
}
.our-solutions .carousel-module {
  padding-top: 70px;
  padding-bottom: 100px;
}
.our-solutions .carousel-module h4 {
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 1em;
}
.our-solutions .carousel-module .btn-wrapper {
  margin-top: 100px;
}
.our-solutions .carousel-module .wrapper {
  display: flex;
}
@media only screen and (max-width: 991px) {
  .our-solutions .carousel-module .wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.our-solutions .carousel-module .wrapper .left-part {
  width: 355px;
}
@media only screen and (max-width: 580px) {
  .our-solutions .carousel-module .wrapper .left-part {
    width: 300px;
  }
}
.our-solutions .carousel-module .wrapper .left-part .phone-carousel {
  width: 355px;
  position: relative;
}
@media only screen and (max-width: 580px) {
  .our-solutions .carousel-module .wrapper .left-part .phone-carousel {
    width: 300px;
  }
}
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper {
  width: 240px;
  height: 100%;
}
@media only screen and (max-width: 580px) {
  .our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper {
    width: 202px;
  }
}
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  width: 100%;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .bg-img {
  position: absolute;
  top: -45px;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
@media only screen and (max-width: 580px) {
  .our-solutions .carousel-module .wrapper .left-part .phone-carousel .bg-img {
    top: -41px;
  }
}
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper-pagination-bullets {
  transform: translateY(50%);
}
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper-pagination-bullets .swiper-pagination-bullet {
  opacity: 1;
  background: transparent;
  border: 1px solid #46bedc;
  margin: 0 7px;
}
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #46bedc;
}
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper-button-prev,
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper-button-next,
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper-pagination {
  bottom: -70px;
  top: unset;
}
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper-button-prev:after,
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper-button-next:after,
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper-pagination:after {
  content: "";
}
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper-button-prev .svg-arrow,
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper-button-next .svg-arrow,
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper-pagination .svg-arrow {
  width: 15.5px;
}
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper-button-prev .svg-arrow path,
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper-button-next .svg-arrow path,
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper-pagination .svg-arrow path {
  fill: #46bedc;
}
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper-button-prev .svg-arrow {
  transform: scale(2) rotate(90deg);
  padding-top: 1px;
}
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper-button-next .svg-arrow {
  transform: scale(2) rotate(270deg);
  padding-top: 1px;
}
.our-solutions .carousel-module .wrapper .left-part .phone-carousel .swiper-pagination {
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.our-solutions .carousel-module .wrapper .right-part {
  flex: 1;
  padding-left: 4.7619047619%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .our-solutions .carousel-module .wrapper .right-part {
    padding-left: 0;
    padding-top: 80px;
  }
}
.our-solutions .animation-module {
  padding-top: 70px;
  display: flex;
}
@media only screen and (max-width: 991px) {
  .our-solutions .animation-module {
    flex-direction: column-reverse;
    padding-top: 0;
  }
}
.our-solutions .animation-module h4 {
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 1em;
}
.our-solutions .animation-module .btn-wrapper {
  margin-top: 100px;
}
.our-solutions .animation-module .left-part {
  width: 47.619047619%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .our-solutions .animation-module .left-part {
    width: 100%;
  }
}
.our-solutions .animation-module .right-part {
  position: relative;
  flex: 1;
  max-width: 440px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .our-solutions .animation-module .right-part {
    display: flex;
    justify-content: center;
  }
}
.our-solutions .animation-module .right-part .setter {
  visibility: hidden;
}
@media only screen and (max-width: 991px) {
  .our-solutions .animation-module .right-part .setter {
    max-width: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .our-solutions .animation-module .right-part .setter {
    max-width: 320px;
  }
}
.our-solutions .animation-module .right-part .animation-img {
  position: absolute;
  top: 0;
  transition: top 1.4s 0.4s cubic-bezier(0.75, -0.5, 0, 1.75);
}
@media only screen and (max-width: 991px) {
  .our-solutions .animation-module .right-part .animation-img {
    max-width: 400px;
    transition: top 1.4s 0.4s cubic-bezier(0.75, -0.5, 0, 1.75);
  }
}
@media only screen and (max-width: 767px) {
  .our-solutions .animation-module .right-part .animation-img {
    max-width: 300px;
    transition: top 1.5s 0.2s cubic-bezier(0.75, -0.5, 0, 1.75);
  }
}
.our-solutions .animation-module .right-part .img1 {
  top: 30px;
}
.our-solutions .animation-module .right-part .img2 {
  top: 70px;
}
.our-solutions .animation-module .right-part .img3 {
  top: 110px;
}
.our-solutions .animation-module .right-part .img4 {
  top: 150px;
}
.our-solutions .animation-module .right-part .img5 {
  top: 190px;
}
.our-solutions .animation-module .right-part .img6 {
  top: 230px;
}
.our-solutions .animation-module .right-part .img7 {
  top: 270px;
}

.our-science {
  background-color: #242a30;
  padding: 70px 0;
  background-image: url("../images/science_bg.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
}
.our-science article.wrap {
  display: flex;
}
@media only screen and (max-width: 991px) {
  .our-science article.wrap {
    flex-direction: column;
  }
}
.our-science article.wrap .left-part {
  flex: 1 1 50%;
  padding-right: 9.5238095238%;
}
@media only screen and (max-width: 991px) {
  .our-science article.wrap .left-part {
    padding-right: 0;
  }
}
.our-science article.wrap .left-part h2 {
  margin: 0.2564102564em 0;
  color: white;
}
.our-science article.wrap .left-part h4 {
  margin-top: 0;
  margin-bottom: 25px;
}
.our-science article.wrap .left-part p {
  color: white;
}
.our-science article.wrap .left-part .content {
  color: white;
}
.our-science article.wrap .left-part .content p {
  margin-bottom: 0;
  color: white;
}
.our-science article.wrap .left-part .btn-wrapper {
  margin-top: 40px;
}
.our-science article.wrap .right-part {
  flex: 1 1 50%;
}
.our-science article.wrap .right-part .subjects-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 50px;
  color: white;
}
@media only screen and (max-width: 991px) {
  .our-science article.wrap .right-part .subjects-list {
    margin-left: 0;
  }
}
.our-science article.wrap .right-part .subjects-list .list-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.our-science article.wrap .right-part .subjects-list .list-item p {
  margin: 0;
  font-weight: 800;
  font-size: min(16px, max(12px, 1.5625vw));
  color: white;
}
.our-science article.wrap .right-part .subjects-list .list-item img {
  max-width: 60px;
}

.security-privacy {
  padding: 70px 0;
}
.security-privacy header {
  font-size: min(39px, max(30px, 3.80859375vw));
}
.security-privacy header .left-part {
  float: left;
  width: 40%;
  min-width: 238px;
}
.security-privacy header .left-part h2 {
  margin: 0;
  font-size: min(39px, max(30px, 3.80859375vw));
}
@media only screen and (max-width: 767px) {
  .security-privacy header .left-part {
    float: unset;
    width: 100%;
    max-width: unset;
  }
}
.security-privacy header .right-part p {
  margin-bottom: 0;
}
.security-privacy header .right-part p:first-child {
  margin-top: 25px;
}
.security-privacy .content-wrapper {
  clear: both;
}
.security-privacy .content-wrapper p {
  font-size: min(18px, max(16px, 1.7578125vw));
  margin-bottom: 2.1875em;
  line-height: 1.6875em;
}
.security-privacy a {
  text-decoration: none;
  color: #46bedc;
}/*# sourceMappingURL=platform-page.css.map */