@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Light.woff") format("woff"),
    url("./fonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Regular.woff") format("woff"),
    url("./fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Medium.woff") format("woff"),
    url("./fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-SemiBold.woff") format("woff"),
    url("./fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Bold.woff") format("woff"),
    url("./fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* :root {
  --document-font-family: "Montserrat";
} */

button {
  border: none;
  outline: none;
  font-family: "Montserrat", Arial, sans-serif;
}

section {
  /* overflow-x: hidden; */
}

body {
  font-family: "Montserrat", Arial, sans-serif;
}

input {
  border-radius: 0;
}

text {
  font-family: "Montserrat", Arial, sans-serif;
}

svg {
  font-family: "Montserrat", Arial, sans-serif;
}

.no-scroll {
  overflow: hidden;
}

.robo {
}

a {
  text-decoration: none;
  color: #fc2e71;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
  font-size: #fdc07e;
}

ul {
  list-style: none;
  /* Remove default bullets */
}

li {
  color: #000;
  font-weight: 400;
  margin: 15px;
  position: relative;
}

ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: -15px;
  top: 7px;
  width: 4px;
  /* Set the bullet width */
  height: 4px;
  /* Set the bullet height */
  border-radius: 50%;
  /* Make the bullet round */
  background-color: rgb(255, 255, 255);
  /* Set the bullet color */
}

section {
  background-color: #e4e4e4;
}

.hidden {
  display: none !important;
}

.d-desctop {
  display: block;
}

.d-mob {
  display: none;
}

.d-pad {
  display: none;
}

.p-0 {
  padding: 0 !important;
}

.case-d-desctop {
  display: block;
}

.case-d-mob {
  display: none;
}

.container {
  max-width: 1241px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}

.text-title {
  font-weight: 600;
  font-size: 45px;
  line-height: 54px;
}

.text-prime {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
}

