html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, button {
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
}

html {
  height: 100%;
}

body {
  height: 100%;
  font-family: "DMSans";
  line-height: 1.5;
  background-color: #0F0F0F;
  color: #FFFFFF;
}
body.active {
  overflow: hidden;
}

.container {
  max-width: 1325px;
  margin: 0 auto;
}

@media screen and (min-width: 992px) {
  .container--small {
    max-width: 887px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media screen and (max-width: 992px) {
  .container--small {
    max-width: 100%;
    margin: 0 auto;
    padding-right: 12px;
    padding-left: 12px;
  }
}
#wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
#wrapper main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  margin-top: 99px;
}
#wrapper footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 992px) {
  #wrapper main {
    margin-top: 65px;
  }
}
.triangle-left {
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
  background-color: #0F0F0F;
  height: 90px;
  position: absolute;
  width: 100%;
  top: -1px;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .triangle-left {
    height: 30px;
  }
}

.triangle-bottom {
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%);
  background-color: #0F0F0F;
  height: 100px;
  position: absolute;
  width: 100%;
  bottom: -1px;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .triangle-bottom {
    height: 30px;
  }
}

.triangle-right {
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: #0F0F0F;
  height: 100px;
  bottom: -1px;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .triangle-right {
    height: 30px;
  }
}

.bg-shadow-pink {
  width: 100%;
  background-color: transparent;
  -webkit-box-shadow: -19px 13px 300px 20px rgba(255, 0, 102, 0.68);
  box-shadow: -19px 13px 300px 20px rgba(255, 0, 102, 0.68);
  height: 1px;
  position: absolute;
  bottom: -3px;
  z-index: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 1295px;
}
.bg-shadow-green {
  width: 100%;
  height: 1px;
  -webkit-box-shadow: -19px 13px 300px 20px rgba(37, 227, 250, 0.68);
  box-shadow: -19px 13px 300px 20px rgba(37, 227, 250, 0.68);
  position: absolute;
  bottom: -2px;
  z-index: 0;
  max-width: 1295px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
h1,
.h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 110%;
}
h1 .pink,
.h1 .pink {
  color: #FF0066;
}

h2,
.h2 {
  font-weight: 700;
  font-size: 45px;
  line-height: 120%;
}
h2 .pink,
.h2 .pink {
  color: #FF0066;
}

h3,
.h3,
h4,
.h4 {
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
  color: #FF0066;
}
h3 .pink,
.h3 .pink,
h4 .pink,
.h4 .pink {
  color: #FF0066;
}
h3.pink,
.h3.pink,
h4.pink,
.h4.pink {
  color: #FF0066;
  text-transform: uppercase;
}

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

.text-underline {
  text-decoration: underline;
}

.text-underline-span {
  width: fit-content;
}

.text-underline-span span {
  background: linear-gradient(to left, #fff, #fff 100%) 0 90% repeat-x;
  background-size: 100% 3px;
}

p .pink {
  color: #FF0066;
  text-decoration: underline;
}
p .pink:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  h1,
  .h1 {
    font-size: 36px;
    line-height: 110%;
  }
  h2,
  .h2 {
    font-size: 30px;
  }
  h3,
  .h3 {
    font-size: 20px;
  }
}
:root {
  --text-color: #343434;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 60px;
  min-width: 208px;
  border: none;
  outline: none;
  color: #FFFFFF;
  position: relative;
  border-radius: 50px;
  background-clip: padding-box;
  border-radius: 50px;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  margin: 2px;
  text-align: center;
  width: fit-content;
}
.button span {
  border-radius: 50px;
  padding: 5px 32px;
  width: 100%;
  background-color: #0F0F0F;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
}
.button:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  margin: -2px;
  border-radius: inherit;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  background: linear-gradient(-273.4deg, #75EDFD 4.28%, #FF0066 93.81%);
}
.button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  margin: -2px;
  border-radius: inherit;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  opacity: 0;
  background: linear-gradient(273.4deg, #75EDFD 4.28%, #FF0066 93.81%);
}
.button:hover::before {
  opacity: 0;
}
.button:hover::after {
  opacity: 1;
}
.button:focus span {
  background: #270D17;
}
.button:focus::before {
  opacity: 1;
}
.button:focus::after {
  opacity: 0;
}
.button:active {
  color: #FFFFFF;
}
.button:active span {
  background: linear-gradient(273.4deg, #75EDFD 4.28%, #FF0066 93.81%);
}
.button:active::before {
  opacity: 0;
}
.button:active::after {
  opacity: 1;
}
.button:disabled, .button.disabled {
  color: #878787;
  cursor: default;
}
.button:disabled::after, .button.disabled::after {
  opacity: 0;
}
.button:disabled::before, .button.disabled::before {
  opacity: 0.5;
}
.button:disabled:active span, .button:disabled:focus span, .button.disabled:active span, .button.disabled:focus span {
  background: #0F0F0F;
}
.button.button-white {
  color: #0F0F0F;
  background-color: #FFFFFF;
}
.button.button-white:focus {
  background-color: #FFE5EF;
}

.button--twitter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 64px;
  max-width: 288px;
  width: 100%;
  outline: none;
  color: #FFFFFF;
  position: relative;
  border-radius: 50px;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  background-color: #1AB8EA;
  gap: 10px;
  padding: 19px 32px 19px 32px;
}
.button--twitter:hover, .button--twitter:focus {
  background-color: #FFFFFF;
  color: #1AB8EA;
}
.button--twitter:hover img, .button--twitter:focus img {
  -webkit-filter: brightness(0) saturate(100%) invert(66%) sepia(78%) saturate(2813%) hue-rotate(155deg) brightness(99%) contrast(86%);
  filter: brightness(0) saturate(100%) invert(66%) sepia(78%) saturate(2813%) hue-rotate(155deg) brightness(99%) contrast(86%);
}

.button-black {
  padding: 5px 10px;
  min-width: 130px;
  background: #202020;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  line-height: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50px;
  position: relative;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  z-index: 3;
  border: 1px solid #202020;
  overflow: hidden;
  cursor: pointer;
}
.button-black::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 0%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  z-index: -1;
}
.button-black:hover::before {
  width: 100%;
  background-color: #FFFFFF;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.button-black:hover {
  color: #0F0F0F;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.button-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 22px;
  height: 24px;
}
.button-icon:hover, .button-icon:focus {
  -webkit-filter: brightness(0) saturate(100%) invert(15%) sepia(82%) saturate(4682%) hue-rotate(327deg) brightness(101%) contrast(113%);
  filter: brightness(0) saturate(100%) invert(15%) sepia(82%) saturate(4682%) hue-rotate(327deg) brightness(101%) contrast(113%);
}

