/* Breakpoints */
/* Mixins */
/* x-kom styles */
html,
body {
  font-family: "Nunito", sans-serif;
}

/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  font-size: 14px;
}

@media (min-width: 576px) {
  html {
    font-size: 15.5px;
  }
}

@media (min-width: 992px) {
  html {
    font-size: 16px;
  }
}

body {
  overflow: hidden;
  color: #000;
}

strong {
  font-weight: 600;
}

iframe {
  border-radius: 16px;
}

img {
  object-fit: cover;
}

.section {
  padding: 30px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

.cta {
  border-radius: 200px;
  font-weight: 400;
  border: none;
  width: fit-content;
  height: 40px;
  padding: 0 24px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  background: #0082fa;
  color: #fff;
  margin-top: 10px;
}

.cta:hover {
  background: #0067c7;
  color: #fff;
}

.cta:active {
  background: #004d94;
  color: #fff;
}

.cta--secondary {
  background: #e6f3ff;
  border: none;
  color: #158eff;
}

.cta--secondary:hover {
  background: #c7e4ff;
  color: #0067c7;
}

.cta--secondary:active {
  background: #a8d5ff;
  color: #004d94;
}

.cta--white {
  background: #fff;
  color: #000;
}

.cta--white:hover {
  background: #cccccc;
  color: #000;
}

.cta--white:active {
  background: #999999;
  color: #000;
}

.cta--gray {
  background: #4d4d4d;
  color: #fff;
}

.cta--gray:hover {
  background: #333333;
  color: #fff;
}

.cta--gray:active {
  background: #1a1a1a;
  color: #fff;
}

.cta--gray--secondary {
  background: #f0f0f0;
  border: none;
  color: #666666;
}

.cta--gray--secondary:hover {
  background: #e0e0e0;
  color: #333333;
}

.cta--gray--secondary:active {
  background: #cccccc;
  color: #1a1a1a;
}

.cta--violet {
  background: #8250fa;
  color: #fff;
}

.cta--violet:hover {
  background: #5f1ef9;
  color: #fff;
}

.cta--violet:active {
  background: #4606de;
  color: #fff;
}

.cta--violet--secondary {
  background: #ece5fe;
  border: none;
  color: #5f1ef9;
}

.cta--violet--secondary:hover {
  background: #ded1fe;
  border: none;
  color: #4606de;
}

.cta--violet--secondary:active {
  background: #c9b3fd;
  border: none;
  color: #27047b;
}

.cta--pink {
  background: #fa0064;
  color: #fff;
}

.cta--pink:hover {
  background: #c70050;
  color: #fff;
}

.cta--pink:active {
  background: #94003b;
  color: #fff;
}

.cta--pink--secondary {
  background: #ffe1ed;
  border: none;
  color: #c70050;
}

.cta--pink--secondary:hover {
  background: #ffd1e4;
  border: none;
  color: #c70050;
}

.cta--pink--secondary:active {
  background: #ffbdd7;
  border: none;
  color: #94003b;
}

.cta--big {
  height: 48px;
  padding: 0 34px;
  font-size: 1.1rem;
}

.cta--medium {
  height: 40px;
  font-size: 1rem;
}

.cta--small {
  height: 36px;
  padding: 0 20px;
  font-size: 0.95rem;
}

.cta--circle {
  padding: 0;
  height: 44px;
  width: 44px;
}

.pill {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #4d4d4d;
  border: 1px solid #cccccc;
  border-radius: 512px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 16px;
  vertical-align: baseline;
  align-self: flex-start;
  margin-bottom: 10px;
  font-weight: 400;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Typography */
h1 {
  font-weight: 300;
  /*   font-size: 1.6rem; */
}

@media (min-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
}

h1 br {
  display: none;
}

@media (min-width: 768px) {
  h1 br {
    display: initial;
  }
}

h2 {
  font-weight: 800;
}

@media (min-width: 992px) {
  h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

h3 {
  font-weight: 600;
}

@media (min-width: 992px) {
  h3 {
    font-size: 1.4rem;
  }
}

@media (min-width: 992px) {
  h4 {
    font-size: 1.2rem;
  }
}

p {
  font-weight: 400;
  color: #4d4d4d;
}

/* Utilities */
.nobr {
  display: inline-block;
}

.hide {
  opacity: 0;
  visibility: hidden;
}

.box-shadow {
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.08), 0 4px 8px 0 rgba(0, 0, 0, 0.08);
}

/* Layout */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
  padding-top: 0;
  margin-top: 0;
  overflow: hidden;
}

.header__logos-wrapper {
  height: auto;
  width: 100%;
  padding: 20px 25px 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 576px) {
  .header__logos-wrapper {
    padding: 30px 30px 30px 10px;
  }
}

.header #brand {
  height: 60px;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

@media (min-width: 576px) {
  .header #brand {
    height: 84px;
  }
}

