@import url(https://fonts.googleapis.com/css?family=Inter:regular,500,700,800&display=swap);
@import url(https://fonts.googleapis.com/css?family=Manrope:600,700&display=swap);
[class*=_icon-]::before {
  font-family: icons;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
@font-face {
  font-family: icons;
  font-display: swap;
  src: url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff");
  font-weight: 400;
  font-style: normal
}
._icon-x:before {
  content: ""
}
._icon-youtube:before {
  content: ""
}
._icon-play:before {
  content: ""
}
._icon-arrow:before {
  content: ""
}
._icon-pinterest:before {
  content: ""
}
._icon-instagram:before {
  content: ""
}
._icon-facebook:before {
  content: ""
}
* {
  padding: 0;
  margin: 0;
  border: 0
}
*,
*::after,
*::before {
  box-sizing: border-box
}
*::after,
*::before {
  display: inline-block
}
body,
html {
  height: 100%;
  min-width: 320px
}
body {
  color: #00a5ff;
  line-height: 1;
  font-family: Inter;
  font-size: .875rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
button,
input,
textarea {
  font-family: Inter;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: rgba(0,0,0,0)
}
input,
textarea {
  width: 100%
}
label {
  display: inline-block
}
button,
option,
select {
  cursor: pointer
}
a {
  display: inline-block;
  color: inherit;
  text-decoration: none
}
ul li {
  list-style: none
}
img {
  vertical-align: top
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit
}
body {
  font-family: Inter;
  font-size: .875rem;
  font-weight: 500;
  background-color: #fff;
  color: #1e1e1e
}
.lock body {
  overflow: hidden;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden
}
@supports (overflow:clip) {
  .wrapper {
    overflow: clip
  }
}
.wrapper>main {
  flex: 1 1 auto
}
.wrapper>* {
  min-width: 0
}
[class*=__container] {
  max-width: 79.375rem;
  margin: 0 auto;
  padding: 0 .9375rem
}
[class*="--gc"] {
  display: grid;
  min-width: 0;
  grid-template-columns: .9375rem 1fr minmax(auto,77.5rem) 1fr .9375rem
}
[class*="--gc"]>* {
  min-width: 0;
  grid-column: 3/4
}
body::after {
  content: "";
  background-color: rgba(0,0,0,.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .8s ease 0s;
  pointer-events: none;
  z-index: 149
}
.popup-show body::after {
  opacity: 1
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 10px;
  transition: visibility .8s ease 0s;
  visibility: hidden;
  pointer-events: none
}
.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto
}
.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1)
}
.popup__wrapper {
  flex-direction: column;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center
}
.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: -webkit-transform .3s ease 0s;
  transition: transform .3s ease 0s;
  transition: transform .3s ease 0s,-webkit-transform .3s ease 0s;
  /*background-color: #eee;*/
  padding: 0;
  width: 100%;
  max-width: 900px;
  /*border-radius: 20px;*/
  display: flex;
  flex-direction: column;
  gap: .3125rem
}
.lock .popup__content {
  visibility: visible
}
.popup__close {
  position: absolute;
  right: .3125rem;
  top: .3125rem;
  z-index: 5
}
.popup__text {
  padding: 56.25% 0 0 0;
  position: relative
}
.popup__text iframe,
.popup__text video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  min-width: 100%
}
.ibg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.ibg--top {
  -o-object-position: top;
  object-position: top
}
.ibg--bottom {
  -o-object-position: bottom;
  object-position: bottom
}
.ibg--left {
  -o-object-position: left;
  object-position: left
}
.ibg--right {
  -o-object-position: right;
  object-position: right
}
.ibg--contain {
  -o-object-fit: contain;
  object-fit: contain
}
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: #fff;
  z-index: 1001
}
.preloader__image {
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  text-align: center;
  -webkit-animation: preloader-rotate 2s infinite linear;
  animation: preloader-rotate 2s infinite linear
}
@-webkit-keyframes preloader-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}
@keyframes preloader-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}
.loaded_hiding .preloader {
  transition: .3s opacity;
  opacity: 0
}
.loaded .preloader {
  display: none
}
.btn {
  font-weight: 800;
  font-size: 1rem;
  line-height: 150%;
  letter-spacing: -.01em;
  color: #0747a6;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 13px 0 rgba(0,102,255,.48);
  background: #50ffb0;
  border-radius: .625rem;
  padding: .5rem 1.5625rem;
  width: 9.375rem;
  height: 2.5rem;
  transition: all .3s ease 0s
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 5;
  overflow: hidden;
  height: 5rem
}
.header__container {
  height: 100%;
  display: flex;
  justify-content: center
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  width: 100%;
  height: 100%;
  max-width: 102.5rem
}
.header__logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%
}
.header__logo>img,
.header__logo>picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.header__logo picture img,
.header__logo picture source {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.icon-menu {
  display: none
}
.menu {
  width: 100%
}
.menu__body {
  width: 100%;
  display: flex;
  justify-content: flex-end
}
.menu__list {
  display: flex;
  row-gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2
}
.menu__item::marker {
    content: "";
    list-style: none;
}
.menu__item {
    list-style: none;
}
.menu__link {
  color: #1e1e1e;
  font-family: Inter;
  line-height: normal;
  white-space: nowrap;
  font-size: 1rem;
  line-height: 151%;
  position: relative
}
.menu__link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -.4375rem;
  width: 0;
  height: .125rem;
  border-radius: 1.875rem;
  background-color: #50ffb0;
  transition: all .3s ease 0s
}
.menu__link._navigator-active::before {
  width: 1.5rem;
  transition: all .3s ease 0s
}
.menu__link.active::before {
  width: 100%
}
.menu__calendly {
    box-shadow: 0 3px 4px 0 rgba(0, 102, 255, 0.48);
background: #50ffb0;
border-radius: 10px;
padding: 8px 37px;
color:#0747a6;
font-weight:800;
transition: all .3s ease 0s
}
.menu__calendly::before {
 display:none;   
}
.footer {
  background: #0747a6;
  position: relative
}
.footer__decor {
  aspect-ratio: 1440/456;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 3
}
.footer__decor>img:nth-child(1),
.footer__decor>picture:nth-child(1) {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.footer__decor picture:nth-child(1) img,
.footer__decor picture:nth-child(1) source {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.footer__decor>img:nth-child(2),
.footer__decor>picture:nth-child(2) {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: none
}
.footer__decor picture:nth-child(2) img,
.footer__decor picture:nth-child(2) source {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: none
}
.footer__container {
  padding-top: 2.5rem;
  padding-bottom: 1.875rem;
  position: relative
}
.footer__container h2 {
  font-weight: 700;
  line-height: 114%;
  letter-spacing: -.02em;
  text-align: center;
  color: #fff;
  margin-bottom: 1.125rem
}
.footer__container h3 {
  font-weight: 700;
  line-height: 160%;
  letter-spacing: -.03em;
  text-align: center;
  color: #fff
}
.footer .footer__container--small {
  padding-top: 1.875rem
}
.footer__fish--01 {
  position: absolute;
  top: 2.5rem;
  left: -1.875rem;
  width: 11rem;
  height: 7.625rem;
  pointer-events: none
}
.footer__fish--02 {
  position: absolute;
  top: 48%;
  left: 3%;
  width: 14.125rem;
  height: 10.25rem;
  pointer-events: none
}
.footer__fish--03 {
  position: absolute;
  right: -3%;
  top: 25%;
  width: 9.25rem;
  height: 6.625rem;
  pointer-events: none
}
.footer__fish--04 {
  position: absolute;
  right: 26%;
  top: 35%;
  width: 11.8125rem;
  height: 9rem;
  pointer-events: none
}
.footer__fish--05 {
  position: absolute;
  left: 29%;
  top: 28%;
  width: 5.9375rem;
  height: 4.0625rem;
  pointer-events: none
}
.footer__fish--06 {
  position: absolute;
  right: 6%;
  bottom: 19%;
  width: 4.375rem;
  height: 3.8125rem;
  z-index: 4;
  pointer-events: none
}
.footer__top {
  text-align: center;
  position: relative;
  z-index: 4
}
.footer__top p {
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  color: #54b7ff
}
.footer__top>a {
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  color: #50ffb0;
  transition: all .3s ease 0s
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.8125rem
}
.footer__links a {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  background-color: #50ffb0;
  border-radius: 50%
}
.footer__links a::before {
  color: #0747a6
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .9375rem;
  position: relative;
  z-index: 4
}
.footer__left {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  font-weight: 400;
  font-size: 16px;
  line-height: 187%;
  text-align: center;
  color: #fff
}
.footer__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%
}
.footer__logos a {
  display: flex;
  height: 100%
}
.footer__logos a picture img,
.footer__logos a picture source {
  width: 12.875rem;
  height: 4rem
}
.footer__right {
  display: flex
}
.footer__right a {
  font-weight: 400;
  line-height: 187%;
  text-align: center;
  color: #fff;
  transition: all .3s ease 0s
}
.video {
  width: 100%;
  height: 100%;
  max-height: 100%;
  position: relative;
  margin-top: 5rem
}
.video h1 {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 6.25rem;
  display: block;
  width: 100%;
  max-width: 77.5rem;
  margin: 0 auto;
  font-weight: 700;
  line-height: 108%;
  letter-spacing: -.02em;
  text-align: right;
  color: #fff;
  text-shadow: 0 2px 24px 0 rgba(17,20,106,.55)
}
.video>div {
  padding: 56.25% 0 0 0;
  position: relative
}
.video>div iframe,
.video>div video{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  min-width: 100%
}
.masks__container h1 {
  display: none;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 137%;
  letter-spacing: -.04em;
  text-align: center;
  color: #1e1e1e;
  margin-bottom: 2.5rem
}
.masks__container h2 {
  width: 100%;
  max-width: 59.8125rem;
  margin: 0 auto;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  color: #67818f
}
.masks__box {
  position: relative
}
.masks__content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden
}
.masks__content>img,
.masks__content>picture {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 840/540;
  max-width: 46.875rem
}
.masks__content picture img,
.masks__content picture source {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 840/540;
  max-width: 46.875rem
}
.masks__content p {
  font-weight: 500;
  line-height: 130%;
  text-align: center;
  color: #67818f
}
.masks__scale {
  -webkit-transform: scale(1.2);
  transform: scale(1.2)
}
.masks .masks-button-prev {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  left: -1.5rem
}
.masks .masks-button-next {
  right: -1.5rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%)
}
.masks .masks-button-next,
.masks .masks-button-prev {
  position: absolute;
  top: 50%;
  z-index: 1
}
.masks .masks-button-next::before,
.masks .masks-button-prev::before {
  font-size: 3rem;
  color: #50ffb0
}
.masks .masks-button-next::after,
.masks .masks-button-prev::after {
  content: "";
  position: absolute;
  left: .625rem;
  top: .625rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: #0747a6;
  z-index: -1;
  transition: all .3s ease 0s
}
.masks .masks-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.0625rem
}
.masks .swiper-pagination-bullet {
  border-radius: 1.875rem;
  width: 1.1875rem;
  height: .1875rem;
  background: #67818f;
  transition: all .3s ease 0s
}
.masks .swiper-pagination-bullet-active {
  background: #50ffb0;
  width: 2.25rem;
  transition: all .3s ease 0s
}
.how {
  background-color: #00a5ff;
  position: relative
}
.how__0 {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(50%);
  transform: translateY(50%)
}
.how__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center
}
.how__container h2 {
  font-weight: 700;
  line-height: 154%;
  letter-spacing: -.02em;
  text-align: center;
  color: #fff
}
.how__box {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 67.5rem
}
.how__box :nth-child(odd).how__row {
  text-align: right
}
.how__box :nth-child(even).how__row {
  flex-direction: row-reverse;
  text-align: left
}
.how__box :nth-child(1).how__row .how__img::before {
  height: 75%;
  bottom: -.625rem;
  right: -.625rem
}
.how__box :nth-child(2).how__row .how__img::before {
  height: 65%;
  bottom: 1.875rem;
  right: -.625rem
}
.how__box :nth-child(3).how__row .how__img::before {
  height: 90%;
  bottom: -.375rem;
  right: -.375rem;
  width: 98%
}
.how__row {
  display: flex;
  align-items: center;
  row-gap: 1.5rem
}
.how__row h3 {
  font-weight: 800;
  line-height: 106%;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .6875rem
}
.how__row p {
  font-weight: 500;
  line-height: 148%;
  color: #fff
}
.how__row p span {
  font-weight: 800
}
.how__img {
  width: 100%;
  max-width: 30rem;
  position: relative
}
.how__img>div {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%,-60%);
  transform: translate(-50%,-60%);
  z-index: 3
}
.how__img>div span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%
}
.how__img>div span::before {
  color: #50ffb0;
  z-index: 2;
  position: relative;
  transition: all .3s ease 0s
}
.how__img>div span::after {
  content: "";
  position: absolute;
  left: .625rem;
  top: .9375rem;
  width: 60%;
  height: 60%;
  max-height: 2.5rem;
  background: #fff;
  z-index: 1
}
.how__img>img,
.how__img>picture {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.how__img picture img,
.how__img picture source {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.how__img::before {
  content: "";
  position: absolute;
  width: 100%;
  background: #50ffb0;
  border-radius: 2.875rem;
  z-index: 1
}
.explorer {
  background-color: #0747a6;
  position: relative
}
.explorer__1 {
  width: 100%;
  position: absolute;
  left: 0
}
.explorer__1>img,
.explorer__1>picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.explorer__1 picture img,
.explorer__1 picture source {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.explorer__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center
}
.explorer__container h3 {
  font-weight: 700;
  line-height: 160%;
  letter-spacing: -.03em;
  text-align: center;
  color: #fff
}
.explorer__images {
  display: flex;
  flex-direction: column;
  align-items: center
}
.explorer__logo {
  aspect-ratio: 722/255
}
.explorer__logo>img,
.explorer__logo>picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.explorer__logo picture img,
.explorer__logo picture source {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.explorer__2 {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0
}
.explorer__2>img,
.explorer__2>picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.explorer__2 picture img,
.explorer__2 picture source {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.explorer__diver {
  aspect-ratio: 764/434;
  -webkit-transform-origin: center center;
  transform-origin: center center
}
.explorer__diver>img,
.explorer__diver>picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.explorer__diver picture img,
.explorer__diver picture source {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.explorer__text {
  width: 100%;
  max-width: 52.5rem;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1
}
.explorer__items {
  width: 100%;
  max-width: 67.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 2.8125rem
}
.explorer__item {
  display: flex;
  flex-direction: column;
  align-items: center
}
.explorer__item h4 {
  font-weight: 800;
  line-height: 106%;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-align: center;
  color: #fff
}
.explorer__item p {
  font-weight: 500;
  line-height: 148%;
  text-align: center;
  color: #fff
}
.explorer__img {
  width: 100%;
  aspect-ratio: 334/206;
  position: relative
}
.explorer__img>img,
.explorer__img>picture {
  aspect-ratio: 334/206;
  border-radius: 2.1875rem;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 2
}
.explorer__img picture img,
.explorer__img picture source {
  aspect-ratio: 334/206;
  border-radius: 2.1875rem;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 2
}
.explorer__img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -.8125rem;
  right: -.5rem;
  background: #50ffb0;
  border-radius: 2.75rem;
  z-index: 1
}
.explorer__compatible {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-column-gap: 1.375rem;
  -moz-column-gap: 1.375rem;
  column-gap: 1.375rem;
  margin-bottom: 1.875rem
}
.explorer__compatible p {
  font-weight: 400;
  line-height: 150%;
  color: #fff
}
.choose__container {
  display: flex;
  flex-direction: column
}
.choose__container h2 {
  font-weight: 700;
  line-height: 114%;
  letter-spacing: -.02em;
  text-align: center;
  color: #1e1e1e
}
.choose__items {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit,minmax(320px,320px));
  margin-bottom: 3.125rem;
  row-gap: 2.5rem
}
.choose__item {
  display: flex;
  align-items: center;
  flex-direction: column
}
.choose__item h3 {
  font-weight: 800;
  line-height: 106%;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-align: center;
  color: #1e1e1e;
  margin-bottom: .625rem
}
.choose__item p {
  font-weight: 500;
  line-height: 148%;
  text-align: center;
  color: #67818f
}
.choose .btn {
  align-self: center
}
.testimonials {
  background-color: #00a5ff;
  position: relative
}
.testimonials__0 {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(50%);
  transform: translateY(50%)
}
.testimonials__container h2 {
  font-weight: 700;
  line-height: 114%;
  letter-spacing: -.02em;
  text-align: center;
  color: #fff
}
.testimonials__box {
  position: relative
}
.testimonials__slider {
  max-width: 68.75rem
}
.testimonials__slide {
  width: 33.3333333333%;
  background-color: #fff;
  border-radius: 2.1875rem
}
.testimonials__content {
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 2.1875rem;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 5.9375rem;
  background-color: #fff
}
.testimonials__content h5 {
  font-weight: 700;
  line-height: 108%;
  text-align: center;
  color: #67818f;
  margin-bottom: .3125rem
}
.testimonials__content blockquote {
  font-weight: 400;
  line-height: 148%;
  text-align: center;
  color: #000
}
.testimonials__foto {
  position: relative;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto
}
.testimonials__foto>img,
.testimonials__foto>picture {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 3
}
.testimonials__foto picture img,
.testimonials__foto picture source {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 3
}
.testimonials__foto::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 0 auto;
  top: .625rem;
  width: 15.75rem;
  height: 11.6875rem;
  background: rgba(80,255,255,.6);
  z-index: 1;
  border-radius: 100px;
  -webkit-filter: blur(18px);
  filter: blur(18px)
}
.testimonials .testimonials-button-prev {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  left: -1.5rem
}
.testimonials .testimonials-button-next {
  right: -1.5rem
}
.testimonials .testimonials-button-next,
.testimonials .testimonials-button-prev {
  position: absolute;
  top: 50%;
  z-index: 1
}
.testimonials .testimonials-button-next::before,
.testimonials .testimonials-button-prev::before {
  font-size: 3rem;
  color: #50ffb0
}
.testimonials .testimonials-button-next::after,
.testimonials .testimonials-button-prev::after {
  content: "";
  position: absolute;
  left: .625rem;
  top: .625rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: #0747a6;
  z-index: -1;
  transition: all .3s ease 0s
}
.baner {
  padding-top: 5rem;
  background-color: #0747a6;
  position: relative;
  height: 100%;
  height: 380px;
  overflow: hidden
}
.baner__img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  z-index: 1;
  position: absolute;
  top: 5rem;
  left: 0;
  display: flex;
  justify-content: flex-end
}
.baner__container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2
}
.baner__container h1 {
  font-weight: 700;
  line-height: 108%;
  letter-spacing: -.02em;
  color: #fff;
  text-shadow: 0 2px 24px 0 rgba(17,20,106,.55)
}
.baner__container p {
  width: 100%;
  max-width: 46.875rem;
  font-weight: 500;
  line-height: 148%;
  color: #fff;
  text-align: left
}
.policy h2 {
  font-weight: 700;
  text-align: left;
  font-size: 1.875rem
}
.policy h3 {
  font-weight: 700;
  text-align: left;
  font-size: 1.875rem
}
.policy p {
  font-weight: 500;
  text-align: left;
  line-height: 151%
}
.policy p:not(:last-child) {
  margin-bottom: 1.875rem
}
.policy ul {
  font-weight: 500;
  text-align: left;
  line-height: 151%
}
.policy li {
  font-weight: 500;
  text-align: left;
  line-height: 151%;
  list-style: inside
}
.swiper {
  overflow: hidden
}
.swiper-initialized {
  touch-action: pan-y
}
.swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative
}
.swiper-vertical .swiper-wrapper {
  flex-direction: column
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start
}
.swiper-initialized .swiper-slide {
  flex-shrink: 0
}
.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0)
}
.swiper-button-lock {
  display: none!important
}
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, 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");
  font-weight: 400;
  font-style: normal
}
:root {
  --swiper-theme-color: #007aff
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1
}
.swiper-vertical>.swiper-wrapper {
  flex-direction: column
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform,-webkit-transform;
  box-sizing: content-box
}
.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0)
}
.swiper-pointer-events {
  touch-action: pan-y
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform,-webkit-transform
}
.swiper-slide-invisible-blank {
  visibility: hidden
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: height,-webkit-transform;
  transition-property: transform,height;
  transition-property: transform,height,-webkit-transform
}
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0,0,0,.15)
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))
}
.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none
}
.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none
}
.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start
}
.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory
}
.swiper-vertical.swiper-css-mode>.swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory
}
.swiper-centered>.swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999
}
.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before)
}
.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after)
}
.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before)
}
.swiper-centered.swiper-vertical>.swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after)
}
.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size)
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size)
}
:root {
  --swiper-navigation-size: 44px
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size)/44*27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size)/ 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color,var(--swiper-theme-color))
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev"
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next"
}
.swiper-button-lock {
  display: none
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  z-index: 10
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0
}
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(.33);
  transform: scale(.33);
  position: relative
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(.66);
  transform: scale(.66)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(.33);
  transform: scale(.33)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(.66);
  transform: scale(.66)
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(.33);
  transform: scale(.33)
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));
  height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color,#000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity,.2)
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer
}
.swiper-pagination-bullet:only-child {
  display: none!important
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity,1);
  background: var(--swiper-pagination-color,var(--swiper-theme-color))
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0,-50%,0);
  transform: translate3d(0,-50%,0)
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap,6px) 0;
  display: block
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: .2s transform,.2s top
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap,4px)
}
.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap
}
.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform,.2s left
}
.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform,.2s right
}
.swiper-pagination-progressbar {
  background: rgba(0,0,0,.25);
  position: absolute
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color,var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top
}
.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0
}
.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0
}
.swiper-pagination-lock {
  display: none
}
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0,0,0,.1)
}
.swiper-horizontal>.swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%
}
.swiper-vertical>.swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0,0,0,.5);
  border-radius: 10px;
  left: 0;
  top: 0
}
.swiper-scrollbar-cursor-drag {
  cursor: move
}
.swiper-scrollbar-lock {
  display: none
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center
}
.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain
}
.swiper-slide-zoomed {
  cursor: move
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000
}
.swiper-free-mode>.swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto
}
.swiper-grid>.swiper-wrapper {
  flex-wrap: wrap
}
.swiper-grid-column>.swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none
}
.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}
.swiper-cube {
  overflow: visible
}
.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none
}
.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next+.swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible
}
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}
.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: .6;
  z-index: 0
}
.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
  filter: blur(50px)
}
.swiper-flip {
  overflow: visible
}
.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: opacity,height,-webkit-transform;
  transition-property: transform,opacity,height;
  transition-property: transform,opacity,height,-webkit-transform
}
.swiper-cards {
  overflow: visible
}
.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden
}
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, 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");
  font-weight: 400;
  font-style: normal
}
:root {
  --swiper-theme-color: #007aff
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block
}
.swiper-vertical>.swiper-wrapper {
  flex-direction: column
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform,-webkit-transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function,initial);
  box-sizing: content-box
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0)
}
.swiper-horizontal {
  touch-action: pan-y
}
.swiper-vertical {
  touch-action: pan-x
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform,-webkit-transform;
  display: block
}
.swiper-slide-invisible-blank {
  visibility: hidden
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: height,-webkit-transform;
  transition-property: transform,height;
  transition-property: transform,height,-webkit-transform
}
.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px
}
.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d
}
.swiper-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d
}
.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none
}
.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none
}
.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start
}
.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory
}
.swiper-css-mode.swiper-vertical>.swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory
}
.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
  -ms-scroll-snap-type: none;
  scroll-snap-type: none
}
.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: none
}
.swiper-css-mode.swiper-centered>.swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999
}
.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always
}
.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before)
}
.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after)
}
.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before)
}
.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after)
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0,0,0,.15)
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent
}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000
}
@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}
@media (min-width:79.375em) {
  .header__logo {
    max-width: 8.1875rem
  }
  .header__logo {
    max-height: 2.25rem
  }
  .footer__container h2 {
    font-size: 3.5rem
  }
  .footer__container h3 {
    font-size: 2.5rem
  }
  .footer__container h3 {
    margin-bottom: 1.875rem
  }
  .footer__top {
    margin-bottom: 3.125rem
  }
  .footer__top p {
    font-size: 1.25rem
  }
  .footer__top>a {
    font-size: 1.25rem
  }
  .footer__links {
    margin-top: 2.625rem
  }
  .footer__links a {
    width: 2.625rem
  }
  .footer__links a::before {
    font-size: 1.6875rem
  }
  .footer__left {
    font-size: 1rem
  }
  .footer__logos a {
    width: 12.875rem
  }
  .footer__logos a>img,
  .footer__logos a>picture {
    width: 12.875rem
  }
  .footer__logos a>img,
  .footer__logos a>picture {
    height: 4rem
  }
  .footer__right {
    gap: 3.125rem
  }
  .footer__right a {
    font-size: 1rem
  }
  .masks__container {
    padding-top: 4.375rem
  }
  .masks__container {
    padding-bottom: 4.375rem
  }
  .masks__container h2 {
    font-size: 1.25rem
  }
  .masks__container h2 {
    margin-bottom: 3.75rem
  }
  .masks__content>img,
  .masks__content>picture {
    margin-bottom: 3.125rem
  }
  .masks__content picture img,
  .masks__content picture source {
    margin-bottom: 3.125rem
  }
  .masks__content p {
    font-size: 1.25rem
  }
  .how {
    padding-top: 3.75rem
  }
  .how {
    padding-bottom: 4.375rem
  }
  .how__container h2 {
    font-size: 3rem
  }
  .how__container h2 {
    margin-bottom: 1.25rem
  }
  .how__box {
    margin-bottom: 4.375rem
  }
  .how__row {
    -webkit-column-gap: 6.5rem;
    -moz-column-gap: 6.5rem;
    column-gap: 6.5rem
  }
  .how__row h3 {
    font-size: 2rem
  }
  .how__row p {
    font-size: 1.25rem
  }
  .how__img>div {
    width: 4.375rem
  }
  .how__img>div span::before {
    font-size: 4.375rem
  }
  .explorer {
    padding-top: 4.6875rem
  }
  .explorer {
    padding-bottom: 4.375rem
  }
  .explorer__1 {
    top: 4.6875rem
  }
  .explorer__container h3 {
    font-size: 2.5rem
  }
  .explorer__container h3 {
    margin-bottom: 3.75rem
  }
  .explorer__images {
    gap: 2.8125rem
  }
  .explorer__logo {
    width: 45.125rem
  }
  .explorer__logo {
    height: 15.9375rem
  }
  .explorer__diver {
    width: 47.75rem
  }
  .explorer__diver {
    height: 27.125rem
  }
  .explorer__diver {
    margin-bottom: 4.8125rem
  }
  .explorer__text {
    font-size: 1.375rem
  }
  .explorer__text {
    margin-bottom: 2.375rem
  }
  .explorer__items {
    margin-bottom: 5rem
  }
  .explorer__item h4 {
    font-size: 2rem
  }
  .explorer__item h4 {
    margin-bottom: 2.75rem
  }
  .explorer__item p {
    font-size: 1.25rem
  }
  .explorer__img {
    margin-bottom: 2.75rem
  }
  .explorer__compatible p {
    font-size: 1.25rem
  }
  .explorer__compatible>img,
  .explorer__compatible>picture {
    width: 13.875rem
  }
  .explorer__compatible>img,
  .explorer__compatible>picture {
    height: 1.625rem
  }
  .explorer__compatible picture img,
  .explorer__compatible picture source {
    width: 13.875rem
  }
  .explorer__compatible picture img,
  .explorer__compatible picture source {
    height: 1.625rem
  }
  .choose {
    padding-top: 3.75rem
  }
  .choose {
    padding-bottom: 4.375rem
  }
  .choose__container h2 {
    font-size: 3.5rem
  }
  .choose__container h2 {
    margin-bottom: 4.0625rem
  }
  .choose__items {
    -webkit-column-gap: 5.9375rem;
    -moz-column-gap: 5.9375rem;
    column-gap: 5.9375rem
  }
  .choose__items :nth-child(1).choose__item>img,
  .choose__items :nth-child(1).choose__item>picture,
  .choose__items :nth-child(2).choose__item>img,
  .choose__items :nth-child(2).choose__item>picture {
    width: 6.5625rem
  }
  .choose__items :nth-child(1).choose__item>img,
  .choose__items :nth-child(1).choose__item>picture,
  .choose__items :nth-child(2).choose__item>img,
  .choose__items :nth-child(2).choose__item>picture {
    height: 7.125rem
  }
  .choose__items :nth-child(1).choose__item>img,
  .choose__items :nth-child(1).choose__item>picture,
  .choose__items :nth-child(2).choose__item>img,
  .choose__items :nth-child(2).choose__item>picture {
    margin-bottom: 2.1875rem
  }
  .choose__items :nth-child(1).choose__item picture img,
  .choose__items :nth-child(1).choose__item picture source,
  .choose__items :nth-child(2).choose__item picture img,
  .choose__items :nth-child(2).choose__item picture source {
    width: 6.5625rem
  }
  .choose__items :nth-child(1).choose__item picture img,
  .choose__items :nth-child(1).choose__item picture source,
  .choose__items :nth-child(2).choose__item picture img,
  .choose__items :nth-child(2).choose__item picture source {
    height: 7.125rem
  }
  .choose__items :nth-child(1).choose__item picture img,
  .choose__items :nth-child(1).choose__item picture source,
  .choose__items :nth-child(2).choose__item picture img,
  .choose__items :nth-child(2).choose__item picture source {
    margin-bottom: 2.1875rem
  }
  .choose__items :nth-child(3).choose__item>img,
  .choose__items :nth-child(3).choose__item>picture {
    width: 10.1875rem
  }
  .choose__items :nth-child(3).choose__item>img,
  .choose__items :nth-child(3).choose__item>picture {
    height: 8.625rem
  }
  .choose__items :nth-child(3).choose__item>img,
  .choose__items :nth-child(3).choose__item>picture {
    margin-bottom: .75rem
  }
  .choose__items :nth-child(3).choose__item picture img,
  .choose__items :nth-child(3).choose__item picture source {
    width: 10.1875rem
  }
  .choose__items :nth-child(3).choose__item picture img,
  .choose__items :nth-child(3).choose__item picture source {
    height: 8.625rem
  }
  .choose__items :nth-child(3).choose__item picture img,
  .choose__items :nth-child(3).choose__item picture source {
    margin-bottom: .75rem
  }
  .choose__item h3 {
    font-size: 2rem
  }
  .choose__item p {
    font-size: 1.25rem
  }
  .testimonials {
    padding-top: 3.75rem
  }
  .testimonials {
    padding-bottom: 4.375rem
  }
  .testimonials__container h2 {
    font-size: 3.5rem
  }
  .testimonials__container h2 {
    margin-bottom: 4.375rem
  }
  .testimonials__wrapper {
    padding-top: 5.625rem
  }
  .testimonials__content {
    padding-bottom: 2.875rem
  }
  .testimonials__content h5 {
    font-size: 1.5rem
  }
  .testimonials__content blockquote {
    font-size: 1.0625rem
  }
  .testimonials__foto {
    width: 8.75rem
  }
  .testimonials__foto {
    height: 8.75rem
  }
  .testimonials__foto {
    margin-top: -4.375rem
  }
  .baner__container {
    padding-top: 4.1875rem
  }
  .baner__container {
    padding-bottom: 4.625rem
  }
  .baner__container p {
    font-size: 1.25rem
  }
  .baner__container p {
    margin-top: 2.625rem
  }
  .policy {
    padding-bottom: 7.5rem
  }
  .policy__container {
    padding-top: 2.5rem;
    color: #67818f;
  }
  .policy h2 {
    margin-bottom: 1.25rem
  }
  .policy h3 {
    margin-bottom: 1.25rem
  }
  .policy p {
    font-size: 1.25rem
  }
  .policy ul {
    margin-bottom: 1.875rem
  }
  .policy ul {
    font-size: 1.25rem
  }
  .policy li {
    font-size: 1.25rem
  }
  .policy li:not(:last-child) {
    margin-bottom: 1.875rem
  }
}
@media (min-width:90em) {
  .video h1 {
    font-size: 3rem
  }
  .baner__container h1 {
    font-size: 3rem
  }
}
@media (min-width:120em) {
  .header__content {
    -webkit-column-gap: 11.875rem;
    -moz-column-gap: 11.875rem;
    column-gap: 11.875rem
  }
  .menu__list {
    -webkit-column-gap: 3.5rem;
    -moz-column-gap: 3.5rem;
    column-gap: 3.5rem
  }
}
@media (max-width:75em) {
  .testimonials__box {
    padding-bottom: 2.5rem
  }
  .testimonials .testimonials-button-next,
  .testimonials .testimonials-button-prev {
    top: calc(100% - 24px)
  }
}
@media (max-width:20em) {
  .header__logo {
    max-width: 5.3125rem
  }
  .header__logo {
    max-height: 1.4375rem
  }
  .footer__container h2 {
    font-size: 1.5rem
  }
  .footer__container h3 {
    font-size: 1.25rem
  }
  .footer__container h3 {
    margin-bottom: 1.25rem
  }
  .footer__top {
    margin-bottom: 2.5rem
  }
  .footer__top p {
    font-size: 1rem
  }
  .footer__top>a {
    font-size: 1rem
  }
  .footer__links {
    margin-top: 1.75rem
  }
  .footer__links a {
    width: 2.25rem
  }
  .footer__links a::before {
    font-size: 1.3125rem
  }
  .footer__left {
    font-size: .75rem
  }
  .footer__logos a {
    width: 9.75rem
  }
  .footer__logos a>img,
  .footer__logos a>picture {
    width: 9.75rem
  }
  .footer__logos a>img,
  .footer__logos a>picture {
    height: 3rem
  }
  .footer__right {
    gap: 1.25rem
  }
  .footer__right a {
    font-size: .75rem
  }
  .masks__container {
    padding-top: 2.5rem
  }
  .masks__container {
    padding-bottom: 1.875rem
  }
  .masks__container h2 {
    font-size: .9375rem
  }
  .masks__container h2 {
    margin-bottom: .625rem
  }
  .masks__content>img,
  .masks__content>picture {
    margin-bottom: 1.875rem
  }
  .masks__content picture img,
  .masks__content picture source {
    margin-bottom: 1.875rem
  }
  .masks__content p {
    font-size: .75rem
  }
  .how {
    padding-top: 2rem
  }
  .how {
    padding-bottom: 2rem
  }
  .how__container h2 {
    font-size: 1.5rem
  }
  .how__container h2 {
    margin-bottom: .75rem
  }
  .how__box {
    margin-bottom: .8125rem
  }
  .how__row {
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem
  }
  .how__row h3 {
    font-size: 1rem
  }
  .how__row p {
    font-size: 1rem
  }
  .how__img>div {
    width: 2.5rem
  }
  .how__img>div span::before {
    font-size: 2.5rem
  }
  .explorer {
    padding-top: 1.875rem
  }
  .explorer {
    padding-bottom: 2.3125rem
  }
  .explorer__1 {
    top: 1.875rem
  }
  .explorer__container h3 {
    font-size: 1.25rem
  }
  .explorer__container h3 {
    margin-bottom: 1.875rem
  }
  .explorer__images {
    gap: .9375rem
  }
  .explorer__logo {
    width: 14.5rem
  }
  .explorer__logo {
    height: 5.125rem
  }
  .explorer__diver {
    width: 15.3125rem
  }
  .explorer__diver {
    height: 8.6875rem
  }
  .explorer__diver {
    margin-bottom: 1.25rem
  }
  .explorer__text {
    font-size: 1rem
  }
  .explorer__text {
    margin-bottom: 1.8125rem
  }
  .explorer__items {
    margin-bottom: 1.875rem
  }
  .explorer__item h4 {
    font-size: 1rem
  }
  .explorer__item h4 {
    margin-bottom: .9375rem
  }
  .explorer__item p {
    font-size: 1rem
  }
  .explorer__img {
    margin-bottom: 1.25rem
  }
  .explorer__compatible p {
    font-size: .875rem
  }
  .explorer__compatible>img,
  .explorer__compatible>picture {
    width: 11.4375rem
  }
  .explorer__compatible>img,
  .explorer__compatible>picture {
    height: 1.375rem
  }
  .explorer__compatible picture img,
  .explorer__compatible picture source {
    width: 11.4375rem
  }
  .explorer__compatible picture img,
  .explorer__compatible picture source {
    height: 1.375rem
  }
  .choose {
    padding-top: 1.875rem
  }
  .choose {
    padding-bottom: 1.25rem
  }
  .choose__container h2 {
    font-size: 1.5rem
  }
  .choose__container h2 {
    margin-bottom: 3.125rem
  }
  .choose__items {
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem
  }
  .choose__items :nth-child(1).choose__item>img,
  .choose__items :nth-child(1).choose__item>picture,
  .choose__items :nth-child(2).choose__item>img,
  .choose__items :nth-child(2).choose__item>picture {
    width: 5.25rem
  }
  .choose__items :nth-child(1).choose__item>img,
  .choose__items :nth-child(1).choose__item>picture,
  .choose__items :nth-child(2).choose__item>img,
  .choose__items :nth-child(2).choose__item>picture {
    height: 6.0625rem
  }
  .choose__items :nth-child(1).choose__item>img,
  .choose__items :nth-child(1).choose__item>picture,
  .choose__items :nth-child(2).choose__item>img,
  .choose__items :nth-child(2).choose__item>picture {
    margin-bottom: .625rem
  }
  .choose__items :nth-child(1).choose__item picture img,
  .choose__items :nth-child(1).choose__item picture source,
  .choose__items :nth-child(2).choose__item picture img,
  .choose__items :nth-child(2).choose__item picture source {
    width: 5.25rem
  }
  .choose__items :nth-child(1).choose__item picture img,
  .choose__items :nth-child(1).choose__item picture source,
  .choose__items :nth-child(2).choose__item picture img,
  .choose__items :nth-child(2).choose__item picture source {
    height: 6.0625rem
  }
  .choose__items :nth-child(1).choose__item picture img,
  .choose__items :nth-child(1).choose__item picture source,
  .choose__items :nth-child(2).choose__item picture img,
  .choose__items :nth-child(2).choose__item picture source {
    margin-bottom: .625rem
  }
  .choose__items :nth-child(3).choose__item>img,
  .choose__items :nth-child(3).choose__item>picture {
    width: 7.5rem
  }
  .choose__items :nth-child(3).choose__item>img,
  .choose__items :nth-child(3).choose__item>picture {
    height: 6.375rem
  }
  .choose__items :nth-child(3).choose__item>img,
  .choose__items :nth-child(3).choose__item>picture {
    margin-bottom: .625rem
  }
  .choose__items :nth-child(3).choose__item picture img,
  .choose__items :nth-child(3).choose__item picture source {
    width: 7.5rem
  }
  .choose__items :nth-child(3).choose__item picture img,
  .choose__items :nth-child(3).choose__item picture source {
    height: 6.375rem
  }
  .choose__items :nth-child(3).choose__item picture img,
  .choose__items :nth-child(3).choose__item picture source {
    margin-bottom: .625rem
  }
  .choose__item h3 {
    font-size: 1.25rem
  }
  .choose__item p {
    font-size: 1rem
  }
  .testimonials {
    padding-top: 2rem
  }
  .testimonials {
    padding-bottom: 3.125rem
  }
  .testimonials__container h2 {
    font-size: 1.5rem
  }
  .testimonials__container h2 {
    margin-bottom: 1.25rem
  }
  .testimonials__wrapper {
    padding-top: 5rem
  }
  .testimonials__content {
    padding-bottom: 2.5rem
  }
  .testimonials__content h5 {
    font-size: 1.25rem
  }
  .testimonials__content blockquote {
    font-size: .875rem
  }
  .testimonials__foto {
    width: 7.5rem
  }
  .testimonials__foto {
    height: 7.5rem
  }
  .testimonials__foto {
    margin-top: -3.75rem
  }
  .baner__container {
    padding-top: 2.5rem
  }
  .baner__container {
    padding-bottom: 2.5rem
  }
  .baner__container p {
    font-size: 1rem
  }
  .baner__container p {
    margin-top: 1.25rem
  }
  .policy {
    padding-bottom: 4.6875rem
  }
  .policy__container {
    padding-top: 1.25rem
  }
  .policy h2 {
    margin-bottom: .9375rem
  }
  .policy h3 {
    margin-bottom: .9375rem
  }
  .policy p {
    font-size: 1rem
  }
  .policy ul {
    margin-bottom: 1.25rem
  }
  .policy ul {
    font-size: 1rem
  }
  .policy li {
    font-size: 1rem
  }
  .policy li:not(:last-child) {
    margin-bottom: 1.25rem
  }
}
@media (max-width:84.375em) {
  .header__content {
    padding: 0 2.5rem
  }
}
@media (max-width:81.25em) {
  .masks .masks-button-prev {
    left: .9375rem
  }
  .masks .masks-button-next {
    right: .9375rem
  }
  .testimonials .testimonials-button-prev {
    left: .9375rem
  }
  .testimonials .testimonials-button-next {
    right: .9375rem
  }
}
@media (max-width:61.99875em) {
  .header__content {
    padding: 0
  }
  .icon-menu {
    display: block;
    position: relative;
    width: 1.375rem;
    height: .875rem;
    cursor: pointer;
    z-index: 5
  }
  .icon-menu span,
  .icon-menu::after,
  .icon-menu::before {
    content: "";
    transition: all .3s ease 0s;
    left: 0;
    position: absolute;
    height: .125rem;
    background-color: #013077;
    background: #013077
  }
  .icon-menu::before {
    top: 0;
    width: 100%
  }
  .icon-menu::after {
    bottom: 0;
    width: 19px
  }
  .icon-menu span {
    top: calc(50% - .0625rem);
    width: 15px
  }
  .menu-open .icon-menu span {
    width: 0
  }
  .menu-open .icon-menu::after,
  .menu-open .icon-menu::before {
    width: 100%
  }
  .menu-open .icon-menu::before {
    top: calc(50% - .0625rem);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
  }
  .menu-open .icon-menu::after {
    top: calc(50% - .0625rem);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
  }
  .menu__body {
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    transition: all .3s ease 0s;
    overflow: auto
  }
  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    transition: all .3s ease 0s;
    width: 100%;
    height: 100%;
    background-color: #f5f5f7;
    z-index: 2
  }
  .menu-open .menu__body {
    left: 0
  }
  .menu-open .menu__body::before {
    left: 0
  }
  .menu__list {
    flex-direction: column;
    row-gap: 2.5rem;
    padding-top: 9.375rem
  }
  .menu {
    width: auto
  }
  
  .header__content .menu__item {
      margin-left: auto;
    margin-right: 20px;
  }
  .video h1 {
    padding-right: .9375rem
  }
  .baner__img {
    opacity: .5
  }
}
@media (max-width:47.99875em) {
  .footer__decor>img:nth-child(1),
  .footer__decor>picture:nth-child(1) {
    display: none
  }
  .footer__decor picture:nth-child(1) img,
  .footer__decor picture:nth-child(1) source {
    display: none
  }
  .footer__decor>img:nth-child(2),
  .footer__decor>picture:nth-child(2) {
    display: block
  }
  .footer__decor picture:nth-child(2) img,
  .footer__decor picture:nth-child(2) source {
    display: block
  }
  .footer__container {
    padding-bottom: 1.75rem
  }
  .footer__fish--01 {
    display: none
  }
  .footer__fish--02 {
    display: none
  }
  .footer__fish--03 {
    display: none
  }
  .footer__fish--04 {
    display: none
  }
  .footer__fish--05 {
    display: none
  }
  .footer__fish--06 {
    display: none
  }
  .footer__links {
    gap: 1rem
  }
  .footer__bottom {
    flex-direction: column
  }
  .footer__left {
    flex-direction: column-reverse
  }
  .video h1 {
    display: none
  }
  .masks__container h1 {
    display: block
  }
  .masks .masks-button-prev {
    -webkit-transform: translateY(0) rotate(180deg);
    transform: translateY(0) rotate(180deg)
  }
  .masks .masks-button-next {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
  .masks .masks-button-next,
  .masks .masks-button-prev {
    top: calc(100% - 24px)
  }
  .how__box :nth-child(even).how__row {
    flex-direction: column-reverse
  }
  .how__box :nth-child(2).how__row .how__text {
    margin-top: -.9375rem
  }
  .how__box {
    gap: 1.25rem
  }
  .how__row h3 {
    margin-bottom: .5625rem
  }
  .how__row {
    flex-direction: column-reverse;
    gap: 2.1875rem;
    text-align: center!important
  }
  .explorer__items {
    grid-template-columns: auto
  }
  .explorer__compatible {
    flex-direction: column;
    margin-bottom: 1.5625rem
  }
  .choose .btn {
    display: none
  }
  .testimonials__foto {
    margin-bottom: 1.4375rem
  }
  .baner__container h1 {
    font-size: 1.5rem
  }
}
@media (max-width:28.125em) {
  .how__box :nth-child(2).how__row .how__img::before {
    bottom: 1.25rem
  }
}
@media (min-width:48em)and (max-width:120em) {
  .header__content {
    -webkit-column-gap: clamp(1.25rem ,-5.8333333333rem + 14.7569444444vw ,11.875rem);
    -moz-column-gap: clamp(1.25rem ,-5.8333333333rem + 14.7569444444vw ,11.875rem);
    column-gap: clamp(1.25rem ,-5.8333333333rem + 14.7569444444vw ,11.875rem)
  }
  .menu__list {
    -webkit-column-gap: clamp(1.875rem ,.7916666667rem + 2.2569444444vw ,3.5rem);
    -moz-column-gap: clamp(1.875rem ,.7916666667rem + 2.2569444444vw ,3.5rem);
    column-gap: clamp(1.875rem ,.7916666667rem + 2.2569444444vw ,3.5rem)
  }
}
@media (min-width:20em)and (max-width:79.375em) {
  .header__logo {
    max-width: clamp(5.3125rem ,4.3440789474rem + 4.8421052632vw ,8.1875rem)
  }
  .header__logo {
    max-height: clamp(1.4375rem ,1.1638157895rem + 1.3684210526vw ,2.25rem)
  }
  .footer__container h2 {
    font-size: clamp(1.5rem ,.8263157895rem + 3.3684210526vw ,3.5rem)
  }
  .footer__container h3 {
    font-size: clamp(1.25rem ,.8289473684rem + 2.1052631579vw ,2.5rem)
  }
  .footer__container h3 {
    margin-bottom: clamp(1.25rem ,1.0394736842rem + 1.0526315789vw ,1.875rem)
  }
  .footer__top {
    margin-bottom: clamp(2.5rem ,2.2894736842rem + 1.0526315789vw ,3.125rem)
  }
  .footer__top p {
    font-size: clamp(1rem ,.9157894737rem + .4210526316vw ,1.25rem)
  }
  .footer__top>a {
    font-size: clamp(1rem ,.9157894737rem + .4210526316vw ,1.25rem)
  }
  .footer__links {
    margin-top: clamp(1.75rem ,1.4552631579rem + 1.4736842105vw ,2.625rem)
  }
  .footer__links a {
    width: clamp(2.25rem ,2.1236842105rem + .6315789474vw ,2.625rem)
  }
  .footer__links a::before {
    font-size: clamp(1.3125rem ,1.1861842105rem + .6315789474vw ,1.6875rem)
  }
  .footer__left {
    font-size: clamp(.75rem ,.6657894737rem + .4210526316vw ,1rem)
  }
  .footer__logos a {
    width: clamp(9.75rem ,8.6973684211rem + 5.2631578947vw ,12.875rem)
  }
  .footer__logos a>img,
  .footer__logos a>picture {
    width: clamp(9.75rem ,8.6973684211rem + 5.2631578947vw ,12.875rem)
  }
  .footer__logos a>img,
  .footer__logos a>picture {
    height: clamp(3rem ,2.6631578947rem + 1.6842105263vw ,4rem)
  }
  .footer__right {
    gap: clamp(1.25rem ,.6184210526rem + 3.1578947368vw ,3.125rem)
  }
  .footer__right a {
    font-size: clamp(.75rem ,.6657894737rem + .4210526316vw ,1rem)
  }
  .masks__container {
    padding-top: clamp(2.5rem ,1.8684210526rem + 3.1578947368vw ,4.375rem)
  }
  .masks__container {
    padding-bottom: clamp(1.875rem ,1.0328947368rem + 4.2105263158vw ,4.375rem)
  }
  .masks__container h2 {
    font-size: clamp(.9375rem ,.8322368421rem + .5263157895vw ,1.25rem)
  }
  .masks__container h2 {
    margin-bottom: clamp(.625rem ,-.4276315789rem + 5.2631578947vw ,3.75rem)
  }
  .masks__content>img,
  .masks__content>picture {
    margin-bottom: clamp(1.875rem ,1.4539473684rem + 2.1052631579vw ,3.125rem)
  }
  .masks__content picture img,
  .masks__content picture source {
    margin-bottom: clamp(1.875rem ,1.4539473684rem + 2.1052631579vw ,3.125rem)
  }
  .masks__content p {
    font-size: clamp(.75rem ,.5815789474rem + .8421052632vw ,1.25rem)
  }
  .how {
    padding-top: clamp(2rem ,1.4105263158rem + 2.9473684211vw ,3.75rem)
  }
  .how {
    padding-bottom: clamp(2rem ,1.2rem + 4vw ,4.375rem)
  }
  .how__container h2 {
    font-size: clamp(1.5rem ,.9947368421rem + 2.5263157895vw ,3rem)
  }
  .how__container h2 {
    margin-bottom: clamp(.75rem ,.5815789474rem + .8421052632vw ,1.25rem)
  }
  .how__box {
    margin-bottom: clamp(.8125rem ,-.3875rem + 6vw ,4.375rem)
  }
  .how__row {
    -webkit-column-gap: clamp(1.5rem ,-.1842105263rem + 8.4210526316vw ,6.5rem);
    -moz-column-gap: clamp(1.5rem ,-.1842105263rem + 8.4210526316vw ,6.5rem);
    column-gap: clamp(1.5rem ,-.1842105263rem + 8.4210526316vw ,6.5rem)
  }
  .how__row h3 {
    font-size: clamp(1rem ,.6631578947rem + 1.6842105263vw ,2rem)
  }
  .how__row p {
    font-size: clamp(1rem ,.9157894737rem + .4210526316vw ,1.25rem)
  }
  .how__img>div {
    width: clamp(2.5rem ,1.8684210526rem + 3.1578947368vw ,4.375rem)
  }
  .how__img>div span::before {
    font-size: clamp(2.5rem ,1.8684210526rem + 3.1578947368vw ,4.375rem)
  }
  .explorer {
    padding-top: clamp(1.875rem ,.9276315789rem + 4.7368421053vw ,4.6875rem)
  }
  .explorer {
    padding-bottom: clamp(2.3125rem ,1.6177631579rem + 3.4736842105vw ,4.375rem)
  }
  .explorer__1 {
    top: clamp(1.875rem ,.9276315789rem + 4.7368421053vw ,4.6875rem)
  }
  .explorer__container h3 {
    font-size: clamp(1.25rem ,.8289473684rem + 2.1052631579vw ,2.5rem)
  }
  .explorer__container h3 {
    margin-bottom: clamp(1.875rem ,1.2434210526rem + 3.1578947368vw ,3.75rem)
  }
  .explorer__images {
    gap: clamp(.9375rem ,.3059210526rem + 3.1578947368vw ,2.8125rem)
  }
  .explorer__logo {
    width: clamp(14.5rem ,4.1842105263rem + 51.5789473684vw ,45.125rem)
  }
  .explorer__logo {
    height: clamp(5.125rem ,1.4828947368rem + 18.2105263158vw ,15.9375rem)
  }
  .explorer__diver {
    width: clamp(15.3125rem ,4.3861842105rem + 54.6315789474vw ,47.75rem)
  }
  .explorer__diver {
    height: clamp(8.6875rem ,2.4769736842rem + 31.0526315789vw ,27.125rem)
  }
  .explorer__diver {
    margin-bottom: clamp(1.25rem ,.05rem + 6vw ,4.8125rem)
  }
  .explorer__text {
    font-size: clamp(1rem ,.8736842105rem + .6315789474vw ,1.375rem)
  }
  .explorer__text {
    margin-bottom: clamp(1.8125rem ,1.6230263158rem + .9473684211vw ,2.375rem)
  }
  .explorer__items {
    margin-bottom: clamp(1.875rem ,.8223684211rem + 5.2631578947vw ,5rem)
  }
  .explorer__item h4 {
    font-size: clamp(1rem ,.6631578947rem + 1.6842105263vw ,2rem)
  }
  .explorer__item h4 {
    margin-bottom: clamp(.9375rem ,.3269736842rem + 3.0526315789vw ,2.75rem)
  }
  .explorer__item p {
    font-size: clamp(1rem ,.9157894737rem + .4210526316vw ,1.25rem)
  }
  .explorer__img {
    margin-bottom: clamp(1.25rem ,.7447368421rem + 2.5263157895vw ,2.75rem)
  }
  .explorer__compatible p {
    font-size: clamp(.875rem ,.7486842105rem + .6315789474vw ,1.25rem)
  }
  .explorer__compatible>img,
  .explorer__compatible>picture {
    width: clamp(11.4375rem ,10.6164473684rem + 4.1052631579vw ,13.875rem)
  }
  .explorer__compatible>img,
  .explorer__compatible>picture {
    height: clamp(1.375rem ,1.2907894737rem + .4210526316vw ,1.625rem)
  }
  .explorer__compatible picture img,
  .explorer__compatible picture source {
    width: clamp(11.4375rem ,10.6164473684rem + 4.1052631579vw ,13.875rem)
  }
  .explorer__compatible picture img,
  .explorer__compatible picture source {
    height: clamp(1.375rem ,1.2907894737rem + .4210526316vw ,1.625rem)
  }
  .choose {
    padding-top: clamp(1.875rem ,1.2434210526rem + 3.1578947368vw ,3.75rem)
  }
  .choose {
    padding-bottom: clamp(1.25rem ,.1973684211rem + 5.2631578947vw ,4.375rem)
  }
  .choose__container h2 {
    font-size: clamp(1.5rem ,.8263157895rem + 3.3684210526vw ,3.5rem)
  }
  .choose__container h2 {
    margin-bottom: clamp(3.125rem ,2.8092105263rem + 1.5789473684vw ,4.0625rem)
  }
  .choose__items {
    -webkit-column-gap: clamp(1.25rem ,-.3289473684rem + 7.8947368421vw ,5.9375rem);
    -moz-column-gap: clamp(1.25rem ,-.3289473684rem + 7.8947368421vw ,5.9375rem);
    column-gap: clamp(1.25rem ,-.3289473684rem + 7.8947368421vw ,5.9375rem)
  }
  .choose__items :nth-child(1).choose__item>img,
  .choose__items :nth-child(1).choose__item>picture,
  .choose__items :nth-child(2).choose__item>img,
  .choose__items :nth-child(2).choose__item>picture {
    width: clamp(5.25rem ,4.8078947368rem + 2.2105263158vw ,6.5625rem)
  }
  .choose__items :nth-child(1).choose__item>img,
  .choose__items :nth-child(1).choose__item>picture,
  .choose__items :nth-child(2).choose__item>img,
  .choose__items :nth-child(2).choose__item>picture {
    height: clamp(6.0625rem ,5.7046052632rem + 1.7894736842vw ,7.125rem)
  }
  .choose__items :nth-child(1).choose__item>img,
  .choose__items :nth-child(1).choose__item>picture,
  .choose__items :nth-child(2).choose__item>img,
  .choose__items :nth-child(2).choose__item>picture {
    margin-bottom: clamp(.625rem ,.0986842105rem + 2.6315789474vw ,2.1875rem)
  }
  .choose__items :nth-child(1).choose__item picture img,
  .choose__items :nth-child(1).choose__item picture source,
  .choose__items :nth-child(2).choose__item picture img,
  .choose__items :nth-child(2).choose__item picture source {
    width: clamp(5.25rem ,4.8078947368rem + 2.2105263158vw ,6.5625rem)
  }
  .choose__items :nth-child(1).choose__item picture img,
  .choose__items :nth-child(1).choose__item picture source,
  .choose__items :nth-child(2).choose__item picture img,
  .choose__items :nth-child(2).choose__item picture source {
    height: clamp(6.0625rem ,5.7046052632rem + 1.7894736842vw ,7.125rem)
  }
  .choose__items :nth-child(1).choose__item picture img,
  .choose__items :nth-child(1).choose__item picture source,
  .choose__items :nth-child(2).choose__item picture img,
  .choose__items :nth-child(2).choose__item picture source {
    margin-bottom: clamp(.625rem ,.0986842105rem + 2.6315789474vw ,2.1875rem)
  }
  .choose__items :nth-child(3).choose__item>img,
  .choose__items :nth-child(3).choose__item>picture {
    width: clamp(7.5rem ,6.5947368421rem + 4.5263157895vw ,10.1875rem)
  }
  .choose__items :nth-child(3).choose__item>img,
  .choose__items :nth-child(3).choose__item>picture {
    height: clamp(6.375rem ,5.6171052632rem + 3.7894736842vw ,8.625rem)
  }
  .choose__items :nth-child(3).choose__item>img,
  .choose__items :nth-child(3).choose__item>picture {
    margin-bottom: clamp(.625rem ,.5828947368rem + .2105263158vw ,.75rem)
  }
  .choose__items :nth-child(3).choose__item picture img,
  .choose__items :nth-child(3).choose__item picture source {
    width: clamp(7.5rem ,6.5947368421rem + 4.5263157895vw ,10.1875rem)
  }
  .choose__items :nth-child(3).choose__item picture img,
  .choose__items :nth-child(3).choose__item picture source {
    height: clamp(6.375rem ,5.6171052632rem + 3.7894736842vw ,8.625rem)
  }
  .choose__items :nth-child(3).choose__item picture img,
  .choose__items :nth-child(3).choose__item picture source {
    margin-bottom: clamp(.625rem ,.5828947368rem + .2105263158vw ,.75rem)
  }
  .choose__item h3 {
    font-size: clamp(1.25rem ,.9973684211rem + 1.2631578947vw ,2rem)
  }
  .choose__item p {
    font-size: clamp(1rem ,.9157894737rem + .4210526316vw ,1.25rem)
  }
  .testimonials {
    padding-top: clamp(2rem ,1.4105263158rem + 2.9473684211vw ,3.75rem)
  }
  .testimonials {
    padding-bottom: clamp(3.125rem ,2.7039473684rem + 2.1052631579vw ,4.375rem)
  }
  .testimonials__container h2 {
    font-size: clamp(1.5rem ,.8263157895rem + 3.3684210526vw ,3.5rem)
  }
  .testimonials__container h2 {
    margin-bottom: clamp(1.25rem ,.1973684211rem + 5.2631578947vw ,4.375rem)
  }
  .testimonials__wrapper {
    padding-top: clamp(5rem ,4.7894736842rem + 1.0526315789vw ,5.625rem)
  }
  .testimonials__content {
    padding-bottom: clamp(2.5rem ,2.3736842105rem + .6315789474vw ,2.875rem)
  }
  .testimonials__content h5 {
    font-size: clamp(1.25rem ,1.1657894737rem + .4210526316vw ,1.5rem)
  }
  .testimonials__content blockquote {
    font-size: clamp(.875rem ,.8118421053rem + .3157894737vw ,1.0625rem)
  }
  .testimonials__foto {
    width: clamp(7.5rem ,7.0789473684rem + 2.1052631579vw ,8.75rem)
  }
  .testimonials__foto {
    height: clamp(7.5rem ,7.0789473684rem + 2.1052631579vw ,8.75rem)
  }
  .testimonials__foto {
    margin-top: clamp(-4.375rem ,-3.5394736842rem + -1.0526315789vw ,-3.75rem)
  }
  .baner__container {
    padding-top: clamp(2.5rem ,1.9315789474rem + 2.8421052632vw ,4.1875rem)
  }
  .baner__container {
    padding-bottom: clamp(2.5rem ,1.7842105263rem + 3.5789473684vw ,4.625rem)
  }
  .baner__container p {
    font-size: clamp(1rem ,.9157894737rem + .4210526316vw ,1.25rem)
  }
  .baner__container p {
    margin-top: clamp(1.25rem ,.7868421053rem + 2.3157894737vw ,2.625rem)
  }
  .policy {
    padding-bottom: clamp(4.6875rem ,3.7401315789rem + 4.7368421053vw ,7.5rem)
  }
  .policy__container {
    padding-top: clamp(1.25rem ,.8289473684rem + 2.1052631579vw ,2.5rem)
  }
  .policy h2 {
    margin-bottom: clamp(.9375rem ,.8322368421rem + .5263157895vw ,1.25rem)
  }
  .policy h3 {
    margin-bottom: clamp(.9375rem ,.8322368421rem + .5263157895vw ,1.25rem)
  }
  .policy p {
    font-size: clamp(1rem ,.9157894737rem + .4210526316vw ,1.25rem)
  }
  .policy ul {
    margin-bottom: clamp(1.25rem ,1.0394736842rem + 1.0526315789vw ,1.875rem)
  }
  .policy ul {
    font-size: clamp(1rem ,.9157894737rem + .4210526316vw ,1.25rem)
  }
  .policy li {
    font-size: clamp(1rem ,.9157894737rem + .4210526316vw ,1.25rem)
  }
  .policy li:not(:last-child) {
    margin-bottom: clamp(1.25rem ,1.0394736842rem + 1.0526315789vw ,1.875rem)
  }
}
@media (max-width:500px){
    .menu__calendly {
        padding:6px 14px;
        font-size:12px;
    }
}
@media (min-width:48em)and (max-width:90em) {
  .video h1 {
    font-size: clamp(1.5rem ,-.2142857143rem + 3.5714285714vw ,3rem)
  }
  .baner__container h1 {
    font-size: clamp(1.5rem ,-.2142857143rem + 3.5714285714vw ,3rem)
  }
}
@media (any-hover:hover) {
  .btn:hover {
    transition: all .3s ease 0s;
    box-shadow: 0 5px 8px 0 #06f
  }
  .menu__link:hover {
    cursor: pointer;
    transition: all .3s ease 0s
  }
  .menu__link:hover::before {
    width: 1.5rem;
    transition: all .3s ease 0s
  }
  .menu__calendly:hover {
      box-shadow: 0 0px 0px 0 rgba(0, 102, 255, 0.48);
      transition: all .3s ease 0s
  }
  .footer__top>a:hover {
    text-decoration: underline;
    cursor: pointer;
    transition: all .3s ease 0s
  }
  .footer__links a:hover {
    background-color: #14fc94
  }
  .footer__right a:hover {
    text-decoration: underline;
    transition: all .3s ease 0s
  }
  .masks .masks-button-next:hover:after,
  .masks .masks-button-prev:hover:after {
    background-color: #fff;
    transition: all .3s ease 0s
  }
  .how__img>div span:hover {
    cursor: pointer
  }
  .how__img>div span:hover::before {
    color: #14fc94;
    transition: all .3s ease 0s
  }
  .testimonials .testimonials-button-next:hover:after,
  .testimonials .testimonials-button-prev:hover:after {
    background-color: #fff;
    transition: all .3s ease 0s
  }
}