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

:root {
  --font-family: "Manrope", sans-serif;
  --second-family: "BigNoodleTitlingCyr", sans-serif;
  --third-family: "Onest", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #202136;
  position: relative;
}

header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1254901961);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
header .container {
  max-width: 100%;
  padding: 0px 20px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 80px;
  line-height: 100%;
  color: #fff;
}

.h100 {
  height: 100%;
}

.swiper {
  height: 100%;
}

.header-logo {
  max-width: 120px;
  width: 100%;
}

.header-wrapper {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.header-panel {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border-radius: 100px;
  background: #fff;
}

.lang-nav a {
  text-wrap: nowrap;
  border-radius: 1000px;
  width: 40px;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #333;
  transition: 0.3s linear;
}

.lang-nav a:not(.active):hover {
  background: #0aa0d6;
  color: #fff;
  transition: 0.3s linear;
}
.lang-nav a:not(.active):hover svg path {
  fill: #fff;
  transition: 0.3s linear;
}

.lang-nav a.active {
  background: #f4f4f4;
}

.header-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header-nav .menu-item a {
  position: relative;
  padding: 5px 5px 5px 30px;
  transition: 0.2s !important;
}
.header-nav .menu-01 a:hover::before {
  background: url("../img/menu-01-h.svg") no-repeat;
}
.header-nav .menu-01 a::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 18px;
  background: url("../img/menu-01.svg") no-repeat;
}
.header-nav .menu-02 a:hover::before {
  background: url("../img/menu-02-h.svg") no-repeat;
}
.header-nav .menu-02 a::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 14px;
  background: url("../img/menu-02.svg") no-repeat;
}
.header-nav .menu-03 a:hover::before {
  background: url("../img/menu-03-h.svg") no-repeat;
}
.header-nav .menu-03 a::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 18px;
  background: url("../img/menu-03.svg") no-repeat;
}
.header-nav .menu-04 a:hover::before {
  background: url("../img/menu-04-h.svg") no-repeat;
}
.header-nav .menu-04 a::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 16px;
  background: url("../img/menu-04.svg") no-repeat;
}
.header-nav .menu-05 a:hover::before {
  background: url("../img/menu-05-h.svg") no-repeat;
}
.header-nav .menu-05 a::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 15px;
  background: url("../img/menu-05.svg") no-repeat;
}
.header-nav .menu-06 a:hover::before {
  background: url("../img/menu-06-h.svg") no-repeat;
}
.header-nav .menu-06 a::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 4px;
  background: url("../img/menu-06.svg") no-repeat;
}

.header-nav li a {
  padding: 0px 10px;
}

.call-btn {
  width: 154px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
  padding: 13px 0;
  background: #0aa0d6;
  border-radius: 100px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(4, 159, 213, 0.5), 0 0 40px rgba(4, 159, 213, 0.4);
}

.call-btn:hover {
  background: #0aa0d6;
  box-shadow: 0 0 25px rgba(4, 159, 213, 0.6), 0 0 50px rgba(4, 159, 213, 0.5);
  transition: 0.3s ease;
}

main {
  position: relative;
}

#main {
  max-width: 1920px;
  width: 100%;
  height: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 100px !important;
}

#main:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  border-radius: 25px 25px 0 0;
  background: #202136;
  z-index: 999;
}

.main-content {
  width: 100%;
  position: relative;
  height: 100%;
  /*new*/
  display: flex;
  justify-content: flex-start;
}

.main-content-service {
  width: 100%;
  position: inherit !important;
  height: 100%;
  /*new*/
  display: flex;
  justify-content: flex-end;
}

/* .circles {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 120px;
  height: 440px;
} */
/*new*/
.swiper-slide {
  max-width: 1920px;
  width: 100%;
  min-height: 960px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.slide-01 {
  background-image: url("../img/slide-01.png");
}

.slide-02 {
  background-image: url("../img/slide-02.png");
}

.slide-03 {
  background-image: url("../img/slide-03.png");
}

.slide-04 {
  background-image: url("../img/slide-04.png");
}

.services-category {
  margin-top: 220px;
}

.services-search {
  margin: 220px 0px;
}
.services-search form {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 40px 0px;
}
.services-search input {
  padding: 15px 12px;
  border-radius: 50px;
  border: solid 1px #049fd5;
  background: #fff;
  font-size: 18px;
  min-width: 320px;
}
.services-search button {
  padding: 15px 12px;
  border-radius: 50px;
  background: #049fd5;
  border: solid 1px #049fd5;
  color: #fff;
  font-size: 18px;
}
.services-search p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 135%;
  letter-spacing: -0.03em;
  color: #fff;
  padding: 5.5px 0px;
}

