@charset "UTF-8";
#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);
}

.product-title {
  position: relative;
  color: #46bedc;
  font-size: min(24px, max(16px, 1.5277777778vw));
  font-weight: 800;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-title {
    font-size: 21px;
  }
}

.header-banner {
  margin-top: 90px;
  position: relative;
  background-color: #242a30;
}
.header-banner .container {
  max-width: min(840px, 58.33333vw);
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .header-banner .container {
    max-width: 100%;
    padding: 0 25px;
  }
}
.header-banner .wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 262px;
}
.header-banner .wrapper header {
  text-align: center;
}
.header-banner .wrapper header h3,
.header-banner .wrapper header h4 {
  margin: 0;
}
.header-banner .wrapper header h4 {
  margin-bottom: 11px;
}
.header-banner .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.header-banner .bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-banner .breadcrumbs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  padding-bottom: 13px;
  transform: translateX(-137px);
}
@media only screen and (max-width: 767px) {
  .header-banner .breadcrumbs {
    transform: unset;
  }
}
.header-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;
  text-transform: uppercase;
}
.header-banner .breadcrumbs .breadcrumb a {
  text-decoration: none;
  color: white;
  transition: all ease-in-out 0.4s;
}
.header-banner .breadcrumbs .breadcrumb a:hover {
  color: #46bedc;
}
.header-banner .breadcrumbs .breadcrumb.current a {
  color: #46bedc;
}
.header-banner .breadcrumbs .breadcrumb .arrow {
  max-width: 15px;
  margin: 0 9px;
}
@media only screen and (max-width: 767px) {
  .header-banner .breadcrumbs .breadcrumb .arrow {
    margin: 0 6px;
  }
}

section .container {
  max-width: min(63.6111111111vw, 1440px);
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  section .container {
    max-width: 100%;
  }
}

