@import url("https://fonts.googleapis.com/css2?family=Nata+Sans:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&display=swap");
@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width <= 63.99875rem) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

@media (width > 63.99875rem) {
  .visible-tablet {
    display: none !important;
  }
}

.hidden {
  display: none !important;
}

* {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #FFF;
}

html, body {
  font-family: "Nata Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #FFF;
  font-size: 18px;
  scroll-behavior: smooth;
}

h1, h2, h3, a {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 4%;
}

h1 {
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
}

img {
  max-width: 100%;
}

.wrapper {
  background: #212F70;
  background: linear-gradient(270deg, rgb(33, 47, 112) 20%, rgb(61, 189, 244) 100%);
}

.container {
  max-width: 1800px;
  padding-left: 30px;
  padding-right: 30px;
  margin: auto;
}

@media (width <= 90.06125rem) {
  h2, h3, a {
    font-size: 24px;
  }
}
@media (width <= 47.99875rem) {
  .container {
    max-width: 800px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
header {
  padding: 50px 0;
}
header img {
  width: 18.75rem;
}
header nav {
  float: right;
  padding-top: 2rem;
  list-style: none;
  display: block;
  justify-content: space-between;
}
header nav a {
  color: #FFF;
  margin: 10px;
}
header nav a.btn {
  background: #3DBDF4;
  padding: 9px 17px;
  border-radius: 5px;
  transition: all 200ms ease;
}
header nav a.btn:hover {
  background: #122FA1;
}
header nav header nav a.btn:active {
  transform: scale(0.8);
  background: #122FA1;
}
header .burger-menu #menuToggle {
  display: block;
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}
header .burger-menu #menuToggle a {
  text-decoration: none;
  color: #232323;
  transition: color 0.3s ease;
}
header .burger-menu #menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}
header .burger-menu #menuToggle span {
  display: block;
  width: 2.0625rem;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #FFF;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
header .burger-menu #menuToggle span:first-child {
  transform-origin: 0% 0%;
}
header .burger-menu #menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
header .burger-menu #menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #FFF;
}
header .burger-menu #menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
header .burger-menu #menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}
header .burger-menu #menu {
  position: absolute;
  max-width: 400px;
  width: 100vw;
  max-height: 100vh;
  margin: -100px 0 0 -150px;
  padding: 50px;
  padding-top: 125px;
  box-sizing: border-box;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.6);
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}
header .burger-menu #menu li {
  padding: 10px 0;
  font-size: 22px;
}
header .burger-menu #menu li label {
  cursor: pointer;
  z-index: 1;
  color: #FFF;
}
header .burger-menu #menuToggle input:checked ~ ul {
  transform: none;
}

@media (width <= 47.99875rem) {
  header {
    padding-top: 30px;
  }
  header img {
    padding-left: 20px;
  }
}
.btn {
  background: #3DBDF4;
  padding: 9px 17px;
  border-radius: 20px;
  max-width: 3.75rem;
  transition: all 200ms ease;
}

