@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@media (max-width: 500px) {
  .subtitle {
    font-size: 16px;
  }
  .subtitle::before {
    display: none;
  }
  .title {
    font-size: 30px;
  }
}
.burger-btn {
  cursor: pointer;
  background: transparent;
  color: #FFF;
  font-size: 22px;
  border: 0;
  outline: none;
  margin-right: 20px;
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1000;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  margin-bottom: 60px;
}
.mobile-menu.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.mobile-menu__header {
  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;
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.mobile-menu__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0e3b0d;
}
.mobile-menu__logo a img {
  width: 60px;
  height: 60px;
}
.mobile-menu__logo a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobile-menu__logo a span b {
  font-size: 18px;
  font-family: "Raleway";
  font-weight: 700;
}
.mobile-menu__logo a span p {
  font-size: 14px;
  font-family: "Raleway";
  margin: 0;
  font-weight: 500;
  color: #666;
}
.mobile-menu__close {
  background: transparent;
  border: none;
  font-size: 24px;
  color: #0e3b0d;
  cursor: pointer;
  padding: 5px;
}
.mobile-menu__content {
  height: calc(100% - 81px);
  overflow-y: auto;
  padding: 20px;
}
.mobile-menu__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  margin-bottom: 30px;
}
.mobile-menu__nav a {
  font-family: "Raleway";
  text-decoration: none;
  color: #333;
  font-size: 18px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.mobile-menu__nav a:hover {
  color: #0e3b0d;
}
.mobile-menu__nav a.active-menu {
  color: #0e3b0d;
  font-weight: 600;
}
.mobile-menu__media {
  border-bottom: 1px solid #eee;
}
.mobile-menu__media-header {
  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;
  padding: 15px 0;
  cursor: pointer;
}
.mobile-menu__media-label {
  color: #333;
  font-size: 18px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.mobile-menu__media-toggle {
  background: transparent;
  border: none;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  padding: 5px;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mobile-menu__media-toggle.active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.mobile-menu__media-toggle i {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.mobile-menu__media-submenu {
  max-height: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 15px;
  -webkit-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mobile-menu__media-submenu.active {
  max-height: 200px;
  padding-bottom: 10px;
}
.mobile-menu__media-submenu a {
  text-decoration: none;
  color: #666;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: none;
}
.mobile-menu__media-submenu a:hover {
  color: #0e3b0d;
}
.mobile-menu__media-submenu a:last-child {
  padding-bottom: 0;
}
.mobile-menu__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  padding-top: 20px;
}
.mobile-menu__lang a {
  text-decoration: none;
  color: #666;
  font-size: 16px;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Raleway";
  font-weight: 600;
}
.mobile-menu__lang a:hover {
  background: #f5f5f5;
}
.mobile-menu__lang a.active_locale {
  background: #0e3b0d;
  color: white;
  border-color: #0e3b0d;
}
.mobile-menu .mobile-menu {
  display: block;
}

@media (max-width: 1190px) {
  .navbar__menu {
    gap: 15px;
  }
  .navbar__menu a:after {
    display: none;
  }
}
@media (max-width: 1072px) {
  .burger-btn {
    display: block;
  }
  .navbar__menu {
    display: none;
  }
  .navbar__lang {
    display: none;
  }
  .navbar__logo {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .filter-toggle-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
  .reestr__left {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: white;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
    -webkit-box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }
  .reestr__left form {
    margin-bottom: 50px;
  }
  .reestr__left.active {
    left: 0;
  }
  .filter-close-btn {
    display: block;
  }
  .reestr__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reestr__right_filter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reestr__sort {
    width: 100%;
    gap: 10px;
  }
  .reestr__search {
    width: 100%;
    gap: 10px;
  }
  .reestr__search input {
    padding-right: 40px;
  }
  .reestr__right {
    width: 100%;
  }
  .reestr__right_item {
    width: 100%;
  }
  .filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .filter-overlay.active {
    display: block;
  }
}
@media (max-width: 500px) {
  .reestr__logo_wrapper {
    width: 150px;
    height: 150px;
  }
  .reestr__right_item a b {
    font-size: 22px;
  }
  .reestr__right_item a p {
    font-size: 16px;
  }
  .reestr {
    padding-bottom: 40px;
  }
  .reestr__right_filter_row b {
    font-size: 18px;
  }
  .reestr__filter_col b {
    font-size: 18px;
  }
  .reestr__submit input {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 15px 0;
  }
  .header {
    padding: 10px 0;
  }
  .header__title {
    gap: 10px;
  }
  .header__body {
    padding: 10px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .header__right {
    width: 100%;
    gap: 30px;
  }
  .header__right p {
    font-size: 18px;
  }
  .header__right_items {
    padding-left: 0;
    gap: 20px;
  }
  .header__right_item b {
    font-size: 20px;
  }
  .header__right_item span {
    height: 5px;
  }
  .header__right_item span:after {
    width: 15px;
    height: 15px;
    right: 0px;
    top: -9px;
  }
  .header__left {
    width: 100%;
  }
  .header__left_top {
    display: none;
  }
  .header__left_bottom img {
    height: 300px;
  }
}
@media (max-width: 1024px) {
  .header__numbers__item:after {
    display: none;
  }
  .header__numbers {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 25px;
    padding: 20px 0;
  }
  .header__numbers__item b {
    font-size: 35px;
  }
  .header__numbers__item p {
    font-size: 20px;
  }
  .header {
    padding-bottom: 20px;
  }
}
@media (max-width: 500px) {
  .header__numbers {
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .header__numbers__item {
    width: 100%;
    gap: 5px;
  }
}
@media (max-width: 1024px) {
  .divider {
    margin: 20px 0;
  }
  .divider__body p {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .divider {
    padding: 15px 0;
  }
  .divider::after {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
}
@media (max-width: 1024px) {
  .sections__item {
    gap: 18px;
  }
  .sections__body {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .sections {
    padding: 10px 0;
  }
  .sections__body {
    padding: 30px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sections__title {
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .sections__item {
    gap: 12px;
    padding: 22px;
  }
  .sections__item img {
    width: 60px;
    height: 60px;
  }
  .sections__item a {
    margin-bottom: 15px;
  }
}
@media (max-width: 500px) {
  .sections__item b {
    font-size: 25px;
  }
  .sections__item p {
    font-size: 16px;
  }
  .sections__item a {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .info__right {
    margin-top: 0;
  }
  .info__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 35px 0;
    gap: 40px;
  }
  .info__left {
    width: 100%;
  }
  .info__right {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .info {
    padding: 30px 0;
  }
  .info__title {
    gap: 10px;
  }
  .info__left {
    width: 80%;
    margin: 0 auto;
  }
  .info__left img {
    width: 100%;
  }
  .info__right_item b {
    font-size: 25px;
  }
  .info__right_item p {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .coop {
    padding: 40px 0;
  }
  .coop__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .coop__left {
    width: 100%;
    gap: 20px;
  }
  .coop__left b br {
    display: none;
  }
  .coop__right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .coop__title {
    gap: 10px;
  }
  .coop__body {
    padding: 30px 0;
  }
}
@media (max-width: 500px) {
  .coop {
    padding-bottom: 20px;
  }
  .coop__left b {
    font-size: 22px;
  }
  .coop__left p {
    font-size: 16px;
  }
  .coop__left a {
    font-size: 16px;
    padding: 10px;
    gap: 5px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .coop__left a i {
    font-size: 16px;
  }
  .coop__body {
    gap: 25px;
  }
  .coop__right img {
    height: 400px;
  }
}
@media (max-width: 1024px) {
  .certificate__body {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
  }
  .certificate__right {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .certificate__title {
    gap: 10px;
  }
  .certificate__buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px 0;
  }
  .certificate__buttons button {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 35%;
            flex: 1 0 35%;
  }
  .certificate__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .certificate__right {
    width: 100%;
  }
  .certificate__left {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .certificate__buttons button {
    font-size: 16px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
  .certificate__body {
    padding: 10px 0;
  }
  .certificate__right {
    gap: 10px;
  }
  .certificate__right b {
    font-size: 25px;
  }
  .certificate__right p {
    font-size: 16px;
  }
  .certificate {
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .news {
    padding: 60px 0;
  }
  .news__title {
    gap: 10px;
  }
  .news__body {
    gap: 10px;
  }
  .news__item {
    gap: 10px;
  }
}
@media (max-width: 500px) {
  .news {
    padding: 50px 0;
  }
  .news__body {
    padding: 25px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news__item {
    padding: 10px;
  }
  .news__item span {
    font-size: 14px;
    margin-top: 5px;
  }
  .news__item b {
    font-size: 22px;
  }
  .news__item p {
    font-size: 16px;
  }
  .news__item a {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .faq__body {
    gap: 20px;
  }
  .faq__left {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .faq__title {
    gap: 10px;
  }
  .faq__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 40px 0;
  }
  .faq__left {
    width: 100%;
  }
  .faq__right {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .faq__body {
    padding: 20px 0;
  }
  .faq__item {
    padding: 20px;
  }
  .faq__question b {
    font-size: 20px;
  }
  .faq__item_last a {
    padding: 20px;
    font-size: 20px;
  }
  .faq__right_top {
    padding: 20px;
  }
  .faq__right_top b {
    font-size: 20px;
  }
  .faq__right_top b br {
    display: none;
  }
  .faq__right_top p br {
    display: none;
  }
  .faq {
    padding-bottom: 20px;
  }
  .faq__right_bottom {
    padding: 20px;
  }
  .faq__right_item img {
    width: 45px;
    height: 45px;
  }
  .faq__right_item span b {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .footer__ziz {
    padding-bottom: 30px;
  }
  .footer__top hr {
    height: 1px;
  }
  .footer__top {
    gap: 20px;
  }
  .footer__top b {
    font-size: 22px;
  }
  .footer__top a {
    font-size: 16px;
    text-align: center;
  }
  .footer {
    padding: 0;
  }
  .footer__row p {
    font-size: 16px;
  }
  .footer__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__col:nth-child(1) {
    width: 100%;
  }
  .footer__col {
    width: 45%;
  }
}
@media (max-width: 500px) {
  .footer__ziz {
    text-align: center;
  }
  .footer__top_body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .footer__top_body a {
    padding: 10px 20px;
  }
  .footer__col {
    width: 100%;
  }
  .footer__logo span b {
    font-size: 22px;
  }
  .footer__logo span p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .codex__title {
    gap: 10px;
  }
  .codex__title p {
    width: 100%;
  }
  .codex__body {
    padding: 30px 0;
  }
  .codex__item {
    -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: start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 5px;
  }
  .codex__item span {
    width: 100%;
  }
  .codex__item p {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .codex__title p {
    font-size: 16px;
  }
  .codex__body b {
    font-size: 20px;
  }
  .codex__item span {
    font-size: 18px;
  }
  .codex__item p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .documents__title {
    gap: 10px;
  }
  .documents__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    padding-bottom: 40px;
  }
  .documents__item {
    width: 100%;
    padding: 20px 30px;
    gap: 20px;
  }
  .documents__item b {
    font-size: 25px;
  }
}
@media (max-width: 500px) {
  .documents {
    padding: 15px 0;
  }
  .documents__item b {
    font-size: 20px;
  }
  .documents__item a {
    padding: 7px 15px;
  }
}
@media (max-width: 768px) {
  .faq {
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  .policy__title {
    gap: 10px;
    text-align: center;
  }
  .policy__buttons {
    padding: 25px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .policy__body {
    padding: 20px 0;
  }
  .policy__main {
    padding: 40px 0;
  }
  .policy__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .policy__left {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    gap: 10px;
  }
  .policy__right {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .policy {
    padding: 20px 0;
  }
  .policy__buttons button {
    padding: 5px 15px;
    font-size: 16px;
  }
  .policy__body {
    gap: 10px;
  }
  .policy__body p {
    font-size: 16px;
  }
  .policy__body b {
    font-size: 17px;
  }
  .policy__body li {
    font-size: 16px !important;
  }
  .policy__left b {
    font-size: 22px;
  }
  .policy__left p {
    font-size: 16px;
  }
  .policy__item {
    padding: 15px;
  }
  .policy__item b {
    font-size: 18px;
  }
  .policy__item b i {
    font-size: 16px;
  }
  .policy__main {
    gap: 20px;
    padding: 25px 0 10px;
  }
  .policy__answer p {
    line-height: 1.2;
  }
}
@media (max-width: 768px) {
  .services__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 0;
  }
  .services__title {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}
@media (max-width: 500px) {
  .services {
    padding: 20px 0;
  }
  .services__body {
    gap: 10px;
  }
  .services__item {
    padding: 15px;
    gap: 20px;
  }
  .services__item img {
    width: 50px;
    height: 50px;
  }
  .services__item b {
    font-size: 22px;
  }
  .services__item p {
    font-size: 16px;
  }
  .services__item li {
    font-size: 16px !important;
  }
}
@media (max-width: 1024px) {
  .services-list__mid span:after {
    height: 350%;
  }
}
@media (max-width: 768px) {
  .services-list__body {
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .services-list__item {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    gap: 10px;
  }
  .services-list__right {
    width: 100%;
    text-align: center;
  }
  .services-list__mid span:after {
    display: none;
  }
  .services-list__mid {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 500px) {
  .services-list__mid span {
    border-width: 6px;
    font-size: 25px;
  }
  .services-list__mid {
    width: 60px;
    height: 60px;
  }
  .services-list__right b {
    font-size: 22px;
  }
  .services-list__right p {
    font-size: 16px;
  }
  .services-list {
    padding: 10px 0 50px;
  }
}
@media (max-width: 1019px) {
  .news-list__body .news__item {
    width: 48.5%;
  }
}
@media (max-width: 686px) {
  .news-list__body .news__item {
    width: 48%;
  }
  .news-page__title {
    gap: 10px;
  }
}
@media (max-width: 519px) {
  .news-list__body .news__item {
    width: 100%;
  }
  .news-list__body {
    padding: 30px 0;
  }
}
@media (max-width: 1024px) {
  .single__img {
    height: 330px;
  }
}
@media (max-width: 768px) {
  .single__body {
    padding: 5px 0 30px;
  }
  .breadcrumbs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .single__info {
    gap: 15px;
  }
  .latest-news__body .news__item:last-child {
    display: none;
  }
  .latest-news__body .news__item {
    width: 49%;
  }
}
@media (max-width: 500px) {
  .single__info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  .single__content h1 {
    font-size: 22px;
    margin-bottom: 0;
  }
  .single__content {
    gap: 10px;
  }
  .single__content b {
    font-size: 16px;
  }
  .single__img {
    height: 290px;
  }
  .single__video {
    height: 290px;
  }
  .latest-news__body .news__item:nth-child(2) {
    display: none;
  }
  .latest-news__body .news__item {
    width: 100%;
  }
}
@media (max-width: 1019px) {
  .news-jobs__body .jobs__item {
    width: 48.5%;
  }
}
@media (max-width: 686px) {
  .jobs__body .jobs__item {
    width: 48%;
  }
  .jobs__title {
    gap: 10px;
  }
}
@media (max-width: 519px) {
  .jobs__body .jobs__item {
    width: 100%;
  }
  .jobs__body {
    padding: 30px 0;
    gap: 10px;
  }
  .jobs__item {
    gap: 10px;
  }
  .jobs__item b {
    font-size: 22px;
  }
  .jobs__item p {
    font-size: 16px;
  }
  .jobs__item a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .jobs-single__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 10px;
    padding: 20px 0;
  }
  .jobs-single__left {
    width: 100%;
  }
  .jobs-single__right {
    width: 100%;
  }
  .jobs-single__right h1 {
    font-size: 28px;
  }
}
@media (max-width: 500px) {
  .jobs-single__right span i {
    width: 5%;
  }
  .jobs-single__right span {
    font-size: 16px;
  }
  .jobs-single__right_item ul,
  .jobs-single__right_item ol {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .structure__title {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .appeal__body {
    padding: 10px 30px 20px;
  }
  .appeal__title {
    gap: 10px;
    text-align: center;
  }
  .appeal hr {
    margin: 20px 0;
  }
  .appeal__form_wrapper {
    width: 85%;
    padding-top: 30px;
  }
}
@media (max-width: 500px) {
  .appeal__body {
    padding: 10px 0 20px;
    gap: 10px;
  }
  .appeal__item ol li,
  .appeal__item ul li {
    line-height: 1.2;
  }
  .appeal {
    padding-bottom: 20px;
  }
  .appeal__form_wrapper {
    width: 95%;
    padding: 20px 0;
  }
  .appeal__form_buttons button {
    padding: 13px 20px;
    font-size: 16px;
  }
  .appeal__form_body form {
    gap: 10px;
  }
  .appeal__form_buttons {
    gap: 10px;
  }
  .appeal__column {
    gap: 5px;
  }
  .appeal__form_body form input {
    padding: 12px 24px;
  }
}
@media (max-width: 1024px) {
  .contacts__item {
    padding: 25px 0;
  }
}
@media (max-width: 768px) {
  .contacts__title .title {
    font-size: 25px;
  }
}
@media (max-width: 500px) {
  .contacts {
    padding: 15px 0;
  }
  .contacts__title .title {
    font-size: 22px;
  }
  .contacts__wrapper {
    gap: 25px;
  }
  .contacts__social .contacts__social_list a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .contacts__social {
    gap: 10px;
  }
  .contacts__col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts__item b {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .reestr-single__right {
    width: 30%;
  }
  .reestr-single__body {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .reestr-single {
    padding: 10px 0;
  }
  .reestr-single__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reestr-single__mid {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .reestr-single__left {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: 240px;
    padding: 20px;
  }
  .reestr-single__left img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .reestr-single__right {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (max-width: 500px) {
  .reestr-single__mid h1 {
    font-size: 30px;
  }
  .reestr-single__mid {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .reestr-single__body {
    padding: 20px 10px;
  }
  .reestr-single__mid_body {
    width: 100%;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .reestr-single__mid_body span {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .reestr-single__mid_body span p:after {
    display: none;
  }
  .reestr-single__mid_body span b {
    padding-left: 0;
  }
}
/* Fixed widgets */
@media (max-width: 768px) {
  .floating-widget {
    right: 15px;
    bottom: 15px;
    gap: 4px;
  }
  .floating-btn {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .coop-main__title {
    gap: 10px;
  }
  .coop-main__body {
    padding: 30px 0;
  }
  .coop-main__left {
    width: 100%;
  }
  .coop-main__right {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .coop-main__item {
    padding: 15px;
  }
  .coop-main {
    padding: 20px 0;
  }
  .coop-main__left {
    max-width: 100%;
  }
  .coop-main__left img {
    width: 100%;
    height: 100%;
  }
  .coop-main__left b {
    font-size: 22px;
    line-height: 1.3;
  }
  .coop-main__left p {
    font-size: 16px;
  }
  .coop-main__left a {
    font-size: 16px;
    padding: 12px 16px;
    gap: 8px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .coop-main__left a i {
    font-size: 16px;
  }
  .coop-main__right img {
    width: 100%;
    height: auto;
    max-height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .coop-main__right b {
    font-size: 18px;
  }
  .coop-main__right span {
    font-size: 16px;
    padding: 3px 15px;
  }
  .coop-main__item {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .coop-main__right_item ol li,
  .coop-main__right_item ul li {
    font-size: 16px;
  }
  .coop-main__toggle-btn {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .request__left {
    padding: 30px 20px;
  }
}
@media (max-width: 768px) {
  .request__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .request__left {
    width: 100%;
  }
  .request__left img {
    width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  .request {
    padding: 10px 0;
  }
  .request__left_body {
    padding: 10px 15px;
  }
  .request__left_body b {
    font-size: 18px;
  }
  .request__left_body p {
    font-size: 14px;
  }
  .request__left {
    padding: 20px 10px;
  }
}