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

body {
  background-color: #000000;
  font-family: "Inter", sans-serif;
  font-style: normal;
  color: #FFFFFF;
}

.container {
  width: 90%;
  max-width: 1408px;
  margin: auto;
}
.container-medium {
  max-width: 900px;
  padding-top: 100px;
  padding-bottom: 128px;
}

h1 {
  font-family: Inter;
  font-size: 72px;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0;
  margin-bottom: 16px;
}

h2 {
  font-family: Inter;
  font-size: 64px;
  font-weight: 600;
  line-height: 64px;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0;
}

p {
  font-family: Inter;
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
  text-align: left;
  margin: 0;
  color: #A6A6A6;
}

.title-bold {
  display: inline-block;
  font-family: Inter;
  font-size: 32px;
  font-weight: 600;
  line-height: 41.6px;
  text-align: left;
  margin-bottom: 8px;
  color: #fff;
}

.button {
  text-decoration: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.button-primary {
  position: relative;
  border-radius: 12px;
  background: #000000;
  padding: 24px;
  transition: 250ms;
}
.button-primary::before {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  background: conic-gradient(from 180deg at 50% 50%, #8F00FF 0deg, #FF0000 60.95deg, #FF8A00 132.37deg, #FFD600 183.3deg, #009922 227.17deg, #0085FF 296.89deg, #8F00FF 360deg);
  border-radius: 12px;
  z-index: -1;
}
.button-primary:hover {
  transition: 250ms;
  background: #464646;
}
.button-primary:hover::before {
  background: #464646;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.button-secondary {
  width: 100%;
  padding: 23px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  font-size: 22px;
  font-weight: 600;
  line-height: 26.63px;
  text-transform: uppercase;
  transition: 250ms;
}
.button-secondary:hover {
  transition: 250ms;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
}

.link {
  text-decoration: none;
  color: #A6A6A6;
}
.link-primary {
  -webkit-text-decoration: outline;
          text-decoration: outline;
  color: #A6A6A6;
}

.cookie {
  display: none;
  position: fixed;
  bottom: 47px;
  width: 100%;
  z-index: 100;
}
.cookie-wrapper {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
}
.cookie-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.36px;
  text-align: left;
  color: #FFFFFF;
}
.cookie-text .link-primary {
  color: #FFFFFF;
}
.cookie button {
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.36px;
  color: #FFFFFF;
}
.cookie-accept {
  border-radius: 4px;
  padding: 14px 44px;
  background: #39b36a;
}
.cookie-decline {
  background: none;
  margin-right: 34px;
  display: none;
}

.show {
  display: block;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1019607843);
}

.cookies p, .terms p, .privacy p {
  margin-bottom: 5px;
}
.cookies .title-bold, .terms .title-bold, .privacy .title-bold {
  margin-top: 30px;
  margin-bottom: 20px;
}
.cookies .title-bold:nth-of-type(1), .terms .title-bold:nth-of-type(1), .privacy .title-bold:nth-of-type(1) {
  margin-top: 0px;
}

.terms-about .title-bold {
  margin-top: 0;
  margin-bottom: 10px;
}