.newButton {
  display: flex;
  align-items: center;
  justify-content: center;
}

.circles {
  width: auto;
  margin-left: 25px;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  max-width: 1010px;
  gap: 24px;
}

.main-wrapper h1 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 100px;
  line-height: 100%;
  color: #fff;
}

.main-wrapper h1 span {
  /*new*/
  color: #049fd5;
  text-shadow: 0 0 5px rgba(4, 159, 213, 0.6), 0 0 10px rgba(4, 159, 213, 0.5), 0 0 20px rgba(4, 159, 213, 0.4);
}

.main-wrapper > p {
  margin: 24px 0 32px 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #fff;
}

/*new*/
.service-btn {
  background-color: rgba(4, 159, 213, 0.81);
  padding: 20px 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  text-decoration: none;
  letter-spacing: 1px;
  color: white;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(4, 159, 213, 0.5), 0 0 40px rgba(4, 159, 213, 0.4);
  transition: box-shadow 0.3s ease;
}

.service-btn:hover {
  box-shadow: 0 0 25px rgba(4, 159, 213, 0.6), 0 0 50px rgba(4, 159, 213, 0.5);
}

/******/
.service-btn p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: #fff;
}

.service-btn-eng {
  width: 189px;
  /* background-image: url(../img/btneng.png); */
}

#main-services {
  padding-top: 120px;
  position: relative;
  z-index: 1;
}

.main-service-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}

.main-service-text {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.main-services-items {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 9px;
}

.main-services-item {
  width: 393px;
  height: 424px;
  position: relative;
  padding: 30px;
  border-radius: 10px;
  box-shadow: -20px 0 20px rgba(0, 0, 0, 0.2);
}

.orange {
  background: #2668d0;
}

.purple {
  background: #f3aa1e;
}

.l-green {
  background: #745dc4;
}

/* 
.l-green .main-services-item-text div h5 {
  color: #3a3a3a;
}

.l-green .main-services-item-text div p {
  color: #3a3a3a;
} */
.green {
  background: #d6615c;
}

.main-services-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* .main-services-item:after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 0;
  height: 0;
  border-left: 64px solid transparent;
  border-top: 64px solid #080a0f;
} */
.main-services-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url(../img/noise.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.main-services-item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.main-services-item-text div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.main-services-item-text div h5 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  color: #fff;
}

.main-services-item-text div p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
}

.s-btn {
  width: 100%;
  height: 60px;
  background-color: #f5fbe7; /* светло-жёлтый/молочный фон, как на скрине */
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
  cursor: pointer;
  /* Эффект свечения */
  box-shadow: 0 0 20px rgba(245, 251, 231, 0.4), 0 0 35px rgba(245, 251, 231, 0.3);
}

.s-btn:hover {
  box-shadow: 0 0 25px rgba(245, 251, 231, 0.6), 0 0 45px rgba(245, 251, 231, 0.5);
  transform: translateY(-2px);
}

.s-btn p {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: #111;
  margin: 0;
}

.service-btn-all {
  max-width: 170px;
  width: 100%;
  padding: 13px 12px;
  border-radius: 100px;
  background: #0aa0d6;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s linear;
}

.service-btn-all:hover {
  transition: 0.3s linear;
  box-shadow: 0 0 25px rgba(4, 159, 213, 0.6), 0 0 50px rgba(4, 159, 213, 0.5);
}

#about {
  padding-top: 150px;
  height: 1125px;
  width: 100%;
  position: relative;
  z-index: -1;
  overflow: hidden;
}

#about img {
  position: absolute;
  top: 66%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0;
}

.about-tags p {
  padding: 10px 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.15);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  color: #fff;
}

.about-p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.about-p p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #fff;
}

.about-p p span {
  color: #0aa0d6;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 527px;
  width: 100%;
  margin-top: 30px;
  position: relative;
  z-index: 3;
}

