@charset "UTF-8";
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

/* this is the "root" in "root em." */
html {
  font-size: 62.5%;
  /* Now 10px = 1rem! */
}

body {
  font-size: 16px;
  /* px fallback */
  font-size: 1.6rem;
  /* default font-size for document */
  line-height: 1.5;
  /* a nice line-height */
}

/* for everything else, rem = px/10 */
footer {
  font-size: 13px;
  font-size: 1.3rem;
}

/* you can safely nest rems, it's still 1rem = 10px */
footer small {
  font-size: 10px;
  font-size: 1rem;
}

body {
  font-family: "Maven Pro", Arial, Helvetica, sans-serif;
}

.btn {
  z-index: 2;
  display: block;
  position: relative;
  overflow: hidden;
  transition: color 0.08s linear;
  /*&.prim {
      background: $prim;
      color: white;

      &:hover {
          color: $gray-dark;

          &::before {
              transform: translateX(0);
          }
      }

      &::before {
          content: '';
          top: 0;
          left: 0;
          bottom: 0;
          right: 0;
          position: absolute;
          background: $gray-light;
          z-index: -1;
          transform: translateX(-110%);
          transition: transform $trans;
          box-shadow: 0 0 3rem $gray-light;
      }
  }*/
}
.btn.outline-white {
  background: transparent;
  color: white;
  border: solid 2px white;
}
.btn.outline-white:hover::before {
  transform: translateX(0);
}
.btn.outline-white::before {
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  background: rgba(0, 187, 235, 0.5);
  z-index: -1;
  transform: translateX(-110%);
  transition: transform 0.2s ease-in;
  box-shadow: 0 0 3rem #D1D1D1;
}
.btn.outline {
  text-transform: uppercase;
  padding: 0.4rem 1.3rem 0.8rem 2.1rem;
  display: inline-flex;
  border-top-left-radius: 3.2rem;
  border-bottom-right-radius: 3.2rem;
  text-decoration: none;
  color: white;
  font-size: 1.7rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  border: 0.2rem solid #737373;
  position: relative;
}
.btn.outline span {
  color: #737373;
  transition: 0.2s linear;
}
.btn.outline img {
  margin-left: 1rem;
  margin-top: 2px;
  max-width: 1.3rem;
  position: relative;
  transform: rotate(-90deg);
  transition: filter 0.3s linear;
  filter: invert(45%) sepia(0%) saturate(15%) hue-rotate(144deg) brightness(98%) contrast(75%);
}
.btn.outline:hover {
  border-color: #00BBEB;
}
.btn.outline:hover span {
  color: white;
}
.btn.outline:hover img {
  filter: sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
.btn.outline:hover::before {
  transform: translateX(0);
}
.btn.outline::before {
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  background: #00BBEB;
  z-index: -1;
  transform: translateX(-120%);
  transition: transform 0.2s ease-in;
  box-shadow: 0 0 3rem #00BBEB;
}

.bold {
  font-weight: bold;
}

p {
  line-height: 1.3;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container-left {
  max-width: 480px;
  margin-left: auto;
  padding: 0 1rem;
}
.container-right {
  max-width: 480px;
  margin-right: auto;
  padding: 0 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, [col-start] 1fr);
}

.flex {
  display: flex;
}

.align-items {
  align-items: center;
}

.relative {
  position: relative;
}

.trans-y {
  transform: translateY(-50%);
  top: 50%;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 11;
  background: white;
  box-shadow: 0 0 1.5rem rgba(20, 24, 28, 0.05);
  border-bottom: 1px solid #E9E9E9;
}
header .left {
  grid-column: col-start/span 4;
  position: relative;
  right: 1rem;
}
header .header-logo {
  padding-top: 0.5rem;
  max-width: 4.5rem;
}
header .phone-header {
  position: absolute;
  top: 0;
  right: 6.5rem;
  background: #EEEFEF;
  border-bottom-right-radius: 5rem;
  border-bottom-left-radius: 5rem;
  display: flex;
}
header .phone-header .number {
  color: #737373;
  margin: 0.5rem 0;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding-left: 3rem;
  border-bottom-left-radius: 5rem;
  padding-right: 0.5rem;
}
header .phone-header .number .phone-icon {
  align-items: center;
  display: flex;
  margin-right: 1rem;
}
header .phone-header .number img {
  max-width: 2rem;
}
header .phone-header .free-quote {
  text-transform: uppercase;
  color: white;
  font-size: 1.7rem;
  display: flex;
  padding: 0.5rem 0;
  padding-right: 3rem;
  padding-left: 4rem;
  border-bottom-right-radius: 5rem;
  border-bottom-left-radius: 5rem;
  background: #00BBEB;
}
header .phone-header .free-quote span {
  font-weight: bold;
}
header .phone-header .free-quote img {
  max-width: 1rem;
}
header .phone-header .free-quote .arrow {
  margin-left: 1rem;
}
header .menu-container {
  grid-column: col-start 5/span 8;
  margin-left: auto;
  margin-bottom: 0.5rem;
  position: relative;
}
header .menu {
  margin-top: auto;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  font-size: 1.6rem;
}
header .menu a {
  color: #848484;
  text-decoration: none;
  margin-right: 1.1rem;
  display: flex;
  align-items: center;
  transition: color 0.2s ease-in;
}
header .menu a:hover {
  color: #00BBEB;
}
header .menu a.active {
  color: #00BBEB;
  font-weight: bold;
}
header .menu a::after {
  margin-left: 1rem;
  content: "■";
  font-size: 0.8rem;
  color: #848484;
}
header .menu a:last-of-type::after {
  content: unset;
}
header .mobile-header-logo {
  display: none;
  position: absolute;
  right: 0;
  bottom: -3rem;
  max-width: 4.5rem;
}
@media only screen and (max-width: 992px) {
  header .container {
    padding: unset;
    max-width: unset;
  }
  header .hamburger-menu {
    display: flex;
  }
  header .phone-header {
    position: absolute;
    top: 0;
    right: 0;
  }
  header .phone-header .free-quote {
    white-space: nowrap;
  }
  header .left {
    grid-column: col-start/span 12;
    margin-top: 5rem;
    padding-bottom: 3.5rem;
  }
  header .left .mobile-header-logo {
    display: block;
  }
  header .left .logo {
    justify-content: center;
    margin-right: 35rem;
  }
  header .menu-container {
    grid-column: col-start/span 12;
    width: 100%;
    margin-bottom: 0;
    flex-direction: column;
  }
  header .menu-container .header-logo {
    display: none;
  }
  header .menu-container .menu {
    border-top: 1px solid #E9E9E9;
    margin: unset;
    width: 100%;
    z-index: 100;
    display: flex;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 4.6rem;
    left: -100vw;
    transition: 0.2s ease-in;
    overflow: auto;
    height: auto;
    max-height: 70vh;
  }
  header .menu-container .menu a {
    display: block;
    width: 100%;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    margin: 0;
    border-bottom: 1px solid #E9E9E9;
    background: white;
  }
  header .menu-container .menu a::after {
    content: unset;
  }
  header .menu-container .menu a:nth-of-type(even) {
    background: #F7F7F7;
  }
  header .menu-container .menu a.active {
    background-color: #00BBEB;
    color: white;
  }
}
@media only screen and (max-width: 768px) {
  header .left .logo {
    margin-right: 0;
  }
}
@media only screen and (max-width: 576px) {
  header .phone-header {
    display: none;
  }
}
@media only screen and (max-width: 400px) {
  header .mobile-header-logo {
    display: none !important;
  }
}
@media only screen and (min-width: 992px) {
  header .menu-bg {
    display: none !important;
  }
}

.hero {
  background-color: black;
  padding-top: 12rem;
  padding-bottom: 2.5rem;
  position: relative;
  height: 100%;
}
.hero .bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.51;
  overflow: hidden;
}
.hero .squares {
  display: inline-flex;
}
.hero .squares .label-container {
  display: flex;
  margin-left: auto;
  margin-right: 2.7rem;
  margin-top: 10.5rem;
}
.hero .squares .label-container label {
  cursor: pointer;
  display: block;
  background: #00BBEB;
  border-radius: 2px;
  background: transparent;
  border: 1px solid white;
  transition: background 0.1s;
  width: 4rem;
  height: 4rem;
  margin-right: 3rem;
}
.hero .squares .label-container label:hover {
  background: rgba(133, 230, 255, 0.5);
}
@media only screen and (min-width: 992px) {
  .hero .squares .label-container label {
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 0.9rem;
  }
}
.hero .squares .label-container label:last-of-type {
  margin-right: 0;
}
.hero .box {
  max-width: 540px;
  background: rgba(0, 187, 235, 0.71);
  padding: 3rem;
  padding-left: 4rem;
  border-top-left-radius: 7rem;
  border-bottom-right-radius: 7rem;
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
}
.hero .box-container {
  display: inline-flex;
  flex-direction: column;
  z-index: 2;
  position: relative;
}
.hero .box .title {
  text-transform: uppercase;
  color: white;
  font-size: 5rem;
  line-height: 1;
  font-weight: bold;
  word-break: break-word;
}
.hero .box p {
  margin: 2.6rem 0;
  color: white;
  letter-spacing: 0.2px;
  text-align: justify;
}
.hero .box p,
.hero .box .title {
  word-break: break-word;
}
.hero .box .btn {
  text-transform: uppercase;
  padding: 1.2rem 2.5rem 1.2rem 2.7rem;
  display: flex;
  border-top-left-radius: 4rem;
  border-bottom-right-radius: 4rem;
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  justify-content: center;
}
@media only screen and (min-width: 992px) {
  .hero .box .btn {
    display: inline-flex;
  }
}