.header {
  padding-top: 16px;
  padding-bottom: 16px;
  position: fixed;
  z-index: 20;
  width: 100%;
  background: #000;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header-logo img {
  width: 35.66px;
  height: 32.14px;
  margin-right: 15px;
}
.header-logo span {
  font-family: Inter;
  font-size: 24px;
  font-weight: 500;
  line-height: 29.05px;
  text-align: left;
  text-decoration: none;
  color: #fff;
}
.header-nav ul {
  padding: 0;
  display: flex;
  list-style-type: none;
}
.header-nav .link {
  color: #A6A6A6;
  transition: 250ms;
  padding: 10px 0;
  position: relative;
}
.header-nav .link:hover {
  color: #FFFFFF;
  transition: 250ms;
}
.header-nav .link:hover::after {
  content: "·";
  font-size: 25px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
.header-nav li {
  margin-right: 40px;
}
.header-nav li:last-of-type {
  margin-right: 0;
}
.header .button-primary {
  font-size: 15px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  padding: 6px 18px;
}

.main {
  padding-top: 85px;
}
.main-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-info p {
  font-size: 32px;
  font-weight: 400;
  line-height: 41.6px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6980392157);
  margin-bottom: 32px;
}
.main-info a img {
  width: 323px;
  height: auto;
}
.main-bg {
  display: flex;
  max-width: 1102px;
  justify-content: center;
  position: relative;
  margin-bottom: 32px;
  margin: auto;
}
.main-bg__avatar {
  max-width: 73px;
  position: absolute;
  transform: translate(0, -50%);
  z-index: 20;
}
.main-bg::before {
  content: "";
  background-image: url(../img/triangle-blue.svg);
  background-size: 100% 100%;
  position: absolute;
  width: 161px;
  height: 142px;
  bottom: 0;
  left: 0;
  z-index: 20;
}
.main-video {
  max-width: 100%;
}
.main-video video {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-opacity {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, #000000 100%);
  z-index: 10;
}

.avatar-1 {
  width: 6%;
  top: 40%;
  left: 50%;
}

.avatar-2 {
  width: 7%;
  top: 40%;
  left: 15%;
}

.avatar-3 {
  width: 4.7%;
  top: 45%;
  left: 25%;
}

.avatar-4 {
  width: 5%;
  top: 40%;
  left: 45%;
}

.avatar-5 {
  width: 7.5%;
  top: 35%;
  left: 25%;
}

.avatar-6 {
  width: 7.2%;
  top: 17%;
  left: 10%;
}

.avatar-animate {
  position: absolute;
  height: auto;
  animation: pulse 2s infinite;
  animation-delay: 1.2s;
  max-width: 73px;
  opacity: 0;
  width: 8.5%;
  z-index: 21;
}

.avatar-animate1 {
  position: absolute;
  height: auto;
  animation: pulse-one 2s infinite;
  animation-delay: 2.8s;
  max-width: 73px;
  opacity: 0;
  width: 8.5%;
  z-index: 21;
}

.avatar-animate2 {
  position: absolute;
  height: auto;
  animation: pulse-two 2s infinite;
  max-width: 73px;
  opacity: 0;
  width: 8.5%;
  z-index: 21;
}

.avatar-animate3 {
  position: absolute;
  height: auto;
  animation: pulse-three 2s infinite;
  animation-delay: 3.6s;
  max-width: 73px;
  opacity: 0;
  width: 8.5%;
  z-index: 21;
}

@keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(0.3);
    top: 36%;
    left: 10%;
  }
  6% {
    opacity: 1;
    transform: scale(1.2);
    top: 36%;
    left: 10%;
  }
  12% {
    opacity: 1;
    transform: scale(0.7);
    top: 36%;
    left: 10%;
  }
  18% {
    opacity: 1;
    transform: scale(1.1);
    top: 36%;
    left: 10%;
  }
  24% {
    opacity: 1;
    transform: scale(0.8);
    top: 36%;
    left: 10%;
  }
  48% {
    opacity: 1;
    transform: scale(0.9);
    top: 36%;
    left: 10%;
  }
  62% {
    opacity: 1;
    transform: scale(1);
    top: 36%;
    left: 10%;
  }
  70% {
    opacity: 0;
    transform: scale(0.1);
    top: 36%;
    left: 10%;
  }
  100% {
    opacity: 0;
    transform: scale(1);
    top: 36%;
    left: 10%;
  }
}
@keyframes pulse-one {
  0% {
    opacity: 0;
    transform: scale(0.3);
    top: 21%;
    left: 16%;
  }
  6% {
    opacity: 1;
    transform: scale(1.2);
    top: 21%;
    left: 16%;
  }
  12% {
    opacity: 1;
    transform: scale(0.7);
    top: 21%;
    left: 16%;
  }
  18% {
    opacity: 1;
    transform: scale(1.1);
    top: 21%;
    left: 16%;
  }
  24% {
    opacity: 1;
    transform: scale(0.8);
    top: 21%;
    left: 16%;
  }
  48% {
    opacity: 1;
    transform: scale(0.9);
    top: 21%;
    left: 16%;
  }
  62% {
    opacity: 1;
    transform: scale(1);
    top: 21%;
    left: 16%;
  }
  70% {
    opacity: 0;
    transform: scale(0.1);
    top: 21%;
    left: 16%;
  }
  100% {
    opacity: 0;
    transform: scale(1);
    top: 21%;
    left: 16%;
  }
}
@keyframes pulse-two {
  0% {
    opacity: 0;
    transform: scale(0.3);
    top: 40%;
    left: 46%;
  }
  6% {
    opacity: 1;
    transform: scale(1.2);
    top: 40%;
    left: 46%;
  }
  12% {
    opacity: 1;
    transform: scale(0.7);
    top: 40%;
    left: 46%;
  }
  18% {
    opacity: 1;
    transform: scale(1.1);
    top: 40%;
    left: 46%;
  }
  24% {
    opacity: 1;
    transform: scale(0.8);
    top: 40%;
    left: 46%;
  }
  48% {
    opacity: 1;
    transform: scale(0.9);
    top: 40%;
    left: 46%;
  }
  62% {
    opacity: 1;
    transform: scale(1);
    top: 40%;
    left: 46%;
  }
  70% {
    opacity: 0;
    transform: scale(0.1);
    top: 40%;
    left: 46%;
  }
  100% {
    opacity: 0;
    transform: scale(1);
    top: 40%;
    left: 46%;
  }
}
@keyframes pulse-three {
  0% {
    opacity: 0;
    transform: scale(0.3);
    top: 12%;
    left: 55%;
  }
  6% {
    opacity: 1;
    transform: scale(1.2);
    top: 12%;
    left: 55%;
  }
  12% {
    opacity: 1;
    transform: scale(0.7);
    top: 12%;
    left: 55%;
  }
  18% {
    opacity: 1;
    transform: scale(1.1);
    top: 12%;
    left: 55%;
  }
  24% {
    opacity: 1;
    transform: scale(0.8);
    top: 12%;
    left: 55%;
  }
  48% {
    opacity: 1;
    transform: scale(0.9);
    top: 12%;
    left: 55%;
  }
  62% {
    opacity: 1;
    transform: scale(1);
    top: 12%;
    left: 55%;
  }
  70% {
    opacity: 0;
    transform: scale(0.1);
    top: 12%;
    left: 55%;
  }
  100% {
    opacity: 0;
    transform: scale(1);
    top: 12%;
    left: 55%;
  }
}
.about {
  padding: 88px 0;
}
.about h2 {
  margin-bottom: 40px;
}
.about-wrapper {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.about-wrapper::before {
  content: "";
  background-image: url(../img/triangle-yellow.svg);
  background-size: 100% 100%;
  position: absolute;
  width: 251px;
  height: 209px;
  top: -150px;
  right: 100px;
  z-index: -1;
}
.about-item img {
  width: 48px;
  height: 48px;
  display: block;
  margin-bottom: 16px;
}
.about-item p {
  font-family: Inter;
  font-size: 24px;
  font-weight: 400;
  line-height: 29.05px;
  text-align: left;
}

.features {
  padding-bottom: 96px;
}
.features-wrapper {
  display: grid;
  grid-template-rows: auto;
}
.features-item {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 48px;
  position: relative;
  padding-top: 50px;
}
.features-item:first-of-type .features-image {
  width: auto;
}
.features-item:first-of-type .features-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.features-item:nth-of-type(2n+2) .features-info__text, .features-item:nth-of-type(2n+2) .features-info__title {
  text-align: right;
}
.features-item:nth-of-type(2)::before {
  content: "";
  background-image: url(../img/triangle-green.svg);
  background-size: 100% 100%;
  position: absolute;
  height: 131px;
  width: 138px;
  top: 20%;
  left: 40%;
  z-index: -1;
}
.features-image, .features-form {
  width: 640px;
  max-height: 640px;
}
.features-image img:first-of-type, .features-image video:first-of-type, .features-form img:first-of-type, .features-form video:first-of-type {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.features-card {
  padding: 22px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.features-card span {
  color: #59D220;
  font-size: 16px;
  line-height: 24px;
}
.features-card img.icon {
  max-width: 24px;
  height: 24px;
  margin-right: 7px;
}
.features-card__video {
  border-radius: 16px;
}
.features-card__video video {
  padding: 32px;
}
.features-card__info {
  display: grid;
  grid-template-columns: repeat(6, auto);
  padding: 24px 24px 21px 24px;
  position: relative;
  border-bottom: 1px solid #484848;
}
.features-card__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
}
.features-card__item:nth-of-type(2) p {
  color: #59D220;
}
.features-card__item p {
  margin-bottom: 8px;
}
.features-card__item .text {
  font-size: 10px;
  line-height: 12.1px;
}
.features-card__item .gmt {
  display: block;
  font-size: 8px;
  line-height: 9.68px;
  color: #A6A6A6;
}
.features-card__item #currentTime {
  margin-bottom: 0;
}
.features-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.features-info__title {
  font-size: 48px;
  font-weight: 400;
  line-height: 57.6px;
  text-align: left;
  margin-bottom: 8px;
  color: #fff;
}
.features-info__text {
  font-size: 40px;
  font-weight: 300;
  line-height: 48px;
  text-align: left;
}
.features-info--mob {
  display: none;
}
.features-form {
  max-width: 608px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1019607843);
  border-radius: 16px;
  padding: 24px;
  margin: 16px 16px;
}
.features-form input, .features-form textarea {
  color: #fff;
  display: block;
  outline: none;
  border: none;
  outline: none;
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 20px 22px;
  background-color: #0F0F0F;
  border-radius: 8px;
}
.features-form textarea {
  resize: none;
  height: 100%;
}
.features-form .border-hover {
  color: #A6A6A6;
  border: 1px solid #5C5C5C;
  border-radius: 8px;
}
.features-form .border-hover:hover {
  padding: 18px 20px;
  background: conic-gradient(from 180deg at 50% 50%, #8F00FF 0deg, #FF0000 60.95deg, #FF8A00 132.37deg, #FFD600 183.3deg, #009922 227.17deg, #0085FF 296.89deg, #8F00FF 360deg);
  padding: 3px;
  border: none;
}
.features-form .border-hover:hover input, .features-form .border-hover:hover textarea {
  padding: 18px 20px;
}
.features-form .border-hover:hover input::-moz-placeholder, .features-form .border-hover:hover textarea::-moz-placeholder {
  color: #fff;
}
.features-form .border-hover:hover input::placeholder, .features-form .border-hover:hover textarea::placeholder {
  color: #fff;
}
.features .speed {
  position: relative;
}
.features .speed-arrow {
  position: absolute;
  width: 135px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-30px, 0) rotate(6deg);
  transform-origin: 23% 15%;
  transition: transform 0.2s ease-in;
}
.features .speed-mbps, .features .speed-ping {
  font-size: 32px;
  font-weight: 700;
  line-height: 38.73px;
  text-align: center;
}
.features .speed-ping {
  position: absolute;
  top: 12%;
  left: 4.8%;
}
.features .speed-mbps {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translate(-50%, 0);
}