.form:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  background: rgba(186, 244, 110, 0.4901960784);
  filter: blur(300px);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.form > input {
  width: 100%;
  padding: 22px 20px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.5019607843);
  background: #172132;
  border: none;
  outline: none;
}

.form > select {
  width: 100%;
  padding: 22px 20px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.5019607843);
  background: #172132;
  border: none;
  outline: none;
}

.form > input::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.5019607843);
}

.form > input::placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.5019607843);
}

.policy-checkbox {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 6px 0 10px 0;
}

.policy-checkbox p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.5019607843);
}

.policy-checkbox a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.5019607843);
}

.form button {
  width: 100%;
  height: 60px;
  background-color: #0aa0d6;
  border: none;
  cursor: pointer;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s ease;
  /* Эффект свечения */
  box-shadow: 0 0 20px rgba(10, 160, 214, 0.5), 0 0 40px rgba(10, 160, 214, 0.4);
}

.form button:hover {
  box-shadow: 0 0 25px rgba(10, 160, 214, 0.6), 0 0 50px rgba(10, 160, 214, 0.5);
  background-color: #0aa0d6; /* тот же цвет, чтобы не сбивался фон при :hover */
}

.form-block {
  display: flex;
  justify-content: space-between;
  align-items: self-start;
}

.bottom-img {
  position: absolute;
  right: 0;
  top: 15px;
}

#form-section {
  overflow: hidden;
  padding-top: 160px;
  margin-top: 160px;
  height: 1100px;
  background: #18192b;
  border-radius: 30px 30px 0 0;
}

.form-wrapper {
  position: relative;
}

.phone {
  position: absolute;
  top: -37px;
  left: 50%;
}

.checkbox-inp {
  width: 18px;
  height: 18px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  border-radius: 2px;
  box-sizing: content-box;
}

.checkbox-inp svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.checkbox-inp input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.cube {
  position: absolute;
  right: -60px;
  top: 60%;
  transform: translate(0, -50%);
}

.cube:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: rgba(108, 93, 211, 0.3411764706);
  filter: blur(300px);
  z-index: -1;
}

footer {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(10, 14, 21, 0.8);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.168627451);
  z-index: 10;
}

.border {
  border-top: 1px solid rgba(255, 255, 255, 0.168627451);
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding: 50px 0;
  flex-wrap: wrap;
}

.footer-logo-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo-content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.3137254902);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.footer-nav li a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  text-decoration: none;
}

.footer-content-data {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.footer-content-data div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer-content-data div:nth-child(2) {
  margin-left: 6px;
}

.footer-content-data div p {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.3764705882);
}

.footer-content-data div a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  text-decoration: none;
}

.footer-logo {
  width: 120px;
}

.copyright {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.copyright div p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.3764705882);
}

.copyright div a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.3764705882);
  text-decoration: none;
}

.burger-btn {
  display: none;
}

.circles-m {
  display: none;
}

.mobile-btn {
  display: none;
}

.burger-menu {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7137254902);
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
}

.burger-menu.open {
  opacity: 1;
  visibility: visible;
  transition: 0.3s linear;
}

.burger-wrapper {
  max-width: 370px;
  width: 100%;
  height: 100%;
  background: #202136;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transform: translateX(380px);
  transition: 0.3s linear;
}

.burger-wrapper.open-wrap {
  transform: translateX(0);
  transition: 0.3s linear;
}

/* 
.burger-send {
  margin-top: auto;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
  background: #ea714f;
  border-radius: 100px;
  padding: 13px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
} */
.burger-send {
  margin-top: auto;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
  background-color: #0aa0d6;
  border-radius: 100px;
  padding: 13px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(10, 160, 214, 0.5), 0 0 40px rgba(10, 160, 214, 0.4);
}

.burger-send:hover {
  box-shadow: 0 0 25px rgba(10, 160, 214, 0.6), 0 0 50px rgba(10, 160, 214, 0.5);
}

.close-btn {
  border: none;
  background: initial;
  position: absolute;
  top: 16px;
  right: 10px;
  cursor: pointer;
}

.burger-logo {
  width: 120px;
}

.close-btn img {
  width: 40px;
}

.burger-ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  gap: 10px;
  margin-top: 60px;
}

.burger-ul li a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #f3f3f3;
  text-decoration: none;
}