.banner,
.banner-carousel {
  padding-top: 110px;
}
.banner .container,
.banner-carousel .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 25px;
  background-color: #46bedc;
  padding: 0 5.9375vw;
  max-height: 180px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner .container,
  .banner-carousel .container {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .banner .container,
  .banner-carousel .container {
    max-height: 100%;
    padding: 0;
  }
}
.banner .container .left-part,
.banner-carousel .container .left-part {
  display: flex;
  align-items: center;
  max-width: 65%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner .container .left-part,
  .banner-carousel .container .left-part {
    width: 100%;
    max-width: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .banner .container .left-part,
  .banner-carousel .container .left-part {
    max-width: 100%;
    position: relative;
    left: -18px;
  }
}
.banner .container .left-part .img-wrap,
.banner-carousel .container .left-part .img-wrap {
  position: relative;
  top: 20px;
  max-width: 90px;
  border-radius: 12px;
}
@media only screen and (max-width: 767px) {
  .banner .container .left-part .img-wrap,
  .banner-carousel .container .left-part .img-wrap {
    top: auto;
  }
}
.banner .container .right-part,
.banner-carousel .container .right-part {
  max-width: 90%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .banner .container .right-part,
  .banner-carousel .container .right-part {
    flex-direction: column;
    padding-bottom: 32px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner .container .right-part,
  .banner-carousel .container .right-part {
    width: auto;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .banner .container .right-part,
  .banner-carousel .container .right-part {
    max-width: 65%;
    align-items: flex-start;
  }
}
.banner .container .right-part .text-wrap,
.banner-carousel .container .right-part .text-wrap {
  padding: 0 48px;
}
@media only screen and (max-width: 767px) {
  .banner .container .right-part .text-wrap,
  .banner-carousel .container .right-part .text-wrap {
    padding: 0 0;
    padding-right: 15px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1350px) {
  .banner .container .right-part .text-wrap,
  .banner-carousel .container .right-part .text-wrap {
    padding: 0;
    padding-left: 24px;
    max-width: 550px;
  }
}
.banner .container .right-part .text-wrap .section-title,
.banner-carousel .container .right-part .text-wrap .section-title {
  color: #ffffff;
  letter-spacing: initial;
  margin-bottom: 5px;
}
.banner .container .right-part .text-wrap p,
.banner-carousel .container .right-part .text-wrap p {
  margin-top: 0;
  letter-spacing: initial;
  font-size: min(27px, max(14px, 1.8055555556vw));
  max-width: 23.4375vw;
  max-width: 550px;
  font-weight: 300;
  line-height: 31px;
}
@media only screen and (max-width: 991px) {
  .banner .container .right-part .text-wrap p,
  .banner-carousel .container .right-part .text-wrap p {
    line-height: initial;
  }
}
@media only screen and (min-width: 768px) {
  .banner .container .right-part .text-wrap .line-break,
  .banner-carousel .container .right-part .text-wrap .line-break {
    display: none;
  }
}
.banner .container .right-part .btn-round:hover,
.banner-carousel .container .right-part .btn-round:hover {
  box-shadow: 0 0 6px 6px rgba(255, 255, 255, 0.5);
  color: #46bedc;
  background-color: #ffffff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner .container .right-part .btn-round,
  .banner-carousel .container .right-part .btn-round {
    margin-left: 50px;
  }
}

.why-oseven {
  padding-top: 110px;
}
.why-oseven .container {
  position: relative;
}
.why-oseven .container::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50%;
  height: 50%;
  background-image: url("../images/loading.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  filter: grayscale(1);
  opacity: 0.1;
  left: -350px;
  z-index: -1;
}
.why-oseven .section-header .section-title {
  color: #000000;
}
.why-oseven .info-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 90px;
}
.why-oseven .info-box.right {
  margin-left: auto;
}
.why-oseven .info-box.center {
  margin: 0 auto;
}
@media only screen and (min-width: 992px) {
  .why-oseven .info-box {
    max-width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .why-oseven .info-box {
    flex-direction: column;
  }
}
.why-oseven .info-box .left-part {
  width: 30%;
  max-width: 250px;
}
@media only screen and (max-width: 767px) {
  .why-oseven .info-box .left-part {
    width: 100%;
    max-width: 75%;
  }
}
.why-oseven .info-box .left-part .img-wrap {
  position: relative;
}
.why-oseven .info-box .left-part .img-wrap picture {
  border-radius: 25px;
  overflow: hidden;
  display: block;
  box-shadow: 6px 20px 32px rgba(36, 42, 48, 0.2);
}
.why-oseven .info-box .left-part .img-wrap picture img {
  width: 100%;
}
.why-oseven .info-box .left-part .number {
  position: absolute;
  top: 0px;
  left: 95%;
  font-weight: 900;
  font-size: 70px;
  color: #f7f7f7;
  z-index: -1;
}
.why-oseven .info-box .right-part {
  width: 70%;
  max-width: 580px;
  padding-left: 25px;
}
@media screen and (min-width: 1890px) and (max-width: 1920px) {
  .why-oseven .info-box .right-part {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .why-oseven .info-box .right-part {
    width: auto;
    padding: 0 15px;
  }
}
.why-oseven .info-box .right-part .title {
  font-size: min(20px, max(16px, 1.25vw));
  line-height: min(32px, max(24px, 1.9444444444vw));
  letter-spacing: 0.05em;
  margin-top: 68px;
}

.our-products {
  padding-top: 90px;
  padding-bottom: 140px;
  position: relative;
}
.our-products::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 45%;
  width: 100%;
  background-color: #f7f7f7;
}
.our-products .section-header .section-title {
  color: #000000;
  margin-top: 0;
}
.our-products .columns-wrap {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .our-products .columns-wrap {
    flex-direction: column;
  }
}
.our-products .columns-wrap .product-column {
  position: relative;
  max-width: min(21.6145833333vw, 415px);
  border-radius: 25px;
  background-color: #ffffff;
  text-align: center;
  box-shadow: 0px 16px 24px rgba(36, 42, 48, 0.05);
  padding: 40px 24px;
  padding-top: 18px;
  overflow: hidden;
  margin-bottom: 100px;
  transform: translate(0px, 80px);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .our-products .columns-wrap .product-column {
    max-width: 30%;
    padding: 40px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .our-products .columns-wrap .product-column {
    max-width: 100%;
  }
}
.our-products .columns-wrap .product-column::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 178px;
  background: rgb(247, 247, 247);
  background: linear-gradient(90deg, rgb(247, 247, 247) 0%, rgb(247, 247, 247) 50%, rgb(255, 255, 255) 100%);
  top: 0;
  left: 0;
}
.our-products .columns-wrap .product-column .product-ribbon {
  position: absolute;
  top: 40px;
  left: 0;
  color: #ffffff;
  background-color: #46bedc;
  padding: 8px 16px;
  font-size: 16px;
  border-radius: 0 5px 5px 0;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .our-products .columns-wrap .product-column .product-ribbon {
    top: 10px;
    font-size: 12px;
  }
}
.our-products .columns-wrap .product-column .product-title-vertical {
  position: absolute;
  transform: rotate(270deg);
  top: 23%;
  right: -160px;
  font-size: min(92px, max(80px, 6.1111111111vw));
  color: #f7f7f7;
  font-weight: 900;
  width: 380px;
  text-align: initial;
}
.our-products .columns-wrap .product-column .product-title {
  margin-top: 40px;
  margin-bottom: 0;
}
.our-products .columns-wrap .product-column .img-wrap {
  position: relative;
  margin: 0 auto;
}
.our-products .columns-wrap .product-column .img-wrap picture {
  display: inline-block;
  margin: 0 auto;
  box-shadow: 0 10px 16px 6px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border-radius: 15px;
}
.our-products .columns-wrap .product-column .product-desc p:first-child {
  margin-top: 9px;
}
.choose-your-kit {
  position: relative;
  margin-top: -110px;
}
.choose-your-kit .container {
  position: relative;
  padding-top: 75px;
}
.choose-your-kit .container .bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 25px;
  background-repeat: no-repeat;
  background-size: cover;
  height: 77.9082177161vh;
  height: 546px;
}
@media only screen and (max-width: 767px) {
  .choose-your-kit .container .bg-decor {
    height: 80%;
    background-position: center;
  }
}
.choose-your-kit .section-header .section-title {
  color: #ffffff;
}
.choose-your-kit .columns-wrap {
  display: flex;
  justify-content: space-around;
  justify-content: space-evenly;
}
@media only screen and (max-width: 767px) {
  .choose-your-kit .columns-wrap {
    flex-direction: column;
    padding: 0 20px;
  }
}
.choose-your-kit .columns-wrap .product-column {
  position: relative;
  max-width: min(29.1666666667vw, 560px);
  border-radius: 25px;
  background-color: #f7f7f7;
  text-align: center;
  box-shadow: 0 10px 16px 6px rgba(0, 0, 0, 0.15);
  padding: 40px 55px;
  padding-top: 0;
  overflow: hidden;
  margin-bottom: 100px;
  transform: translate(0px, 80px);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .choose-your-kit .columns-wrap .product-column {
    max-width: 42%;
    padding: 40px 20px;
    padding-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .choose-your-kit .columns-wrap .product-column {
    max-width: 100%;
    padding: 40px;
    padding-top: 0;
  }
}
.choose-your-kit .columns-wrap .product-column::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 178px;
  background: rgb(247, 247, 247);
  background: linear-gradient(90deg, rgb(247, 247, 247) 0%, rgb(247, 247, 247) 75%, rgb(215, 215, 215) 100%);
  top: 0;
  left: 0;
}
.choose-your-kit .columns-wrap .product-column .img-wrap {
  position: relative;
  margin: 0 auto;
}
.choose-your-kit .columns-wrap .product-column .img-wrap picture {
  display: inline-block;
  margin: 0 auto;
}
.choose-your-kit .columns-wrap .product-column .product-title {
  margin: 0 auto;
}
.choose-your-kit .columns-wrap .product-column .product-desc p:first-child {
  margin-top: 9px;
}
.half-half-image-text {
  padding-top: 50px;
}
.half-half-image-text .container {
  background-repeat: no-repeat;
  background-position: left 30%;
  background-size: 42.0833333333vw auto;
  display: flex;
}
@media only screen and (max-width: 991px) {
  .half-half-image-text .container {
    flex-direction: column;
    background: none !important;
  }
}
.half-half-image-text .part {
  width: 100%;
  max-width: 33.0729166667vw;
}
@media only screen and (max-width: 991px) {
  .half-half-image-text .part {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.half-half-image-text .left-part {
  position: relative;
  top: 80px;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .half-half-image-text .left-part .img-wrap {
    max-width: 50%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 991px) {
  .half-half-image-text .left-part .img-wrap {
    display: block;
  }
  .half-half-image-text .left-part .img-wrap img {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 992px) {
  .half-half-image-text .left-part .img-wrap {
    position: absolute;
    width: 127%;
    height: 100%;
  }
  .half-half-image-text .left-part .img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.half-half-image-text .right-part p:first-child {
  margin-top: 25px;
}
.half-half-image-text .right-part .btn-round {
  margin: 40px 0 70px;
}

.four-columns {
  padding: 80px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 767px) {
  .four-columns .section-header {
    margin-bottom: 0;
  }
}
.four-columns .section-header .title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}
.four-columns .columns-wrap {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .four-columns .columns-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.four-columns .columns-wrap .stat-wrap {
  color: #ffffff;
  text-align: center;
  max-width: 25%;
}
@media only screen and (max-width: 767px) {
  .four-columns .columns-wrap .stat-wrap {
    max-width: 50%;
    margin: 0 auto;
    margin-top: 35px;
  }
}
.four-columns .columns-wrap .stat-wrap .stat {
  position: relative;
  display: inline-block;
  font-size: min(25px, max(20px, 1.6666666667vw));
  line-height: 30px;
  font-weight: 600;
}
.four-columns .columns-wrap .stat-wrap .stat .number {
  position: relative;
  bottom: 6px;
  font-size: min(52px, max(40px, 3.4722222222vw));
  font-weight: 900;
  line-height: 60px;
  margin: 0 6px;
}
@media only screen and (max-width: 767px) {
  .four-columns .columns-wrap .stat-wrap .stat .number {
    line-height: 50px;
  }
}
.four-columns .columns-wrap .stat-wrap .stat .top-note {
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: min(15px, max(10px, 0.9722222222vw));
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .four-columns .columns-wrap .stat-wrap .stat .top-note {
    left: -15px;
  }
}
.four-columns .columns-wrap .stat-wrap .info {
  font-size: min(18px, max(14px, 1.1111111111vw));
  font-weight: 300;
}

.clients-map {
  background-color: #252a30;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .clients-map {
    background-size: contain;
    background-position: 100% 10%;
  }
}
@media only screen and (max-width: 767px) {
  .clients-map {
    background-size: auto 170px;
    background-position: 100% 40.625vw;
  }
}
.clients-map .container {
  display: flex;
  flex-direction: column;
}
.clients-map .container .section-title {
  color: #ffffff;
  margin: 110px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .clients-map .container .section-title {
    margin: 110px 110px 70px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .clients-map .container .section-title {
    margin: 40px auto;
  }
}
.clients-map .container .clients-carousel {
  position: relative;
  margin: 150px 0 100px;
  max-height: 110px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .clients-map .container .clients-carousel {
    margin: 0 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .clients-map .container .clients-carousel {
    margin: 150px 0 50px;
  }
}
.clients-map .container .clients-carousel .swiper-container {
  margin: 0 42px;
}
.clients-map .container .clients-carousel .swiper-button .svg-arrow {
  background-color: #505559;
  border-radius: 25px;
  width: 15.5px;
}
.clients-map .container .clients-carousel .swiper-button .svg-arrow path {
  fill: #ffffff;
}
.clients-map .container .clients-carousel .swiper-button::after {
  content: "";
}
.clients-map .container .clients-carousel .swiper-button-prev {
  left: 4px;
}
.clients-map .container .clients-carousel .swiper-button-prev .svg-arrow {
  transform: scale(2) rotate(90deg);
  padding-top: 1px;
}
.clients-map .container .clients-carousel .swiper-button-next {
  right: 2px;
}
.clients-map .container .clients-carousel .swiper-button-next .svg-arrow {
  transform: scale(2) rotate(270deg);
  padding-top: 1px;
}
.clients-map .container .clients-carousel .client-img-wrap {
  max-width: 200px;
  margin: 0 auto;
}

.testimonials {
  padding: 80px 0;
}
.testimonials .container {
  background-color: #f7f7f7;
  border-radius: 25px;
  text-align: center;
  padding: 2px 0 40px;
}
.testimonials .container .section-title {
  color: #000000;
  margin: 44px auto;
}
@media only screen and (max-width: 767px) {
  .testimonials .container .section-title {
    margin: 30px auto;
  }
}
.testimonials .container .swiper-container {
  padding-bottom: 20px;
  max-height: 350px;
}
@media only screen and (max-width: 767px) {
  .testimonials .container .swiper-container {
    max-height: 100vh;
  }
}
@media only screen and (max-width: 767px) {
  .testimonials .container .swiper-container .swiper-slide {
    padding: 0 15px;
  }
}
.testimonials .container .swiper-container .swiper-pagination-bullets {
  bottom: 0;
}
.testimonials .container .swiper-container .swiper-pagination-bullets .swiper-pagination-bullet {
  opacity: 1;
  background: transparent;
  border: 1px solid #46bedc;
}
.testimonials .container .swiper-container .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #46bedc;
}
.testimonials .container .swiper-container .swiper-button {
  top: auto;
  bottom: -10px;
}
@media only screen and (max-width: 767px) {
  .testimonials .container .swiper-container .swiper-button {
    bottom: -13px;
  }
}
.testimonials .container .swiper-container .swiper-button .svg-arrow {
  width: 15.5px;
}
.testimonials .container .swiper-container .swiper-button .svg-arrow path {
  fill: #46bedc;
}
.testimonials .container .swiper-container .swiper-button::after {
  content: "";
}
.testimonials .container .swiper-container .swiper-button-prev {
  left: 40%;
}
@media only screen and (max-width: 1199px) {
  .testimonials .container .swiper-container .swiper-button-prev {
    left: 38%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonials .container .swiper-container .swiper-button-prev {
    left: 35%;
  }
}
@media only screen and (max-width: 767px) {
  .testimonials .container .swiper-container .swiper-button-prev {
    left: 25%;
  }
}
.testimonials .container .swiper-container .swiper-button-prev .svg-arrow {
  transform: scale(2) rotate(90deg);
  padding-top: 1px;
}
.testimonials .container .swiper-container .swiper-button-next {
  right: 40%;
}
@media only screen and (max-width: 1199px) {
  .testimonials .container .swiper-container .swiper-button-next {
    right: 38%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonials .container .swiper-container .swiper-button-next {
    right: 35%;
  }
}
@media only screen and (max-width: 767px) {
  .testimonials .container .swiper-container .swiper-button-next {
    right: 25%;
  }
}
.testimonials .container .swiper-container .swiper-button-next .svg-arrow {
  transform: scale(2) rotate(270deg);
  padding-top: 1px;
}
.testimonials .container .img-wrap {
  display: inline-block;
  max-width: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials .container .testi-name {
  color: #46bedc;
  font-weight: 600;
  margin-bottom: 0;
}
.testimonials .container .testi-job-position {
  max-width: 630px;
  margin: 0 auto;
  margin-bottom: 18px;
  font-weight: 300;
  position: relative;
  --bottom-before: 30px;
}
.testimonials .container .testi-job-position::before {
  content: "";
  position: absolute;
  top: auto;
  left: -10px;
  bottom: var(--bottom-before);
  width: 85px;
  height: 85px;
  background-image: url("../images/quote.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .testimonials .container .testi-job-position::before {
    width: 42px;
  }
}
.testimonials .container .testi-text {
  max-width: 630px;
  margin: 0 auto 18px;
  font-size: 15px;
  position: relative;
  --bottom-after: -40px;
}
.testimonials .container .testi-text::after {
  content: "";
  position: absolute;
  right: 0;
  top: auto;
  bottom: var(--bottom-after);
  width: 85px;
  height: 85px;
  background-image: url("../images/quote.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}
@media only screen and (max-width: 767px) {
  .testimonials .container .testi-text::after {
    width: 42px;
  }
}

.whats-new {
  position: relative;
  max-height: 700px;
}
.whats-new::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-color: #f7f7f7;
}
.whats-new .container {
  display: flex;
  justify-content: space-between;
  padding: 85px 0 115px;
}
@media only screen and (min-width: 768px) {
  .whats-new .container.reverse {
    flex-direction: row-reverse;
  }
}
@media only screen and (max-width: 767px) {
  .whats-new .container {
    flex-direction: column-reverse;
    padding: 0 0 60px;
  }
}
.whats-new .part-left {
  position: relative;
  width: 75%;
  width: 59.7222222222vw;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .whats-new .part-left {
    width: 75%;
  }
}
@media only screen and (max-width: 767px) {
  .whats-new .part-left {
    width: auto;
  }
}
.whats-new .part-right {
  width: 180px;
}
@media only screen and (max-width: 767px) {
  .whats-new .part-right {
    width: auto;
  }
}
.whats-new .part-right .section-title {
  margin-top: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .whats-new .part-right .section-title {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .whats-new .part-right .section-title {
    text-align: center;
    margin: 20px auto 30px;
  }
}
.whats-new .news-box {
  width: 17.3611111111vw;
  margin: 0 auto;
  border-radius: 25px;
  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.0005);
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .whats-new .news-box {
    width: auto;
    max-width: 250px;
  }
}
.whats-new .news-box .article-link {
  display: block;
}
.whats-new .news-box .article-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.whats-new .news-box .article-header {
  padding: 25px;
  background-color: #ffffff;
}
.whats-new .news-box .article-header .publish-date {
  font-weight: 300;
  font-size: min(17px, max(13px, 1.0416666667vw));
}
.whats-new .news-box .article-header .article-title {
  font-weight: 600;
  font-size: min(18px, max(15px, 1.25vw));
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .whats-new .news-box .article-header .article-title {
    font-size: 12px;
  }
}
.whats-new .swiper-container {
  padding: 0px 15px 26px;
}
.whats-new .swiper-button {
  background-color: #ffffff;
  border-radius: 25px;
  width: 36px;
  height: 36px;
  top: 45%;
  box-shadow: 0px 0px 10px rgba(70, 190, 220, 0.16);
}
.whats-new .swiper-button::after {
  content: none;
}
.whats-new .swiper-button-prev {
  left: 0;
}
.whats-new .swiper-button-prev .svg-arrow {
  transform: scale(1.5) rotate(90deg);
}
.whats-new .swiper-button-prev .svg-arrow path {
  fill: #46bedc;
}
.whats-new .swiper-button-next {
  right: 0;
}
.whats-new .swiper-button-next .svg-arrow {
  transform: scale(1.5) rotate(270deg);
}
.whats-new .swiper-button-next .svg-arrow path {
  fill: #46bedc;
}

.text-image {
  background-color: #f7f7f7;
  padding-block: 70px;
  scroll-margin-top: 90px;
}
@media only screen and (max-width: 767px) {
  .text-image {
    padding-block: 10px 20px;
  }
}
.text-image.overflow-image, .text-image.o7app-overflow {
  padding-block: 0;
}
.text-image .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .text-image .container {
    flex-direction: column;
    max-width: 100%;
    margin: 0 25px;
  }
}
.text-image .container.reverse {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 768px) {
  .text-image .container.reverse {
    flex-direction: row-reverse;
  }
}
.text-image .container .part-text {
  max-width: 32.2916666667vw;
}
@media only screen and (max-width: 767px) {
  .text-image .container .part-text {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .text-image .container .part {
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .text-image .container .part {
    max-width: 50%;
    padding: 0 25px;
  }
}
.text-image .container .part .img-wrap {
  opacity: 0;
  transform: translate(0px, 80px);
}
.text-image .container .section-title {
  margin-top: 0;
}
.text-image .container .text-normal {
  margin: 25px 0 34px;
}
.text-image.overflow-image {
  background-repeat: no-repeat;
  background-position: 80% bottom;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .text-image.overflow-image {
    background-image: none !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .text-image.overflow-image {
    background-position: 75% bottom;
  }
}
@media only screen and (max-width: 767px) {
  .text-image.overflow-image .container {
    margin: 0;
    padding: 0;
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) {
  .text-image.overflow-image .container {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .text-image.overflow-image .container {
    padding: 50px 0;
  }
}
@media only screen and (min-width: 1921px) {
  .text-image.overflow-image .container {
    padding: 300px 0;
  }
}
@media only screen and (max-width: 767px) {
  .text-image.overflow-image .container .part-text {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .text-image.overflow-image .container .part-image {
    width: 100%;
  }
}
.text-image.overflow-image .container .part-image .img-wrap {
  position: relative;
  bottom: -171px;
}
.text-image.overflow-image .container .part-image .img-wrap picture,
.text-image.overflow-image .container .part-image .img-wrap img {
  width: 100%;
}
.intro-wlist {
  padding: 70px 0;
}
@media only screen and (max-width: 767px) {
  .intro-wlist .container {
    max-width: 100%;
    padding: 0 25px;
  }
}
.intro-wlist .simple-text {
  font-size: min(18px, max(15px, 1.25vw));
  font-weight: 300;
  line-height: 1.5488888889em;
}
.intro-wlist .list-bluedots {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 30px;
}
.intro-wlist .list-bluedots .list-item {
  position: relative;
  margin-left: 20px;
  margin-bottom: 15px;
}
.intro-wlist .list-bluedots .list-item:before {
  content: "•";
  color: #46bedc;
  font-weight: bold;
  display: inline-block;
  width: 20px;
  margin-left: -10px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  background-image: url("../images/bullet.png");
  background-position: left center;
  background-repeat: no-repeat;
}
.intro-wlist .list-bluedots .list-item p {
  font-size: min(18px, max(15px, 1.25vw));
  font-weight: 300;
  line-height: 1.5488888889em;
  margin: 0;
}
.intro-wlist .list-bluedots.api .list-item:before {
  top: 12px;
}

.categories-section {
  background-color: #F6F6F6;
  padding: 70px 0;
}
@media only screen and (max-width: 767px) {
  .categories-section .container {
    max-width: 100%;
    padding: 0 25px;
  }
}
.categories-section .category {
  display: flex;
  margin-bottom: 70px;
}
.categories-section .category:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .categories-section .category {
    flex-direction: column;
    margin-bottom: 80px;
  }
}
.categories-section .category .img-part {
  width: 25%;
  margin-top: -30px;
  max-width: 229px;
}
@media only screen and (max-width: 767px) {
  .categories-section .category .img-part {
    width: 100%;
    display: block;
    max-width: 245px;
    margin-left: -30px;
  }
}
.categories-section .category .img-part img {
  width: 100%;
}
.categories-section .category .content-part {
  width: 75%;
}
@media only screen and (max-width: 767px) {
  .categories-section .category .content-part {
    width: 100%;
  }
}
.categories-section .category .content-part .section-title {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 25px;
}
.categories-section .category .content-part .section-title span {
  font-weight: 300;
}
.categories-section .category .content-part .text-normal {
  font-size: min(18px, max(15px, 1.25vw));
}

.full-width-text {
  background-color: #f6f6f6;
  padding: 70px 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .full-width-text {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  .full-width-text {
    padding: 60px 25px;
  }
}

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;
}

main .text-image {
  background-color: #f6f6f6;
}
main .text-image:not(.rotation-section) .container {
  padding-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  main .text-image:not(.rotation-section) .part-image {
    max-height: 384px;
    align-self: flex-end;
  }
}
main .text-image:not(.rotation-section) .part-image .img-wrap {
  transform: translate(0px, 0px) !important;
  position: relative;
  bottom: -130px;
}
@media only screen and (max-width: 767px) {
  main .text-image:not(.rotation-section) .part-image .img-wrap {
    bottom: 0;
    max-width: 270px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  main .text-image:not(.rotation-section) .part-image .img-wrap {
    bottom: 0;
    max-width: 314px;
  }
}
@media only screen and (max-width: 767px) {
  main .text-image .part-left .text-normal {
    margin-bottom: 0;
  }
}
main .take-care {
  background-color: white;
}
@media only screen and (max-width: 767px) {
  main .take-care {
    margin-top: -98px;
    padding-top: 60px;
  }
  main .take-care .lines {
    position: relative;
  }
}

.rotation-section .part-right {
  position: relative;
}
.rotation-section .part-right img {
  max-width: 360px;
}
@media only screen and (max-width: 767px) {
  .rotation-section .part-right img {
    max-width: 100%;
  }
}
.rotation-section .part-right .abstext {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.rotation-section .part-right .abstext span {
  text-align: center;
}
.rotation-section .part-right .abstext .numeric {
  font-size: min(40px, max(30px, 2.7083333333vw));
  color: #46bedc;
  display: block;
}
.rotation-section .part-right .abstext .characters {
  font-size: min(20px, max(16px, 1.25vw));
  display: block;
}
.rotation-section .part-text .text-light p {
  font-size: min(20px, max(16px, 1.25vw));
  line-height: min(32px, max(24px, 1.9444444444vw));
  margin-bottom: 0;
}
.rotation-section .part-text .text-light p:first-child {
  margin-top: 25px;
}
.rotation-section .gifCss {
  width: 100%;
  max-width: 360px;
}
.rotation-section .gifCss .img-wrap {
  height: 360px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.rotation-section .gifCss .img-wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../images/branded-app-rotate.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: rotation 5s infinite;
  opacity: 0.7;
  z-index: -1;
}
.rotation-section .gifCss .img-wrap .numeric {
  font-size: 45px;
  font-weight: 400;
  color: #46bedc;
  line-height: 54px;
  text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
}
.rotation-section .gifCss .img-wrap .characters {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

@media only screen and (max-width: 580px) {
  .take-care {
    padding: 30px 0;
  }
}
.take-care .lines {
  background: url("../images/lines-bg.gif");
  background-position: left 30px top;
  background-size: 45%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 991px) {
  .take-care .lines {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  .take-care .lines {
    background: unset;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .take-care .lines {
    background-position: left 34px top;
  }
}
@media only screen and (max-width: 767px) {
  .take-care .container {
    margin: 0 25px;
    padding: 10px 0 20px;
  }
}
.take-care .container .content {
  transform: translateY(-44px);
}
@media only screen and (max-width: 767px) {
  .take-care .container .content {
    transform: unset;
  }
}
.take-care .container .arrow-wrapper {
  margin-left: -12px;
  cursor: pointer;
  width: 88px;
  height: 88px;
}
@media only screen and (max-width: 767px) {
  .take-care .container .arrow-wrapper {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .take-care .container .arrow-wrapper {
    margin-left: -25px;
  }
}
.take-care .container .section-title {
  color: #46bedc;
  padding-left: 7.6419213974%;
  margin-bottom: 170px;
  margin-top: 0;
}
@media only screen and (max-width: 580px) {
  .take-care .container .section-title {
    margin-bottom: 50px;
    padding-left: 0;
  }
}
.take-care .container .content-row.variation1 {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 580px) {
  .take-care .container .content-row.variation1 {
    flex-direction: column;
  }
}
.take-care .container .content-row.variation1 h3 {
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 6px;
}
.take-care .container .content-row.variation1 img {
  max-width: 170px;
}
.take-care .container .content-row.variation1 .left-part {
  width: 45%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 580px) {
  .take-care .container .content-row.variation1 .left-part {
    width: 100%;
  }
}
.take-care .container .content-row.variation1 .left-part picture {
  margin-left: 46.943231441%;
}
@media only screen and (max-width: 767px) {
  .take-care .container .content-row.variation1 .left-part picture {
    margin-left: 0;
  }
}
.take-care .container .content-row.variation1 .left-part .step {
  border-radius: 45px;
  color: #46bedc;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px 0px rgba(70, 190, 220, 0.16);
  position: absolute;
  right: -90px;
  top: 50%;
  margin-left: 10%;
  transform: translate(-50%, -50%);
}
.take-care .container .content-row.variation1 .right-part {
  width: 55%;
  box-sizing: border-box;
  padding-left: 14%;
}
@media only screen and (max-width: 580px) {
  .take-care .container .content-row.variation1 .right-part {
    width: 100%;
    padding-left: 0;
  }
}
.take-care .container .content-row.variation2 {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 580px) {
  .take-care .container .content-row.variation2 {
    flex-direction: column-reverse;
  }
}
.take-care .container .content-row.variation2 h3 {
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 6px;
}
.take-care .container .content-row.variation2 img {
  max-width: 170px;
}
.take-care .container .content-row.variation2 .left-part {
  width: 45%;
  padding-right: 7.6419213974%;
  position: relative;
}
@media only screen and (max-width: 580px) {
  .take-care .container .content-row.variation2 .left-part {
    width: 100%;
  }
}
.take-care .container .content-row.variation2 .left-part picture {
  margin-left: 46.943231441%;
}
.take-care .container .content-row.variation2 .left-part .step {
  border-radius: 45px;
  color: #46bedc;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px 0px rgba(70, 190, 220, 0.16);
  position: absolute;
  right: -90px;
  top: 50%;
  margin-left: 10%;
  transform: translate(-50%, -50%);
}
.take-care .container .content-row.variation2 .right-part {
  width: 55%;
  box-sizing: border-box;
  padding-left: 14%;
}
@media only screen and (max-width: 580px) {
  .take-care .container .content-row.variation2 .right-part {
    width: 100%;
    padding-left: 0;
  }
}
.take-care .container .content-row {
  margin-bottom: 150px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .take-care .container .content-row {
    padding: 0 20px;
  }
}
.take-care .container .content-row:last-child {
  padding-bottom: 42px;
  margin-bottom: 0;
}
.take-care .container .content-row .part-image {
  display: flex;
}
.take-care .container .content-row .part-image picture {
  opacity: 0;
  transform: translate(0px, -20px);
}
.take-care .container .content-row .part-text h3,
.take-care .container .content-row .part-text .text-light {
  opacity: 0;
  transform: translate(0px, 20px);
}
.take-care .container .content-row .part-text h3 p,
.take-care .container .content-row .part-text .text-light p {
  font-size: min(18px, max(14px, 1.04167vw));
}
.take-care .container .content-row .step {
  opacity: 0;
  z-index: 2;
  background-color: white;
}
@media only screen and (max-width: 767px) {
  .take-care .container .content-row .step {
    display: none !important;
  }
}
@media only screen and (max-width: 580px) {
  .take-care .container .content-row {
    margin-bottom: 50px;
  }
  .take-care .container .content-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}/*# sourceMappingURL=platform-brandedapp-page.css.map */