.edit-btn {
    position: fixed;
    left: 20px;
    z-index: 111;
    text-align: center;
    cursor: pointer;
    bottom: 20px;
}
.news .breadcrumb {
    padding-top: 0;
}

.control {
    margin-left: 10px;
}
.prev-control {
    transform: rotate(90deg)!important;
    margin-right: 10px;
}
.hero__slide h2 {
    max-width: 43.5%;
    font-weight: 700;
    font-size: 35px;
    line-height: 1.15;
    color: #e6332a;
    font-family: "CharterC", sans-serif;
    font-style: italic;
    text-align: center;
}
@media (max-width: 1270px) {
  .hero__slide h2 {
    font-size: 27px;
  }
}
@media (max-width: 768px) {
  .hero__slide h2 {
    font-size: 29px;
    max-width: 100%;
  }
  .hero__slide-inner {
    background-color: rgba(255, 255, 255, 0.85);
  }
}
@media (max-width: 420px) {
  .hero__slide h2 {
    font-size: 26px;
  }
}
.hero__slide p {
    margin-top: 1em;
    max-width: 43.5%;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.3;
    color: #0f4065;
    text-align: center;
}
.hero__buttons.container-big {
    max-width: 100%;
}
.form {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    max-width: 600px;
}
.form-input {
    border-radius: 5px;
    font-size: 16px;
    padding: 20px 15px;
    border: 1px solid rgba(0,0,0,.7);
    margin-bottom: 10px;
    
}
.form h3 {
    font-size: 22px;
    margin-bottom: 20px;
}
.form .error {
    display: block;
    color: red;
    margin-bottom: 20px;
}
.form .btn:disabled {
    pointer-events: none;
    opacity: .3;
}
.partners {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px 10px;
}
.partners img {
    width: 100%;
    max-height: 200px;
    height: 100%;
    object-fit: contain;
}
.check-row {
    margin-bottom: 20px;
    margin-top: 10px;
}
.nav__sub-link {
    line-height: 120%;
}
.about__descr li {
    display: list-item;
}
.about__descr ul {
    list-style: disc;
    padding-left: 20px;
}
.button-row {
    display: flex;
    align-items: center;
}
.news {
    margin-bottom: 0px;
}
.gallery__item {
    height: 300px;
}
.gallery.inner__gallery {
    margin-bottom: 150px;
}
.inner__pagination {
    margin-top: 50px;
}
footer {
    margin-top: 50px;
}
@media (max-width: 1270px) {
  .hero__slide p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1270px) and (max-width: 1390px) {
  .hero__slide-container {
    min-height: 420px;
  }
}
@media screen and (min-width: 1050px) and (max-width: 1269px) {
  .hero__slide-container {
    max-height: 320px;
    min-height: 320px;
  }
}
@media screen and (min-width: 1037px) and (max-width: 1100px) {
  .nav__list {
    gap: 15px;
  }
}
@media screen and (min-width: 988px) and (max-width: 1269px) {
  .hero__slide-container {
    max-height: 320px;
    min-height: 320px;
  }
  .nav__link {
      font-size: 14px;
  }
}
@media screen and (min-width: 988px) and (max-width: 1037px) {
  .nav__list {
      gap: 8px;
  }
}
@media (max-width: 1050px) {
  .partners {
        display: grid;
        grid-template-columns: repeat( auto-fit, minmax(150px, 1fr) );
        grid-gap: 30px 10px;
    }
}
@media (max-width: 768px) {
 .hero__slide p {
    font-size: 16px;
    max-width: 100%;
    font-weight: 600;
  }
  .hero__dotes-inner {
      display: none;
  }
  .inner__content {
      padding-top: 20px;
  }
}
@media (max-width: 480px) {
    .partners {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 10px;
    }
    .inner__gallery img {
        width: 100%!important;
        margin: 0!important;
        margin-bottom: 10px!important;
    }
}
@media (min-width: 992px) {
    .nav__sub-list {
          backdrop-filter: blur(15px);
         -webkit-backdrop-filter: blur(15px);
         display: block;
        background: rgba(215, 181, 106, 0.9);
       
    }
}
@media (max-width: 998px) {
    .article__row, .article--reverse .article__row {
        flex-direction: column-reverse;
    }
   
}

@media (max-width: 992px) {
    .nav__icon {
        margin-left: 10px;
        display: block;
        flex-shrink: 0;
        width: 100%;
        position: absolute;
        right: 0;
        height: 30px;
        top: 0;
        color: #fff;
        background: none;
        transition: all 0.3s 
ease-in-out;

        
    }
    .nav__sub-list {
        margin-top: 10px;
    }
    .nav__icon._active {
        transform: rotate(0deg);
    }
    .nav__icon:after {
        content: '';
        position: absolute;
        right: 0;
        transition: all 0.3s 
ease-in-out;
        height: 30px;
        top: -5px;
        width: 30px;
        background-image: url(../img/icons/arrow-1.png);
        background-repeat: no-repeat;
        background-position: center center;
    }
        .nav__icon._active:after {
        transform: rotate(180deg);
    }
}