#servicies-section {
  height: 960px;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.servicies-section-service {
  background-image: url(/wp-content/themes/marginplus/assets/img/main-service.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#servicies-section:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  border-radius: 25px 25px 0 0;
  background: #202136;
}

.services-filter ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.services-filter ul li {
  list-style-type: none;
}
.services-filter ul li .active {
  background: #0aa0d6;
}
.services-filter ul li a {
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: center;
  text-wrap: nowrap;
  padding: 13px 10px;
  border-radius: 50px;
  border: solid 1px #0aa0d6;
}
.services-filter ul li a:hover {
  background: #0aa0d6;
}

.main-servise-block {
  position: relative;
  z-index: 100;
}

.main-servise-block:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: rgba(186, 244, 110, 0.2117647059);
  filter: blur(300px);
  z-index: -1;
}

.phone-s {
  position: absolute;
  bottom: 0;
  right: 0px;
}

.cube-s {
  position: absolute;
  bottom: 150px;
  right: 105px;
}

.cube-s:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: #6d5dd3;
  filter: blur(300px);
  z-index: -1;
}

#all-services {
  padding: 60px 0 150px 0;
  background: #202136;
}

.all-service-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.services-item {
  width: 258px;
  height: 258px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}

.services-item h5 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
  letter-spacing: -0.03em;
  color: #fff;
  padding: 9px 25px;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  background: rgba(19, 17, 32, 0.8);
  border-radius: 5px;
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.services-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgba(8, 10, 15, 0.5921568627);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  padding-top: 100px;
}

.modal-panel {
  border-radius: 20px;
  padding: 30px;
  width: 774px;
  height: 400px;
  background: #080a0f;
  border: 1px solid rgba(255, 255, 255, 0.1254901961);
}

.modal-head {
  width: 100%;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #191b2e;
}

.modal-head-img {
  border-radius: 10px;
  width: 190px;
  height: 190px;
  flex-shrink: 0;
  overflow: hidden;
}

.modal-head-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal-head-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.modal-head-text h5 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fff;
}

.modal-head-text > p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.6);
  max-width: 366px;
  width: 100%;
}

.modal-head-text div {
  padding: 10px 15px;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.15);
  margin: 16px 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-head-text div p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  color: #fff;
}

/* sddddddddddddddddddddddddddd */
.modal-wrapper {
  width: 100%;
  height: 100%;
  background-color: rgba(27, 32, 83, 0.6901960784);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 9999999;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
}

.open-modal {
  opacity: 1;
  visibility: visible;
}

.mobile-item {
  background-color: initial !important;
  padding: 0 !important;
  display: none;
}

.mobile-item button {
  background: initial;
  border: none;
  color: rgba(255, 255, 255, 0.5607843137);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.03em;
}

.modal-wrapper::-webkit-scrollbar {
  width: 0px;
  height: 8px;
}

.modal-panel {
  margin-top: 20px;
  max-width: 774px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background: #131120;
  border-radius: 20px;
  padding: 30px;
}

.modal-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  height: 100%;
}

.modal-item {
  background: #191b2e;
  border-radius: 10px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 30px;
}

.steam-item {
  padding: 10px 20px;
}

.modal-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.1);
}

.modal-badge p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  color: #fff;
}

.modal-item-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 380px;
  gap: 20px;
}

.modal-item-head-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fff;
}

.modal-item-head-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: #fff;
  opacity: 0.5;
}

.modal-img {
  width: 121px;
  height: 121px;
  overflow: hidden;
  border-radius: 10px;
  background: #745dc4;
}

.modal-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal-choose-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.wrapper-btn-modal {
  display: flex;
  align-items: center;
  gap: 15px;
}

.wrapper-btn-modal button {
  background: #25294a;
  border-radius: 10px;
  padding: 14px 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.5019607843);
  border: none;
  transition: 0.3s linear ease;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

/* 
.active-btn-modal {
  background: #ea714f !important;
  color: #ffffff !important;
  transition: 0.3s linear ease;
} */
.active-btn-modal {
  background-color: #0aa0d6 !important;
  color: #ffffff !important;
  border-radius: 50px;
  transition: 0.3s ease !important;
  box-shadow: 0 0 20px rgba(10, 160, 214, 0.5), 0 0 40px rgba(10, 160, 214, 0.4) !important;
}