.header #brand:hover {
  opacity: 0.9;
}

.header #vendor {
  height: 28px;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

@media (min-width: 576px) {
  .header #vendor {
    height: 38px;
  }
}

.header #vendor:hover {
  opacity: 0.9;
}

.header-menu {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 12px 0;
  transition: 0.6s;
  height: 80px;
  display: flex;
  align-items: center;
}

.header-menu .hamburger {
  cursor: pointer;
}

@media (min-width: 992px) {
  .header-menu .hamburger {
    display: none;
  }
}

.header-menu__nav {
  height: 72px;
  padding-left: 21px;
  padding-right: 21px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.6s;
}

.header-menu__nav-desktop-menu {
  display: none;
}

@media (min-width: 992px) {
  .header-menu__nav-desktop-menu {
    display: initial;
  }
}

.header-menu__nav-desktop-menu ul {
  display: flex;
  align-items: center;
  margin: 0;
}

.header-menu__nav-desktop-menu ul a li {
  color: #fff;
  white-space: nowrap;
  padding: 0 18px;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.header-menu__nav-desktop-menu ul a li:hover {
  opacity: 0.8;
}

.header-menu__nav-desktop-menu .cta {
  margin-left: 20px;
  white-space: nowrap;
}

.header-menu #brand-white {
  width: 100%;
  height: 36px;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.header-menu #brand-white path {
  fill: #fff;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

@media (min-width: 768px) {
  .header-menu #brand-white {
    height: 40px;
  }
}

.header-menu #vendor {
  height: 16px;
}

@media (min-width: 576px) {
  .header-menu #vendor {
    height: 24px;
  }
}

