.preloader {
  /*фиксированное позиционирование*/
  position: fixed;
  /* координаты положения */
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* фоновый цвет элемента */
  background: #e0e0e0;
  /* размещаем блок над всеми элементами на странице (это значение должно быть больше, чем у любого другого позиционированного элемента на странице) */
  z-index: 1001;
}

.preloader__row {
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  text-align: center;
  animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
  position: absolute;
  display: inline-block;
  top: 0;
  background-color: #337ab7;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

@keyframes preloader-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes preloader-bounce {

  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

.loaded_hiding .preloader {
  transition: 0.3s opacity;
  opacity: 0;
}

.loaded .preloader {
  display: none;
}
.parent0 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.custom_container {
    width: 100%;
    padding-right: 10px;
    padding-left: 25px;
    margin-right: auto;
    margin-left: auto;
}
.loader {
    display: none;
}
.back_but {
    margin-top: 20px;
    color: #007bff;
}
.back_but:hover {
    color: #175597;
}
.second_level_item {
    font-size: 1.2rem;
    /* margin-left: 3.3%; */
    padding: 5px 0;
}
.ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}
.list_item {
    list-style: none;
    min-height: 40px;
    line-height: 40px;
    margin: 0 15px;
    font-size: 16px;
    border-bottom: 1px solid rgba(0,0,0,.1);
    overflow: hidden;
    color: #000000c7;
    /* padding: 5px 0; */
}
.main {
    width: 100%;
    height: 100vh;
    margin-right: -10px;
/*     margin-left: -10px; */
}
.list_item:hover {
    color: #1b6bc0;
}
.llb_content {
    width: 97%;
    margin-left: 3%;
}
.llb_content div {
    padding: 5px;
}
.swiper-slide .link {
    width: 200px;
}
.llb_content h3 {
    padding-top: 0px;
    padding-bottom: 5px;
    padding-left: 0px;
    margin: 0;
}
ul {
    font-size: 0.98rem!important;
    margin-right: -10px;
    margin-left: -10px;
}
.llb_h {
    color: #000000c7;
    margin-left: 3.3%;
    font-size: 1.2rem;
    margin-left: 3.3%;
    padding: 5px 0;
}
.swiper-slide {
    width: 40%;
}
h3 {
    color: black;
}
#q {
    width: 100%;
}
.breadcrumb-item + .breadcrumb-item {
    padding-left: 0;
}
.menu {
    margin-top: 5px;
}
@media screen and (max-width: 900px) {
    .cont {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .img-res {
        width: 150px;
    }
}