.active-btn-modal:hover {
  background-color: #0aa0d6 !important;
  box-shadow: 0 0 25px rgba(10, 160, 214, 0.6), 0 0 50px rgba(10, 160, 214, 0.5) !important;
}

.steam-inputs {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 10px;
}

.modal-input-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 20px;
}

.modal-input-wrapper {
  width: 100%;
  position: relative;
}

.modal-input-wrapper input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 14px 20px;
  background: #25294a;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.5450980392);
  outline: none;
}

.modal-input-wrapper input::-moz-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.5450980392);
}

.modal-input-wrapper input::placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.5450980392);
}

.modal-input-wrapper svg {
  position: absolute;
  top: 16px;
  right: 20px;
}

.modal-vaucher {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 20px;
}

.input-p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.4941176471);
}

.modal-count-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.price-item-field {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-item-field p {
  opacity: 0.5;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: #fff;
}

.price-item-field:nth-child(3) {
  border: none;
  border-top: 1px solid #8c8d96;
  border-bottom: 1px solid #8c8d96;
  padding: 20px 0;
}

.real-price {
  display: flex;
  align-items: center;
}

.real-price p {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: #fff;
  opacity: 0.5;
}

.send-btn {
  margin-top: 10px;
  background: #8c8d96;
  width: 100%;
  padding: 20px 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  border: none;
  pointer-events: none;
}

/* .send-btn.active {
  background: #ea714f;
  cursor: pointer;
  pointer-events: all;
} */
.send-btn.active {
  background-color: #0aa0d6;
  color: #ffffff;
  border-radius: 50px;
  cursor: pointer;
  pointer-events: all;
  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(10, 160, 214, 0.5), 0 0 40px rgba(10, 160, 214, 0.4);
}

.send-btn.active:hover {
  background-color: #0aa0d6;
  box-shadow: 0 0 25px rgba(10, 160, 214, 0.6), 0 0 50px rgba(10, 160, 214, 0.5);
}

.steam-vaucher-btns {
  display: flex;
  align-items: center;
  gap: 15px;
}

.vaucher-block-steam {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.vaucher-price-items {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.vaucher-price-items div {
  border-radius: 10px;
  padding: 19px 20px;
  background: #25294a;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.5215686275);
  cursor: pointer;
}

.price-items-game {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 14px;
}

.no-items-btns-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.no-items-btns-input {
  position: relative;
  width: 100%;
}

.price-item-game {
  width: 150px;
  height: 160px;
  background: #25294a;
  border-radius: 10px;
  position: relative;
  border: 1px solid #25294a;
  transition: 0.3s linear;
  cursor: pointer;
}

.price-item-game img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.active-pubg {
  border: 1px solid #349e86;
  transition: 0.3s linear;
  box-shadow: 0 0 4px 0 #349e86;
}

.price-wrap {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 110%;
  color: #fff;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 10px;
  left: 10px;
}

.free-fire-price {
  padding: 7px;
}

.free-fire-img {
  -o-object-fit: contain !important;
     object-fit: contain !important;
  margin-top: 40px;
  height: 70% !important;
}

.game-prices-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.game-prices-item {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: #fff;
  padding: 19px 20px;
  border-radius: 10px;
  background: #25294a;
  cursor: pointer;
}

.bliz-price-eur,
.bliz-price-usd,
.ea-price-usd,
.ea-price-eur {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* .curren-name {
  text-transform: capitalize;
} */
.steam-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hidden-block {
  display: none !important;
}

.policy-wrapper {
  padding: 120px 0 400px 0;
}

.policy-wrapper h1 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 80px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 40px;
}

.policy-wrapper h2 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 40px;
  line-height: 100%;
  color: #fff;
  margin: 20px 0;
}

.policy-wrapper ul,
.policy-wrapper ol {
  list-style: disc;
  padding-left: 20px;
}

.policy-wrapper ul li {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #fff;
}

.policy-wrapper ul li a {
  color: #fff;
}

.policy-wrapper ol li a {
  color: #fff;
}

.policy-wrapper ul li ul {
  padding-left: 20px;
}

.policy-wrapper p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #fff;
}

.policy-wrapper ol li {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #fff;
}/*# sourceMappingURL=dev-style.css.map */