.header-menu .navbar-wrapper {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.header-menu .navbar-overlay-bg {
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
}

.header-menu .navbar {
  background: #fff;
  border-radius: 16px;
  width: 130px;
  position: fixed;
  right: 16px;
  top: 120px;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.header-menu .navbar ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

.header-menu .navbar li {
  font-size: 18px;
  font-weight: 500;
}

.header-menu .nav__link {
  color: #000;
}

.header-menu .nav__link:hover > li {
  background-color: #f7f7f7;
}

@media (min-width: 992px) {
  .header-menu .nav__link:hover > li {
    background-color: unset;
  }
}

.header-menu .nav-link.active {
  background: none;
  color: unset;
}

.header-menu .nav-link.active .navbar-active {
  visibility: visible;
  opacity: 1;
}

.header-menu .offcanvas-header {
  padding: 24px 24px 12px 24px;
}

.header-menu .offcanvas-end {
  width: 300px;
}

.header-menu .offcanvas-body {
  padding: 0;
}

.header-menu .offcanvas-body .cta {
  margin-left: 20px;
  width: 251px;
}

.header-menu #offcanvasRightLabel {
  font-weight: 600;
  margin: 0;
}

.header-menu ul {
  list-style-type: none;
  padding: 0;
}

.header-menu ul li {
  font-size: 18px;
  padding: 12px 0;
  padding-left: 24px;
}

.top {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  padding-top: 0;
}

.top__wrapper {
  background-image: linear-gradient(0, transparent 0%, rgba(0, 0, 0, 0.8) 90%),
    url("../../img/top/bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 0 0 16px 16px;
  height: auto;
  width: 100%;
  padding: 120px 0 80px 0;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .top__wrapper {
    padding: 180px 0 120px 0;
  }
}

@media (min-width: 768px) {
  .top__wrapper {
    padding: 200px 0 160px 0;
  }
}

@media (min-width: 992px) {
  .top__wrapper {
    padding: 230px 0 190px 0;
  }
}

.top__wrapper--2 {
  background-image: linear-gradient(0, transparent 0%, rgba(0, 0, 0, 0.8) 90%),
    url("../../img/top/bg-2.jpg");
}

.top__wrapper--3 {
  background-image: linear-gradient(0, transparent 0%, rgba(0, 0, 0, 0.8) 90%);
}

.top__copy {
  display: flex;
}

.top__copy h2 {
  font-weight: 300;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.top__copy--center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.top__copy--left {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  color: #fff;
}

.top__copy--right {
  flex-direction: column;
  align-items: flex-end;
  text-align: center;
  color: #fff;
}

.top .plyr__video-embed {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  max-width: 1920px;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  overflow: hidden;
}

.top .plyr__video-embed iframe {
  display: block;
  max-width: 1920px;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.plyr {
  border-radius: 16px;
}

.steps {
  margin: 0 auto;
}

.steps__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  max-width: 240px;
  text-align: center;
  padding: 30px 20px 12px 20px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: rgba(149, 157, 165, 0.17) 8px 8px 30px;
  font-size: 1.1rem;
  background: #fff;
}

.steps__item img {
  /*    width: 140px;
      height: 140px; */
  margin-bottom: 16px;
  height: 100%;
  width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.steps__item-coupon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px dashed #c382fa;
  border-radius: 200px;
  height: 40px;
  padding: 0 26px;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  margin-bottom: 14px;
  white-space: nowrap;
}

/* products */
.products__item {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 24px 30px 30px 30px;
  border-radius: 16px;
  box-shadow: rgba(149, 157, 165, 0.17) 8px 8px 30px;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  font-size: 0.9rem;
  background: #fff;
}

@media (min-width: 992px) {
  .products__item {
    max-width: 340px;
  }
  .products__item:hover {
    box-shadow: rgba(149, 157, 165, 0.3) 8px 20px 30px;
    transform: translateY(-6px);
  }
}

.products__item-badge {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #4d4d4d;
  border: 1px solid #cccccc;
  border-radius: 512px;
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 14px;
  line-height: 16px;
  vertical-align: baseline;
  align-self: flex-start;
  position: absolute;
}

.products__item-image {
  margin-top: 16px;
}

.products__item-image img {
  height: 100%;
  width: 80%;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  margin: 0 auto;
  display: block;
}

.products__item h4 {
  margin-bottom: 8px;
}

.products__item-rating {
  margin-bottom: 10px;
}

.products__item ul {
  list-style-type: none;
  list-style-position: outside;
  padding-left: 0;
  margin-bottom: 60px;
}

.products__item ul li {
  margin-bottom: 0px;
  font-weight: 400;
  color: #4d4d4d;
}

.products__item ul li strong {
  color: #000;
}

.products__item-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: absolute;
  bottom: 24px;
  width: calc(100% - 60px);
}

.products__item-footer-button svg rect {
  fill: #0082fa;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  height: 40px;
  width: 40px;
}

.products__item-footer-button svg rect:hover {
  fill: #0067c7;
}

.products__item-footer-button svg rect:active {
  fill: #004d94;
}

.products__item-footer-button svg path {
  pointer-events: none;
}

.products__item-footer-cart {
  height: 24px;
  width: 24px;
}

.products__item-price {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  position: relative;
}

.products__item-price .old-price {
  text-decoration: line-through;
  color: #999999;
  font-weight: 300;
  margin-bottom: -4px;
}

.products__item-price .new-price {
  font-size: 1.5rem;
  font-weight: 600;
}

.check-icon {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 22px;
  border: 2px solid transparent;
  border-radius: 100px;
}

.check-icon::before {
  content: "";
  display: block;
  color: #63c642;
  box-sizing: border-box;
  position: absolute;
  left: 3px;
  top: -1px;
  width: 6px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  transform-origin: bottom left;
  transform: rotate(45deg);
}

.main {
  margin-left: auto;
  margin-right: auto;
}

.main__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .main__wrapper > * {
    margin: 0;
  }
}

.main__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main__image img {
  border-radius: 16px;
  max-height: 420px;
}

.main__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
}

