@charset "UTF-8";
@import "fonts.css";
@import "button.css";
header .menu {
  margin: 0 0 0 30px;
}
header .burger-checkbox {
  position: absolute;
  visibility: hidden;
}
header .burger {
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: block;
  border: none;
  background: transparent;
  width: 40px;
  height: 26px;
}
header .burger::before,
header .burger::after {
  content: "";
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 0;
  background: #000;
}
header .burger::before {
  top: 0;
  box-shadow: 0 11px 0 #000;
  transition: box-shadow 0.3s 0.15s, top 0.3s 0.15s, transform 0.3s;
}
header .burger::after {
  bottom: 0;
  transition: bottom 0.3s 0.15s, transform 0.3s;
}
header .burger-checkbox:checked + .burger::before {
  top: 11px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.15s, top 0.3s, transform 0.3s 0.15s;
}
header .burger-checkbox:checked + .burger::after {
  bottom: 11px;
  transform: rotate(-45deg);
  transition: bottom 0.3s, transform 0.3s 0.15s;
}
header .menu-list {
  z-index: -9999;
  top: 0;
  position: absolute;
  display: flex;
  height: auto;
  grid-template-columns: 150px 150px 150px 150px;
  gap: 15px;
  padding: 65px 0 20px 0;
  margin: 0;
  background: var(--white);
  list-style-type: none;
  transform: translateY(-100%);
  transition: 0.3s;
  width: fit-content;
  overflow: hidden;
  border-radius: 10px;
}
header .menu-list .menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 5px 0 5px;
  color: var(--black);
  font-family: Nunito, sans-serif;
  font-size: 1em;
  text-align: center;
  text-decoration: none;
  white-space: none;
  width: 120px;
  height: auto;
  overflow: hidden;
}
header .menu-list .menu-item .menu-item:hover {
  background: rgba(221, 195, 195, 0.2);
}

.burger-checkbox:checked ~ .menu-list {
  transform: translateX(0);
}

/*header {
  position: fixed;
  width: 100%;
  z-index: 999;
  display: flex;
  margin: 0;
  background-color: white;
  height: 60px;

  .header-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 8px 210px 8px 210px;

    .header-content__logo-block {
      display: flex;
      flex-direction: row;
      align-items: center;
      height: 100%;
      .header-content__logo-block_logo-img {
       margin: 0 20px 0 0;
      }
    }
    .header-content__header-nav {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      width: 35%;
      height: 30px;
    }
    .header-content__contacts {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: end;
      .header-content__contacts_logo {
        justify-content: end;
        .contacts_logo-img {
          height: 30px;
          margin-left: 20px;
        }
      }
    }
  }

}*/
/*----------------- + ---------------------*/
header {
  position: fixed;
  width: 100%;
  z-index: 999;
  display: flex;
  margin-right: 5px;
  background-color: white;
  height: 60px;
}
header .header-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /*margin: 8px 210px 8px 210px;
  width: 100vw;*/
  max-width: 1440px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin:0 auto;
}
header .header-content .header__l-side {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
header .header-content .header__l-side .header__logo-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  height: 100%;
  width: 100%;
}
header .header-content .header__l-side .header__logo-block .header_logo-img {
  margin: 0 10px 0 0;
}
header .header-content .header__header-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
/*  width: 100%;
  max-width: 500px;
  height: 30px;
  white-space: none;*/
}
header .header-content .header__contacts {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  height: 100%;
}
header .header-content .header__contacts .header__contacts-logo {
  justify-content: end;
}
header .header-content .header__contacts .header__contacts-logo .contacts_logo-img {
  height: 30px;
  margin-left: 20px;
}