.hero {
  padding: 40px 0;
  display: grid;
  grid-template-columns: repeat(2, 2fr);
}
.hero article {
  padding: 20px 0;
  margin: auto;
  text-align: left;
  width: 80%;
}
.hero article h1 {
  padding-bottom: 2.5rem;
}
.hero article p {
  padding-bottom: 1.875rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.hero a.btn:hover {
  background: #122FA1;
}
.hero header nav a.btn:active {
  transform: scale(0.8);
  background: #122FA1;
}
.hero .heroimg {
  padding: 2.5rem;
  margin: auto;
}
@media (width <= 47.99875rem) {
  .hero .heroimg {
    width: 21.875rem;
  }
}
@media (width <= 30.06125rem) {
  .hero .heroimg {
    width: 17.5rem;
    padding: 0.625rem;
  }
}

.tariffs {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
}
.tariffs article {
  margin: auto;
  width: 18.75rem;
  height: 18.75rem;
  border-style: solid;
  border-radius: 10px;
  padding: 20px;
}
.tariffs article header {
  padding: 20px 0;
}
.tariffs article ul li {
  list-style: circle;
}
.tariffs article p {
  padding-top: 20px;
}

.links {
  padding-top: 3.75rem;
}
.links a.link {
  text-decoration: underline;
  padding-left: 0.625rem;
}
.links a.btn:hover {
  background: #122FA1;
}
.links header nav a.btn:active {
  transform: scale(0.8);
  background: #122FA1;
}
.links {
  text-align: center;
}

@media (width <= 90.06125rem) {
  .tariffs article {
    width: 16.25rem;
    border-style: solid;
    border-radius: 10px;
  }
}
@media (width <= 63.99875rem) {
  .hero {
    grid-template-columns: repeat(1, 2fr);
  }
  .hero .heroimg {
    width: 37.5rem;
  }
  .tariffs {
    grid-template-columns: repeat(1, 2fr);
  }
  .tariffs article {
    width: 18.75rem;
    padding-top: 2.5rem;
    margin-bottom: 10px;
  }
}
@media (width <= 47.99875rem) {
  .hero {
    grid-template-columns: repeat(1, 2fr);
  }
  .hero .heroimg {
    width: 25rem;
  }
  .hero article h1 {
    padding-bottom: 1.25rem;
  }
  .hero article p {
    padding-bottom: 0.625rem;
  }
  .tariffs article {
    width: 16.25rem;
  }
}
@media (width <= 30.06125rem) {
  .hero {
    grid-template-columns: repeat(1, 2fr);
  }
  .hero .heroimg {
    width: 15.625rem;
  }
  .tariffs article {
    width: 13.75rem;
    height: 23.125rem;
  }
  .tariffs article p {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}
#highlights {
  padding-top: 5rem;
}

.wialon--highlights {
  display: grid;
  padding: 2.5rem;
  grid-template-columns: repeat(4, 1fr);
}
.wialon--highlights p {
  font-size: 32px;
  font-weight: 600;
}

.s-block {
  padding-bottom: 2.5rem;
  border-style: solid;
  border-radius: 10px;
  padding: 10px;
  margin: 10px;
  background: rgba(0, 0, 0, 0.3);
}

.product--highlights {
  display: grid;
  padding: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
}
.product--highlights article {
  width: 21.875rem;
  margin: auto;
}

.block {
  padding: 3.75rem;
}

.data-center--info {
  padding: 2.5rem;
}

@media (width <= 90.06125rem) {
  .product--highlights {
    grid-template-columns: repeat(2, 2fr);
  }
}
@media (width <= 63.99875rem) {
  .wialon--highlights {
    grid-template-columns: repeat(2, 2fr);
  }
  .wialon--highlights p {
    font-size: 24px;
    font-weight: 600;
  }
  .product--highlights {
    grid-template-columns: repeat(1, 2fr);
    padding: 1.25rem;
  }
  .product--highlights article {
    width: 37.5rem;
    margin: auto;
  }
  .block {
    padding: 1.875rem;
  }
}
@media (width <= 47.99875rem) {
  .wialon--highlights {
    grid-template-columns: repeat(1, 2fr);
  }
  .product--highlights {
    padding: 0rem;
  }
  .product--highlights article {
    width: 18.75rem;
  }
}
@media (width <= 30.06125rem) {
  .product--highlights article {
    width: 12.5rem;
  }
}
#features {
  padding-top: 3.75rem;
}

.center {
  text-align: center;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 2fr);
  margin: auto;
}
.features article {
  width: 18.75rem;
  margin: auto;
  text-align: center;
  margin-top: 0.625rem;
}
.features article img {
  margin: auto;
}
.features article h2 {
  padding-top: 20px;
}
.features .feature {
  margin: auto;
  width: 18.75rem;
  height: 18.75rem;
  border-style: solid;
  border-radius: 10px;
  padding: 0.9375rem;
}

@media (width <= 90.06125rem) {
  .features {
    grid-template-columns: repeat(2, 2fr);
  }
}
@media (width <= 47.99875rem) {
  .features {
    grid-template-columns: repeat(1, 2fr);
  }
  .features article {
    width: 10.625rem;
  }
  .features .feature {
    height: 17.5rem;
  }
}
@media (width <= 30.06125rem) {
  .features .feature {
    width: 13.75rem;
    height: 20rem;
    margin-bottom: 10px;
  }
}
#about {
  padding-top: 3.75rem;
}

article {
  margin: auto;
  width: 80%;
}
article h3 {
  text-align: center;
}
article p {
  padding-top: 1.25rem;
}

#contact {
  padding-top: 3.75rem;
}

.contacts h1 {
  text-align: center;
}
.contacts .contact-form {
  width: 40%;
  height: 90%;
  margin: auto;
  padding: 26px;
  background: rgba(0, 0, 0, 0.8);
}
@media (width <= 63.99875rem) {
  .contacts .contact-form {
    width: 80%;
  }
}
.contacts .contact-form form {
  padding-top: 60px;
  display: grid;
  grid-template-columns: 100%;
  gap: 26px;
}
.contacts .contact-form form input {
  border: none;
  background: rgba(255, 255, 255, 0.65);
  color: #000;
  border-radius: 10px;
  padding: 10px;
  font-size: 18px;
}
.contacts .contact-form form textarea {
  border: none;
  background: rgba(255, 255, 255, 0.65);
  color: #000;
  border-radius: 10px;
  padding: 10px;
  font-size: 18px;
  resize: none;
  height: 20vh;
}
.contacts .contact-form form .form--btn {
  display: block;
  background: #FFF;
  border: none;
  color: #000;
  font-size: 18px;
  border-radius: 10px;
  padding: 10px;
  transition: all 200ms ease;
}
.contacts .contact-form form .form--btn:hover {
  background: #707070;
}
.contacts .contact-form form .form--btn:active {
  background: #707070;
}
.contacts .contact-form form a {
  text-decoration: underline;
  color: blue;
  font-size: 16px;
}

footer {
  display: flex;
  background: #000;
  justify-content: center;
}
footer img {
  width: 18.75rem;
  padding: 1rem;
  cursor: pointer;
}

@media (width <= 47.99875rem) {
  footer img {
    width: 6.25rem;
  }
}

/*# sourceMappingURL=main.css.map */
