/***base styles reset***/

@font-face {
   font-family: 'Advent Pro';
   src: url('./resourses/fonts/AdventPro-Regular.ttf') format('truetype');
   font-weight: normal;
   font-style: normal;
}

@font-face {
   font-family: 'Advent Pro';
   src: url('./resourses/fonts/AdventPro-Bold.ttf') format('truetype');
   font-weight: bold;
   font-style: normal;
}

@font-face {
   font-family: 'Neuropolitical';
   src: url('./resourses/fonts/neuropolitical.ttf') format('truetype');
   font-weight: normal;
   font-style: normal;
}

* {
   padding: 0;
   margin: 0;
   border: 0;
}

*, *:before, *:after {
   box-sizing: border-box;
}

:focus, :active {
   outline: none;
}

a:focus, a:active {
   outline: none;
}

nav, footer, header, aside {
   display: block;
}

html, body {
   height: 100%;
   width: 100%;
   font-size: 100%;
   line-height: 1;
   font-size: 14px;
   /* overflow-x: hidden; */
   -ms-text-size-adjust: 100%;
   -moz-text-size-adjust: 100%;
   -webkit-text-size-adjust: 100%;
}

body.no-scroll {
   overflow: hidden;
}

body {
   background-color: #070010;
}

section {
   padding: 55px 80px;
}
.section {
   margin: 0 auto;
   max-width: 1280px;
}
input, button, textarea {
   font-family: inherit;
}

input::-ms-clear {
   display: none;
}

button {
   cursor: pointer;
}

button::-moz-focus-inner {
   padding: 0;
   border: 0;
}

a, a:visited {
   text-decoration: none;
}

a:hover {
   text-decoration: none;
}

ul li {
   list-style: none;
}

img {
   vertical-align: top;
}

:root {
   --text-color: #EEEFF8;
   --subtitle-color: #705DA5;
   --shadow-filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.56));
}

h2 {
   font-family: 'Neuropolitical';
   color: var(--text-color);
   font-size: 40px;
   line-height: 48px;
}

p.text {
   font-family: 'Advent Pro';
   font-weight: normal;
   font-size: 16px;
   letter-spacing: 1px;
   line-height: 20px;
   color: var(--text-color);
}

p.subtitle {
   color: var(--subtitle-color);
   font-size: 20px;
   font-family: 'Advent Pro';
   line-height: 24px;
}

p.card-title {
   color: var(--text-color);
   font-size: 24px;
   font-family: 'Advent Pro';
   font-weight: bold;
}

a, button {
   font-family: 'Advent Pro';
   font-weight: bold;
   font-size: 16px;
   color: var(--text-color);
   background-color: transparent;
}

select {
   display: none;
}

/***content***/

.wrapper {
   width: 100%;
   height: auto;
   
   background-image: url('./resourses/images/gradients_desktop.png');
   background-size: 100% 100%;
}

header {
   position: fixed;
   width: 100%;
   height: 92px;
   padding: 16px 80px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   background-color: transparent;
   transition: background-color 0.3s ease;
   z-index:11;
}
.scrolled {
   background-color: #070010; /* Change this to your desired color */
}
.header-content {
   width: 1280px;
   height: 100%;
   margin: 0 auto;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0 80px
}
.logo-wrapper {
   display: flex;
   align-items: center;
   height: 100%;
}

.logo-image {
   display: block;
   max-height: 100%;
}

.menu-body {
}
.menu {
}
.menu-list {
   display: flex;
   gap: 45px;
}
.menu-link {
   color: var(--text-color);
   font-weight: normal;
   display: inline-block;
   padding-bottom:2px;
   background-image: linear-gradient(var(--text-color) 0 0);
   background-position: 0 100%; /*OR bottom left*/
   background-size: 0% 2px;
   background-repeat: no-repeat;
   transition:
      background-size 0.3s,
      background-position 0s 0.3s; /*change after the size immediately*/
}