@media (max-width: 1400px) {
  .header__header-nav {
    display: none !important;
  }
}
@media (min-width: 1401px) {
  .menu {
    display: none;
  }
}
@media (max-width: 1370px) {
  .header-content {
    margin: 8px 50px 8px 50px !important;
  }
  .header__contacts-logo {
    display: none;
  }
  p {
    font-size: 1em;
  }
}
@media (max-width: 1122px) {
  .header-content {
    margin: 8px 50px 8px 50px !important;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .button--header {
    display: none !important;
  }
}
@media (max-width: 620px) {
  .header__l-side {
    justify-content: space-between;
    width: 100%;
    margin: 8px !important;
  }
  .header__header-nav {
    display: none !important;
  }
  .header__contacts {
    display: none !important;
  }
}
@media (max-width: 425px) {
  header {
    width: 100%;
    height: 80px !important;
  }
  header .header-content {
    margin: 8px 8px 8px 8px !important;
    justify-content: space-between;
  }
  header .header-content .header__logo-block {
    justify-content: space-between;
  }
  header .header-content .header__logo-block .logo-font {
    font-size: 20px;
  }
  header .header-content .menu {
    justify-content: space-between;
    margin: 0;
  }
}
/*Блок callback*/
.banner {
  display: flex;
  width: 100%;
  /*height: 535px;*/
  padding-top: 65px;
  background-color: black;
  background-image: url("/catalog/view/theme/default/image/banner-bg-img.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.banner .banner-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  margin: 90px;
  contain: content;
}
.banner .banner-content .banner-text {
  color: white;
}

@media (max-width: 1000px) {
  .banner-content {
    margin: 50px !important;
  }
  .banner-content h1 {
    font-size: 60px;
    line-height: 60px;
  }

}
@media (max-width: 768px) {
  .banner {
    display: flex;
    width: 100%;
  }
  .banner .full-button {
    width: 100% !important;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
}
@media (max-width: 640px) {
  .banner {
    height: auto;
  }
  .banner .banner-content {
    display: flex;
    width: 100%;
    margin: 0px !important;
    contain: content;
    justify-content: space-between;
    width: 100%;
  }
  .hero .subtitle {
    font-size:16px;
  }
  .banner .banner-content .--banner-button {
    display: flex;
    width: max-content;
    justify-content: center !important;
  }
  .banner .banner-content h1 {
    font-size: 28px;
    line-height: 40px;
  }

}
@media (max-width: 425px) {
  .banner-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
  }
}
/*Блок callback*/
.callback {
  display: flex;
  width: 100%;
  height: fit-content;
}
.callback .callback__content {
  background-repeat: no-repeat;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 40px;
}
.callback .callback__content .callback__title {
  display: flex;
  flex-direction: column;
  text-align: end;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
}
.callback .callback__content .callback__block {
  display: flex;
  width: 650px;
  height: auto;
  background-color: var(--white);
  border-radius: 10px;
}
.callback .callback__content .callback__block .callback__block-content {
  display: flex;
  width: 100%;
  gap: 10px;
  flex-direction: column;
  margin: 40px;
}
.callback .callback__content .callback__block .callback__block-content .callback__input-form {
  flex-direction: column;
  justify-content: start;
  height: 100%;
  align-items: center;
}
.callback .callback__content .callback__block .callback__block-content .callback__check {
  left: 0;
  gap: 10px;
  display: flex;
  justify-content: left;
  flex-direction: row;
  align-items: center;
  height: auto;
}

/*----------------------------*/
.--callback-grey {
  background-color: var(--d-grey);
  background-image: var(--background-image-1);
  background-repeat: no-repeat;
  background-position: 210px center;
}

.--callback-red {
  background-color: var(--red);
  background-image: var(--background-image-2);
  background-repeat: no-repeat;
  background-position: 210px center;
}

/*------------------------------------*/
@media (max-width: 1400px) {
  .callback {
    height: auto;
  }
  .callback__content {
    display: flex;
    flex-direction: column !important;
    margin: 40px 50px 40px 50px;
  }
  .callback__content .callback__title {
    text-align: center !important;
    margin-bottom: 30px;
  }
  .callback__content .callback__content__form {
    width: 100% !important;
  }
  .callback__content .callback__content__form .callback__content__form__data-content__input {
    padding-bottom: 10px !important;
  }
  .callback__content .callback__content__form .callback__content__form__data-content__input .callback__content__form__data-content__input__input-form {
    display: flex;
  }
}
@media (max-width: 768px) {
  .callback__content {
    display: flex;
    width: 100%;
  }
  .callback__content h2 {
    font-size: 24px;
  }
  .callback__content .subtitle-p {
    font-size: 10px;
  }
  .callback__content .callback__block {
    display: flex;
    width: 100% !important;
    height: auto;
    background-color: var(--white);
    border-radius: 10px;
  }
  .callback__content .callback__block .full-button {
    width: auto;
    justify-content: center;
    margin-top: 10px;
  }
  .sm-text {
    font-size: 10px;
    line-height: 10px;
  }
}
@media (max-width: 375px) {
  .callback__content {
    margin: 40px 10px 40px 10px !important;
  }
  .callback__content .full-button {
    width: auto;
    justify-content: center;
    margin-top: 10px;
  }
}
/*Блок callback*/
.info {
  display: flex;
  width: 100%;
  flex-direction: column;
  height: fit-content;
  background-color: var(--l-grey);
}
.info .info__section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*-------------------------------*/
}
.info .info__section .info__top {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.info .info__section .info__top .info_title {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 0 30px 0 30px;
  white-space: nowrap;
}
.info .info__section .info__top .info_l-line {
  width: 100%;
  background-color: #ff0000;
  height: 25px;
  margin-left: 0;
  border-radius: 0 10px 10px 0;
}
.info .info__section .info__top .info_r-line {
  width: 100%;
  background-color: #ff0000;
  height: 25px;
  margin-right: 0;
  border-radius: 10px 0 0 10px;
}
.info .info__section .info__main {
  display: flex;
  justify-content: center;
  margin: 0 250px 50px 250px;
  overflow: hidden;
  height: fit-content;
}
.info .info__section .info__main .info__content {
  width: 1290px;
  height: fit-content;
  border: var(--black) 2px solid;
  border-radius: 10px;
  padding: 50px;
  contain: content;
}
.info .info__section .info__main .info__content .info__block {
  display: flex;
  width: 100%;
  flex-direction: row;
  gap: 50px;
  height: fit-content;
  align-items: center;
  justify-content: space-between;
}
.info .info__section .info__main .info__content .info__block .info_main-img {
  background-image: url("/catalog/view/theme/default/image/info_img-1.png");
  background-position: center;
  background-color: white;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  width: 425px;
  height: 690px;
  contain: content;
  border-radius: 10px;
}
.info .info__section .info__main .info__content .info__block .info__info-block {
  display: flex;
  flex-direction: column;
  width: 60%;
  height: 100%;
  contain: content;
  gap: 50px;
}
.info .info__section .info__main .info__content .info__block .info__info-block .info_img-1 {
  display: flex;
  width: fit-content;
  height: 432px;
  contain: content;
  overflow: hidden;
  border-radius: 10px;
}
.info .info__section .info__main .info__content .info__block .info__info-block .info_img-1 .inner-img {
  width: 100%;
  object-fit: contain;
}

/*@media (max-width: 1657px) {
  .info__main {
    margin: 0 50px 50px 50px !important;
    justify-content: center;
  }
}*/
@media (max-width: 1230px) {
  .info__block {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .info__block .info__info-block {
    width: 100% !important;
    align-items: center;
  }
  .info__block .info__info-block .info_text {
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .info__block .info__info-block .info_img-1 {
    justify-content: center !important;
  }
}
/*Блок callback*/
.prices {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  contain: content;
  flex-direction: row;
  background-image: url("catalog/view/theme/default/image/wh_pattern.png");
  background-color: var(--d-grey);
  height: fit-content;
  justify-content: center;
  align-items: center;
  background-size: cover;
}
.prices .prices__content {
  display: flex;
  width: 100%;
  width: 1290px;
  flex-direction: column;
  contain: content;
  height: auto;
  gap: 50px;
  margin: 50px 210px 50px 210px;
}
.prices .prices__content .prices__price-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.prices .prices__content .prices__price-content .prices__price-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: auto;
  height: 30%;
  border-radius: 10px;
  gap: 20px;
}
.prices .prices__content .prices__price-content .prices__price-row .prices_title {
  display: flex;
  justify-content: end;
  text-align: right;
  height: 100%;
  align-items: center;
  color: var(--white);
  width: 20%;
}
.prices .prices__content .prices__price-content .prices__price-row .prices__price {
  height: 100%;
  contain: content;
  border-radius: 10px;
  width: 80%;
}
.prices .prices__content .prices__price-content .prices__price-row .prices__price .prices__row-up {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 50%;
  background-color: var(--red);
  font-weight: bold;
  color: var(--white);
  contain: content;
  padding: 0 30px 0 30px;
  align-items: center;
}
.prices .prices__content .prices__price-content .prices__price-row .prices__price .prices__row-down {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 50%;
  background-color: var(--white);
  contain: content;
  padding: 0 30px 0 30px;
  align-items: center;
}
.prices .prices__content .prices__search-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: auto;
  gap: 20px;
}
.prices .prices__content .prices__search-section .prices_search-title {
  display: flex;
  align-items: center;
  justify-content: end;
  color: var(--white);
  height: auto;
  text-align: end;
}
.prices .prices__content .prices__search-section .prices__search-content {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: fit-content;
  contain: content;
  border-radius: 10px;
}

@media (max-width: 1657px) {
  .prices__content {
    margin: 50px !important;
  }
}
@media (max-width: 1200px) {
  .prices__price-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row !important;
    justify-content: center;
    gap: 20px !important;
  }
  .prices__price-content .prices__price-row {
    flex-direction: column !important;
  }
  .prices__price-content .prices__price-row .prices_title {
    text-align: center !important;
    width: 100% !important;
  }
  .prices__price-content .prices__price-row .prices__price {
    display: flex;
    justify-content: center;
    flex-direction: row !important;
    width: auto !important;
    border-radius: 10px;
  }
  .prices__price-content .prices__price-row .prices__price .prices__row-up {
    flex-direction: column !important;
    width: 100px;
    padding: 0 !important;
  }
  .prices__price-content .prices__price-row .prices__price .prices__row-down {
    flex-direction: column !important;
  }
}
@media (max-width: 1140px) {
  .prices__search-section {
    flex-direction: column !important;
    align-items: start !important;
  }
  .prices__search-section .prices_search-title {
    width: 100% !important;
    justify-content: flex-start !important;
  }
}
@media (max-width: 768px) {
  .prices__content {
    margin: 50px 10px;
  }
  .prices__content .prices__price-content {
    margin: 0 10px;
  }
}
@media (max-width: 425px) {
  .prices__search-section {
    flex-direction: column !important;
    align-items: start !important;
  }
  .prices__search-section .prices_search-title {
    width: 100% !important;
    justify-content: flex-start !important;
  }
  .prices__search-section .prices__search-content {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .prices__search-section .prices__search-content label {
    width: 100%;
    border-radius: 10px;
  }
  .prices__search-section .prices__search-content label .input-space {
    width: 100%;
  }
  .prices__search-section .prices__search-content .prices-button {
    width: 100%;
    justify-content: center;
    padding: 0;
  }
}
@media (max-width: 375px) {
  .prices__content {
    margin: 50px 0 !important;
  }
}
@media (max-width: 320px) {
  .prices__content {
    margin: 50px 10px !important;
    gap: 20px !important;
  }
  .prices__content .prices__price {
    width: 100% !important;
  }
  .prices__content .prices__price .prices__row {
    width: 100% !important;
    margin: 0 !important;
  }
  .prices__content .prices__price .prices__row .prices__row-up {
    gap: 0 !important;
  }
  .prices__content .prices__price .prices__row .prices__row-down {
    gap: 0 !important;
    width: 100% !important;
  }
}
/*Блок callback*/
.cases {
  display: flex;
  width: 100%;
  flex-direction: column;
  height: fit-content;
  background-color: #d7d7d7;
}
.cases .cases__block {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  height: 400px;
}
.cases .cases__block .cases__top {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}
.cases .cases__block .cases__top .cases_l-line {
  width: 100%;
  background-color: #ff0000;
  height: 25px;
  margin-left: 0;
  border-radius: 0 10px 10px 0;
}
.cases .cases__block .cases__top .cases_title {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 0 30px 0 30px;
  white-space: nowrap;
}
.cases .cases__block .cases__top .cases_r-line {
  width: 100%;
  background-color: #ff0000;
  height: 25px;
  margin-right: 0;
  border-radius: 10px 0 0 10px;
}
.cases .cases__block .cases__main {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  height: 600px;
  margin: 0 100px 50px 100px;
}

.cases__item {
  display: flex;
  flex-direction: column;
  height: 300px;
  width: 450px;
  background-color: white;
  margin: 0 40px 0 40px;
  border-radius: 10px;
  white-space: nowrap;
}
.cases__item .cases__item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: auto;
  height: 100%;
  margin: 15px;
  border-radius: 10px;
}
.cases__item .cases__item-content .cases_item-photo {
  height: 100%;
  border-radius: 10px;
  contain: content;
  background-image: url("/catalog/view/theme/default/image/cases_ph-1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.cases__item .cases__item-content .cases__info {
  height: 20%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}
.cases__item .cases__item-content .cases__info .cases_text {
  line-height: 1px;
  height: 50%;
}

/*Блок callback*/
footer {
  display: flex;
  width: 100%;
  background-color: #D7D7D7;
  height: fit-content;
}
footer .footer__content {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 50px 100px 30px 100px;
  gap: 50px;
}
footer .footer__content .footer__contacts {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  height: auto;
}
footer .footer__content .footer__contacts .footer__column {
  display: flex;
  width: auto;
  height: 100%;
  flex-direction: column;
  margin: 0;
}
footer .footer__content .footer__contacts .footer__column .footer__address {
  display: flex;
  flex-direction: row;
  line-height: 1em;
  justify-content: center;
  align-items: center;
  white-space: wrap;
}
footer .footer__content .footer__contacts .footer__column .footer__address .map_icon {
  background-image: url("/catalog/view/theme/default/image/address-icon.svg");
  contain: content;
  height: 21px;
  width: 15px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 10px;
}
footer .footer__content .footer__contacts .yandex-rating {
  display: flex;
  justify-self: flex-end;
  width: 250px;
  height: 100px;
  background-image: url("/catalog/view/theme/default/image/ya-rating.png");
  contain: content;
  background-repeat: no-repeat;
}
footer .footer__content .footer_map {
  display: flex;
  width: 100%;
  height: 300px;
  contain: content;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
footer .footer__content .footer_label {
  display: flex;
  width: 100%;
  height: 20%;
  justify-content: center;
}

@media (max-width: 1150px) {
  .footer__content {
    height: auto;
    flex-wrap: wrap;
  }
  .footer__content .footer__contacts {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 1060px) {
  .footer__address {
    text-align: end;
    width: 60%;
  }
}
@media (max-width: 768px) {
  .footer__content {
    margin: 50px !important;
    gap: 50px !important;
    flex-direction: column !important;
  }
  .footer__content .footer__contacts {
    align-items: flex-start;
  }
}
@media (max-width: 627px) {
  .footer__address {
    text-align: start;
    width: 100%;
  }
}
@media (max-width: 425px) {
  .footer__content {
    margin: 10px !important;
    gap: 10px !important;
    flex-direction: column !important;
  }
  .footer__content .footer_map {
    height: 200px !important;
  }
  .footer__content .footer__contacts {
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column !important;
    flex-wrap: nowrap;
    gap: 0 !important;
    margin: 0;
    height: fit-content !important;
    font-size: 14px;
  }
  .footer__content .footer__contacts .footer__address {
    text-align: center;
  }
  .footer__content .footer__contacts .yandex-rating {
    scale: 70%;
  }
}
@media (max-width: 320px) {
  .footer__content {
    margin: 10px !important;
    gap: 10px !important;
    flex-direction: column !important;
  }
  .footer__content .footer_map {
    height: 200px !important;
  }
  .footer__content .footer__contacts {
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column !important;
    flex-wrap: nowrap;
    gap: 0 !important;
    margin: 0;
    height: fit-content !important;
    font-size: 14px;
  }
  .footer__content .footer__contacts .footer__address {
    width: 80%;
  }
}
:root {
  --white: #ffffff;
  --l-grey: #d7d7d7;
  --d-grey: #272727;
  --red: #ff0000;
  --black: #000000;
  --background-image-1: url("/catalog/view/theme/default/image/action-1_bg-img.png");
  --background-image-2: url("/catalog/view/theme/default/image/action-2_bg-img.png");
}

/*Блок callback*/
.advan {
  display: flex;
  width: 100%;
  flex-direction: column;
  height: 100%;
  background-color: var(--white);
}
.advan .advan__content {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
}
.advan .advan__content .advan_top {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}
.advan .advan__content .advan_top .advan_l-line {
  width: 100%;
  background-color: var(--red);
  height: 25px;
  margin-left: 0;
  border-radius: 0 10px 10px 0;
}
.advan .advan__content .advan_top .advan-title {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 0 30px 0 30px;
  white-space: nowrap;
}
.advan .advan__content .advan_top .advan_r-line {
  width: 100%;
  background-color: var(--red);
  height: 25px;
  margin-right: 0;
  border-radius: 10px 0 0 10px;
}
.advan .advan__content .advan__sheet {
  display: grid;
  flex-wrap: wrap;
  margin: 0 0 55px 0;
  justify-content: center;
  height: auto;
}
.advan .advan__content .advan__sheet .advan__sheet-block {
  display: grid;
  gap: 30px;
  grid-template-columns: 300px 300px 300px 300px;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.advan .advan__content .advan__sheet .advan__sheet-block .advan__sheet-item {
  display: flex;
  height: 365px;
  border: var(--red) solid 2px;
  border-radius: 10px;
}
.advan .advan__content .advan__sheet .advan__sheet-block .advan__sheet-item .advan__sheet-content {
  display: flex;
  height: auto;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin: 0 20px 20px 20px;
}

@media (max-width: 1400px) {
  .advan {
    height: auto;
  }
  .advan .advan__sheet-block {
    display: grid;
    grid-template-columns: 300px 300px !important;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .advan {
    height: auto;
  }
  .advan h2 {
    font-size: 24px;
  }
  .advan .advan__sheet .advan__sheet-block {
    display: grid;
    grid-template-columns: 300px !important;
    gap: 30px;
  }
}
@media (max-width: 425px) {
  .advan_l-line, .advan_r-line {
    display: none;
  }
}
@media (max-width: 375px) {
  .advan__sheet-block {
    display: grid;
    grid-template-columns: 250px !important;
  }
}
@media (max-width: 320px) {
  .advan__content {
    margin: 0;
  }
  .advan__content .advan-title {
    text-align: center;
    margin: 0 !important;
  }
}
/*Блок callback*/
::selection {
  background-color: #000000;
  color: white;
}

body {
  margin: 0;
}

.icons {
  display: flex;
  margin: 30px 30px 30px 30px;
  width: 100px;
  height: 100px;
}

.confirm-button {
  display: flex;
  width: 20px;
  height: 20px;
  border: black solid 2px;
  border-radius: 8px;
}

.input-space {
  height: 30px;
  border: #d7d7d7 solid 2px;
  border-radius: 10px;
  margin-right: 50px;
  width: 90%;
}

.non-input-space {
  display: flex;
  align-items: center;
  width: 100%;
  height: 30px;
}

.hollow-block {
  height: 50px;
  width: 100%;
}

/*-----------------------*/
input {
  font-family: Nunito, sans-serif;
  font-size: 1em;
  padding-left: 10px;
  width: auto;
}
input input :checked {
  background-color: #0b0b0b;
}

input [type=checkbox] {
  margin: 0 !important;
}

label {
  font-family: Nunito, sans-serif;
  width: 100%;
  margin: 0;
  padding: 0;
}

/*-----------------------*/
.gradient {
  display: block;
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: linear-gradient(to bottom, #d7d7d7 0%, transparent 100%);
  background-size: cover;
  background-position: center;
}

a {
  color: black;
}

sup {
  /*text-decoration: underline;*/
  margin-left: 1px;
}

/*# sourceMappingURL=style.css.map */

#information-information #content {
  margin-top:40px;
}


