@charset "UTF-8";
/*===== GOOGLE FONTS =====
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

*/
@font-face {
  font-family: "Roboto";
  src: url("Roboto-Regular.eot");
  src: local("Roboto"), local("Roboto-Regular"), url("Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("Roboto-Regular.woff2") format("woff2"), url("Roboto-Regular.woff") format("woff"), url("Roboto-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("Roboto-Black.eot");
  src: local("Roboto Black"), local("Roboto-Black"), url("Roboto-Black.eot?#iefix") format("embedded-opentype"), url("Roboto-Black.woff2") format("woff2"), url("Roboto-Black.woff") format("woff"), url("Roboto-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("Roboto-Light.eot");
  src: local("Roboto Light"), local("Roboto-Light"), url("Roboto-Light.eot?#iefix") format("embedded-opentype"), url("Roboto-Light.woff2") format("woff2"), url("Roboto-Light.woff") format("woff"), url("Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;
  /*========== Colors ==========*/
  --first-color: #3171DE;
  --first-color-alt: #3476D9;
  --two-color: #0000;
  --title-color: #393939;
  --text-color: #7D7987;
  --text-color-light: #A6A6A6;
  --body-color: #FFFF;
  --container-color: #FFFFFF;
  --White: hsl(0, 0%, 100%);
  --Very: hsl(230, 100%, 99%);
  --Light:hsl(224, 65%, 95%);
  --Light-light: hsl(223, 50%, 87%);
  --Grayish:hsl(225, 20%, 60%);
  --Dark:hsl(227, 35%, 25%);
  /*========== Box-shadow ==========*/
  --main-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  --button-shadow: 1px 2px 5px rgb(96 195 255 / 33%);
  --button-shadow-alt: 1px 2px 5px rgb(0 193 194);
  --button-shadow-blue: 1px 2px 5px rgb(41 169 255);
  /*========== Font and typography ==========*/
  --body-font: "Roboto", light;
  --biggest-font-size: 3.5rem;
  --section-title: 2,25rem;
  --h1-font-size: 1rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  /*
  --font-medium: 500;
  --font-semi-bold: 600;
  */
  /*========== Margenes ==========*/
  --mb-1: .5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}
@media screen and (min-width: 768px) {
  :root {
    --biggest-font-size: 2rem;
    --section-title: 1.75rem;
    --h1-font-size: 1.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*========== BASE ==========*/
*, ::before, ::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/*========== Main ==========*/
body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3, ul, p {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

hr {
  border-bottom: solid 2px #000000;
  width: 60px;
  margin: auto;
}

/*========== CLASS CSS ==========*/
.section {
  padding: 4rem 0 2rem;
}
.section-title, .section-subtitle, .section-subtitle1 {
  text-align: center;
  font-weight: 900;
  font-style: normal;
}
.section-title {
  font-size: var(--section-title);
  color: var(--title-color);
  margin-bottom: var(--mb-3);
}
.section-subtitle {
  display: block;
  color: var(--first-color);
  margin-bottom: var(--mb-1);
}
.section-subtitle1 {
  /* font-size: 2rem; */
  color: #3171de;
}

/*========== LAYOUT ==========*/
.bd-container {
  max-width: 1200px;
  width: calc(100% - 2rem);
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
}

.bd-grid {
  display: -ms-grid;
  display: grid;
  /* gap: 2.5rem; */
  -ms-flex-line-pack: center;
      align-content: center;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*
.l-header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: var(--body-color);
}
*/
/*========== NAV ==========
.nav{
    max-width: 1200px;
    height: var(--header-height);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

    &__menu{
        @media screen and (max-width: 768px){
            position: fixed;
            top: -100%;
            left: 0;
            width: 100%;
            padding: 1.5rem 0 1rem;
            text-align: center;
            background-color: var(--body-color);
            -webkit-transition: .4s;
            transition: .4s;
            box-shadow: 0 4px 4px rgba(0,0,0,.1);
            border-radius: 0 0 1rem 1rem;
            z-index: var(--z-fixed);
        }
    }
    &__item{
        margin-bottom: var(--mb-2);
    }
    &__link, &__logo, &__toggle{
        color: var(--text-color);
        font-weight: var(--font-medium);
    }
    &__logo{
        &:hover{
            color: var(--first-color);
        }
    }
    &__link{
        -webkit-transition: .3s;
        transition: .3s;

        &:hover{
            color: var(--first-color);
        }
    }
    &__toggle{
        font-size: 1.3rem;
        cursor: pointer;
    }
}
*/
img.ym-advanced-informer {
  display: none;
}

h2.ym {
  display: none;
}

.services__margine {
  /* margin-bottom: 2rem; */
  padding-bottom: 4rem;
}

section#news {
  /* padding-top: 8rem; */
  padding-top: 0rem;
}

img.block__img__mobile {
  display: none;
}

/* Show menu */
.show-menu {
  top: var(--header-height);
}

/* Active menu */
.active-link {
  color: var(--first-color);
}

/* Change background header */
.scroll-header {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner_next__container__mobile.block-grid {
  display: none;
}

.info-text p {
  padding-top: 30px;
  font-size: 10px;
}

/* Scroll top */
.scrolltop {
  position: fixed;
  right: 1.3rem;
  bottom: -20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.3rem;
  background: #458FF6;
  border-radius: 0.4rem;
  z-index: var(--z-tooltip);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  visibility: hidden;
}
.scrolltop:hover {
  background-color: var(--first-color-alt);
}
.scrolltop__icon {
  font-size: 1.8rem;
  color: var(--body-color);
}

.show-scroll {
  visibility: visible;
  bottom: 1.5rem;
}

/*========== HOME ==========*/
.home {
  background-image: url(../img/bg/bg1.png);
  background-size: no-repeat;
  background-position: center;
  background-size: cover;
}
.home__container {
  height: calc(100vh - var(--header-height));
  -ms-flex-line-pack: center;
  align-content: center;
  background-size: auto;
  text-align: center;
}
.home__title {
  font-size: var(--biggest-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-1);
  text-align: center;
  line-height: 1.2;
  font-weight: 900;
  font-style: normal;
}
.home__subtitle {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: 6rem;
  text-align: center;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: #1F1534;
}
.home__img {
  width: 300px;
  -ms-grid-column-align: center;
      justify-self: center;
}

/*========== BUTTONS ==========*/
.btn {
  margin-top: auto;
}

.main-block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-block div {
  width: 350px;
  height: 354px;
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  background-image: url(../img/services/1.png);
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  border-radius: 1.25rem;
  /* border: 20px; */
  padding-top: 28px;
  padding-right: 28px;
  padding-bottom: 40px;
  padding-left: 28px;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-block_1 div {
  width: 350px;
  height: 354px;
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  background-image: url(../img/services/2.png);
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  border-radius: 1.25rem;
  /* border: 20px; */
  padding-top: 28px;
  padding-right: 28px;
  padding-bottom: 40px;
  padding-left: 28px;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-block_2 div {
  width: 350px;
  height: 354px;
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  background-image: url(../img/services/3.png);
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  border-radius: 1.25rem;
  /* border: 20px; */
  padding-top: 28px;
  padding-right: 28px;
  padding-bottom: 40px;
  padding-left: 28px;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-block_3 div {
  width: 350px;
  height: 354px;
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  background-image: url(../img/services/4.png);
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  border-radius: 1.25rem;
  /* border: 20px; */
  padding-top: 28px;
  padding-right: 28px;
  padding-bottom: 40px;
  padding-left: 28px;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-block_4 div {
  width: 350px;
  height: 354px;
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  background-image: url(../img/services/5.png);
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  border-radius: 1.25rem;
  /* border: 20px; */
  padding-top: 28px;
  padding-right: 28px;
  padding-bottom: 40px;
  padding-left: 28px;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-block_5 div {
  width: 350px;
  height: 354px;
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  background-image: url(../img/services/6.png);
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  border-radius: 1.25rem;
  /* border: 20px; */
  padding-top: 28px;
  padding-right: 28px;
  padding-bottom: 40px;
  padding-left: 28px;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-block_6 div {
  width: 350px;
  height: 354px;
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  background-image: url(../img/services/7.png);
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  border-radius: 1.25rem;
  /* border: 20px; */
  padding-top: 28px;
  padding-right: 28px;
  padding-bottom: 40px;
  padding-left: 28px;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-block_7 div {
  width: 350px;
  height: 354px;
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  background-image: url(../img/services/8.png);
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  border-radius: 1.25rem;
  /* border: 20px; */
  padding-top: 28px;
  padding-right: 28px;
  padding-bottom: 40px;
  padding-left: 28px;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-block_8 div {
  width: 350px;
  height: 354px;
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  background-image: url(../img/services/9.png);
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  border-radius: 1.25rem;
  /* border: 20px; */
  padding-top: 28px;
  padding-right: 28px;
  padding-bottom: 40px;
  padding-left: 16px;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

button.form__section:hover {
  background-color: #fafbff;
  /* border: none; */
  border: 2px solid #3171de;
}

button.form__section {
  /* box-sizing: border-box; */
  /* display: flex; */
  /* flex-direction: row; */
  /* justify-content: center; */
  /* align-items: center; */
  width: 135px;
  border-color: #e7e7e7;
  height: 50px;
  border-style: solid;
  /* padding: 8px; */
  background-color: white;
  /* gap: 8px; */
  /* position: absolute; */
  /* border: #a44444; */
  /* left: 2.3%; */
  /* right: 85.75%; */
  /* top: 70.4%; */
  /* bottom: 20.11%; */
  border-radius: 20px;
}

.block-news div {
  width: 350px;
  /*height: 542px;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 1.25rem;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
          box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
}

.card__image {
  width: 100%;
  height: 217px;
  background-image: url("../img/tarif/1.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-background-size: cover; /* Safari 3.0-6.0 */
  background-color: #e0e0e0; /* Temporary background for testing */
}

.card__image_1 {
  width: 100%;
  height: 217px;
  background-image: url("../img/tarif/2.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-background-size: cover; /* Safari 3.0-6.0 */
  background-color: #e0e0e0; /* Temporary background for testing */
}

.card__image_2 {
  width: 100%;
  height: 217px;
  background-image: url("../img/tarif/3.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-background-size: cover; /* Safari 3.0-6.0 */
  background-color: #e0e0e0; /* Temporary background for testing */
}

.card__text {
  padding: 20px;
}

h3.card__title {
  font-family: "Roboto";
  font-style: normal;
  padding-bottom: 15px;
  font-weight: 500;
  font-size: 21px;
  line-height: 30px;
  text-decoration-line: underline;
  color: #000000;
  /* mix-blend-mode: normal; */
}

p.card__description {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #7D7987;
  mix-blend-mode: normal;
}

button.card__section {
  /* position: absolute; */
  /* left: 2.92%; */
  /* right: 73.54%; */
  /* top: 88.38%; */
  /* bottom: 6.09%; */
  /* font-family: 'Roboto'; */
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  line-height: 30px;
  color: #4089ED;
  mix-blend-mode: normal;
  background-color: #ffffff;
  border: none;
}

.email {
  background: #FAFBFF;
}

h4.title_contact {
  /*position: absolute;*/
  /* width: 717.88px; */
  /* height: 140px; */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  /* color: #000000; */
  padding-top: 2.5rem;
}

.button {
  /*height: 56px;*/
  /*width: 263px;*/
  display: inline-block;
  background: var(--first-color);
  color: #FFF;
  padding: 0.75rem 1rem;
  border-radius: 1.8rem;
  -webkit-transition: 0.3s;
  /* position: absolute; */
  /* left: 42.43%; */
  /* right: 39.31%; */
  /* top: 83.71%; */
  bottom: 0.29%;
  -webkit-box-shadow: 0px 4px 25px #3171DE;
          box-shadow: 0px 4px 25px #3171DE;
  border-radius: 55px;
  /* transition: 0.3s; */
  font-size: 18px;
}
.button:hover {
  background: #458FF6;
}

/*========== ABOUT ==========*/
.about__data {
  text-align: center;
  padding: 20px;
}
.about__data h2 {
  font-size: 2.25rem;
  color: white;
}
.about__description {
  text-align: left;
  margin-bottom: var(--mb-3);
}
.about__description li {
  list-style: none;
  /* list-style-position: revert; */
  /* list-style-type: inherit; */
}
.about__description li p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  color: #EDE8FB;
  font-size: 18px;
}
.about__img {
  width: auto;
  border-radius: 0.5rem;
  -ms-grid-column-align: center;
      justify-self: center;
}

/*========== block ==========*/
.block-grid {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

button.form__submit {
  background-color: #3171DE;
  border-radius: 55px;
  width: 200px;
  border: none;
  /* align-items: unset; */
  height: 56px;
  color: white;
}
button.form__submit p {
  color: white;
}

button.form__submit:hover {
  background-color: #458FF6;
}

.block__container.block-grid {
  -webkit-box-shadow: var(--main-shadow);
  box-shadow: var(--main-shadow);
  border-radius: 20px;
  margin-bottom: 60px;
}

.block__text hr {
  margin-left: 0;
  border-bottom: solid 1px #3171DE;
}

.block__text {
  text-align: left;
  padding-bottom: 25px;
}

.block__data {
  padding-left: 80px;
}
.block__data h2 {
  font-size: 2.25rem;
  color: black;
  text-align: left;
  margin-bottom: unset;
}
.block__data p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  color: #7D7987;
}
.block__description {
  text-align: left;
  margin-bottom: var(--mb-3);
  max-width: 440px;
}
.block__description li {
  list-style: none;
  /* list-style-position: revert; */
  /* list-style-type: inherit; */
}
.block__description li p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  color: #7D7987;
}
.block__img {
  width: auto;
  border-radius: 0.5rem;
  -ms-grid-column-align: center;
      justify-self: center;
}

/*========== SERVICES 

.services__content_8:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}



==========*/
/*========== SERVICES 

.services__content_8:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}



==========*/
.services__container {
  row-gap: 4.5rem;
  -ms-grid-columns: minmax(330px, 1fr) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  /*padding-bottom: 80px;*/
}
@media screen and (max-width: 768px) {
  .services__container {
    margin-top: var(--mb-6);
    -ms-grid-columns: minmax(230px, 1fr) [auto-fit];
  }
}
.services__content {
  text-align: left;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
          box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  background-color: white;
  border-radius: 1.25rem;
  padding: 28px;
  height: 354px;
  width: 350px;
  background-image: url(../img/services/1.png);
  background-size: no-repeat;
  background-position: center;
  background-size: cover;
}
.services__content_1 {
  text-align: left;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
          box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  background-color: white;
  border-radius: 1.25rem;
  padding: 28px;
  height: 354px;
  width: 350px;
  background-image: url(../img/services/2.png);
  background-size: no-repeat;
  background-position: center;
  background-size: cover;
}
.services__content_2 {
  text-align: left;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
          box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  background-color: white;
  border-radius: 1.25rem;
  padding: 28px;
  height: 354px;
  width: 350px;
  background-image: url(../img/services/3.png);
  background-size: no-repeat;
  background-position: center;
  background-size: cover;
}
.services__content_3 {
  text-align: left;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
          box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  background-color: white;
  border-radius: 1.25rem;
  padding: 28px;
  height: 354px;
  width: 350px;
  background-image: url(../img/services/4.png);
  background-size: no-repeat;
  background-position: center;
  background-size: cover;
}
.services__content_4 {
  text-align: left;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
          box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  background-color: white;
  border-radius: 1.25rem;
  padding: 28px;
  height: 354px;
  width: 350px;
  background-image: url(../img/services/5.png);
  background-size: no-repeat;
  background-position: center;
  background-size: cover;
}
.services__content_5 {
  text-align: left;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
          box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  background-color: white;
  border-radius: 1.25rem;
  padding: 28px;
  height: 354px;
  width: 350px;
  background-image: url(../img/services/6.png);
  background-size: no-repeat;
  background-position: center;
  background-size: cover;
}
.services__content_6 {
  text-align: left;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
          box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  background-color: white;
  border-radius: 1.25rem;
  padding: 28px;
  height: 354px;
  width: 350px;
  background-image: url(../img/services/7.png);
  background-size: no-repeat;
  background-position: center;
  background-size: cover;
}
.services__content_7 {
  text-align: left;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
          box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  background-color: white;
  border-radius: 1.25rem;
  padding: 28px;
  height: 354px;
  width: 350px;
  background-image: url(../img/services/8.png);
  background-size: no-repeat;
  background-position: center;
  background-size: cover;
}
.services__content_8 {
  text-align: left;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
          box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  background-color: white;
  border-radius: 1.25rem;
  padding: 20px;
  height: 354px;
  width: 350px;
  background-image: url(../img/services/9.png);
  background-size: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.services__img {
  width: 64px;
  height: 64px;
  fill: var(--first-color);
  margin-bottom: var(--mb-2);
}
.services__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-3);
}
.services__description {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  mix-blend-mode: normal;
}

/*========== TARIFF ==========*/
.tariff {
  /*.tariff__border h3{
      padding-top: 7px;
      font-size: 10px;
      color: black;
      width: 128px;
      height: 30px;
      flex-shrink: 0;
      border-radius: 40px;
      border: 1px solid #E8C2FF;


  }
  */
}
.tariff__container {
  row-gap: 2.5rem;
  -ms-grid-columns: minmax(330px, 1fr) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}
@media screen and (max-width: 1101px) {
  .tariff__container {
    -ms-grid-columns: max-content;
    grid-template-columns: -webkit-max-content;
    grid-template-columns: max-content;
    margin-left: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* align-items: center; */
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: auto;
    /* grid-auto-flow: column; */
    /* grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); */
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.tariff .tariff__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #00c1c2;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 4rem;
}
.tariff .tariff__data ul li {
  padding-top: 1rem;
}
.tariff__content {
  text-align: center;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
          box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  background-color: white;
  border-radius: 1.8rem;
  padding: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.tariff__img {
  width: 64px;
  height: 64px;
  fill: var(--first-color);
  margin-bottom: var(--mb-2);
}
.tariff__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-3);
}
.tariff__description {
  padding: 0 1.5rem;
}

/*========== BANNER_NEXT ==========*/
.banner_next__container.block-grid {
  border-radius: 20px;
  /*margin-bottom: 60px;*/
}

.banner_next__text_cont hr {
  border: solid 2px white;
}

h2.section-title.banner_next__initial {
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.banner__data h2 {
  font-size: 2.25rem;
  color: white;
}

.banner_next__text_cont {
  padding-bottom: 60px;
  /* min-width: 679px; */
}

/*========== BANNER ==========*/



/* Стили для контейнера баннеров */
.banners-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
}

/* Стили для каждого баннера */
.banner-item {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Стили для контента баннера */
.banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .banners-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .banner-item {
        min-width: 100%;
        padding: 30px 20px;
    }
}

/* Дополнительные стили для улучшения внешнего вида */
.home__title {
    margin-bottom: 15px;
    line-height: 1.3;
}

.home__subtitle {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.5;
}

.banner-content .button {
    margin-top: auto;
    align-self: center;
}


.banner__text_cont hr {
  border: solid 2px white;
  margin-left: 0;
}

.banner__text_cont {
  padding-bottom: 20px;
  /* min-width: 679px;*/
}

.banner__container {
  row-gap: 2.5rem;
  -ms-grid-columns: minmax(330px, 1fr) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}
@media screen and (max-width: 1101px) {
  .banner__container {
    -ms-grid-columns: max-content;
    grid-template-columns: -webkit-max-content;
    grid-template-columns: max-content;
    margin-left: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* align-items: center; */
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: auto;
    /* grid-auto-flow: column; */
    /* grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); */
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.banner .banner__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #00c1c2;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 4rem;
}
.banner .banner__data ul li {
  padding-top: 1rem;
}
.banner__content {
  text-align: center;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
          box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  background-color: white;
  border-radius: 1.8rem;
  padding: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.banner__img {
  width: 64px;
  height: 64px;
  fill: var(--first-color);
  margin-bottom: var(--mb-2);
}
.banner__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-3);
}
.banner__description {
  padding: 0 1.5rem;
}


/* Стили для контейнера маленьких баннеров */
.small-banners-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 30px;
}

/* Стили для маленьких баннеров */
.small-banner-item {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.small-banner-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Стили для контента маленьких баннеров */
.small-banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.small-banner-title {
    font-size: 1.3rem;
    color: var(--title-color);
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.small-banner-text {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Стили для кнопок маленьких баннеров */
.small-banner-button {
    display: inline-block;
    background: var(--first-color);
    color: #FFF;
    padding: 0.6rem 1.2rem;
    border-radius: 1.8rem;
    transition: 0.3s;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0px 3px 15px rgba(49, 113, 222, 0.3);
    text-align: center;
    margin-top: auto;
    align-self: center;
}

.small-banner-button:hover {
    background: #458FF6;
    transform: translateY(-2px);
    box-shadow: 0px 5px 20px rgba(49, 113, 222, 0.4);
}


/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .small-banners-container {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
        padding: 0 10px;
        width: 100%;
    }
    
    .small-banner-item {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        padding: 20px 15px;
        margin: 0;
    }
    
    .small-banner-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .small-banner-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .small-banner-button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        min-width: 140px;
    }
    
    .home__container.bd-container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .small-banners-container {
        gap: 15px;
        margin-top: 15px;
        padding: 0 5px;
    }
    
    .small-banner-item {
        padding: 15px 10px;
    }
    
    .small-banner-title {
        font-size: 1rem;
    }
    
    .small-banner-text {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .small-banner-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-width: 130px;
    }
}

/* Гарантия правильного отображения в контейнере */
.bd-container {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

.home__container.bd-container {
    padding-left: 1rem;
    padding-right: 1rem;
}











/*========== MENU ==========*/
.menu__container {
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.menu__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--container-color);
  border-radius: 1.8rem;
  -webkit-box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
          box-shadow: 6.006px 18.017px 66.73px -8.675px rgba(22, 52, 80, 0.1);
  padding: 0.75rem;
}
.menu__line {
  /* height: 1px; */
  /* background-color: #E9F5FF; */
  margin-bottom: 20px;
  border-top: solid #E9F5FF;
}
.menu__img {
  width: 100px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-bottom: var(--mb-2);
}
.menu__name, .menu__preci {
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}
.menu__name {
  font-size: var(--normal-font-size);
}
.menu__detail, .menu__preci {
  font-size: var(--small-font-size);
}
.menu__detail {
  margin-bottom: var(--mb-1);
}
.menu__button {
  background-color: white;
  color: black;
  -webkit-box-shadow: var(--button-shadow);
          box-shadow: var(--button-shadow);
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  border-radius: 1.8rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* 
   &:hover{
       color: white;
       background-color: var(--first-color);
   } 

   */
}
.menu__button:hover {
  -webkit-box-shadow: var(--button-shadow-alt);
          box-shadow: var(--button-shadow-alt);
  background-color: white;
}

/*========== APP ==========*/
.app__data {
  text-align: center;
}
.app__description {
  margin-bottom: var(--mb-5);
}
.app__stores {
  margin-bottom: var(--mb-4);
}
.app__store {
  width: 120px;
  margin: 0 var(--mb-1);
}
.app__img {
  width: auto;
  -ms-grid-column-align: center;
      justify-self: center;
}

/*=============== CATEGORY ===============*/
.category__container {
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.category__content {
  text-align: center;
}
.category__content:hover .category__img {
  -webkit-transform: translateY(-0.5rem);
  transform: translateY(-0.5rem);
}
.category__img {
  width: 120px;
  margin-bottom: var(--mb-0-75);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.category__title {
  font-size: var(--h3-font-size);
  color: var(--first-color);
  margin-bottom: var(--mb-1);
}

/*=============== PEOPLE ===============*/
.people__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr [2];
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 60px;
  grid-row-gap: 40px;
}
.people__content {
  text-align: left;
}
.people__content:hover .people__img {
  -webkit-transform: translateY(-0.5rem);
  transform: translateY(-0.5rem);
}
.people__img {
  width: auto;
  margin-bottom: var(--mb-0-75);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.people__title {
  font-size: var(--h3-font-size);
  color: #000000;
  margin-bottom: var(--mb-1);
}

.frame_content {
  display: inline-block;
}

.people__content {
  padding: 40px;
  background-color: white;
  -webkit-box-shadow: var(--main-shadow);
          box-shadow: var(--main-shadow);
  border-radius: 1.8rem;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/3/2;
}

.people__content2 {
  padding: 20px;
  background-color: white;
  -webkit-box-shadow: var(--main-shadow);
          box-shadow: var(--main-shadow);
  border-radius: 1.8rem;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/2/3;
}

.people__content3 {
  padding: 20px;
  background-color: white;
  -webkit-box-shadow: var(--main-shadow);
          box-shadow: var(--main-shadow);
  border-radius: 1.8rem;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 2/2/3/3;
}

/*========== EMAIL ==========*/
/* Стили самой формы */
.contact__title.xs__screen hr {
  margin: initial;
}

.email {
  /*  Попробовать сделать div c фоном 
      background-image: url(../img/bg/2.png);
      background-position: center;
      background-size: cover;
      min-height: 600px;*/
}
.email__container {
  /* max-width: -webkit-max-content; */
  max-width: -moz-max-content;
  /* max-width: max-content; */
  /* max-height: 520px; */
  margin-left: auto;
  margin-right: auto;
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: unset;
  -ms-flex-align: unset;
  align-items: unset;
  -webkit-box-shadow: var(--main-shadow);
          box-shadow: var(--main-shadow);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
  padding: 40px;
  border-radius: 1.8rem;
  /* box-shadow: 4px 4px 8px 0 rgba(34, 60, 80, 0.2); */
}

.content img {
  position: absolute;
}

.content h4 {
  font-size: 2rem;
}

/* Стили левой колонки */
.left-side {
  width: 55%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* Стили правой колонки */
.right-side {
  width: 45%;
  /* margin-left: 75px; */
}

/* Элементы левой колонки: адрес, телефон, email */
.details {
  margin-bottom: 15px;
  text-align: center;
}

/* Общие стили для иконок */
.details i {
  font-size: 25px; /* задаем размер */
  color: #3e2093; /* задаем цвет */
  margin-bottom: 10px;
}

/* Стили для заголовков левой колонки */
.topic {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 7px; /* отступ снизу 7px */
}

/* Стили для текста левой колонки */
.text-one,
.text-two {
  font-size: 14px;
  color: #afafb6;
}

.input-box input, .input-box textarea {
  color: var(--Black-2, #ABAFB1);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.checkbox {
  height: 15px;
  width: 100%;
  margin-bottom: 20px;
}

/* Стили для input и textarea (поле сообщение) */
.input-box input,
.input-box textarea {
  height: 100%; /* растягиваем на всю высоту контейнера 50px */
  width: 100%; /* растягиваем на всю ширину */
  border: none; /* убираем внешние края */
  border-radius: 5px; /* скругляем края */
  background: #f0f1f8; /* задаем цвет фона */
  padding: 10px; /* отступ справа и слева 20px */
  margin-bottom: 10px;
  margin-top: 10px;
}

/* Отдельно стилизуем поле сообщение */
.input-box textarea {
  resize: none; /* чтобы нельзя было менять высоту */
  padding: 20px;
  font-family: "Roboto", sans-serif;
}

/* Это контейнер для поля сообщение */
.message-box {
  min-height: 110px; /* минимальная высота 110px */
}

/* Меняем стили при ширине экрана меньше 800px */
@media (max-width: 800px) {
  /* Теперь форма (правая колонка) будет сверху, а элементы (левая колонка) снизу */
  .content {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; /* располагаем в колонку сверху */
  }
  /* Внутри левой колонки внутренние элементы располагаем в ряд */
  .left-side {
    margin-top: 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row; /* располагаем элементы (адрес, телефон, email) в ряд */
    width: 100%; /* левая колонка на всю ширину */
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; /* перенос элементов, если не хватит места */
  }
  .details {
    margin-right: 20px;
  }
  .details:last-child {
    margin-right: 0;
  }
  /* Убираем разделительную линию */
  .left-side::before {
    display: none;
  }
  /* Правая колонка теперь на всю ширину и не имеет отступа слева */
  .right-side {
    margin-left: 0;
  }
}
@media (max-width: 800px) and (max-width: 576px) {
  .block__data h2 {
    font-size: 2.25rem;
    color: black;
    /* margin-bottom: 5px; */
    padding-bottom: 15px;
    text-align: left;
    margin-bottom: unset;
  }
  .block__text hr {
    display: none;
  }
  .block__text p {
    display: none;
  }
  .contact__title.xm__screen h3 {
    /* font-size: 1.5rem; */
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 1.5rem;
    color: black;
  }
  .section-subtitle1 {
    font-size: 1.5rem;
    color: var(--first-color);
  }
  h1.home__title {
    font-size: 1.5rem;
    margin-bottom: var(--mb-6);
  }
  h2.home__subtitle {
    display: none;
  }
  .section-title {
    font-size: 2.25rem;
    color: var(--title-color);
    margin-bottom: var(--mb-3);
  }
  .services__title {
    font-size: 1.5rem;
    color: var(--title-color);
    margin-bottom: var(--mb-3);
    font-weight: 900;
    font-style: normal;
  }
  .banner__text_cont hr {
    border: solid 2px white;
    margin-left: 0;
    margin: auto;
  }
}
/*========== BANNER ==========*/
.banner_color {
  background-color: #3171DE;
}

/*========== CONTACT ==========*/
.contact__container {
  text-align: center;
  -webkit-box-shadow: var(--main-shadow);
          box-shadow: var(--main-shadow);
  /*background-color: #cff7f8;*/
  border-radius: 1.8rem;
}
.contact__description {
  margin-bottom: var(--mb-3);
}
.contact__data {
  padding: 40px;
}

/*========== FOOTER ==========
.footer{
    &__container{
        -ms-grid-columns: (minmax(220px, 1fr))[auto-fit];
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        row-gap: 2rem;
    }
    &__logo{
        font-size: var(--h3-font-size);
        color: var(--first-color);
        font-weight: var(--font-semi-bold);
    }
    &__description{
        display: block;
        font-size: var(--small-font-size);
        margin: .25rem 0 var(--mb-3);
    }
    &__social{
        font-size: 1.5rem;
        color: var(--title-color);
        margin-right: var(--mb-2);
    }
    &__title{
        font-size: var(--h2-font-size);
        color: var(--title-color);
        margin-bottom: var(--mb-2);
    }
    &__link{
        display: inline-block;
        color: var(--text-color);
        margin-bottom: var(--mb-1);

        &:hover{
            color: var(--first-color);
        }
    }
    &__copy{
        text-align: center;
        font-size: var(--small-font-size);
        color: var(--text-color-light);
        margin-top: 3.5rem;
    }
}


*/
/*========== MEDIA QUERIES ==========*/
@media screen and (min-width: 576px) {
  .about__container, .block__container,
  .app__container {
    -ms-grid-columns: 1fr [2];
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .banner_next__container {
    -ms-grid-columns: 1fr [2];
    grid-template-columns: repeat(2, 1fr);
  }
  .about__data, .about__initial, .block__container,
  .app__data, .app__initial,
  .contact__container, .banner__container, .contact__initial {
    text-align: initial;
  }
  .about__img, .app__img, .block__container {
    width: auto;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .about__img1 {
    width: auto;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 1;
    order: 1;
  }
  .contact__container {
    -ms-grid-columns: 1.75fr 1fr;
    grid-template-columns: 1.75fr 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .contact__button {
    -ms-grid-column-align: center;
        justify-self: center;
  }
  .banner__container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .banner__button {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}
@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .change-theme {
    position: initial;
    margin-left: var(--mb-2);
  }
  .home__container {
    height: 100vh;
    -ms-grid-column-align: center;
    justify-items: center;
  }
  .services__container, .menu__container, .cards-container, .people__container, .tariff__container {
    margin-top: var(--mb-6);
  }
  .menu__container {
    -ms-grid-columns: 210px [3];
    grid-template-columns: repeat(3, 210px);
    -webkit-column-gap: 4rem;
    -moz-column-gap: 4rem;
    column-gap: 4rem;
  }
  .menu__content {
    padding: 1.5rem;
  }
  .menu__img {
    width: 130px;
  }
  .app__store {
    margin: 0 var(--mb-1) 0 0;
  }
}
@media screen and (max-width: 568px) {
  /*
     .services__container {
      grid: unset;
  }
  */
  /*========== PEOPLE ==========*/
  .people__container {
    display: inline;
  }
  .people__content {
    text-align: center;
  }
  .people__content:hover .people__img {
    -webkit-transform: translateY(-0.5rem);
    transform: translateY(-0.5rem);
  }
  .people__img {
    width: auto;
    margin-bottom: var(--mb-0-75);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    padding-top: 20px;
  }
  .people__img2 {
    padding-top: 20px;
  }
  .people__img3 {
    padding-top: 20px;
  }
  .people__title {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: var(--mb-1);
  }
  .banner_parent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .banner_parent .banner_div3 {
    padding-bottom: 40px;
  }
  .banner_parent .banner_div4 {
    padding-bottom: 40px;
  }
  .people__content {
    margin-bottom: 20px;
  }
  .people__content2 {
    margin-bottom: 20px;
  }
  .people__content3 {
    margin-bottom: 20px;
  }
  /*========== HOME ==========*/
  /*========== Category ==========*/
  .category__container {
    -ms-grid-columns: 1fr [2];
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem 2rem;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  /*========== Banner ==========*/
  .banner_parent {
    text-align: center;
  }
  .banner_div2 {
    padding-left: 0px;
  }
}
/*========== Возможности ==========*/
.parent {
  display: -ms-grid;
  display: grid;
  /*grid-template-columns: repeat(5, 1fr);*/
  -ms-grid-rows: 1fr 40px 1fr;
  grid-template-rows: repeat(2, 1fr);
  padding-top: 20px;
  grid-column-gap: 60px;
  grid-row-gap: 40px;
}
@media screen and (max-width: 960px) {
  .parent {
    display: inline;
  }
}

.div1 {
  min-height: 400px;
  background-color: white;
  -webkit-box-shadow: var(--main-shadow);
  box-shadow: var(--main-shadow);
  border-radius: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.div_par {
  display: inline-block;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 1/1/3/3;
}
@media screen and (max-width: 960px) {
  .div_par {
    display: inline;
  }
}

.div_child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.div2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-area: 1/3/2/5;
  background-color: white;
  -webkit-box-shadow: var(--main-shadow);
  box-shadow: var(--main-shadow);
  border-radius: 1.8rem;
  /*
  @media screen and (max-width: 960px){
   margin-top: 40px;
   padding-bottom: 20px;

   721
  }*/
}
@media screen and (max-width: 960px) {
  .div2 {
    margin-top: 40px;
    padding-bottom: 20px;
  }
}

.div3 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-area: 2/3/3/5;
  background-color: white;
  -webkit-box-shadow: var(--main-shadow);
  box-shadow: var(--main-shadow);
  border-radius: 1.8rem;
  /*
  @media screen and (max-width: 960px){
   margin-top: 40px;
   padding-bottom: 20px;
  }*/
}
@media screen and (max-width: 960px) {
  .div3 {
    margin-top: 40px;
    padding-bottom: 20px;
  }
}

.div4 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
  padding-top: 100px;
  padding-left: 20px;
}

.div5 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/2/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.div6 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 1/3/2/4;
  padding-top: 20px;
  padding-left: 20px;
}

.div7 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-area: 1/4/2/5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.div8 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 2/3/3/4;
  padding-top: 20px;
  padding-left: 20px;
}

.div9 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-area: 2/4/3/5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*========== SLIDER ==========*/
.wrapper {
  /* max-width: 1130px;*/
  background: #fff;
  background-image: url(../img/email/1.1.png);
  padding: 50px 75px;
  border-radius: 1.8rem;
  -webkit-box-shadow: var(--main-shadow);
  box-shadow: var(--main-shadow);
  /* border: 2px solid #fff; */
  /* margin: 10px; */
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-position: center;
  background-size: cover;
  /*height: 625px;*/
}

.wrapper___container {
  display: -webkit-box;
  display: -ms-flexbox;
  /* display: flex; */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.wrapper___container .container__col {
  width: 80%;
  /**  padding: 0px 20px; **/
}

.contact__title {
  padding: 10px 0px;
}

.contact__title h3 {
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.5rem;
  color: black;
}

.contact__title p {
  font-size: 16px;
  font-weight: 400;
}

.xm__screen {
  display: none;
}

.xs__screen {
  display: block;
}

.contact__form {
  padding: 10px 0px;
  display: block;
}

.contact__form__item {
  margin: 10px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact__form__item input,
.contact__form__item textarea {
  width: 100%;
  font-family: "Roboto";
  font-size: 1rem;
  min-height: 42px;
  font-weight: 300;
  /* border-radius: 4px; */
  color: #7D7987;
  margin-right: 40px;
  /* border-radius: 8px; */
  border-bottom: 1px solid #7D7987;
  /* padding: 6px 10px; */
  /* border: none; */
  border-top: none;
  border-right: none;
  border-left: none;
  /* border-radius: 4px; */
  background-color: rgba(255, 255, 255, 0.5);
}

.contact__form__item input:focus,
.contact__form__item textarea:focus {
  outline: none;
  border-bottom: 2px solid #ffd154;
}

.contact__form__item label {
  display: inline;
  padding: 2px 0px;
  font-size: 15px;
  font-weight: 500;
}

.contact__form__submit {
  background-color: #FFD154;
  border-radius: 55px;
  width: 200px;
  margin-top: 35px;
  border: none;
  /* align-items: unset; */
  height: 56px;
  cursor: pointer;
}

button.contact__form__submit p {
  color: white;
}

.contact__form__submit:hover {
  background-color: #fff054;
}

lottie-player {
  width: 100%;
  height: 300px;
}

.contact__info___list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  padding-top: 2rem;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contact__info__list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 45px;
  margin: 20px 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  /* justify-content: center; */
  align-items: center;
}

.contact__info__list__items i {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 24px;
  padding: 14px;
  background: #cff7f8;
  border-radius: 100%;
  color: #00c1c2;
}

.contact__info__list__items p {
  font-size: 1rem;
}

.contact__info__list__items p a {
  text-decoration: none;
  color: #7D7987;
}

.contact__info__list__items p a:hover {
  color: #007bff;
}

.info__list p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  /* line-height: 15px; */
  /* letter-spacing: 0.02em; */
  color: #000000;
}

p.text {
  /* width: 72px; */
  /* height: 30px; */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  /* line-height: 15px; */
  /* letter-spacing: 0.02em; */
  color: #7D7987;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

p.text-adress {
  max-width: 450px;
  /* height: 30px; */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  /* line-height: 15px; */
  /* letter-spacing: 0.02em; */
  color: #7D7987;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.info__list {
  display: contents;
}

/*========== PRICE CARD ==========*/
.card-image {
  width: 100%;
  height: 45%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-content {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.card-title {
  font-family: "Roboto";
  font-style: normal;
  max-width: 310px;
  padding-bottom: 15px;
  font-weight: 500;
  font-size: 21px;
  line-height: 30px;
  text-decoration-line: underline;
  color: #000000;
  /* mix-blend-mode: normal; */
}

.card-description {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 10px 0;
}

.card-button {
  background-color: #ffffff;
  color: #007bff;
  border: none;
  padding: 10px;
  /* border-radius: 1.8rem; */
  text-align: left;
  margin-top: 15px;
  cursor: pointer;
}

.card-button:hover {
  color: #0056b3;
}

.cards-container {
  row-gap: 4.5rem;
  -ms-grid-columns: minmax(330px, 1fr) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  /* padding-bottom: 80px; */
}
@media screen and (max-width: 768px) {
  .cards-container {
    margin-top: var(--mb-6);
    -ms-grid-columns: minmax(230px, 1fr) [auto-fit];
  }
}

.card {
  -webkit-box-shadow: var(--main-shadow);
          box-shadow: var(--main-shadow);
  border-radius: 1.8rem;
  background-color: #ffffff;
  overflow: hidden;
  width: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card:hover {
  /* border: solid var(--first-color);*/
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.card p {
  font-weight: 300;
  font-size: 16px;
  margin: 0.5rem;
}
@media screen and (min-width: 768px) {
  .card body {
    background-size: 100% 55%;
  }
  .card .intro__text {
    margin-top: 2rem;
    padding: 2rem;
    padding-bottom: 2rem;
    background-position: center 20%;
    background-size: 6rem;
  }
  .card .intro__text h3 {
    font-size: 1.2rem;
  }
  .card .intro__text p {
    font-size: 0.66rem;
  }
  .card .card {
    max-width: 460px;
    margin: 0.5rem auto;
  }
  .card .card .slider__container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
        grid-template-areas: "pv price_container" "ranged ranged";
  }
  .card .card .slider__container .pageview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid-area: pv;
  }
  .card .card .slider__container .pageview .thousand {
    margin-right: 0.2rem;
  }
  .card .card .slider__container .price__container {
    grid-area: price_container;
    padding: 0 0 0 0;
    font-size: 1.5rem;
  }
  .card .card .slider__container h2 {
    font-size: 1.5rem;
    font-weight: 800;
  }
  .card .card .slider__container p {
    color: var(--Grayish);
    font-weight: 600;
    font-size: 0.5rem;
  }
  .card .card .slider__container .range {
    width: 90%;
    grid-area: ranged;
    margin: 1rem auto;
  }
  .card .card .billing__container {
    margin: 1.3rem 0;
    margin-bottom: 1.5rem;
  }
  .card .card .billing__container .monthly {
    margin-left: 4.1rem;
  }
  .card .card .billing__container .-discount {
    display: none;
    margin: 0;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
    color: var(--Light-orange);
    font-weight: 800;
    background: var(--Ligh-light-orange);
  }
  .card .card .billing__container .discount {
    display: inline;
    font-size: 0.5rem;
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
    color: var(--Light-orange);
    font-weight: 800;
    background: var(--Ligh-light-orange);
  }
  .card .card .start__trial {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
  }
  .card .card .start__trial ul {
    text-align: start;
  }
  .card .card .start__trial ul li {
    margin: 0.5rem 0;
    font-size: 0.6rem;
  }
}
@media screen and (min-width: 768px){
  .card .card .slider__container .pageview {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .card .card .slider__container .price__container {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .card .card .slider__container .range {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
}

/** Mobile Device **/
@media only screen and (max-width: 768px) {
  .contact__title.xm__screen hr {
    margin: inherit;
  }
  h4.title_contact {
    /* position: absolute; */
    /* width: 717.88px; */
    /* height: 140px; */
    font-family: "Roboto";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    /* color: #000000; */
    padding-top: 2.5rem;
  }
  .info__list p {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    /* line-height: 15px; */
    /* letter-spacing: 0.02em; */
    color: #000000;
  }
  p.text {
    /* width: 72px; */
    /* height: 30px; */
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    /* line-height: 15px; */
    /* letter-spacing: 0.02em; */
    color: #7D7987;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  p.text-adress {
    /* width: 72px; */
    /* height: 30px; */
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    /* line-height: 15px; */
    /* letter-spacing: 0.02em; */
    color: #7D7987;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .contact__info__list__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    margin: 20px 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    /* justify-content: center; */
    align-items: center;
  }
  .services__margine {
    /* margin-bottom: 2rem; */
    padding-bottom: 5rem;
  }
  .banner_next__container.block-grid {
    display: none;
  }
  .banner_next__container__mobile.block-grid {
    display: -ms-grid;
    display: grid;
  }
  /**
  img.block__img__mobile {
      display: unset;
  }

  img.block__img__other {
      display: none;
  }
   **/
  .services__title {
    font-size: 1.5rem;
    color: var(--title-color);
    margin-bottom: var(--mb-3);
  }
  .contact__form__submit {
    background-color: #FFD154;
    border-radius: 55px;
    width: 150px;
    margin-top: 35px;
    border: none;
    /* align-items: unset; */
    height: 56px;
    cursor: pointer;
  }
  .section-title {
    font-size: 2rem;
    color: var(--title-color);
    margin-bottom: var(--mb-3);
  }
  .block-grid {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: end;
    /* padding-bottom: 1.5rem; */
    padding-top: 1.5rem;
    -ms-flex-align: end;
    row-gap: 1.5rem;
    align-items: end;
    justify-items: center;
  }
  .block__text p {
    display: none;
  }
  .block__text hr {
    display: none;
  }
  .block__data {
    padding-left: 20px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    padding-bottom: 40px;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .about__img {
    width: 50%;
    border-radius: 0.5rem;
    -ms-grid-column-align: center;
    justify-self: center;
  }
  .about__data h2 {
    font-size: 2rem;
    color: white;
  }
  .block__description li p {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    text-align: center;
    float: center;
    line-height: 30px;
    color: #7D7987;
  }
  .banner_next__text_cont h2 {
    font-size: 2rem;
    color: white;
  }
  .banner_next__text_cont {
    padding-bottom: 0px;
  }
  .block__data h2 {
    font-size: 1.5rem;
    color: black;
    /* margin-bottom: 5px; */
    padding-bottom: 15px;
    text-align: center;
    margin-bottom: unset;
  }
  .block__container.block-grid {
    -webkit-box-shadow: var(--main-shadow);
    box-shadow: var(--main-shadow);
    /* border-radius: 20px; */
    /* margin-bottom: 60px; */
    /* padding: 40px; */
    /* padding-top: 40px; */
    padding-right: 0px !important;
    /* padding-bottom: 40px; */
  }
  .wrapper {
    width: auto;
    padding: 20px 12px;
    /* margin: 10px; */
  }
  .wrapper___container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .wrapper___container .container__col {
    width: 100%;
    padding: 0px 10px;
  }
  .xm__screen {
    display: block;
  }
  .xs__screen {
    display: none;
  }
  .start__trial__img {
    width: 50%;
  }
  /**========== BANNER ==========**/
  .banner_parent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .banner_div3 {
    padding-bottom: 40px;
  }
  .banner_div4 {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 1160px) {
  .block__container.block-grid {
    -webkit-box-shadow: var(--main-shadow);
    box-shadow: var(--main-shadow);
    border-radius: 20px;
    margin-bottom: 60px;
    /* padding: 40px; */
    padding-top: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
  }
  .banner_next__container {
    -ms-grid-columns: 1fr [2];
    grid-template-columns: repeat(1, 1fr);
  }
  .block-grid {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    justify-items: center;
  }
}
@media screen and (min-width: 960px) {
  .bd-container {
    margin-left: auto;
    margin-right: auto;
  }
  .home__img {
    width: 600px;
  }
  .about__container, .app__container {
    -webkit-column-gap: 7rem;
    -moz-column-gap: 7rem;
    column-gap: 7rem;
  }
}
/* For tall screens on mobiles y desktop
@media screen and (min-height: 721px) {
    .home__container {
        height: 995px;
    }

}


*/
/** client logos **/
#clients {
  display: block;
  margin-bottom: 15px;
}

#clients .clients-wrap {
  display: block;
  width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 6rem;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 999px) {
  #clients .clients-wrap {
    width: auto;
  }
}

#clients .clients-wrap ul {
  display: block;
  list-style: none;
  position: relative;
}

#clients .clients-wrap ul li {
  display: block;
  float: left;
  position: relative;
  width: 200px;
  height: 55px;
  line-height: 55px;
  text-align: center;
}

#clients .clients-wrap ul li img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  padding-left: 2rem;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
  filter: alpha(opacity=65);
  opacity: 0.65;
}

/**
 * При наведении курсора или нажатии, останавливает слайдер
 * 
#clients .clients-wrap ul li img:hover {
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100); 
  opacity: 1.0;
}
*/
/** clearfix **/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

@media screen and (max-width: 1200px) {
  .home {
    background-image: url(../img/bg/bg2.png);
    background-size: no-repeat;
    background-position: bottom;
    background-size: cover;
  }
  .home__title {
    font-size: 3.5rem;
    color: var(--title-color);
    margin-bottom: var(--mb-1);
    text-align: center;
    line-height: 1.2;
  }
}
@media screen and (max-width: 768px) {
  .home {
    background-image: url(../img/bg/bg2.png);
    background-size: no-repeat;
    background-position: bottom;
    background-size: cover;
  }
  .home__title {
    font-size: 2.5rem;
    color: var(--title-color);
    margin-bottom: var(--mb-1);
    text-align: center;
    line-height: 1.2;
  }
}
@media screen and (max-width: 568px) {
  .home {
    background-image: url(../img/bg/bg3.png);
    background-size: no-repeat;
    background-position: bottom;
    background-size: cover;
  }
  .home__container {
    height: calc(80vh - var(--header-height));
    -ms-flex-line-pack: center;
    align-content: center;
    background-size: auto;
    text-align: center;
  }
  .home__title {
    font-size: 2.5rem;
    color: var(--title-color);
    margin-bottom: var(--mb-1);
    text-align: center;
    line-height: 1.2;
  }
  img.block__img__mobile {
    display: unset;
  }
  img.block__img__other {
    display: none;
  }
}
@media screen and (max-width: 389px) {
  .home__container {
    height: calc(100vh - var(--header-height));
    -ms-flex-line-pack: center;
    align-content: center;
    background-size: auto;
    text-align: center;
  }
}
h1.error {
  font-size: 15rem;
}
@media screen and (max-width: 768px) {
  h1.error {
    font-size: 10rem;
  }
}

.error-block__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 4rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

p.error {
  text-align: center;
}










/*new for slide ATE 22092025 */

/* Стили для слайдера на главной странице */


/* Стили для слайдера на главной странице */
/* Стили для слайдера на главной странице */
.slider-container {
    position: relative;
    width: 100%;
    min-height: 400px; /* Минимальная высота для мобильных */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative; /* Для мобильных - меняем на relative */
}


/*old*/
/*
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    position: relative;
}
*/

.slider-dots {
    position: absolute;
    top: 600px;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.dot {
    width: 22px;
    height: 22px;
    margin: 0 10px;
/*    background: rgba (255, 200, 222, 0.6);*/
    background: lightblue;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.dot.active {
    background: #3171DE;;
}


/* Мобильная версия */
@media (max-width: 768px) {
    .slider-container {
        min-height: 350px; /* Уменьшаем высоту для мобильных */
    }
    
    .slide {
        position: relative; /* Убираем absolute для мобильных */
        opacity: 0;
        height: 0;
        overflow: hidden;
        transition: opacity 0.5s ease-in-out, height 0.3s ease-in-out;
    }
    
    .slide.active {
        opacity: 1;
        height: auto; /* Автоматическая высота */
        visibility: visible;
    }
    
    .slider-dots {
        position: relative; /* Для мобильных - relative */
        bottom: auto;
        margin-top: 10px;
        justify-content: center;
    }
    
    .home__data {
        padding: 20px 0; /* Добавляем отступы */
    }
}

/* Еще более маленькие экраны */
@media (max-width: 480px) {
    .slider-container {
        min-height: 300px;
    }
    
    .slider-dots {
        margin-top: 12px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
}

/* Исправления для мобильной версии баннеров */
@media screen and (max-width: 768px) {
    /* Перестраиваем структуру главных баннеров для мобильных */
    .banners-container {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .banner-item {
        min-width: 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    /* Улучшаем маленькие баннеры */
    .small-banners-container {
        margin-top: 20px;
        gap: 15px;
        margin-bottom: 30px; /* Добавляем отступ снизу */
    }
    
    .small-banner-item {
        min-width: 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    /* Увеличиваем отступы между секциями */
    .home {
        padding-bottom: 20px;
    }
    
    .services.section {
        padding-top: 2rem;
    }
    
    /* Уменьшаем высоту home контейнера для мобильных */
    .home__container {
        height: auto;
        min-height: auto;
        padding: 2rem 0;
    }
    
    /* Улучшаем отображение заголовков в баннерах */
    .home__title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .home__subtitle {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    /* Убеждаемся, что контент сдвигается вниз */
    .home ~ .services {
        position: relative;
        z-index: 2;
    }
}

/* Для очень маленьких экранов */
@media screen and (max-width: 480px) {
    .banners-container {
        gap: 15px;
    }
    
    .small-banners-container {
        margin-top: 15px;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .home__title {
        font-size: 1.5rem;
    }
    
    .home__subtitle {
        font-size: 0.9rem;
    }
    
    .banner-item,
    .small-banner-item {
        padding: 20px 15px;
    }
}

/* Гарантируем, что маленькие баннеры не выходят за пределы */
.small-banners-container {
    position: relative;
    z-index: 1;
}