.about-us .top {
  gap: 3rem;
}
@media only screen and (max-width: 992px) {
  .about-us .top {
    gap: unset;
  }
}
.about-us .top .equip h3,
.about-us .top .system h3,
.about-us .top .month-bill h3 {
  text-align: center;
  font-size: 1.82rem;
  color: #00BBEB;
  text-transform: uppercase;
  line-height: 1;
  min-height: 5.4rem;
  font-weight: bold;
}
.about-us .top .equip .text-container,
.about-us .top .system .text-container,
.about-us .top .month-bill .text-container {
  margin-top: 2rem;
}
.about-us .top .equip .text-container .bottom,
.about-us .top .system .text-container .bottom,
.about-us .top .month-bill .text-container .bottom {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 992px) {
  .about-us .top .equip .text-container .bottom .btn,
  .about-us .top .system .text-container .bottom .btn,
  .about-us .top .month-bill .text-container .bottom .btn {
    width: 100%;
    justify-content: center;
    font-size: 2rem;
  }
}
.about-us .top .equip {
  grid-column: col-start/span 12;
}
@media only screen and (min-width: 992px) {
  .about-us .top .equip {
    grid-column: col-start/span 4;
  }
}
.about-us .top .system {
  grid-column: col-start/span 12;
}
@media only screen and (min-width: 992px) {
  .about-us .top .system {
    grid-column: col-start 5/span 4;
  }
}
.about-us .top .month-bill {
  grid-column: col-start/span 12;
}
@media only screen and (min-width: 992px) {
  .about-us .top .month-bill {
    grid-column: col-start 9/span 4;
  }
}
.about-us .top .system,
.about-us .top .equip,
.about-us .top .month-bill {
  padding-top: 1.5rem;
}
.about-us .top .system .text-container,
.about-us .top .equip .text-container,
.about-us .top .month-bill .text-container {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 992px) {
  .about-us .top .system,
  .about-us .top .month-bill {
    border-top: 1px solid #E9E9E9;
    margin-top: 2rem;
  }
}
.about-us .top .icon {
  padding: 2.2rem;
  display: inline-flex;
  background: #3F3F41;
  border-radius: 50%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 992px) {
  .about-us .top .icon-container {
    grid-column: col-start/span 4;
  }
}
.about-us .top .icon img {
  margin: 0 auto;
}
.about-us .headline {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-top: 2.3rem;
}
.about-us .headline h3 {
  text-align: center;
  font-size: 2.5rem;
  color: #737373;
  white-space: nowrap;
  margin: 0 4rem;
}
.about-us .headline span {
  padding-bottom: 1px;
  display: block;
  width: 100%;
  background: #D1D1D1;
}
.about-us .text {
  margin-top: 1rem;
}
.about-us p {
  text-align: center;
  color: #737373;
  margin-bottom: 1.5rem;
}
.about-us p:nth-of-type(2) {
  margin-bottom: 2rem;
}