.menu-link:hover {
   background-position: 100% 100%; /*OR bottom right*/
   background-size: 100% 2px;
}

.language-button {
   padding: 8px;
   border: 2px solid var(--text-color);
   font-size: 14px;
   border-radius: 100px;
}

.languages-mobile {
   display: none;
   gap: 8px;
   align-items: center;
   margin-top: 8px;
}
.menu-options {
   display: flex;
   align-items: center;
   gap: 16px;
}

.menu .gradient-button-wrapper {
   display: none;
}

.contact {
}
.gradient-button {
   width: 100%;
   height: 100%;
   background: rgb(98,58,247);
   background: linear-gradient(90deg, rgba(248,122,255,1) 0%, rgba(80,50,246,1) 100%);;
   border-radius: 100px;
   font-weight: 600;
}

.gradient-button-wrapper {
   width: 145px;
   height: 43px;
   padding: 1px;
   transition: all 0.3s ease 0s;
   border-radius: 100px;
   background: linear-gradient(90deg, rgba(98,58,247,1) 0%, rgba(251,194,235,1) 20%, rgba(243,120,255,1) 100%);
}

.gradient-button-wrapper:hover {
   padding: 2px;
}

.burger-block {
   z-index: 5;
   display: block;
   position: relative;
   width: 26px;
   height: 26px;
   padding: 10px 8px;
   display: none;
}

.burger,
.burger-block::before,
.burger-block::after  {
   position: absolute;
   right: 0;
   height: 2px;
   width: 100%;
   background-color: var(--text-color);
   transition: all 0.3s ease 0s;
}

.burger-block::before,
.burger-block::after {
   content: "";
}

.burger-block::before {
   top: 0;
}

.burger-block::after {
   bottom: 0;
}
.burger {
   top: 50%;
   height: 2px;
   width: 20px;
}

.burger-block.active .burger {
   opacity: 0;
}

.burger-block.active::after {
   top: 50%;
   transform: rotate(-45deg) translate(0px, -50%);
}

.burger-block.active::before {
   top: 50%;
   transform: rotate(45deg) translate(0px, -50%);
}

.custom-dropdown {
   position: relative;
   width: 80px;
   font-family: "Advent Pro";
   font-size: 18px;
   color: var(--text-color);
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 12px 8px;
   cursor: pointer;
   font-size: 16px;
}
.dropdown-selected {
   background-color: transparent;
   padding: 8px;
}
.dropdown-options {
   list-style: none;
   margin: 0;
   padding: 0;
   border-top: none;
   background-color: transparent;
   position: absolute;
   top: 45px;
   width: 100%;
   display: none;
   z-index: 10;
}
.dropdown-options li {
   padding: 8px;
   cursor: pointer;
}

.content {
   max-width: 1280px;
   margin: 0 auto;
}
.fullscreen {
   width: 100%;
   height: 100vh;
   display: flex;
   flex-direction: column;
   justify-content: end;
   gap: 16px;
   align-items: center;
   background-image: url('./resourses/images/desktop_heroimage.png');
   background-size: cover;
   background-position: center;
   padding-top: 55px;
   padding-bottom: 55px;

}
#fullscreen {
   width: 100%;
}
.fullscreen p,
.fullscreen h2 {
   text-align: center;
}

.scroll-down {
   position: relative;
   display: inline-block;
   padding: 24px 12px;
   background-color: transparent;
   border-radius: 100px;
   overflow: hidden;
   font-weight: normal;
}
.scroll-down::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(
      90deg,
      #623AF7 0%,
      #FBC2EB 50%,
      #F378FF 100%
   );
   border-radius: 100px; /* Ensure rounded corners */
   z-index: -1;
   padding: 2px; /* Border thickness */
   -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
   -webkit-mask-composite: xor;
   mask-composite: exclude;
}
.scroll-down:hover::before {
   padding: 3px;
}
.about {
   display: flex;
   justify-content: space-between;
   gap: 16px;
   padding-top: 72px;
   padding-bottom: 72px;
}
.about-countent {
   width: 50%;
   display: flex;
   flex-direction: column;
   justify-content: center;
}
.about-countent .subtitle {
   
}