.main__copy .cta {
  margin-top: 0;
}

.main__copy h3 {
  font-size: 1.7rem;
}

.main__copy p {
  font-size: 1rem;
  line-height: 1.25;
}

.social h2 {
  margin-bottom: 25px;
}

.social__wrapper {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px) {
  .social__wrapper {
    max-width: unset;
  }
}

.social__item {
  position: relative;
  width: 3rem;
  height: 3rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: rgba(149, 157, 165, 0.17) 8px 8px 30px;
  margin: 15px;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  text-align: center;
}

.social__item:hover {
  box-shadow: rgba(149, 157, 165, 0.3) 0px 8px 20px;
  transform: translateY(-2px);
}

.social__item img {
  height: 20px;
  width: auto;
  transform: translateY(50%);
}

.articles__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .articles__wrapper {
    flex-wrap: nowrap;
  }
}

.articles__item {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 120px 40px;
  border-radius: 16px;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  box-shadow: rgba(149, 157, 165, 0.3) 0px 8px 20px;
  color: #fff;
}

@media (min-width: 768px) {
  .articles__item {
    padding: 140px 40px;
  }
}

.articles__item:nth-child(1) .articles__item-background {
  background-image: linear-gradient(
      0deg,
      black 20%,
      rgba(0, 0, 0, 0.7) 50%,
      transparent
    ),
    url("https://geex.x-kom.pl/wp-content/uploads/2021/08/jaki-oczyszczacz-powietrza-kupic-690x450.jpeg");
}

.articles__item:nth-child(2) .articles__item-background {
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.9) 20%,
      rgba(0, 0, 0, 0.7) 50%,
      transparent
    ),
    url("https://geex.x-kom.pl/wp-content/uploads/2021/09/Gracz-Minecrafta-pexele-1.jpg");
}

.articles__item:nth-child(3) .articles__item-background {
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.9) 20%,
      rgba(0, 0, 0, 0.7) 50%,
      transparent
    ),
    url("https://geex.x-kom.pl/wp-content/uploads/2021/08/garett-women-emma-unboxing-800x600.png");
}

.articles__item:hover {
  color: #fff;
  background-size: 135%;
  box-shadow: rgba(149, 157, 165, 0.3) 8px 20px 30px;
}

.articles__item:hover .articles__item-background {
  transform: scale(1.05);
}

.articles__item-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.articles__item-copy h4 {
  line-height: 1.4;
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.articles__item-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.faq {
  line-height: 1.25;
  /* Style the buttons that are used to open and close the accordion panel */
}

.faq__arrow-wrapper {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 20px;
  height: 40px;
  width: 40px;
}

.faq__arrow-wrapper path {
  fill: #707070;
}

.faq__arrow {
  width: 30px;
  height: 30px;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.faq__accordion.active {
  background-color: #f5f5f5;
}

.faq__accordion.active .faq__arrow-wrapper img {
  transition: transform 0.3s;
  transform: rotate(180deg);
  height: 24px;
  width: 24px;
}

.faq__accordion {
  background-color: unset;
  color: #000;
  cursor: pointer;
  padding: 18px;
  padding-right: 60px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  position: relative;
  display: flex;
  align-items: center;
  border-top: 1px solid #dddddd;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

@media (min-width: 768px) {
  .faq__accordion {
    padding-right: 80px;
  }
}

.faq__accordion:first-of-type {
  border-radius: 16px 16px 0 0;
  border-top: none;
}

.faq__accordion:last-of-type {
  border-radius: 0 0 16px 16px;
}

.faq__accordion:last-of-type.active {
  border-radius: 0;
}

.faq__accordion:hover {
  background-color: #f5f5f5;
}

.faq__accordion-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid #cccccc;
  background: #fff;
}

.faq__accordion-wrapper button {
  font-weight: 600;
  font-size: 1rem;
}

.faq__accordion-panel {
  padding: 0 10% 0 20px;
  background-color: #fdfdfd;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.faq__accordion-panel:first-child {
  /*     border-bottom: 1px solid #ddd; */
  border-top: none;
  border-radius: 16px 16px 0 0;
}

.faq__accordion-panel:last-child {
  border-radius: 0 0 16px 16px;
}

.faq__accordion-panel p {
  margin: 20px 0;
}

.counter__cards-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: fit-content;
  padding: 14px 22px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  box-shadow: rgba(149, 157, 165, 0.17) 8px 8px 30px;
  font-size: 1rem;
  background: #fff;
}

@media (min-width: 768px) {
  .counter__cards-wrapper {
    padding: 14px 20px;
  }
}

.counter__cards-item {
  margin: 10px;
  width: fit-content;
  display: flex;
  flex-direction: column;
}

@media (min-width: 576px) {
  .counter__cards-item {
    margin: 20px 24px;
    width: auto;
  }
}

.counter__cards-item span {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 40px;
}

@media (min-width: 576px) {
  .counter__cards-item span {
    font-size: 2.4rem;
  }
}

.counter__cards-item p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: #4d4d4d;
}

