@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@700&display=swap');

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

html{
  scroll-behavior: smooth;
}

li, a, button {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
}

li a:hover{
  color: rgba(93, 101, 230, 1);
}

.spanUs{
  background: linear-gradient(101deg, #b181e8, #5d65e6);
  -webkit-background-clip:text;
  -webkit-text-fill-color: transparent;
}

.subHeader{
    color: #fff;
    background-color: #5D65E6;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
}

/* Marquee styles */
.marquee {
  z-index: 99;
  padding-top: 6px;
  padding-bottom: 6px;
  --gap: 1rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  -webkit-mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 10%,
    hsl(0 0% 0% / 1) 90%,
    hsl(0 0% 0% / 0)
  );
  --duration: 60s;
}

.marquee2 {
  z-index: 99;
  padding-top: 6px;
  padding-bottom: 6px;
  --gap: 1rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  -webkit-mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 35%,
    hsl(0 0% 0% / 1) 65%,
    hsl(0 0% 0% / 0)
  );
  --duration: 60s;
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/* Pause animation when reduced-motion is set */
@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}

/* Enable animation */
.enable-animation .marquee__content {
  animation: scroll 20s linear infinite;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 10%;
    background-color: #141B38;
    box-shadow: 0px 0px 80px #5B65E6;
    position: relative;
    z-index: 1;
}

.logo {
    cursor: pointer;
}

.nav__links {
  padding-top: 7px;
    list-style: none;
}

.nav__links li {
    display: inline-block;
    padding: 0px 20px;
}

.nav__links li a {
    transition: all 0.3s ease 0s;
}

.btn1{
  border-radius: 100rem;
  padding: 1rem;
  font-family: 'Avenir Next';
  font-size: 1rem;
  padding: .5rem 3rem;
  box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #b181e8, #5d65e6);
  background-origin: border-box;
  background-clip: content-box, border-box;
  cursor: pointer;
  box-shadow: 2px 1000px 1px #141B38 inset;
}

.btn1:hover{
  border-radius: 100rem;
  padding: 1rem;
  font-family: 'Avenir Next';
  font-size: 1rem;
  padding: .5rem 3rem;
  box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #b181e8, #5d65e6);
  background-origin: border-box;
  background-clip: content-box, border-box;
  cursor: pointer;
}

/* slider */

.slider-section{
  background: #F5F6FF;
}
/* Собственно сам слайдер */
.slider{
  max-width: 90%;
  position: relative;
  margin: auto;
  height: 100%;
  margin-bottom: 15px;
  margin-top: 150px;
}
/* Картинка мастабируется по отношению к родительскому элементу */
.slider .item img {
  object-fit: cover;
  width: 100%;
  border: none !important;
  box-shadow: none !important;
  margin-left: 6%;
}
/* Кнопки вперед и назад */
.slider .prev, .slider .next {
  cursor: pointer;
  position: absolute;
  top: 0;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding-top: 16px;
  padding-bottom: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}
