:root {
  /* --blue: #00b4d8; */
  --red: #FC0101;
  --blue: #01a2f3;
  --blue-light: #E5F7FB;
  --blue-dark: #000137;
  --text: #060606;
  --text-light: #babaee;
  --grey: #F2F3F8;
  --primary-color: var(--blue);
  --secondary-color: var(--blue-dark);
  --accent-color: var(--red);
  --section-bg: #00316e;
  --transition: all 0.4s ease-in-out;
  --border-radius: 7px;
  --border-radius-lg: 30px;
  --border-color: #ebebeb;

  --lred-alpha-color: var(--accent-color);
  --lred-alpha-radius: var(--border-radius);
  --lred-betta-radius: var(--border-radius);
}
html,
body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: var(--secondary-color);
  background-color: #6473a8;
}
h1,h2,h3,h4,h5,h6 {
  line-height: 1.2;
  font-weight: 500;
}
h2 {
  margin-bottom: 1rem;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}
li {
  margin-bottom: 1rem;
}
a {
  color: #79d2ff;
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--blue-light);
}
button {
  border: none;
  outline: none;
  transition: var(--transition);
}
table {
  width: 100%;
}
td, th {
  padding: 0.5rem 0.5rem;
  border: 1px solid #dee2e6;
}
th {
  background-color: var(--primary-color);
}
.list-unstyled,
.document-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.document-list li {
  display: flex;
  align-items: baseline;
  gap: 15px;
}
.document-list li::before {
  content: '\f15b';
  font-family: "Font Awesome 6 Free";
}

.section {
  padding: 90px 0;
}
.section--bg {
  background-color: var(--section-bg);
}
.section__title {
  position: relative;
  max-width: max-content;
  margin-bottom: 20px;
  padding-left: 35px;
  padding-bottom: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}
.section__title::before {
  content: '';
  position: absolute;
  left: 0;
  top: -4px;
  width: 25px;
  height: 25px;
  display: block;
  background-image: url(../images/title-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.section__subtitle {
  max-width: 600px;
  margin-bottom: 50px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}
.section__btn {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.btn {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 10px;
  width: max-content;
  padding: 9px 28px 10px;
  color: #fff;
  font-weight: 500;
  border: none;
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  overflow: hidden;
  letter-spacing: 1.2px;
  z-index: 0;
}
.btn--accent {
  background-color: var(--accent-color);
}
.btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--secondary-color);
  transition: all .3s;
  z-index: -1;
}
.btn:hover {
  color: #fff;
  background-color: var(--primary-color);
}
.btn:hover::before {
  width: 100%;
}

/* phones */

.phones {
  display: flex;
  flex-wrap: wrap;
  .phone {
    width: 50%;
    margin-bottom: 1.5rem;
    h4 {
      margin-bottom: 2px;
      font-size: 15px;
      text-transform: uppercase;
    }
    a {
      font-weight: 500;
    }
    .phone__description {
      font-size: 14px;
    }
  }
}

/* accordion */

.accordion {
  margin-bottom: 2rem;
}
.accordion-button:focus {
  box-shadow: none;
}

.blockquote {
  margin: 30px 0;
  padding: 10px 20px;
  background-color: var(--grey-bg);
  border-left: 2px solid var(--accent-color);
}
.fa-location-dot {
  padding-left: 1.5px;
  padding-right: 2px;
}
.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* logo */

.logo {
  display: flex;
  align-items: center;
  color: var(--accent-color);
}
.logo img {
  width: 280px;
}

/* header */

.header {
  position: relative;
  z-index: 5;
  margin-bottom: -64px;
}
.header.sticky {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
  background-color: var(--secondary-color);
}
.header__top {
  padding: 10px 0;
  color: var(--text);
  background-color: var(--blue-light);
}
.header.sticky .header__top {
  display: none;
}
.header__bottom {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}
.header__contacts {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.header__title {
  font-size: 16px;
  text-transform: uppercase;
}
.header__contact {
  display: flex;
  flex-direction: column;
  margin-right: 30px;
}
.header__contact:first-child {
  padding-right: 30px;
  border-right: 1px solid var(--border-color);
}
.header__contact i {
  color: var(--primary-color);
}
.header__contact a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--text);
}
.header__contact a:hover {
  color: var(--primary-color);
}
.header__phone {
  font-weight: 500;
}
.header__logo {
  display: flex;
  height: 100%;
}
.header .bvi-open {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0;
  background-color: transparent;
}
.header .bvi-open:hover {
  color: var(--primary-color);
}
.header__phone-desc {
  font-size: 14px;
  color: #fff;
  text-align: center;
}