@media (min-width: 576px) {
  .counter__cards-item p {
    font-size: 1.1rem;
  }
}

.counter .colon {
  font-size: 32px;
  opacity: 0.2;
  font-weight: 300;
  display: none;
}

@media (min-width: 576px) {
  .counter .colon {
    display: block;
  }
}

.counter__finish {
  padding: 20px;
  margin: 0;
  color: #303030;
  display: none;
}

@media (min-width: 992px) {
  .contact__copy {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.contact h4 {
  font-size: 1rem;
  margin-bottom: 26px;
  font-weight: 600;
}

.contact p {
  margin-bottom: 6px;
}

@media (min-width: 992px) {
  .contact p {
    font-size: 20px;
  }
}

.contact__arrow {
  position: absolute;
  border-color: #1a1a1a transparent transparent;
  border-style: solid;
  border-width: 4px 4px 2px;
  display: inline-block;
  height: 0px;
  width: 0px;
  right: 20px;
}

.contact__items-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  text-align: center;
  margin: 17px;
}

.contact__item img {
  margin-bottom: 16px;
  height: 30px;
  width: auto;
}

.contact__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.17) 8px 8px 30px;
  border-radius: 16px;
  padding: 32px 24px;
  max-width: 700px;
}

@media (min-width: 576px) {
  .contact__card {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 46px;
  }
}

.contact__card p {
  font-size: 0.9rem;
  margin-top: 10px;
}

.contact__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.contact__input-wrapper label {
  position: absolute;
  left: 16px;
  color: #707070;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  background: #fff;
  border-radius: 100px;
  padding: 0 4px;
  font-size: 14px;
}

.contact__form {
  position: relative;
  width: 100%;
}

.contact__form input,
.contact__form select {
  background: #ffffff;
  border: 1px solid #cccccc;
  box-sizing: border-box;
  border-radius: 28px;
  padding: 7px 20px;
  width: 100%;
  text-align: left;
}

.contact__form input::placeholder,
.contact__form select::placeholder {
  color: #707070;
}

.contact__form input:active,
.contact__form input:focus,
.contact__form select:active,
.contact__form select:focus {
  border-color: #000;
  outline: none;
}

.contact__form input:focus + label,
.contact__form select:focus + label {
  font-size: 13px;
  transform: translateY(-20px);
}

.contact__form input:not(:placeholder-shown) + label,
.contact__form select:not(:placeholder-shown) + label {
  font-size: 13px;
  transform: translateY(-20px);
}

.contact__form textarea {
  background: #ffffff;
  border: 1px solid #cccccc;
  box-sizing: border-box;
  border-radius: 20px;
  padding: 7px 20px;
  width: 100%;
  text-align: left;
}

.contact__form textarea:active,
.contact__form textarea:focus {
  border-color: #000;
  outline: none;
}

.contact__form #textarea-label {
  top: 10px;
}

.contact__form textarea:focus + label {
  font-size: 13px;
  transform: translateY(-20px);
}

.contact__form textarea:valid + label {
  font-size: 13px;
  transform: translateY(-20px);
}

.contact__form select {
  appearance: none;
  -webkit-appearance: none;
}

@media (min-width: 768px) {
  .contact__form #email,
  .contact__form #tel {
    width: 98%;
  }
}

.contact__form #email {
  justify-self: flex-start;
}