.about-countent h2 {
   margin-bottom: 32px;
}

.about-description {
}

.about-image-wrapper {
   width: 391px;
   height: 391px;
   filter: var(--shadow-filter);
}
.about-image {
   width: 100%;
   height: 100%;
   mask-image: url(./resourses/images/img_about_mask.png);
   mask-size: cover;
   /* box-shadow: 0 22px 70px 4px rgba(0, 0, 0, 0.56); */
}
.about-image img {
   max-width: 100%;
   max-height: 100%;
   
   /* box-shadow: 0 22px 70px 4px rgba(0, 0, 0, 0.56); */
}

.solutions {
   padding-top: 80px;
   padding-bottom: 80px;
}

.solution-cards-container {
   display: flex;
   flex-wrap: wrap; 
   gap: 1rem; 
   justify-content: space-evenly;
}

.solutions h2 {
   margin-bottom: 48px;
}

.solutions-card {
   flex: 1 1 calc(25% - 1rem); 
   min-width: 200px;
   background-color: #3434344D;
   padding: 20px 20px 26px;
   border: 1px solid #F378FF;
   border-radius: 8px;
   text-align: center;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   text-align: left;
   display: flex;
   flex-direction: column;
   gap: 12px;
}

.solutions-card-icon  {
   max-width: 42px;
}

.options {
   display: flex;
   flex-direction: column;
   gap: 56px;
   padding-top: 80px;
   padding-bottom: 56px;
}
.option-card {
   display: flex;
   align-items: center;
   gap: 84px;
}
.option-content {

}
.option-card-subtitle {
   margin-bottom: 32px;
}
.subtitle {
}
.option-card-description {
}
.text {
}
.option-image-wrapper-mobile,
.option-image-wrapper {
   max-width: 391px;
   max-height: 391px;
   filter: var(--shadow-filter);
}
.option-image, .option-image-mobile {
   max-width: 100%;
   max-height: 100%;
}
.ar-card .option-image img, 
.ar-card .option-image-mobile img,
.mr-card .option-image img,
.mr-card .option-image-mobile img {
   mask-image: url(./resourses/images/img_left_mask.png);
}
.vr-card .option-image img, 
.vr-card .option-image-mobile img,
.ai-card .option-image img,
.ai-card .option-image-mobile img {
   mask-image: url(./resourses/images/img_right_mask.png);
}
.option-image img,
.option-image-mobile img {
   max-width: 100%;
   max-height: 100%;
   mask-size: cover;
}

.option-image-wrapper-mobile {
   width: 100%;
   aspect-ratio: 1;
   margin-bottom: 16px;
   display: none;
}
.option-mobile-image img {
   width: 100%;
   height: 100%;
}

.services {
   padding-bottom: 80px;
   padding-top: 80px;
}

.services-head {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   gap: 200px;
   margin-bottom: 99px;
}
.text {
}
.services-cards {
   display: flex;
   flex-wrap: wrap; 
   gap: 20px; 
   justify-content: space-evenly;
}
.service-card {
   flex: 1 1 calc(33.33% - 20px); 
   min-width: 169px;
   text-align: left;
   display: flex;
   flex-direction: column;
   gap: 8px;
   margin-top: 27px;
}
.card-icon {
   max-width: 42px;
}
.card-title {
}

.we-create {
   padding-bottom: 80px;
   padding-top: 80px;
}

.we-create h2 {
   margin-bottom: 24px;
}