@font-face {
  font-family: "DMSans";
  src: url("../font/DMSans-Regular.woff2") format("woff2") url("../font/DMSans-Regular.woff") format("woff"), url("../font/DMSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DMSans";
  src: url("../font/DMSans-Medium.woff2") format("woff2"), url("../font/DMSans-Medium.woff") format("woff"), url("../font/DMSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DMSans";
  src: url("../font/DMSans-Bold.woff2") format("woff2"), url("../font/DMSans-Bold.woff") format("woff"), url("../font/DMSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aileron";
  src: url("../font/Aileron-Regular.woff2") format("woff2"), url("../font/Aileron-Regular.woff") format("woff"), url("../font/Aileron-Regular.otf") format("otf");
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  font-display: swap;
}
.header {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 999;
  top: 0;
}
.header.shrink .header__top {
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
  height: 0;
  overflow: hidden;
}
.header__top {
  background-color: #FFFFFF;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
  height: 34px;
  overflow: visible;
}
.header__top .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__top-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.header__top-info li {
  color: #767676;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.57;
}
.header__top-info li b {
  font-weight: 700;
  font-size: 17px;
  line-height: 2.18;
  color: #202020;
  padding-left: 5px;
}
.header__top-link .btn-black {
  min-height: 30px;
}
.header__bottom {
  background-color: #0F0F0F;
}
.header__bottom .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 65px;
  position: relative;
}
.header__bottom .logo {
  width: 120px;
}
.header__bottom .logo img {
  width: 100%;
}
.header__bottom nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__bottom nav > ul > .menu-item {
  padding: 15px 0;
  display: list-item;
}
.header__bottom nav > ul > .menu-item:not(:last-of-type) {
  margin-right: 20px;
}
.header__bottom nav > ul > .menu-item > a {
  padding: 5px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  position: relative;
}
.header__bottom nav > ul > .menu-item > a::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  background-color: #FF0066;
  height: 2px;
  width: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.header__bottom nav > ul > .menu-item > a:hover:before {
  width: 100%;
}
.header__bottom nav > ul .menu-item__title > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: #FF0066;
}
.header__bottom nav > ul .menu-item__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  height: 41px;
  width: 41px;
  margin-right: 12px;
  background: linear-gradient(93.62deg, #75EDFD 0.39%, #FF0066 98.02%);
}
.header__bottom nav > ul .menu-item__img img {
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.header__bottom nav > ul .menu-item.right > .sub-menu {
  right: 0;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.header__bottom nav > ul .menu-item.sub-menu__float > .sub-menu {
  width: 100%;
  -ms-grid-rows: 1fr 40px 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 40px 0px;
  padding-bottom: 10px;
}
.header__bottom nav > ul .menu-item.sub-menu__float > .sub-menu > li:first-of-type {
  -ms-grid-row-span: 1;
  grid-row: 1 span;
}
.header__bottom nav > ul .menu-item.sub-menu__float > .sub-menu > li {
  -ms-grid-row-span: 2;
  grid-row: 2 span;
}
.header__bottom nav > ul .menu-item .sub-menu__main {
  background-color: #181818;
  padding: 46px 31px;
  top: 100%;
  border-top: 1px solid #313637;
  min-width: 372px;
  max-width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: auto;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: thin;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.header__bottom nav > ul .menu-item .sub-menu__main::-webkit-scrollbar {
  width: 4px;
}
.header__bottom nav > ul .menu-item .sub-menu__main::-webkit-scrollbar-track {
  background: #0F0F0F;
}
.header__bottom nav > ul .menu-item .sub-menu__main::-webkit-scrollbar-thumb {
  background: #0F0F0F;
}
.header__bottom nav > ul .menu-item .sub-menu__main::-webkit-scrollbar-thumb:hover {
  background: #0F0F0F;
}
.header__bottom nav > ul .menu-item.sub-menu__coutry > .sub-menu {
  -ms-grid-columns: 1fr 2fr 1fr;
  grid-template-columns: 1fr 2fr 1fr;
}
.header__bottom nav > ul .menu-item.sub-menu__coutry > .sub-menu > li:nth-child(2) .sub-menu > li {
  width: 30%;
}
.header__bottom nav > ul .menu-item.sub-menu__coutry > .sub-menu > li:nth-child(3) .sub-menu > li {
  width: 100%;
}
.header__bottom nav > ul .menu-item.sub-menu__coutry > .sub-menu .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.header__bottom nav > ul .menu-item.sub-menu__coutry > .sub-menu .sub-menu > li {
  width: 45%;
}
.header__bottom nav > ul .menu-item > .sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
}
.header__bottom nav > ul .menu-item > .sub-menu .sub-menu {
  position: relative;
  margin-left: 53px;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.header__bottom nav > ul .menu-item > .sub-menu .sub-menu > li {
  font-size: 18px;
  line-height: 1.4;
}
.header__bottom nav > ul .menu-item > .sub-menu .sub-menu .sub-menu {
  margin: 10px 0 30px 18px;
}
.header__bottom nav > ul .menu-item > .sub-menu .sub-menu .sub-menu a {
  font-size: 16px;
}
.header__bottom nav > ul .menu-item__logo:nth-child(1) {
  margin-left: auto;
}
.header__bottom nav > ul .menu-item__logo:last-of-type {
  margin-right: auto;
}
.header__bottom nav > ul .menu-item-has-children.active > a:before,
.header__bottom nav > ul .menu-item-has-children:hover > a:before {
  width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.header__bottom nav > ul .menu-item-has-children.active .sub-menu,
.header__bottom nav > ul .menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0s;
  transition: all 0s;
  pointer-events: all;
}
.header .menu-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 34.5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 29px;
  margin-left: 50px;
}
.header .menu-logo .menu-item {
  padding: 25px 0;
}
.header .menu-logo .menu-item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 22px;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
  position: relative;
}
.header .menu-logo .menu-item > a::before {
  content: "";
  position: absolute;
  bottom: -22px;
  left: -15px;
  background-color: #FF0066;
  height: 2px;
  width: 0;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
  z-index: 4;
}
.header .menu-logo .menu-item > a:hover:before {
  width: 52px;
}
.header .menu-logo .menu-item.menu-item-has-children.active .sub-menu, .header .menu-logo .menu-item.menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}
.header .menu-logo .menu-item.menu-item-has-children.active > a::before, .header .menu-logo .menu-item.menu-item-has-children:hover > a::before {
  width: 52px;
}
.header .menu-logo .sub-menu {
  visibility: hidden;
  margin-left: -15px;
  opacity: 0;
  position: absolute;
  background-color: #181818;
  top: 100%;
  padding: 20px 42px;
  height: 116px;
  border-top: 1px solid #313637;
}
.header .menu-logo .sub-menu .button {
  min-height: 64px;
  min-width: 179px;
}
.header .menu-logo .sub-menu .button span {
  height: 64px;
}
.header .menu-logo .sub-menu .title {
  margin-bottom: 10px;
  color: #FF0066;
}
.header .menu-logo .sub-menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
.header .mob__menu {
  display: none;
}
.header .translate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 20px;
  margin-left: 10px;
}
.header .account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #FF0066;
}
@media (max-width: 1300px) {
  .header .menu-logo {
    margin-left: 30px;
    margin-right: 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    gap: unset;
  }
}
@media (max-width: 1120px) {
  .header .header__bottom nav > ul > .menu-item:not(:last-of-type) {
    margin-right: 12px;
  }
  .header .menu-logo {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (max-width: 1024px) {
  .header .header__top {
    display: none;
  }
  .header__bottom nav > ul > .menu-item {
    display: none;
  }
  .header__bottom .menu-logo {
    display: none;
  }
  .header__bottom .container .logo {
    margin: 0 auto 0 16px;
  }
  .header .mob__menu {
    display: block;
  }
  .header .mob__menu .mob__menu__icon {
    position: relative;
  }
  .header .mob__menu .mob__menu__icon .mob__menu__icon-menu {
    opacity: 1;
  }
  .header .mob__menu .mob__menu__icon .mob__menu__icon-x {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 2px;
  }
  .header .mob__menu .mob__menu__icon.active .mob__menu__icon-menu {
    opacity: 0;
  }
  .header .mob__menu .mob__menu__icon.active .mob__menu__icon-x {
    opacity: 1;
  }
  .header .mob__menu .mob__menu__wrap {
    padding: 10px 15px 80px;
    max-width: 480px;
    width: 100%;
    max-height: calc(100vh - 50px);
    overflow-y: auto;
    position: absolute;
    left: -100%;
    top: 63px;
    background: #0F0F0F;
    -webkit-box-shadow: 0px 4px 45px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 45px rgba(0, 0, 0, 0.25);
  }
  .header .mob__menu .mob__menu__wrap ul:not(.sub-menu) > a {
    padding: 10px 0 10px 0px;
  }
  .header .mob__menu .mob__menu__wrap ul:not(.sub-menu) > .menu-item-has-children.active > a span {
    color: #FF0066;
  }
  .header .mob__menu .mob__menu__wrap ul li a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color3);
  }
  .header .mob__menu .mob__menu__wrap ul li a span {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.38;
  }
  .header .mob__menu .mob__menu__wrap ul li a:hover {
    color: var(--background-2);
  }
  .header .mob__menu .mob__menu__wrap .sub-menu {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
  }
  .header .mob__menu .mob__menu__wrap .sub-menu .menu-item a {
    padding: 10px 15px 10px 0px;
  }
  .header .mob__menu .mob__menu__wrap .sub-menu.active {
    height: unset;
    opacity: 1;
    visibility: visible;
    overflow: visible;
  }
  .header .mob__menu .mob__menu__wrap .sub-menu.active .sub-menu {
    height: unset;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    margin-left: 50px;
  }
  .header .mob__menu .mob__menu__wrap .sub-menu.active .sub-menu .menu-item:first-of-type > a {
    padding-top: 0;
  }
  .header .mob__menu .mob__menu__wrap .sub-menu.active .sub-menu .menu-item a {
    padding: 5px 10px 5px 0;
  }
  .header .mob__menu .mob__menu__wrap .sub-menu.active .sub-menu .menu-item a span {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
  }
  .header .mob__menu .mob__menu__wrap .sub-menu.active .menu-item-has-children::after {
    display: none;
  }
  .header .mob__menu .mob__menu__wrap .sub-menu__coutry > .sub-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .header .mob__menu .mob__menu__wrap .sub-menu__coutry > .sub-menu > .menu-item-has-children {
    margin-bottom: 30px;
  }
  .header .mob__menu .mob__menu__wrap .sub-menu__coutry .sub-menu .sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 10px;
  }
  .header .mob__menu .mob__menu__wrap .sub-menu__coutry .sub-menu .sub-menu > *:nth-child(2) a {
    padding-top: 0 !important;
  }
  .header .mob__menu .mob__menu__wrap .sub-menu__coutry .sub-menu .sub-menu > * {
    width: 45%;
  }
  .header .mob__menu .mob__menu__wrap .sub-menu__float > .sub-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .header .mob__menu .mob__menu__wrap .sub-menu__float > .sub-menu .sub-menu {
    margin-bottom: 15px;
  }
  .header .mob__menu .mob__menu__wrap .sub-menu__float > .sub-menu .sub-menu .sub-menu {
    margin-left: 20px;
  }
  .header .mob__menu .mob__menu__wrap .sub-menu__float > .sub-menu .sub-menu > li:first-of-type > a {
    padding-top: 0px;
  }
  .header .mob__menu .mob__menu__wrap .sub-menu__float > .sub-menu .sub-menu .menu-item a {
    padding: 10px 15px 10px 0px !important;
  }
  .header .mob__menu .mob__menu__wrap > ul > li.active > .sub-menu.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header .mob__menu .mob__menu__wrap > ul > li.active > .sub-menu.active > .menu-item > a {
    color: #FF0066;
    text-transform: uppercase;
    grid-gap: 9px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 41px 9px 1fr;
    grid-template-columns: 41px 1fr;
    padding-bottom: 0px;
    padding-top: 0;
  }
  .header .mob__menu .mob__menu__wrap > ul > li.active > .sub-menu.active > .menu-item > a span {
    font-weight: 700;
    font-size: 12px;
    line-height: 1.2;
  }
  .header .mob__menu .mob__menu__wrap > ul > li.active > .sub-menu.active .menu-item__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    height: 41px;
    width: 41px;
    background: linear-gradient(93.62deg, #75EDFD 0.39%, #FF0066 98.02%);
  }
  .header .mob__menu .mob__menu__wrap > ul > li.active > .sub-menu.active .menu-item__img img {
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .header .mob__menu .mob__menu__wrap .menu-item-has-children {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .header .mob__menu .mob__menu__wrap .menu-item-has-children::after {
    position: absolute;
    right: 0;
    content: url(../images/icon/add.svg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    height: 24px;
    width: 24px;
    line-height: 0;
    top: 10px;
    cursor: pointer;
  }
  .header .mob__menu .mob__menu__wrap .menu-item-has-children.active {
    border-bottom: none;
  }
  .header .mob__menu .mob__menu__wrap .menu-item-has-children.active > li > a {
    color: #FF0066;
  }
  .header .mob__menu .mob__menu__wrap .menu-item-has-children.active::after {
    content: url(../images/icon/minus.svg);
  }
  .header .mob__menu .mob__menu__wrap .menu-item-has-children a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    margin-right: 30px;
    margin-right: auto;
  }
  .header .mob__menu .mob__menu__wrap .menu-item-has-children a span {
    width: 100%;
    padding-right: 7px;
  }
  .header .mob__menu .mob__menu__wrap.active {
    left: 0px;
  }
}

.footer {
  border-top: 1px solid #262626;
  background-color: #0F0F0F;
  padding-top: 41px;
}
.footer__bottom {
  border-top: 1px solid #262626;
  text-align: center;
  padding: 14px 0;
}
.footer__bottom small {
  font-size: 12px;
  line-height: 1.2;
  color: #878787;
}
.footer__links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 70px 1fr 70px 1fr 70px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-bottom: 45px;
  grid-gap: 70px;
}
.footer .link__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.footer .link__list:nth-child(1) h3:last-of-type, .footer .link__list:nth-child(1) .h3:last-of-type, .footer .link__list:nth-child(2) h3:last-of-type, .footer .link__list:nth-child(2) .h3:last-of-type {
  margin-top: auto;
  margin-bottom: 75px;
}
.footer .link__list h3.link__list-without {
  margin: 0 0 12px 0 !important;
}
.footer .link__list h3, .footer .link__list .h3 {
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}
.footer .link__list ul {
  margin-bottom: 22px;
}
.footer .link__list li {
  font-size: 12px;
  line-height: 1.83;
}
.footer .link__list li a:hover {
  text-decoration: underline;
}
.footer .link__list li a {
  max-width: 217px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.footer .link__list ul .link__list-title:first-of-type {
  margin-top: 29px;
}
.footer .link__list ul .link__list-title {
  margin-top: 22px;
}
.footer .menu-logo {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 35px 35px 35px 35px 35px;
  grid-template-columns: repeat(3, 35px);
  grid-gap: 35px;
}
.footer .menu-logo__item {
  height: 30px;
}
.footer .menu-logo__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer .menu-logo .logo-chrome {
  width: 29px;
}
.footer .menu-logo .logo-eg {
  width: 30px;
}
.footer .menu-logo .logo-firefox {
  width: 28px;
}
.footer .menu-logo .logo-mic {
  width: 30px;
}
.footer .menu-logo .logo-android {
  width: 25px;
}
.footer .menu-logo .logo-apple {
  width: 24px;
}
.footer .translate {
  margin-bottom: 20px;
}
.footer .translate-item {
  max-width: 212px;
}
.footer .flags h4 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.footer .flags .flags__container {
  grid-gap: 2px 6px;
}
.footer .flags .flags__group:not(:last-of-type) {
  margin-bottom: 17px;
}
.footer .flags .flag {
  padding-top: 0;
}
.footer .flags .flag span {
  margin-top: -3px;
}
@media screen and (max-width: 1190px) {
  .footer__links {
    grid-gap: 40px;
  }
  .footer .link__list li a {
    max-width: 180px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__links {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 45px;
    grid-gap: 10px 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer__links {
    grid-gap: 10px 20px;
  }
  .footer__links .link__list li {
    font-size: 10px;
    line-height: 2.2;
  }
  .footer__links .link__list:nth-child(3) {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .footer__links .link__list:nth-child(3) > * {
    width: 100%;
  }
  .footer__links .link__list .link__list {
    width: 50%;
  }
  .footer .translate.translate--full {
    max-width: 100%;
  }
}
@media screen and (max-width: 510px) {
  .footer__links {
    -ms-grid-columns: 175px 20px 160px;
    grid-template-columns: 175px 160px;
  }
  .footer__links .link__list a {
    max-width: 145px;
  }
  .footer__links .link__list:nth-child(2) h3:last-of-type, .footer__links .link__list:nth-child(2) .h3:last-of-type {
    margin-left: auto;
    margin-right: auto;
  }
  .footer__links .link__list:nth-child(1) h3:last-of-type, .footer__links .link__list:nth-child(1) .h3:last-of-type, .footer__links .link__list:nth-child(2) h3:last-of-type, .footer__links .link__list:nth-child(2) .h3:last-of-type {
    margin-top: auto;
    margin-bottom: 12px;
  }
  .footer__links .link__list:nth-child(4) {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}

.advantages {
  padding-bottom: 200px;
  position: relative;
  overflow: hidden;
  padding-top: 115px;
}
.advantages h3, .advantages p {
  color: #FFFFFF;
}
.advantages__title {
  margin-bottom: 67px;
  max-width: 984px;
}
.advantages__title p {
  margin-top: 20px;
  font-size: 18px;
}
.advantages-item {
  border-bottom: 1px solid #313536;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 25px 0 24px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 10px 307px 10px 1.5fr;
  grid-template-columns: 2fr 307px 1.5fr;
  grid-gap: 10px;
}
.advantages-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 28px;
  padding-right: 10px;
}
.advantages-item__title h3 {
  margin-top: 5px;
}
.advantages-item__img {
  width: 65px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.advantages-item__img img {
  -o-object-fit: contain;
  object-fit: contain;
}
.advantages-item p {
  font-size: 20px;
  line-height: 1.4;
}
.advantages-big .advantages__title {
  max-width: 1000px;
}
.advantages-big .advantages-item {
  -ms-grid-columns: 1fr 10px 2fr 10px 3fr;
  grid-template-columns: 1fr 2fr 3fr;
}
.advantages-gaming .advantages-item, .advantages-business .advantages-item {
  -ms-grid-columns: 1fr 10px 1fr 10px 2fr;
  grid-template-columns: 1fr 1fr 2fr;
}
@media screen and (max-width: 768px) {
  .advantages-gaming h2, .advantages-business h2 {
    max-width: 355px;
    margin-left: auto;
    margin-right: auto;
  }
}
.advantages-adblocker .advantages__title {
  max-width: 1000px;
}
.advantages-adblocker .advantages-item {
  -ms-grid-columns: 1fr 10px 2fr 10px 3fr;
  grid-template-columns: 1fr 2fr 3fr;
}
.advantages-adblocker .advantages-item p {
  font-size: 22px;
}
.advantages-adblocker .advantages__bottom, .advantages-hotspot .advantages__bottom {
  margin-top: 120px;
  max-width: 100%;
}
.advantages-adblocker .advantages__bottom p, .advantages-hotspot .advantages__bottom p {
  font-size: 22px;
  max-width: 785px;
  margin: 0 auto;
}
.advantages-hotspot .advantages-item {
  -ms-grid-columns: 1fr 40px 5fr;
  grid-template-columns: 1fr 5fr;
  grid-gap: 40px;
}
.advantages-hotspot .advantages-item__title {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 65px 38px auto;
  grid-template-columns: 65px auto;
  grid-gap: 38px;
}
.advantages-hotspot .advantages__bottom p {
  font-size: 24px;
}
.advantages-hotspot .advantages__bottom .advantages__buttons {
  gap: 25px;
}
.advantages-hotspot .advantages__bottom .advantages__buttons .button {
  max-width: 351px;
}
.advantages-hotspot .advantages__bottom .advantages__buttons .button span {
  height: auto;
  min-height: 60px;
  text-align: center;
  padding: 15px 25px;
}
.advantages-hotspot .advantages__bottom .advantages__buttons .button img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 20px;
  -o-object-position: top;
  object-position: top;
  margin-bottom: auto;
  padding-top: 4px;
}
.advantages__bottom {
  max-width: 960px;
  margin: 77px auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 48px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.advantages__bottom p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
}
.advantages .slick-dots {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0px;
}
.advantages .slick-dots li {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
  padding-top: 3px;
}
.advantages .slick-dots li button {
  background: #4E4E4E;
  color: transparent;
  font-size: 1px;
  line-height: 0px;
  height: 2px;
  width: 45px;
  margin-left: 5px;
  margin-right: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.advantages .slick-dots li.slick-active button {
  background: #FF0066;
}
.advantages .slick-dots li:hover button {
  background: #FF0066;
}
.advantages__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 25px 18px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.advantages__buttons .button img {
  margin-right: 10px;
}
.advantages-anonymous-browsing {
  padding: 150px 0;
}
.advantages-anonymous-browsing .advantages-item {
  -ms-grid-columns: 1fr 10px 2fr 10px 3fr;
  grid-template-columns: 1fr 2fr 3fr;
}
.advantages-anonymous-browsing .advantages__title {
  margin: 0 auto 67px auto;
  text-align: center;
}
.advantages-anonymous-browsing .advantages__title p {
  max-width: 636px;
  margin: 20px auto 0 auto;
}
.advantages .bg-shadow-pink {
  z-index: 1;
}
.advantages .bg-shadow-green {
  top: -1px;
  z-index: 1;
}
.advantages .triangle-right,
.advantages .triangle-left {
  z-index: 2;
}
.advantages + .info-section {
  padding-top: 50px;
}
@media screen and (max-width: 993px) {
  .advantages-adblocker .advantages__title {
    margin-bottom: 28px;
  }
  .advantages-adblocker h2 {
    text-align: center;
  }
  .advantages-adblocker .advantages-item {
    -ms-grid-columns: 0.5fr 10px 2fr 10px 3fr;
    grid-template-columns: 0.5fr 2fr 3fr;
  }
  .advantages-adblocker .advantages-item p {
    font-size: 16px;
  }
  .advantages-adblocker .advantages__bottom, .advantages-hotspot .advantages__bottom {
    max-width: 785px;
  }
  .advantages-adblocker .advantages__bottom p, .advantages-hotspot .advantages__bottom p {
    font-size: 20px;
  }
  .advantages-anonymous-browsing {
    padding: 100px 0;
  }
  .advantages-anonymous-browsing .advantages-item {
    -ms-grid-columns: 0.5fr 10px 2fr 10px 3fr;
    grid-template-columns: 0.5fr 2fr 3fr;
  }
  .advantages-anonymous-browsing .advantages-item p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .advantages {
    padding-bottom: 55px;
    padding-top: 70px;
  }
  .advantages__title {
    margin-bottom: 15px;
    padding-right: 0;
  }
  .advantages__title h2, .advantages__title p {
    text-align: center;
  }
  .advantages-item {
    border-bottom: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .advantages-item .h3 {
    display: none;
  }
  .advantages-item__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 17px;
    gap: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .advantages-item__title h3 {
    margin-top: 0;
    text-align: center;
  }
  .advantages-item p {
    text-align: center;
    max-width: 353px;
    margin: 0 auto;
    font-size: 16px;
  }
  .advantages-gaming .advantages-item__title {
    grid-gap: 16px;
    margin-bottom: 13px;
  }
  .advantages-anonymous-browsing .advantages__title {
    margin-bottom: 40px;
  }
  .advantages-anonymous-browsing .advantages-item {
    height: auto;
  }
  .advantages-adblocker .advantages-item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 0;
    margin-bottom: 40px;
    grid-gap: 15px;
  }
  .advantages-adblocker .advantages-item__title {
    margin-bottom: 0;
  }
  .advantages-adblocker h2 {
    text-align: center;
  }
  .advantages-hotspot .advantages-item {
    -ms-grid-columns: 210px 40px 1fr;
    grid-template-columns: 210px 1fr;
    grid-gap: 40px;
  }
  .advantages-hotspot .advantages-item__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .advantages-hotspot .advantages-item h3 {
    max-width: 70%;
  }
  .advantages-hotspot .advantages__buttons span {
    font-size: 20px;
  }
  .advantages__bottom {
    margin-top: 80px;
    max-width: 100%;
    grid-gap: 40px;
  }
  .advantages__bottom p {
    font-size: 16px;
  }
  .advantages__buttons .button {
    font-size: 16px;
    font-weight: 400;
    margin-top: 0;
  }
  .advantages__buttons .button span {
    padding: 5px 28px;
  }
}

.download-section {
  position: relative;
  padding: 150px 0 143px 0;
  overflow: hidden;
}
.download-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.download-section h2 {
  margin-bottom: 30px;
}
.download-section p {
  margin-bottom: 39px;
  max-width: 552px;
  text-align: center;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.3;
}
.download-section .bg-shadow-green {
  top: 0;
}
@media screen and (max-width: 768px) {
  .download-section {
    padding: 100px 0;
  }
}
@media screen and (max-width: 500px) {
  .download-section h2 {
    max-width: 290px;
  }
  .download-section p {
    font-size: 16px;
  }
}

.features-section {
  padding: 250px 0 100px 0;
  position: relative;
  overflow: hidden;
}
.features-section__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
.features-section__col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.features-section .container {
  position: relative;
}
.features-section h2 {
  text-align: center;
  position: absolute;
  top: -90px;
  width: 100%;
  max-width: 300px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.features-section-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 307px;
  height: 100%;
  margin: 0 auto 40px auto;
}
.features-section-item__big {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  max-width: 373px;
  margin: 10px auto auto auto;
}
.features-section-item__big img {
  position: relative;
  width: 100%;
}
.features-section-item__img {
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 10px;
}
.features-section-item__img img {
  -o-object-fit: contain;
  object-fit: contain;
}
.features-section-item h3 {
  color: #FFFFFF;
  margin-bottom: 10px;
  text-align: center;
}
.features-section-item__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
}
.features-section__button {
  position: relative;
}
.features-section .button {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 30px;
}
.features-section .bg-shadow-green {
  top: 0px;
}
.features-section .bg-shadow-pink,
.features-section .triangle-right {
  display: none;
}
@media (max-width: 768px) {
  .features-section {
    padding: 50px 0 100px 0;
  }
  .features-section h2 {
    position: static;
    -webkit-transform: none;
    transform: none;
    margin: 0 auto 30px auto;
  }
  .features-section__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .features-section__container .features-item {
    margin: 0;
    max-width: 100%;
    margin-bottom: 35px;
  }
  .features-section__container .features-item__text {
    font-size: 16px;
    line-height: 1.4;
    max-width: 350px;
  }
  .features-section__container .features-item__big {
    max-width: 306px;
    margin: 0 auto 30px auto;
  }
  .features-section__container .features-item__big img {
    position: static;
  }
  .features-section .features-section__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .features-section .button {
    position: relative;
    bottom: 0;
    -webkit-transform: none;
    transform: none;
    left: 0;
    min-width: 208px;
    margin: 0 auto;
  }
  .features-section .button span {
    background-color: #1f0f15;
  }
  .features-section .bg-shadow-pink {
    display: block;
  }
  .features-section .bg-shadow-green {
    top: 0px;
  }
  .features-section .triangle-right {
    bottom: 0;
    display: block;
  }
}

.flags {
  color: #FFFFFF;
}
.flags .flags__group h4 {
  margin-bottom: 15px;
}
.flags .flags__group .flag:hover {
  background-color: #FF0066;
}
.flags__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 36px 19px 36px 19px 36px 19px 36px 19px 36px 19px 36px 19px 36px 19px 36px;
  grid-template-columns: repeat(8, 36px);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  grid-gap: 5px 19px;
}
.flags--small .flag::before {
  -webkit-transform: scale(0.5416);
  transform: scale(0.5416);
}

.flag {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 39px;
  padding-top: 3px;
  border-radius: 4px;
}
.flag::before {
  content: "";
  position: relative;
  background: url("../images/icon/flags-big-2.webp") no-repeat top left;
}
.flag span {
  font-family: "Aileron";
  font-weight: 400;
  font-size: 7px;
  line-height: 8px;
  margin-top: 3px;
  text-align: center;
}

.flag-al::before {
  width: 48px;
  height: 34px;
  background-position: -5px -5px;
}

.flag-ar::before {
  width: 48px;
  height: 34px;
  background-position: -63px -5px;
}

.flag-ast::before {
  width: 48px;
  height: 34px;
  background-position: -121px -5px;
}

.flag-aust::before {
  width: 48px;
  height: 34px;
  background-position: -179px -5px;
}

.flag-belg::before {
  width: 48px;
  height: 34px;
  background-position: -237px -5px;
}

.flag-belr::before {
  width: 48px;
  height: 34px;
  background-position: -295px -5px;
}

.flag-bol::before {
  width: 48px;
  height: 34px;
  background-position: -353px -5px;
}

.flag-br::before {
  width: 48px;
  height: 34px;
  background-position: -411px -5px;
}

.flag-bul::before {
  width: 48px;
  height: 34px;
  background-position: -469px -5px;
}

.flag-can::before {
  width: 48px;
  height: 34px;
  background-position: -527px -5px;
}

.flag-chl::before {
  width: 48px;
  height: 34px;
  background-position: -585px -5px;
}

.flag-col::before {
  width: 48px;
  height: 34px;
  background-position: -643px -5px;
}

.flag-chi::before {
  width: 48px;
  height: 34px;
  background-position: -701px -5px;
}

.flag-cosr::before {
  width: 48px;
  height: 34px;
  background-position: -759px -5px;
}

.flag-cro::before {
  width: 48px;
  height: 34px;
  background-position: -817px -5px;
}

.flag-cyp::before {
  width: 48px;
  height: 34px;
  background-position: -875px -5px;
}

.flag-czr::before {
  width: 48px;
  height: 34px;
  background-position: -933px -5px;
}

.flag-den::before {
  width: 48px;
  height: 34px;
  background-position: -991px -5px;
}

.flag-ecu::before {
  width: 48px;
  height: 34px;
  background-position: -1049px -5px;
}

.flag-eg::before {
  width: 48px;
  height: 34px;
  background-position: -1107px -5px;
}

.flag-es::before {
  width: 48px;
  height: 34px;
  background-position: -1165px -5px;
}

.flag-fin::before {
  width: 48px;
  height: 34px;
  background-position: -1223px -5px;
}

.flag-fr::before {
  width: 48px;
  height: 34px;
  background-position: -1281px -5px;
}

.flag-ger::before {
  width: 48px;
  height: 34px;
  background-position: -1339px -5px;
}

.flag-gu::before {
  width: 48px;
  height: 34px;
  background-position: -1397px -5px;
}

.flag-gree::before {
  width: 48px;
  height: 34px;
  background-position: -1455px -5px;
}

.flag-hk::before {
  width: 48px;
  height: 34px;
  background-position: -1513px -5px;
}

.flag-hon::before {
  width: 48px;
  height: 34px;
  background-position: -1571px -5px;
}

.flag-hun::before {
  width: 48px;
  height: 34px;
  background-position: -1629px -5px;
}

.flag-ice::before {
  width: 48px;
  height: 34px;
  background-position: -1687px -5px;
}

.flag-ind::before {
  width: 48px;
  height: 34px;
  background-position: -1745px -5px;
}

.flag-indo::before {
  width: 48px;
  height: 34px;
  background-position: -1803px -5px;
}

.flag-irl::before {
  width: 48px;
  height: 34px;
  background-position: -1861px -5px;
}

.flag-is::before {
  width: 48px;
  height: 34px;
  background-position: -1919px -5px;
}

.flag-kaz::before {
  width: 48px;
  height: 34px;
  background-position: -1977px -5px;
}

.flag-it::before {
  width: 48px;
  height: 34px;
  background-position: -2035px -5px;
}

.flag-kyr::before {
  width: 48px;
  height: 34px;
  background-position: -2093px -5px;
}

.flag-jap::before {
  width: 48px;
  height: 34px;
  background-position: -2151px -5px;
}

.flag-lat::before {
  width: 48px;
  height: 34px;
  background-position: -2209px -5px;
}

.flag-jor::before {
  width: 48px;
  height: 34px;
  background-position: -2267px -5px;
}

.flag-lit::before {
  width: 48px;
  height: 34px;
  background-position: -2325px -5px;
}

.flag-mal::before {
  width: 48px;
  height: 34px;
  background-position: -2383px -5px;
}

.flag-lux::before {
  width: 48px;
  height: 34px;
  background-position: -2441px -5px;
}

.flag-mex::before {
  width: 48px;
  height: 34px;
  background-position: -2499px -5px;
}

.flag-malt::before {
  width: 48px;
  height: 34px;
  background-position: -2557px -5px;
}

.flag-mon::before {
  width: 48px;
  height: 34px;
  background-position: -2615px -5px;
}

.flag-mr::before {
  width: 48px;
  height: 34px;
  background-position: -2673px -5px;
}

.flag-newz::before {
  width: 48px;
  height: 34px;
  background-position: -2731px -5px;
}

.flag-nic::before {
  width: 48px;
  height: 34px;
  background-position: -2789px -5px;
}

.flag-nor::before {
  width: 48px;
  height: 34px;
  background-position: -2847px -5px;
}

.flag-nl::before {
  width: 48px;
  height: 34px;
  background-position: -2905px -5px;
}

.flag-pak::before {
  width: 48px;
  height: 34px;
  background-position: -2963px -5px;
}

.flag-par::before {
  width: 48px;
  height: 34px;
  background-position: -3021px -5px;
}

.flag-per::before {
  width: 48px;
  height: 34px;
  background-position: -3079px -5px;
}

.flag-phil::before {
  width: 48px;
  height: 34px;
  background-position: -3137px -5px;
}

.flag-pan::before {
  width: 48px;
  height: 34px;
  background-position: -3195px -5px;
}

.flag-pol::before {
  width: 48px;
  height: 34px;
  background-position: -3253px -5px;
}

.flag-por::before {
  width: 48px;
  height: 34px;
  background-position: -3311px -5px;
}

.flag-puer::before {
  width: 48px;
  height: 34px;
  background-position: -3369px -5px;
}

.flag-qa::before {
  width: 48px;
  height: 34px;
  background-position: -3427px -5px;
}

.flag-rom::before {
  width: 48px;
  height: 34px;
  background-position: -3485px -5px;
}

.flag-ru::before {
  width: 48px;
  height: 34px;
  background-position: -3543px -5px;
}

.flag-sa::before {
  width: 48px;
  height: 34px;
  background-position: -3601px -5px;
}

.flag-saf::before {
  width: 48px;
  height: 34px;
  background-position: -3659px -5px;
}

.flag-ser::before {
  width: 48px;
  height: 34px;
  background-position: -3717px -5px;
}

.flag-sing::before {
  width: 48px;
  height: 34px;
  background-position: -3775px -5px;
}

.flag-slo::before {
  width: 48px;
  height: 34px;
  background-position: -3833px -5px;
}

.flag-skor::before {
  width: 48px;
  height: 34px;
  background-position: -3891px -5px;
}

.flag-slow::before {
  width: 48px;
  height: 34px;
  background-position: -3949px -5px;
}

.flag-swe::before {
  width: 48px;
  height: 34px;
  background-position: -4007px -5px;
}

.flag-spa::before {
  width: 48px;
  height: 34px;
  background-position: -4065px -5px;
}

.flag-tai::before {
  width: 48px;
  height: 34px;
  background-position: -4123px -5px;
}

.flag-swi::before {
  width: 48px;
  height: 34px;
  background-position: -4181px -5px;
}

.flag-thai::before {
  width: 48px;
  height: 34px;
  background-position: -4239px -5px;
}

.flag-tu::before {
  width: 48px;
  height: 34px;
  background-position: -4297px -5px;
}

.flag-uae::before {
  width: 48px;
  height: 34px;
  background-position: -4355px -5px;
}

.flag-ukr::before {
  width: 48px;
  height: 34px;
  background-position: -4413px -5px;
}

.flag-unk::before {
  width: 48px;
  height: 34px;
  background-position: -4471px -5px;
}

.flag-usa::before {
  width: 48px;
  height: 34px;
  background-position: -4529px -5px;
}

.flag-vie::before {
  width: 48px;
  height: 34px;
  background-position: -4587px -5px;
}

.flag-uru::before {
  width: 48px;
  height: 34px;
  background-position: -4645px -5px;
}

.flag-ven::before {
  width: 48px;
  height: 34px;
  background-position: -4703px -5px;
}

.flags-content {
  padding: 108px 0 40px 0;
  background-color: #0F0F0F;
}
.flags-content .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 29px 1fr;
  grid-template-columns: 300px 1fr;
  grid-gap: 29px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background: url("../images/section/bg/planet.svg") no-repeat left bottom;
  background-size: 60%;
}
.flags-content p {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
}
.flags-content .flags-content__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flags-content .button {
  min-width: 208px;
  margin-top: 34px;
}
.flags-content h2 {
  color: #FFFFFF;
  margin-bottom: 8px;
}
.flags-content .flags {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 30px;
  width: 100%;
}
.flags-content .flags__group:nth-child(1) {
  margin-bottom: 29px;
  -ms-grid-column-align: left;
  justify-self: left;
}
.flags-content .flags__group:nth-child(2) {
  -ms-grid-column-align: left;
  justify-self: left;
}
.flags-content .flags__group:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-column-align: end;
  justify-self: end;
}
@media screen and (max-width: 1200px) {
  .flags-content .container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .flags-content p {
    max-width: 400px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .flags-content .flags {
    grid-gap: 0 40px;
  }
  .flags-content .flags__group:nth-child(1), .flags-content .flags__group:nth-child(2) {
    justify-self: baseline;
  }
  .flags-content h2 {
    margin: 0 auto 26px auto;
  }
  .flags-content .button {
    margin: 34px auto 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .flags-content .flags__container {
    grid-gap: 5px 10px;
  }
  .flags-content .container {
    background: none;
  }
}
@media screen and (max-width: 992px) {
  .flags-content {
    padding-top: 56px;
  }
  .flags-content p {
    font-size: 20px;
  }
  .flags-content h2 {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .flags-content .flags {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .flags-content .flags__container {
    -ms-grid-columns: 30px 10px 30px 10px 30px 10px 30px 10px 30px 10px 30px 10px 30px 10px 30px;
    grid-template-columns: repeat(8, 30px);
  }
  .flags-content .flags__group {
    margin-bottom: 35px;
  }
  .flags-content .flags__group:nth-child(1), .flags-content .flags__group:nth-child(2) {
    -ms-grid-column-align: stretch;
    justify-self: stretch;
  }
  .flags-content .flags__group:nth-child(3) {
    grid-row: auto;
    grid-column: auto;
    -ms-grid-column-align: stretch;
    justify-self: stretch;
  }
  .flags-content .flags .flag span {
    display: none;
  }
}

.benefits {
  padding-bottom: 200px;
  position: relative;
  overflow: hidden;
}
.benefits h3, .benefits p {
  color: #FFFFFF;
}
.benefits-item {
  border-bottom: 1px solid #313536;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px 0 24px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 2fr;
  grid-template-columns: 1fr 1fr 2fr;
  grid-gap: 10px;
}
.benefits-item p {
  font-size: 20px;
}
.benefits-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 28px;
}
.benefits-item__img {
  width: 65px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.benefits-item__img img {
  -o-object-fit: contain;
  object-fit: contain;
}
.benefits .slick-dots {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0px;
}
.benefits .slick-dots li {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
  padding-top: 3px;
}
.benefits .slick-dots li button {
  background: #4E4E4E;
  color: transparent;
  font-size: 1px;
  line-height: 0px;
  height: 2px;
  width: 45px;
  margin-left: 5px;
  margin-right: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.benefits .slick-dots li.slick-active button {
  background: #FF0066;
}
.benefits .slick-dots li:hover button {
  background: #FF0066;
}
.benefits .bg-shadow-green {
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .benefits {
    padding-bottom: 55px;
  }
  .benefits-item {
    border-bottom: 0;
  }
  .benefits-item .h3 {
    display: none;
  }
  .benefits-item__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-template: 12px;
    margin-bottom: 17px;
    gap: 12px;
  }
  .benefits-item p {
    text-align: center;
    max-width: 353px;
    margin: 0 auto;
  }
}

.product-section {
  background-color: #0F0F0F;
  padding: 150px 0 90px 0;
  overflow: hidden;
}
.product-section h2 {
  margin-bottom: 22px;
  width: 100%;
}
.product-section h2,
.product-section h3 {
  color: #FFFFFF;
}
.product-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.product-section .container .button {
  margin: 84px auto 0 auto;
}
.product-section__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(auto, 308px) 23px auto 23px minmax(auto, 308px) 23px minmax(auto, 420px);
  grid-template-columns: minmax(auto, 308px) auto minmax(auto, 308px) minmax(auto, 420px);
  -ms-grid-rows: 368px 71px 359px;
  grid-template-rows: 368px 359px;
  grid-gap: 71px 23px;
  width: 100%;
}
.product-section__container > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.product-section__container > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.product-section__container > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.product-section__container > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
.product-section__container > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.product-section__container > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.product-section__container > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.product-section__container > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}
.product-section .product {
  padding: 40px 40px 19px 40px;
  background-color: #181818;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.product-section .product ul {
  max-width: 100%;
}
.product-section .product h3 {
  margin-bottom: 13px;
  position: relative;
  z-index: 3;
}
.product-section .product-img {
  position: absolute;
}
.product-section .product-img--mob {
  display: none;
}
.product-section .product > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #FF0066;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 3;
  max-width: 100%;
}
.product-section .product > ul li {
  line-height: 1.3;
  max-width: 100%;
}
.product-section .product > ul a {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3;
  color: #FF0066;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-section .product > ul a:hover {
  text-decoration: underline;
}
.product-section .product > ul ul:first-of-type {
  margin-bottom: 24px;
}
.product-section .product > ul ul a {
  font-size: 10px;
  line-height: 1.1;
}
.product-section .product > ul .btn-show-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  color: #FFFFFF;
  font-size: 10px;
  line-height: 1.3;
  gap: 7px;
  margin-top: 7px;
}
.product-section .product > ul .btn-show-more::after {
  content: "";
  position: relative;
  border: solid #FFFFFF;
  border-width: 1px 1px 0px 0px;
  top: -2px;
  width: 6px;
  height: 6px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  border-top-right-radius: 2px;
}
.product-section .product-1,
.product-section .product-5 {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.product-section .product-1 {
  padding-bottom: 65px;
}
.product-section .product-1 img {
  bottom: 0;
  right: -30px;
  width: 54%;
}
.product-section .product-1 h3 {
  max-width: 50%;
}
.product-section .product-1 > ul {
  max-width: 58%;
}
.product-section .product-2 img {
  top: -24px;
  right: 0px;
  left: -3px;
  max-width: 130%;
}
.product-section .product-3 {
  grid-row: 1/-1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-column: 4/5;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-top: 170px;
}
.product-section .product-3 img {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left center;
  object-position: left center;
}
.product-section .product-3 > ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.product-section .product-4 {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-top: 52px;
}
.product-section .product-4 h3 {
  margin-bottom: 3px;
}
.product-section .product-4 img {
  width: 87%;
  right: 0;
  bottom: 0px;
  left: auto;
}
.product-section .product-5 {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-top: 52px;
}
.product-section .product-5 img {
  bottom: 10px;
  right: -90px;
  width: 64%;
}
.product-section .product-5 > ul {
  max-width: 46%;
}
@media screen and (max-width: 768px) {
  .product-section {
    padding: 50px 0;
  }
  .product-section h2,
  .product-section .h2 {
    text-align: center;
  }
  .product-section__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 22px;
  }
  .product-section .product {
    padding: 35px 24px 0px 40px;
  }
  .product-section .product img {
    position: relative;
  }
  .product-section .product-img--mob {
    display: block;
  }
  .product-section .product-1 img {
    right: 0;
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
  }
  .product-section .product-1 > ul {
    margin-bottom: 31px;
    max-width: 100%;
  }
  .product-section .product-1 .product-img {
    display: none;
  }
  .product-section .product-1 h3 {
    max-width: 100%;
  }
  .product-section .product-2 {
    padding-bottom: 33%;
  }
  .product-section .product-2 img {
    top: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -25px;
    width: 100%;
    max-width: 395px;
    position: absolute;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .product-section .product-3 {
    padding-bottom: 68px;
  }
  .product-section .product-3 .product-img {
    display: none;
  }
  .product-section .product-3 img {
    position: absolute;
    width: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 100% 100%;
    object-position: 100% 100%;
  }
  .product-section .product-3 > ul ul:first-of-type {
    margin-bottom: 10px;
  }
  .product-section .product-3 > ul {
    margin-bottom: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .product-section .product-3 > ul ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3px 16px;
  }
  .product-section .product-4 {
    padding-right: 45px;
    padding-bottom: 30px;
  }
  .product-section .product-4 img {
    width: 90%;
    left: 50%;
    bottom: -30px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .product-section .product-5 img {
    bottom: -10px;
    right: 0;
    margin: 15px auto 0 auto;
    width: 55%;
  }
  .product-section .product-5 > ul {
    max-width: 100%;
  }
  .product-section .container .button {
    margin-top: 40px;
  }
}

.members-slider {
  margin-top: 41px;
  width: auto;
  max-width: 100%;
}
.members-slider .members-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.members-slider .members-slide p {
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.85;
  color: #FFFFFF;
  margin: 0 auto 37px auto;
  margin-bottom: 37px;
  max-width: 795px;
}
.members-slider .members-slide__img {
  width: 93px;
  height: 93px;
  margin-bottom: 20px;
}
.members-slider .members-slide__img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.members-slider .members-slide__name {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #FF0066;
}
.members-slider .slick-dots {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 58px;
}
.members-slider .slick-dots li {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
  padding-top: 3px;
}
.members-slider .slick-dots li button {
  background: #4E4E4E;
  color: transparent;
  font-size: 1px;
  line-height: 0px;
  height: 2px;
  width: 45px;
  margin-left: 5px;
  margin-right: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.members-slider .slick-dots li.slick-active button {
  background: #FF0066;
}
.members-slider .slick-dots li:hover button {
  background: #FF0066;
}

@media (max-width: 992px) {
  .members-slider {
    width: 100%;
    margin-top: 24px;
  }
  .members-slider .members-slide p {
    font-size: 16px;
    line-height: 1.4;
  }
}
.members {
  padding: 100px 0;
  background-color: #0F0F0F;
  position: relative;
  z-index: 1;
}
.members h2 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .members {
    padding: 70px 0;
  }
}

.logos {
  position: relative;
  padding: 100px 0 200px 0;
  background-color: #0F0F0F;
}
.logos h2 {
  margin-bottom: 47px;
}
.logos .container {
  z-index: 3;
  position: relative;
}
.logos .logos-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
}
.logos .logos-slide p {
  max-width: 320px;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.3;
  min-height: 78px;
  margin-bottom: 10px;
  text-align: center;
}
.logos .logos-slide__img {
  width: 202px;
  height: 51px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 21px;
}
.logos .logos-slide__img img {
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.logos .logos-slide__date {
  font-size: 12px;
  line-height: 120%;
  color: #6C6C6C;
}
.logos .slick-dots {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 58px;
}
.logos .slick-dots li {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
  padding-top: 3px;
}
.logos .slick-dots li button {
  background: #4E4E4E;
  color: transparent;
  font-size: 1px;
  line-height: 0px;
  height: 2px;
  width: 45px;
  margin-left: 5px;
  margin-right: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 5px;
  cursor: pointer;
}
.logos .slick-dots li.slick-active button {
  background: #FF0066;
}
.logos .slick-dots li:hover button {
  background: #FF0066;
}
.logos .bg-shadow-pink {
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .logos {
    padding: 70px 0 100px;
  }
  .logos h2,
  .logos .h2 {
    width: 100%;
    text-align: center;
  }
  .logos .slick-dots {
    margin-top: 20px;
  }
  .logos .slick-dots li {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 10px;
    padding-top: 3px;
  }
  .logos .slick-dots li button {
    width: 35px;
    background: #FFB6D3;
  }
}

.translate.translate--full {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 212px;
}
.translate.translate--full .flag {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 18px;
  background-color: #FFFFFF;
  border-radius: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.83;
  color: #333333;
  padding-top: 0;
  min-height: 36px;
  padding: 0 15px 0 10px;
}
.translate.translate--full .flag::before {
  border-radius: 50%;
  width: 34px;
  height: 34px;
  -webkit-transform: scale(0.5416);
  transform: scale(0.5416);
}
.translate.translate--full .flag.flag-unk::before {
  background-position: -4478px -5px;
}
.translate.translate--full .flag.flag-fr::before {
  background-position: -1288px -5px;
}
.translate .dropdown__menu ul {
  margin-bottom: 0;
}
.translate .dropdown__menu .flag:hover {
  background-color: #FF0066;
  color: #FFFFFF;
}
.translate.translate-dropdown {
  position: relative;
}
.translate.translate-dropdown .dropdown__menu {
  position: absolute;
  top: 100%;
  width: 45px;
  display: none;
  left: -14px;
  background-color: #ffffff;
  z-index: 5;
  max-height: 400px;
  overflow-y: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.translate.translate-dropdown .dropdown__menu li {
  width: 100%;
}
.translate.translate-dropdown .dropdown__menu a {
  min-height: auto;
  display: block;
  margin: 0 auto;
  padding-top: 0;
  cursor: pointer;
  width: 100%;
  padding: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 0;
}
.translate.translate-dropdown .dropdown__menu a:hover {
  background: #FF0066;
}
.translate.translate-dropdown .dropdown__menu a img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  display: block;
  max-width: 18px;
  margin: 0 auto;
}
.translate.translate-dropdown:hover .dropdown__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero {
  background-color: #0F0F0F;
  position: relative;
  overflow: hidden;
  min-height: 680px;
}
.hero__img {
  position: relative;
  text-align: center;
  z-index: 1;
  margin: 140px 0 160px 0;
}
.hero__img img {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100%;
  margin-left: auto;
}
.hero__img-desktop {
  display: block;
}
.hero__img-mob {
  display: none;
}
.hero__img.hero__img--almost {
  display: none;
}
.hero-almost-done {
  height: auto !important;
  padding-bottom: 100px;
}
.hero-almost-done .hero__text {
  position: static;
}
.hero-almost-done .container {
  display: flex;
}
.page-template-thank-you-almost-done .info-block {
  margin-bottom: 0;
}
.page-template-thank-you-almost-done .download-section h2 {
  font-size: 60px;
}
.page-template-thank-you-almost-done .info-block__text {
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .hero-almost-done {
    padding-bottom: 80px;
  }
  .page-template-thank-you-almost-done .step-by-step__item-text p {
    font-size: 16px;
  }
  .page-template-thank-you-almost-done .info-block__text p {
    font-size: 20px !important;
  }
  .page-template-thank-you-almost-done .container {
    padding: 0 8px;
  }
  .page-template-thank-you-almost-done .download-section h2 {
    font-size: 36px;
    max-width: 360px;
    margin-bottom: 60px;
  }
}
.page-template-thank-you-almost-done .info-block .container {
  min-height: auto;
}
.hero-almost-done h1 {
  margin-top: 60px;
}
.hero.hero-uninstall h1 {
  margin-top: 90px;
}
@media screen and (max-width: 991px) {
  .hero-uninstall .hero__text p {
    text-align: center !important;
  }
}
@media screen and (max-width: 1200px) {
  .page-template-thank-you-almost-done .step-by-step__text p {
    text-align: center;
  }
  .hero-almost-done .hero__text {
    align-items: center;
  }
  .hero-uninstall .row .hero__img img,
  .hero-almost-done .row .hero__img img {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-almost-done .hero__left {
    max-width: 100%;
  }
  .hero-uninstall .hero__left {
    order: 2;
    max-width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .hero-almost-done .row {
    display: none;
  }
  .hero-almost-done .hero__img--almost {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .hero-uninstall .hero__text .button {
    margin: 40px auto 0 auto;
  }
}
.hero__text {
  position: absolute;
  z-index: 4;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  left: 12px;
}
.hero__text ol li {
  list-style: number;
  margin-left: 15px;
}
.hero__text blockquote {
  margin: 0;
}
.hero__text blockquote p::before {
  content: '\201C';
}
.hero__text blockquote p::after {
  content: '\201D';
}
.hero .hero__block {
  background-color: #181818;
  border-radius: 10px;
  padding: 28px 23px 28px 56px;
  font-size: 24px;
}
.hero .hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 0;
}
.hero .hero-bg img {
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.hero__left {
  position: relative;
  max-width: 50%;
}
.hero h1,
.hero .h1 {
  margin-top: 150px;
}
.hero h1 + p,
.hero .h1 + p {
  margin-top: 10px;
}
.hero h1 + .button,
.hero .h1 + .button {
  margin-top: 57px;
}
.hero h1 + ul,
.hero .h1 + ul {
  margin-top: 15px;
}
.hero h4 {
  margin-top: 21px;
  text-transform: uppercase;
  font-size: 14px;
}
.hero p {
  max-width: 345px;
  font-size: 20px;
  line-height: 1.4;
  margin-top: 21px;
}
.hero p.hero-green {
  color: #1BFFC8;
  position: relative;
}
.hero p.hero-green::before {
  content: "";
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-block;
  top: 4px;
  margin-right: 9px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 2H5C3.34961 2 2 3.3501 2 5V19C2 20.6499 3.34961 22 5 22H19C20.6504 22 22 20.6499 22 19V5C22 3.3501 20.6504 2 19 2ZM16.46 10.21L11.46 15.21C11.2598 15.3999 11.0098 15.5 10.75 15.5C10.4902 15.5 10.2402 15.3999 10.04 15.21L7.54004 12.71C7.15039 12.3198 7.15039 11.6802 7.54004 11.29C7.92969 10.8999 8.57031 10.8999 8.95996 11.29L10.75 13.0898L15.04 8.79004C15.4297 8.3999 16.0703 8.3999 16.46 8.79004C16.8496 9.18018 16.8496 9.81982 16.46 10.21Z' fill='%231BFFC8'/%3E%3C/svg%3E%0A");
}
.hero .button {
  margin-top: 57px;
}
.hero ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.hero ul + .button {
  margin-top: 39px;
}
.hero ul li {
  position: relative;
  padding-left: 19px;
  font-size: 18px;
  line-height: 1.4;
}
.hero ul li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  background: linear-gradient(-273.4deg, #75EDFD 4.28%, #FF0066 93.81%);
  margin-right: 9px;
  left: 0;
  top: 9px;
}
.hero ul li::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  background: #0F0F0F;
  left: 2px;
  top: 11px;
}
.hero__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px 18px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero__buttons .button {
  margin: 0;
}
.hero__buttons .button img {
  margin-right: 10px;
}
.hero__table {
  width: 92%;
  max-width: 635px;
  margin-top: 15px;
}
.hero__table-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 13px 1fr;
  grid-template-columns: auto 1fr;
  grid-gap: 0 13px;
  font-size: 20px;
  line-height: 1.4;
  min-height: 48px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #313536;
  padding: 9px 0;
}
.hero__table-item:last-of-type .hero__table-value {
  font-weight: 700;
}
.hero__table-value {
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .hero__img img {
    max-width: 50%;
  }
}
@media screen and (max-width: 992px) {
  .hero {
    min-height: auto;
  }
  .hero__left {
    max-width: 100%;
  }
  .hero .hero__block {
    padding: 25px 38px;
    font-size: 14px;
  }
  .hero h1,
  .hero .h1 {
    margin: 70px auto 0 auto;
    text-align: center;
  }
  .hero h1 + p,
  .hero .h1 + p {
    margin-top: 15px;
  }
  .hero__text {
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    left: 0;
  }
  .hero__text p {
    text-align: center;
    font-size: 18px;
    line-height: 1.4;
  }
  .hero .button {
    margin-top: 34px;
  }
  .hero ul {
    gap: 15px;
  }
  .hero ul li {
    font-weight: 400;
    font-size: 16px;
  }
  .hero ul li::before {
    top: 7px;
  }
  .hero ul li::after {
    top: 9px;
  }
  .hero .hero__img {
    margin: 55px 0 75px 0;
  }
  .hero .hero__img img {
    margin: 0 auto;
    max-width: 100%;
  }
  .hero .hero__img-desktop {
    display: none;
  }
  .hero .hero__img-mob {
    width: 100%;
    display: block;
  }
  .hero__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 18px;
  }
  .hero__buttons .button {
    font-size: 16px;
    font-weight: 400;
    margin-top: 0;
  }
  .hero__buttons .button span {
    padding: 5px 28px;
  }
  .hero__table {
    width: 100%;
  }
  .hero__table-item {
    font-size: 16px;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .hero__table-value {
    max-width: 213px;
    text-align: right;
  }
}

.hero-home .hero__img, .hero-business .hero__img {
  margin: 85px -40px 160px 0;
}
@media screen and (max-width: 1250px) {
  .hero-home .hero__img img, .hero-business .hero__img img {
    max-width: 50%;
  }
}
@media screen and (max-width: 993px) {
  .hero-home .hero__img, .hero-business .hero__img {
    margin: 40px -15px 50px 0;
  }
  .hero-home .hero__img img, .hero-business .hero__img img {
    max-width: 100%;
  }
}
.hero-about-us {
  position: relative;
}
.hero-about-us .hero__img {
  margin-left: -25%;
  margin-top: -20px;
}
.hero-about-us .hero__img-desktop {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 120%;
}
.hero-about-us .bg-shadow-pink,
.hero-about-us .triangle-right {
  display: none;
}
@media screen and (max-width: 993px) {
  .hero-about-us .bg-shadow-pink,
  .hero-about-us .triangle-right {
    display: block;
  }
  .hero-about-us .triangle-right {
    display: block;
    z-index: 3;
  }
  .hero-about-us .hero__img {
    margin: -47% -15px 0 -15px;
  }
}
.hero-free-iphone {
  min-height: 650px;
}
.hero-free-iphone .hero__img {
  margin: 40px 0 35px 0;
}
@media screen and (max-width: 768px) {
  .hero-free-iphone .hero__img {
    margin: 10px 0 -13px 0;
  }
}
.hero-glossary .hero__img {
  margin: 80px 0 160px 0;
}
@media screen and (max-width: 993px) {
  .hero-glossary h1 br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hero-glossary .hero__img {
    margin: 40px 0 60px 0;
    margin-right: -20px;
  }
}
.hero-locations .hero__img {
  margin: 130px 80px 0 0;
}
.hero-locations .container {
  position: relative;
}
.hero-locations .hero-bg {
  bottom: -175px;
}
.hero-locations .hero-bg img {
  -webkit-box-shadow: inset 0px -26px 40px 0px #0F0F0F;
  box-shadow: inset 0px -26px 40px 0px #0F0F0F;
  height: 421px;
  width: 1061px;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .hero-locations {
    min-height: auto;
  }
  .hero-locations .hero__img {
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 992px) {
  .hero-locations .hero__img {
    margin: 0;
  }
  .hero-locations .hero__left {
    margin-bottom: 60px;
  }
  .hero-locations h1 br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hero-locations .hero__img {
    margin: 30px 0 50px -45px;
  }
  .hero-locations .hero__img img {
    -webkit-transform: scale(1.07);
    transform: scale(1.07);
  }
  .hero-locations .hero-bg {
    bottom: -100px;
  }
}
.hero-single-country .container {
  position: relative;
}
.hero-single-country .hero__img {
  margin: 70px 70px 0px auto;
  min-height: 637px;
}
.hero-single-country h1 {
  margin: 100px 0 0 0;
}
.hero-single-country ul {
  gap: 22px;
}
.hero-single-country .button span {
  background-color: #180F12;
}
.hero-single-country .hero-bg {
  bottom: -45px;
}
.hero-single-country .hero-bg img {
  -webkit-box-shadow: inset 0px -26px 40px 0px #0F0F0F;
  box-shadow: inset 0px -26px 40px 0px #0F0F0F;
  height: 421px;
  width: 1061px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .hero-single-country h1 {
    margin-top: 80px;
    text-align: left;
  }
}
@media screen and (max-width: 992px) {
  .hero-single-country .hero__img {
    min-height: auto;
    margin: 0;
  }
  .hero-single-country .hero__text {
    max-width: 70%;
    margin: 0 auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .hero-single-country .hero__text .button {
    margin: 45px auto 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .hero-single-country .hero-bg {
    bottom: -200px;
    left: -440px;
  }
  .hero-single-country .hero-bg img {
    width: 765px;
    max-width: 765px;
  }
  .hero-single-country .hero__img {
    margin-left: -30px;
    margin-bottom: 40px;
  }
  .hero-single-country .hero__text {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .hero-single-country .hero__text h1 {
    margin-top: 65px;
  }
}
.hero-unblock-proxy h1 {
  max-width: 881px;
  text-align: center;
  margin-bottom: 38px;
}
.hero-unblock-proxy .hero__left {
  max-width: 100%;
}
.hero-unblock-proxy .hero__text {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero-unblock-proxy .hero__img {
  margin: 0 0 5px 0;
}
@media screen and (max-width: 1200px) {
  .hero-unblock-proxy .hero__img {
    margin: 150px 0 5px 0;
  }
  .hero-unblock-proxy .hero__img img {
    max-width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .hero-unblock-proxy .hero__img {
    margin: 20px -15px -4px -15px;
  }
  .hero-unblock-proxy .hero__text h1 {
    margin-top: 60px;
  }
}
.hero-extension-unblock h1 {
  max-width: 881px;
  text-align: center;
  margin-bottom: 38px;
}
.hero-extension-unblock .hero__left {
  max-width: 100%;
}
.hero-extension-unblock .hero__text {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.hero-extension-unblock .hero__img {
  margin: 0 0 5px 0;
}
.hero-extension-unblock .hero__img img {
  margin: 67px auto 15px auto;
}
.hero-extension-unblock + .articles {
  padding-bottom: 0;
}
.hero-extension-unblock + .articles + .promo + .text-img {
  padding-top: 0;
}
@media screen and (max-width: 1200px) {
  .hero-extension-unblock .hero__img {
    margin: 150px 0 5px 0;
  }
  .hero-extension-unblock .hero__img img {
    max-width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .hero-extension-unblock .hero__img {
    margin: 20px 0 -35px 0;
  }
  .hero-extension-unblock .hero__text h1 {
    margin-top: 60px;
  }
  .hero-extension-unblock + .articles + .promo .bg-map {
    padding-bottom: 0;
  }
  .hero-extension-unblock + .articles + .promo + .text-img {
    padding-top: 15px;
  }
}
.hero-laptop-vpn .hero__img {
  margin: 20px 0 -15px 0;
}
.hero-laptop-vpn .hero__img img {
  margin-right: -16%;
}
.hero-laptop-vpn .button span {
  background-color: #151011;
}
.hero-laptop-vpn .bg-shadow-pink {
  z-index: 1;
}
.hero-laptop-vpn .triangle-right {
  z-index: 2;
}
@media screen and (max-width: 1350px) {
  .hero-laptop-vpn .hero__img img {
    margin-top: 9%;
  }
}
@media screen and (max-width: 1200px) {
  .hero-laptop-vpn .hero__img img {
    max-width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .hero-laptop-vpn h1, .hero-laptop-vpn .h1 {
    text-align: left;
    margin: 70px 0 0 0;
  }
  .hero-laptop-vpn .button span {
    background-color: #151011;
  }
  .hero-laptop-vpn .hero__text {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .hero-laptop-vpn .hero__img {
    margin: 40px 0 30px 0;
  }
  .hero-laptop-vpn .hero__img img {
    -webkit-transform: scale(1.35);
    transform: scale(1.35);
    margin-top: 0;
    margin-right: 0;
  }
}
.hero-windows-vpn .hero__img {
  margin: 90px 0 140px 0;
}
.hero-windows-vpn h1, .hero-windows-vpn .h1 {
  margin-top: 140px;
}
@media screen and (max-width: 992px) {
  .hero-windows-vpn .hero__img {
    margin: 45px auto 90px auto;
  }
  .hero-windows-vpn h1, .hero-windows-vpn .h1 {
    max-width: 425px;
    text-align: left;
    margin: 70px 0 0 0;
  }
  .hero-windows-vpn .button span {
    background-color: #151011;
  }
  .hero-windows-vpn .hero__text {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.hero-android-vpn .hero__text {
  width: 513px;
}
.hero-android-vpn .hero__img {
  margin: 52px 0 0px 0;
}
@media screen and (max-width: 992px) {
  .hero-android-vpn .hero__text {
    margin: 0 auto;
    width: 100%;
  }
  .hero-android-vpn .hero__img {
    margin: 40px 0 0px 0;
  }
  .hero-android-vpn .hero__img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.hero-gaming-free {
  min-height: 660px;
}
.hero-gaming-free .hero__img {
  margin: 100px 0 40px 0;
}
.hero-gaming-free .hero__img img {
  -webkit-transform: scale(1.09);
  transform: scale(1.09);
  margin-right: -20px;
}
.hero-gaming-free .hero__text {
  width: 520px;
}
@media screen and (max-width: 1200px) {
  .hero-gaming-free h1 {
    margin-top: 60px;
  }
}
@media screen and (max-width: 992px) {
  .hero-gaming-free .hero__text {
    margin: 0 auto;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .hero-gaming-free {
    min-height: auto;
  }
  .hero-gaming-free .hero__img {
    margin: 60px -40px -10px 0;
  }
  .hero-gaming-free .hero__img img {
    -webkit-transform: none;
    transform: none;
    margin-bottom: 15px;
  }
  .hero-gaming-free .hero__text {
    width: 100%;
  }
}
.hero-single-game-tamplate {
  min-height: 660px;
}
.hero-single-game-tamplate .hero__img {
  margin: 70px 0 40px 0;
}
.hero-single-game-tamplate .hero__img img {
  -webkit-transform: scale(1.13);
  transform: scale(1.13);
  max-width: 50%;
}
.hero-single-game-tamplate .hero__text {
  width: 535px;
}
.hero-single-game-tamplate .hero__text p {
  max-width: 395px;
}
@media screen and (max-width: 1200px) {
  .hero-single-game-tamplate h1 {
    margin-top: 70px;
  }
}
@media screen and (max-width: 992px) {
  .hero-single-game-tamplate .hero__text {
    margin: 0 auto;
    width: 100%;
  }
  .hero-single-game-tamplate .hero__img img {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .hero-single-game-tamplate {
    min-height: auto;
  }
  .hero-single-game-tamplate .hero__img {
    margin: 40px 0 0 0;
  }
  .hero-single-game-tamplate .hero__img img {
    margin: 0 0 55px 5px;
    -webkit-transform: none;
    transform: none;
  }
  .hero-single-game-tamplate .hero__text {
    width: 100%;
  }
}
.hero-disney-plus {
  min-height: 585px;
}
.hero-disney-plus .hero__img {
  margin: 70px 0 40px 0;
}
.hero-disney-plus .hero__img img {
  max-width: 50%;
}
.hero-disney-plus .hero__text {
  width: 535px;
}
.hero-disney-plus .hero__text p {
  max-width: 94%;
}
@media screen and (max-width: 1200px) {
  .hero-disney-plus h1 {
    margin-top: 70px;
  }
}
@media screen and (max-width: 992px) {
  .hero-disney-plus .hero__text {
    margin: 0 auto;
    width: 100%;
  }
  .hero-disney-plus .hero__img img {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .hero-disney-plus {
    min-height: auto;
  }
  .hero-disney-plus .hero__img {
    margin: 20px 0 -50px 0;
  }
  .hero-disney-plus .hero__img img {
    margin: 0 0 55px 5px;
    -webkit-transform: none;
    transform: none;
  }
  .hero-disney-plus .hero__text {
    width: 100%;
  }
}
.hero-why-free {
  min-height: 660px;
}
.hero-why-free .hero__img {
  margin: 100px 0 40px 0;
}
.hero-why-free .hero__img img {
  -webkit-transform: scale(1.09);
  transform: scale(1.09);
}
@media screen and (max-width: 993px) {
  .hero-why-free h1 br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hero-why-free {
    min-height: auto;
  }
  .hero-why-free .hero__img {
    margin: 60px 0 0 0;
  }
}
.hero-unlimited-vpn {
  min-height: 640px;
}
.hero-unlimited-vpn .hero__img {
  margin: 160px 0 0 0;
}
@media screen and (max-width: 768px) {
  .hero-unlimited-vpn {
    min-height: auto;
  }
  .hero-unlimited-vpn .hero__img {
    margin: 80px 0 0 0;
  }
  .hero-unlimited-vpn .hero__img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    margin-right: -25px;
  }
}
.hero-hulu-vpn .hero__img {
  margin: 110px 30px 160px 0;
}
@media screen and (max-width: 768px) {
  .hero-hulu-vpn .hero__img {
    margin: 25px 0 60px 0;
  }
}
.hero-products {
  min-height: auto;
}
.hero-products .hero__img {
  margin: 60px 0 20px 0;
}
.hero-streaming-vpn {
  min-height: 640px;
}
.hero-streaming-vpn .hero__img {
  margin: 145px 0 0 0;
}
@media screen and (max-width: 768px) {
  .hero-streaming-vpn {
    min-height: auto;
  }
  .hero-streaming-vpn h1 br {
    display: none;
  }
  .hero-streaming-vpn .hero__img {
    margin: 60px 0 0 0;
  }
}
.hero-single-sport {
  min-height: 640px;
}
.hero-single-sport .hero__img {
  margin: 100px 0 0 0;
}
@media screen and (max-width: 768px) {
  .hero-single-sport {
    min-height: auto;
  }
  .hero-single-sport .hero__img {
    margin: 60px 0 25px 0;
  }
}
.hero-urban-adblocker h1 {
  max-width: 881px;
  text-align: center;
  margin-bottom: 20px;
}
.hero-urban-adblocker .hero__left {
  max-width: 100%;
}
.hero-urban-adblocker .hero__text {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero-urban-adblocker .hero__img {
  margin: 430px 0 -70px 60px;
}
.hero-urban-adblocker .hero__img img {
  margin: 0 auto;
}
.hero-urban-adblocker p {
  max-width: 490px;
  text-align: center;
}
.hero-urban-adblocker .hero__buttons {
  margin-top: 47px;
}
@media screen and (max-width: 1200px) {
  .hero-urban-adblocker .hero__img {
    margin-top: 500px;
  }
  .hero-urban-adblocker .hero__img img {
    max-width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .hero-urban-adblocker .hero__img {
    margin: 50px -15px -40px -15px;
  }
  .hero-urban-adblocker .hero__text h1 {
    margin-top: 60px;
  }
  .hero-urban-adblocker .hero__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 18px;
  }
  .hero-urban-adblocker .hero__buttons .button {
    font-size: 16px;
    font-weight: 400;
  }
  .hero-urban-adblocker .hero__buttons .button span {
    padding: 5px 28px;
  }
}
.hero-unlimited-devices {
  min-height: 640px;
}
.hero-unlimited-devices .button {
  margin-top: 50px;
}
.hero-unlimited-devices .hero__img {
  margin: 0;
}
@media screen and (max-width: 992px) {
  .hero-unlimited-devices {
    min-height: auto;
  }
  .hero-unlimited-devices .hero__img {
    margin: 35px 0 0 0;
  }
  .hero-unlimited-devices .button span {
    background-color: #171012;
  }
}
.hero-unlimited-bandwidth .hero__img {
  margin-bottom: 200px;
}
.hero-unlimited-bandwidth p {
  max-width: 415px;
}
.hero-unlimited-bandwidth .container {
  position: relative;
}
.hero-unlimited-bandwidth .hero-bg {
  bottom: -145px;
}
.hero-unlimited-bandwidth .hero-bg img {
  -webkit-box-shadow: inset 0px -26px 40px 0px #0F0F0F;
  box-shadow: inset 0px -26px 40px 0px #0F0F0F;
  height: 421px;
  width: 1061px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .hero-unlimited-bandwidth .hero-bg {
    bottom: -85px;
  }
  .hero-unlimited-bandwidth .hero-bg img {
    max-width: 504px;
    width: 504px;
    -webkit-transform: translateX(-11%);
    transform: translateX(-11%);
  }
}
@media screen and (max-width: 768px) {
  .hero-unlimited-bandwidth .hero__img {
    max-width: 80%;
    margin: 55px auto 80px auto;
  }
}
.hero-unblock-website {
  min-height: 637px;
}
.hero-unblock-website p {
  max-width: 400px;
}
.hero-unblock-website .hero__img {
  margin: 90px 0 -30px 0;
}
@media screen and (max-width: 1200px) {
  .hero-unblock-website {
    min-height: 550px;
  }
  .hero-unblock-website .hero__img {
    margin: 90px 0 40px 0;
  }
}
@media screen and (max-width: 993px) {
  .hero-unblock-website {
    min-height: auto;
  }
  .hero-unblock-website .hero__img {
    margin: 10px 0 -10px 0;
  }
  .hero-unblock-website .button span {
    background-color: #1b1013;
  }
}
.hero-anonymous-browsing {
  min-height: 637px;
}
.hero-page-404 {
  min-height: 560px;
}
.hero-anonymous-browsing p,
.hero-page-404 p {
  max-width: 400px;
}
.hero-anonymous-browsing .hero__img,
.hero-page-404 .hero__img {
  margin: 90px 0 -30px 0;
}
@media screen and (max-width: 1200px) {
  .hero-anonymous-browsing,
  .hero-page-404 {
    min-height: 550px;
  }
  .hero-anonymous-browsing .hero__img,
  .hero-page-404 .hero__img {
    margin: 90px 0 40px 0;
  }
}
@media screen and (max-width: 993px) {
  .hero-anonymous-browsing,
  .hero-page-404 {
    min-height: auto;
  }
  .hero-anonymous-browsing .hero__img,
  .hero-page-404 .hero__img {
    margin: 10px 0 -10px 0;
  }
}
.hero-defeat-throttling {
  min-height: 637px;
}
.hero-defeat-throttling p {
  max-width: 420px;
}
.hero-defeat-throttling .hero__img {
  margin: 130px 0 -30px 0;
}
@media screen and (max-width: 1200px) {
  .hero-defeat-throttling {
    min-height: 550px;
  }
  .hero-defeat-throttling .hero__img {
    margin: 90px 0 40px 0;
  }
}
@media screen and (max-width: 993px) {
  .hero-defeat-throttling {
    min-height: auto;
  }
  .hero-defeat-throttling .hero__img {
    margin: 30px 0 -10px 0;
  }
}
.hero-urban-hotspot-shield h1 {
  max-width: 881px;
  text-align: center;
  margin-bottom: 20px;
}
.hero-urban-hotspot-shield .hero__left {
  max-width: 100%;
}
.hero-urban-hotspot-shield .hero__text {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero-urban-hotspot-shield .hero__img {
  margin: 470px 0 40px 0;
}
.hero-urban-hotspot-shield .hero__img img {
  margin: 0 auto;
}
.hero-urban-hotspot-shield p {
  max-width: 490px;
  text-align: center;
}
.hero-urban-hotspot-shield .hero__buttons {
  margin-top: 47px;
  gap: 25px;
  width: 100%;
}
.hero-urban-hotspot-shield .hero__buttons .button {
  max-width: 326px;
  width: 100%;
}
.hero-urban-hotspot-shield .hero__buttons .button span {
  height: auto;
  min-height: 60px;
  text-align: center;
  padding: 15px 25px;
}
.hero-urban-hotspot-shield .hero__buttons .button img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 20px;
  -o-object-position: top;
  object-position: top;
  margin-bottom: auto;
  padding-top: 4px;
}
@media screen and (max-width: 1200px) {
  .hero-urban-hotspot-shield .hero__img {
    margin-top: 560px;
  }
  .hero-urban-hotspot-shield .hero__img img {
    max-width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .hero-urban-hotspot-shield .hero__img {
    margin: 50px -15px -40px -15px;
  }
  .hero-urban-hotspot-shield .hero__text h1 {
    margin-top: 60px;
  }
  .hero-urban-hotspot-shield .hero__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 18px;
  }
  .hero-urban-hotspot-shield .hero__buttons .button {
    font-size: 16px;
    font-weight: 400;
  }
  .hero-urban-hotspot-shield .hero__buttons .button span {
    padding: 5px 28px;
    font-size: 20px;
  }
}
.hero-facebook-adblocker h1 {
  max-width: 881px;
  text-align: center;
  margin-bottom: 20px;
}
.hero-facebook-adblocker .hero__left {
  max-width: 100%;
}
.hero-facebook-adblocker .hero__text {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero-facebook-adblocker .hero__img {
  margin: 490px 0 -95px 0;
}
.hero-facebook-adblocker .hero__img img {
  margin: 0 auto;
}
.hero-facebook-adblocker p {
  max-width: 490px;
  text-align: center;
}
.hero-facebook-adblocker .hero__buttons {
  margin-top: 47px;
}
@media screen and (max-width: 1200px) {
  .hero-facebook-adblocker .hero__img {
    margin-top: 560px;
  }
  .hero-facebook-adblocker .hero__img img {
    max-width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .hero-facebook-adblocker .hero__img {
    margin: 50px -15px -40px -15px;
  }
  .hero-facebook-adblocker .hero__text h1 {
    margin-top: 60px;
  }
  .hero-facebook-adblocker .hero__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 18px;
  }
  .hero-facebook-adblocker .hero__buttons .button {
    font-size: 16px;
    font-weight: 400;
  }
  .hero-facebook-adblocker .hero__buttons .button span {
    padding: 5px 28px;
  }
}
.hero-extension-browser h1 {
  max-width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.hero-extension-browser .hero__left {
  max-width: 100%;
}
.hero-extension-browser .hero__text {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.hero-extension-browser .hero__img {
  margin: 30px 0 0 0;
}
.hero-extension-browser .hero__img img {
  margin: 0 auto;
}
.hero-extension-browser p {
  max-width: 490px;
  text-align: center;
}
.hero-extension-browser .hero__buttons {
  margin-top: 47px;
}
@media screen and (min-width: 1200px) {
  .hero-extension-browser + .articles .articles-container {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .hero-extension-browser .hero__img {
    margin-top: 560px;
  }
  .hero-extension-browser .hero__img img {
    max-width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .hero-extension-browser .hero__img {
    margin: 50px -15px -40px -15px;
  }
  .hero-extension-browser .hero__text h1 {
    margin-top: 60px;
  }
  .hero-extension-browser .hero__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 18px;
  }
  .hero-extension-browser .hero__buttons .button {
    font-size: 16px;
    font-weight: 400;
  }
  .hero-extension-browser .hero__buttons .button span {
    padding: 5px 28px;
  }
}
.hero-landing-template h1, .hero-dns-requests-check h1, .hero-ip-address h1 {
  margin-top: 115px;
}
.hero-landing-template h1 + p, .hero-dns-requests-check h1 + p, .hero-ip-address h1 + p {
  margin-top: 50px;
}
.hero-landing-template p, .hero-dns-requests-check p, .hero-ip-address p {
  font-size: 24px;
}
.hero-landing-template p strong, .hero-dns-requests-check p strong, .hero-ip-address p strong {
  color: #FF0066;
  font-size: 45px;
  line-height: 1.2;
  margin-top: -5px;
  display: block;
}
.hero-landing-template .hero__left, .hero-dns-requests-check .hero__left, .hero-ip-address .hero__left {
  max-width: 52%;
}
.hero-landing-template .hero__img, .hero-dns-requests-check .hero__img, .hero-ip-address .hero__img {
  margin: 120px 0 180px 0;
}
.hero-landing-template .hero__img h1, .hero-dns-requests-check .hero__img h1, .hero-ip-address .hero__img h1 {
  display: none;
}
.hero-landing-template + .text-img, .hero-dns-requests-check + .text-img, .hero-ip-address + .text-img {
  padding: 0;
}
.hero-landing-template + .text-img .text-center, .hero-dns-requests-check + .text-img .text-center, .hero-ip-address + .text-img .text-center {
  margin-top: 0;
  padding-top: 41px;
  padding-bottom: 150px;
  max-width: 100%;
  border-top: 1px solid #313536;
}
.hero-landing-template + .text-img .text-center p, .hero-dns-requests-check + .text-img .text-center p, .hero-ip-address + .text-img .text-center p {
  margin-top: 0;
}
.hero-landing-template + .text-img .triangle-right, .hero-dns-requests-check + .text-img .triangle-right, .hero-ip-address + .text-img .triangle-right {
  bottom: 0;
}
.hero-landing-template + .text-img .bg-shadow-pink, .hero-dns-requests-check + .text-img .bg-shadow-pink, .hero-ip-address + .text-img .bg-shadow-pink {
  bottom: 0;
  top: auto;
}
@media screen and (max-width: 992px) {
  .hero-landing-template .container, .hero-dns-requests-check .container, .hero-ip-address .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .hero-landing-template p strong, .hero-dns-requests-check p strong, .hero-ip-address p strong {
    font-size: 30px;
  }
  .hero-landing-template .hero__text, .hero-dns-requests-check .hero__text, .hero-ip-address .hero__text {
    padding-bottom: 60px;
  }
  .hero-landing-template .hero__img, .hero-dns-requests-check .hero__img, .hero-ip-address .hero__img {
    margin: 0;
  }
  .hero-landing-template .hero__img h1, .hero-dns-requests-check .hero__img h1, .hero-ip-address .hero__img h1 {
    display: block;
    max-width: 360px;
    margin: 70px auto 35px auto;
  }
  .hero-landing-template .hero__left, .hero-dns-requests-check .hero__left, .hero-ip-address .hero__left {
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .hero-landing-template .hero__left h1, .hero-dns-requests-check .hero__left h1, .hero-ip-address .hero__left h1 {
    display: none;
  }
  .hero-landing-template + .text-img .text-center, .hero-dns-requests-check + .text-img .text-center, .hero-ip-address + .text-img .text-center {
    border-top: none;
  }
  .hero-landing-template + .text-img p, .hero-dns-requests-check + .text-img p, .hero-ip-address + .text-img p {
    font-size: 20px;
    max-width: 360px;
  }
}
.hero-dns-requests-check, .hero-ip-address {
  min-height: 590px;
}
.hero-dns-requests-check .hero__img, .hero-ip-address .hero__img {
  margin-bottom: 130px;
}
.hero-dns-requests-check h1, .hero-ip-address h1 {
  min-height: 150px;
}
.hero-dns-requests-check h1 + p, .hero-ip-address h1 + p {
  margin-top: 0;
}
.hero-dns-requests-check p, .hero-ip-address p {
  max-width: 100%;
  margin-top: 0;
}
@media screen and (max-width: 992px) {
  .hero-dns-requests-check .hero__img, .hero-ip-address .hero__img {
    margin: 0;
  }
  .hero-dns-requests-check + .text-img .text-center, .hero-ip-address + .text-img .text-center {
    padding: 0 0 100px 0;
  }
}
.hero-ip-address {
  min-height: 560px;
}
.hero-ip-address .hero__img {
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .hero-ip-address {
    min-height: auto;
  }
  .hero-ip-address h1 {
    min-height: auto;
  }
  .hero-ip-address .hero__img h1 {
    max-width: 400px;
  }
}
.hero-mac-vpn .hero__img {
  margin: 100px 0;
}
.hero-mac-vpn .bg-shadow-pink,
.hero-mac-vpn .triangle-right {
  display: none;
}
@media screen and (max-width: 992px) {
  .hero-mac-vpn {
    margin-bottom: 35px;
  }
  .hero-mac-vpn .hero__img {
    margin-bottom: 0;
  }
  .hero-mac-vpn .hero__text {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .hero-mac-vpn .hero__text h1 {
    margin-left: 0;
  }
  .hero-mac-vpn .hero__text h1 br {
    display: none;
  }
  .hero-mac-vpn .bg-shadow-pink,
  .hero-mac-vpn .triangle-right {
    display: block;
  }
}
.hero-youtube-vpn h1 {
  max-width: 950px;
  text-align: center;
  margin-bottom: 20px;
}
.hero-youtube-vpn .hero__left {
  max-width: 100%;
}
.hero-youtube-vpn .hero__text {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero-youtube-vpn .hero__img {
  margin: 450px -60px -50px 0;
}
.hero-youtube-vpn .hero__img img {
  margin: 0 auto;
}
.hero-youtube-vpn p {
  max-width: 550px;
  text-align: center;
}
.hero-youtube-vpn .hero__buttons {
  margin-top: 47px;
}
@media screen and (max-width: 1200px) {
  .hero-youtube-vpn .hero__img {
    margin-top: 560px;
  }
  .hero-youtube-vpn .hero__img img {
    max-width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .hero-youtube-vpn .hero__img {
    margin: 50px -15px -40px -15px;
  }
  .hero-youtube-vpn .hero__text h1 {
    margin-top: 60px;
  }
  .hero-youtube-vpn .hero__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 18px;
  }
  .hero-youtube-vpn .hero__buttons .button {
    font-size: 16px;
    font-weight: 400;
  }
  .hero-youtube-vpn .hero__buttons .button span {
    padding: 5px 28px;
  }
}
.hero-travel-vpn {
  min-height: 600px;
}
.hero-travel-vpn h1 {
  margin-top: 160px;
}
.hero-travel-vpn .hero__img {
  margin: 155px -260px 0 0;
}
@media screen and (max-width: 1200px) {
  .hero-travel-vpn .hero__img img {
    max-width: 100%;
  }
}
@media screen and (max-width: 993px) {
  .hero-travel-vpn h1 {
    margin-top: 70px;
  }
  .hero-travel-vpn .hero__img {
    margin: 10px 0 0 -39%;
    height: 240px;
  }
  .hero-travel-vpn .hero__img img {
    height: 100%;
    width: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}
.hero-random-password-generator {
  min-height: 600px;
}
.hero-random-password-generator p {
  max-width: 420px;
}
.hero-random-password-generator .button {
  min-width: 160px;
}
.hero-random-password-generator .hero__img {
  margin: 50px 0;
}
@media screen and (max-width: 993px) {
  .hero-random-password-generator {
    min-height: auto;
  }
  .hero-random-password-generator .hero__img {
    margin: -15px -15px -20px 0;
  }
  .hero-random-password-generator .bg-shadow-green {
    -webkit-box-shadow: -19px 13px 300px 20px rgba(255, 0, 102, 0.68);
    box-shadow: -19px 13px 300px 20px rgba(255, 0, 102, 0.68);
  }
}
@media screen and (max-width: 768px) {
  .hero-random-password-generator h1 {
    max-width: 350px;
  }
}
.hero-hide-ip {
  min-height: 600px;
}
.hero-hide-ip p {
  max-width: 420px;
}
.hero-hide-ip .button {
  min-width: 160px;
}
.hero-hide-ip .hero__img {
  margin: 80px 0 50px 0;
}
@media screen and (max-width: 993px) {
  .hero-hide-ip {
    min-height: auto;
  }
  .hero-hide-ip .hero__img {
    margin: 40px -15px -20px 0;
  }
  .hero-hide-ip .bg-shadow-green {
    -webkit-box-shadow: -19px 13px 300px 20px rgba(255, 0, 102, 0.68);
    box-shadow: -19px 13px 300px 20px rgba(255, 0, 102, 0.68);
  }
}
@media screen and (max-width: 768px) {
  .hero-hide-ip h1 {
    max-width: 350px;
  }
}
.hero-do-not-sell {
  min-height: 550px;
}
.hero-do-not-sell p {
  max-width: 457px;
}
.hero-do-not-sell .hero__img {
  margin: 25px 0 30px 0;
}
@media screen and (max-width: 1200px) {
  .hero-do-not-sell {
    min-height: 450px;
  }
  .hero-do-not-sell .hero__img img {
    max-width: 50%;
  }
}
@media screen and (max-width: 993px) {
  .hero-do-not-sell {
    min-height: auto;
  }
  .hero-do-not-sell .hero__img {
    margin: 25px 0 -55px 0;
  }
  .hero-do-not-sell .hero__img img {
    max-width: 100%;
  }
}
.hero-bandwidth-throttling {
  min-height: 530px;
}
.hero-bandwidth-throttling .hero__img {
  margin: 50px 0 -25px 0;
}
.hero-bandwidth-throttling .hero__img img {
  margin-right: -40px;
}
@media screen and (max-width: 993px) {
  .hero-bandwidth-throttling {
    min-height: auto;
  }
  .hero-bandwidth-throttling .hero__img {
    margin: 30px 0 -15px 0;
  }
  .hero-bandwidth-throttling .hero__img img {
    margin-right: -20px;
  }
}
.hero-thank-downloading {
  min-height: 480px;
}
.hero-thank-downloading p {
  max-width: 427px;
}
.hero-thank-downloading p a {
  text-decoration: none;
}
.hero-thank-downloading p a:hover {
  text-decoration: underline;
}
.hero-thank-downloading .hero__img {
  margin: 40px 0 -10px 0;
}
@media screen and (max-width: 1200px) {
  .hero-thank-downloading {
    min-height: 500px;
  }
  .hero-thank-downloading .hero__img img {
    max-width: 50%;
  }
}
@media screen and (max-width: 993px) {
  .hero-thank-downloading {
    min-height: auto;
  }
  .hero-thank-downloading h1 {
    max-width: 350px;
  }
  .hero-thank-downloading p {
    max-width: 350px;
  }
  .hero-thank-downloading .hero__img {
    margin: 5px 0 -35px 0;
  }
  .hero-thank-downloading .hero__img img {
    max-width: 100%;
  }
}
.hero-best-craigslist {
  min-height: 480px;
}
.hero-best-craigslist p {
  max-width: 440px;
}
.hero-best-craigslist p a {
  text-decoration: none;
}
.hero-best-craigslist p a:hover {
  text-decoration: underline;
}
.hero-best-craigslist .hero__img {
  margin: 40px -5px -10px 0;
}
.hero-best-craigslist + .text, .hero-best-craigslist + .text-list {
  padding-bottom: 115px;
}
@media screen and (max-width: 1200px) {
  .hero-best-craigslist {
    min-height: 500px;
  }
  .hero-best-craigslist .hero__img img {
    max-width: 50%;
  }
}
@media screen and (max-width: 993px) {
  .hero-best-craigslist {
    min-height: auto;
  }
  .hero-best-craigslist h1 {
    max-width: 350px;
  }
  .hero-best-craigslist p {
    max-width: 350px;
  }
  .hero-best-craigslist .hero__img {
    margin: 5px 0 -35px 0;
  }
  .hero-best-craigslist .hero__img img {
    max-width: 100%;
  }
  .hero-best-craigslist + .text, .hero-best-craigslist + .text-list {
    padding-bottom: 79px;
  }
}
.hero-reddit p {
  max-width: 440px;
}
.hero-reddit p a {
  text-decoration: none;
}
.hero-reddit p a:hover {
  text-decoration: underline;
}
.hero-reddit .hero__img {
  margin: 40px -5px -10px 0;
}
.hero-reddit h1 {
  max-width: 470px;
}
.hero-reddit + .text, .hero-reddit + .text-list {
  padding-bottom: 115px;
}
@media screen and (max-width: 1200px) {
  .hero-reddit {
    min-height: 600px;
  }
  .hero-reddit .hero__img {
    margin-top: 90px;
  }
  .hero-reddit .hero__img img {
    max-width: 50%;
  }
}
@media screen and (max-width: 993px) {
  .hero-reddit {
    min-height: auto;
  }
  .hero-reddit h1 {
    max-width: 600px;
  }
  .hero-reddit p {
    max-width: 350px;
  }
  .hero-reddit .hero__img {
    margin: 0 30px 0 auto;
  }
  .hero-reddit .hero__img img {
    max-width: 100%;
  }
  .hero-reddit + .text, .hero-reddit + .text-list {
    padding-bottom: 79px;
  }
}
.page-template-uninstall .step-by-step {
  padding-top: 40px;
}
.hero-roblox p {
  max-width: 450px;
}
.hero-roblox .hero__img {
  margin: 70px -5px -10px 0;
}
.hero-roblox h1 {
  max-width: 480px;
  margin-bottom: 31px;
}
.hero-roblox + .text, .hero-roblox + .text-list {
  padding-bottom: 115px;
}
@media screen and (max-width: 1200px) {
  .hero-roblox {
    min-height: 600px;
  }
  .hero-roblox .hero__img {
    margin-top: 90px;
  }
  .hero-roblox .hero__img img {
    max-width: 50%;
  }
}
@media screen and (max-width: 993px) {
  .hero-roblox {
    min-height: auto;
  }
  .hero-roblox h1 {
    max-width: 600px;
  }
  .hero-roblox p {
    max-width: 350px;
  }
  .hero-roblox .hero__img {
    margin: 0 auto 20px auto;
  }
  .hero-roblox .hero__img img {
    max-width: 100%;
  }
  .hero-roblox + .text, .hero-roblox + .text-list {
    padding-bottom: 79px;
  }
}
.hero-sugar {
  min-height: 635px;
}
.hero-sugar .hero__img {
  margin: 80px -45px 10px 0;
}
@media screen and (max-width: 1200px) {
  .hero-sugar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hero-sugar .hero__left {
    max-width: 55%;
  }
  .hero-sugar .hero__img {
    margin-bottom: 50px;
  }
  .hero-sugar .hero__img img {
    max-width: 55%;
  }
  .hero-sugar .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .hero-sugar .row {
    margin-top: auto;
  }
}
@media screen and (min-width: 992px) {
  .hero-sugar .hero__buttons {
    margin-top: 35px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 38px;
  }
  .hero-sugar .hero__buttons .button {
    font-size: 0;
    min-width: 30px;
    min-height: 28px;
  }
  .hero-sugar .hero__buttons .button::after, .hero-sugar .hero__buttons .button::before {
    opacity: 0;
  }
  .hero-sugar .hero__buttons .button span {
    padding: 0;
    height: 28px;
  }
  .hero-sugar .hero__buttons .button img {
    margin: 0;
  }
  .hero-sugar .hero__buttons .button.active {
    font-size: 20px;
    min-width: 247px;
    min-height: 60px;
  }
  .hero-sugar .hero__buttons .button.active span {
    padding: 5px 28px;
    height: 60px;
  }
  .hero-sugar .hero__buttons .button.active img {
    margin-right: 10px;
  }
  .hero-sugar .hero__buttons .button.active::before {
    opacity: 1;
  }
  .hero-sugar .hero__buttons .button.active::after {
    opacity: 0;
  }
}
@media screen and (max-width: 992px) {
  .hero-sugar {
    min-height: auto;
  }
  .hero-sugar .hero__left {
    max-width: 100%;
  }
  .hero-sugar .hero__left h4 {
    font-size: 12px;
  }
  .hero-sugar .hero__left p {
    margin-top: 15px;
    font-size: 16px;
  }
  .hero-sugar .hero__img {
    margin: 40px -20px 0 0;
  }
  .hero-sugar .hero__img img {
    max-width: 100%;
  }
  .hero-sugar .hero__buttons {
    margin-top: 27px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .hero-sugar .hero__buttons .button {
    font-size: 0;
    min-width: 30px;
    min-height: 28px;
  }
  .hero-sugar .hero__buttons .button::after, .hero-sugar .hero__buttons .button::before {
    opacity: 0;
  }
  .hero-sugar .hero__buttons .button span {
    padding: 0;
    height: 28px;
  }
  .hero-sugar .hero__buttons .button img {
    margin: 0;
  }
  .hero-sugar .hero__buttons .button:first-of-type {
    font-size: 20px;
    min-width: 247px;
    min-height: 60px;
  }
  .hero-sugar .hero__buttons .button:first-of-type span {
    padding: 5px 28px;
    height: 60px;
  }
  .hero-sugar .hero__buttons .button:first-of-type img {
    margin-right: 10px;
  }
  .hero-sugar .hero__buttons .button:first-of-type::before {
    opacity: 1;
  }
  .hero-sugar .hero__buttons .button:first-of-type::after {
    opacity: 0;
  }
}
.hero-almost-done, .hero-uninstall {
  min-height: 500px;
}
.hero-almost-done h1, .hero-uninstall h1 {
  max-width: 502px;
}
.hero-almost-done .hero__img, .hero-uninstall .hero__img {
  margin: 50px -45px 0px 0;
}
@media screen and (min-width: 993px) {
  .hero-almost-done .button span, .hero-uninstall .button span {
    background-color: #1C0F14;
  }
}
@media screen and (max-width: 1200px) {
  .hero-almost-done .hero__img {
    margin: 50px 0 0 0 !important;
  }
  .hero-almost-done, .hero-uninstall {
    min-height: 550px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hero-almost-done .container, .hero-uninstall .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .hero-almost-done .container .row, .hero-uninstall .container .row {
    margin-top: auto;
  }
  .hero-almost-done .hero__img, .hero-uninstall .hero__img {
    margin-bottom: 50px;
  }
  .hero-almost-done .hero__img img, .hero-uninstall .hero__img img {
    max-width: 50%;
  }
}
@media screen and (max-width: 1200px) {
  .hero-almost-done, .hero-uninstall {
    min-height: auto;
  }
  .hero-almost-done .hero__img, .hero-uninstall .hero__img {
    margin: 0;
  }
  .hero-almost-done .hero__img img, .hero-uninstall .hero__img img {
    max-width: 100%;
  }
}
.hero-thank-answer {
  min-height: 500px;
}
.hero-thank-answer h1 {
  max-width: 502px;
}
.hero-thank-answer p {
  max-width: 416px;
}
.hero-thank-answer .hero__img {
  margin: 50px -45px 0px 0;
}
@media screen and (min-width: 993px) {
  .hero-thank-answer .button span {
    background-color: #1C0F14;
  }
}
@media screen and (max-width: 1200px) {
  .hero-thank-answer {
    min-height: 550px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hero-thank-answer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .hero-thank-answer .container .row {
    margin-top: auto;
  }
  .hero-thank-answer .hero__img {
    margin-bottom: 50px;
  }
  .hero-thank-answer .hero__img img {
    max-width: 50%;
  }
}
@media screen and (max-width: 993px) {
  .hero-thank-answer {
    min-height: auto;
  }
  .hero-thank-answer .hero__img {
    margin: 25px 0 0 0;
  }
  .hero-thank-answer .hero__img img {
    max-width: 100%;
  }
}
.hero-question {
  min-height: 500px;
}
.hero-question h1 {
  max-width: 502px;
}
.hero-question p {
  max-width: 416px;
}
.hero-question .hero__img {
  margin: 50px -45px 0px 0;
}
.hero-question .hero-img-question {
  display: none;
}
@media screen and (max-width: 1200px) {
  .hero-question {
    min-height: 550px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hero-question .hero__img {
    margin-bottom: 50px;
  }
  .hero-question .hero__img img {
    max-width: 100%;
  }
}
.hero-question .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 150px;
}
.hero-question .hero__text {
  position: relative;
}
.hero-question .button span {
  background-color: #0F0F0F;
}
@media screen and (max-width: 993px) {
  .hero-question {
    min-height: auto;
  }
  .hero-question .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 130px;
  }
  .hero-question .hero__img {
    margin: 25px 0 0 0;
  }
  .hero-question .hero__img img {
    max-width: 100%;
  }
  .hero-question .hero-img-question {
    display: block;
    width: 100%;
  }
  .hero-question .row .hero__img {
    display: none;
  }
}
.hero-mac-thanks {
  min-height: 500px;
}
.hero-mac-thanks .hero__img {
  margin: 55px 0 20px 0;
}
.hero-mac-thanks .button span {
  text-align: center;
}
.hero-sorry {
  min-height: 550px;
}
.hero-sorry .hero__img {
  margin: 60px -45px 60px 0;
}
.hero-sorry p {
  max-width: 521px;
}
.hero-sorry h4 {
  margin-top: 10px;
}
.hero-sorry .hero__buttons {
  margin-top: 62px;
}
@media screen and (max-width: 993px) {
  .hero-sorry .hero__img {
    margin: 36px 0 0 0;
  }
  .hero-sorry .hero__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 15px;
    margin-top: 45px;
  }
}
.hero-server-locations .hero__img {
  margin: 130px 0 0 0;
}
.hero-server-locations .container {
  position: relative;
}
.hero-server-locations .hero-bg {
  bottom: -175px;
}
.hero-server-locations .hero-bg img {
  -webkit-box-shadow: inset 0px -26px 40px 0px #0F0F0F;
  box-shadow: inset 0px -26px 40px 0px #0F0F0F;
  height: 421px;
  width: 1061px;
  margin-left: auto;
}
.hero-server-locations .hero__text h1 {
  max-width: 95%;
}
.hero-server-locations p {
  max-width: 375px;
}
@media screen and (max-width: 1200px) {
  .hero-server-locations {
    min-height: 580px;
  }
  .hero-server-locations .hero__img {
    margin-bottom: 150px;
  }
  .hero-server-locations .hero__img img {
    max-width: 80%;
  }
}
@media screen and (max-width: 992px) {
  .hero-server-locations {
    min-height: auto;
  }
  .hero-server-locations .hero__img {
    margin: 0;
  }
  .hero-server-locations .hero__left {
    margin-bottom: 60px;
  }
  .hero-server-locations h1 br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hero-server-locations .hero__img {
    margin: 10px 0 50px -45px;
  }
  .hero-server-locations .hero__img img {
    -webkit-transform: scale(1.07);
    transform: scale(1.07);
  }
  .hero-server-locations .hero-bg {
    bottom: -100px;
  }
}
.hero-chrome-settings {
  min-height: 585px;
}
.hero-chrome-settings .hero__img {
  margin: 80px 0 0 0;
}
.hero-chrome-settings .hero__img img {
  margin-right: -40px;
}
.hero-chrome-settings p {
  max-width: 516px;
}
@media screen and (max-width: 1200px) {
  .hero-chrome-settings {
    min-height: 540px;
  }
  .hero-chrome-settings .hero__img {
    margin-top: 130px;
  }
}
@media screen and (max-width: 993px) {
  .hero-chrome-settings {
    min-height: auto;
  }
  .hero-chrome-settings .hero__img {
    margin: 30px 0 -5vw 0;
  }
  .hero-chrome-settings .hero__img img {
    margin: 0 auto;
  }
}
.hero-router-ip .hero__left {
  max-width: 51%;
}
.hero-router-ip h1 {
  max-width: 100%;
}
.hero-router-ip p {
  max-width: 500px;
}
@media screen and (max-width: 993px) {
  .hero-router-ip .hero__left {
    max-width: 100%;
  }
  .hero-router-ip .hero__img img {
    max-width: 70%;
  }
}
.hero-twitter {
  min-height: 480px;
}
.hero-twitter p {
  max-width: 440px;
}
.hero-twitter p a {
  text-decoration: none;
}
.hero-twitter p a:hover {
  text-decoration: underline;
}
.hero-twitter .hero__img {
  margin: 60px -5px -40px 0;
}
.hero-twitter h1 {
  max-width: 400px;
}
.hero-twitter + .text, .hero-twitter + .text-list {
  padding-bottom: 115px;
}
@media screen and (max-width: 1200px) {
  .hero-twitter {
    min-height: 500px;
  }
  .hero-twitter .hero__img img {
    max-width: 50%;
  }
}
@media screen and (max-width: 993px) {
  .hero-twitter {
    min-height: auto;
  }
  .hero-twitter h1 {
    max-width: 350px;
  }
  .hero-twitter p {
    max-width: 350px;
  }
  .hero-twitter .hero__img {
    margin: 0 0 -55px 0;
  }
  .hero-twitter .hero__img img {
    max-width: 100%;
  }
  .hero-twitter + .text, .hero-twitter + .text-list {
    padding-bottom: 79px;
  }
}
.hero-uninstall {  height: auto !important;
  padding-bottom: 80px;
}
.hero-uninstall p {
  font-size: 14px;
  text-transform: uppercase;
  color: #FF0066;
  font-weight: 700;
  margin: 3px 0 0 0 !important;
  max-width: 100%;
}
.hero-uninstall li {
  word-break: break-word;
}
.hero-uninstall .container {
  display: flex;
}
.hero-uninstall .hero__text {
  position: static;
  display: block;
}
.hero__sure {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 17px !important;
  margin-top: 36px;
}
.hero__sure-list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .hero-uninstall {
    padding-bottom: 100px;
  }
  .hero__sure {
    gap: 17px 40px !important;
    margin-top: 6px;
  }
}
.hero__sure-list {
  padding-left: 0 !important;
}
@media screen and (max-width: 767px) {
  .hero__sure-list {
    flex-direction: column;
  }
}
.hero__sure-list:before, .hero__sure-list:after {
  display: none !important;
}
.hero__sure-icon {
  width: 50px;
  height: 50px;
  margin-right: 19px;
}
@media screen and (max-width: 767px) {
  .hero__sure-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
  }
}
.hero__sure-text {
  font-size: 16px;
  flex-grow: 1;
  flex-basis: 0;
  text-align: left;
  padding-top: 3px;
}
@media screen and (max-width: 767px) {
  .hero__sure-text {
    text-align: center;
    margin-top: 5px;
    padding-top: 0;
  }
}
.hero__advantages {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  margin: 70px 0 0px 0;
  gap: 36px 40px !important;
  flex: none !important;
}
@media screen and (max-width: 1329px) {
  .hero__advantages {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1200px) {
  .hero__advantages {
    display: flex !important;
    width: -moz-max-content;
    width: max-content;
    margin: 40px auto 0px auto;
    gap: 18px 0px !important;
  }
}
@media screen and (max-width: 1200px) {
  .hero__advantages {
    order: 3;
  }
}
.hero__advantages-list {
  padding-left: 0 !important;
  display: flex;
  align-items: center;
}
.hero__advantages-list:before, .hero__advantages-list:after {
  display: none !important;
}
.hero__advantages-icon {
  width: 55px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .hero__advantages-icon {
    width: 45px;
  }
}
.hero__advantages-text {
  font-size: 16px;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 150px;
}
@media screen and (max-width: 767px) {
  .hero__advantages-text {
    max-width: 100%;
  }
}
.hero__advantages-text a:hover {
  color: #FF0066;
}

.our-products {
  background-color: #0F0F0F;
  position: relative;
  padding: 120px 0 200px 0;
  overflow: hidden;
}
.our-products__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  justify-items: flex-start;
}
.our-products h2 {
  max-width: 215px;
}
.our-products .our-products__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 21px;
}
.our-products-slider {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 50px 40px;
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
.our-products-slider h3 {
  color: #FFFFFF;
  text-align: center;
}
.our-products__item-img {
  width: 65px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.our-products__item-img img {
  max-width: 100%;
}
.our-products .bg-shadow-pink {
  bottom: 20px;
  z-index: 0;
}
.our-products .triangle-right {
  z-index: 1;
}
.our-products .slick-dots {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
}
.our-products .slick-dots li {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
  padding-top: 3px;
}
.our-products .slick-dots li button {
  background: #FFB6D3;
  color: transparent;
  font-size: 1px;
  line-height: 0px;
  height: 2px;
  width: 35px;
  margin-left: 5px;
  margin-right: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.our-products .slick-dots li.slick-active button {
  background: #FF0066;
}
.our-products .slick-dots li:hover button {
  background: #FF0066;
}
.our-products .button {
  width: 210px;
  min-width: 138px;
  margin-top: auto;
}
.our-products .button span {
  text-align: center;
}
@media screen and (max-width: 992px) {
  .our-products {
    padding: 50px 0 100px 0;
  }
  .our-products h2 {
    text-align: center;
    max-width: 100%;
  }
  .our-products__container {
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .our-products__container > * {
    margin-bottom: 50px;
  }
  .our-products .our-products-slider {
    grid-gap: 20px;
  }
  .our-products .button {
    margin: 20px auto 0 auto;
  }
  .our-products .button span {
    background-color: #200f15;
  }
}
@media screen and (max-width: 768px) {
  .our-products h2 {
    margin-bottom: 37px;
  }
  .our-products .button {
    margin: 0 auto;
  }
  .our-products .our-products-slider {
    display: block;
    margin-bottom: 60px;
  }
  .our-products .our-products__item {
    display: block;
  }
  .our-products .our-products__item-img {
    margin: 0 auto 20px auto;
  }
}

.our-story {
  position: relative;
  padding: 100px 0 225px 0;
  background-color: #0F0F0F;
  z-index: 1;
}
.our-story__container {
  position: relative;
}
.our-story__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 204px minmax(auto, 128px) minmax(auto, 526px) auto;
  grid-template-columns: 204px minmax(auto, 128px) minmax(auto, 526px) auto;
}
.our-story__item:not(:last-of-type) {
  margin-bottom: 16px;
}
.our-story__item:last-of-type .dot::after {
  display: block;
  height: 300px;
  border: 5px solid #0F0F0F;
}
.our-story__item:first-of-type .dot::after {
  height: 355px;
}
.our-story__item:not(:first-of-type) .dot {
  margin-top: 30px;
}
.our-story__item-title {
  color: #FF0066;
  position: relative;
  padding-top: 5px;
}
.our-story__item-title span {
  position: absolute;
  top: -10px;
}
.our-story__item-img {
  border-radius: 10px;
  overflow: hidden;
}
.our-story__item-img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.our-story__item-text {
  max-width: 306px;
  margin-left: auto;
  padding-left: 20px;
}
.our-story__item-text h3 {
  color: #FFFFFF;
  margin-bottom: 10px;
}
.our-story__item-text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
}
.our-story h2 {
  margin-bottom: 40px;
}
.our-story .dot {
  background: linear-gradient(93.62deg, #75EDFD 0.39%, #FF0066 98.02%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
  margin-top: 15px;
  margin-right: 116px;
}
.our-story .dot::after {
  content: "";
  height: 345px;
  position: absolute;
  top: 100%;
  left: 6px;
  width: 2px;
  border-left: 1px dashed #303435;
}
@media screen and (max-width: 1200px) {
  .our-story .dot {
    margin-right: 20px;
  }
  .our-story__item {
    -ms-grid-columns: 204px minmax(-webkit-min-content, 100px) minmax(auto, 526px) auto;
    -ms-grid-columns: 204px minmax(min-content, 100px) minmax(auto, 526px) auto;
    grid-template-columns: 204px minmax(-webkit-min-content, 100px) minmax(auto, 526px) auto;
    grid-template-columns: 204px minmax(min-content, 100px) minmax(auto, 526px) auto;
  }
}
@media screen and (max-width: 992px) {
  .our-story {
    padding: 50px 0 80px 0;
  }
  .our-story h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  .our-story__item {
    -ms-grid-columns: 40px 1fr;
    grid-template-columns: 40px 1fr;
  }
  .our-story__item:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .our-story__item:first-of-type .dot {
    margin-top: 20px;
  }
  .our-story__item:first-of-type .dot::after {
    height: 620px;
  }
  .our-story .dot {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-grid-row-span: 2;
    grid-row: span 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
  .our-story .dot::after {
    height: 620px;
  }
  .our-story__item-title {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    margin-bottom: 20px;
  }
  .our-story__item-title span {
    font-size: 12px;
    top: -5px;
  }
  .our-story__item-img {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    max-width: 600px;
    margin-bottom: 18px;
  }
  .our-story__item-text {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    margin-left: 0;
    max-width: 500px;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .our-story__item:last-of-type .dot::after {
    display: block;
    height: 300px;
    border: 5px solid #0F0F0F;
  }
  .our-story .dot {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-grid-row-span: 2;
    grid-row: span 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
  .our-story__item-img {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    max-width: 100%;
  }
  .our-story__item-text {
    max-width: 100%;
  }
  .our-story__item-text p {
    font-size: 16px;
  }
}

.our-team {
  background-color: #0F0F0F;
  position: relative;
}
.our-team .container {
  padding: 300px 15px 200px 15px;
  background: url("../images/section/bg/planet.svg") no-repeat 54px 50%;
  background-size: 65%;
}
.our-team h3 {
  max-width: 305px;
  color: #FFFFFF;
}
.our-team__text {
  max-width: 380px;
}
.our-team p {
  margin-bottom: 22px;
}
.our-team .bg-shadow-pink {
  top: 0px;
  z-index: 0;
}
.our-team .triangle-left {
  top: 0;
}
@media screen and (max-width: 768px) {
  .our-team .container {
    padding: 50px 15px 130px 15px;
    background: url("../images/section/bg/planet.svg") no-repeat 5% 113%;
    background-size: 125%;
    position: relative;
    z-index: 2;
    -webkit-box-shadow: inset 0px -26px 40px 0px #0F0F0F;
    box-shadow: inset 0px -26px 40px 0px #0F0F0F;
  }
  .our-team h2 {
    margin-bottom: 35px;
    text-align: center;
    width: 100%;
  }
  .our-team h3 {
    text-align: center;
    max-width: 351px;
    margin-bottom: 20px;
    margin: 0 auto 20px auto;
    width: 100%;
  }
  .our-team__text {
    margin: 0 auto;
  }
  .our-team p {
    text-align: center;
  }
}

.features-vpn {
  padding: 86px 0 208px 0;
}
.features-vpn h2 {
  max-width: 858px;
  margin-bottom: 67px;
}
.features-vpn h2 br {
  display: none;
}
@media screen and (max-width: 768px) {
  .features-vpn {
    padding: 45px 0 100px 0;
  }
  .features-vpn h2 {
    text-align: center;
    width: 100%;
    margin: 0 auto 55px auto;
    max-width: 350px;
  }
  .features-vpn h2 br {
    display: block;
  }
}

.card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  position: relative;
  z-index: 4;
}
.card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 23px;
}
.card-container .card:nth-child(even) .card__img {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.card__img {
  background: #181818;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.card__img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.card__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 116px;
  max-width: 415px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.card__text p {
  font-size: 18px;
  line-height: 1.4;
}
.card__text p a {
  color: #FF0066;
  text-decoration: underline;
}
.card__text p a:hover {
  text-decoration: none;
}
.card__text h3 {
  margin-bottom: 15px;
  color: #FFFFFF;
}
.card .button {
  min-width: 104px;
  margin-top: 49px;
}
@media screen and (max-width: 1024px) {
  .card__text {
    margin-left: 0;
    margin-right: 0;
  }
  .card .card__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .card {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .card-container {
    gap: 44px;
  }
  .card-container .card {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 25px;
  }
  .card-container .card__text {
    margin: 0 auto;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .card-container .card__text h3 {
    margin-bottom: 10px;
  }
  .card-container .card__text p {
    font-size: 16px;
  }
  .card-container .card .button {
    margin-top: 36px;
  }
  .card-container .card:nth-child(even) .card__img {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .card-container .card:nth-child(even).card--big {
    margin-right: 0;
  }
}

.top-locations {
  padding: 87px 0 180px 0;
  position: relative;
  overflow: hidden;
}
.top-locations h2 {
  margin-bottom: 42px;
  text-align: center;
}
.top-locations-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 26px 1fr 26px 1fr 26px 1fr 26px 1fr 26px 1fr;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 32px 26px;
  position: relative;
  z-index: 3;
}
.top-locations-container .span-3 {
  -ms-grid-column-span: 3;
  grid-column: span 3;
}
.top-locations-container .span-2 {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.top-locations__item {
  background-color: #181818;
  min-height: 166px;
  padding: 43px 40px 47px 47px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 76px 30px 1fr;
  grid-template-columns: 76px 1fr;
  border-radius: 6px;
  grid-gap: 30px;
}
.top-locations__item h3 {
  color: #FFFFFF;
}
.top-locations__img {
  max-height: 76px;
}
.top-locations__img img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.top-locations__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.top-locations__label {
  color: #767676;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.top-locations__number {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #FF0066;
  background: #EDEDED;
  border-radius: 5px;
  min-width: 31px;
  padding: 0 6px;
}
@media screen and (min-width: 992px) {
  .top-locations__item--usa {
    background: #181818 url("../images/section/top-locations/usa-bg.svg") no-repeat;
    background-position: bottom 0px right 10px;
    background-size: 32%;
  }
  .top-locations__item--france {
    background: #181818 url("../images/section/top-locations/france-bg.svg") no-repeat center right;
    background-position: bottom 8px right 87px;
    background-size: 24%;
  }
  .top-locations .triangle-right,
  .top-locations .bg-shadow-pink {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .top-locations {
    padding: 70px 0 78px 0;
  }
  .top-locations h2 {
    margin-bottom: 27px;
  }
  .top-locations-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 5px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
  }
  .top-locations-container .span-2,
  .top-locations-container .span-3 {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
  .top-locations-container .span-sm-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -ms-grid-columns: 58px 22px 1fr;
    grid-template-columns: 58px 1fr;
    grid-gap: 22px;
    min-height: 119px;
  }
  .top-locations__item {
    padding: 27px 17px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    min-height: 156px;
    grid-gap: 4px;
  }
  .top-locations__img {
    max-height: 58px;
  }
  .top-locations__number {
    line-height: 1.28;
  }
  .top-locations .triangle-right,
  .top-locations .bg-shadow-pink {
    display: block;
  }
}

.list-locations {
  position: relative;
  overflow: hidden;
  padding: 220px 0 224px 0;
}
.list-locations h2 {
  text-align: center;
  margin-bottom: 13px;
}
.list-locations__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 10px 1fr 10px 1fr;
  grid-template-columns: 3fr 1fr 1fr;
  gap: 10px;
  border-bottom: 1px solid #313637;
  height: 59px;
}
.list-locations__servers, .list-locations__users {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.list-locations__servers span {
  background: #EDEDED;
  border-radius: 5px;
  height: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 26px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #FF0066;
  padding: 0 6px;
}
.list-locations__users {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
}
.list-locations__header h4, .list-locations__header .h4 {
  color: #FF0066;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.list-locations .flag {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 48px 33px 1fr;
  grid-template-columns: 48px 1fr;
  gap: 33px;
  padding-top: 0;
}
.list-locations .flag span {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  margin-top: 0;
  text-align: left;
}
.list-locations .bg-shadow-pink {
  top: 0;
}
@media screen and (max-width: 768px) {
  .list-locations {
    padding: 50px 0 100px 0;
  }
  .list-locations__header {
    display: none;
  }
  .list-locations__content {
    border-top: 1px solid #313637;
  }
  .list-locations__item {
    -ms-grid-columns: 3fr 40px 1fr;
    grid-template-columns: 3fr 40px 1fr;
  }
  .list-locations .flag {
    grid-gap: 13px;
  }
  .list-locations .flag span {
    font-size: 20px;
  }
  .list-locations__servers span {
    height: 18px;
    font-size: 12px;
  }
  .list-locations__users {
    font-size: 16px;
  }
  .list-locations .triangle-left,
  .list-locations .bg-shadow-pink {
    display: none;
  }
}

.dropdown {
  position: relative;
}
.dropdown.active .dropdown__menu {
  display: block;
}
.dropdown .dropdown__menu {
  position: absolute;
  top: 100%;
  width: 100%;
  display: none;
  left: 0;
  background-color: #ffffff;
  z-index: 5;
  max-height: 400px;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.dropdown .dropdown__menu::-webkit-scrollbar {
  width: 4px;
}
.dropdown .dropdown__menu::-webkit-scrollbar-track {
  background: #ffffff;
}
.dropdown .dropdown__menu::-webkit-scrollbar-thumb {
  background: #888;
}
.dropdown .dropdown__menu::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.dropdown ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.dropdown ul li {
  width: 100%;
}
.dropdown ul li a {
  width: 100%;
}
.dropdown .open {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.dropdown .open .show-menu {
  position: relative;
  margin-left: auto;
  border: solid #292D32;
  border-width: 1.5px 1.5px 0px 0px;
  top: -2px;
  width: 8px;
  height: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  border-top-right-radius: 2px;
}

.select-location {
  padding: 96px 0 113px 0;
}
.select-location__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 416px;
  margin: 0 auto;
}
.select-location__form form {
  width: 100%;
}
.select-location .select2-container {
  width: 100% !important;
}
.select-location .select2-container .select2-selection--single,
.select-location .select2-container .select2-selection__rendered {
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
}
.select-location .select2-container .select2-selection--single {
  padding: 15px 19px 16px 25px;
}
.select-location .select2-container .select2-search--dropdown {
  padding: 5px 19px 7px 25px;
}
.select-location .select2-container .select2-search--dropdown .select2-search__field {
  height: 36px;
  font-size: 18px;
}
.select-location .select2-container .select2-selection__rendered {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0;
}
.select-location .select2-container .select2-results__option--selected,
.select-location .select2-container .select2-results__option--selectable {
  padding-left: 25px;
  color: #181818;
  font-size: 18px;
}
.select-location .select2-container .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #FF0066;
  color: #FFFFFF;
}
.select-location .select2-container .select2-results__option {
  padding: 6px 6px 6px 25px;
}
.select-location .select2-container .select2-results__options {
  color: #181818;
}
.select-location .select2-container--default .select2-results > .select2-results__options {
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.select-location .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
  width: 4px;
}
.select-location .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
  background: #ffffff;
}
.select-location .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
  background: #888;
}
.select-location .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.select-location .select2-container--default .select2-selection--single .select2-selection__arrow {
  position: relative;
  margin-left: auto;
  border: solid #FF0066;
  border-width: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5 21C16.7467 21 21 16.7467 21 11.5C21 6.25329 16.7467 2 11.5 2C6.25329 2 2 6.25329 2 11.5C2 16.7467 6.25329 21 11.5 21Z' stroke='%23FF0066' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 22L20 20' stroke='%23FF0066' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  top: -2px;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .select-location .select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    border-top-right-radius: 2px;
    border-width: 1.5px 1.5px 0px 0px;
    width: 8px;
    height: 8px;
  }
}
.select-location .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: transparent;
}
.select-location h2 {
  text-align: center;
  margin-bottom: 27px;
  margin: 0 auto 27px auto;
  max-width: 75%;
}
.select-location__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 43px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 35px;
  margin-bottom: 100px;
}
.select-location__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
  font-size: 20px;
}
.select-location__info-item::before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: relative;
}
.select-location__info-item.available::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 2H5C3.34961 2 2 3.3501 2 5V19C2 20.6499 3.34961 22 5 22H19C20.6504 22 22 20.6499 22 19V5C22 3.3501 20.6504 2 19 2ZM16.46 10.21L11.46 15.21C11.2598 15.3999 11.0098 15.5 10.75 15.5C10.4902 15.5 10.2402 15.3999 10.04 15.21L7.54004 12.71C7.15039 12.3198 7.15039 11.6802 7.54004 11.29C7.92969 10.8999 8.57031 10.8999 8.95996 11.29L10.75 13.0898L15.04 8.79004C15.4297 8.3999 16.0703 8.3999 16.46 8.79004C16.8496 9.18018 16.8496 9.81982 16.46 10.21Z' fill='%231BFFC8'/%3E%3C/svg%3E%0A");
}
.select-location__info-item.unavailable::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 2H5C3.3501 2 2 3.3501 2 5V19C2 20.6499 3.3501 22 5 22H19C20.6499 22 22 20.6499 22 19V5C22 3.3501 20.6499 2 19 2ZM15.71 14.29C16.1001 14.6802 16.1001 15.3198 15.71 15.71C15.5098 15.8999 15.2598 16 15 16C14.7402 16 14.4902 15.8999 14.29 15.71L12 13.4102L9.70996 15.71C9.50977 15.8999 9.25977 16 9 16C8.74024 16 8.49024 15.8999 8.29004 15.71C7.8999 15.3198 7.8999 14.6802 8.29004 14.29L10.5898 12L8.29004 9.70996C7.8999 9.31983 7.8999 8.68018 8.29004 8.29004C8.68018 7.8999 9.31983 7.8999 9.70996 8.29004L12 10.5898L14.29 8.29004C14.6802 7.8999 15.3198 7.8999 15.71 8.29004C16.1001 8.68018 16.1001 9.31983 15.71 9.70996L13.4102 12L15.71 14.29Z' fill='%23FF0066'/%3E%3C/svg%3E%0A");
}
@media (max-width: 768px) {
  .select-location {
    padding: 70px 0 46px 0;
  }
  .select-location h2 {
    margin-bottom: 18px;
    max-width: 100%;
  }
  .select-location__info {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 420px;
    margin: 36px auto;
  }
  .select-location__info-item {
    font-size: 16px;
  }
}

.why-free {
  padding: 165px 0 230px 0;
}
.why-free h2 {
  max-width: 858px;
  margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .why-free {
    padding: 55px 0 120px 0;
  }
  .why-free h2 {
    text-align: center;
    width: 100%;
  }
}

.glossary-tab {
  padding: 100px 0 120px 0;
}
.glossary-tab .tabs-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}
.glossary-tab .tabs-nav li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  margin-bottom: 30px;
}
.glossary-tab .tabs-nav li a {
  width: 23px;
  text-align: center;
}
.glossary-tab .tabs-nav li a::after {
  content: "";
  width: 23px;
  position: absolute;
  bottom: -21px;
  height: 0;
  background-color: #FF0066;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
  left: 0;
  right: 0;
}
.glossary-tab .tabs-nav li.disabled {
  cursor: default;
}
.glossary-tab .tabs-nav li.disabled:hover a::after, .glossary-tab .tabs-nav li.disabled.active a::after {
  height: 0;
}
.glossary-tab .tabs-nav li.disabled a {
  color: #333333;
  cursor: default;
}
.glossary-tab .tabs-nav li:hover a::after, .glossary-tab .tabs-nav li.active a::after {
  height: 3px;
}
.glossary-tab .tabs-nav li a {
  color: #fff;
}
.glossary-tab .tabs-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.glossary-tab .tab-item {
  width: 305px;
  display: inline-block;
  padding-bottom: 26px;
  margin-bottom: 50px;
  border-bottom: 1px solid #313536;
}
.glossary-tab .tab-item .h1 {
  color: #FF0066;
  position: relative;
  margin-bottom: 10px;
}
.glossary-tab .tab-item .h1 span {
  position: relative;
  top: -10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #FF0066;
  background: #EDEDED;
  border-radius: 5px;
  min-width: 21px;
  padding: 0 6px;
  margin-left: 11px;
}
.glossary-tab .tab-item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.glossary-tab .tab-item li a {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.glossary-tab .tab-item li a span {
  max-width: 265px;
}
.glossary-tab .tab-item li a:hover, .glossary-tab .tab-item li a:focus {
  color: #FF0066;
  text-decoration: underline;
}
.glossary-tab .tab-item li a:hover::after, .glossary-tab .tab-item li a:focus::after {
  border-color: #FF0066;
}
.glossary-tab .tab-item li a::after {
  content: "";
  position: relative;
  border: solid #292D32;
  border-width: 1.5px 1.5px 0px 0px;
  width: 13px;
  height: 13px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top-right-radius: 2px;
  margin-left: auto;
  top: 10px;
}
@media screen and (max-width: 1200px) {
  .glossary-tab .tabs-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (305px)[2];
    grid-template-columns: repeat(2, 305px);
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}
@media screen and (max-width: 768px) {
  .glossary-tab {
    padding: 60px 0 80px 0;
  }
  .glossary-tab .tabs-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
  }
  .glossary-tab .tabs-nav li {
    margin-bottom: 10px;
  }
  .glossary-tab .tabs-nav li a::after {
    bottom: -7px;
  }
  .glossary-tab .tabs-content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .glossary-tab .tab-item {
    width: 100%;
    margin-bottom: 15px;
  }
  .glossary-tab .tab-item .h1 {
    margin-bottom: 20px;
  }
  .glossary-tab .tab-item .h1 span {
    top: -5px;
  }
  .glossary-tab .tab-item li a {
    line-height: 1.3;
    padding: 2px 0;
  }
  .glossary-tab .tab-item li a::after {
    margin-right: 10px;
  }
}

.tab .tabs-content {
  overflow: hidden;
}

.two-steps {
  overflow: hidden;
  padding: 180px 0;
  position: relative;
}
.two-steps__text {
  max-width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.two-steps__text h2 {
  margin-bottom: 70px;
}
.two-steps__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 32px;
}
.two-steps__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.two-steps__item .number {
  font-weight: 700;
  font-size: 100px;
  line-height: 1;
  color: #FF0066;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.two-steps__item .number::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  border-bottom: 1px dashed #FF0066;
  bottom: 18px;
  left: 57%;
  z-index: 1;
}
.two-steps__item:not(:first-child) .number {
  margin-right: -13px;
}
.two-steps__img {
  position: relative;
  z-index: 4;
}
.two-steps .bg-shadow-pink {
  z-index: -1;
}
.two-steps .bg-shadow-pink,
.two-steps .triangle-left {
  top: 0;
}
@media screen and (max-width: 992px) {
  .two-steps__text {
    max-width: 100%;
    margin-bottom: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .two-steps__text h2 {
    text-align: center;
    margin-bottom: 35px;
  }
  .two-steps__container {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 10px;
  }
}
@media screen and (max-width: 762px) {
  .two-steps {
    padding: 120px 0 100px 0;
  }
  .two-steps__text h2 {
    max-width: 360px;
  }
  .two-steps__text .button span {
    background-color: #171012;
  }
  .two-steps__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
  }
  .two-steps__item:not(:first-child) .number {
    width: 34px;
    margin-right: 13px;
  }
}

.cards-content {
  padding: 165px 0 180px 0;
  position: relative;
  overflow: hidden;
  z-index: 3;
}
.cards-content h2 {
  max-width: 905px;
  margin-bottom: 65px;
}
.cards-content .bg-shadow-pink {
  top: 0;
  z-index: -1;
}
.cards-content--big .card-container .card:nth-child(even) .card__text {
  margin-left: 0;
  margin-right: 110px;
}
.cards-content--big .card-container .card__text {
  max-width: 100%;
}
@media screen and (max-width: 992px) {
  .cards-content h2 {
    text-align: center;
    margin: 0 auto 26px auto;
  }
  .cards-content--big h2 {
    max-width: 350px;
  }
}
@media screen and (max-width: 768px) {
  .cards-content {
    padding: 80px 0 60px 0;
  }
  .cards-content--big .card-container .card:nth-child(even) .card__text {
    margin-right: 0px;
  }
}

.why-enjoy {
  padding: 73px 0 90px 0;
}
.why-enjoy__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  justify-items: flex-start;
}
.why-enjoy__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 21px;
}
.why-enjoy h2 {
  padding-right: 35px;
}
.why-enjoy h3 {
  color: #FFFFFF;
  text-align: center;
}
.why-enjoy__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 75px 1fr 75px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 75px;
  -ms-grid-column-align: end;
  justify-self: end;
}
.why-enjoy__item-img {
  width: 62px;
  height: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.why-enjoy__item-img img {
  max-width: 100%;
}
.why-enjoy--lp {
  padding-bottom: 0;
}
.why-enjoy--lp .why-enjoy__container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.why-enjoy--lp .why-enjoy__cards {
  -ms-grid-columns: minmax(auto, 243px) 29px minmax(auto, 243px) 29px minmax(auto, 243px);
  grid-template-columns: repeat(3, minmax(auto, 243px));
  grid-gap: 29px;
}
.why-enjoy--lp .why-enjoy__item {
  min-height: 204px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  position: relative;
}
.why-enjoy--lp .why-enjoy__item::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  background: #181818;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: -1;
}
.why-enjoy--lp .why-enjoy__item:hover h3, .why-enjoy--lp .why-enjoy__item.active h3 {
  color: #FF0066;
}
.why-enjoy--lp .why-enjoy__item:hover::after, .why-enjoy--lp .why-enjoy__item.active::after {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 1;
}
@media screen and (max-width: 992px) {
  .why-enjoy {
    padding: 50px 0 100px 0;
  }
  .why-enjoy h2 {
    text-align: center;
    max-width: 70%;
    margin: 0 auto 50px auto;
    padding: 0;
  }
  .why-enjoy__container {
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .why-enjoy__cards {
    grid-gap: 21px;
    -ms-grid-column-align: start;
    justify-self: start;
  }
}
@media screen and (max-width: 768px) {
  .why-enjoy {
    padding: 50px 0 25px 0;
  }
  .why-enjoy__cards {
    grid-gap: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .why-enjoy__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .why-enjoy h2 {
    margin-bottom: 32px;
  }
  .why-enjoy h3 {
    text-align: left;
  }
  .why-enjoy h3 br {
    display: none;
  }
  .why-enjoy--lp .why-enjoy__cards {
    grid-gap: 20px;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .why-enjoy--lp .why-enjoy__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: auto;
  }
  .why-enjoy--lp .why-enjoy__item::after {
    display: none;
  }
  .why-enjoy--lp .why-enjoy__item h3 {
    text-align: center;
  }
}

.card-info {
  padding: 90px 0 200px 0;
}
.card-info__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 416px 134px auto;
  grid-template-columns: 416px auto;
  grid-gap: 134px;
}
.card-info__img {
  height: 357px;
  background: #181818;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.card-info__img img {
  margin-top: 10px;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.card-info__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 21px;
}
.card-info__text p {
  max-width: 635px;
  font-size: 18px;
  line-height: 1.4;
}
@media screen and (max-width: 1200px) {
  .card-info__container {
    grid-gap: 45px;
  }
}
@media screen and (max-width: 992px) {
  .card-info {
    padding: 25px 0 50px 0;
  }
  .card-info__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 45px;
  }
  .card-info__img {
    height: 301px;
    max-width: 416px;
    width: 100%;
    margin: 0 auto;
  }
  .card-info__text {
    max-width: 400px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
  }
  .card-info__text h2 {
    text-align: center;
  }
  .card-info__text p {
    text-align: center;
    font-size: 16px;
  }
}

.promo {
  padding-top: 142px;
}
.promo .bg-map {
  background: url("../images/section/bg/planet-big.svg") no-repeat bottom -3% right 30px;
  padding-bottom: 180px;
}
.promo__card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 120px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.promo__card h2 {
  margin-bottom: 26px;
}
.promo__card-text {
  margin-left: 115px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
}
.promo--youtube {
  margin-bottom: 170px;
}
.promo--youtube .promo__card-text {
  margin-left: 0;
  margin-right: 80px;
}
.promo--youtube .promo__card-text h3 {
  color: #FFFFFF;
}
.promo--youtube .promo__card-text p {
  margin-top: 41px;
  max-width: 511px;
}
.promo--youtube .promo__card-img {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.promo__info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  padding: 30px 0;
}
.promo__info-title {
  max-width: 584px;
}
.promo__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-left: 115px;
  margin-top: -25px;
}
.promo__number span {
  font-weight: 400;
  font-size: 200px;
  line-height: 1;
  background: linear-gradient(93.62deg, #75EDFD 0.39%, #FF0066 98.02%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.promo .text-center {
  max-width: 100%;
}
.promo .text-center p {
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .promo__card {
    grid-gap: 40px;
  }
  .promo__card-text {
    margin-left: 0px;
  }
  .promo__info {
    grid-gap: 40px;
    -ms-grid-columns: 1fr 40px -webkit-max-content;
    -ms-grid-columns: 1fr 40px max-content;
    grid-template-columns: 1fr -webkit-max-content;
    grid-template-columns: 1fr max-content;
  }
  .promo__number {
    margin-left: 0px;
  }
}
@media screen and (max-width: 992px) {
  .promo__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .promo__info * {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .promo {
    padding-top: 80px;
  }
  .promo--youtube {
    margin-bottom: 70px;
  }
  .promo--youtube .promo__card-text {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
  }
  .promo--youtube .promo__card-text h3 {
    text-align: center;
  }
  .promo--youtube .promo__card-text p {
    max-width: 100%;
  }
  .promo--youtube .button span {
    height: auto;
    font-size: 20px;
    text-align: center;
    padding: 19px 28px !important;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .promo--youtube .button img {
    width: 26px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 0;
  }
  .promo__card {
    grid-gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }
  .promo__card-img {
    margin: 0 auto;
  }
  .promo__card h2 {
    margin-bottom: 31px;
    text-align: center;
  }
  .promo__card p {
    text-align: center;
    font-size: 16px;
  }
  .promo__info {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 40px;
    padding-top: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .promo__info h2 {
    text-align: center;
  }
  .promo__number {
    margin: 0;
    padding-left: 24px;
  }
  .promo__number span {
    font-size: 95px;
    display: block;
    margin: 0 auto;
  }
  .promo .bg-map {
    background: url("../images/section/bg/planet-big.svg") no-repeat bottom -6% right -22px;
    padding-bottom: 95px;
    background-size: 158%;
    -webkit-box-shadow: inset 0px -26px 40px 0px #0f0f0f;
    box-shadow: inset 0px -26px 40px 0px #0f0f0f;
  }
}

.free-proxies {
  position: relative;
  padding: 160px 0 200px;
  overflow: hidden;
  z-index: 4;
}
.free-proxies__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 150px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 77px 150px;
}
.free-proxies__container > h2:first-of-type {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  max-width: 49%;
}
.free-proxies__item {
  max-width: 526px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 27px;
}
.free-proxies__item p {
  font-size: 18px;
  line-height: 1.4;
}
.free-proxies__item-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.free-proxies__item-buttons .button {
  margin: 0;
}
.free-proxies__item-buttons .button img {
  margin-right: 10px;
}
.free-proxies .bg-shadow-pink {
  top: 0px;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .free-proxies__container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 77px 50px;
  }
}
@media screen and (max-width: 992px) {
  .free-proxies__container {
    grid-gap: 50px;
  }
  .free-proxies__container > h2:first-of-type {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
  }
  .free-proxies__container > h2:last-of-type {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    text-align: center;
  }
  .free-proxies__item-buttons {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    margin: 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .free-proxies {
    padding: 70px 0 90px;
  }
  .free-proxies__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 35px;
  }
  .free-proxies__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
  }
  .free-proxies__item:not(:last-of-type) {
    margin-bottom: 25px;
  }
  .free-proxies__item p {
    text-align: center;
    font-size: 16px;
  }
  .free-proxies__item-buttons {
    gap: 18px;
    margin-top: 15px;
  }
  .free-proxies__item-buttons .button {
    font-size: 16px;
    font-weight: 400;
  }
  .free-proxies__item-buttons .button span {
    padding: 5px 32px;
  }
}

.set-up {
  margin-bottom: 160px;
}
.set-up__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 26px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 26px;
}
.set-up h2 {
  margin: 32px 0 35px 0;
}
.set-up__list {
  max-width: 495px;
}
.set-up ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.set-up ul li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 85px 24px 1fr;
  grid-template-columns: 85px 1fr;
  grid-gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.set-up__text {
  max-width: 340px;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  padding: 15px 0;
}
.set-up .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  position: relative;
  z-index: 1;
}
.set-up .number::after, .set-up .number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.set-up .number::after {
  width: 100%;
  height: 100%;
  background: linear-gradient(93.62deg, #75EDFD 0.39%, #FF0066 98.02%);
  opacity: 0.1;
}
.set-up .number::before {
  width: 54px;
  height: 54px;
  background: linear-gradient(93.62deg, #75EDFD 0.39%, #FF0066 98.02%);
  opacity: 0.2;
}
.set-up .number span {
  position: relative;
  text-align: center;
  font-size: 14px;
  line-height: 2;
  z-index: 2;
  color: #FFFFFF;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(93.62deg, #75EDFD 0.39%, #FF0066 98.02%);
}
.set-up a {
  color: #FF0066;
}
.set-up a:hover {
  text-decoration: underline;
}
.set-up + .articles {
  padding-top: 0px;
}
@media screen and (max-width: 992px) {
  .set-up {
    margin-bottom: 70px;
  }
  .set-up h2 {
    margin-top: 0px;
  }
  .set-up__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 39px;
    justify-items: center;
  }
  .set-up h2 {
    text-align: left;
  }
  .set-up ul {
    gap: 17px;
  }
  .set-up__list {
    max-width: 454px;
  }
  .set-up__text {
    max-width: 100%;
    font-size: 20px;
    padding: 10px 0;
  }
}
@media screen and (max-width: 420px) {
  .set-up br {
    display: none;
  }
}

.three-steps {
  overflow: hidden;
  padding: 180px 0;
  position: relative;
}
.three-steps__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 30px;
}
.three-steps__text h2 {
  margin-bottom: 70px;
}
.three-steps__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.three-steps__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.three-steps__item .number {
  font-weight: 700;
  font-size: 100px;
  line-height: 1;
  color: #FF0066;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  margin-right: -15px;
}
.three-steps__item .number::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  border-bottom: 1px dashed #FF0066;
  bottom: 18px;
  left: 57%;
  z-index: 1;
}
.three-steps__img {
  position: relative;
  z-index: 4;
}
.three-steps .bg-shadow-pink {
  z-index: -1;
}
.three-steps .bg-shadow-pink,
.three-steps .triangle-left {
  top: 0;
}
@media screen and (max-width: 992px) {
  .three-steps__text {
    max-width: 100%;
    margin-bottom: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .three-steps__text h2 {
    text-align: center;
    margin-bottom: 35px;
  }
  .three-steps__container {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 10px;
  }
}
@media screen and (max-width: 762px) {
  .three-steps {
    padding: 120px 0 100px 0;
  }
  .three-steps__text h2 {
    max-width: 360px;
  }
  .three-steps__text .button span {
    background-color: #171012;
  }
  .three-steps__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
  }
  .three-steps__item:not(:first-child) .number {
    width: 34px;
    margin-right: 13px;
  }
  .three-steps .text-center {
    margin-top: 0;
  }
}

.offers {
  margin-bottom: 150px;
}
.offers h2 {
  margin-bottom: 52px;
}
.offers__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 26px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 63px 26px;
}
.offers__item-img {
  background: #181818;
  padding: 54px 58px 0 58px;
  max-height: 416px;
  overflow: hidden;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.offers__item-img img {
  max-width: 100%;
  margin: auto auto 0 auto;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: drop-shadow(10px 10px 30px #0F0F0F);
  filter: drop-shadow(10px 10px 30px #0F0F0F);
}
.offers__item-title {
  margin-top: 45px;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .offers {
    margin-bottom: 120px;
  }
  .offers h2 {
    text-align: center;
    margin-bottom: 24px;
  }
  .offers__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
  .offers__item-img {
    padding: 22px 33px 0 33px;
  }
  .offers__item-title {
    font-size: 20px;
    text-align: center;
    margin-top: 25px;
  }
}
.unlimited-section {
  padding: 138px 0;
}
.unlimited-section h2 {
  margin-bottom: 80px;
}
.unlimited-section__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(auto, 308px) 23px auto 23px minmax(auto, 308px) 23px minmax(auto, 420px);
  grid-template-columns: minmax(auto, 308px) auto minmax(auto, 308px) minmax(auto, 420px);
  -ms-grid-rows: 342px 71px 342px;
  grid-template-rows: 342px 342px;
  grid-gap: 71px 23px;
}
.unlimited-section__container > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.unlimited-section__container > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.unlimited-section__container > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.unlimited-section__container > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
.unlimited-section__container > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.unlimited-section__container > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.unlimited-section__container > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.unlimited-section__container > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}
.unlimited-section__item {
  padding: 40px;
  background: #181818;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.unlimited-section__item h3 {
  color: #FFFFFF;
  max-width: 170px;
  position: relative;
  z-index: 4;
}
.unlimited-section__item-img {
  position: absolute;
  z-index: 3;
}
.unlimited-section__item-img img {
  -o-object-fit: contain;
  object-fit: contain;
}
.unlimited-section__item-img img + .unlimited-section__item-img-mob {
  display: none;
}
.unlimited-section__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: #FF0066;
  -webkit-filter: blur(90px);
  filter: blur(90px);
  opacity: 0;
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.unlimited-section__item:hover h3 {
  color: #FF0066;
}
.unlimited-section__item:hover::after {
  opacity: 1;
}
.unlimited-section__item:nth-child(1), .unlimited-section__item:nth-child(5) {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.unlimited-section__item:nth-child(1) .unlimited-section__item-img {
  bottom: 0;
  right: 0;
  height: 100%;
}
.unlimited-section__item:nth-child(1) .unlimited-section__item-img img {
  height: 100%;
}
.unlimited-section__item:nth-child(2) .unlimited-section__item-img {
  top: 90px;
  left: 0;
  width: 100%;
}
.unlimited-section__item:nth-child(2) .unlimited-section__item-img img {
  margin: 0 auto;
}
.unlimited-section__item:nth-child(3) {
  grid-row: 1/-1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-column: 4/5;
  background: linear-gradient(137.58deg, rgba(117, 237, 253, 0.22) 11.75%, rgba(24, 24, 24, 0.51) 28.06%, rgba(24, 24, 24, 0.44) 44.73%, rgba(255, 0, 102, 0.29) 79.84%);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.unlimited-section__item:nth-child(3) h3 {
  margin-top: 60%;
}
.unlimited-section__item:nth-child(3) .unlimited-section__item-img {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  width: 100%;
}
.unlimited-section__item:nth-child(3) .unlimited-section__item-img img {
  margin: 0 auto;
}
.unlimited-section__item:nth-child(4) .unlimited-section__item-img {
  top: 58px;
  left: 10px;
  width: 100%;
}
.unlimited-section__item:nth-child(4) .unlimited-section__item-img img {
  margin: 0 auto;
}
.unlimited-section__item:nth-child(5) .unlimited-section__item-img {
  top: 43px;
  left: 0;
  width: 100%;
}
.unlimited-section__item:nth-child(5) .unlimited-section__item-img img {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .unlimited-section {
    padding: 80px 0 150px 0;
  }
  .unlimited-section h2 {
    text-align: center;
    margin-bottom: 25px;
  }
  .unlimited-section__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 26px;
  }
  .unlimited-section__item {
    height: 225px;
    padding: 28px;
  }
  .unlimited-section__item h3 {
    max-width: 145px;
  }
  .unlimited-section__item:nth-child(2) .unlimited-section__item-img {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .unlimited-section__item:nth-child(2) .unlimited-section__item-img img {
    margin: 0 21px 0 auto;
  }
  .unlimited-section__item:nth-child(3) {
    background: #181818;
  }
  .unlimited-section__item:nth-child(3) h3 {
    margin-top: auto;
  }
  .unlimited-section__item:nth-child(3) .unlimited-section__item-img img {
    display: none;
  }
  .unlimited-section__item:nth-child(3) .unlimited-section__item-img .unlimited-section__item-img-mob {
    right: 0;
    margin: 0 0 0 auto;
    display: block;
  }
  .unlimited-section__item:nth-child(4) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .unlimited-section__item:nth-child(4) .unlimited-section__item-img {
    top: 56%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .unlimited-section__item:nth-child(4) .unlimited-section__item-img img {
    display: none;
  }
  .unlimited-section__item:nth-child(4) .unlimited-section__item-img .unlimited-section__item-img-mob {
    right: 0;
    margin: auto 0 auto auto;
    display: block;
  }
  .unlimited-section__item:nth-child(5) .unlimited-section__item-img {
    top: 14px;
    width: 93%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.step-by-step {
  padding: 114px 0 140px 0;
  position: relative;
  overflow: hidden;
}
.step-by-step + .text, .step-by-step + .text-list {
  margin-top: 0;
  padding-top: 0;
}
.step-by-step__text {
  margin-bottom: 63px;
}
.step-by-step__text p {
  margin-top: 17px;
  font-size: 24px;
  max-width: 1100px;
}
.step-by-step__text p a {
  color: #FF0066;
  text-decoration: underline;
}
.step-by-step__text p a:hover {
  text-decoration: none;
}
.step-by-step__text p + h2 {
  margin-top: 112px;
}
.step-by-step .h3 {
  color: #FF0066;
  text-transform: uppercase;
  font-weight: 500;
  max-width: 168px;
}
.step-by-step__item {
  border-bottom: 1px solid #313536;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 25px 0 24px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 220px) 20px auto 20px minmax(0, 420px);
  grid-template-columns: minmax(0, 220px) auto minmax(0, 420px);
  grid-gap: 20px;
}
.step-by-step__item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 0px;
  height: 100%;
}
.step-by-step__item-text .step-by-step__item-title {
  max-width: 417px;
  font-weight: 400;
  font-size: 45px;
  line-height: 1.2;
}
.step-by-step__item-text .step-by-step__item-title a {
  text-decoration: underline;
}
.step-by-step__item-text p {
  margin-top: 16px;
  font-size: 20px;
}
.step-by-step__item-text .button {
  margin-top: 35px;
}
.step-by-step__item-text .h3 {
  display: none;
}
.step-by-step__item-img {
  max-width: 525px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.step-by-step__item-img img {
  -o-object-fit: contain;
  object-fit: contain;
}
.step-by-step__item:nth-child(5) {
  border-bottom: 0;
}
.step-by-step ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.step-by-step ul + .button {
  margin-top: 39px;
}
.step-by-step ul li {
  position: relative;
  padding-left: 19px;
  font-size: 18px;
  line-height: 1.4;
}
.step-by-step ul li a {
  text-decoration: underline;
  display: inline-block;
  padding: 0 5px;
}
.step-by-step ul li a:hover {
  text-decoration: none;
}
.step-by-step ul li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  background: linear-gradient(-273.4deg, #75EDFD 4.28%, #FF0066 93.81%);
  margin-right: 9px;
  left: 0;
  top: 9px;
}
.step-by-step ul li::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  background: #0F0F0F;
  left: 2px;
  top: 11px;
}
@media screen and (max-width: 1200px) {
  .step-by-step__item {
    -ms-grid-columns: 0.5fr 20px 2fr 20px 1.5fr;
    grid-template-columns: 0.5fr 2fr 1.5fr;
  }
}
@media screen and (max-width: 993px) {
  .step-by-step h2 {
    text-align: center;
  }
  .step-by-step__item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    border-bottom: none;
    grid-gap: 16px 0px;
    padding: 0;
    margin-bottom: 57px;
  }
  .step-by-step__item:last-child {
    margin-bottom: 0;
  }
  .step-by-step__item-img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    max-width: 100%;
  }
  .step-by-step__item .h3 {
    display: none;
  }
  .step-by-step__item-right .step-by-step__item-title {
    margin-bottom: 14px;
  }
  .step-by-step__item-text {
    margin-left: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(78px, 98px) 14px 1fr;
    grid-template-columns: minmax(78px, 98px) 1fr;
    grid-gap: 0 14px;
  }
  .step-by-step__item-text .step-by-step__item-title {
    max-width: 100%;
    font-weight: 500;
    font-size: 20px;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
  .step-by-step__item-text .step-by-step__item-title br {
    display: none;
  }
  .step-by-step__item-text .h3 {
    display: block;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
  }
  .step-by-step__item-text p {
    margin-top: 0;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
  .step-by-step__item-text .button {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    width: 100%;
    max-width: 350px;
    margin: 46px auto 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .step-by-step {
    padding: 40px 0 70px 0;
  }
  .step-by-step .h3 {
    text-align: left;
  }
  .step-by-step__text {
    max-width: 351px;
    margin: 0 auto 20px auto;
    text-align: center;
  }
  .step-by-step__text h2, .step-by-step__text p {
    text-align: center;
  }
  .step-by-step__text p {
    font-size: 20px;
  }
  .step-by-step ul {
    gap: 15px;
  }
  .step-by-step ul li {
    font-weight: 400;
    font-size: 16px;
  }
  .step-by-step ul li::before {
    top: 7px;
  }
  .step-by-step ul li::after {
    top: 9px;
  }
}

.products-card {
  background-color: #0F0F0F;
  position: relative;
  padding: 100px 0 100px 0;
  overflow: hidden;
}
.products-card h2 {
  margin-bottom: 37px;
  text-align: center;
}
.products-card .button {
  min-width: 168px;
  margin-top: auto;
}
.products-card__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 75px;
  grid-column-gap: 25px;
  margin-bottom: 75px;
}
.products-card__list.head-card {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
.products-card .big-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.products-card .big-card .item__img {
  margin: 0;
}
.products-card .big-card .item__img.bg {
  position: absolute;
  top: 0;
  bottom: 0;
}
.products-card .big-card .item__img.bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 1279px) {
  .products-card .big-card .item__img.bg img {
    -o-object-position: left;
    object-position: left;
  }
}
@media screen and (max-width: 767px) {
  .products-card .big-card .item__img.bg {
    background: url("../images/section/product/prod-3-mob.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    width: 100%;
  }
  .products-card .big-card .item__img.bg img {
    display: none;
  }
}
.products-card .big-card .products-card__item {
  margin-bottom: 75px;
  position: relative;
  width: 100%;
  height: 538px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1279px) {
  .products-card .big-card .products-card__item {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .products-card .big-card .products-card__item {
    height: 133.8889vw;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.products-card .big-card .content__wrapp {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 0 15.625vw 0 23.0208vw;
}
@media screen and (max-width: 1679px) {
  .products-card .big-card .content__wrapp {
    padding: 0 17.857vw 0 26.31vw;
  }
}
@media screen and (max-width: 1439px) {
  .products-card .big-card .content__wrapp {
    padding: 0 20.6897vw 0 30.4828vw;
  }
}
@media screen and (max-width: 1279px) {
  .products-card .big-card .content__wrapp {
    padding: 100px 60px 100px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 767px) {
  .products-card .big-card .content__wrapp {
    padding: 40px 0;
    position: relative;
  }
}
.products-card .big-card .content__wrapp .link__list {
  padding-top: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.products-card .big-card .content__wrapp .link__list .link__list-title {
  display: none;
  color: #FFFFFF;
}
.products-card .big-card .content__wrapp .link__list a {
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 13px;
  color: #FF0066;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .products-card .big-card .content__wrapp .link__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 0;
  }
  .products-card .big-card .content__wrapp .link__list a {
    font-size: 16px;
    line-height: 1.2;
  }
  .products-card .big-card .content__wrapp .link__list .link__list-title {
    display: block;
    font-size: 20px;
    text-align: center;
    margin-bottom: 13px;
  }
}
.products-card .big-card .content__wrapp .item__content {
  max-width: 376px;
  color: #979797;
}
.products-card .big-card .content__wrapp .item__content p {
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .products-card .big-card .content__wrapp .item__content {
    max-width: 260px;
  }
}
.products-card .big-card .content__wrapp .item__content .button {
  margin-top: 50px;
}
.products-card .big-card .content__wrapp .item__content .button span {
  background-color: #181818;
}
@media screen and (max-width: 767px) {
  .products-card .big-card .content__wrapp {
    padding: 40px;
  }
  .products-card .big-card .content__wrapp .item__content {
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .products-card .big-card .content__wrapp .item__content p, .products-card .big-card .content__wrapp .item__content h3 {
    display: none;
  }
  .products-card .big-card .content__wrapp .item__content .button {
    margin-top: 15px;
  }
  .products-card .big-card .content__wrapp .item__content .button span {
    background-color: #320f1d;
  }
}
.products-card__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  min-height: auto;
}
.products-card__item .item__img {
  margin-bottom: 60px;
  background: #181818;
  border-radius: 10px;
  overflow: hidden;
  min-height: 262px;
}
.products-card__item .item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.products-card__item .item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.products-card__item .item__content h3 {
  margin-bottom: 10px;
  color: #FFFFFF;
}
.products-card__item .item__content p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #979797;
  max-width: 526px;
  margin-bottom: 30px;
}
.products-card__item .item__content .button {
  margin-top: auto;
  justify-self: flex-end;
  min-width: 168px;
}
.products-card__item--big .item__img {
  max-width: 856px;
}
.products-card--advice .products-card__item {
  min-height: 420px;
}
.products-card--advice .products-card__item .item__img {
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .products-card__item--big {
    grid-column: 1/-1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .products-card__item--big .item__img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    max-width: 70%;
    width: 80%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    gap: 35px;
    margin-bottom: 0;
  }
  .products-card__item--big .item__content {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .products-card__item--big .item__content .button {
    margin-top: 30px;
  }
}
@media screen and (max-width: 992px) {
  .products-card__list {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 50px;
    grid-column-gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .products-card {
    padding: 70px 0;
  }
  .products-card h2 {
    max-width: 290px;
    margin: 0 auto 22px auto;
  }
  .products-card__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 60px;
  }
  .products-card__list.head-card {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .products-card__item--big .item__img {
    max-width: 100%;
    margin-bottom: 21px;
  }
}

@media screen and (max-width: 768px) {
  .products-card__item .item__img {
    margin-bottom: 21px;
  }
  .products-card__item .item__content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .products-card__item .item__content p {
    text-align: center;
    font-size: 12px;
  }
}
.info-block {
  background-color: #0F0F0F;
  position: relative;
  overflow: hidden;
}
.info-block .container {
  padding: 250px 15px 100px 15px;
  background: url("../images/section/bg/planet.svg") no-repeat 70px 34%;
  background-size: 65%;
}
.info-block h2 {
  max-width: 465px;
}
.info-block__text {
  max-width: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.info-block .button {
  margin-top: 15px;
}
.info-block p {
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.4;
}
.info-block .bg-shadow-pink {
  top: 0px;
  z-index: 0;
}
.info-block .triangle-left {
  top: 0;
}
.info-block--twitter {
  margin-bottom: 130px;
}
.info-block--twitter .container {
  padding: 0px 15px 150px 15px;
  min-height: 455px;
  background-position: bottom -30px center;
  background-size: 745px;
}
.info-block--twitter h2 {
  margin-top: 35px;
}
.info-block--twitter .info-block__text {
  margin: 50px 0 0 0;
  max-width: 100%;
}
.info-block--twitter .info-block__text p {
  font-size: 24px;
}
.info-block--twitter .info-block__img img {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .info-block .container {
    padding: 125px 15px 130px 15px;
    background: url("../images/section/bg/planet.svg") no-repeat 50% 75px;
    background-size: 110%;
    position: relative;
    z-index: 2;
  }
  .info-block h2 {
    margin: 0 auto 21px auto;
    text-align: center;
    max-width: 350px;
  }
  .info-block__text {
    margin: 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .info-block p {
    text-align: center;
    font-size: 16px;
  }
  .info-block--twitter {
    margin-bottom: 30px;
  }
  .info-block--twitter .container {
    padding: 0 15px 80px 15px;
    background-position: bottom center;
  }
  .info-block--twitter h2 {
    margin-bottom: 0;
  }
  .info-block--twitter p {
    margin-bottom: 24px;
  }
  .info-block--twitter .info-block__img {
    margin-top: 16px;
  }
  .info-block--twitter .info-block__img img {
    width: 182px;
    height: auto;
  }
  .info-block--twitter .info-block__center {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 27px;
  }
  .info-block--twitter .info-block__text {
    margin-top: 16px;
  }
}

.accordion-section {
  margin-bottom: 170px;
}
.accordion .accordion-item {
  overflow: hidden;
  border-bottom: 1px solid #313536;
}
.accordion .accordion-item .minus {
  display: none;
}
.accordion .accordion-item.active .minus {
  display: block;
}
.accordion .accordion-item.active .plus {
  display: none;
}
.accordion .accordion-titel {
  padding: 30px 0 24px 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 30px;
}
.accordion .accordion-titel span {
  width: 45px;
  height: 45px;
}
.accordion .accordion-titel span img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.accordion .accordion-content {
  padding: 0 0 30px 111px;
  display: none;
  max-width: 857px;
}
.accordion .accordion-content p {
  font-size: 18px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .accordion-section {
    margin-bottom: 120px;
  }
  .accordion .accordion-titel {
    gap: 60px;
    padding: 24px 0 15px 0;
  }
  .accordion .accordion-titel h2 {
    padding-left: 4px;
  }
  .accordion .accordion-content {
    padding-left: 30px;
  }
  .accordion .accordion-content p {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .accordion .accordion-titel {
    gap: 0;
  }
  .accordion .accordion-titel h2 {
    max-width: 290px;
  }
}

.info-section {
  padding: 170px 0 100px 0;
  overflow: hidden;
}
.info-section h2 {
  max-width: 860px;
  margin-bottom: 49px;
}
.info-section__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(200px, 306px) 132px 306px 132px minmax(auto, 416px);
  grid-template-columns: minmax(200px, 306px) 306px minmax(auto, 416px);
  grid-gap: 132px;
}
.info-section__item-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.info-section__item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.info-section__item-img::after {
  position: absolute;
  content: "";
  -webkit-filter: blur(200px);
  filter: blur(200px);
  background-color: #FF0066;
  width: 557px;
  height: 38px;
  left: 50%;
  top: 40px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 0;
}
.info-section__item h3 {
  color: #FFFFFF;
  margin-bottom: 23px;
}
.info-section__item .button {
  margin-top: 48px;
}
.info-section--anonymous h2 {
  max-width: 440px;
}
.info-section--anonymous .info-section__item-img {
  position: relative;
  margin-top: -150px;
}
.info-section--anonymous .info-section__item-img::after {
  top: 230px;
  -webkit-filter: blur(150px);
  filter: blur(150px);
  height: 28px;
}
.info-section--anonymous .info-section__item-img img {
  position: absolute;
  max-width: none;
  width: 193%;
}
@media screen and (max-width: 1200px) {
  .info-section__item {
    grid-gap: 60px;
  }
}
@media screen and (max-width: 992px) {
  .info-section {
    padding: 66px 0 88px 0;
  }
  .info-section h2 {
    margin-bottom: 32px;
    text-align: center;
  }
  .info-section__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .info-section__item-img {
    margin-top: 0;
  }
  .info-section__item h3 {
    margin-top: 30px;
    text-align: center;
  }
  .info-section__item-text {
    max-width: 400px;
    margin: 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .info-section__item-text p {
    text-align: center;
    font-size: 16px;
  }
  .info-section--anonymous h2 {
    max-width: 440px;
    margin: 0 auto 32px auto;
  }
  .info-section--anonymous h3 {
    margin-top: 0;
  }
  .info-section--anonymous .info-section__item-img {
    position: relative;
    margin-top: -30px;
    margin-bottom: -30px;
  }
  .info-section--anonymous .info-section__item-img img {
    position: relative;
    max-width: 471px;
  }
  .info-section--anonymous + .articles {
    padding-top: 30px;
  }
  .info-section--anonymous + .articles .bg-shadow-pink,
  .info-section--anonymous + .articles .triangle-left {
    display: none;
  }
}

.articles {
  padding: 150px 0 150px 0;
  position: relative;
  overflow: hidden;
}
.articles .container > h2 {
  text-align: center;
  margin-bottom: 61px;
}
.articles-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 72px;
}
.articles-container--left + .text-center {
  max-width: 100%;
}
.articles .article {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  position: relative;
  z-index: 4;
}
.articles .article__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 100px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.articles .article__text-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.articles .article__text-info span {
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
  background: linear-gradient(93.62deg, #75EDFD 0.39%, #FF0066 98.02%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.articles .article__text p {
  font-size: 20px;
  line-height: 1.4;
}
.articles .article__text p a {
  color: #FF0066;
  text-decoration: underline;
}
.articles .article__text p a:hover {
  text-decoration: none;
}
.articles .article__text p + .button {
  margin-top: 50px;
}
.articles .article__text h2, .articles .article__text h3 {
  margin-bottom: 30px;
  color: #FFFFFF;
}
.articles .article__text .h3.pink {
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: underline;
  margin-top: 18px;
}
.articles .article__text .h3.pink:hover {
  text-decoration: none;
}
.articles .article__text ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}
.articles .article__text ul li {
  position: relative;
  padding-left: 36px;
  font-size: 18px;
  line-height: 1.4;
}
.articles .article__text ul li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  background: linear-gradient(-273.4deg, #75EDFD 4.28%, #FF0066 93.81%);
  margin-right: 9px;
  left: 0;
  top: 9px;
}
.articles .article__text ul li::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  background: #0F0F0F;
  left: 2px;
  top: 11px;
}
.articles .bg-shadow-green,
.articles .bg-shadow-pink {
  top: 0;
}
.articles .text-center p {
  margin-bottom: 30px;
}
.articles .text-center h3 {
  color: #FFFFFF;
  margin-bottom: 45px;
}
.articles .text-img {
  padding-bottom: 0;
}
.articles .article--left + .text-center {
  max-width: 100%;
}
.articles .article--left + .text-center p {
  max-width: 805px;
  font-size: 22px;
}
.articles-list .article__text {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.articles-list .article__text-bottom {
  margin-top: auto;
  gap: 80px;
}
.articles-list .article__text-bottom h4 {
  margin-bottom: 25px;
  text-transform: uppercase;
  font-size: 14px;
}
.articles + .promo {
  padding-top: 0;
}
@media screen and (min-width: 993px) {
  .articles-container .article:nth-child(even) .article__img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .articles-container .article:nth-child(even) .article__text {
    margin: 0;
  }
  .articles-container--left .article:nth-child(odd) .article__img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .articles-container--left .article:nth-child(odd) .article__img.article__img-desk {
    display: block;
  }
  .articles-container--left .article:nth-child(odd) .article__img.article__img-mob {
    display: none;
  }
  .articles-container--left .article:nth-child(odd) .article__text {
    margin: 0;
  }
  .articles-container--left .article:nth-child(even) .article__text {
    margin-left: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .articles .article--left .article__img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .articles .article--left .article__text {
    margin: 15px 0 0 0;
  }
  .articles .article--left .article__text h2 {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .articles-container .article:nth-child(even) .article__text {
    margin: 0 100px 0 0;
  }
  .articles-container--left {
    margin-bottom: 180px;
  }
  .articles-container--left .article:nth-child(odd) .article__img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .articles-container--left .article:nth-child(odd) .article__text {
    margin: 0 100px 0 0;
  }
  .articles-container--left .article:nth-child(even) .article__text {
    margin: 0 0 0 100px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .articles .article--left .article__text {
    margin: 15px 100px 0 0;
  }
}
@media screen and (max-width: 1200px) {
  .articles .article__text {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 993px) {
  .articles {
    padding: 100px 0;
  }
  .articles .container > h2 {
    margin-bottom: 25px;
  }
  .articles .text-center h3 {
    margin-bottom: 35px;
  }
  .articles-container--left {
    margin-bottom: 65px;
  }
  .articles-container--left .article:nth-child(odd) .article__text {
    margin: 0;
  }
  .articles-container--left .article:nth-child(even) .article__text {
    margin: 0;
  }
  .articles .article {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .articles .article__img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .articles .article__img img {
    margin: 0 auto;
  }
  .articles .article__img.article__img-desk {
    display: none;
  }
  .articles .article__img.article__img-mob {
    display: block;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    margin-bottom: 50px;
  }
  .articles .article--left .article__text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .articles .article__text {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .articles .article__text h2, .articles .article__text p {
    text-align: center;
    max-width: 550px;
  }
  .articles .article__text h2 {
    margin-bottom: 20px;
  }
  .articles .article__text p {
    font-size: 16px;
  }
  .articles .article__text p + .button {
    margin-top: 40px;
  }
  .articles-list .article__text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .articles-list .article__text .button {
    min-width: 189px;
  }
  .articles-list .article__text-bottom {
    gap: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
  .articles-list .article__text-info h4 {
    font-size: 12px;
  }
  .articles-list .article__text-info span {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .articles-container--left + .text-center .button {
    max-width: 310px;
  }
  .articles-container--left + .text-center .button span {
    height: auto;
    font-size: 20px;
    text-align: center;
    padding: 19px 28px !important;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .articles-container--left + .text-center .button span img {
    width: 26px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 0;
  }
}

.text-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 80%;
  margin: 50px auto 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.text-center__img {
  width: 335px;
  margin: 0 auto;
}
.text-center__img img {
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.text-center h2 {
  max-width: 920px;
}
.text-center h2 a {
  display: inline;
}
.text-center p {
  max-width: 855px;
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  margin-top: 37px;
}
.text-center p + .button {
  margin-top: 50px;
}
.text-center > img {
  border-radius: 10px;
  width: 100%;
  margin-top: 75px;
  margin-bottom: 100px;
}
.text-center--small {
  padding: 170px 0 160px 0;
  margin: 0 auto;
}
.text-center--small p {
  max-width: 756px;
}
.text-center--big {
  max-width: 100%;
}
.text-center--big p {
  max-width: 92%;
}
.text-center--big p.pink {
  max-width: 65%;
  margin-bottom: 0;
}
.text-center--big .button {
  margin-top: 40px;
}
.text-center__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px 18px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
}
.text-center__buttons h3 {
  width: 100%;
  color: #FFFFFF;
  margin-top: 91px;
}
.text-center__buttons .button img {
  margin-right: 10px;
}
@media screen and (max-width: 993px) {
  .text-center {
    margin-top: 30px;
    max-width: 100%;
  }
  .text-center h2 {
    max-width: 920px;
    text-align: center;
    margin-bottom: 18px;
  }
  .text-center-img {
    max-width: 60%;
  }
  .text-center p {
    font-size: 16px;
    margin-bottom: 36px;
    margin-top: 20px;
  }
  .text-center p + .button {
    margin-top: 0;
  }
  .text-center--small {
    padding: 70px 0 120px 0;
    margin: 0 auto;
  }
  .text-center--small p {
    margin-bottom: 35px;
    margin-top: 0;
  }
  .text-center > img {
    margin-top: 50px;
    margin-bottom: 30px;
  }
  .text-center__buttons .button {
    font-size: 16px;
    font-weight: 400;
    margin-top: 0;
  }
  .text-center__buttons .button span {
    padding: 5px 28px;
  }
  .text-center__buttons h3 {
    margin-top: 50px;
  }
  .text-center--big {
    max-width: 100%;
  }
  .text-center--big p {
    max-width: 100%;
  }
  .text-center--big p.pink {
    max-width: 100%;
    margin-top: 0;
  }
  .text-center--big .button {
    margin-top: 40px !important;
  }
}

.text-img {
  position: relative;
  padding: 100px 0 100px 0;
  overflow: hidden;
}
.text-img .bg-shadow-pink {
  top: 0;
  z-index: -1;
}
.text-img p {
  font-size: 22px;
  max-width: 890px;
}
.text-img .text-center {
  max-width: 100%;
}
.text-img h2:not(:first-of-type) {
  margin-top: 75px;
}
@media screen and (max-width: 768px) {
  .text-img h2:not(:first-of-type) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 993px) {
  .text-img {
    padding: 70px 0 50px 0;
  }
  .text-img p {
    font-size: 16px;
    max-width: 100%;
  }
}

section {
  position: relative;
  overflow: hidden;
}

.traffic-table {
  margin-bottom: 130px;
}
.traffic-table .text-center h2 {
  margin-bottom: 13px;
}
.traffic-table .text-center p {
  font-size: 22px;
  max-width: 890px;
  margin: 0;
}
.traffic-table .text-center p + .button {
  margin-top: 40px;
}
.traffic-table__container {
  margin: 90px 0 60px 0;
}
.traffic-table__item, .traffic-table__header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 83px 248px 83px 2.2fr;
  grid-template-columns: 1fr 248px 2.2fr;
  grid-gap: 83px;
}
.traffic-table__header span {
  color: #FF0066;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}
.traffic-table__header span:first-child {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.traffic-table__item {
  padding: 35px 0 35px 0;
  border-bottom: 1px solid #313536;
}
.traffic-table__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 200px;
}
.traffic-table__img img {
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.traffic-table__text {
  font-size: 22px;
  line-height: 1.4;
}
.traffic-table h3 {
  color: #FFFFFF;
}
@media screen and (max-width: 1200px) {
  .traffic-table__item, .traffic-table__header {
    -ms-grid-columns: 1fr 40px 150px 40px 2.2fr;
    grid-template-columns: 1fr 150px 2.2fr;
    grid-gap: 40px;
  }
  .traffic-table__header {
    display: -ms-grid;
    display: grid;
  }
}
@media screen and (max-width: 768px) {
  .traffic-table {
    margin-bottom: 100px;
  }
  .traffic-table__header {
    display: none;
  }
  .traffic-table__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 11px;
    padding: 32px 0 35px 0;
  }
  .traffic-table__img {
    margin-bottom: 25px;
  }
  .traffic-table__text {
    text-align: center;
    font-size: 16px;
  }
  .traffic-table__container {
    margin-top: 40px;
  }
  .traffic-table .text-center h2 {
    max-width: 355px;
  }
  .traffic-table .text-center p {
    font-size: 16px;
    max-width: 355px;
  }
}

.news {
  padding: 130px 0 360px 0;
  position: relative;
  overflow: hidden;
  background: #0F0F0F url("../images/section/bg/map.webp") no-repeat bottom 20px center;
  -webkit-box-shadow: inset -4px 182px 200px 200px rgb(15, 15, 15);
  box-shadow: inset -4px 182px 200px 200px rgb(15, 15, 15);
}
.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
}
.news__item-info {
  max-width: 525px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 54px;
  gap: 58px;
}
.news h2 {
  max-width: 525px;
}
.news p {
  font-size: 18px;
  line-height: 1.4;
}
.news + .articles {
  padding-top: 120px;
}
@media screen and (max-width: 993px) {
  .news {
    padding: 70px 0 50% 0;
    background-size: 195%;
    background-position: bottom left 40%;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .news__item-info {
    margin: 0 auto;
    gap: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .news h2,
  .news p {
    text-align: center;
    margin: 0 auto;
  }
}

.unblock-website {
  text-align: center;
  background: url("../images/section/bg/logos.png") no-repeat center top;
  background-size: contain;
  margin: 120px 15px 180px 15px;
}
.unblock-website h2 {
  margin: 0 auto 35px auto;
  padding-top: 50px;
}
.unblock-website p {
  max-width: 890px;
  font-size: 22px;
  line-height: 1.4;
  text-align: center;
  margin: 0 auto 80px auto;
}
.unblock-website h3 {
  margin-bottom: 35px;
}
.unblock-website ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4px;
  max-width: 1135px;
  margin: 0 auto 54px auto;
}
.unblock-website ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 7px;
  height: 27px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #FF0066;
  text-transform: uppercase;
  background: #3f0c20;
  border-radius: 8px;
}
.unblock-website .button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 1500px) {
  .unblock-website h2 {
    padding-top: 0;
  }
  .unblock-website p, .unblock-website h2 {
    max-width: 50%;
  }
}
@media (max-width: 993px) {
  .unblock-website {
    background: #0F0F0F;
    margin: 20px 0 90px 0;
  }
  .unblock-website h2 {
    padding-top: 0;
  }
  .unblock-website p, .unblock-website h2 {
    max-width: 600px;
    width: 100%;
  }
  .unblock-website p {
    font-size: 16px;
    margin-bottom: 35px;
  }
  .unblock-website h3 {
    margin-bottom: 20px;
  }
  .unblock-website ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px;
  }
}

.title-text {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 60px 1.5fr;
  grid-template-columns: 2fr 1.5fr;
  grid-gap: 0 60px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.title-text-section {
  padding: 140px 0 32px 0;
  overflow: hidden;
  position: relative;
}
.title-text h2 {
  grid-column: 1/-1;
  max-width: 1080px;
  margin-bottom: 49px;
}
.title-text p {
  font-size: 20px;
  line-height: 1.4;
  padding-top: 30px;
}
.title-text__img img {
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .title-text {
    grid-gap: 40px 50px;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
  .title-text__img img {
    position: relative;
    top: 0;
    width: 100%;
  }
  .title-text-section {
    padding: 140px 0;
  }
}
@media screen and (max-width: 993px) {
  .title-text {
    grid-gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .title-text-section {
    padding: 100px 0;
  }
  .title-text h2,
  .title-text p {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
  }
  .title-text p {
    padding-top: 0;
  }
  .title-text__img {
    margin-top: 33px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.password-generator {
  padding: 140px 0 180px 0;
}
.password-generator h2 {
  margin-bottom: 72px;
}
.password-generator .h4,
.password-generator h4 {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 20px;
}

.range {
  margin-top: 50px;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
  max-width: calc(100% - 240px);
}
.range h4,
.range .h4 {
  margin-bottom: 6px;
}

.range > div {
  position: relative;
  height: 38px;
}

.range input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: calc(100% - 73px);
  height: 2px;
  border-radius: 4px;
  background: #22151d;
  outline: none;
  padding: 0;
  margin: 0;
}

.range input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(93.62deg, #75EDFD 0.39%, #FF0066 98.02%);
  cursor: pointer;
  -webkit-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}

.range input::-webkit-slider-thumb:focus {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.range input::-moz-range-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffe2ed;
  border: 1px solid #664AFF;
  cursor: pointer;
}

.range input::-moz-range-thumb:focus {
  border: 1px solid black;
}

.range input::-moz-range-progress {
  background: #ffe2ed;
}

.range-circle {
  position: absolute;
  width: calc(100% - 95px);
  top: -3.5px;
  z-index: -1;
}
.range-circle span {
  display: block;
  position: absolute;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);
  background: linear-gradient(93.62deg, rgba(117, 237, 253, 0.1254901961) 0.39%, rgba(255, 0, 102, 0.1254901961) 98.02%);
}
.range-circle span::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
  left: 3.5px;
  top: 3.5px;
  width: 31px;
  height: 31px;
  background: linear-gradient(93.62deg, #75EDFD 0.39%, #FF0066 98.02%);
  opacity: 0.1;
}

.password_generator_form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 63px 412px;
  grid-template-columns: 1fr 412px;
  grid-gap: 0 63px;
}

.result_inputs,
.result_container {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}

.result_inputs {
  margin-top: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: calc(100% - 240px);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  grid-gap: 14px;
}
.result_inputs h4,
.result_inputs .h4 {
  width: 100%;
}
.result_inputs label {
  font-size: 20px;
  line-height: 1.4;
  font-family: "DMSans";
  font-weight: 400;
  padding-left: 38px;
  position: relative;
}
.result_inputs input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.result_inputs input[type=checkbox] + label:before {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 2px;
  left: 0;
  border: 1px solid #ffffff;
  border-radius: 7px;
  background-color: #0F0F0F;
}
.result_inputs input[type=checkbox]:checked + label::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background-color: #FF0066;
  position: absolute;
  top: 8px;
  left: 6px;
}
.result_inputs .result_input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.s_copied_message {
  color: #75EDFD;
  font-size: 13px;
  display: none;
  position: absolute;
  bottom: -30px;
}

.result_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 26px;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  position: relative;
}

.range_strength {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1/4;
  background-color: #181818;
  min-height: 281px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 0 0 100px;
  font-size: 24px;
  line-height: 1.3;
  border-radius: 10px;
}

.password_generator_form .result_container .generated_result_container {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
}

.password_generator_form .result_container .generated_result_container .generated_result {
  width: 100%;
  height: 64px;
  font-size: 20px;
  line-height: 1.4;
  color: #FFFFFF;
  padding: 0 33px;
  background-color: #0F0F0F;
  border: 1px solid #FFFFFF;
  outline: none;
}

.password_generator_form .password_strength {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: center space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.password_generator_form .password_strength div {
  height: 2px;
  width: 100%;
}

.password_generator_form .password_strength div:not(:last-child) {
  margin-right: 9px;
}

.password_generator_form .password_strength.strength-1 :first-child {
  background-color: #EC217B;
}

.password_generator_form .password_strength.strength-2 :first-child {
  background-color: #EC217B;
}

.password_generator_form .password_strength.strength-2 :nth-child(2) {
  background-color: #FF67AA;
}

.password_generator_form .password_strength.strength-3 :first-child {
  background-color: #EC217B;
}

.password_generator_form .password_strength.strength-3 :nth-child(2) {
  background-color: #FF67AA;
}

.password_generator_form .password_strength.strength-3 :nth-child(3) {
  background-color: #FCFF2C;
}

.password_generator_form .password_strength.strength-4 :first-child {
  background-color: #EC217B;
}

.password_generator_form .password_strength.strength-4 :nth-child(2) {
  background-color: #FF67AA;
}

.password_generator_form .password_strength.strength-4 :nth-child(3) {
  background-color: #FCFF2C;
}

.password_generator_form .password_strength.strength-4 :nth-child(4) {
  background-color: #75EDFD;
}

.password_generator_form .password_strength.strength-5 :first-child {
  background-color: #EC217B;
}

.password_generator_form .password_strength.strength-5 :nth-child(2) {
  background-color: #FF67AA;
}

.password_generator_form .password_strength.strength-5 :nth-child(3) {
  background-color: #FCFF2C;
}

.password_generator_form .password_strength.strength-5 :nth-child(4) {
  background-color: #75EDFD;
}

.password_generator_form .password_strength.strength-5 :nth-child(5) {
  background-color: #31F3A2;
}

.password_generator_form .password_strength_word {
  font-weight: 500;
  text-transform: uppercase;
}

.password_generator_form .password_strength_word.strength-1 {
  color: #EC217B;
}

.password_generator_form .password_strength_word.strength-2 {
  color: #FF67AA;
}

.password_generator_form .password_strength_word.strength-3 {
  color: #FCFF2C;
}

.password_generator_form .password_strength_word.strength-4 {
  color: #75EDFD;
}

.password_generator_form .password_strength_word.strength-5 {
  color: #31F3A2;
}

.password_generator_form .copy_icon_button {
  background-color: transparent !important;
  border: 2px solid transparent !important;
  position: absolute;
  cursor: pointer;
  right: 22px;
  top: 18px;
}

.password_generator_form .copy_icon_button:disabled {
  opacity: 0.6;
  cursor: auto;
}

.password_generator_form .copy_icon_button:disabled:hover {
  opacity: 0.6;
}

.password_generator_form .copy_icon_button:disabled:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1200px) {
  .password_generator_form {
    grid-gap: 0 50px;
    -ms-grid-columns: 1fr 50px 340px;
    grid-template-columns: 1fr 340px;
  }
  .range_strength {
    padding-left: 50px;
  }
  .result_inputs {
    max-width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .password-generator {
    padding: 74px 0 100px 0;
  }
  .password-generator h2 {
    text-align: center;
    max-width: 351px;
    margin: 0 auto 30px auto;
  }
  .password_generator_form {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 32px;
  }
  .result_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
  .result_container .generated_result_container {
    width: 100%;
  }
  .result_container .button {
    width: 100%;
    max-width: 315px;
    margin: 0 auto;
  }
  .result_inputs,
  .range {
    max-width: 100%;
  }
  .range_strength {
    grid-row: auto;
    grid-column: auto;
    width: 100%;
    max-width: 350px;
    min-height: 111px;
    margin: 0 auto;
    padding: 0;
    font-size: 20px;
    line-height: 26px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .s_copied_message {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .result_inputs {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-gap: 24px;
    margin-top: 0;
  }
  .result_inputs .h4 {
    margin-bottom: 0;
  }
  .result_container {
    gap: 32px;
  }
  .range {
    margin-top: 0;
  }
  .range input {
    width: calc(100% - 35px);
  }
  .password-generator .h4, .password-generator h4 {
    font-size: 12px;
  }
  .range-circle {
    width: calc(100% - 58px);
  }
}
.text, .text-list {
  padding: 140px 0 190px 0;
  word-wrap: break-word;
}
.text h1, .text-list h1 {
  margin-bottom: 31px;
}
.text h2, .text-list h2 {
  margin-bottom: 32px;
}
.text h2 + p, .text-list h2 + p {
  margin-top: 0;
}
.text h3, .text-list h3 {
  color: #FFFFFF;
  margin-bottom: 21px;
  font-size: 24px;
  line-height: 1.3;
}
.text h3.pink, .text-list h3.pink {
  text-transform: uppercase;
  color: #FF0066;
  margin-top: 50px;
}
.text h4, .text-list h4 {
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 48px;
}
.text p, .text-list p {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 14px;
}
.text p b, .text-list p b {
  text-decoration: underline;
  display: inline;
}
.text p + h2, .text-list p + h2 {
  margin-top: 72px;
}
.text p + h3, .text-list p + h3,
.text p + h4,
.text-list p + h4 {
  margin-top: 48px;
}
.text p + p, .text-list p + p {
  margin-top: 0;
}
.text ul, .text-list ul {
  margin: 20px 0;
  padding-left: 0;
}
.text ul > li, .text-list ul > li {
  position: relative;
  padding-left: 54px;
  font-size: 18px;
  line-height: 1.4;
}
.text ul > li:not(:last-of-type), .text-list ul > li:not(:last-of-type) {
  margin-bottom: 20px;
}
.text ul > li::before, .text-list ul > li::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  border-radius: 50%;
  position: absolute;
  background: #FF0066;
  left: 0;
  top: 11px;
}
.text ol, .text-list ol {
  margin: 20px 0;
  list-style-type: decimal;
  padding-left: 15px;
}
.text ol > li, .text-list ol > li {
  list-style: decimal;
  font-size: 18px;
  line-height: 1.4;
}
.text ol > li:not(:last-of-type), .text-list ol > li:not(:last-of-type) {
  margin-bottom: 14px;
}
.text ol > li::marker, .text-list ol > li::marker {
  color: #FF0066;
}
.text table, .text-list table {
  border-collapse: collapse;
  margin-top: 58px;
  margin-bottom: 30px;
}
.text table thead tr, .text-list table thead tr {
  border-bottom: 1px solid #fff;
  vertical-align: top;
}
.text table thead th, .text-list table thead th,
.text table thead th {
  color: #FF0066;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
  padding: 9px 0 26px 0;
}
.text table tbody tr, .text-list table tbody tr {
  border-bottom: 1px solid #313536;
}
.text table tbody tr td, .text-list table tbody tr td {
  vertical-align: top;
  padding: 9px 0 29px 0;
  font-size: 20px;
  line-height: 1.4;
}
.text table tbody tr td:not(:last-of-type), .text-list table tbody tr td:not(:last-of-type) {
  padding-right: 25px;
}
.text img, .text-list img {
  margin-bottom: 35px;
}
.text blockquote, .text-list blockquote {
  position: relative;
  margin-top: 35px;
  margin-bottom: 35px;
}
.text blockquote h3, .text-list blockquote h3, .text blockquote p, .text-list blockquote p {
  margin: 0;
}
.text blockquote::before, .text-list blockquote::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2px;
  height: 100%;
  left: -20px;
  background-color: #F8F8F8;
}
.text .pink, .text-list .pink {
  color: #FF0066;
}
.text .design-list, .text-list .design-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 25px;
}
.text .design-list li, .text-list .design-list li {
  position: relative;
  padding-left: 19px;
  font-size: 18px;
  line-height: 1.4;
}
.text .design-list li::before, .text-list .design-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  background: linear-gradient(-273.4deg, #75EDFD 4.28%, #FF0066 93.81%);
  margin-right: 9px;
  left: 0;
  top: 9px;
}
.text .design-list li::after, .text-list .design-list li::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  background: #0F0F0F;
  left: 2px;
  top: 11px;
}
.text-list {
  padding: 100px 0 200px;
  margin: 0;
}
.text-list .col-lg-5 p {
  margin-top: 20px;
  max-width: 476px;
}
.text-list-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.text-list-right ul {
  margin-left: 0;
}
.text-list h2 {
  margin-bottom: 17px;
  max-width: 100%;
}
.text-list h4 {
  text-transform: uppercase;
}
.text-list + .advantages {
  padding-top: 0;
}
.text-list p + h3 {
  margin-top: 20px;
}
.text-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 25px;
}
.text-list ul + .button {
  margin-top: 39px;
}
.text-list ul li {
  position: relative;
  padding-left: 19px;
  font-size: 18px;
  line-height: 1.4;
}
.text-list ul li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  background: linear-gradient(-273.4deg, #75EDFD 4.28%, #FF0066 93.81%);
  margin-right: 9px;
  left: 0;
  top: 9px;
}
.text-list ul li::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  background: #0F0F0F;
  left: 2px;
  top: 11px;
}
.text a, .text-list a {
  color: #FF0066;
  word-break: break-word;
}
.text a:hover, .text-list a:hover {
  text-decoration: underline;
}
.text .button, .text-list .button {
  color: #FFFFFF;
}
.text + .step-by-step, .text-list + .step-by-step {
  margin-bottom: 0;
  padding-top: 0;
}
.text.text-col, .text-col.text-list {
  margin-top: 0;
  padding-top: 0;
}
.text.text-col .row, .text-col.text-list .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.text.text-col h2, .text-col.text-list h2 {
  text-align: center;
  max-width: 855px;
  margin-left: auto;
  margin-right: auto;
}
.text.text-col h3.pink, .text-col.text-list h3.pink {
  color: #FF0066;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .text.text-col, .text-col.text-list {
    text-align: center;
  }
  .text.text-col .row, .text-col.text-list .row {
    gap: 40px;
  }
}
.text .bg-shadow-pink, .text-list .bg-shadow-pink,
.text .bg-shadow-green,
.text-list .bg-shadow-green {
  top: 0;
}
@media screen and (max-width: 768px) {
  .text, .text-list {
    padding: 80px 0;
  }
  .text h1, .text-list h1 {
    text-align: center;
  }
  .text h1 + h4, .text-list h1 + h4 {
    text-align: center;
    margin-bottom: 75px;
  }
  .text h3, .text-list h3 {
    font-size: 20px;
  }
  .text h4, .text-list h4 {
    margin-bottom: 35px;
  }
  .text p, .text-list p {
    font-size: 16px;
  }
  .text table, .text-list table {
    margin-top: 30px;
  }
  .text table.table-style tbody tr td:first-of-type, .text-list table.table-style tbody tr td:first-of-type {
    display: none;
  }
  .text table.table-style tbody tr td:nth-child(2), .text-list table.table-style tbody tr td:nth-child(2) {
    font-weight: 700;
  }
  .text table.table-style tbody tr td:nth-child(2)::before, .text-list table.table-style tbody tr td:nth-child(2)::before {
    padding-bottom: 10px;
  }
  .text table thead, .text-list table thead {
    display: none;
  }
  .text table tbody tr td, .text-list table tbody tr td {
    display: block;
    position: relative;
    padding: 0;
    font-size: 16px;
  }
  .text table tbody tr td:not(:last-of-type), .text-list table tbody tr td:not(:last-of-type) {
    padding-right: 0;
  }
  .text table tbody tr td:last-of-type, .text-list table tbody tr td:last-of-type {
    padding-bottom: 33px;
  }
  .text table tbody tr td::before, .text-list table tbody tr td::before {
    content: attr(data-thead);
    position: relative;
    color: #FF0066;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.2;
    text-align: left;
    padding: 17px 15px 0 0;
    display: block;
    width: 100%;
  }
  .text ul > li, .text-list ul > li {
    font-size: 16px;
  }
  .text ol > li, .text-list ol > li {
    font-size: 16px;
  }
  .text.text-center-mob, .text-center-mob.text-list,
  .text .text-center-mob,
  .text-list .text-center-mob {
    text-align: center;
  }
  .text-list {
    margin: 0;
  }
  .text-list ul {
    margin-left: 15px;
  }
  .text-list p {
    font-size: 14px;
  }
  .text-list .col-lg-5 p {
    max-width: 100%;
  }
}

.do-not-sell {
  padding: 200px 0;
}
.do-not-sell__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 134px 416px;
  grid-template-columns: 1fr 416px;
  grid-gap: 134px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.do-not-sell__item:not(:last-of-type) {
  margin-bottom: 24px;
}
.do-not-sell__item .h4, .do-not-sell__item h4 {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.2;
}
@media screen and (max-width: 1200px) {
  .do-not-sell__item {
    grid-gap: 80px;
  }
}
@media screen and (max-width: 992px) {
  .do-not-sell {
    padding: 80px 0;
  }
  .do-not-sell__item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 21px;
  }
  .do-not-sell__item:not(:last-of-type) {
    margin-bottom: 65px;
  }
  .do-not-sell__item-img {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .do-not-sell__item img {
    margin: 0 auto;
    max-width: 100%;
  }
  .do-not-sell__item-title h4, .do-not-sell__item .h4, .do-not-sell__item-title h2 {
    text-align: center;
  }
  .do-not-sell__item-title h2 {
    max-width: 350px;
    margin: 0 auto;
  }
}

.blog {
  margin-top: 140px;
}
.blog .container > h1,
.blog .container > .h1{
  margin-bottom: 60px;
}
.blog .container > h2 {
  text-align: center;
  margin-bottom: 60px;
}
.blog .container > h4 {
  color: #FFFFFF;
  margin-bottom: 37px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.2;
}
.blog-container {
  margin-bottom: 160px;
}
.blog a.blog-card__wrapper:hover img {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.blog a.blog-card:hover img {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.blog-card__wrapper {
  background-color: #181818;
  border-radius: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.blog-card__wrapper p {
  margin-top: auto;
  font-weight: 700;
  z-index: 1;
}
.blog-card__img {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog-card__img-bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.blog-card__img img {
  margin-left: auto;
  margin-top: auto;
  max-height: 100%;
  border-radius: 20px;
}
.blog-card__date {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #8C8C8C;
  z-index: 1;
}
.blog-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 30px 0 40px 0;
}
.blog-card__info h1,
.blog-card__info .h1{
  font-size: 45px;
  line-height: 1.2;
}
.blog-card__info h2,
.blog-card__info h3,
.blog-card__info h4 {
  color: #FFFFFF;
}
.blog-card__info h3 {
  margin-bottom: 16px;
}
.blog-card__info p {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 39px;
}
.blog-card__info p.grey {
  color: #979797;
  font-size: 14px;
  margin-bottom: 62px;
}
.blog-card__info .read-more-link {
  color: #FF0066;
  text-transform: uppercase;
  margin-top: auto;
}
.blog-card__info .read-more-link:hover {
  text-decoration: underline;
}
.blog-card__info .button {
  min-width: 168px;
}
.blog-card--big, .blog-card--big-revers {
  min-height: 524px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 24px 1fr;
  grid-template-columns: 2fr 1fr;
  grid-gap: 24px;
  grid-column: 1/-1;
  margin-bottom: 43px;
}
.blog-card--big .blog-card__wrapper, .blog-card--big-revers .blog-card__wrapper {
  padding: 52px 52px 40px 52px;
}
.blog-card--big .blog-card__wrapper p, .blog-card--big-revers .blog-card__wrapper p {
  max-width: 340px;
  font-size: 32px;
  line-height: 1.2;
}
.blog-card--big .blog-card__info h1, .blog-card--big-revers .blog-card__info h1,
.blog-card--big .blog-card__info .h1, .blog-card--big-revers .blog-card__info .h1{
  margin-bottom: 31px;
}
.blog-card--big-revers {
  -ms-grid-columns: 1fr 24px 2fr;
  grid-template-columns: 1fr 2fr;
  min-height: 420px;
}
.blog-card--big-revers .blog-card__wrapper {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.blog-card--big-revers .blog-card__wrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.blog-card--big-revers .blog-card__info {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.blog-card--small {
  max-width: 442px;
}
.blog-card--small .blog-card__wrapper {
  padding: 20px 26px;
  height: 255px;
}
.blog-card--small .blog-card__wrapper p {
  max-width: 178px;
  font-size: 18px;
  line-height: 1.4;
}
.blog-card--large {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(30%, 636px) 50px auto;
  grid-template-columns: minmax(30%, 636px) auto;
  grid-gap: 50px;
  margin-bottom: 43px;
  min-height: 389px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.blog-card--large .blog-card__wrapper {
  padding: 24px 36px 36px 32px;
}
.blog-card--large .blog-card__wrapper p {
  max-width: 206px;
}
.blog-card--large .blog-card__info {
  padding: 0 0 15px 0;
  max-width: 540px;
}
.blog-card--large .blog-card__info h1,
.blog-card--large .blog-card__info .h1 {
  margin-bottom: 13px;
}
@media screen and (max-width: 993px) {
  .blog {
    margin-top: 60px;
  }
  .blog .container > h1,
  .blog .container > .h1,
  .blog .container > h2 {
    margin-bottom: 20px;
  }
  .blog .container > h4 {
    margin-bottom: 20px;
  }
  .blog-card--small {
    margin-bottom: 30px;
  }
  .blog-card--large {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 26px;
    margin-bottom: 64px;
  }
  .blog-card--large .blog-card__wrapper {
    min-height: 215px;
    padding: 14px 18px 10px 18px;
  }
  .blog-card--large .blog-card__wrapper p {
    max-width: 135px;
  }
  .blog-card--large .blog-card__info {
    max-width: 100%;
  }
  .blog .blog-card__info h1,
  .blog .blog-card__info .h1{
    font-size: 30px;
  }
  .blog-container {
    margin-bottom: 68px;
  }
}
@media screen and (max-width: 768px) {
  .blog-card__data {
    font-size: 12px;
    line-height: 1.2;
  }
  .blog-card--big, .blog-card--big-revers {
    margin-bottom: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 215px;
  }
  .blog-card--big .blog-card__wrapper, .blog-card--big-revers .blog-card__wrapper {
    width: 100%;
    height: 215px;
    padding: 16px 20px 10px 20px;
  }
  .blog-card--big .blog-card__wrapper p, .blog-card--big-revers .blog-card__wrapper p {
    max-width: 160px;
    font-size: 16px;
    line-height: 1.2;
  }
  .blog-card--big .blog-card__info, .blog-card--big-revers .blog-card__info {
    display: none;
  }
  .blog-card--big-revers {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-gap: 21px;
  }
  .blog-card--big-revers .blog-card__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-top: 0;
  }
  .blog-card--big-revers .blog-card__info p.grey {
    margin-bottom: 30px;
  }
  .blog-card--small {
    max-width: 100%;
    margin-bottom: 14px;
  }
  .blog-card--small .blog-card__wrapper {
    height: 215px;
    padding: 16px 20px 10px 20px;
  }
  .blog-card--small .blog-card__wrapper p {
    max-width: 160px;
    font-size: 16px;
    line-height: 1.4;
    min-height: 68px;
  }
}

.blog-post .row-to-stick .text, .blog-post .row-to-stick .text-list {
  margin: 0;
  padding: 0;
}
.blog-post__text img {
  border-radius: 20px;
}
.blog-post .blog-post__container {
  margin: 140px 0 0 0;
}
.blog-post .blog-post__container .text, .blog-post .blog-post__container .text-list {
  margin: 0;
  padding: 0;
}
.blog-post .blog-post__container .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 190px;
}
.blog-post .blog-card {
  width: 100%;
  height: 526px;
  margin-bottom: 128px;
}
.blog-post .blog-card__wrapper {
  height: 100%;
  padding: 28px 45px 48px 45px;
}
.blog-post .blog-card__wrapper p {
  max-width: 230px;
}
.blog-post picture img {
  width: 100%;
  margin-bottom: 62px;
}
.blog-post .sidebar__wrapper h4 {
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 34px;
  font-size: 14px;
}
.blog-post .sidebar__wrapper .toc-list__item {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 24px;
}
.blog-post .sidebar__wrapper .toc-list__item img {
  border-radius: 20px;
}
.blog-post .sidebar__wrapper .toc-list__item:hover,
.blog-post .sidebar__wrapper .toc-list__item a.active {
  color: #FF0066;
}
@media screen and (max-width: 993px) {
  .blog-post .blog-post__container {
    margin-top: 35px;
  }
  .blog-post .blog-post__container .row {
    padding-bottom: 100px;
  }
  .blog-post h1 {
    text-align: left;
    font-size: 30px;
  }
  .blog-post .inner-wrapper-sticky {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    -webkit-transform: none !important;
    transform: none !important;
  }
  .blog-post .blog-card {
    margin-bottom: 62px;
    height: 215px;
  }
  .blog-post .blog-card__wrapper {
    padding: 13px 17px 12px 17px;
  }
  .blog-post .blog-card__wrapper p {
    max-width: 135px;
  }
  .blog-post .sidebar__wrapper {
    margin-bottom: 55px;
  }
  .blog-post .sidebar__wrapper h4 {
    font-size: 12px;
    margin-bottom: 21px;
  }
  .blog-post .sidebar__wrapper .toc-list__item {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .blog-post .sidebar__wrapper .toc-list__item a:hover,
  .blog-post .sidebar__wrapper .toc-list__item a:active,
  .blog-post .sidebar__wrapper .toc-list__item a:focus {
    color: #FF0066;
  }
}

.contact-us-container {
  max-width: 961px;
  width: 100%;
  margin-left: auto;
  margin-bottom: 150px;
}
.contact-us-container h2 {
  margin-bottom: 32px;
}
.contact-us__form form.hs-custom-style .field {
  margin-bottom: 23px;
}
.contact-us__form form.hs-custom-style .field > label {
  display: none;
  margin-bottom: 0;
}
.contact-us__form form.hs-custom-style .field input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]) {
  min-height: 64px;
  border-radius: 0;
  border: 1px solid #fff;
  background-color: #0F0F0F;
  padding: 18px 33px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
}
.contact-us__form form.hs-custom-style .field input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file])::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-us__form form.hs-custom-style .field input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file])::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-us__form form.hs-custom-style .field input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]):-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-us__form form.hs-custom-style .field input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file])::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-us__form form.hs-custom-style .field input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file])::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-us__form form.hs-custom-style .field input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]):focus {
  border-color: #FF0066;
}
.contact-us__form form.hs-custom-style .field .hs-error-msg {
  color: #FF0066;
  font-size: 14px;
}
.contact-us__form form.hs-custom-style .field .hs-error-msgs {
  margin-top: 10px;
}
.contact-us__form form.hs-custom-style .field .input textarea.hs-input {
  max-width: 100%;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  resize: none;
  min-height: 187px;
  background-color: #0F0F0F;
  border: 1px solid #fff;
  padding: 18px 33px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
}
.contact-us__form form.hs-custom-style .field .input textarea.hs-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-us__form form.hs-custom-style .field .input textarea.hs-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-us__form form.hs-custom-style .field .input textarea.hs-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-us__form form.hs-custom-style .field .input textarea.hs-input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-us__form form.hs-custom-style .field .input textarea.hs-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-us__form form.hs-custom-style .field .input textarea.hs-input:focus {
  border-color: #FF0066;
}
.contact-us__form form.hs-custom-style .hs_submit {
  text-align: left;
}
.contact-us__form form.hs-custom-style .actions {
  margin-left: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 60px;
  width: 134px;
  outline: none;
  color: #FFFFFF;
  position: relative;
  border-radius: 50px;
  background-clip: padding-box;
  border-radius: 50px;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  margin: 2px;
}
.contact-us__form form.hs-custom-style .actions input {
  border-radius: 50px;
  -webkit-appearance: none;
  overflow: hidden;
  padding: 5px 32px;
  width: 100%;
  background: #0F0F0F;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  font-size: 20px;
  outline: none;
  border: none;
  line-height: 60px;
  font-family: "DMSans";
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.contact-us__form form.hs-custom-style .actions:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  margin: -2px;
  border-radius: inherit;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  background: linear-gradient(-273.4deg, #75EDFD 4.28%, #FF0066 93.81%);
}
.contact-us__form form.hs-custom-style .actions::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  margin: -2px;
  border-radius: inherit;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  opacity: 0;
  background: linear-gradient(273.4deg, #75EDFD 4.28%, #FF0066 93.81%);
}
.contact-us__form form.hs-custom-style .actions:hover::before {
  opacity: 0;
}
.contact-us__form form.hs-custom-style .actions:hover::after {
  opacity: 1;
}
.contact-us__form form.hs-custom-style .actions input:hover:not(.inactive),
.contact-us__form form.hs-custom-style .actions input:active:not(.inactive):not(.link),
.contact-us__form form.hs-custom-style .actions input:focus:not(.inactive) {
  background: #0F0F0F;
  font-size: 20px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  line-height: 60px;
  font-family: "DMSans";
}
.contact-us__form form.hs-custom-style .actions:focus::before {
  opacity: 1;
}
.contact-us__form form.hs-custom-style .actions:focus::after {
  opacity: 0;
}
.contact-us__form form.hs-custom-style .actions:active {
  color: #FFFFFF;
}
.contact-us__form form.hs-custom-style .actions:active input {
  background: linear-gradient(273.4deg, #75EDFD 4.28%, #FF0066 93.81%);
}
.contact-us__form form.hs-custom-style .actions:active::before {
  opacity: 0;
}
.contact-us__form form.hs-custom-style .actions:active::after {
  opacity: 1;
}
.contact-us__form form.hs-custom-style .actions:disabled, .contact-us__form form.hs-custom-style .actions.disabled {
  color: #878787;
  cursor: default;
}
.contact-us__form form.hs-custom-style .actions:disabled::after, .contact-us__form form.hs-custom-style .actions.disabled::after {
  opacity: 0;
}
.contact-us__form form.hs-custom-style .actions:disabled::before, .contact-us__form form.hs-custom-style .actions.disabled::before {
  opacity: 0.5;
}
.contact-us__form form.hs-custom-style .actions:disabled:active span, .contact-us__form form.hs-custom-style .actions:disabled:focus span, .contact-us__form form.hs-custom-style .actions.disabled:active span, .contact-us__form form.hs-custom-style .actions.disabled:focus span {
  background: #0F0F0F;
}
@media screen and (max-width: 768px) {
  .contact-us__form form.hs-custom-style .hs_submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.question__form {
  width: 100%;
  margin-top: 30px;
}
.question__form .form-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
}
.question__form .textarea-input-field {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 4px;
}
.question__form label {
  font-size: 20px;
  line-height: 1.4;
  font-family: "DMSans";
  font-weight: 400;
  padding-left: 38px;
  position: relative;
}
.question__form input[type=radio] {
  opacity: 0;
  width: 0;
  height: 0;
}
.question__form input[type=radio] + label:before {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 2px;
  left: 0;
  border: 1px solid #ffffff;
  border-radius: 50px;
  background-color: #0F0F0F;
}
.question__form input[type=radio]:checked + label::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background-color: #FF0066;
  position: absolute;
  top: 8.5px;
  left: 6.5px;
}
.question__form textarea {
  background-color: #0F0F0F;
  resize: none;
  height: 144px;
  font-size: 20px;
  line-height: 1.4;
  font-family: "DMSans";
  font-weight: 400;
  color: #ffffff;
  padding: 11px 18px;
  border: 1px solid #ffffff;
  display: block !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  outline: none;
}
.question__form textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
  display: block !important;
}
.question__form textarea::placeholder, .question__form textarea::-webkit-input-placeholder, .question__form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
  display: block !important;
}
@media screen and (max-width: 768px) {
  .question__form textarea,
  .question__form label {
    font-size: 16px;
  }
}

.country-select-box {
  width: 100%;
  max-width: 300px;
  margin: 10px 0 0 0;
  padding-left: 48px;
}

.country-select-box ul {
  display: block;
}

.country-select-box ul li::after,
.country-select-box ul li::before {
  display: none;
}

.country-select-box .select2-container {
  width: 100% !important;
}

.country-select-box .select2-container .select2-selection--single,
.country-select-box .select2-container .select2-selection__rendered {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
}

.country-select-box .select2-container .select2-selection--single {
  padding: 5px 19px 5px 25px;
}

.country-select-box .select2-container .select2-search--dropdown {
  padding: 5px 19px 7px 25px;
}

.country-select-box .select2-container .select2-search--dropdown .select2-search__field {
  height: 36px;
  font-size: 18px;
}

.country-select-box .select2-container .select2-selection__rendered {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0;
}

.country-select-box .select2-container .select2-results__option--selected,
.country-select-box .select2-container .select2-results__option--selectable {
  padding-left: 25px;
  color: #181818;
  font-size: 18px;
}

.country-select-box .select2-container .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #ff0066;
  color: #ffffff;
}

.country-select-box .select2-container .select2-results__option {
  padding: 6px 6px 6px 25px;
}

.country-select-box .select2-container .select2-results__options {
  color: #181818;
}

.country-select-box .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
  width: 4px;
}

.country-select-box .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
  background: #ffffff;
}

.country-select-box .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
  background: #888;
}

.country-select-box .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.country-select-box .select2-container--default .select2-selection--single .select2-selection__arrow {
  position: relative;
  margin-left: auto;
  border: solid #ff0066;
  border-width: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5 21C16.7467 21 21 16.7467 21 11.5C21 6.25329 16.7467 2 11.5 2C6.25329 2 2 6.25329 2 11.5C2 16.7467 6.25329 21 11.5 21Z' stroke='%23FF0066' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 22L20 20' stroke='%23FF0066' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  top: -2px;
  width: 24px;
  height: 24px;
}

.country-select-box .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: transparent;
}

@media screen and (max-width: 768px) {
  .country-select-box .select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    border-top-right-radius: 2px;
    border-width: 1.5px 1.5px 0px 0px;
    width: 8px;
    height: 8px;
  }
}
.server-locations-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 60px;
}
.server-locations-table th {
  text-transform: uppercase;
  color: #FF0066;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 20px;
}
.server-locations-table th:first-child {
  text-align: left;
}
.server-locations-table tr > td:first-child {
  width: 30%;
}
.server-locations-table tr > td {
  min-width: 60px;
}
.server-locations-table tr {
  border-bottom: 1px solid #313637;
}
.server-locations .button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 208px;
  margin: 0 auto;
}
.server-locations .flag {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 48px 33px 1fr;
  grid-template-columns: 48px 1fr;
  gap: 33px;
  padding: 12px 0;
}
.server-locations .flag span {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  margin-top: 0;
  text-align: left;
}
.server-locations td > span {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
}
.server-locations td > span.available {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 2H5C3.34961 2 2 3.3501 2 5V19C2 20.6499 3.34961 22 5 22H19C20.6504 22 22 20.6499 22 19V5C22 3.3501 20.6504 2 19 2ZM16.46 10.21L11.46 15.21C11.2598 15.3999 11.0098 15.5 10.75 15.5C10.4902 15.5 10.2402 15.3999 10.04 15.21L7.54004 12.71C7.15039 12.3198 7.15039 11.6802 7.54004 11.29C7.92969 10.8999 8.57031 10.8999 8.95996 11.29L10.75 13.0898L15.04 8.79004C15.4297 8.3999 16.0703 8.3999 16.46 8.79004C16.8496 9.18018 16.8496 9.81982 16.46 10.21Z' fill='%231BFFC8'/%3E%3C/svg%3E%0A");
}
.server-locations td > span.unavailable {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 2H5C3.3501 2 2 3.3501 2 5V19C2 20.6499 3.3501 22 5 22H19C20.6499 22 22 20.6499 22 19V5C22 3.3501 20.6499 2 19 2ZM15.71 14.29C16.1001 14.6802 16.1001 15.3198 15.71 15.71C15.5098 15.8999 15.2598 16 15 16C14.7402 16 14.4902 15.8999 14.29 15.71L12 13.4102L9.70996 15.71C9.50977 15.8999 9.25977 16 9 16C8.74024 16 8.49024 15.8999 8.29004 15.71C7.8999 15.3198 7.8999 14.6802 8.29004 14.29L10.5898 12L8.29004 9.70996C7.8999 9.31983 7.8999 8.68018 8.29004 8.29004C8.68018 7.8999 9.31983 7.8999 9.70996 8.29004L12 10.5898L14.29 8.29004C14.6802 7.8999 15.3198 7.8999 15.71 8.29004C16.1001 8.68018 16.1001 9.31983 15.71 9.70996L13.4102 12L15.71 14.29Z' fill='%23FF0066'/%3E%3C/svg%3E%0A");
}
@media screen and (max-width: 768px) {
  .server-locations-table {
    vertical-align: top;
    margin-bottom: 41px;
  }
  .server-locations-table tr > td:first-child {
    width: 20%;
  }
  .server-locations-table th {
    font-size: 7px;
    line-height: 1.2;
    padding-bottom: 12px;
  }
  .server-locations-table th:not(:last-of-type) {
    padding-right: 5px;
  }
  .server-locations-table thead tr {
    vertical-align: top;
  }
  .server-locations-table tr > td {
    min-width: 30px;
    max-width: 100%;
  }
  .server-locations .flag {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 5px;
  }
  .server-locations .flag span {
    font-size: 10px;
    line-break: 1.4;
  }
  .server-locations td > span {
    width: 16px;
    height: 16px;
  }
}

.hero__img #map {
  max-width: 47%;
}

.hero__img #map img {
  max-width: inherit;
  margin-left: auto;
}


@media screen and (max-width: 992px) {
  .hero__img #map {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}

.hero-knowledge-center {
  min-height: 580px;
}
.hero-knowledge-center h1 {
  max-width: 625px;
  text-align: center;
  margin-bottom: 35px;
}
.hero-knowledge-center .hero__left {
  max-width: 100%;
  position: static;
}
.hero-knowledge-center .hero__text {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.hero-knowledge-center .hero__img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 0;
  bottom: 0;
}
.hero-knowledge-center .col-lg-12, .hero-knowledge-center .col-md-12, .hero-knowledge-center .col-sm-12 {
  position: static;
}
@media screen and (max-width: 1200px) {
  .hero-knowledge-center .hero__img img {
    max-width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .hero-knowledge-center {
    min-height: 400px;
  }
  .hero-knowledge-center .hero__text h1 {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .hero-knowledge-center .hero__img {
    width: 100%;
  }
}

.search-form {
  max-width: 512px;
  width: 100%;
}
.search-form .form-search {
  position: relative;
}
.search-form .form-search__field {
  width: 100%;
  position: relative;
}
.search-form .form-search__field input {
  width: 100%;
  height: 54px;
  background: #FFFFFF;
  border-radius: 0;
  border: 1px solid #FFFFFF;
  padding: 14px 55px 12px 25px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #181818;
  outline: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.search-form .form-search__field input:focus {
  border-color: #FF0066;
}
.search-form .form-search__field::after {
  content: "";
  width: 24px;
  height: 24px;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5 21C16.7467 21 21 16.7467 21 11.5C21 6.25329 16.7467 2 11.5 2C6.25329 2 2 6.25329 2 11.5C2 16.7467 6.25329 21 11.5 21Z' stroke='%23FF0066' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 22L20 20' stroke='%23FF0066' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  right: 19px;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.search-form .form-search__result {
  position: absolute;
  top: 100%;
  width: 100%;
  max-height: 200px;
  overflow: scroll;
  background-color: #FFFFFF;
  display: none;
}
.search-form .form-search__result.active {
  border-top: 1px solid #181818;
  display: block;
  overflow: scroll;
}
.search-form .form-search__result ul {
  color: #181818;
  display: block;
}
.search-form .form-search__result ul li {
  padding: 0;
  min-height: 45px;
}
.search-form .form-search__result ul li a{
  padding: 12px 25px 14px 25px;
  width: 100%;
}
.search-form .form-search__result ul li::before, .search-form .form-search__result ul li::after {
  display: none;
}
.search-form .form-search__result ul li:hover {
  background: #FF0066;
  color: #FFFFFF;
}
@media screen and (max-width: 992px) {
  .search-form {
    max-width: 350px;
  }
  .search-form .form-search__field input {
    height: 36px;
    padding: 7px 40px 8px 15px;
    font-size: 16px;
  }
  .search-form .form-search__field::after {
    content: "";
    width: 24px;
    height: 24px;
    right: 9px;
  }
}

.knowledge-section {
  margin: 50px 0 140px 0;
}
.knowledge-section__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.knowledge-section__wrap .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
.knowledge-section__wrap .item-img {
  width: 100%;
}
.knowledge-section__wrap .item-img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 10px;
}
.knowledge-section__wrap .item-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  color: #FFFFFF;
}
@media screen and (max-width: 992px) {
  .knowledge-section__wrap .item {
    gap: 30px;
  }
  .knowledge-section__wrap .item-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .knowledge-section {
    margin-bottom: 90px;
  }
  .knowledge-section__wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .knowledge-section__wrap .item {
    gap: 15px;
  }
}

.popular-articles {
  margin: 140px 0 260px 0;
}
.popular-articles h2 {
  text-align: center;
  margin-bottom: 61px;
}
.popular-articles__wrap {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}
.popular-articles__wrap .item {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 20px 24px;
  grid-template-columns: auto 24px;
  grid-gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  color: #FFFFFF;
  padding: 18px 0;
  border-bottom: 1px solid #313536;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.popular-articles__wrap .item::after {
  content: "";
  display: block;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.9502 4.07992L15.4702 10.5999C16.2402 11.3699 16.2402 12.6299 15.4702 13.3999L8.9502 19.9199' stroke='%23FF0066' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  width: 24px;
  height: 24px;
}
.popular-articles__wrap .item:last-of-type, .popular-articles__wrap .item:nth-child(4) {
  border-bottom-color: transparent;
}
.popular-articles__wrap .item:hover {
  text-decoration: underline;
  color: #FF0066;
}
@media screen and (max-width: 993px) {
  .popular-articles {
    margin: 90px 0 140px 0;
  }
  .popular-articles__wrap {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
  .popular-articles__wrap .item {
    font-size: 18px;
  }
}

.hero-faq {
  min-height: 600px;
}
.hero-faq .search-form {
  margin-top: 99px;
}
.hero-faq .hero__img {
  margin-right: 100px;
}
@media screen and (max-width: 993px) {
  .hero-faq {
    min-height: auto;
  }
  .hero-faq .hero__img {
    margin-right: auto;
  }
  .hero-faq .search-form {
    margin-top: 40px;
  }
}

.faq-section {
  margin: 60px 0 200px 0;
}
.faq-section__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 2fr;
  grid-template-columns: 1fr 2fr;
  grid-gap: 15px;
}
.faq-section .toc-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 17px;
}
.faq-section .toc-list a {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  color: #FFFFFF;
  text-decoration: none;
}
.faq-section .toc-list a.active {
  color: #FF0066;
}
.faq-section .toc-list a:hover {
  text-decoration: none;
  color: #FF0066;
}
.faq-section-troubleshooting h2.item-title {
  color: #FFFFFF;
  margin-bottom: 45px;
}
.faq-section-troubleshooting .accordion .accordion-titel {
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.faq-section-troubleshooting .accordion .accordion-titel h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #FFFFFF;
  margin-bottom: 0;
  padding: 20px 0 23px 0;
}
.faq-section-troubleshooting .accordion .accordion-content {
  padding: 0;
}
.faq-section-troubleshooting .accordion .accordion-content .text, .faq-section-troubleshooting .accordion .accordion-content .text-list {
  padding: 0;
}
.faq__content {
  padding: 0;
}
.faq__content .item {
  margin-bottom: 90px;
}
.faq__content .item:last-of-type {
  margin-bottom: 0;
}
.faq__content h2 {
  font-weight: 700;
  font-size: 45px;
  line-height: 110%;
  color: #FF0066;
}
.faq__content .item-title {
  font-weight: 700;
  font-size: 45px;
  line-height: 110%;
  color: #FF0066;
}
.faq__content .h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 117%;
  color: #FFFFFF;
  margin-bottom: 24px;
  padding-top: 45px;
  margin-top: 33px;
  border-top: 1px solid #313536;
}
.faq__content p, .faq__content li, .faq__content a {
  font-weight: 400;
  font-size: 17px;
  line-height: 140%;
}
.faq__content a {
  display: inline;
}
.faq__content a.link {
  display: block;
  margin-bottom: 26px;
  text-decoration: underline;
  font-size: 20px;
}
.faq__content a.link:hover {
  text-decoration: none;
}
.faq__content .col-lg-6 .h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

@media screen and (max-width: 993px) {
  .faq-section {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    -webkit-transform: none !important;
    transform: none !important;
    margin: 60px 0 100px 0;
  }
  .faq-section__wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .faq-section .inner-wrapper-sticky {
    background-color: #0F0F0F;
    z-index: 4;
    position: static;
    width: 100% !important;
  }
  .faq-section .is-affixed {
    padding-top: 150px;
  }
  .faq-section .is-affixed .toc-list {
    gap: 5px;
    padding-bottom: 10px;
  }
  .faq-section .is-affixed .toc-list a {
    font-size: 12px;
  }
  .faq-section .faq__content {
    margin-top: 40px;
  }
  .faq-section .faq__content .item {
    margin-bottom: 60px;
  }
  .faq-section .faq__content h2 {
    font-size: 30px;
  }
  .faq-section .faq__content .item-title {
    font-size: 30px;
  }
  .faq-section .faq__content .h2 {
    font-size: 24px;
    margin-bottom: 24px;
    padding-top: 25px;
    margin-top: 25px;
  }
  .faq-section .faq__content p, .faq-section .faq__content li, .faq-section .faq__content a {
    font-size: 14px;
  }
  .faq-section .faq__content .row .col-lg-6:nth-child(2) .h2:last-of-type {
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid #313536;
  }
}
.hero-tutorials {
  min-height: 580px;
}
.hero-tutorials .hero__img {
  margin: 70px 0 -50px 0;
}
.hero-tutorials .search-form {
  margin-top: 99px;
}
@media screen and (max-width: 993px) {
  .hero-tutorials {
    min-height: auto;
  }
  .hero-tutorials .hero__img {
    margin-right: auto;
    margin-top: 0;
  }
  .hero-tutorials .search-form {
    margin-top: 40px;
  }
}

.tabs-tutorial {
  scroll-behavior: smooth;
}
.tabs-tutorial__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 93px 1fr;
  grid-template-columns: 2fr 1fr;
  grid-gap: 93px;
  padding: 120px 0 200px 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.tabs-tutorial__wrap .h3 {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.tabs-tutorial__wrap .tabs-nav {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
.tabs-tutorial__wrap .tabs-nav li a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 24px 20px 1fr;
  grid-template-columns: 24px 1fr;
  grid-gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 36px;
}
.tabs-tutorial__wrap .tabs-nav li a:hover {
  color: #FF0066;
}
.tabs-tutorial__wrap .tabs-nav li a img {
  display: block;
  margin: auto;
}
.tabs-tutorial__wrap .tabs-content {
  background: #181818;
  border-radius: 10px;
  padding: 50px 45px 45px 50px;
}
.tabs-tutorial__wrap .tabs-content a {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  text-decoration-line: underline;
  color: #FF0066;
  margin-bottom: 25px;
}

@media screen and (max-width: 993px) {
  .tabs-tutorial__wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    padding: 60px 0 150px 0;
  }
  .tabs-tutorial__wrap .h3 {
    margin-bottom: 15px;
  }
  .tabs-tutorial__wrap .tabs-nav li a {
    grid-gap: 10px;
    -ms-grid-columns: 16px 10px 1fr;
    grid-template-columns: 16px 1fr;
    font-size: 14px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .tabs-tutorial__wrap .tabs-nav li a img {
    margin: 4px auto 0 auto;
  }
  .tabs-tutorial__wrap .tabs-content {
    padding: 25px 15px 5px 25px;
  }
  .tabs-tutorial__wrap .tabs-content a {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.blog-post__tags a {
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
  color: #FF0066;
  background: rgba(255, 0, 102, 0.1254901961);
  display: inline-block;
  border-radius: 8px;
  padding: 6px 12px 4px 12px;
  margin-bottom: 25px;
}

.blog-post__date {
  margin-bottom: 66px;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  color: #8C8C8C;
}

.important-card {
  background: #181818;
  border-radius: 13.522px;
  padding: 53px 74px;
  margin: 65px 0;
}
.important-card p {
  max-width: 694px;
}
.important-card .h3, .important-card h3 {
  font-weight: 700;
  font-size: 24.3396px;
  line-height: 140%;
  color: #FFFFFF;
  margin-bottom: 19px;
}

.tutorial-post .mobile-sidebar {
  display: none;
}
.tutorial-post .toc-list__item {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 24px;
}
.tutorial-post .toc-list__item a.active {
  color: #FF0066;
}
@media screen and (max-width: 993px) {
  .tutorial-post .col-lg-3 {
    display: none;
  }
  .tutorial-post .mobile-sidebar {
    display: block;
  }
}

@media screen and (max-width: 993px) {
  .blog-post__tags a {
    font-size: 12px;
    padding: 6px 12px 4px 12px;
    margin-bottom: 20px;
  }
  .blog-post__date {
    margin-bottom: 40px;
  }
  .important-card {
    background: #181818;
    border-radius: 13.522px;
    padding: 53px 74px;
    margin: 65px 0;
  }
  .important-card p {
    max-width: 694px;
  }
  .important-card .h3, .important-card h3 {
    font-weight: 700;
    font-size: 24.3396px;
    line-height: 140%;
    color: #FFFFFF;
    margin-bottom: 19px;
  }
}
.helpful__form {
  margin-top: 100px;
}
.helpful__form .form-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 45px 18px;
}
.helpful__form .form-title {
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
}
.helpful__form input[type=radio] {
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}
.helpful__form input[type=radio]:checked + label {
  background-color: rgba(117, 237, 253, 0.2823529412);
}
.helpful__form .input-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 60px;
  min-width: 98px;
  border: none;
  outline: none;
  color: #FFFFFF;
  position: relative;
  border-radius: 50px;
  background-clip: padding-box;
  border-radius: 50px;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  margin: 2px;
}
.helpful__form .input-field label {
  border-radius: 50px;
  padding: 5px 32px;
  width: 100%;
  background-color: #0F0F0F;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
}
.helpful__form .input-field:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  margin: -2px;
  border-radius: inherit;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  background: linear-gradient(-273.4deg, #75EDFD 4.28%, #FF0066 93.81%);
}
.helpful__form .input-field::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  margin: -2px;
  border-radius: inherit;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  opacity: 0;
  background: linear-gradient(273.4deg, #75EDFD 4.28%, #FF0066 93.81%);
}
.helpful__form .input-field:hover::before {
  opacity: 0;
}
.helpful__form .input-field:hover::after {
  opacity: 1;
}
.helpful__form .input-field:focus span {
  background: #270D17;
}
.helpful__form .input-field:focus::before {
  opacity: 1;
}
.helpful__form .input-field:focus::after {
  opacity: 0;
}
.helpful__form .input-field:active {
  color: #FFFFFF;
}
.helpful__form .input-field:active span {
  background: linear-gradient(273.4deg, #75EDFD 4.28%, #FF0066 93.81%);
}
.helpful__form .input-field:active::before {
  opacity: 0;
}
.helpful__form .input-field:active::after {
  opacity: 1;
}

@media screen and (max-width: 993px) {
  .form-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 993px) {
  .articles .article__text p + .button span {
    text-align: center;
  }
}

.articles .article__img img,
.set-up__img img{
  height: auto;
  object-fit: contain;
}

.footer .translate.translate--full .flag {
  display: flex;
}

.footer .translate.translate--full .flag img {
  flex-grow: 0;
}
.server-locations .button span {
  text-align: center;
}


@media (min-width: 1300px) {
  .header__bottom nav>ul>.menu-item>a {
    text-wrap: nowrap;
  }

  .header__bottom nav>ul {
    padding-left: 15px;
  }
}

.tax-glossary_cat .glossary-tab {
  z-index: 1;
  padding-top: 0;
  position: relative;
}

.single-glossary .main .text {
  position: relative;
  z-index: 1;
}

@media (min-width:961px)  {
  .hero-bandwidth-throttling {
    z-index: -1;
  }

  .single-glossary .main .text {
    padding: 0 0 190px 0;
    margin-top: -100px;
  }

  .tax-glossary_cat .glossary-tab {
    padding: 0 0 120px 0;
    margin-top: -100px;
    z-index: 1;
  }
}

@media (min-width:993px)  {
  .tax-glossary_cat .glossary-tab {
    margin-top: -200px;
  }
}

@media screen and (max-width: 768px) {
  .single-glossary .main .text {
    margin-top: -60px;
  }
}

/*Video shortcode*/
.wp-video ,.wp-video .wp-video-shortcode  {
  width: 100% !important;
}


/*POPUP*/

@keyframes slideDownEnter {
  0% {
    transform: translateY(-150%);
  }
  100% {
    transform: translateY(0);
  }
}

#rgbc-slidedown-container {
  font-size: 16px;
  position: fixed;
  z-index: 2258594000;
  left: 0;
  right: 0;
  -webkit-font-smoothing: initial;
}

#rgbc-slidedown-container.slide-down {
  display: none;
  top: 0;
}

#rgbc-slidedown-container.slide-down.active {
  display: block;
}

#rgbc-slidedown-container.slide-down.active #rgbc-slidedown-dialog {
  width: 500px;
  -webkit-animation-name: slideDownEnter;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-duration: .4s;
  -webkit-animation-fill-mode: forwards;
  animation-name: slideDownEnter;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  animation-duration: .4s;
  animation-fill-mode: forwards;
}

#rgbc-slidedown-container.slide-down.active #rgbc-slidedown-dialog {
  width: 500px;
  -webkit-animation-name: slideDownEnter;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-duration: .4s;
  -webkit-animation-fill-mode: forwards;
  animation-name: slideDownEnter;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  animation-duration: .4s;
  animation-fill-mode: forwards;
}

#rgbc-slidedown-container #rgbc-slidedown-dialog {
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 1px 6px rgba(5, 27, 44, .06), 0 2px 32px rgba(5, 27, 44, .16) !important;
  background: #fff !important;
  color: #051b2c;
  padding: 1.5em;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
  font-family: "DMSans", sans-serif;
}

.rgbc-slide-down-wrapper{
  position: relative;
  display: flex;
  flex-direction: column;
}

#rgbc-slidedown-container #rgbc-slidedown-dialog .slidedown-body {
  box-sizing: border-box;
  margin: 0;
}

#rgbc-slidedown-container #rgbc-slidedown-dialog .slidedown-body-icon {
  box-sizing: border-box;
  float: left;
  width: 80px;
  height: 80px;
  position: relative;
}

#rgbc-slidedown-container #rgbc-slidedown-dialog .slidedown-body-icon img {
  width: 100%;
  height: 100%;
}

#rgbc-slidedown-container #rgbc-slidedown-dialog .slidedown-body-message {
  box-sizing: border-box;
  padding: 0 0 0 1em;
  font-weight: 400;
  float: left;
  width: calc(100% - 80px);
  line-height: 1.45em;
  -o-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  color: #051b2c !important;
}

#rgbc-slidedown-container #rgbc-slidedown-dialog .slidedown-button.primary {
  background: #0078d1;
  color: #fff !important;
  transition: 75ms linear;
}

#rgbc-slidedown-container #rgbc-slidedown-dialog .align-right {
  float: right;
}

#rgbc-slidedown-container #rgbc-slidedown-dialog .slidedown-button {
  padding: 0.75em 1.5em;
  font-size: 1em;
  border-radius: 0.25em;
  font-weight: 400;
  box-shadow: unset;
  display: -ms-flexbox;
  display: flex;
}

#rgbc-slidedown-container #rgbc-slidedown-dialog button {
  box-sizing: border-box;
  display: inline-block;
  padding: 0.375rem 1rem;
  font-size: .9625em;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  font-family: inherit;
  letter-spacing: .05em;
  transition: background-color 75ms ease;
  margin: 0;
}

#rgbc-slidedown-container #rgbc-slidedown-dialog .primary.slidedown-button + .secondary.slidedown-button {
  margin-right: 0.714em;
}

