@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");

.burger-btn {
  cursor: pointer;
  background: transparent;
  color: #0e3b0d;
  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: 1001;
  -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;
}

.mobile-menu.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.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: 882px) {
  .burger-btn {
    display: block;
  }

  .navbar__menu {
    display: none;
  }

  .navbar__lang {
    display: none;
  }

  .navbar__logo img {
    width: 70px;
  }

  .navbar__logo a span b {
    font-size: 18px;
  }

  .navbar__logo a span p {
    font-size: 15px;
  }
}

@media (max-width: 1453px) {
  .header__right_sert {
    right: 15px;
    top: -110px;
  }
}

@media (max-width: 1122px) {
  .header__body {
    padding: 200px 20px;
  }
}

@media (max-width: 1055px) {
  .header__right_people {
    width: 200px;
  }

  .header__right_star {
    left: 50px;
  }

  .header__right_sert {
    right: -5px;
    top: -110px;
    width: 280px;
  }
}

@media (max-width: 768px) {
  .header__body {
    padding: 50px 20px 150px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 150px;
  }

  .header__left {
    width: 100%;
  }

  .header__right {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .header__body {
    padding-left: 0;
    padding-right: 0;
    gap: 150px;
  }

  .header__left {
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header__left h1 {
    font-size: 35px;
  }

  .header__left p {
    font-size: 16px;
    text-align: center;
  }

  .header__left p br {
    display: none;
  }

  .header__left a {
    margin-top: 10px;
  }

  .header__right_sert {
    padding: 10px;
    width: 245px;
    right: 5px;
    right: 5px;
    top: -100px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 16px;
  }

  .header__right_sert span b {
    font-size: 16px;
  }

  .header__right_sert span p {
    font-size: 14px;
  }

  .header__right_people {
    width: 210px;
    left: 5px;
    right: 20px;
    bottom: -120px;
    padding-left: 10px;
    padding-right: 10px;
    padding: 10px;
  }

  .header__right_people span b {
    font-size: 16px;
  }

  .header__right_people span p {
    font-size: 14px;
  }

  .header__right_star {
    width: 45px;
    height: 45px;
    padding: 10px;
    top: 20px;
    left: 10px;
  }

  .header__right_geo {
    width: 45px;
    height: 45px;
    padding: 10px;
    top: 130px;
    right: 10px;
  }

  .header__right_people img,
  .header__right_sert img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .search-enterprise {
    margin-top: 0;
  }

  .search-enterprise__body {
    padding: 30px 15px;
  }

  .search-enterprise__form form {
    gap: 10px;
  }
}

@media (max-width: 500px) {
  .search-enterprise__body {
    gap: 15px;
  }

  .search-enterprise__form form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .search-form__col label {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .search-form__col input[type=submit] {
    margin-top: 10px;
  }
}

@media (max-width: 1224px) {
  .about__left img:nth-child(1) {
    right: 50px;
  }

  .about__left img:nth-child(2) {
    left: 20px;
  }
}

@media (max-width: 1004px) {
  .about {
    padding: 60px 0;
  }

  .about__body {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .about__right {
    width: 100%;
    gap: 20px;
  }

  .about__right h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .about__right_item span b {
    font-size: 20px;
  }

  .about__left_img_wrapper::before {
    top: -20px;
  }

  .about__left {
    width: 100%;
  }

  .about__left img {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .about__right {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .about__right a {
    width: 100%;
    margin-top: 20px;
    gap: 30px;
  }

  .about__left img:nth-child(1) {
    right: 0;
    top: 30px;
  }

  .about__left img:nth-child(2) {
    left: 0;
  }

  .about__left img {
    height: 400px;
  }

  .about__left_img_wrapper::after {
    bottom: -100px;
  }
}

@media (max-width: 1024px) {
  .news__slide {
    min-width: 49.5%;
    max-width: 49.5%;
  }

  .news__item {
    width: 100%;
  }

  .news__item img {
    width: 100%;
    height: 278px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .news {
    padding: 80px 0 30px;
  }
}

@media (max-width: 500px) {
  .about__left_img_wrapper::after {
    bottom: -100px;
  }

  .news {
    padding: 50px 0 30px;
  }

  .news__body {
    padding: 10px 0;
  }

  .news__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .news__title h2 {
    font-size: 30px;
  }

  .news__title_buttons {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .news__title_buttons p {
    display: none;
  }

  .news__title_buttons a {
    font-size: 16px;
  }

  .news__slide {
    min-width: 100%;
    max-width: 100%;
  }

  .news__item img {
    height: 220px;
  }

  .news__item_info_col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .news__item_info {
    padding: 10px 20px;
    margin: -80px auto 0;
  }

  .news__item_info a {
    width: 100%;
  }

  .news__item_info b {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .partners {
    padding: 10px 0;
  }
}

@media (max-width: 500px) {
  .partners__slide {
    margin-right: 20px;
  }

  .partners__item img {
    width: 100%;
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .process {
    padding: 40px 0;
  }

  .process__title {
    padding: 10px 0;
  }

  .process__title h3 {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .process {
    padding: 20px 0;
  }

  .process__title {
    text-align: center;
  }

  .process__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .process__item {
    width: 100%;
  }

  .process__item img {
    width: 100px;
  }

  .process__item b {
    left: 31%;
  }
}

@media (max-width: 768px) {
  .latest__title h3 {
    font-size: 30px;
  }

  .latest__slide {
    min-width: 49%;
    max-width: 49%;
    margin-right: 15px;
  }
}

@media (max-width: 500px) {
  .latest {
    padding-bottom: 0;
  }

  .latest__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .latest__slide {
    min-width: 100%;
    max-width: 100%;
    margin-right: 10px;
  }

  .latest__item b {
    font-size: 20px;
  }

  .latest__item p {
    font-size: 16px;
  }

  .latest__logo_wrapper {
    width: 155px;
    height: 155px;
  }
}

@media (max-width: 768px) {
  .get-cert {
    padding: 20px 0;
  }

  .get-cert__left h3 {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .get-cert__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }

  .get-cert__left {
    width: 100%;
  }

  .get-cert__left h3 {
    font-size: 30px;
  }

  .get-cert__left p {
    font-size: 16px;
  }

  .get-cert__left a {
    margin-top: 0;
  }

  .get-cert__right {
    width: 100%;
  }
}

@media (max-width: 1124px) {
  .interesting {
    padding: 15px 10px;
  }

  .interesting__item {
    padding: 15px 10px;
  }
}

@media (max-width: 768px) {
  .interesting__title {
    padding: 10px 0;
  }

  .interesting__title h4 {
    font-size: 30px;
  }

  .interesting__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .interesting__body {
    padding: 10px 0;
  }

  .interesting__item {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .interesting__item span {
    gap: 10px;
  }

  .interesting__item span b {
    font-size: 18px;
  }

  .interesting__item span p {
    font-size: 15px;
  }

  .interesting__item span a {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .testimonials {
    padding: 20px 0;
  }
}

@media (max-width: 768px) {
  .testimonials__title h4 {
    font-size: 30px;
  }

  .testimonials__body {
    padding: 10px 0;
  }

  .testimonials__slide {
    min-width: 100%;
    max-width: 100%;
    margin-right: 10px;
  }
}

@media (max-width: 500px) {
  .testimonials__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .faq__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .faq__body::after {
    display: none;
  }

  .faq__left {
    width: 100%;
  }

  .faq__right {
    width: 100%;
  }

  .faq__title h4 {
    font-size: 30px;
  }

  .faq__title p {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .faq__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }

  .faq__item_title b {
    font-size: 18px;
  }

  .faq__right b {
    font-size: 25px;
  }

  .faq__right .faq__img {
    width: 130px;
  }

  .faq__right_buttons {
    gap: 10px;
  }

  .faq__right {
    padding: 40px 20px;
  }

  .faq__right p br {
    display: none;
  }
}

@media (max-width: 1024px) {
  .app__left_img_wrapper::before {
    left: 7%;
  }

  .app__left_img_wrapper::after {
    left: 3.8%;
    top: 17.7%;
  }

  .app {
    padding: 10px 0;
  }
}

@media (max-width: 768px) {
  .app__left_img_wrapper::after {
    display: none;
  }

  .app__left_img_wrapper::before {
    display: none;
  }
}

@media (max-width: 500px) {
  .app__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .app__left {
    display: none;
  }

  .app__right {
    width: 100%;
  }

  .app__right i {
    font-size: 16px;
  }

  .app__right b {
    font-size: 30px;
  }

  .app__right_links {
    margin-top: 10px;
  }

  .app__right_links img {
    height: 40px;
  }
}

@media (max-width: 768px) {
  .map__title {
    padding: 5px 0;
  }

  .map__title h5 {
    font-size: 30px;
  }

  .map__body {
    padding: 15px 0;
  }
}

@media (max-width: 768px) {
  .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__col {
    width: 100%;
  }

  .footer__logo span b {
    font-size: 22px;
  }

  .footer__logo span p {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .about-hero__body {
    gap: 20px;
  }

  .about-hero__left img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .about-hero__right::before {
    display: none;
  }

  .about-hero__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about-hero__left {
    width: 100%;
  }

  .about-hero__right {
    width: 100%;
    padding-left: 0;
  }

  .about-hero__title h1 {
    font-size: 35px;
  }

  .about-hero__body {
    padding-top: 0;
  }

  .about-hero__image {
    display: none;
    position: unset;
  }

  .about-hero__image.active-img {
    display: block !important;
  }
}

@media (max-width: 500px) {
  .about-hero__right b {
    font-size: 30px;
  }

  .about-hero__right_item p {
    font-size: 16px;
    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  .about-goals__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about-goals__item {
    width: 100%;
    padding-bottom: 40px;
  }
}

@media (max-width: 500px) {
  .about-goals__title h2 {
    font-size: 30px;
  }

  .about-goals__item {
    padding: 30px !important;
  }

  .about-goals__item img {
    display: none;
  }

  .about-goals__item p {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .about-why__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: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 390px;
  }

  .about-why__item b {
    position: unset;
    -webkit-transform: none;
    transform: none;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .about-why__title h2 {
    font-size: 30px;
  }

  .about-why__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about-why__item {
    height: 200px;
    width: 100%;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .about-why__item p {
    font-size: 16px;
  }

  .about-why__item.about-why__item_active {
    height: 300px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}

@media (max-width: 1024px) {
  .about-team__slide {
    min-width: 32.6%;
    max-width: 32.6%;
  }
}

@media (max-width: 768px) {
  .about-team__slide {
    min-width: 49%;
    max-width: 49%;
  }

  .about-region {
    padding: 10px 0;
  }
}

@media (max-width: 500px) {
  .about-team__slide {
    min-width: 100%;
    max-width: 100%;
  }

  .about-team__title h3 {
    font-size: 30px;
  }
}

@media (max-width: 1024px) {
  .about-region__slide {
    min-width: 32.6%;
    max-width: 32.6%;
  }
}

@media (max-width: 768px) {
  .about-region__slide {
    min-width: 49%;
    max-width: 49%;
  }

  .about-team {
    padding: 10px 0;
  }
}

@media (max-width: 500px) {
  .about-region__slide {
    min-width: 100%;
    max-width: 100%;
  }

  .about-region__title {
    -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;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .about-region__title h3 {
    font-size: 30px;
  }
}

@media (max-width: 1299px) {
  .about-jobs__item {
    width: 32.4%;
  }
}

@media (max-width: 1161px) {
  .about-jobs__item {
    width: 32%;
  }
}

@media (max-width: 768px) {
  .about-jobs__item {
    width: 48%;
  }
}

@media (max-width: 500px) {
  .about-jobs__item {
    width: 100%;
  }

  .about-jobs__body {
    padding: 0;
    padding-bottom: 20px;
  }

  .about-jobs__title h4 {
    font-size: 30px;
  }

  .about-jobs__item b {
    font-size: 20px;
  }

  .about-jobs__item p {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .reestr__right_item {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .reestr__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }

  .reestr__left {
    width: 100%;
  }

  .reestr__right {
    width: 100%;
  }
}

.filter-toggle-btn {
  width: 100%;
  display: none;
  padding: 10px 20px;
  background: #349628;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 15px;
  font-size: 16px;
}

.filter-close-btn {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  z-index: 1001;
}

@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_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: 1024px) {
  .jobs__left_img img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .jobs__body {
    padding: 20px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .jobs__right {
    width: 100%;
  }

  .jobs__left {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .jobs {
    padding: 0;
  }

  .jobs__right h1 {
    font-size: 30px;
  }

  .jobs__right_body span {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .jobs__right_body b::after {
    display: none;
  }

  .jobs__right_body span {
    gap: 5px;
  }

  .jobs__right_body span p {
    padding-left: 0;
    font-size: 16px;
  }

  .jobs__left_img img {
    height: 240px;
  }
}

@media (max-width: 1269px) {
  .articles__body .news__item {
    width: 31.3%;
  }
}

@media (max-width: 768px) {
  .articles__body .news__item {
    width: 47%;
  }
}

@media (max-width: 500px) {
  .articles {
    padding: 0;
  }

  .breadcrumbs {
    padding: 10px 0;
  }

  .articles__body .news__item {
    width: 100%;
  }

  .pagination a {
    font-size: 15px;
  }
}

@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;
  }
}

@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: 30px;
    margin-bottom: 0;
  }

  .single__img {
    height: 290px;
  }

  .single__video {
    height: 290px;
  }
}

@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;
	text-align:left;
  }
}

@media (max-width: 768px) {
  .form__body {
    padding: 20px 30px;
  }
}

@media (max-width: 500px) {
  .form__title {
    padding: 0;
  }

  .form__title h1 {
    font-size: 35px;
  }

  .form__body {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .form__body:after {
    display: none;
  }

  .form__left {
    width: 100%;
  }

  .form__left b {
    font-size: 20px;
  }

  .form__right {
    width: 100%;
  }

  .form__right b {
    font-size: 20px;
  }

  .form__right_info {
    padding: 20px;
  }

  .form__right_info a {
    font-size: 16px;
  }
}

/* Fixed widgets */

@media (max-width: 768px) {
  .floating-widget {
    right: 15px;
    bottom: 15px;
    gap: 4px;
  }

  .floating-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .floating-widget {
    right: 10px;
    bottom: 10px;
  }
}