.our-client {
  border-top: 1px solid #D1D1D1;
  position: relative;
  margin-bottom: 3.3rem;
}
.our-client .headline h2 {
  color: white;
  background: #00BBEB;
  text-transform: uppercase;
  font-size: 3rem;
  border-bottom-right-radius: 5rem;
  padding: 0.5rem 4rem 0.5rem 4rem;
  margin-left: -100%;
  padding-left: 100%;
  display: inline-flex;
  margin-bottom: 1.5rem;
}
.our-client .left {
  grid-column: col-start/span 12;
}
@media only screen and (min-width: 992px) {
  .our-client .left {
    grid-column: col-start/span 6;
  }
}
@media only screen and (max-width: 992px) {
  .our-client .left .container-left {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1rem;
  }
}
.our-client .left .feedback {
  color: #848484;
  position: relative;
  font-style: italic;
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
}
.our-client .left .feedback-container {
  margin-bottom: 2rem;
  max-width: 700px;
}
@media only screen and (max-width: 992px) {
  .our-client .left .feedback-container {
    margin: 0 auto 2rem auto;
  }
}
.our-client .left .feedback .quote {
  position: absolute;
}
.our-client .left .feedback .quote.top {
  top: 0.2rem;
  left: 1.3rem;
}
.our-client .left .feedback .quote.bot {
  bottom: 1rem;
  right: 1rem;
  transform: rotate(180deg);
}
.our-client .left .feedback::after, .our-client .left .feedback::before {
  margin-top: 2rem;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
}
.our-client .left .feedback::before {
  left: 6rem;
  bottom: -19px;
  border-color: #F7F7F7 transparent transparent #F7F7F7;
  border-width: 10px;
  z-index: 2;
}
.our-client .left .feedback::after {
  bottom: -21.5px;
  border-color: #E6E6E6 transparent transparent #E6E6E6;
  border-width: 11px;
  left: 5.9rem;
  z-index: 1;
}
.our-client .left .view-all {
  border-top: 1px solid #E9E9E9;
  display: flex;
  justify-content: space-between;
}
.our-client .left .view-all a {
  text-decoration: none;
}
.our-client .left .view-all .text {
  text-transform: uppercase;
  color: #00BBEB;
  font-weight: bold;
  font-size: 1.32rem;
  padding-top: 0.5rem;
}
.our-client .left .view-all .icon {
  display: inline-flex;
  padding: 0.5rem;
  background: #00BBEB;
}
.our-client .left .view-all .icon img {
  margin: 0.4rem;
  width: 100%;
  max-width: 1.1rem;
  max-height: 1.1rem;
  transform: rotate(-90deg);
  position: relative;
}
.our-client .left .profile {
  display: flex;
  align-items: center;
  margin-top: 1.2rem;
  justify-content: space-between;
}
.our-client .left .profile .left {
  display: flex;
  align-items: center;
  color: #707070;
}
.our-client .left .profile .left img {
  margin-right: 1.2rem;
}
.our-client .left .profile .stars {
  display: flex;
  gap: 0.3rem;
}
.our-client .left .profile .stars img {
  max-width: 1.7rem;
}
.our-client .left .content {
  background: #F7F7F7;
  padding: 3.4rem;
  padding-bottom: 3rem;
  border-radius: 0.5rem;
  border: 1px solid #E6E6E6;
  position: relative;
}
.our-client .right {
  grid-column: col-start/span 12;
  margin: 1.5rem 0;
}
@media only screen and (min-width: 992px) {
  .our-client .right {
    grid-column: col-start 7/span 6;
  }
}
@media only screen and (max-width: 992px) {
  .our-client .right .container-right {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1rem;
  }
}
.our-client .right iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}
.our-client .right h3 {
  margin-top: 0.8rem;
  text-transform: capitalize;
  color: #848484;
  font-size: 1.9rem;
  font-weight: bold;
}
.our-client .right p {
  color: #848484;
  margin-top: 0.8rem;
}
@media only screen and (max-width: 992px) {
  .our-client .left .view-all {
    align-items: center;
    padding-top: 1rem;
  }
  .our-client .left .view-all .text {
    font-size: 2rem;
    letter-spacing: 1px;
    width: 100%;
    padding: 1rem;
    background: #F7F7F7;
    border: 1px solid #E6E6E6;
    border-bottom-left-radius: 2rem;
  }
  .our-client .left .view-all .icon {
    padding: 1.5rem;
    border: 1px solid #00a7d2;
  }
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  background: #00BBEB;
  border: 1px solid #00a7d2;
  position: relative;
  width: 6rem;
  height: 4.5rem;
  justify-content: center;
  align-items: center;
  transform: rotate(0deg);
}
.hamburger-menu::before {
  top: 0.5rem;
}
.hamburger-menu::after {
  bottom: 0.4rem;
}
.hamburger-menu span {
  top: 1.8rem;
}
.hamburger-menu::before, .hamburger-menu::after,
.hamburger-menu span {
  position: absolute;
  content: "";
  width: 4.5rem;
  height: 0.8rem;
  display: block;
  background: white;
  border-radius: 9999px;
  transform-origin: left center;
  transition: opacity 0.2s ease-in, width 0.1s, transform 0.2s linear, translate 0.2s ease-in, background-color 0.2s ease-in, margin 0.2s ease-in;
}