.slider-container {
   position: relative;
   padding: 0 54px;
   padding-bottom: 24px;
}
.swiper {
   width: 100%;
   max-width: 1012px;
   margin: 20px auto;
}
.swiper-slide {
}
.slider-card {
   padding: 32px 20px 27px;
   background-color: #3434344D;
   border-radius: 20px;
   border: 1px solid #F378FF;
   text-align: center;
   display: flex!important;
   flex-direction: column;
   gap: 16px;
}
.slider-card h2 {
   
}
.slider-card a {
   font-weight: normal;
   text-decoration: underline;
}
.slide-image {
   max-width: 150px;
   aspect-ratio: 1;
   border-radius: 100px;
   overflow: hidden;
   margin: 0 auto;
}
.slide-image img {
   max-width: 100%;
   max-height: 100%;
}
.card-title {
}
.text {
}

.swiper-button-next, .swiper-button-prev {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   z-index: 10;
   width: 42px!important;
   height: 42px!important;
   background: #EEEFF80D;
   color: #fff!important;
   border-radius: 100px;
   display: flex;
   justify-content: center;
   align-items: center;
   cursor: pointer;
}
.swiper-button-next::after, .swiper-button-prev::after {
   font-size: 18px!important;
   font-weight: 600;
}
.swiper-button-next {
   right: 0px!important; /* Adjust to position outside slider */
}
.swiper-button-prev {
   left: 0px!important; /* Adjust to position outside slider */
}
.swiper-button-next::after, .swiper-button-prev::after {
   font-size: 16px;
}

.swiper-scrollbar {
   width: 83px!important;
   padding: 6px 10px!important;
   height: 20px!important;
   border-radius: 100px!important;
   background-color: #EEEFF80D!important;
   left: calc(50% - (83px / 2))!important;
}
.swiper-scrollbar-drag {
   width: 34px!important;
   height: 8px!important;
   border-radius: 100px!important;
   background-color: #fff!important;
}

.swiper-pagination {
   display: none;
   width: 120px!important;
   background-color: #EEEFF80D!important;
   border-radius: 100px!important;
   left: calc(50% - (120px / 2))!important;
   padding: 6px 10px!important;
}

.swiper-pagination-bullet {
   background: #fff !important;
}

.swiper-pagination-bullet-active {
   transform: scale(1.5);
   background: #fff !important;
}

.partners {
   padding-top: 80px;
   padding-bottom: 80px;
}

.partners h2 {
   margin-bottom: 32px;
}

.partners-icons {
   display: grid; /* Use grid for consistent rows and columns */
   grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Dynamic columns */
   gap: 25px; /* Space between grid items */
   justify-content: center; /* Center-align the grid */
}
.partners-icon {
   max-width: 204px; /* Prevent items from exceeding their natural size */
   justify-self: center; /* Center items horizontally */
}
.partners-icon img {
   width: 100%; /* Responsive: Scale to fit parent */
   height: auto; /* Maintain aspect ratio */
}

.innovate {
   padding-bottom: 120px;
   padding-top: 120px;
}

.innovate-head {
   display: flex;
   gap: 150px;
   margin-bottom: 64px;
}

.innovate-cards {
   display: flex;
   flex-wrap: wrap; 
   gap: 20px; 
   justify-content: space-evenly;
}
.innovate-card {
   flex: 1 1 calc(25% - 20px); 
   min-width: 169px;
   text-align: left;
   display: flex;
   flex-direction: column;
   gap: 8px;
}
.card-title {
}

.technologies {
   padding-top: 120px;
   padding-bottom: 120px;
}

.technologies-block {
   padding: 0 29px;
   display: flex;
   justify-content: space-between;
   gap: 16px;
   margin-bottom: 64px;
}
.technology-card {
   max-width: 201px;
}
.technology-card img {
   width: 100%;
   height: auto;
}
.technologies-banner {
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: #000002;
   border: 2px solid #D2ABE4;
   border-radius: 50px;
   margin-bottom: 64px;
   /* padding: 84px 0; */
   text-align: center;
   box-shadow: 0px 0px 24px 4px #3C1F82;
   overflow: hidden;
   /* background-image: url('/resourses/images/img_bottom.png'); */
   background-size: cover;
}
.technologies-banner img {
   width: 100%;
   height: 100%;
}
.logo {
}
.hardware-block {
   padding: 0 29px;
}
.harware-line1, .harware-line2 {
   display: flex;
   justify-content: space-between;
   gap: 16px;
}
.harware-line2 {
   width: calc(50% - (66px / 2));
   margin: 0 auto;
}
.hardware-card {
   max-width: 216px;
}
.hardware-card img {
   width: 100%;
   height: auto;
}
.harware-line2 {
}