.security {
  padding: 64px 0 90px;
}
.security .container {
  max-width: 960px;
}
.security-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.security-wrapper::before {
  content: "";
  width: 185px;
  height: 154px;
  background: url(../img/triangle-purple.svg);
  background-size: 100% 100%;
  position: absolute;
  top: -100px;
  left: -180px;
  z-index: -1;
}
.security-wrapper h2 {
  margin-bottom: 16px;
}
.security-wrapper p {
  text-align: center;
  margin-bottom: 60px;
}
.security-wrapper a {
  width: 323px;
  height: auto;
}
.security-wrapper a img {
  width: 100%;
  height: auto;
}

.pricing {
  padding-bottom: 73px;
}
.pricing h2 {
  margin-bottom: 16px;
}
.pricing-text {
  margin-bottom: 48px;
  text-align: center;
}
.pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.pricing-wrapper::before {
  content: "";
  position: absolute;
  background: url(../img/triangle-red.svg);
  background-size: 100% 100%;
  width: 194px;
  height: 184px;
  top: -200px;
  right: 7%;
  z-index: -1;
}
.pricing-card {
  box-shadow: 0px 4px 2px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 40px 32px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card:nth-of-type(3) .pricing-save {
  background: linear-gradient(153deg, #FFB800 1.63%, #C800CC 58.08%, #9700CC 96.52%);
}
.pricing-card__title {
  display: block;
  font-family: Inter;
  font-size: 32px;
  font-weight: 500;
  line-height: 38.73px;
  text-align: center;
  margin-bottom: 8px;
}
.pricing-card__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  margin-bottom: 32px;
}
.pricing-card__bottom {
  margin-top: auto;
}
.pricing-card__price {
  font-size: 48px;
  font-weight: 600;
  line-height: 58.09px;
  text-align: center;
}
.pricing-card__day {
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.36px;
  text-align: center;
}
.pricing-card__include {
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  text-align: center;
  margin-bottom: 32px;
}
.pricing-card .button-primary {
  display: flex;
  width: 100%;
  background: #1a1a1a;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 40px;
  margin-top: auto;
  border-radius: 16px;
}
.pricing-card .button-primary:before {
  border-radius: 16px;
}
.pricing-card .button-primary:hover {
  transition: 250ms;
  background: #464646;
}
.pricing-save {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 64px;
  background: linear-gradient(155.85deg, #00E0FF -4.07%, #6600CC 47.27%, #9700CC 98.6%);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-save__percent {
  margin-left: 4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.05em;
}

.help {
  padding: 96px 0 128px;
}
.help h2 {
  margin-bottom: 48px;
}
.help-wrapper {
  position: relative;
}
.help-wrapper::before {
  content: "";
  width: 262px;
  height: 230px;
  background: url(../img/triangle-orange.svg);
  background-size: 100% 100%;
  position: absolute;
  top: 500px;
  left: 50px;
  z-index: -1;
}
.help-wrapper details {
  max-width: 848px;
  padding: 34px 40px;
  margin: auto;
  margin-bottom: 16px;
  box-shadow: 0px 4px 2px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 8px;
}
.help-wrapper details summary {
  position: relative;
  list-style-type: none;
  cursor: pointer;
  font-size: 24px;
  font-weight: 400;
  line-height: 28.8px;
}
.help-wrapper details summary:before {
  transition: 250ms;
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/arrow.svg);
  background-size: 100% 100%;
  position: absolute;
  right: 0;
}
.help-wrapper details[open] > summary {
  margin-bottom: 15px;
}
.help-wrapper details[open] > summary:before {
  transition: 250ms;
  transform: rotate(180deg);
}

.footer {
  padding: 56px 0 40px;
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.footer-logo img {
  width: 35.66px;
  height: 32.14px;
  margin-right: 15px;
}
.footer-logo span {
  font-family: Inter;
  font-size: 24px;
  font-weight: 500;
  line-height: 29.05px;
  text-align: left;
  text-decoration: none;
  color: #fff;
}
.footer-nav {
  margin-bottom: 16px;
}
.footer-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-nav ul li {
  padding: 0;
  margin-right: 16px;
}
.footer-nav ul li:last-of-type {
  margin-left: 0px;
}
.footer-link {
  font-size: 14px;
  font-weight: 500;
  line-height: 32px;
  text-decoration: none;
  color: #fff;
}
.footer-by {
  font-size: 12px;
  font-weight: 500;
  line-height: 32px;
  color: #A6A6A6;
}

@media (max-width: 1280px) {
  .about-wrapper::before {
    width: 100px;
    right: 8px;
    top: -150px;
  }
  .features-info__title {
    font-size: 38px;
    line-height: 50px;
  }
  .features-info__text {
    font-size: 28px;
    line-height: 40px;
  }
  .features-card__info {
    grid-template-columns: repeat(3, auto);
    row-gap: 16px;
  }
  .features-image, .features-form {
    max-width: 450px;
  }
  .features .speed-arrow {
    width: 100px;
    transform: translate(20px, 0) rotate(6deg);
  }
  .security-wrapper::before {
    width: 120px;
    top: -150px;
    left: 0;
  }
  .pricing-wrapper::before {
    width: 120px;
  }
  .pricing-card {
    padding: 40px 16px;
  }
  .pricing-card__text {
    font-size: 18px;
  }
  .pricing-card__price {
    font-size: 40px;
  }
  .pricing-card .button-primary {
    font-size: 20px;
    line-height: 30px;
    padding: 16px;
  }
  .help-wrapper::before {
    content: "";
    width: 160px;
    top: 600px;
  }
}
@media (max-width: 1013px) {
  .pricing-card__include {
    min-height: 32px;
  }
}
@media (max-width: 900px) {
  h1 {
    font-size: 36px;
    line-height: 36px;
  }
  h2 {
    font-size: 32px;
    line-height: 32px;
  }
  p {
    font-size: 16px;
    line-height: 20.8px;
  }
  .title-bold {
    font-size: 16px;
    line-height: 20.8px;
  }
  .container {
    width: 100%;
    padding: 0 16px;
  }
  .container-medium {
    padding-top: 100px;
  }
  .header-nav {
    display: none;
  }
  .main-bg::before {
    width: 43px;
    height: 38px;
    bottom: 0;
    left: 0;
    z-index: 20;
  }
  .main-info p {
    font-size: 16px;
    line-height: 20.8px;
  }
  .main-info a img {
    width: 161px;
  }
  .avatar-animate, .avatar-animate1 {
    max-width: 60px;
  }
  .about-wrapper::before {
    width: 65px;
    height: 55px;
    right: 8px;
    top: -150px;
  }
  .about-item {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .about-item .title-bold, .about-item p {
    text-align: center;
  }
  .about-item p {
    font-size: 14px;
    line-height: 16.94px;
  }
  .features {
    padding: 0;
  }
  .features-wrapper .button-secondary {
    width: 100%;
  }
  .features-card {
    padding: 12px 13px;
  }
  .features-card img.icon {
    width: 10px;
    height: 10px;
    margin-right: 4px;
  }
  .features-card span {
    font-size: 10px;
    line-height: 12px;
  }
  .features-card__info {
    grid-template-columns: repeat(6, auto);
    padding: 12px;
  }
  .features-card__item p {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 6px;
  }
  .features-card__item .text {
    font-size: 5px;
    line-height: 8px;
  }
  .features-card__item .gmt {
    font-size: 4px;
    line-height: 4px;
  }
  .features-card__video video {
    padding: 28px;
  }
  .features-item {
    grid-template-columns: 1fr;
    max-width: auto;
    max-height: auto;
    gap: 0;
    padding: 24px 0;
  }
  .features-item:first-of-type .features-image {
    max-height: 500px;
    width: auto;
  }
  .features-item:nth-of-type(2n+2) .features-info__title {
    text-align: center;
  }
  .features-item:nth-of-type(2)::before {
    top: -10px;
    left: -10px;
    width: 57px;
    height: 54px;
    transform: rotate(30deg);
  }
  .features-info {
    order: -1;
  }
  .features-info__text {
    display: none;
  }
  .features-info__title {
    max-width: 250px;
    margin: auto;
    text-align: center;
    font-size: 24px;
    line-height: 28.8px;
    margin-bottom: 16px;
  }
  .features-info--mob {
    display: block;
    order: 1;
    text-align: center;
  }
  .features-image {
    order: 0;
    margin: auto;
    margin-bottom: 19px;
    max-width: auto;
    width: 100%;
  }
  .features-form {
    width: 100%;
    margin: auto;
    margin-bottom: 16px;
    max-width: 100%;
  }
  .features .speed-arrow {
    width: 20%;
  }
  .features .speed-mbps, .features .speed-ping {
    font-size: 18px;
    line-height: 22px;
  }
  .security {
    padding: 24px 0;
  }
  .security-wrapper::before {
    top: -40px;
    left: 5px;
    width: 63px;
    height: 52px;
  }
  .security-wrapper p {
    margin-bottom: 24px;
  }
  .security-wrapper a {
    width: 161px;
  }
  .pricing {
    padding: 48px 0;
  }
  .pricing-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 48px;
  }
  .pricing-wrapper::before {
    top: -80px;
    right: 12px;
    width: 87px;
    height: 82px;
  }
  .pricing-card {
    padding: 32px;
    max-width: 100%;
    margin: auto;
  }
  .pricing-card__text, .pricing-card__include {
    margin-bottom: 16px;
  }
  .pricing-card__include {
    min-height: 0;
  }
  .pricing-card .button-primary {
    padding: 24px;
  }
  .help {
    padding-top: 0;
    padding-bottom: 0;
  }
  .help-wrapper::before {
    width: 71px;
    height: 62px;
    top: 550px;
    right: 0;
    left: auto;
    pointer-events: none;
  }
  .help-wrapper details {
    padding: 24px;
  }
  .help-wrapper details summary {
    padding-right: 48px;
    font-size: 16px;
    line-height: 24px;
  }
  .help-wrapper details summary:before {
    top: 10px;
    width: 12px;
    height: 12px;
    transform: translate(0, -50%);
  }
  .help-wrapper details[open] > summary:before {
    transform: rotate(180deg) translate(0, 50%);
  }
  .cookies .title-bold, .terms .title-bold, .privacy .title-bold {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 680px) {
  .about {
    padding: 44px 0;
  }
  .about-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-wrapper::before {
    width: 65px;
    height: 55px;
    right: 8px;
    top: -150px;
  }
  .cookie-wrapper {
    padding: 24px;
    flex-direction: column;
  }
  .cookie-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 14.52px;
    text-align: center;
    margin-bottom: 24px;
  }
  .cookie-button__group {
    width: 100%;
  }
  .cookie button {
    width: 100%;
  }
  .features-card, .features-card__video {
    border-radius: 8px;
  }
  .features-form {
    padding: 12px;
    gap: 8px;
    border-radius: 8px;
  }
  .features-form .message {
    height: 123px;
  }
  .features-form label {
    border-radius: 4px;
  }
  .features-form input, .features-form textarea {
    padding: 10px 11px;
    font-size: 8px;
    font-weight: 400;
    line-height: 12px;
    border-radius: 4px;
  }
  .features-form .border-hover {
    color: #A6A6A6;
    border: 1px solid #5c5c5c;
    border-radius: 4px;
  }
  .features-form .border-hover:hover {
    padding: 10px 11px;
    padding: 1px;
    border-radius: 4px;
  }
  .features-form .border-hover:hover input, .features-form .border-hover:hover textarea {
    padding: 10px 11px;
  }
  .features-form .border-hover:hover input::-moz-placeholder, .features-form .border-hover:hover textarea::-moz-placeholder {
    color: #fff;
  }
  .features-form .border-hover:hover input::placeholder, .features-form .border-hover:hover textarea::placeholder {
    color: #fff;
  }
  .features-form .button-secondary {
    font-size: 11.27px;
    font-weight: 600;
    line-height: 13.65px;
    padding: 11px;
    border-radius: 4px;
  }
  .footer {
    padding: 24px 0;
  }
  .footer-nav ul {
    flex-direction: column;
    align-items: center;
  }
  .footer-nav ul li {
    padding: 0;
    margin-right: 0px;
    margin-bottom: 4px;
  }
  .footer-nav ul li:last-of-type {
    margin-bottom: 0px;
  }
}/*# sourceMappingURL=style.css.map */