* {
  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 #ffffff20;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

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%;
}

.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 {
  border-radius: 1000px;
  width: 40px;
  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.active {
  background: #f4f4f4;
}

.header-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-nav li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  color: #f3f3f3;
  text-decoration: none;
}

.call-btn {
  width: 154px;
    text-transform: uppercase;
    font-family: 'BigNoodleTitlingCyr';
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
  padding: 13px 0;
  background: #F1AB1D;                /* новый цвет */
  border-radius: 100px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(241,171,29,0.5),  /* мягкое свечение */
              0 0 40px rgba(241,171,29,0.4);
}

.call-btn:hover {
  background: #F1AB1D;                 /* остаётся тем же */
  box-shadow: 0 0 34px #F1AB1D;        /* X=0, Y=0, Blur=34, Spread=0 */
}



#main {
  max-width: 1920px;
  width: 100%;
  height: 960px;
  background-image: url(../img/main.png);
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-size: cover;
}

#main:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  border-radius: 25px 25px 0 0;
  background: #202136;
}

.main-content {
  width: 100%;
  position: relative;
  height: 100%;
  /*new*/

  display: flex;
  justify-content: flex-end;
}

.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*/
.newButton{
  display: flex;
  align-items: center;
  justify-content: center;
}
.circles{
  width: auto;
  height: 90px;
  margin-left: 25px;
}
.main-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 260px;
  max-width: 800px;
}

.main-wrapper h1 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 100px;
  line-height: 100%;
  color: #fff;
}

.main-wrapper h1 span {
  color: #F1AB1D; /* новый цвет */
  text-shadow: 0 0 5px rgba(241,171,29,0.6),
               0 0 10px rgba(241,171,29,0.5),
               0 0 20px rgba(241,171,29,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(241, 171, 29, 0.81); /* #F1AB1D @ 0.81 */
  padding: 20px 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  text-decoration: none;
  letter-spacing: 1px;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(241,171,29,0.5),
              0 0 40px rgba(241,171,29,0.4);
  transition: box-shadow 0.3s ease;
}

.service-btn:hover {
  box-shadow: 0 0 34px #F1AB1D; /* X=0, Y=0, Blur=34, Spread=0 */
}

/******/
.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;
}

.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;
  margin-bottom: 120px;
}

.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: #D6615C;
}

.purple {
  background: #D6615C;
}

.l-green {
  background: #D6615C;
}
/* 
.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: 200px;
    width: 100%;
    height: 60px;
    border-radius: 100px;
    background: #F1AB1D;
    font-family: 'BigNoodleTitlingCyr';
    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;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    font-family: 'BigNoodleTitlingCyr';
    align-items: center;
}

.service-btn-all:hover {
  transition: 0.3s linear;
  box-shadow: 0 0 34px #F1AB1D;
}

#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: #baf46e7d;
  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: #ffffff80;
  background: #172132;
  border: none;
  outline: none;
}

.form > input::placeholder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #ffffff80;
}

.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: #ffffff80;
}

.policy-checkbox a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #ffffff80;
}

.form button {
  width: 100%;
  height: 60px;
  background-color: #F1AB1D; /* новый цвет */
  border: none;
  cursor: pointer;
    text-transform: uppercase;
    font-family: 'BigNoodleTitlingCyr';
  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(241,171,29,0.5),
              0 0 40px rgba(241,171,29,0.4);
}

.form button:hover {
  background-color: #F1AB1D;
  box-shadow: 0 0 34px #F1AB1D; /* X=0, Y=0, Blur=34, Spread=0 */
}

.form-block{
    display: flex;
    justify-content: space-between;
    align-items: self-start;
}
.bottom-img{
   position: absolute;
    right: 0;
    top: 15px;
    max-width: 35%;
    left: 45%;
}
#form-section {
  overflow: hidden;
  padding-top: 160px;
  height: 1025px;
  background:#18192B ;
}

.form-wrapper {
  position: relative;
}

.phone {
  position: absolute;
  top: -37px;
  left: 50%;
}

.checkbox-inp {
  width: 18px;
  height: 18px;
  position: relative;
  border: 1px solid #ffffff80;
  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: #6c5dd357;
  filter: blur(300px);
  z-index: -1;
}

footer {
  backdrop-filter: blur(10px);
  background: rgba(10, 14, 21, 0.8);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #ffffff2b;
  z-index: 10;
}

.border {
  border-top: 1px solid #ffffff2b;
  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: #ffffff50;
}

.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: #ffffff60;
}

.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: #ffffff60;
}

.copyright div a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #ffffff60;
  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: #000000b6;
  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: #080a0f;
  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: #F1AB1D; /* новый цвет */
  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(241,171,29,0.5),
              0 0 40px rgba(241,171,29,0.4);
}

.burger-send:hover {
  box-shadow: 0 0 34px #F1AB1D; /* X=0, Y=0, Blur=34, Spread=0 */
}

.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: transparent;
}

.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: #baf46e36;
  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;
  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%;
  object-fit: cover;
}

.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #080a0f97;
  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 #ffffff20;
}

.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%;
  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: #ffffff99;
  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;
  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: #1b2053b0;
  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: #ffffff8f;
  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: 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: fit-content;
  padding: 30px;
}

.steam-item {
  padding: 10px 20px;
}

.modal-badge {
  display: flex;
  align-items: center;
  gap: 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%;
  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: #ffffff80;
  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: #ffffff8b;
  outline: none;
}

.modal-input-wrapper input::placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: #ffffff8b;
}

.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: #ffffff7e;
}

.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: #ffffff85;
  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%;
  object-fit: cover;
}

.active-pubg {
  border: 1px solid #349e86;
  transition: 0.3s linear;
  box-shadow: 0 0 4px 0 #349e86;
}

.price-wrap {
  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 {
  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;
}