#rgbc-slidedown-container #rgbc-slidedown-dialog .slidedown-button.secondary {
  box-shadow: none;
  background: #fff !important;
  color: #0078d1 !important;
}

#rgbc-slidedown-container #rgbc-slidedown-dialog .clearfix {
  display: block;
  -webkit-backface-visibility: initial!important;
  backface-visibility: initial!important;
}

.device-table {
  width: 100%;
  background-color: #313536;
  border-radius: 12px;
  overflow: hidden;
}
.device-table__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 1px;
  font-size: 20px;
  font-weight: 400;
  line-height: 110%;
}
.device-table__row--mobile {
  grid-template-columns: 1fr;
}
.device-table__row--header {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 2px;
  text-align: center;
}
.device-table__row--header .device-table__item {
  text-transform: uppercase;
  background-color: #FF0066 !important;
}
.device-table__row--header.device-table__row--mobile {
  font-size: 12px;
}
.device-table__row--body:nth-child(2) .device-table__item {
  padding-top: 32px;
}
.device-table__row--body:last-child .device-table__item {
  padding-bottom: 32px;
}
.device-table__row--body.device-table__row--mobile {
  font-size: 16px;
}
.device-table__item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  align-items: center;
  background-color: #181818;
  padding: 16px 0;
}
.device-table__item img {
  margin-bottom: 8px;
}
.device-table__item a {
  color: #fff;
}
.device-table__row--mobile .device-table__item {
  padding: 8px 0 !important;
}
.device-table__row--mobile .device-table__item:first-child {
  padding-top: 24px !important;
}
.device-table__row--mobile .device-table__item:last-child {
  padding-bottom: 24px !important;
}
.device-table__row--header .device-table__item:first-child {
  padding-top: 8px !important;
}
.device-table__row--header .device-table__item:last-child {
  padding-bottom: 8px !important;
}
.page-template-support .main {
  margin-bottom: 180px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.page-template-support h1 {
  letter-spacing: -2.5px;
}
.support-wrap {
  width: 100%;
  padding-top: 140px;
  padding-inline: 10px;
  max-width: 766px;
  display: flex;
  flex-direction: column;
  font-family: "DMSans", sans-serif;
}
.support-form {
  font-size: 1rem;
}
.support-form input[type="email"],
.support-form input[type="text"],
.support-form select,
.support-form textarea {
  padding: .95em 1.65em;
  width: 100%;
  font-size: 1.25em;
  background-color: #0f0f0f;
  border: 1px solid #fff;
  color: #fff;
}
.support-form select {
  appearance: none;
}
.support-form select option {
  color: #fff;
}
.support-form select option[value=""],
.support-form select:invalid
{
  color: #808080FF;
}
.support-form .hs-fieldtype-select .input {
  position: relative;
}
.support-form .hs-fieldtype-select .input:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 14px;
  height: 8px;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAICAYAAADJEc7MAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABPSURBVHgBnctRDQAgCARQoxjBqDYwghGMYgQiIGy6MQfIZLsP4F5Kv4OIlTIpOdDNu9t4KRR4YYG4W87RxSoSTxW7yMIhZGAIoQsPSrfQAtQYqWi4xa1GAAAAAElFTkSuQmCC');
}
.support-form textarea {
  height: 8.75em;
  margin-bottom: 1.1em;
  font-family: "DMSans", sans-serif;
}
.support-form .actions {
  position: relative;
  max-width: 195px;
  margin-top: 2.85em;
  padding: 0.1rem;
  background: linear-gradient(93.62deg, #75EDFD 0.39%, #FF0066 98.02%);
  border-radius: 50px;
}
.support-form .actions::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(-93.62deg, #75EDFD 0.39%, #FF0066 98.02%);
  border-radius: 50px;
  transition: opacity 0.5s;
  opacity: 0;
}
.support-form .actions:hover::before {
  opacity: 1;
}
.support-form input[type="submit"] {
  position: relative;
  z-index: 2;
  padding: 1.2rem;
  width: 100%;
  font: 700 20px/26px "DMSans", sans-serif;
  color: white;
  background: #0f0f0f;
  border: none;
  border-radius: 50px;
}
.support-form input[type="submit"]:hover {
  cursor: pointer;
}
.support-form label:not(.hs-error-msg) {
  margin-top: 1.65em;
  margin-bottom: .6em;
  display: block;
  font-size: 1.25em;
  line-height: 1.4em;
  font-weight: 500;
}
.support-form .urban-notice {
  margin-top: 38px;
  margin-bottom: 51px;
}
.urban-notice {
  padding: 1.4em .5em;
  font-size: 1.25rem;
  text-align: center;
  border-bottom: 2px solid #808080FF;
  border-radius: .5em;
  background: rgba(128, 128, 128, 0.1);
}
.urban-notice--error {
  border-color: #FF0066;
  background: rgba(255, 0, 102, 0.1);
}

@media screen and (max-width: 768px) {
  .page-template-support .main {
    margin-bottom: 138px;
  }
  .support-wrap {
    padding-top: 20px;
  }
  .support-form .actions {
    max-width: initial;
  }
  .support-form {
    font-size: .8rem;
  }
  .urban-notice {
    font-size: 1rem;
  }
}