#menu-toggle {
  position: absolute;
}
#menu-toggle:checked ~ .menu-container .menu-bg {
  display: block;
}
#menu-toggle:checked ~ .menu-container .menu {
  left: 0;
}
#menu-toggle:checked ~ .menu-container .hamburger-menu::before {
  transform: rotate(135deg);
  width: 3rem;
  top: 18px;
  left: 50%;
  margin-left: 1rem;
  top: 0.7rem;
}
#menu-toggle:checked ~ .menu-container .hamburger-menu::after {
  transform: rotate(-135deg);
  width: 3rem;
  top: 18px;
  left: 50%;
  margin-left: 1rem;
  top: 2.78rem;
}
#menu-toggle:checked ~ .menu-container .hamburger-menu span {
  opacity: 0;
  margin-left: -6rem;
}

.menu-bg {
  display: none;
  position: absolute;
  background: rgba(20, 24, 28, 0.5);
  width: 100%;
  height: 100vh;
  top: 4.6rem;
  left: 0;
  animation: fadeIn 0.2s;
  -webkit-backdrop-filter: blur(0.25rem);
          backdrop-filter: blur(0.25rem);
  filter: blur(0.001px);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes sliderFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.51;
  }
}
.hero {
  overflow: hidden;
}
.hero .bg {
  transition: margin 0.2s ease-in;
  position: absolute;
}
.hero .bg-slider-0 {
  margin-left: 0;
}
.hero .bg-slider-1 {
  margin-left: 100%;
  animation: sliderFadeIn 1s;
}
.hero .bg-slider-2 {
  margin-left: 200%;
  animation: sliderFadeIn 1s;
}