/* search */

.search {
  position: relative;
}
.search button {
  color: #fff;
  background-color: transparent;
}
.search__popup {
  position: absolute;
  top: -25px;
  right: 0;
  display: none;
  z-index: 2;
  align-items: center;
}
.search .search__popup input,
.search .search__popup input::placeholder {
  margin: 10px 0 0;
  padding: 0 10px;
  height: 40px;
  background-color: #fff;
}
.search__close {
  font-size: 20px;
}
.search-active .search__popup {
  display: flex;
}
.search-active .search__toggler {
  display: none;
}
.search .btn-toolbar {
  display: flex;
  flex-wrap: wrap;
}
.search input {
  padding: 13px 14px;
  outline: none;
  margin-right: 20px;
  margin-bottom: 20px;
  max-width: 280px;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: var(--border-radius);
  height: 49.5px;
  background-color: transparent;
}
#searchForm input {
  border-color: var(--text);
  height: 59px;
}
#searchForm button {
  background-color: var(--secondary-color);
  color: var(--text);
  border-color: var(--secondary-color);
}
#searchForm button:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.result-title a {
  color: var(--text);
}
.search-results .highlight,
.result-title a:hover {
  color: var(--accent-color);
}

/* hero */

.hero {
  position: relative;
  padding-top: 154px;
  padding-bottom: 180px;
  background-image: url(../images/hero.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  opacity: 0.65;
}
.hero__content {
  position: relative;
  z-index: 1;
}
.hero .section__subtitle {
  color: #fff;
  margin-bottom: 30px;
}
.hero__text {
  margin-bottom: 20px;
  font-size: 18px;
  color: #fff;
}

/* main-slider */

.main-slider__item {
  position: relative;
  height: 75vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.main-slider__item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  opacity: 0.35;
}
.main-slider__content-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.main-slider .container {
  height: 100%;
}
.main-slider__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-slider__title {
  margin-bottom: 40px;
  line-height: 1.1;
  font-size: 64px;
  font-weight: 700;
  color: #fff;
}
.main-slider__description {
  position: relative;
  margin-bottom: 20px;
  font-size: 18px;
  color: #fff;
}
.main-slider__btn {
  position: absolute;
  top: calc(50% - 25px);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  color: #fff;
  font-size: 18px;
  z-index: 1;
  border-radius: var(--border-radius);
  cursor: pointer;
  opacity: 0.5;
  transition: var(--transition);
}
.main-slider__btn:hover {
  opacity: 1;
}
.main-slider__btn--prev {
  left: 30px;
}
.main-slider__btn--next {
  right: 30px;
}

/* info */

.info {
  position: relative;
  z-index: 2;
  margin-top: -90px;
  color: var(--text);
}
.info__inner {
  padding: 30px;
  border-radius: var(--border-radius-lg);
  background-color: var(--blue-light);
}
.info__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.info__icon {
  margin-bottom: 0.75rem;
  width: 42px;
  height: 42px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.info__icon--location {
  background-image: url(../images/location.png);
}
.info__icon--calendar {
  background-image: url(../images/calendar.png);
}
.info__icon--mobile {
  background-image: url(../images/mobile.png);
}
.info__item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
  font-size: 18px;
  font-weight: 600;
}
.info__list {
  padding-left: 20px;
}
.info__list li {
  margin-bottom: 0;
}
.info__phones .phone {
  margin-bottom: 0.75rem;
}

/* about */

.about__info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about__text p:first-child {
  font-weight: 500;
  font-size: 110%;
}
.about__text p:nth-child(2) {
  margin: 20px 0;
  padding: 10px 20px;
  background-color: var(--grey-bg);
  border-left: 2px solid var(--accent-color);
}

/* services */

.services {
  padding-bottom: 175px;
  position: relative;
  color: #fff;
  background-image: url(../images/services-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.services::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  opacity: 0.65;
}
.services .section__subtitle {
  position: relative;
  max-width: 630px;
}
.services__item {
  position: relative;
  padding: 15px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  transition: var(--transition);
}
.services__item:hover {
  border-color: #fff;
}
.services__icon {
  margin-bottom: 1rem;
  width: 49px;
  height: 49px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.services__item h3 {
  font-size: 22px;
}
.services__item p {
  font-size: 14px;
}

/* counters */

.counters {
  position: relative;
  margin-top: -85px;
}
.counters__inner {
  padding: 30px;
  color: #fff;
  border-radius: var(--border-radius-lg);
  background-color: var(--primary-color);
}
.counters__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
}
.counters__item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20px;
  display: block;
  width: 1px;
  height: calc(100% - 40px);
  background-color: rgba(255, 255, 255, 0.2);
}
.counters__item:last-child::after {
  content: none;
}
.counters__big {
  font-size: 45px;
  text-transform: none;
}

/* advantages */

.advantages__item {
  display: flex;
  padding: 20px 25px;
  height: 100%;
  border-radius: var(--border-radius);
  background-color: var(--section-bg);
  transition: var(--transition);
}
.advantages__item:hover {
  background-color: var(--accent-color);
}
.advantages__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}
.advantages__item:hover .advantages__icon {
  background-color: #fff;
}
.advantages__icon svg {
  width: 40px;
  height: 40px;
  fill: #fff;
  transition: var(--transition);
}
.advantages__item:hover svg {
  fill: var(--primary-color);
}
.advantages__info {
  width: calc(100% - 70px);
  padding-left: 20px;
}
.advantages__info h3 {
  font-size: 18px;
}
.advantages__info p {
  color: var(--grey);
  margin-bottom: 0;
}