footer {
   padding-bottom: 40px;
}

.footer-content {
   display: flex;
   gap: 16px;
   max-width: 1280px;
   margin: 0 auto;
   align-items: center;
   justify-content: space-between;
   padding: 80px 80px 40px;
}


.footer-logo {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 16px;
}

.logo-wrapper {
   width: 125px;
}
.logo-wrapper img{
   max-width: 100%;
}
.navigation {
   display: flex;
   flex-direction: raw;
   justify-content: center;
   gap: 16px;
}

.information {
   display: flex;
   flex-direction: column;
   gap: 8px;
   align-self: flex-start;
}
.footer-contact {
   align-self: flex-start;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 4px;
   width: 239px;
   text-align: center;
}


.footer-contact .gradient-button-wrapper {
   width: 211px;
}
.social {
   display: flex;
   gap: 12px;
}
.social-desktop {
   margin-bottom: 16px;
}
.contact p {
   margin-bottom: 4px;
}
.email {
   text-decoration: underline;
}
.text {
}
.social-mobile {
   display: none;
}

.watermark {
   font-size: 14px;
   color: var(--subtitle-color);
   font-family: "Advent Pro";
   text-align: center;
}

.contact-popup {
   position: fixed;
   width: 100%;
   height: 100%;
   background-color: #07001080;
   top: 0;
   left: -100%;
   z-index: 10;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 100;
}

.contact-popup.active {
   left: 0;
}

.contact-popup-content {
   position: relative;
   width: 550px;
   text-align: center;
   padding: 40px ;
   border: 1px solid #EEEFF84D;
   border-radius: 18px;
   background-image: url('./resourses/images/bg_popup_contactform.png');
   background-size: cover;
   display: flex;
   justify-content: center;
   flex-direction: column;
   align-items: center;
   gap:24px;
   box-shadow: var(--shadow-filter);
}
.contact-popup-content .gradient-button-wrapper {
   width: 160px;
}
.close-popup-button {
   position: absolute;
   top: 24px;
   right: 24px;
}

.contact-form {
   display: flex;
   flex-direction: column;
   gap: 16px;
}
.user-data {
   width: 100%;
   display: flex;
   align-items: center;
   gap: 16px;
}

.user-data input {
   width: 100%;
}

.contact-form input,
.contact-form textarea {
   font-size: 16px;
   color: var(--text-color);
   padding: 12px;
   background-color: transparent;
   border: 1.5px solid #EEEFF8;
   border-radius: 8px;
   font-family: 'Advent Pro';
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
   color: #EEEFF866;
}

.contact-form textarea {
   height: 114px;
}


