@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Manrope', sans-serif;
  scrollbar-width: thin;
  scrollbar-color: #435057 #4350578A
}

*::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

*::-webkit-scrollbar-track {
  background: #4350578A;
}

*::-webkit-scrollbar-thumb {
  background-color: #435057;
}

a {
  text-decoration: none;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html.no-scroll {
  overflow-y: hidden;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #04151F;
  overflow: hidden;
}

#toTopBtn {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  border: 1px solid #90A2B2;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: opacity 0.3s, transform 0.3s;
  width: 50px;
  height: 50px;
}

#toTopBtn img {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

#toTopBtn:hover {
  opacity: 0.6;
  transform: scale(1.05);
}

.restrictor {
  width: 100%;
  max-width: 1440px;
  padding: 0 50px;
  /* overflow: hidden; */
}

section {
  /* overflow: hidden; */
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.noborder-input {
  margin-right: 10px;
  border: none;
  padding: 12px 0;
  background: transparent;
  color: #fff;
  font-size: 16px;
  border-bottom: 1px solid #ffffff46;
}

.noborder-input::placeholder {
  color: #ffffffd0;
  font-size: 16px;
}

.noborder-input:focus {
  outline: none;
}

.input-wrapper {
  position: relative;
}

.input-wrapper::after {
  content: '';
  position: absolute;
  top: calc(50% - 6px);
  right: 30px;
  background: url(/static/assets/arrow.svg);
  width: 30px;
  height: 12px;
}

.section-note {
  color: #90A2B2;
  font-size: 14px;
  text-transform: uppercase;
}

.section-title {
  color: #FDFDFF;
  font-size: 48px;
  font-weight: 600;
  line-height: 66px;
  padding: 50px 0;
}

.section-desc {
  color: #90A2B2;
  font-size: 20px;
}

.section-desc.white {
  color: #FFFFFF;
}

.outline-button {
  cursor: pointer;
  border: 1px solid #90A2B2;
  padding: 12px 24px;
  text-transform: uppercase;
  border-radius: 30px;
  background: transparent;
  color: #FDFDFF;
  font-weight: 600;
  line-height: 20px;
  transition: 250ms;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
}

.outline-button:hover {
  background: #90A2B233;
}

.outline-button:active {
  border: 1px solid #8CFCE3;
  background: transparent;
}

.greeting-bg-img {
  position: absolute;
  top: calc(50vh - 104px);
  right: 0;
}

.greeting {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
}

.center.abs {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

header {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 100px;
}

header .logo {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 115px;
  height: 19px;
}

header nav {
  position: relative;
}

header nav .socials {
  display: none;
}

header nav .socials img {
  width: 42px;
}

header nav .navigation {
  display: flex;
}

header nav .navigation li {
  list-style: none;
}

header nav .navigation li a{
  color: #FDFDFF;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: none;
  margin-left: 80px;
  transition: 250ms;
  border-bottom: 1px solid transparent;
}

header nav .navigation li a:hover {
  border-bottom: 1px solid #8CFCE3;
}

header nav .outline-button-wrapper {
  display: none;
}

.greeting .content {
  position: relative;
  max-width: 800px;
}

.greeting .content h1 {
  font-weight: 500;
  font-size: 64px;
  line-height: 70px;
  letter-spacing: 0%;
  margin-bottom: 56px;
}

.greeting .content h1 > span {
  background: linear-gradient(to right, #738290, #FDFDFF);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.greeting .content h1 .grad-text {
  color: #FDFDFF;
}

.greeting .content .action {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.greeting .content .action input {
  margin-right: 10px;
  border: none;
  padding: 12px 56px 12px 24px;
  width: 360px;
  background: linear-gradient(to right, #191B26, #FFFFFF4D);
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
}

.greeting .content .action input::placeholder {
  color: #90A2B2;
  font-weight: 700;
}

.greeting .content .action input:focus {
  outline: none;
}

.greeting .content .action .input-wrapper {
  position: relative;
}

.greeting .content .action .input-wrapper::after {
  content: '';
  position: absolute;
  top: calc(50% - 6px);
  right: 30px;
  background: url(/static/assets/arrow.svg);
  width: 30px;
  height: 12px;
}

.greeting .notice {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 0;
  gap: 32px;
}

.greeting .notice span {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;  
  color: #fff;

}

.greeting .notice .arrow {
  transform: rotateZ(90deg);
}

/* ////////////////////// SERVICES ////////////////////////// */

.services {
  width: 100%;
  padding: 50px 0 100px 0;
}

.services.title {
	padding: 100px 0 50px 0;
}

.services .service-item-restrictor {
  position: relative;
  border-bottom: 1px solid #ffffff48;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  justify-content: center;
}

.services .service-item-restrictor.active {
  position: relative;
  align-items: flex-start;
  border-bottom: none;
}

.services .service-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 50px;
  max-width: 1440px;
  width: 100%;
  
}

.services .service-item.active {
  position: relative;
  align-items: flex-start;
  border-bottom: none;
}

.services .service-item-restrictor.active::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: linear-gradient(#191299, #00FFC6);
  filter: blur(600px);
  opacity: 0.5;
  border-radius: 50%;
}

.services .service-item-restrictor.active::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -300px;
  width: 800px;
  height: 800px;
  background: linear-gradient(#FF00C8, #3AE2FF);
  filter: blur(600px);
  opacity: 0.3;
  border-radius: 50%;
}

.services .service-item-restrictor .dots {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
}

.services .service-item-restrictor .dots .dot {
  position: relative;
  border-radius: 50%;
  background: #8CFCE3;
  box-shadow: 0px 0px 12px 0px #8CFCE3;
}

.services .service-item-restrictor .dots .dot:nth-child(1) {
  width: 20px;
  height: 20px;
  top: 40px;
  left: 500px;
}

.services .service-item-restrictor .dots .dot:nth-child(2) {
  width: 12px;
  height: 12px;
  top: 60px;
  left: 400px;
}

.services .service-item-restrictor .dots .dot:nth-child(3) {
  width: 12px;
  height: 12px;
  top: 150px;
  left: 100px;
}

.services .service-item-restrictor .dots .dot:nth-child(4) {
  width: 12px;
  height: 12px;
  top: 350px;
  left: 600px;
}

.services .service-item-restrictor .dots .dot:nth-child(4) {
  width: 12px;
  height: 12px;
  top: 350px;
  left: 600px;
}

.services .service-item-restrictor .dots .dot:nth-child(5) {
  width: 20px;
  height: 20px;
  top: 520px;
  left: 600px;
}

.services .service-item-restrictor .dots .dot:nth-child(6) {
  width: 12px;
  height: 12px;
  top: 540px;
  left: 650px;a
}

.services .service-item-restrictor .dots .img-wrapper {
  position: relative;
  top: -150px;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 721px;
  max-height: 769px;
  z-index: 100;
}

.services .service-item-restrictor.active .dots {
  display: block;
}

.services .service-item .number {
  color: #FDFDFF;
  font-size: 16px;
}


.services .service-item .space-box {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.services .service-item .space-box .space-box-inner {
  width: 50%;
  display: flex;
  justify-content: flex-start;
}

.services .service-item .abr {
  position: relative;
  width: 150px;
  color: #FDFDFF;
  font-weight: 600;
}

.services .service-item .abr.close {
  display: none;
}

.services .service-item .abr span {
  font-size: 52px;
  color: #ffffff9a;
  position: absolute;
  bottom: -71px;
  left: 0;
  background: linear-gradient(to top, #738290, #FDFDFF);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services .service-item .content {
  display: none;
  max-width: 600px;
  z-index: 102;
}

.services .service-item .content.active {
  display: block;
}

.services .service-item .content h5 {
  color: #FDFDFF;
  font-size: 48px;
  margin-bottom: 50px;
}

.services .service-item .content p {
  color: #ffffff;
}

.services .service-item .content.active h5{
  margin-top: -30px;
}

.services .service-item .content.active .space{
  height: 400px;
}

.services .service-item span {
  color: #fff;
}

.services .service-item .arrow-drop.active {
  transform: rotateZ(180deg);
}

/* ////////////////////// SERVICES ////////////////////////// */

/* ////////////////////// CASES ////////////////////////// */

.cases {
  width: 100%;
}

.cases .case {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 100px;
}

.cases .case .abr {
  color: #90A2B2;
  font-size: 18px;
  line-height: 24px;
}

.cases .case .desc {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 423px;
  height: 331px;
}

.cases .case .desc .title {
  color: #FDFDFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 24px;
}

.cases .case .desc .notice {
  color: #FDFDFF;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.cases .case .desc ul li {
  list-style: none;
  color: #90A2B2;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 8px;
}

.cases .case .desc ul li span{
  display: inline-block;
  color: #FDFDFF;
  font-size: 18px;
  line-height: 24px;
  margin-right: 10px;
}

.cases .case .desc .outline-button {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 12px 54px;
  text-decoration: none;
}

.cases .case .outline-button.mobile {
  display: none;
}

/* ////////////////////// CASES ////////////////////////// */

/* ////////////////////// MARKETING ////////////////////////// */

.marketing {
  position: relative;
  width: 100%;
}

.marketing::before {
  content: '';
  position: absolute;
  top: 0;
  left: -300px;
  width: 1200px;
  height: 1200px;
  background: #00FFFF;
  filter: blur(100px);
  opacity: 0.5;
  border-radius: 50%;
  z-index: -1;
}

.marketing::after {
  content: '';
  position: absolute;
  top: -800px;
  right: -800px;
  width: 1800px;
  height: 1800px;
  background: #3a96ff;
  filter: blur(100px);
  opacity: 0.3;
  border-radius: 50%;
  z-index: -1;
}

.marketing .container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.marketing .container .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.marketing .card {
  position: relative;
  background: #04151F;
  border-radius: 22px;
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 411px;
  width: 100%;
  overflow: hidden;
}

.marketing .card .desc {
  z-index: 2;
}
.marketing .card .decor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.marketing .card.custom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  padding: 32px 30px;
}
.marketing .card.custom h4 {
  margin-bottom: 16px;
}
.marketing .card.custom p {
  max-width: 200px;
  text-align: center;
  margin-bottom: 24px;
}
.marketing .card .outline-button {
  width: 100%;
  background: #FFFFFF4D;
  border-color: #FFFFFF40;
  z-index: 1;
}
.marketing .card .outline-button:active {
  border: 1px solid #8CFCE3;
  background: transparent;
}
.marketing h4 {
  text-align: center;
  color: #FDFDFF;
  font-weight: 600;
  font-size: 48px;
  margin-bottom: 32px;
  z-index: 1;
}
.marketing .card p {
  color: #FDFDFF;
  font-size: 16px;
  line-height: 24px;
}
.marketing .outcome {
  position: relative;
  color: #FDFDFF;
  font-size: 21px;
  font-weight: 600;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.marketing .container .card .tooltip {
  position: absolute;
  bottom: 145px;
  left: 16px;
  background: #000;
  display: none;
  border-radius: 8px;
  overflow: hidden;
}

.marketing .container .card .tooltip.active {
  display: block;
  z-index: 1000;
  padding: 16px;
  overflow: hidden;
  width: 90%;
}

.marketing .container .card .tooltip.active::before {
  content: '';
  position: absolute;
  bottom: -90px;
  left: -84px;
  width: 300px;
  height: 200px;
  background: #CC72FF;
  filter: blur(40px);
  opacity: 0.7;
  border-radius: 50%;
  z-index: -1;
}

.marketing .container .card .tooltip.active::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: #713DE3;
  filter: blur(50px);
  opacity: 0.7;
  border-radius: 50%;
  z-index: -1;
}

.marketing .container .card .tooltip.active .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.marketing .container .card .tooltip.active .container span {
  display: block;
  color: #FDFDFF;
  font-size: 14px;
  padding: 3px 0;
}

.marketing .card:nth-child(1) .decor {
  position: absolute;
  top: -150px;
  left: -100px;
  width: 328px;
  height: 328px;
}

.marketing .card:nth-child(2) .decor {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  transform: rotateZ(-73deg);
}

.marketing .card:nth-child(3) .decor:nth-child(1) {
  position: absolute;
  top: -150px;
  left: -100px;
  width: 328px;
  height: 328px;
  transform: rotateZ(61deg);
}
.marketing .card:nth-child(3) .decor:nth-child(2) {
  position: absolute;
  bottom: -150px;
  right: -220px;
  width: 500px;
  height: 500px;
  transform: rotateZ(-137deg);
}

.marketing .card:nth-child(1)::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: linear-gradient(132.54deg, #191299 64.99%, #3AE2FF 70.78%, rgba(255, 87, 219, 0.9) 76.78%);
  filter: blur(100px);
  /* opacity: 0.5; */
  border-radius: 50%;
}

.marketing .card:nth-child(3)::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: linear-gradient(132.54deg, #191299 64.99%, #3AE2FF 70.78%, rgba(255, 87, 219, 0.9) 76.78%);
  filter: blur(100px);
  /* opacity: 0.5; */
  border-radius: 50%;
}


.marketing .add-metric {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #FDFDFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  padding: 50px 0;
  cursor: pointer;
}

.marketing .add-metric .metric-arrow-drop {
  padding-top: 4px;
  transition: 250ms;
}

.marketing .add-metric .metric-arrow-drop.active {
  transform: rotate(180deg);
}

.marketing .table-metric {
  width: 100%;
  border: 1px solid #ffffff63;
  border-radius: 16px;
  display: none;
}

.marketing .table-metric.active {
  display: block;
}

.marketing .table-metric .item {
  padding: 24px;
  border-bottom: 1px solid #ffffff63;
}

.marketing .table-metric .item:last-child {
  border-bottom: none;
}

.marketing .table-metric .item .item-title {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.marketing .table-metric .item .item-title .title {
  color: #8CFCE3;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}

.marketing .table-metric .item .item-title .subtitle {
  color: #90A2B2;
  font-size: 14px;
  line-height: 24px;
}

.marketing .table-metric .item .item-desc {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}


.marketing .table-metric .item .item-desc div:nth-child(1) {
  font-size: 18px;
  line-height: 24px;
  color: #FDFDFF;
  width: 100%;
  max-width: 500px;
}

.marketing .table-metric .item .item-desc div:nth-child(2) {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #FDFDFF;
  flex-grow: 3;
  padding: 0 30px;
}

.marketing .table-metric .item .item-desc div:nth-child(3) {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
}

.marketing .table-metric .item .item-desc div:nth-child(3) .outline-button{
  padding: 12px 32px;
}

/* ////////////////////// MARKETING ////////////////////////// */

/* ////////////////////// FAQ ////////////////////////// */

.faq {
  width: 100%;
  padding: 100px 0;
} 

.faq .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 0;
  gap: 200px;
}

.faq .container .faq-block .section-title {
  padding: 0;
  margin-bottom: 50px;
}

.faq .container .faq-block .faq-box .faq-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ffffff33;
  cursor: pointer;
}

.faq .container .faq-block .faq-box .faq-item.active .answer {
  max-height: 500px;
  transition: max-height 1.4s ease;
}


.faq .container .faq-block .faq-box .faq-item .question img {
  transition: transform 200ms ease;
}

.faq .container .faq-block .faq-box .faq-item.active .question img {
  transform: rotate(180deg);
}

.faq .container .faq-block .faq-box .faq-item .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq .container .faq-block .faq-box .faq-item .question h2 {
  font-size: 20px;
  line-height: 128%;
  color: #FDFDFF;
  font-weight: 500;
}

.faq .container .faq-block .faq-box .faq-item .answer {
  max-height: 0;
  overflow: hidden;
}

.faq .container .faq-block .faq-box .faq-item .answer h3 {
  padding-top: 1rem;
  line-height: 24px;
  font-size: 18px;
  color: #90A2B2;
  font-weight: 400;
}

.faq .container .action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 520px;
  width: 100%;
}

.faq .container .action .social-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.faq .container .action .social-block .socials img {
  width: 42px;
}

.faq .container .action .email {
  width: 100%; 
  width: 100%;
  max-width: 458px;
  padding: 60px 0;
}

.faq .container .action .email p {
  font-size: 20px;
  line-height: 24px;
  color: #FDFDFF;
  margin-bottom: 30px;
}


.faq .container .action .email input {
  margin-right: 10px;
  border: none;
  padding: 12px 56px 12px 24px;
  width: 360px;
  background: #ffffff1e;
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  width: 100%;
}

.faq .container .action .email input::placeholder {
  color: #90A2B2;
  font-weight: 700;
}

.faq .container .action .email input:focus {
  outline: none;
}

.faq .container .action .email .input-wrapper {
  position: relative;
}

.faq .container .action .email .input-wrapper::after {
  content: '';
  position: absolute;
  top: calc(50% - 6px);
  right: 30px;
  background: url(/static/assets/arrow.svg);
  width: 30px;
  height: 12px;
}

.faq .container .action .email .label {
  color: #FDFDFF;
  font-size: 16px;
}

.faq .container .action .banner {
  position: relative;
  width: 100%;
  max-width: 458px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 56px;
  border-radius: 24px;
  background: transparent;
  overflow: hidden;
}

.faq .container .action .banner::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: #8CFCE3;
  filter: blur(100px);
  opacity: 0.7;
  border-radius: 50%;
  z-index: -1;
}

.faq .container .action .banner::after {
  content: '';
  position: absolute;
  bottom: -270px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: #8CFCE3;
  filter: blur(100px);
  opacity: 0.7;
  border-radius: 50%;
  z-index: -1;
}


.faq .container .action .banner p {
  font-size: 24px;
  line-height: 32px;
  color: #FDFDFF;
  text-align: center;
}

.faq .container .action .banner .outline-button {
  width: 100%;
}

/* ////////////////////// FAQ ////////////////////////// */

/* ////////////////////// CONTACT ////////////////////////// */

.contact {
  width: 100%;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 0;
  gap: 100px;
}

.contact .section-desc {
  color: #90A2B2;
}

.contact-container .desc-block {
  width: 50%;
}

.contact-container .desc-block .section-title {
  padding: 0;
  margin-bottom: 20px;
}

.contact-container .contact-form {
  width: 50%;
  padding: 0 50px;
}

.contact-container .contact-form input{
  width: 100%;
  margin-right: 0;
}

.contact-container .contact-form input::placeholder {
  font-size: 14px;
  font-weight: 600;
}

.contact-container .contact-form .outline-button {
  width: 100%;
  background: #647681;
}

.contact-container .contact-form .outline-button:hover {
  pointer-events: none;
}

.contact-container .contact-form .outline-button.active {
  background: #8CFCE3;
  color: #04151F;
  pointer-events: all;
}


.contact-container .contact-form .terms input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
  margin-bottom: 0;
}
.contact-container .contact-form .terms {
  display: flex;
  align-items: center;
  padding: 20px 0 40px 0;
}
.contact-container .contact-form .terms label {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  color: #FDFDFF;
}
.contact-container .contact-form .terms a {
  color: #8CFCE3;
  text-decoration: none;
  margin: 0 2px;
}

.contact-container .contact-form .multiselect-wrapper {
  width: 100%;
}
.contact-container .contact-form .multiselect {
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #ffffff46;
}
.contact-container .contact-form .multiselect .tag {
  background: #FFFFFF1A;
  color: #fff;
  border-radius:4px;
  font-size: 14px;
  padding: 5px 15px 5px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 2px 2px 2px 0;
}
.contact-container .contact-form .multiselect .remove {
  cursor: pointer;
  color: #48c6ef;
  font-size: 1.12em;
  font-weight: bold;
  margin-left: 3px;
  padding: 0 3px;
  border-radius: 50%;
  transition: background .16s;
}
.contact-container .contact-form .multiselect .remove:hover {
  opacity: 0.6;
}
.contact-container .contact-form .multiselect input {
  background: transparent;
  border: none;
  outline: none;
  color: #FDFDFF;
  flex: 1;
  min-width: 90px;
  font-size: 16px;
  margin-bottom: 0;
  padding: 12px 0;
}

/* Label как плавающий плейсхолдер */
.contact-container .contact-form .form-label {
  position: absolute;
  top: 18px;
  left: 0;
  font-size: 14px;
  color: #e3e6e8;
  pointer-events: none;
  transition: 0.19s cubic-bezier(.4, .17, .7, 1.35);
  letter-spacing: 0.01em;
  font-weight: 400;
}

/* Обязательная звездочка */
.contact-container .contact-form .form-label span {
  color: #30c08f;
  font-size: 1.11em;
  margin-left: 7px;
}

/* Анимация наверх */
.contact-container .contact-form input:focus + .form-label,
.contact-container .contact-form input:not(:placeholder-shown) + .form-label {
  top: -5px;
  left: 0;
  font-size: 10px;
  font-weight: 500;
  padding: 0 2px;
}

.contact-container .contact-form .form-label.active{
  top: -5px;
  left: 0;
  font-size: 10px;
  font-weight: 500;
  padding: 0 2px;
}

/* Скрытый placeholder для техники floating label */
.contact-container .contact-form input::placeholder {
  color: transparent;
}

/* выпадающий список опций */
.contact-container .contact-form .dropdown-list {
  position: absolute;
  background: #212f3c;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 32px #000A;
  top: 100%;
  left: 0; right: 0;
  z-index: 99;
  margin-top: 4px;
  max-height: 220px;
  overflow-y: auto;
  display: none;
  padding: 5px 0;
}
.contact-container .contact-form .dropdown-list.show {
  display: block;
}
.contact-container .contact-form .dropdown-list .option {
  padding: 14px 18px;
  font-size: 14px;
  cursor: pointer;
  color: #FFFFFF;
  transition: background .13s;
}
.contact-container .contact-form .dropdown-list .option.selected {
  background: #FFFFFF1A;
  color: #fff;
}
.contact-container .contact-form .dropdown-list .option:hover {
  background: #283a50;
}

/* Скрытый нативный select для формы */
.contact-container .contact-form select {
  display: none;
}

.contact-container .contact-form .form-group {
  margin-bottom: 20px;
  position: relative;
}

.contact-container .contact-form .error {
  color: #E33D3D;
  font-size: 10px;
  margin-top: 5px;
  display: none;
}

.contact-container .contact-form .modal-error {
  color: #E33D3D;
  font-size: 10px;
  margin-top: 5px;
  display: none;
  text-align: start;
}

/* ////////////////////// CONTACT ////////////////////////// */

/* ////////////////////// FOOTER ////////////////////////// */

footer {
  position: relative;
  padding: 150px 0 100px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.restrictor.footer {
  position: relative;
}

/* .restrictor.footer::before {
  content: '';
  position: absolute;
  top: calc(50% - 500px);
  left: calc(50% - 720px);
  width: 1440px;
  height: 1440px;
  background: #8CFCE3;
  filter: blur(600px);
  opacity: 0.5;
  border-radius: 50%;
  z-index: -1;
} */

footer .footer-logo {
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 1;
}

footer .footer-logo .img-wrapper{
  width: 326px;
  height: auto;
}

footer .footer-logo .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

footer .nav-container {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 1;
}

footer .nav-container ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer .nav-container ul li{
  list-style: none;
}

footer .nav-container ul li a{
  color: #FDFDFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: none;
  margin-left: 80px;
  transition: 250ms;
  border-bottom: 1px solid transparent;
}

footer .nav-container ul li a:hover {
  border-bottom: 1px solid #8CFCE3;
}

.footer-bg-img-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.footer-bg-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* ////////////////////// FOOTER ////////////////////////// */


/* ////////////////////// MODAL WINDOW ////////////////////////// */
.modal-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; 
  height: 100vh;
  background: rgba(4,12,18,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
}
.modal-bg.active {
  visibility: visible;
  opacity: 1;
}
.modal-window {
  background: #14222b;
  /* padding: 38px 44px; */
  border-radius: 16px;
  box-shadow: 0 6px 24px #0008;
  color: #ffffff;
  font-size: 1.2em;
  text-align: center;
  min-width: 270px;
  position: relative;
  overflow: hidden;
}
.modal-close {
  position: absolute;
  top: 10px; right: 18px;
  font-size: 1.3em;
  color: #30c08f;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.success-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1002;
  padding: 38px 44px;
}

.success-modal img {
  z-index: 1;
}

.success-modal span {
  color: #FDFDFF;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  z-index: 1;
}

.success-modal p {
  color: #FDFDFF;
  font-size: 18px;
  line-height: 24px;
  z-index: 1;
}

.success-modal::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: #8CFCE3;
  filter: blur(100px);
  opacity: 0.7;
  border-radius: 50%;
}

.success-modal::after {
  content: '';
  position: absolute;
  bottom: -270px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: #8CFCE3;
  filter: blur(100px);
  opacity: 0.7;
  border-radius: 50%;
}

.modal-window.contact-form {
  max-width: 1400px;
  width: 100%;
  text-align: start;
}

.modal-window.contact-form::before {
  content: '';
  position: absolute;
  top: 154px;
  left: -207px;
  width: 700px;
  height: 700px;
  filter: blur(100px);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(25, 18, 153, 0) -17.62%, #8CFCE3 51.74%);
}

.modal-window.contact-form .contact-container {
  padding: 50px;
}

.modal-window.contact-form .contact-container .desc-block {
  text-align: start;
}

.modal-window.contact-form .drag-handle {
  display: none;
}


/* ////////////////////// MODAL WINDOW ////////////////////////// */

@media (max-width: 1440px) {
  .marketing .container {
    flex-direction: column;
    align-items: center;
  }
  .marketing .card { 
    margin-bottom: 18px; 
  }
  .marketing .container .box {
    margin-bottom: 18px; 
  }
  .marketing .container .box .card {
    margin-bottom: 0;
  }
}


@media (max-width: 991px) {
  .section-title {
    font-size: 36px;
    line-height: 35px;
  }

  .restrictor {
    padding: 0;
  }

  .greeting-bg-img {
    width: 500px;
  }

  .greeting .content {
    padding-bottom: 300px;
  }

  .greeting .content h1 {
    font-size: 32px;
    line-height: 33px;
    margin-bottom: 0;
  }

  .greeting .content .action {
    display: none;
  }

  header {
    justify-content: flex-end;
    padding: 40px;
  }

  header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #04151F;
    z-index: 100;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
  }

  header nav.active {
    display: flex;
  }

   header nav::after {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, rgba(25, 18, 153, 0) -17.62%, #8CFCE3 51.74%);
    width: 591px;
    height: 619px;
    top: 314px;
    left: -113px;
    border-radius: 50%;
    filter: blur(100px);
   }

  header nav .navigation {
    position: relative;
    top: 50px;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 32px 16px;
    z-index: 1;
  }

  header nav .navigation li {
    font-weight: 700;
    padding: 16px 0;
    border-bottom: 1px solid #FFFFFF2B;
    width: 100%;
  }

  header nav .navigation li a {
    margin-left: 0;
    display: block;
    width: 100%;
    border-bottom: none;
  }
  
  header nav .navigation li a:hover {
  	border-bottom: none;
  }

  header nav .outline-button-wrapper {
    display: block;
    padding: 0 16px;
    width: 100%;
    z-index: 1;
  }

  header nav .outline-button-wrapper .outline-button {
    width: 100%;
    background: #FFFFFF66;
    border-color: #FFFFFF40;
  }

  header nav .socials {
    display: flex;
    gap: 10px;
    z-index: 101;
    padding: 32px 16px;
  }

  header .toggleMenu {
    position: relative;
    width: 20px;
    height: 20px;
    background: url(/static/assets/burger.svg);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    z-index: 1000;
    user-select: none;
  }
  header .toggleMenu.active {
    background: url(/static/assets/close.svg);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    position: fixed;
  }

  .services .service-item {
    padding: 20px 40px;
  }

  .services .service-item-restrictor .abr span {
    bottom: -50px;
  }

  .services .service-item-restrictor.active .dots {
    display: none;
  }

  .services .service-item-restrictor.active::before,
  .services .service-item-restrictor.active::after {
    display: none;
  }

  .services .service-item .space-box .space-box-inner {
    width: unset;
  }

  .services .service-item .content.active .space{
    height: 50px;
  }

  .services .service-item .content.active {
    padding-top: 50px;
  }

  .services .service-item .content.active h5 {
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .restrictor {
    max-width: 400px;
  }

  .cases .case {
    flex-direction: column;
    align-items: center;
  }

  .cases .case img {
    width: 330px;
    height: auto;
  }

  .cases .case .desc {
    max-height: 331px;
    height: 100%;
    padding-bottom: 10px;
  }

  .cases .case .desc .outline-button {
    display: none;
  }

  .cases .case .outline-button.mobile {
    display: block;
    width: 100%;
    margin-top: 30px;
  }
  
  .cases .case .abr {
    width: 100%;
    margin-bottom: 20px;
    display: block;
  }

  .marketing .table-metric .item .item-desc {
    align-items: flex-start;
  }

  .marketing .table-metric .item .item-desc div p{
    font-size: 16px;
  }

  .marketing .table-metric .item .item-desc div:nth-child(2) {
    padding: 0;
  }
  .marketing .table-metric .item .item-desc div:nth-child(2) p {
    white-space: nowrap;
  }
  .marketing .table-metric .item .item-desc div:nth-child(3) {
    display: none;
  }

  .faq {
    padding-bottom: 20px;
  }

  .faq .container {
    flex-direction: column;
    gap: 100px;
  }

  .faq .container .action .social-block {
    flex-direction: column;
  }

  .faq .container .action .social-block > img {
    width: 340px;
    height: auto;
  }

  .faq .container .action .email {
    padding-bottom: 0;
  }

  .faq .container .action .banner {
    display: none;
  }

  .contact-container {
    flex-direction: column;
    gap: 50px;
  }
  .contact-container .desc-block {
    width: unset;
  }

  .contact-container .contact-form {
    width: unset;
    padding: 0;
  }

  footer {
    flex-direction: column;
  }

  footer .nav-container {
    width: 100%;
  }

  footer .nav-container ul li a {
    margin-left: 0;
  }

  .modal-window.contact-form {
    position: fixed;
    bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    height: 90%;
    transition: bottom 0.3s cubic-bezier(.4,.8,.4,1);
  }

  .modal-window.contact-form.dragging {
    transition: none;
  }

  .modal-window.contact-form .drag-handle {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    height: 50px;
    cursor: grab;
    touch-action: none;
  }

  .modal-window.contact-form .drag-handle .drag-handle-clips {
    display: block;
    width: 80px;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);;
    border-radius: 3px;
    margin: 8px auto 14px auto;
  }

  .modal-window.contact-form .modal-close {
    display: none;
  }
  

  .modal-window.contact-form .contact-container {
    padding: 48px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .modal-window.contact-form .contact-container .desc-block {
    max-width: 625px;
  }

  .modal-window.contact-form .contact-container .contact-form .MuiButton-root.Mui-disabled {
    background: rgba(255, 255, 255, 0.4);
  }

  .modal-window.contact-form::before {
    width: 591;
    height: 541;
    top: 452px;
    left: -113px;
  }

  .contact-container .contact-form .MuiFormControlLabel-root {
    margin-right: 0;
  }
}

@media (max-width: 478px) {
  .restrictor {
    max-width: 340px;
  }

  .greeting {
    padding: 40px 0;
  }

  .greeting .content h1 .grad-text {
    background: linear-gradient(to right, #738290, #FDFDFF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  header {
    padding: 40px 10px;
  }

  header .logo {
    left: 10px;
  }

  .modal-window.contact-form .contact-container .desc-block .section-title {
    font-size: 20px;
    line-height: 100%;
  }

  .modal-window.contact-form .contact-container .desc-block .section-desc {
    font-size: 14px;
    line-height: 100%;
  }

  .modal-window.contact-form .contact-container .contact-form .MuiInputLabel-root {
    font-size: 12px;
  }

  .contact-container .contact-form span.MuiTypography-root {
    font-size: 13px;
  }

  .marketing::before,
  .marketing::after {
    display: none;
  }

  .marketing .card {
    border-width: 1px;
    border-style: solid;
    border-color: #F6F5FF33;
  }
}