/* news */

.news .section__subtitle {
  margin-bottom: 10px;
}
.news__item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news__img {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  border-radius: var(--border-radius);
}
.news__img figure {
  margin-bottom: 0;
}
.news__img img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}
.news__img::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  opacity: 0;
  transition: var(--transition);
}
.news__item:hover .news__img img {
  transform: scale(1.1);
}
.news__item:hover .news__img::after {
  opacity: 0.25;
  transform: scale(1.04);
}
.news__info {
  display: flex;
  flex-direction: column;
  padding: 40px;
}
.news__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  transition: var(--transition);
}
.news__title:hover {
  color: var(--primary-color);
}
.news__text {
  margin: 20px 0;
}
.news__date {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 14px;
  line-height: 1;
  gap: 5px;
  color: var(--text-light);
}
.news__date dd {
  margin-top: 10px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.news__date i,
.news__date .icon-fw {
  font-size: 12px;
}
.news__btn {
  padding: 0;
  color: var(--secondary-color);
  background-color: transparent;
}
.news__btn::before {
  content: none;
}
.news__btn:hover {
  color: var(--primary-color);
  background-color: transparent;
}

/* cta */

.cta {
  position: relative;
  text-align: center;
  color: #fff;
}
.cta__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../images/cta.jpg);
  z-index: -1;
}
.cta__bg::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background-color: #050530;
}
.cta h2 {
  color: var(--accent-color);
}
.cta__info {
  max-width: 900px;
  margin: 0 auto ;
}

/* partners */

.partners__slider {
  padding-bottom: 40px;
}
.partners__item img {
  width: auto;
  height: 80px;
  object-fit: contain;
}

/* footer */