@media (max-width: 767px) {

   header {
      padding: 8px 16px;
      height: 54px;
   }

   h2 {
      font-size: 32px;
   }

   p.text {
      font-size: 14px;
   }
   p.subtitle {
      font-size: 16px;
   }
   p.card-title {
      font-size: 18px;
   }
   a, button {
      
   }

   .wrapper {
      background-image: url('./resourses/images/gradients_mobile.png');
   }

   .header-content {
      width: 100%;
      padding: 0;
   }

   .logo {
      font-size: 18px;
   }
   
   .burger-block {
      display: block;
   }

   .menu-options {
      display: none;
   }

   .languages-mobile {
      display: flex;
      justify-content: end;
   }

   .menu-body {
      position: fixed;
      top: 54px;
      left: -100vw;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0,0,0,0.85);
      display: flex;
      align-items: start;
      justify-content: end;
      transition: all 0.3s ease 0s;
   }

   .menu-body.active { 
      left: 0;
   }

   .menu {
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 24px;
   }

   .menu-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding: 0;
      align-items: end;
   }

   .menu .gradient-button-wrapper {
      display: block;
   }

   .menu-link {
      text-align: end;
      font-size: 18px;
   }

   .fullscreen {
      background-image: url('/resourses/images/mob_heroimage.png');
      background-size: 390px 438px;
      background-repeat: no-repeat;
      background-position: top center;
      height: 590px;
   }

   .content {
      width: 100%;
   }

   section {
      padding: 16px 16px;
   }

   .section {
      width: 100%;
   }

   .about {
      flex-direction: column;
      gap: 24px;
      text-align: center;
      padding-top: 16px;
      padding-bottom: 80px;
   }

   .about-countent {
      width: 100%;
      align-items: center;
      justify-content: center;
   }

   .about-image-wrapper {
      width: 100%;
      height: auto;
   }

   .solutions {
      padding-top: 16px;
      padding-bottom: 64pxpx;
   }

   .solutions-card {
      gap: 8px;
      padding: 20px 20px 43px;
   }

   .options {
      padding-top: 40px;
      padding-bottom: 40px;
   }

   .option-card-subtitle {
      margin-bottom: 16px;
   }

   .option-image-wrapper-mobile {
      display: block;
   }
   .option-image-wrapper {
      display: none;
   }

   .services {
      padding-top: 64px;
      padding-bottom: 0px;
   }

   .services-head {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 24px;
   }

   .service-card {
      margin-top: 16px;
   }

   .we-create {
      padding-top: 64px;
      padding-bottom: 0px;
   }

   .slider-container {
      padding-left: 0;
      padding-right: 0;
   }

   .slider-card {
      gap: 8px;
      padding: 24px 20px 40px;
      min-height: auto;
   }

   .swiper-button-next {
      display: none!important;
   }
   .swiper-button-prev {
      display: none!important;
   }
   .swiper-scrollbar {
      display: none!important;
   }
   .swiper-pagination{
      display: block;
   }

   .partners {
      padding-top: 64px;
      padding-bottom: 0px;
   }

   .partners-icons {
      gap: 17px;
   }

   .innovate {
      padding-top: 64px;
      padding-bottom: 0px;
   }

   .innovate-head {
      flex-direction: column;
      gap: 16px;
      margin-bottom: 24px;
   }

   .technologies {
      padding-top: 64px;
      padding-bottom: 0px;
   }
   
   .technologies-block {
      padding: 0;
      margin-bottom: 24px;
   }
   .technologies-banner {
      margin-bottom: 24px;
      border-radius: 15px;
   }
   .hardware-block {
      padding: 0;
   }
   .harware-line2  {
      width: calc(50% - (16px / 2));
   }

   .footer-content {
      flex-direction: column;
      text-align: center;
      gap: 24px;
   }

   .footer-contact {
      align-self: center;
   }

   .footer-logo {
      display: none;
   }

   .contact, .information {
      align-self: center;
   }

   .information , .navigation {
      gap: 24px;
   }

   .footer-contact .gradient-button-wrapper {
      width: 132px;
   }

   .social-desktop {
      display: none;
   }

   .social-mobile {
      display: flex;
      justify-content: center;
      margin-top: 24px;
   }

   .navigation {
      display: flex;
      flex-direction: column;
      gap: 24px;
   }

   .contact-popup {
      padding: 16px;
   }

   .contact-popup-content {
      background-image: url(./resourses/images/bg_mobile_popup_contactform.png);
   }

   .contact-form {
      width: 100%;
   }

   .user-data {
      flex-direction: column;
   }

   .contact-form input,
   .contact-form textarea {
      font-size: 14px;
      padding: 10px 12px;
   }
   
   .contact-form textarea {
      height: 75px;
   }

   .watermark {
      font-size: 10px;
      font-family: "Advent Pro";
      text-align: center;
   }
}