@media (min-width: 768px) {
  .contact__form #tel {
    position: relative;
    right: -6px;
  }
}

@media (min-width: 768px) {
  .contact__form #tel-label {
    left: 24px;
  }
}

.contact__form-submit input {
  background: #0082fa;
  color: #fff;
  border: none;
  width: 100%;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  margin-top: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .contact__form-submit input {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .contact__form-submit input {
    width: 220px;
  }
}

.contact__info-wrapper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact__info-wrapper img {
  height: 18px;
  width: 18px;
  margin-right: 6px;
}

.contact__info-wrapper p {
  color: #707070;
  font-size: 13px;
  line-height: 16px;
  margin: 0;
}

.contact__character-counter {
  position: absolute;
  bottom: 8px;
  right: 20px;
  font-size: 12px;
  color: #707070;
}

::file-selector-button,
::-webkit-file-upload-button,
#file {
  background: #ebebeb;
  border: none;
  border-radius: 32px;
  width: 100%;
  height: 0;
  padding: 0;
}

input[type="file"] {
  opacity: 0;
}

.contact__file-wrapper {
  display: flex;
  flex-direction: column;
  align-content: center;
}

@media (min-width: 768px) {
  .contact__file-wrapper {
    flex-direction: row;
    flex-shrink: 0;
    margin-bottom: 26px;
  }
}

#file-label {
  background-color: #f0f0f0;
  border-radius: 32px;
  height: 40px;
  max-width: 172px;
  color: #666666;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  user-select: none;
}

@media (min-width: 768px) {
  #file-label {
    width: 172px;
  }
}

#file-label ::after {
  content: "ewrw";
}

#file-label:hover {
  background: #e0e0e0;
}

#file-label:active {
  background: #cccccc;
}

#file-info {
  color: #707070;
  line-height: 16px;
  margin-top: 8px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  #file-info {
    margin-left: 12px;
    margin-bottom: 0;
    margin-top: 0;
    align-self: center;
  }
}

#checkbox1 {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: 3px;
  position: relative;
  z-index: 2;
}

#checkbox-checked {
  display: none;
  position: absolute;
  top: 0;
  z-index: 1;
  margin-top: 3px;
}

#checkbox1:checked ~ #checkbox-checked {
  display: block;
}

#checkbox1:checked {
  opacity: 0;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .newsletter {
    max-height: 400px;
  }
}

.newsletter p {
  margin-bottom: 6px;
}

.newsletter__items-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .newsletter__items-wrapper {
    flex-direction: row;
    padding: 20px 0;
  }
}

.newsletter__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  text-align: center;
  margin: 17px;
}

.newsletter__item img {
  margin-bottom: 16px;
  height: 30px;
  width: auto;
}

.newsletter__item p {
  line-height: 22px;
}

.newsletter__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.17) 8px 8px 30px;
  border-radius: 16px;
  padding: 24px;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .newsletter__card {
    padding: 42px;
  }
}

.newsletter__card p {
  font-size: 0.9rem;
  margin-top: 10px;
}

@media (min-width: 992px) {
  .newsletter__card p {
    margin-left: 30px;
  }
}

.newsletter__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.newsletter__input-wrapper label {
  position: absolute;
  left: 18px;
  color: #707070;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  background: #fff;
  padding: 0 4px;
}

@media (min-width: 576px) {
  .newsletter__input-wrapper label {
    left: 68px;
  }
}

.newsletter__form {
  position: relative;
  width: 100%;
}

@media (min-width: 576px) {
  .newsletter__form {
    display: flex;
  }
}

.newsletter__form input,
.newsletter__form select {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  border-radius: 28px;
  padding: 7px 20px;
  width: 100%;
  text-align: left;
  height: 48px;
}

@media (min-width: 576px) {
  .newsletter__form input,
  .newsletter__form select {
    margin-left: 50px;
  }
}

.newsletter__form input::placeholder,
.newsletter__form select::placeholder {
  color: #707070;
}

.newsletter__form input:active,
.newsletter__form input:focus,
.newsletter__form select:active,
.newsletter__form select:focus {
  outline: none;
}

.newsletter__form input:focus + label,
.newsletter__form select:focus + label {
  font-size: 13px;
  transform: translateY(-20px);
}