.slider-images {
  display: flex;
}

#slider0:checked ~ .bg-slider-0 {
  margin-left: 0%;
}
#slider0:checked ~ .bg-slider-1 {
  margin-left: 100%;
}
#slider0:checked ~ .bg-slider-2 {
  margin-left: 200%;
}
#slider0:checked ~ .container .label-container label:nth-child(1) {
  background: #00BBEB;
  border-color: transparent;
  cursor: unset;
}

#slider1:checked ~ .bg-slider-0 {
  margin-left: -100%;
}
#slider1:checked ~ .bg-slider-1 {
  margin-left: 0%;
}
#slider1:checked ~ .bg-slider-2 {
  margin-left: 100%;
}
#slider1:checked ~ .container .label-container label:nth-child(2) {
  background: #00BBEB;
  border-color: transparent;
  cursor: unset;
}

#slider2:checked ~ .bg-slider-0 {
  margin-left: -200%;
}
#slider2:checked ~ .bg-slider-1 {
  margin-left: -100%;
}
#slider2:checked ~ .bg-slider-2 {
  margin-left: 0%;
}
#slider2:checked ~ .container .label-container label:nth-child(3) {
  background: #00BBEB;
  border-color: transparent;
  cursor: unset;
}/*# sourceMappingURL=style.css.map */