.footer {
  color: #fff;
  background-image: url(../images/footer-bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  color: var(--primary-color);
}
.footer__body {
  padding: 90px 0 60px;
}
.footer__logo {
  margin-bottom: 15px;
}

.footer__social {
  margin-top: 20px;
}
.footer__title {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 16px;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}
.footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 2px;
  background-color: var(--primary-color);
}
.footer__navigation ul {
  padding-left: 1rem;
}
.footer__contacts li {
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.footer__contacts i {
  width: 20px;
  color: var(--primary-color);
}
.footer__phone {
  font-size: 17px;
}
.footer__phone-desc {
  font-size: 14px;
  white-space: nowrap;
}
.footer__bottom {
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__bottom .redline---copyright a {
  color: #fff;
}

.socials {
  display: flex;
  gap: 20px;
  padding: 0;
  list-style: none;
  .socials__link {
    font-size: 24px;
    color: var(--primary-color);
    display: block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 5px;
  }
  .socials__link:hover {
    color: #fff;
  }
  .socials__link--telegram {
    background-image: url(../images/telegram-logo.svg);
  }
  .socials__link--vk {
    background-image: url(../images/vk-logo.svg);
  }
  .socials__link--ok {
    background-image: url(../images/ok-logo.svg);
  }
}
.footer__socials .socials__link {
  display: inline;
  width: auto;
  height: auto;
  background-image: none;
}

/* breadcrumbs */

.breadcrumbs {
  position: relative;
  z-index: 1;
  padding: 124px 0 60px;
}
.breadcrumbs__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/hero.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
.breadcrumbs__bg::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
  background-color: var(--secondary-color);
}
.breadcrumbs__title {
  margin-bottom: 30px;
  font-size: 48px;
  text-align: center;
  color: #fff;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
}
.breadcrumbs__item {
  display: flex;
  align-items: baseline;
  color: #fff;
}
.breadcrumbs__item a {
  color: var(--primary-color);
}
/* .breadcrumbs__item:first-child a::before {
  content: '\f015';
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 13px;
}
.breadcrumbs__list li:first-child a span {
  display: none;
} */
.breadcrumbs__item:not(:last-child)::after {
  content: '\f178';
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  margin: 0 10px;
  font-size: 12px;
}
.breadcrumbs__divider {
  font-size: 12px;
  margin: 0 10px;
}
.breadcrumbs__list a:hover {
  color: #fff;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 20px;
  text-align: center;
}

/* contacts */
.contacts h2 {
  margin-bottom: 1.5rem;
}
.contacts h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.contacts__description {
  margin-bottom: 30px;
}
.contacts__form {
  margin-bottom: 50px;
}
.contacts__form .lredform-submit {
  text-transform: unset;
}
.contacts__list {
  padding-left: 30px;
  border-left: 1px solid var(--border-color);
}
.contacts__item {
  display: flex;
  flex-direction: column;
}
.contacts__item:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.contacts__title {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.contacts__info {
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
a.contacts__info:hover {
  color: var(--primary-color);
}
.contacts__info i {
  color: var(--primary-color);
}
.contacts__map {
  margin-bottom: 50px;
}

/* department */

.department__img {
  border-radius: var(--border-radius);
  overflow: hidden;
}
.department__title {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}

/* faq */

.faq__title {
  font-size: 18px;
  font-weight: 600;
}
.faq__btn {
  margin: 40px auto 0;
}

.swiper-button-next:after, 
.swiper-button-prev:after {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}
.swiper-pagination-bullet {
  background-color: #fff;
  border: 1px solid var(--primary-color);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/* lred-multi-box */

.lred-multi-box__container {
  width: 310px;
}
.lred-multi-box__trigger {
  transition: var(--transition);
  width: 220px;
  gap: 0;
  padding: 9px 20px 10px;
}
.lred-multi-box__trigger::before {
  background-color: var(--primary-color);
}
.lred-multi-box__trigger:hover {
  background-color: var(--accent-color);
}
.lred-multi-box__body .lred-multi-box__item-red a, 
.lred-multi-box__body .lred-multi-box__item-red svg {
  color: var(--primary-color);
}

.zhym-credit {
  display: none;
}

/* back-to-top */

.back-to-top {
	position: fixed;
	cursor: pointer;
	top: 0;
	right: 20px;
	color: #fff;
	background-color: var(--primary-color);
	z-index: 104;
	width: 40px;
	text-align: center;
	height: 40px;
	line-height: 46px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .9s;
	transition: .9s;
  border-radius: var(--border-radius);
}
.back-to-top:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.5s;
	transition: 0.5s;
  border-radius: var(--border-radius);
}
.back-to-top:hover:before,
.back-to-top:focus:before {
	opacity: 1;
	visibility: visible;
}
.back-to-top:hover,
.back-to-top:focus {
	color: #ffffff;
}
.back-to-top.active {
  top: calc(100% - 16px);
	-webkit-transform: translateY(-98%);
	transform: translateY(-98%);
	opacity: 1;
	visibility: visible;
  border-radius: var(--border-radius);
}
.back-to-top i:last-child {
	opacity: 0;
	visibility: hidden;
	top: 60%;
}
.back-to-top:hover i:first-child,
.back-to-top:focus i:first-child {
	opacity: 0;
	top: 0;
	visibility: hidden;
}
.back-to-top:hover i:last-child,
.back-to-top:focus i:last-child {
	opacity: 1;
	visibility: visible;
	top: 50%;
}
.back-to-top i {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

/* map */

.map iframe {
  width: 100%;
  border: 0 !important;
}

/* Sitemap */

#SchuWeb_Sitemap .level_1 {
  text-transform: none;
  font-weight: 500;
}
#SchuWeb_Sitemap .level_2 {
  text-transform: none;
  font-weight: 400;
}
#SchuWeb_Sitemap li {
  margin-bottom: 5px;
}

/* search */

.search .btn-toolbar {
  display: flex;
  flex-wrap: wrap;
}
.search input {
  padding: 13px 14px;
  outline: none;
  margin-right: 20px;
  margin-bottom: 20px;
  width: 220px;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  height: 49.5px;
}
.search input:focus {
  box-shadow: none;
}
.search-results .highlight {
  color: var(--accent-color);
}

/* responsive */

@media (max-width: 1399px) {
  .main-slider__title {
    margin-bottom: 24px;
    font-size: 48px;
  }
  .main-slider__description {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .header__nav .menu a {
    font-size: 15px;
  }
  .banner .section__title {
    font-size: 50px;
  }
  .footer__bottom {
    padding-bottom: 30px;
  }
  .desktop-menu .menu {
    gap: 16px;
  }
}
@media (max-width: 991px) {
  .section__subtitle {
    font-size: 30px;
  }
  .header__contact:first-child {
    margin-right: 0;
    padding-right: 0;
    border: none;
    align-items: end;
  }
  .header__bottom {
    padding: 10px 0;
    .header__phone {
      color: #fff;
      align-items: baseline;
      gap: 10px;
    }
  }
  .phones .phone {
    width: 100%;
  }
  .main-slider__item {
    height: 620px;
  }
  .main-slider__btn--prev {
    left: 10px;
  }
  .main-slider__btn--next {
    right: 10px;
  }
  .counters__item:nth-child(even)::after {
    content: none;
  }
}
@media (max-width: 767px) {
  .logo img {
    width: 250px;
  }
  .header__contact {
    font-size: 14px;
  }
  .main-slider__title {
    font-size: 36px;
  }
  .breadcrumbs {
    padding: 150px 0 60px;
  }
  .breadcrumbs__title {
    font-size: 30px;
  }
  .blog__main-info {
    width: 100%;
    padding: 15px;
  }
  .footer__bottom {
    padding-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .main-slider__title {
    font-size: 28px;
  }
  .main-slider__description {
    font-size: 14px;
  }
  .main-slider__btn {
    display: none;
  }
  .section__subtitle {
    font-size: 24px;
  }
  .hero__text {
    font-size: 16px;
  }
  
  .counters__item::after {
    content: none;
  }
}
@media (max-width: 530px) {
  .header__inner {
    flex-wrap: wrap;
    justify-content: center!important;
  }
  .header__contact:first-child {
    align-items: center;
  }
}
@media (max-width: 400px) {
  .about__img {
    display: none;
  }
}
#cookie_note {
  display: none;
  position: fixed;
  bottom: 15px;
  left: 50%;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 20px;
  color: var(--text);
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 20px rgb(0 0 0 / 14%);
  z-index: 1000;
}
#cookie_note.show {
  display: block;
}
@media (max-width: 575px) {
  #cookie_note  {
    bottom: 160px;
    width: 300px;
    z-index: 10;
  }
}
dd.create{text-align:right;font-size: 0.7em;;}