.slider .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
/* При наведении на кнопки добавляем фон кнопок */
/* Заголовок слайда */
.slideText {
  position: absolute;
  color: #fff;
  font-size: 35px;
  /* Выравнивание текста по горизонтали и по вертикали*/
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* Тень*/
  text-shadow: 1px 1px 1px #000, 0 0 1em #000;
}
/* .slider .prev:hover,
.slider .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
} */
/* Кружочки */
.slider-dots {
  margin-top: 170px;
  text-align: center;
}
.slider-dots_item{
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #ddd;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active,
.slider-dots_item:hover {
  background: linear-gradient(216.39deg, #B181E8 13.54%, #5D65E6 87.75%);
}
/* Анимация слайдов */
.slider .item {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {
      opacity: .4
  }
  to {
      opacity: 1
  }
}
@keyframes fade {
  from {
      opacity: .4
  }
  to {
      opacity: 1
  }
}

/* slider */

/* swiper */

.swiper-section{
    background: #F5F6FF;
}

.swiper-section-mobile{
  display: none;
}

.swiper-section-second{
  background: white;
  margin-top: 80px;
  margin-bottom: 80px;
}

.slide1{
  align-items: center;
  margin-left: 180px;
}

.swiper {
    width: 90%;
    height: 502px;
    --swiper-theme-color: linear-gradient(216.39deg, #B181E8 13.54%, #5D65E6 87.75%);
    --swiper-navigation-size: 25px;
  }

  .swiper-slide {
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: left;
    justify-content:left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .swiper-title{
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 66px;
    margin-bottom: 34px;
    width: 700px
  }

  .swiper-text{
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    width: 500px
  }

  .swiper-img{
    display: inline-block;
  }

 /*  swiper */

 .main-section h1{
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 45px;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 80px;
 }

 .bg{
    background: linear-gradient(180deg, #F5F6FF 0%, #FFFFFF 100%);
    height: 140px;
 }

 .main-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
 }

 .big-item{
    display: flex;
    justify-content: space-between;
    background: #F5F6FF;
    border-radius: 8px;
    width: 49%;
    height: 390px;      
    margin-bottom: 20px;
 }

 .big-item:hover{
  display: flex;
  justify-content: space-between;
  background: #EAEBFF;
  border-radius: 8px;
  width: 49%;
  height: 390px;      
  margin-bottom: 20px;
}

 h2{
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 27px;
 }

.h2{
  margin-bottom: 30px;
}

 .second-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
 }

 .small-item{
    width: 24%;
    height: 400px;
    background: #F5F6FF;
    border-radius: 8px;
    text-align: center;
 }

 .small-item:hover{
  width: 24%;
  height: 400px;
  background: #EAEBFF;
  border-radius: 8px;
  text-align: center;
}

 .second-slider{
    margin-top: 160px;
    width: 90%;
    margin-left: 5%;
    background: #5D65E6;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 60px 40px;
    height: 296px;
    color:white;
}

.second-slider-mobile{
  display:none;
}

.about{
    display: flex;
    justify-content: space-between;
    margin-top: 200px;
    margin-left: 5%;
}

.form{
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    margin-left: 5%;
    margin-right: 5%;
}

.title-about{
    margin-top: 50px;
    margin-left: 25px;
    margin-right: 5%;
}

.about-text{
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  width: 590px;
}

.img-about-us{
  width: 780px;
}

.title-about-mobile{
  margin-top: 39.5px;
}

.swiper-title-mobile{
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 29px;
  text-align: left;
}

.swiper-text-mobile{
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
  margin-top: 20px;
  margin-right: 5%;
}

.contact h1{
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 45px;
    text-align: center;
    margin-top: 200px;
    margin-bottom: 20px;
}

.text{
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #141B38;
    margin-left: 20%;
    margin-right: 20%;
}

.inputs{
  border-radius: 8px;
  width: 553px;
  height: 520px;      
  margin-bottom: 20px;
}

.label{
  margin-top: 155px;
  margin-right: 5%;
}

.btn2{
  width: 206px;
  height: 39px;
  background: linear-gradient(216.39deg, #B181E8 13.54%, #5D65E6 87.75%);
  border-radius: 8px;
  border:none;
  margin-top: 14px;
  cursor: pointer;
}

.img-about-item{
  margin-left: 5%;
}

.div{
  display:flex;
  justify-content: space-between;
  margin-bottom: 35px;
}

input{
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #7C7C7C;

  padding: 10px 14px;
  gap: 1px;
  width: 261.5px;
  height: 42px;
  border: 1px solid #000000;
  border-radius: 2px;
}

textarea {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #7C7C7C;
  width: 545px;
  height: 160px;
  padding: 10px 14px;
  gap: 1px;
  border: 1px solid #000000;
  border-radius: 2px;

  resize: none;
}

.btn3{
  margin-top: 70px;
  padding: 12px 40px 10px;
  gap: 12px;
  width: 212px;
  height: 46px;
  background: linear-gradient(216.39deg, #B181E8 13.54%, #5D65E6 87.75%);
  border-radius: 64px;
  border:none;
  margin-left:30%;
  cursor: pointer;
}

.btn3:hover{
  margin-top: 70px;
  padding: 12px 40px 10px;
  gap: 12px;
  width: 212px;
  height: 46px;
  background: #5D65E6;
  border-radius: 64px;
  border:none;
  margin-left:30%;
  cursor: pointer;
}

label{
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 50px;
}

.map{
  margin-top: 100px;
}

.details{
  margin-top: 160px;
  background:url(/img/details.svg);
  background-size:cover;
  width: 100%;
  height: 494px;
  display: flex;
  justify-content: space-between;
}

.ourContacts{
  margin-left: 80.5px;
  font-family: 'Comfortaa', sans-serif;
  color: #FFFFFF;
  margin-top: 100px;
}

.sub-label{
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
}

.subLabelMail{
  margin-top: 48px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 26px;
}

.subLabel{
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 65px;
}

.adress{
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
}

.trk{
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
}

.ourDetails{
  margin-right: 80.5px;
  font-family: 'Comfortaa', sans-serif;
  color: #FFFFFF;
  margin-top: 100px;
}

.sub-h1{
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 45px;
  margin-bottom: 44px;
}

.infoBlock{
  display: flex;
  justify-content: space-between;
}

.greyBlock{
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 26px;
}

.greyInfo{
  margin-bottom: 20px;
}

.whiteBlock{
  font-family: 'Roboto',sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 26px;
  text-align: right;
  width: 389px;
}

footer{
  background: #141B38;
}

.footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 15%;
  margin-right: 15%;
  padding-top:26px;
  padding-bottom: 26px;
}

.footer-text{
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #FFFFFF;
}

.scroll-up{
  position: relative;
  top: 325px;
  left: -490px;
  cursor: pointer;
  box-sizing: border-box;
}

.about-mobile{
  display: none;
}

.second-slider-mobile{
  display:none;
}

.contact-mobile{
  display: none;
}

.footer-mobile{
  display: none;
}

.main-section-mobile{
  display: none;
}

.small-item-mobile{
  width: 150px;
  height: 263px;
  background: #F5F6FF;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 24px;
}

.img-scroll:hover{
  border-radius: 100rem;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #b181e8, #5d65e6);
  background-origin: border-box;
  background-clip: content-box, border-box;
  cursor: pointer;
}

@media (max-width: 576px) {
  .swiper {
    width: 320px;
    height: 502px;
    --swiper-theme-color: linear-gradient(216.39deg, #B181E8 13.54%, #5D65E6 87.75%);
    --swiper-navigation-size: 25px;
  }
      .subHeader{
        width: 100%;
        color: #fff;
        background-color: #5D65E6;
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 16px;
    }
    header {
      display: block;
      padding: 28px 9%;
      background-color: #141B38;
      box-shadow: 0px 0px 80px #5B65E6;
      position: relative;
      z-index: 1;
  }
  .nav__links {
    display:none;
  }
  .btn1{
    border-radius: 100rem;
    font-family: 'Avenir Next';
    font-size: 1rem;
    width: 320px;
    padding: 13px 40px 14px;
    box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
    border: solid 3px transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #b181e8, #5d65e6);
    background-origin: border-box;
    background-clip: content-box, border-box;
    cursor: pointer;
    box-shadow: 2px 1000px 1px #141B38 inset;
    margin-top: 20px;
  }

  .logo {
    cursor: pointer;
    margin-left: 13%;
  }

  .details{
    margin-top: 160px;
    height: 900px;
    background: url(img/details-mobile.svg);
    background-size:100%;
  }

  .div{
    display: block;
    margin-bottom: 35px;
  }

  .footer{
    display:none;
  }

  .footer-mobile{
    display: block;
    align-items: center;
    margin-left: 35%;
    padding-top:20px;
    padding-bottom: 26px;
  }

  .footer-text{
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    margin-left: 10%;
    margin-top: 30px;
  }

  .contact{
    display:none;
  }

  .contact-mobile{
    display:block;
  }

  .contact-mobile h1{
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 29px;
    text-align: center;
    margin-top: 138px;
    margin-bottom: 20px;
}

.text-mobile{
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #141B38;
  margin-left: 19px;
}

.btn3{
  margin-left: 18%;
  margin-top: 0px;
}

textarea {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #7C7C7C;
  width: 321px;
  height: 160px;
  padding: 10px 14px;
  gap: 1px;
  border: 1px solid #000000;
  border-radius: 2px;

  resize: none;
}

.div{
  display:block;
  margin-bottom: 35px;
}

input{
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #7C7C7C;

  padding: 10px 14px;
  gap: 1px;
  width: 321px;
  height: 42px;
  border: 1px solid #000000;
  border-radius: 2px;
}

.about{
  display:none;
}

.about-mobile{
  display: block;
  margin-top: 160.5px;
  margin-left: 9%;
}
 .second-slider{
  display:none
}

.second-slider-mobile{
  margin-top: 160px;
  width: 320px;
  margin-left: 9%;
  background: #5D65E6;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 10px;
  height: 514px;
  color:white;
}
.main-section{
  display: none;
}

.text-mobile{
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #141B38;
  margin-left: 5%;
  margin-right: 5%;
}

.main-section-mobile{
  display: block;
}

.btn2{
  width: 134px;
  height: 34px;
  background: linear-gradient(216.39deg, #B181E8 13.54%, #5D65E6 87.75%);
  border-radius: 8px;
  border:none;
  margin-top: 10px;
  cursor: pointer;

  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}

h2{
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
 }

 h1{
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 29px;
  text-align: center;
 }

 .demoslider{
  margin-left: 10%;
  margin-top: 80px;
  margin-bottom: 80px;
}

/* swiper */

.swiper-section{
  background: #F5F6FF;
}

.swiper {
  width: 95%;
  height: 84vh;
  position: relative;
  z-index: -999;
  --swiper-theme-color: linear-gradient(216.39deg, #B181E8 13.54%, #5D65E6 87.75%);
  --swiper-navigation-size: 0px;
}

.swiper-slide {
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: left;
  justify-content:left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-banner{
  display:inline-block;
  flex-direction: column;
  align-items: flex-start;
  width: 320px;
  height: 502px;
  margin-left: 20px;
  background: #F5F6FF;
  overflow-y: hidden;
}

.swiper-title{
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 36px;
  margin-bottom: 34px;
}

.swiper-text{
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
}

.swiper-img{
  display: inline-block;
}

/*  swiper */

.swiper-section-mobile{
  background:#F5F6FF;
  display: block;
}

.swiper-section{
  display:none;
}

.form{
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  margin-left: 9%;
  margin-right: 5%;
}

.second-content{
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 9%;
  margin-right: 9%;
}

.bunner-demo{
  margin-left: 9%;
  margin-top: 60px;
}

.slider-section{
  display: none;
}

.img-about-item{
  margin-top: 23px;
  margin-left: 5%;
}

.img-about-item-slider{
  text-align: center;
}

.swiper-title{
  margin-left: 57px;
  margin-top: 66px;
}

.sliderH1{
  margin-left: 15px;
  width: 206px;
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 27px;
 }

.sliderH2{
  margin-left: 23px;
  width: 206px;
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 27px;
 }

 .sliderH3{
  margin-left: 50px;
  width: 206px;
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 27px;
 }

 .sliderH4{
  margin-left: 27px;
  width: 206px;
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 27px;
 }

 .btn2Slider{
  width: 206px;
  height: 39px;

  background: linear-gradient(216.39deg, #B181E8 13.54%, #5D65E6 87.75%);
  border-radius: 8px;
  border:none;
  margin-top: 10px;
  cursor: pointer;

  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
 }

 .h2{
    text-align: center;
 }

 .title__slider{
  font-size: 26px;
  line-height: 34px;
 }

 .animMobile{
  flex-direction: column;
  display: flex;
 }

 .marquee2 {
  z-index: 99;
  margin-top: 27px;
  --gap: 1rem;
  position: relative;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  -webkit-mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 35%,
    hsl(0 0% 0% / 1) 65%,
    hsl(0 0% 0% / 0)
  );
}

.marquee__content {
  flex-shrink: 0;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
}

}