.newsletter__form input:not(:placeholder-shown) + label,
.newsletter__form select:not(:placeholder-shown) + label {
  font-size: 13px;
  transform: translateY(-20px);
}

.newsletter__form-submit button {
  width: 100%;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  margin: 0;
  text-align: center;
  white-space: nowrap;
  margin-top: 10px;
}

@media (min-width: 576px) {
  .newsletter__form-submit button {
    position: relative;
    left: -50px;
    margin-top: 0;
  }
}

/* Animations */
/* GSAP */
.fade-in,
.fade-in-delay,
.fade-up,
.fade-up-delay,
.fade-in-right,
.fade-in-right-delay,
.fade-in-left,
.fade-in-left-delay,
.fade-down,
.fade-down-delay {
  opacity: 0;
  will-change: opacity;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.fade-up,
.fade-up-delay {
  will-change: transform;
  transform: translateY(40px);
  /* animation distance */
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.fade-down,
.fade-down-delay {
  will-change: transform;
  transform: translateY(-40px);
  /* animation distance */
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.fade-in-right,
.fade-in-right-delay {
  will-change: transform;
  transform: translateX(-40px);
  /* animation distance */
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.fade-in-left,
.fade-in-left-delay {
  will-change: transform;
  transform: translateX(40px);
  /* animation distance */
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

/* Slider */
.slider__container {
  display: flex;
}

.slider {
  margin-bottom: 0;
  margin: 0 auto;
}

.tns-ovh {
  overflow: visible;
}

.slider__nav {
  display: none;
}

@media (min-width: 768px) {
  .slider__nav {
    display: block;
  }
}

.slider__nav button {
  height: 50px;
  width: 50px;
  border-radius: 200px;
  border: none;
  background: #0082fa;
  margin: 0 20px;
}

@media screen and (min-width: 576px) {
  .slider__nav button {
    margin: 0 -10px;
  }
}

/* @media screen and (min-width: 1500px) {
  .slider__nav button {
    margin: 0 -80px;
  }
} */
.slider__nav-next:hover,
.slider__nav-prev:hover {
  background: #0067c7;
}

.slider__nav-next:active,
.slider__nav-prev:active {
  background: #004d94;
}

.slider__nav-next,
.slider__nav-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  transition: 0.3s;
}

.slider__nav-next {
  right: 0;
  top: 30%;
}

@media screen and (min-width: 576px) {
  .slider__nav-next {
    top: 50%;
  }
}

.slider__nav-prev {
  left: 0;
  top: 30%;
}

@media screen and (min-width: 576px) {
  .slider__nav-prev {
    top: 50%;
  }
}

.slider__nav button[disabled] {
  background: rgba(0, 0, 0, 0.15);
  opacity: 0.4;
}

.slider__nav button[disabled] svg {
  fill: rgba(0, 0, 0, 0.4);
}

.tns-outer {
  padding: 0;
}

@media (min-width: 992px) {
  .tns-outer {
    padding: 0 100px !important;
  }
}

.tns-item {
  opacity: 0.15;
  transition: 0.5s;
  user-select: none;
  cursor: grab;
  filter: blur(1px);
}

.tns-slide-active {
  opacity: 1;
  filter: blur(0);
}

.tns-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 26px 0 0 0;
}

.tns-nav [aria-controls] {
  width: 6px;
  height: 6px;
  padding: 0;
  margin: 0 2px;
  border-radius: 200px;
  background: #cccccc;
  border: 0;
  transition: 0.3s;
}

.tns-nav .tns-nav-active {
  background: #0082fa;
  width: 8px;
  height: 8px;
}
/*# sourceMappingURL=main.css.map */

/* custom */
.top__features {
  display: flex;
  align-items: center;
}

.top__features span {
  border-right: 2px solid black;
  text-align: center;
  padding: 0 10px;
  font-size: 0.9rem;
  padding: 10px;
  height: 100%;
}

.top__features span:first-child {
  padding-left: 0;
}

.top__features span:last-child {
  border-right: none;
  padding-right: 0;
}

.main--top {
  margin-top: 60px;

  position: relative;
}

@media screen and (min-width: 576px) {
  .main--top {
    padding-bottom: 100px;
  }
}

.main-intel {
  position: absolute;
  right: 10%;
  bottom: 52%;
  max-width: 130px;
}

@media screen and (min-width: 576px) {
  .main-intel {
    position: absolute;
    bottom: 50px;
    max-width: 200px;
  }
}

.section-1__cards-wrapper img {
  max-width: 100%;
  object-fit: contain;
}

.section-1__cards-desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  .section-1__cards-mobile {
    display: none;
  }
  .section-1__cards-desktop {
    display: block;
  }
}

.section-2-image {
  display: flex;
  justify-content: center;
}

.section-2-image img {
  max-width: 80%;
  text-align: center;
}

.section-3-image img {
  max-width: 100%;
}

.section-4-features {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.section-4-features-item {
  width: 50%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.section-4-features-item span:first-child {
  font-size: 32px;
  color: #70bfa5;
  font-weight: 600;
  line-height: 1;
}

.section-6 img {
  max-width: 100%;
}

.section-7 .container {
  background: #f7f7f7;
  overflow: hidden;
  padding: 50px 0;
  border-radius: 8px;
}

.section-7-image {
  position: relative;
  left: -30%;
  max-height: 350px;
  height: 350px;
  object-fit: cover;
  object-position: right;
}

.section-7-copy-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.section-7-copy-item:last-child {
  margin-bottom: 0;
}

.section-7-copy-item img {
  object-fit: contain;
  margin-right: 30px;
  width: 40px;
}

.section-8 img {
  max-width: 100%;
}

.section-9 img {
  max-width: 100%;
}
.section-10 img {
  max-width: 100%;
}
.section-11 img {
  max-width: 100%;
}

.section-11-wrapper {
  max-width: 100%;
  background-image: url("../../img/section-11/huawei-sound-bg.jpg");
  background-size: cover;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  min-height: 300px;
}

@media screen and (min-width: 576px) {
  .section-11-wrapper {
    min-height: 500px;
  }
}

.section-11-wrapper p {
  max-width: 600px;
  color: #fff;
}

.section-12-features {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
}

.section-12-features p {
  max-width: 200px;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
}

.section-12-features h4 {
  text-align: center;
}

@media screen and (min-width: 576px) {
  .section-12-features h4,
  .section-12-features p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
}

.section-12 img {
  max-width: 100%;
}

.section-13-wrapper {
  max-width: 100%;
  background-image: url("../../img/section-13/section-13-bg.jpg");
  background-size: cover;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  min-height: 300px;
}

@media screen and (min-width: 576px) {
  .section-13-wrapper {
    min-height: 500px;
  }
}

.section-13-wrapper p {
  max-width: 600px;
  color: #fff;
}

.section-13-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.section-13-features-item {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-13-features-item img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  margin-bottom: 20px;
}

.section-13-features-item h3 {
  margin-bottom: 2px;
  font-size: 1.2rem;
}

.section-13-features-item p {
  color: #c7c7c7;
}

.section-14-wrapper {
  max-width: 100%;
  background-image: url("../../img/section-14/section-14-bg.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  min-height: 300px;
}

@media screen and (min-width: 576px) {
  .section-14-wrapper {
    min-height: 500px;
  }
}

.section-14-wrapper p {
  max-width: 400px;
  color: #fff;
}

.section-15-wrapper {
  max-width: 100%;
  background-image: url("../../img/section-15/bg.jpg");
  background-size: cover;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  min-height: 300px;
}

@media screen and (min-width: 576px) {
  .section-15-wrapper {
    min-height: 500px;
  }
}

.section-15-wrapper p {
  max-width: 700px;
  color: #fff;
}

.section-17-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}

.section-17-feature {
  /*   position: absolute; */
  max-width: 300px;
  margin-top: 10px;
}

.section-17-feature:nth-child(1) {
  top: 10%;
  left: 0;
}

.section-17-feature:nth-child(3) {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .section-17-feature {
    position: absolute;
  }

  .section-17-feature:nth-child(1) {
    top: 10%;
    left: 0;
  }

  .section-17-feature:nth-child(2) {
    bottom: 30%;
    left: 0;
  }

  .section-17-feature:nth-child(3) {
    bottom: -10%;
    right: 0;
  }
}