.text-second {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

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

.title__text {
  margin-top: 28px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-60 {
  margin-top: 60px;
}

.mx-30 {
  margin: 0 30px;
}

.flex-end {
  align-self: flex-end;
}

.line {
  background: #000;
  width: 100%;
  height: 1px;
}

.line.line-dark {
  background: #fff;
}

.blue-color {
  color: #0053f1 !important;
}

.white-color {
  color: #fff !important;
}

.btn {
  font-family: "Montserrat";
  font-size: 20px;
  line-height: 24px;
  display: block;
  background: linear-gradient(270deg, #fc2e71 -88.02%, #000000 76.49%);
  border: 1px solid #000;
  font-weight: 600;
  color: #fff;
  max-width: 255px;
  width: 100%;
  padding: 20px 35px;
  text-align: center;
  user-select: none;
  cursor: pointer;
  moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.btn-wide {
  max-width: 436px;
}

.btn-light {
  background: linear-gradient(270deg, #fc2e71 -122.45%, #ffffff 68.55%);
  color: #000;
}

.btn:disabled {
  background: #ccc;
  cursor: default;
  color: white;
  border: 1px solid #ccc;
}

.btn:hover,
.btn-light:hover {
  opacity: 1;
  background: #fc2e71;
  color: black;
}

::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #fc2e71;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #bb0083;
}

.overhiddex {
  overflow-x: hidden;
}

.overhidden {
  overflow: hidden;
}

.bg-border {
  background: #fff;
  border: 1px solid #000;
}

.nav-list-img a:hover {
  opacity: 1 !important;
}

/* Add styles for the content */
.content {
  margin-top: 100px;
  padding: 20px;
}

.header {
  background-image: url("../img/bg.png");
  background-size: cover;
  background-position: center;
  background-color: #262626;
  width: 100%;
  max-width: 100vw;
  position: relative;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 200px 0 212px;
  position: relative;
  overflow-y: hidden;
}

@media screen and (max-width: 500px) {
  .header {
    flex-wrap: wrap;
  }

  .header-ssp {
    min-height: 440px;
  }
}

.header-cube {
  position: absolute;
  max-width: 346px;
  left: 5%;
  bottom: -65%;
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

@media screen and (max-width: 500px) {
  .header-content {
    flex-wrap: wrap;
  }
}

.header-content__main-title {
  font-weight: 600;
  font-size: 100px;
}

.header-content__title {
  font-weight: 400;
  font-size: 32px;
  margin-top: 12px;
}

.navbar-wrapper {
  background-color: #262626;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: top 0.3s;
  padding: 10px 0;
}

.navbar-wrapper-bg {
  position: absolute !important;
  background-image: url(../img/bg.png);
  background-size: cover;
  background-position: center;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

@media screen and (max-width: 500px) {
  .nav-content {
    flex-wrap: wrap;
  }
}

.nav-list {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  gap: 50px;
}

@media screen and (max-width: 500px) {
  .navbar-wrapper {
    padding: 18px 0;
  }

  .nav-list {
    flex-wrap: wrap;
  }

  .nav-list img {
    max-width: 60px;
  }
}

.nav-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: row;
  color: #fff;
  /* position: relative; */
}

@media screen and (max-width: 500px) {
  .nav-item {
    flex-wrap: wrap;
  }
}

.nav-item::after {
  content: "";
  position: absolute;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  right: -5px;
  top: 2px;
}

.nav-link {
  display: flex;
}

.arrow-down {
  position: relative;
}

.arrow-down::after {
  content: "";
  position: absolute;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  right: -13px;
  top: 6px;
}

.nav-item.active {
  color: #fc2e71;
}

.nav-item_link {
  margin-right: 10px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s;
}

.nav-item_link:hover {
  color: #fc2e71;
}

.nav-item:hover {
  opacity: 1;
}

.nav-item a {
  color: #fff;
}

nav ul {
  list-style: none !important;
}

nav ul li:before {
  display: none;
}

.topmenu > li {
  float: left;
  position: relative;
}

.topmenu > li:first-child {
  border-left: 0;
}

.topmenu > li > a {
  color: #fff;
}

.submenu {
  padding: 30px;
  position: absolute;
  z-index: 5;
  min-width: 200px;
  background: #262626;
  border: 1px solid #000000;
  display: flex;
  align-items: start;
  justify-content: space-between;
  transform: rotateX(0deg);

  overflow: hidden;
  visibility: hidden;
  opacity: 0;

  /* transform: rotateX(-90deg); */
  /* visibility: visible;
  opacity: 1; */

  transform-origin: 0% 0%;
  transition: 0.3s linear;
}

.submenu li {
  position: relative;
  margin: 0;
}

.submenu li a {
  color: white;
  /* padding: 10px; */
  font-size: 18px;
  transition: 0.2s;
}

.submenu li a:hover {
  color: #fc2e71;
  /* padding: 10px; */
}

.submenu .third-menu {
  /* position: absolute;
  left: 100%;
  top: -1px;
  transition: 0.3s linear; */
  display: flex;
  flex-direction: column;
  height: 140px;
  flex-wrap: wrap;
  gap: 16px 50px;
  margin-top: 20px;
}

li:hover > .submenu {
  transform: rotateX(0deg);
  visibility: visible;
  opacity: 1;
}

li:hover > .nav-link {
  color: #fc2e71;
}

li:hover > .nav-header .arrow-down::after {
  border: solid #fc2e71;
  border-width: 1px 1px 0 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
}

li:hover > .nav-header .nav-item_link {
  color: #fc2e71;
}

.submenu-wide {
  min-width: 727px;
  right: 0;
  top: 44px;
  right: calc(-80 * 1vw / 14.4);
}

.submenu-item {
  display: flex;
  flex-direction: column;
}

.submenu-item a {
  min-width: 270px;
}

.submenu.third-menu {
  display: none;
  position: relative;
  border: none;
  background: none;
  flex-direction: column;
  height: 100px;
  flex-wrap: wrap;
  padding: 0;
  width: 650px;
  left: 0;
}

.submenu-item:hover .submenu.third-menu {
  display: flex;
}

.submenu-item:hover .arrow-down::after {
  border: solid #fc2e71;
  border-width: 1px 1px 0 0;
  display: inline-block;
  padding: 3px;
  /* transform: rotate(-45deg); */
}

.submenu-item .nav-link {
  color: #fc2e71;
}

.submenu.third-menu {
}

.ssp-margin {
  margin-top: 20px;
}

.submenu.third-menu li {
  margin-bottom: 10px;
}

.submenu .submenu-item-ssp {
  max-width: 155px;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  z-index: 1;
}

.dropdown-list {
  padding: 30px;
  background: linear-gradient(
      0deg,
      rgba(79, 79, 79, 0.2),
      rgba(79, 79, 79, 0.2)
    ),
    #161616;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  flex-wrap: wrap;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  gap: 15px 30px;
  /* height: 200px; */
}

.dropdown-list.dsp {
  width: 675px;
}

.dropdown-list.drop-main {
  min-width: 338px;
  text-align: left;
  position: absolute;
  min-height: 178px;
  right: 0;
}

.dropdown-list.ssp {
  width: 285px;
}

.dropdown-content a {
  color: #f1f1f1;
  transition: 0.5s;
  padding: 5px;
}

.dropdown-content a:hover,
.burger-list a:hover {
  color: #fc2e71;
}

/* .dropdown:hover .dropdown-content {
  display: block;
} */
.full-self {
  display: flex;
  flex-direction: column;
}

.brand-sec {
  padding: 100px 0;
}

.brand-sec-list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
  gap: 30px;
}

.why-list {
  flex-wrap: wrap;
}
.tech-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.tech-item {
  min-height: 253px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px;
  font-size: 22px;
  position: relative;
  z-index: 10;
}
.tech-item-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 10;
}
.tech-line {
  position: absolute;
  z-index: 5;
  width: 1px;
  height: 100%;
  background: #000000;
  left: 50%;
  top: 0;
}
.tech-bg-dot {
  background: url("../img/bg/techdot.svg");
  width: 540px;
  height: 540px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  bottom: -149px;
  left: -365px;
}
@media screen and (max-width: 500px) {
  .brand-sec-list {
    flex-wrap: wrap;
  }
}

.brand-sec-card {
  max-width: 270px;
  width: 100%;
  min-height: 235px;
  padding: 20px 10px 0px 30px;
  /* margin: 0 auto; */
}

.brand-sec-card__counter {
  font-weight: 600;
  font-size: 52px;
  margin-bottom: 15px;
}

.gonet-second {
  padding: 120px 0 140px;
}

.gonet-second__content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (max-width: 500px) {
  .gonet-second__content {
    flex-wrap: wrap;
  }
}

.gonet-second__content-left {
  max-width: 470px;
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.gonet-second__content-right-mob {
  display: none;
}

@media screen and (max-width: 500px) {
  .gonet-second__content-left {
    flex-wrap: wrap;
  }
}

.gonet-second__content-left-text {
  font-size: 22px;
  line-height: 130%;
  margin-bottom: 10px;
}
.gonet-second__content-left-text-secondary {
  font-size: 18px;
  line-height: 130%;
  /* margin-bottom: 30px; */
}

.gonet-second .gonet-link {
  max-width: 336px;
}

.posible-card {
  max-width: 370px;
  color: #fff;
  background: #262626;
  padding: 47px 0;
  min-height: 170px;
}

.posible-card-second {
  max-width: 370px;
  padding: 28px 10px;
  padding-left: 25px;
}

.posible-card-second-wide {
  max-width: 775px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

@media screen and (max-width: 500px) {
  .posible-card-second-wide {
    flex-wrap: wrap;
  }
}

.posible-counter {
  font-size: 35px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #fff 39.31%, #fc2e71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.card-pie-list {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: row;
  gap: 100px;
}

@media screen and (max-width: 500px) {
  .card-pie-list {
    flex-wrap: wrap;
  }
}

.gonet-dark {
  background: #262626;
  color: #fff;
}

.prestart-sec {
  padding: 80px 0 100px;
  position: relative;
  /* overflow-x: visible; */
}

.prestart-content {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}

.prestart-text {
  font-weight: 500;
  font-size: 30px;
  line-height: 37px;
  margin-bottom: 24px !important;
}

.prestart-text-first {
  max-width: 556px;
  margin: 0 auto;
}

.prestart-text-second {
  font-weight: 600;
  font-size: 40px;
  background: linear-gradient(90deg, #fff 29.31%, #fc2e71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.prestart-arrow {
  width: 100px;
  height: 100px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

@media screen and (max-width: 500px) {
  .prestart-arrow {
    flex-wrap: wrap;
  }
}

.start-sec {
  padding: 160px 0 80px;
}

.start-sec-card {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  padding: 40px 20px;
}

@media screen and (max-width: 500px) {
  .start-sec-card {
    flex-wrap: wrap;
  }
}

.start-sec__wrapper {
  height: 50px;
  margin-bottom: 27px;
}

.start-sec__img {
}

.start-sec__title {
  margin-bottom: 20px;
}

.start-sec-btn {
  margin: 0 auto;
  margin-top: 60px;
}

.autostart-card {
  max-width: 579px;
  padding: 35px 45px;
}

.autostart-text {
  margin-bottom: 36px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
}

.autostart-text:last-child {
  margin-bottom: 0px;
}

.autostart-text img {
  margin-right: 24px;
}

.autostart-video {
  max-width: 570px;
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  overflow: hidden;
}

@media screen and (max-width: 500px) {
  .autostart-video {
    flex-wrap: wrap;
  }
}

.autostart-video video {
  width: 100%;
}

.work-card {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  max-width: 370px;
  min-height: 157px;
  padding: 10px 30px;
}

.work-card-img {
  width: 100%;
}

@media screen and (max-width: 500px) {
  .work-card {
    flex-wrap: wrap;
  }
}

.work-card__img {
  margin-right: 24px;
}

.work-card-wide {
  max-width: 771px;
  padding: 35px 40px;
}

.work-card-bg {
  padding: 0;
}

.work-card-title {
  font-weight: bold;
  margin-bottom: 30px;
}

.work-card-text {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0 50px;
  height: 120px;
}

@media screen and (max-width: 500px) {
  .work-card-text {
    flex-wrap: wrap;
  }
}

.work-card .autostart-text {
  margin-bottom: 10px;
}

.publish-sec-title {
  font-weight: bold;
}

.publish-sec-title span {
  font-size: 35px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #000 39.31%, #fc2e71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin: 0 28px;
}

.publish-sec-card {
  max-width: 970px;
}

.publisher {
  overflow-x: hidden;
}

.publisher-wrapper {
  position: relative;
}

.publisher-text {
  margin-top: 30px;
  max-width: 470px;
}

.publisher-list {
  max-width: 672px;
  margin-top: 33px;
  height: 152px;
}

.publisher-list .autostart-text {
  margin-bottom: 15px;
}

.publisher-box {
  background: linear-gradient(270deg, #fc2e71 -122.45%, #fff 68.55%);
  border: 1px solid #000;
  max-width: 458px;
  width: 100%;
  padding: 30px 40px;
  position: absolute;
  right: 5%;
  top: 0;
}

.publisher-box__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}

.publisher-box__phone {
  max-width: 473px;
  position: absolute;
  right: 0px;
  bottom: -110px;
  transform: translate(50%, 50%);
}

.format {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
  /* flex-wrap: wrap; */
  border-top: 1px solid #000;
}

@media screen and (max-width: 500px) {
  .format {
    flex-wrap: wrap;
  }
}

.format-content {
  padding: 100px 0 120px;
  max-width: 770px;
}

.format-left {
  background: #fff;
  padding-left: 135px;
  padding-right: 65px;
  position: relative;
  width: 55%;
}

.format-left::before {
  position: absolute;
  content: "";
  right: 100%;
  width: 100vw;
  background: white;
  height: 100%;
  top: 0;
}

.format-left-title {
  max-width: 570px;
  margin-bottom: 20px;
}

.format-list {
  display: flex;
  justify-content: start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 52px 16px;
}

.format-mobile-wrapper {
  /* max-width: 300px; */
}

@media screen and (max-width: 500px) {
  .format-list {
    flex-wrap: wrap;
  }
}

.format-item {
  max-width: 130px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  margin: 0 auto;
}

.format-item__box {
  min-height: 95px;
  background: #e4e4e4;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 96px;
  /* moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; */
}

.format-item.active .format-item__box,
.format-item:hover .format-item__box {
  background: #262626;
}

.format-item .format-item__box img {
  height: 60%;
  /* filter: invert(0); */
  /* moz-transition: filter 0.3s ease-in-out;
  -o-transition: filter 0.3s ease-in-out;
  -webkit-transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out; */
}

.format-item .format-item__box .switch-second {
  display: none;
}

.format-item.active .format-item__box img,
.format-item:hover .format-item__box img {
  /* filter: invert(1); */
}

.format-item.active .format-item__box .switch-first,
.format-item:hover .format-item__box .switch-first {
  display: none;
}

.format-item.active .format-item__box .switch-second,
.format-item:hover .format-item__box .switch-second {
  display: block;
}

.format-item.active {
  color: black;
}

.format-item.active:hover {
}

@media screen and (max-width: 500px) {
  .format-item__box {
    flex-wrap: wrap;
  }
}

.format-item__title {
  margin-top: 10px;
}

.format-right {
  border-left: 1px solid #000;
  padding-right: 65px;
  padding-left: 65px;
  width: 35%;
  min-width: 430px;
}

.format-right__text {
  max-width: 480px;
}

.format-right-title {
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 16px;
  margin-top: 20px;
}

.format-right__img {
  margin: 0 auto;
  margin-top: 80px;
  max-width: 480px;
  width: 100%;
  position: relative;
}

.format-right__img img {
  width: 100%;
}

.rich1 {
  position: absolute;
  max-width: 41%;
  left: 3%;
  top: 14%;
}

.rich2 {
  position: absolute;
  max-width: 41%;
  right: 3%;
  bottom: 4%;
}

.mich1 {
  position: absolute;
  max-width: 41%;
  left: 3%;
  top: 25%;
}

.mich2 {
  position: absolute;
  max-width: 41%;
  right: 3%;
  bottom: 6%;
}

.switcher-content {
  display: none;
  margin-top: 20px;
  width: 100%;
  /* animation: slide-in 0.5s ease; */
}

.switcher-content.active {
  display: block;
}

@keyframes slide-in {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.achive {
  padding: 100px 0;
  color: #fff;
  background: #262626;
}

.achive-cube {
  max-width: 570px;
  position: absolute;
  right: 0;
  top: 0;
}

.achive-container {
  position: relative;
}

.achive-wrapper {
  display: flex;
  justify-content: start;
  align-items: end;
  flex-direction: row;
  gap: 0 120px;
}

@media screen and (max-width: 500px) {
  .achive-wrapper {
    flex-wrap: wrap;
  }
}

.achive-item__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 24px;
}

.achive-item__content-item {
  margin-bottom: 24px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: row;
}

@media screen and (max-width: 500px) {
  .achive-item__content-item {
    /* flex-wrap: wrap; */
    margin-bottom: 10px;
  }
}

.achive-item__content-link {
  color: #fc2e71;
  margin-right: 27px;
  min-width: 79px;
  min-width: 101px;
}

.achive-item__content-text {
  max-width: 326px;
}

.achive-content__right {
  max-width: 570px;
}

.cases {
  padding: 100px 0 60px;
}

.cases-item {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
  border: 1px solid #000;
  max-width: 1440px;
  width: 100%;
  margin: 10px auto;
}

.case-list-pad {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  gap: 12px;
  /* grid-template-columns:1fr 1fr; */
}

@media screen and (max-width: 500px) {
  .cases-item {
    flex-wrap: wrap;
  }
}

.cases-item__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
}

.cases-item__left {
  padding: 60px 80px 70px;
  border-right: 1px solid #000;
  max-width: 620px;
}

.cases-item__right {
  max-width: 820px;
}

.cases-item__right img {
  width: 100%;
}

.cases-item__content-list {
  /* list-style: inside; */
  padding-left: 7px;
}

.cases-item__content-list.list-none {
  list-style: none;
  padding: 0;
}

.cases-item__content-mob {
  display: none;
}

.no-dot {
  list-style-type: none;
}

.cases-item__content-list.list-none li {
  margin: 15px 0;
}

.cases-item__content-list-wrapper {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  flex-direction: row;
  gap: 40px;
}

.cases-item__content-list-wrapper li {
  margin: 15px 0;
}

@media screen and (max-width: 500px) {
  .cases-item__content-list-wrapper {
    /* flex-wrap: wrap; */
  }
}

.cases-item__content-results {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  flex-direction: row;
  gap: 25px 50px;
  flex-wrap: wrap;
}

@media screen and (max-width: 500px) {
  .cases-item__content-results {
    flex-wrap: wrap;
  }
}

.cases-item__content-results.results-wide > div {
  max-width: 160px;
  width: 100%;
}

.cases-item__content-result span {
  color: #fc2e71;
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 10px;
}

.cases-line {
  margin: 35px 0 0;
  width: 100%;
}

.cases-results {
  padding: 60px 60px;
}

.cases-results__wide {
  padding: 60px;
}

.cases-results__title {
  display: flex;
  gap: 40px;
  align-items: center;
}

.cases-list {
  /* display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px; */
}

.slide-case-first {
  margin-left: 10px;
}

.cases-item__content-table {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-gap: 10px;
  background: #e4e4e4;
  border: 1px solid #000000;
  font-size: 14px;
  padding: 20px 15px;
}

.cases-item__content-virus {
  grid-template-columns: repeat(8, 1fr);
}

.cases-item__content-cytovir {
  grid-template-columns: repeat(7, 1fr);
}

.case-links {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 50px;
}

.case-link {
  border: 1px solid #fff;
  width: 100%;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  padding: 16px 0;
  color: rgb(255, 255, 255);
  max-width: 205px;
  background: none;
}

.grid-wide {
  min-width: 114px;
}

.grid-header {
  padding: 10px 0px;
  text-align: center;
}

.grid-row {
  padding: 10px 0px;
  text-align: center;
}

.grid-row.bold {
  font-weight: bold;
  font-size: 16px;
}

.cases-item__mob {
  max-width: 306px;
  width: 100%;
  background: #fff;
  /* margin: 0 auto; */
  height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cases-item__mob-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}

.cases-item__mob-link {
  width: 100%;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  padding: 16px 0;
  color: black;
}

.cases-item__mob-content {
  padding: 20px;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cases-item__mob-img {
  height: 150px;
  width: 100%;
}

.modal-cases {
  padding: 40px;
}

.cases-modal-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.cases-modal-content .cases-item__right-img {
  width: 266px;
}

.cases-item__right-achan {
  max-width: 100%;
  margin-top: 30px;
}

.cases-modal_achan {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.cases-item__content-title {
  text-align: center;
  margin: 30px 0 10px;
}

.cases-item__content-achan {
  max-width: 200px;
  margin: 0 auto;
}

.cases-item__right-slide {
  max-width: 233px;
  width: 100%;
}

.cases-item__right-slider {
  display: none;
}

.modal-cases .cases-item__title {
  font-size: 20px;
  line-height: 24px;
  max-width: 370px;
  margin: 0 auto;
}

.modal-cases.dark {
  background: #262626;
  color: white;
  width: 100%;
}

.modal-cases.dark .cases-item__content-table {
  background: none;
  border: 1px solid white;
  padding: 20px 10px;
  font-size: 12px;
  grid-gap: 7px;
}

.modal-cases.dark .cases-item__content-table .grid-row.bold {
  font-size: 13px;
}

.cases-arrows {
  max-width: 161px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  height: 45px;
  margin: 0 auto;
}

.cases-arrow.swiper-button-next,
.cases-arrow.swiper-button-prev {
  background: #ffffff;
  min-width: 40px;
  height: 40px;
  border: 1px solid #000000;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  margin: 0;
  left: 0;
}

.cases-arrow.swiper-button-next:hover,
.cases-arrow.swiper-button-prev:hover {
  background: #000000;
  border: 1px solid #ffffff;
}

.cases-item__content-table-mob {
  display: none;
}

.cases-arrow.left::after {
  content: "";
  border: solid black;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 6px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.cases-arrow.right::after {
  content: "";
  border: solid black;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 6px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.cases-arrow.swiper-button-next:hover.right::after,
.cases-arrow.swiper-button-prev:hover.left::after {
  border: solid rgb(255, 255, 255);
  border-width: 0 1.5px 1.5px 0;
}

.cases-page.swiper-pagination {
  position: static;
  display: block;
  min-width: 50px;
}

.modal-cases .cases-results {
  padding: 0;
  width: 100%;
}

.footer {
  background: #262626;
  padding: 85px 0;
  color: #fff;
}

.footer-list {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

@media screen and (max-width: 500px) {
  .footer-list {
    flex-wrap: wrap;
  }
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media screen and (max-width: 500px) {
  .footer-logo {
    flex-wrap: wrap;
  }
}

.footer-logo__img {
  max-width: 60px;
}

.footer-logo__title {
  font-size: 19.278px;
  line-height: 23px;
  margin-top: 5px;
}

.footer-text {
  max-width: 510px;
}

.footer .social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 24px;
}

@media screen and (max-width: 500px) {
  .footer .social-list {
    flex-wrap: wrap;
  }
}

.footer .social-item {
  border: 1px solid white;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

/* .footer .social-list .social-item.telegram svg {
  margin-left: -5px;
}

.footer .social-list .social-item svg path {
  fill: #ffffff;
  stroke: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer .social-list .social-item svg rect {
  stroke: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
} */

.footer .social-list .social-item:hover {
  background: linear-gradient(270deg, #fc2e71 0%, #000 98.54%);
}

/* .footer .social-list .social-item:hover svg path {
  fill: #fc2e71;
  stroke: #fc2e71;
}

.footer .social-list .social-item:hover svg rect {
  stroke: #fc2e71;
} */

@media screen and (max-width: 500px) {
  .footer .social-item {
    flex-wrap: wrap;
  }
  .footer .social-item img{
    width: 100%;
  }
}

.footer .social-links {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  gap: 28px;
  margin-bottom: 12px;
}

@media screen and (max-width: 500px) {
  .footer .social-links {
    flex-wrap: wrap;
  }
}

.footer .social-link {
  color: #a8a8a8;
  font-size: 18px;
  moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer .social-link .email {
  color: #ffffff;
}
.footer .social-link:hover {
  color: #fc2e71;
}

.footer .social-policy {
  color: #a8a8a8;
  font-size: 14px;
  line-height: 17px;
}

.form-wrapper {
  background: #e4e4e4;
  padding: 100px 0;
  position: relative;
}

.form-content {
  padding: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
}

@media screen and (max-width: 500px) {
  .form-content {
    flex-wrap: wrap;
  }
}

.form__input-list {
  /* display: flex;
  justify-content: start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap; */
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 40px;
}

.form__input-list .input-form {
  width: 100%;
  border: none;
  border: 1px solid white;
  border-bottom: 1px solid #262626;
  outline: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  padding: 8px;
  moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.form__input-list .input-form:focus {
  border: 1px solid #262626;
}

.form__input-list .input-form.invalid {
  border: 1px solid red;
}

.error {
  color: red;
  font-size: 11px;
  display: block;
  margin-top: 5px;
}

.form-group {
  width: 100%;
}

.text-policy {
  max-width: 630px;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.banner-wrapper {
  background: #e4e4e4;
  padding: 80px 0;
  color: #fff;
}

.banner-content {
  padding: 46px 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  background: #262626;
  position: relative;
  background-image: url("../img/banner.svg");
  background-repeat: no-repeat;
  background-position: right;
}

@media screen and (max-width: 500px) {
  .banner-content {
    flex-wrap: wrap;
  }
}

.banner-item {
  max-width: 591px;
  width: 100%;
}

.banner-right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  max-width: 430px;
}

@media screen and (max-width: 500px) {
  .banner-right {
    flex-wrap: wrap;
  }
}

.banner-text {
  margin-top: 20px;
}

.banner-btn {
  max-width: 203px;
}

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

.modal {
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  overflow: auto;
  /* Enable scroll if needed */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
}

.modal .modal-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  position: absolute;
  /* top: 5%; */
}

.modal-active {
  visibility: visible;
  overflow: auto;
}

.modal-active::before {
  opacity: 1;
}

.modal-active .modal-content {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.modal-content {
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  max-width: 600px;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}

.modal-form {
  max-width: 1170px;
  margin: 20px;
}

.modal-form .form-content {
  padding: 20px 70px;
}

.modal-form .form-content .form-group {
  max-width: 323px;
  width: 100%;
}

.modal-form .form-title {
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 60px;
  max-width: 747px;
}

.modal-content .close {
  cursor: pointer;
  position: absolute;
  right: 32px;
  top: 32px;
  width: 22px;
  height: 22px;
  opacity: 0.3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: none;
}

.modal-content .close:hover {
  opacity: 1;
}

.modal-content .close:before,
.modal-content .close:after {
  position: absolute;
  left: 15px;
  top: 0;
  content: " ";
  height: 23px;
  width: 2px;
  background-color: #333;
}

.modal-content .close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal-content .close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.bg-circle {
  position: absolute;
}

.form-bg-circle {
  background: url("../img/bg/circle1.svg");
  width: 457px;
  height: 457px;
  background-size: cover;
  z-index: -1;
  top: -90px;
  left: -260px;
  background-repeat: no-repeat;
}

.form-bg-dot {
  background: url("../img/bg/dot1.svg");
  width: 165px;
  height: 165px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  right: -100px;
  bottom: -60px;
}

.brand-circle {
  width: 316px;
  height: 316px;
  top: auto;
  bottom: -70px;
  left: -210px;
}

.brand-dot {
  bottom: auto;
  top: 45px;
  right: -45px;
}

.start-circle {
  width: 334.83px;
  height: 334.83px;
  right: -165px;
  left: auto;
  top: -60px;
  bottom: auto;
}

.start-dot {
  right: auto;
  left: -50px;
  top: auto;
  bottom: -60px;
}

.gonet-dot {
  bottom: auto;
  top: -75px;
  right: -75px;
}

.advantages-dot {
  width: 222px;
  height: 222px;
  bottom: 27px;
  left: -160px;
}

.header-circle {
  position: absolute;
}

.header-circle img {
  width: 100%;
}

.brand-circle-img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.brand-circle-first {
  right: -20%;
  width: 415px;
  height: 415px;
}

.brand-circle-second {
  left: -15%;
  width: 248.39px;
  height: 248.39px;
  transform: rotate(-99.48deg);
}

.ssp-circle-first {
  right: -25%;
  top: -20%;
  width: 367.03px;
  height: 367.03px;
}

.ssp-circle-second {
  width: 421.09px;
  height: 421.09px;
  bottom: -400px;
  left: -200px;
  transform: rotate(190deg);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-item {
  border: 1px solid #f9f9f9;
  color: white;
}

.accordion-header {
  background: none;
  color: white;
  cursor: pointer;
  padding: 34px 100px;
  text-align: left;
  border: none;
  outline: none;
  transition: color 0.3s;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 300;
  font-size: 26px;
  line-height: 32px;
  color: #f9f9f9;
}

.accordion-header:hover {
  /* background-color: #ddd; */
  color: #fc2e71;
}

.accordion-arrow::after {
  content: "";
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 6px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transition: transform 0.3s;
}

.accordion-header.active .accordion-arrow::after {
  transform: rotate(225deg);
  border: solid #fc2e71;
  border-width: 0 2px 2px 0;
}

.accordion-header.active {
  color: #fc2e71;
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
  border-top: 1px solid #f9f9f9;
  transition: max-height 0.3s ease-in-out;
  display: flex;
  justify-content: space-between;
}

.separator {
  width: 1px;
  min-height: 100px;
  height: 100%;
  background: #f9f9f9;
}

.accordion-img {
  max-width: 120px;
}

.accordion-content-left {
  padding: 58px 85px 85px 102px;
}

.accordion-content-left ul {
  max-width: 680px;
}

.accordion-content-left li {
  color: #f9f9f9;
  font-size: 18px;
  min-height: 100px;
  line-height: 22px;
}

.accordion-content-left p {
  color: #f9f9f9;
  font-size: 18px;
  line-height: 22px;
}

.accordion-content-right {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  max-width: 300px;
  width: 100%;
  border-left: 1px solid #f9f9f9;
}

.accordion-content-right.second {
  max-width: 471px;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  text-align: center;
}

.accordion-second-sam {
  width: 50%;
  height: 100%;
}

.accordion-second-left {
  border-right: 1px solid #f9f9f9;
}

.accordion-second-header {
  height: 42px;
  line-height: 42px;
  border-bottom: 1px solid #f9f9f9;
}

.accordion-second-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* height: 130px; */
}

.accordion-second-left .accordion-second-content {
  padding: 25px 0;
}

.accordion-second-left .accordion-second-content .accordion-sponsers {
  max-width: 100px;
}

.accordion-second-right .accordion-second-content {
  padding: 15px 0;
}

.accordion-second-right .accordion-second-content .accordion-sponsers {
  max-width: 100px;
}

.accordion-second-content .accordion-sponsers.wide {
  max-width: 140px;
  width: 140px;
}

.screencast_img {
  width: 100%;
}

.lds-ring {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
