/* 
Theme Name: Halal Damu
Author: @ziz.kz
Version: ziz.kz
*/

@charset "UTF-8";
@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");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Roboto;
}

body,
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

::-moz-selection {
  background: #44ac36;
  color: #fff;
}

::selection {
  background: #44ac36;
  color: #fff;
}

.container {
  padding: 0 10px;
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
}

.body-no-scroll {
  overflow-y: hidden !important;
}

/* Navbar */
.navbar {
  padding: 20px 0;
}

.navbar__body {
  border-radius: 81px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #FFF;
  padding: 0 10px;
  -webkit-box-shadow: 0px 0px 20px rgba(148, 168, 179, 0.08);
  box-shadow: 0px 0px 20px rgba(148, 168, 179, 0.08);
}

.navbar__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.navbar__logo a span b {
  font-size: 20px;
  color: #000;
  font-family: "Raleway";
}

.navbar__logo a span p {
  font-weight: 500;
  font-family: "Raleway";
  color: #ADADAD;
}

.navbar__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 32px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar__menu a {
  text-decoration: none;
  color: #0F0F0F;
  font-size: 14px;
  font-weight: 600;
  font-family: "Raleway";
  text-transform: uppercase;
  opacity: 60%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}

.navbar__menu a::before {
  content: "";
  width: 0%;
  height: 2px;
  position: absolute;
  bottom: -3px;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #44AC36;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}



.navbar__menu a:hover {
  opacity: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar__menu a:hover::before {
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.active-menu {
  opacity: 100% !important;
}

.active-menu:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100% !important;
  height: 2px;
  background: #44AC36;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}

.navbar__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #EBEBEB;
  border-radius: 33px;
}

.navbar__lang a {
  font-weight: 600;
  text-decoration: none;
  color: #979797;
  font-size: 14px;
  padding: 10px 15px;
}

.navbar__lang .active_locale {
  color: #44AC36 !important;
  border: 1px solid #44AC36;
  border-radius: 33px;
  background: #FFF;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.active-submenu {
  background-color: #ddd !important;
  border-bottom: 2px solid #44AC36;
  opacity: 100% !important;
  z-index: -10;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.media-icon {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.dropdown:hover .media-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.header-main {
  overflow: hidden;
}

.header {
  background-repeat: no-repeat;
  background-size: cover;
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 200px 0 250px;
}

.header__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: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.header__left h1 {
  color: #1E282F;
  font-size: 56px;
  font-weight: 600;
}

.header__left p {
  font-size: 20px;
  color: #60747D;
}

.header__left a {
  text-decoration: none;
  padding: 10px 20px;
  background: #44AC36;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #FFF;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__left a:hover i {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.header__left a i {
  color: #44ac36;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #FFF;
  border-radius: 100%;
  font-size: 18px;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header__right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
}

.header__right img {
  max-width: 100%;
  height: auto;
  width: 175px;
  position: relative;
  z-index: 5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

@-webkit-keyframes pulse-wave {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(2.5);
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@keyframes pulse-wave {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(2.5);
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.header__right::before,
.header__right::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  z-index: 1;
  width: 175px;
  height: 175px;
  -webkit-animation: pulse-wave 4s infinite ease-in-out;
  animation: pulse-wave 4s infinite ease-in-out;
}

.header__right::before {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  background-color: rgba(255, 223, 0, 0.9);
}

.header__right::after {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  background-color: rgba(255, 223, 0, 0.7);
}

.header__right>.pulse-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(255, 223, 0, 0.5);
  z-index: 0;
  width: 175px;
  height: 175px;
  -webkit-animation: pulse-wave 4s infinite ease-in-out;
  animation: pulse-wave 4s infinite ease-in-out;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.header__right>.pulse-circle--2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(255, 223, 0, 0.3);
  z-index: 0;
  width: 175px;
  height: 175px;
  -webkit-animation: pulse-wave 4s infinite ease-in-out;
  animation: pulse-wave 4s infinite ease-in-out;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.header__right_star {
  position: absolute;
  background: #FFF;
  left: 110px;
  top: -80px;
  padding: 15px;
  border-radius: 100%;
  z-index: 999;
  -webkit-box-shadow: 0px 0px 12.8px rgba(128, 146, 157, 0.1);
  box-shadow: 0px 0px 12.8px rgba(128, 146, 157, 0.1);
  width: 76px;
  height: 76px;
}

.header__right_star img {
  width: 48px;
}

.header__right_sert {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #FFF;
  z-index: 999;
  width: 43%;
  padding: 15px 10px;
  right: -55px;
  top: -80px;
  border-radius: 24px;
}

.header__right_sert img {
  width: 45px;
}

.header__right_sert span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.header__right_sert span b {
  color: #44AC36;
  font-size: 20px;
  font-weight: 600;
}

.header__right_sert span p {
  font-size: 15px;
  color: #44AC36;
}

.header__right_people {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #FFF;
  z-index: 999;
  width: 30%;
  padding: 15px 10px;
  left: -10px;
  bottom: -80px;
  border-radius: 24px;
}

.header__right_people img {
  width: 45px;
}

.header__right_people span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.header__right_people span b {
  color: #CB7130;
  font-size: 20px;
  font-weight: 600;
}

.header__right_people span p {
  font-size: 15px;
  color: #CB7130;
}

.header__right_geo {
  position: absolute;
  background: #FFF;
  right: 110px;
  bottom: -80px;
  padding: 15px;
  border-radius: 100%;
  z-index: 999;
  -webkit-box-shadow: 0px 0px 12.8px rgba(128, 146, 157, 0.1);
  box-shadow: 0px 0px 12.8px rgba(128, 146, 157, 0.1);
  width: 76px;
  height: 76px;
}

.header__right_geo img {
  width: 48px;
}

.search-enterprise {
  margin-top: -70px;
}

.search-enterprise__body {
  background: #FFF;
  padding: 30px;
  border-radius: 18px;
  -webkit-box-shadow: 0px 0px 20px rgba(148, 168, 179, 0.08);
  box-shadow: 0px 0px 20px rgba(148, 168, 179, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.search-enterprise__title b {
  font-size: 20px;
  font-weight: 600;
  font-family: "Raleway";
}

.search-enterprise__title p {
  font-family: "Raleway";
  font-size: 14px;
  color: #878787;
  margin-top: 5px;
}

.search-enterprise__form {
  width: 100%;
}

.search-enterprise__form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.search-form__col {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.search-form__col label {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.search-form__col input {
  background: #F4F9FC;
  padding: 15px 20px;
  border-radius: 40px;
  border: 0;
  outline: none;
  font-size: 16px;
}

.search-form__col input::-webkit-input-placeholder {
  color: #A4ACB1;
}

.search-form__col input::-moz-placeholder {
  color: #A4ACB1;
}

.search-form__col input:-ms-input-placeholder {
  color: #A4ACB1;
}

.search-form__col input::-ms-input-placeholder {
  color: #A4ACB1;
}

.search-form__col input::placeholder {
  color: #A4ACB1;
}

.search-submit-btn {
  background: #44AC36;
  color: #FFF;
  cursor: pointer;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 40px;
  border: 0;
  outline: none;
  font-size: 16px;
}

.search-form__col input[type=submit] {
  background: #44AC36;
  color: #FFF;
  cursor: pointer;
  font-weight: 500;
}

.select_wrapper {
  width: 100%;
  position: relative;
}

.select_wrapper select {
  background: #F4F9FC;
  padding: 15px 20px;
  border-radius: 40px;
  border: 0;
  outline: none;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #A4ACB1;
  width: 100%;
}

.select_wrapper:after {
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 40%;
  right: 20px;
}

.about {
  padding: 100px 0 60px;
}

.about__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
}

.about__left {
  width: 50%;
  position: relative;
  font-size: 0;
}

.about__left img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  width: 430px;
  height: 430px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  position: absolute;
  top: 0;
}

.about__left img:nth-child(1) {
  right: 150px;
  top: 100px;
  z-index: 10;
  outline: 10px solid #FFF;
}

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

.about__left img:nth-child(2)::before {
  content: "asaa";
  position: absolute;
  left: 0;
  top: 0;
  color: red;
  background: black;
}

.about__right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 20px 0;
}

.about__right h2 {
  font-size: 48px;
  font-weight: 600;
  color: #0F0F0F;
}

.about__right a {
  color: #44AC36;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  border: 1px solid #44AC36;
  border-radius: 30px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.about__right a i {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.about__right a:hover {
  background: #44AC36;
  color: #FFF;
}

.about__right a:hover i {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.about__right_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about__right_item img {
  padding: 14px;
  width: 76px;
  height: 76px;
  background: #FFFFFF;
  border: 1px solid #DFFADB;
  -webkit-box-shadow: 0px 0px 16px rgba(137, 168, 145, 0.13);
  box-shadow: 0px 0px 16px rgba(137, 168, 145, 0.13);
  border-radius: 55px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.about__right_item span {
  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;
}

.about__right_item span b {
  font-size: 24px;
  font-weight: 500;
  color: #0F0F0F;
}

.about__right_item span p {
  color: #0F0F0F;
  opacity: 50%;
}

.about__left_img_wrapper {
  position: relative;
}

.about__left_img_wrapper::before {
  position: absolute;
  left: -20%;
  top: -50px;
}

.about__left_img_wrapper::after {
  position: absolute;
  right: 10%;
  bottom: -180px;
}

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

.news__title {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news__title h2 {
  color: #0F0F0F;
  font-size: 40px;
  font-weight: 600;
}

.news__title_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news__title_buttons p {
  cursor: pointer;
  color: #44AC36;
  border: 1px solid #44AC36;
  padding: 10px 25px;
  border-radius: 51px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.news__title_buttons p:hover {
  background: #44AC36;
  color: #FFF;
}

.news__title_buttons a {
  color: #44AC36;
  border: 1px solid #44AC36;
  padding: 10px 25px;
  border-radius: 51px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.news__title_buttons a:hover {
  background: #44AC36;
  color: #FFF;
}

.news__body {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.news__slide {
  min-width: 33%;
  max-width: 33%;
  margin-right: 10px;
}

.news__item {
  width: 100%;
}

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

.news__item_info {
  height: 215px;

  padding: 20px;
  background: #FFF;
  z-index: 10;
  position: relative;
  border-radius: 12px;
  width: 90%;
  margin: -50px auto 0;
  -webkit-box-shadow: 0px 2px 20px rgba(144, 157, 165, 0.1);
  box-shadow: 0px 2px 20px rgba(144, 157, 165, 0.1);
  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;
}

.news__item_info b {
  color: #151515;
  font-size: 20px;
}

.news__item_info p {
  color: #747474;
  font-size: 12px;
}

.news__item_info a {
  margin-top: auto;

  text-decoration: none;
  color: #29668B;
  padding: 5px 20px;
  border-radius: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  background: #F4FBFF;
  border: 1px solid #D8EAF5;
}

.play {
  width: 12px !important;
  height: 12px !important;
  border-radius: 0 !important;
  margin: 5px 0;
}

.news__item_info_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news__item_info_col span {
  color: #4291D7;
  font-style: italic;
  font-size: 14px;
  padding: 5px 15px;
  border: 1px solid #DCE6EE;
  border-radius: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news__item_info_col span img {
  width: 15px;
  height: 15px;
}

.news__item_info_col i {
  font-size: 14px;
  font-style: italic;
  color: #999999;
  position: relative;
}

.news__item_info_col i::before {
  position: absolute;
  left: -10px;
  top: -4px;
}

p.news__item_descr.truncate {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: 3.6em;
}

.partners {
  padding: 40px 0;
}

.partners__body {
  position: relative;
  overflow: hidden;
}

.partners__slide {
  min-width: 12%;
  max-width: 12%;
  margin-right: 10px;
}

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

.process {
  padding: 60px 0;
}

.process__title {
  padding: 30px 0;
}

.process__title h3 {
  color: #0F0F0F;
  font-size: 40px;
  font-weight: 600;
}

.process__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 40px 0;
}

.process__item {
  width: 25%;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.process__item img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  width: 135px;
  border-radius: 100%;
}

.process__item b {
  position: absolute;
  top: 0;
  left: 26%;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  color: #44AC36;
  font-size: 20px;
  font-weight: 600;
  padding: 10px;
  border-radius: 100%;
}

.process__item p {
  color: #000;
  font-weight: 600;
}

.process__item p a {
  text-decoration: none;
  color: #44AC36;
}

.latest {
  padding: 30px 0;
}

.latest__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.latest__title h3 {
  color: #0F0F0F;
  font-size: 40px;
  font-weight: 600;
}

.latest__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.latest__buttons p {
  cursor: pointer;
  color: #44AC36;
  border: 1px solid #44AC36;
  padding: 10px 25px;
  border-radius: 51px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.latest__buttons p:hover {
  background: #44AC36;
  color: #FFF;
}

.latest__body {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.latest__slide {
  min-width: 24%;
  max-width: 24%;
  margin-right: 20px;
}

.latest__slide a {
  text-decoration: none;
}

.latest__item {
  background: #FBFBFB;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 10px;
  padding: 30px 20px;
}

.latest__item img {
  width: 111px;
  height: 110px;
  -o-object-fit: contain;
  object-fit: contain;
}

.latest__item b {
  color: #349628;
  font-size: 28px;
  font-weight: 500;
  margin-top: 20px;
}

.latest__item p {
  font-size: 20px;
  color: #0F0F0F;
  opacity: 60%;
}

.latest__logo_wrapper {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  border: 1px solid #85C07E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: white;
  overflow: hidden;
}

.get-cert {
  padding: 40px 0;
}

.get-cert__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 32px;
}

.get-cert__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: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  width: 50%;
}

.get-cert__left h3 {
  color: #0F0F0F;
  font-size: 40px;
  font-weight: 500;
}

.get-cert__left p {
  color: #0F0F0F;
  opacity: 60%;
  font-size: 24px;
}

.get-cert__left a {
  text-decoration: none;
  padding: 10px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #FFF;
  background: #44ac36;
  border-radius: 34px;
  font-size: 18px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #44AC36;
  margin-top: 20px;
}

.get-cert__left a i {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.get-cert__left a:hover {
  background: #FFF;
  color: #44ac36;
  border: 1px solid #44AC36;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.get-cert__left a:hover i {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translate(5px, 0px);
  transform: translate(5px, 0px);
}

.get-cert__right {
  width: 35%;
  font-size: 0;
}

.get-cert__right img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.interesting {
  padding: 30px 0;
}

.interesting__title {
  padding: 20px 0;
}

.interesting__title h4 {
  font-size: 40px;
  font-weight: 600;
}

.interesting__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  padding: 20px 0;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
}

.interesting__item {
  padding: 25px 30px;
  border: 1px solid #E0E0E0;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.interesting__item img {
  width: 52px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.interesting__item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.interesting__item span b {
  color: #2F2F2F;
  font-size: 24px;
  font-weight: 600;
}

.interesting__item span p {
  color: #929292;
}

.interesting__item span a {
  margin-top: 10px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 7px 15px;
  background: #F4FBFF;
  border: 1px solid #D8EAF5;
  border-radius: 22px;
  color: #29668B;
  font-size: 12px;
}

.testimonials {
  padding: 40px 0;
}

.testimonials__title {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.testimonials__title h4 {
  color: #0F0F0F;
  font-size: 40px;
  font-weight: 600;
}

.testimonials__title_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.testimonials__title_buttons p {
  cursor: pointer;
  color: #44AC36;
  border: 1px solid #44AC36;
  padding: 10px 25px;
  border-radius: 51px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.testimonials__title_buttons p:hover {
  background: #44AC36;
  color: #FFF;
}

.testimonials__title_buttons a {
  color: #44AC36;
  border: 1px solid #44AC36;
  padding: 10px 25px;
  border-radius: 51px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.testimonials__title_buttons a:hover {
  background: #44AC36;
  color: #FFF;
}

.testimonials__body {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}

.testimonials__slide {
  min-width: 49%;
  max-width: 49%;
  margin-right: 20px;
}

.testimonials__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  background-color: #F4FBFF;
  padding: 25px;
  border-radius: 16px;
  background-repeat: no-repeat;
  background-position: 95% 90%;
}

.testimonials__item p {
  color: #040E12;
  line-height: 1.5;
}

.testimonials__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 2px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.testimonials__stars img {
  width: 21px;
}

.testimonials__avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.testimonials__avatar img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100%;
}

.testimonials__avatar span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.testimonials__avatar span b {
  font-size: 20px;
  color: #040E12;
}

.testimonials__avatar span i {
  color: #040E12;
  font-weight: 500;
  opacity: 56%;
}

.swiper-pagination-testimonials {
  text-align: center;
  padding-top: 30px;
}

.swiper-pagination-testimonials .swiper-pagination-bullet-active {
  background: #44AC36 !important;
  width: 35px !important;
  height: 8px;
  border-radius: 32px;
}

.swiper-pagination-testimonials .swiper-pagination-bullet {
  background: #585c58;
  width: 17px;
  height: 8px;
  border-radius: 32px;
}

.faq {
  padding: 30px 0;
}

.faq__title {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.faq__title h4 {
  font-size: 40px;
  color: #000;
  font-weight: 600;
}

.faq__title p {
  padding: 6px 30px;
  color: #44AC36;
  border: 1px solid #44AC36;
  border-radius: 53px;
  font-size: 18px;
  font-weight: 400;
}

.faq__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
  margin: 30px 0;
  position: relative;
}

.faq__body::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  background: #E2E2E2;
}

.faq__left {
  width: 50%;
  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;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.faq__item {
  width: 100%;
  cursor: pointer;
  border: 1px solid #E8E8E8;
  border-radius: 14px;
  background: #FFF;
  padding: 12px 15px;
}

.faq__item_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.faq__item_title b {
  font-size: 20px;
  font-weight: 500;
  font-size: 20px;
}

.faq__item_title i {
  color: #44AC36;
  font-size: 20px;
}

.faq__item_answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease-out;
  transition: max-height 0.4s ease-out;
}

.faq__item_answer p {
  color: #0F0F0F;
  opacity: 40%;
  margin-top: 15px;
  line-height: 1.5;
}

.faq__item_active .faq__item_answer {
  max-height: 1000px;
}

.faq__item_title i {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.faq__item_active .faq__item_title i {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.faq__right {
  width: 50%;
  padding: 40px 50px;
  background: #FFF;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  border-radius: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.faq__right b {
  font-size: 30px;
  font-weight: 600;
}

.faq__right p {
  color: #000;
  opacity: 50%;
}

.faq__right .faq__img {
  width: 220px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.faq__right_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 25px;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
}

.faq__right_buttons a {
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #F6F6F6;
  text-decoration: none;
  color: #000;
  border-radius: 12px;
}

.app {
  padding: 30px 0;
}

.app__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.app__left {
  width: 50%;
}

.app__left img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  width: 100%;
  height: 700px;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 10;
}

.app__left_img_wrapper {
  position: relative;
}

.app__left_img_wrapper::before {
  z-index: -1;
  content: "";
  width: 380px;
  height: 380px;
  position: absolute;
  left: 20%;
  top: 20%;
  outline: #000 10px;
  background: #44AC36;
  border-radius: 100%;
}

.app__left_img_wrapper::after {
  content: "";
  z-index: -3;
  width: 489px;
  height: 489px;
  position: absolute;
  background: transparent;
  border-radius: 50%;
  left: 10%;
  top: 10%;
  border: 11px solid rgba(68, 172, 54, 0.1);
}

.app__right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.app__right i {
  color: #2FA91F;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(68, 172, 54, 0.2)), to(rgba(68, 172, 54, 0)));
  background: linear-gradient(360deg, rgba(68, 172, 54, 0.2) 0%, rgba(68, 172, 54, 0) 100%);
  border-radius: 13px;
  padding: 4px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.app__right b {
  color: #0F0F0F;
  font-size: 34px;
  font-weight: 600;
}

.app__right b span {
  color: #44AC36;
  display: inline-block;
  font-size: 40px;
  font-weight: 700;
}

.app__right p {
  color: #0F0F0F;
  opacity: 50%;
  line-height: 1.5;
}

.app__right_links {
  font-size: 0;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.map {
  padding: 30px 0;
}

.map__title {
  padding: 20px 0;
}

.map__title h5 {
  font-size: 40px;
  font-weight: 600;
}

.map__body {
  font-size: 0;
  padding: 30px 0;
}

.map__body img {
  border-radius: 21px;
  width: 100%;
  height: 416px;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-hero__title {
  padding: 20px 0;
}

.about-hero__title h1 {
  color: #0F0F0F;
  font-size: 48px;
  font-weight: 700;
}

.about-hero__body {
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
}

.about-hero__left {
  width: 50%;
}

.about-hero__left img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  height: 450px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.about-hero__right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-left: 20px;
}

.about-hero__right::before {
  content: "";
  width: 4px;
  height: 100%;
  background: #B6DFB1;
  border-radius: 26px;
  position: absolute;
  left: -20px;
  top: 0;
}

.about-hero__right b {
  color: #0F0F0F;
  font-size: 40px;
  font-weight: 600;
}

.about-hero__right_item {
  cursor: pointer;
}

.about-hero__right_item p {
  color: #0F0F0F;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 40%;
  padding: 0px 15px;
  font-size: 20px;
  line-height: 1.3;
}

.about-hero__right_item:hover p {
  padding: 10px 15px;
  background: #55B049;
  border-radius: 12px;
  color: #FFF;
  opacity: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.about-hero__item_active {
  position: relative;
}

.about-hero__item_active::before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: #B6DFB1;
  position: absolute;
  left: -48px;
  top: 40%;
}

.about-hero__item_active p {
  padding: 10px 15px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: #55B049;
  border-radius: 12px;
  color: #FFF;
  opacity: 100%;
}

.about-hero__image {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.about-hero__image.active-img {
  opacity: 1;
}

.about-hero__left {
  position: relative;
}

.about-goals {
  padding: 20px 0;
}

.about-goals__title {
  padding: 20px 0;
}

.about-goals__title h2 {
  color: #0F0F0F;
  font-size: 40px;
  font-weight: 600;
}

.about-goals__body {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
}

.about-goals__item {
  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;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 35px;
  border-radius: 16px;
  background: #F4FBFF;
  border: 1px solid #B8C9D3;
  position: relative;
  padding-bottom: 100px;
  width: 50%;
}

.about-goals__item b {
  color: #062702;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
}

.about-goals__item p {
  width: 50%;
  color: #062702;
}

.about-goals__item img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.about-why {
  padding: 20px 0;
}

.about-why__title {
  padding: 20px 0;
}

.about-why__title h2 {
  color: #0F0F0F;
  font-size: 40px;
  font-weight: 600;
}

.about-why__body {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
}

.about-why__item {
  height: 350px;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid #A8CFE7;
  width: 23.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 20px;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  overflow: hidden;
}

.about-why__item .about-why-active-img {
  display: none;
}

.about-why__item img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  width: 70px;
}

.about-why__item p {
  display: none;
}

.about-why__item b {
  opacity: 60%;
  color: #55B049;
  font-size: 24px;
  font-weight: 600;
  position: absolute;
  -webkit-transform: rotate(-90deg) translate(60px, 85px);
  transform: rotate(-90deg) translate(60px, 85px);
  bottom: 20%;
}

.about-why__item_active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #F7FCFF;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  width: 30%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.about-why__item_active img {
  display: none;
  width: 100px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.about-why__item_active .about-why-active-img {
  display: block;
}

.about-why__item_active b {
  position: unset !important;
  -webkit-transform: none !important;
  transform: none !important;
  color: #2687C2;
  font-size: 24px;
  font-weight: 600;
}

.about-why__item_active p {
  -webkit-transition: 1s;
  transition: 1s;
  display: block;
  color: #2687C2;
  font-size: 20px;
  font-weight: 400;
}

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

.about-team__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-team__title h3 {
  color: #0F0F0F;
  font-size: 40px;
  font-weight: 600;
}

.about-team__title_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-team__title_buttons p {
  cursor: pointer;
  color: #44AC36;
  border: 1px solid #44AC36;
  padding: 10px 25px;
  border-radius: 51px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.about-team__title_buttons p:hover {
  background: #44AC36;
  color: #FFF;
}

.about-team__body {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}

.about-team__slide {
  min-width: 24.4%;
  max-width: 24.4%;
  margin-right: 10px;
}

.about-team__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  border-radius: 16px;
  background: #f6f6f6;
}

.about-team__item img {
  margin: 0 auto;
  width: 100%;
  height: 300px;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 20px;
}

.about-team__item b {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.about-team__item p {
  color: #A2A2A2;
  font-size: 18px;
  font-weight: 500;
  font-family: "Raleway";
}

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

.about-region__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-region__title h3 {
  color: #0F0F0F;
  font-size: 40px;
  font-weight: 600;
}

.about-region__title_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-region__title_buttons p {
  cursor: pointer;
  color: #44AC36;
  border: 1px solid #44AC36;
  padding: 10px 25px;
  border-radius: 51px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.about-region__title_buttons p:hover {
  background: #44AC36;
  color: #FFF;
}

.about-region__body {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}

.about-region__slide {
  min-width: 24.4%;
  max-width: 24.4%;
  margin-right: 10px;
}

.about-region__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  border-radius: 16px;
  background: #f6f6f6;
}

.about-region__item img {
  margin: 0 auto;
  width: 100%;
  height: 300px;
  border-radius: 25px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 30px;
}

.about-region__item b {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.about-region__item p {
  color: #A2A2A2;
  font-size: 18px;
  font-weight: 500;
  font-family: "Raleway";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 10px;
}

.controller-contact-info {
  margin-top: auto;
  text-align: left;
}

.controller-phone,
.controller-email {
  margin: 5px 0;
  font-size: 13px;
}

.controller-phone i,
.controller-email i {
  color: #2ea81e;
}

.controller-phone a,
.controller-email a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
  color: #A2A2A2;
  font-size: 18px;
  font-family: "Raleway";

}

.controller-email a {
  word-break: break-all;
}

.controller-phone a:hover,
.controller-email a:hover {
  color: #2ea81e;
}

.about-region__item p i {
  color: #44AC36;
  font-size: 14px;
}

.about-jobs {
  padding: 20px 0 100px;
}

.about-jobs__title {
  padding: 20px 0;
}

.about-jobs__title h4 {
  color: #0F0F0F;
  font-size: 40px;
  font-weight: 600;
}

.about-jobs__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 16px;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px 0;
}

.about-jobs__item {
  width: 32.5%;
  padding: 15px 20px;
  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;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  border-width: 1px 1px 1px 20px;
  border-style: solid;
  border-color: #BDE3B9;
  border-radius: 12px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.about-jobs__item:hover {
  border-width: 1px 1px 1px 25px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.about-jobs__item b {
  font-size: 24px;
  font-weight: 500;
}

.about-jobs__item p {
  font-size: 20px;
  color: #062702;
}

.about-jobs__item a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 10px;
  color: #29668B;
}

.about-jobs__item a:hover {
  text-decoration: underline;
}

.show-more-jobs,
.hide-more-jobs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  color: #29668B;
}

.footer {
  padding: 40px 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 40px 0;
}

.footer__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  width: 20%;
}

.footer__col:nth-child(1) {
  width: 30%;
}

.footer__col b {
  color: #040E12;
  font-size: 20px;
  font-weight: 600;
}

.footer__col a {
  text-decoration: none;
  color: #A1A8AC;
  font-size: 16px;
}

.footer__col a:hover {
  text-decoration: underline;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__row p {
  color: #A1A8AC;
  font-size: 20px;
  font-weight: 400;
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.footer__logo img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__logo span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  color: #040E12;
}

.footer__logo span b {
  color: #040E12;
  font-size: 26px;
  font-weight: 700;
}

.footer__logo span p {
  font-family: "Raleway";
  font-size: 20px;
  color: #9AA9B2;
  font-weight: 500;
}

.footer__logo span:hover {
  text-decoration: underline;
}

.footer__social {
  gap: 15px;
  margin-top: 20px;
}

.footer__social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  width: 40px;
  height: 40px;
  background: #DFF1FB;
  border-radius: 100%;
  font-size: 20px;
  color: #29668B;
}

.footer__social a:hover {
  text-decoration: none;
}

.footer_button {
  text-align: center;
  padding: 15px;
  color: #FFF !important;
  background: #2FA91F;
  border-radius: 12px;
}

.reestr {
  padding: 20px 0 100px;
}

.reestr__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 50px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 20px 0;
}

.reestr__left {
  width: 20%;
}

.reestr__left form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.reestr__filter_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.reestr__filter_col b {
  font-size: 20px;
  font-family: "Raleway";
  font-weight: 600;
  margin-bottom: 10px;
}

.reestr__filter_col hr {
  width: 100%;
  height: 1px;
  border: 0;
  outline: none;
  background: #44AC36;
  opacity: 20%;
  display: inline-block;
  margin-top: 20px;
}

.reestr__select {
  position: relative;
}

.reestr__select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 12px;
  border: 1px solid #EDEDED;
  border-radius: 6px;
  color: #B3B5B7;
  font-size: 16px;
  font-family: "Raleway";
  outline: none;
}

.reestr__select::after {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: "\f078";
  font: var(--fa-font-solid);
  position: absolute;
  top: 50%;
  right: 15px;
  font-size: 13px;
  color: #B3B5B7;
}

.reestr__filter_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0px;
}

.reestr__filter_row .category-item {
  color: #1E1E1E;
  font-weight: 500;
  font-size: 16px;
  font-family: "Raleway";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.reestr__filter_row input[type=checkbox] {
  accent-color: #b4deaf;
  width: 15px;
  height: 15px;
  border-radius: 20px;
}

.filter-submit-btn {
  font-size: 20px;
  color: #FFF;
  text-align: center;
  padding: 10px 20px;
  border-radius: 8px;
  background: #44AC36;
  border: 0;
  outline: none;
  cursor: pointer;
  margin-bottom: 10px;
}

.filter-reset-btn {
  font-size: 20px;
  color: #44AC36;
  background: #FFF;
  text-align: center;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #44AC36;
  outline: none;
  cursor: pointer;
}

/* Контейнер для полей ввода даты */
.date-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 10px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.date-input-group {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* Стиль для текста "Дата с" / "Дата по" */
.date-input-group label {
  font-size: 0.9em;
  color: #6c757d;
  margin-bottom: 5px;
  font-weight: 600;
}

.date-input-group input[type=date] {
  width: 100%;
  padding: 5px 8px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 13px;
  color: #495057;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.date-input-group input[type=date]:focus {
  border-color: #28a745;
  -webkit-box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.25);
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.25);
  outline: none;
  background-color: #ffffff;
}

.reestr__submit {
  margin-top: -25px;
}

.reestr__submit input {
  font-size: 20px;
  color: #FFF;
  text-align: center;
  padding: 10px 20px;
  border-radius: 8px;
  background: #44AC36;
  border: 0;
  outline: none;
  cursor: pointer;
}

.reestr__right {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.reestr__right_filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  width: 100%;
}

.reestr__right_filter_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.reestr__right_filter_row b {
  font-size: 20px;
  font-weight: 600;
  font-family: "Raleway";
}

.reestr__search {
  position: relative;
  width: 67%;
}

.reestr__search:after {
  position: absolute;
  right: 20px;
  top: 63%;
}

.reestr__search input[type=search]::-webkit-search-decoration,
.reestr__search input[type=search]::-webkit-search-cancel-button,
.reestr__search input[type=search]::-webkit-search-results-button,
.reestr__search input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.reestr__search input {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  outline: none;
  border: 1px solid #EDEDED;
  border-radius: 6px;
  font-family: "Raleway";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.reestr__search input::-webkit-input-placeholder {
  color: #B3B5B7;
}

.reestr__search input::-moz-placeholder {
  color: #B3B5B7;
}

.reestr__search input:-ms-input-placeholder {
  color: #B3B5B7;
}

.reestr__search input::-ms-input-placeholder {
  color: #B3B5B7;
}

.reestr__search input::placeholder {
  color: #B3B5B7;
}

.reestr__sort {
  position: relative;
  width: 33%;
}

.reestr__sort select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 12px;
  border: 1px solid #EDEDED;
  border-radius: 6px;
  color: #B3B5B7;
  font-size: 16px;
  font-family: "Raleway";
  outline: none;
}

.reestr__sort::after {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: "\f078";
  font: var(--fa-font-solid);
  position: absolute;
  top: 65%;
  right: 15px;
  font-size: 13px;
  color: #B3B5B7;
}

.reestr__right_items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.reestr__right_item {
  width: 32%;
  background: #FBFBFB;
  border-radius: 16px;
  text-align: center;
}

.reestr__right_item span {
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 4px 8px;
  width: fit-content;
  gap: 4px;
  margin-top: 5px;
}

.reestr__right_item span>img {
  width: 20px !important;
  height: 20px !important;
}

.reestr__right_item a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 10px;
  padding: 30px 20px;
}

.reestr__right_item a img {
  width: 111px;
  height: 110px;
  -o-object-fit: contain;
  object-fit: contain;
}

.reestr__right_item a b {
  color: #349628;
  font-size: 28px;
  font-weight: 500;
  margin-top: 20px;
}

.reestr__right_item a p {
  font-size: 20px;
  color: #0F0F0F;
  opacity: 60%;
}

.reestr__logo_wrapper {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  border: 1px solid #85C07E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: white;
  overflow: hidden;
}

.jobs {
  padding: 20px 0;
}

.jobs__body {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  background: #f7f7f7;
  padding: 30px;
  border-radius: 24px;
}

.jobs__left {
  width: 31%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.jobs__left_img {
  font-size: 0;
  width: 100%;
  height: auto;
}

.jobs__left_img img {
  width: 100%;
  height: 315px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.job-descr {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px !important;
}

.job-descr p {
  text-align: justify !important;
  padding-left: 0 !important;
}

.jobs__left_info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  border-radius: 16px;
  padding: 20px 24px;
  background: #FFF;
}

.jobs__left_info b {
  font-size: 20px;
  font-weight: 600;
}

.jobs__left_info p {
  color: #A2A2A2;
  font-family: "Raleway";
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}

.jobs__left_info a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  font-family: "Raleway";
  color: #000;
  margin-top: 5px;
}

.jobs__left_info a:hover {
  text-decoration: underline;
}

.jobs__left_info a i {
  color: #44AC36;
  width: 7%;
}

.jobs__right {
  width: 70%;
  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;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  background: #FFF;
  padding: 20px;
  border-radius: 16px;
}

.jobs__right span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 10px;
  background: #E6F3FF;
  color: #5593CD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  font-family: "Raleway";
  font-weight: 500;
  border-radius: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.jobs__right h1 {
  font-size: 40px;
  font-weight: 600;
}

.jobs__right_body {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  width: 100%;
}

.jobs__right_body span {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  background: none;
  padding: 0;
}

.jobs__right_body span b {
  position: relative;
  color: #606060;
  font-size: 20px;
  font-weight: 500;
  font-family: Roboto;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 25%;
  flex: 1 0 25%;
}

.jobs__right_body span p {
  padding-left: 10px;
  background: #FFF;
  text-align: right;
  color: #0F0F0F;
  font-size: 20px;
  font-weight: 400;
  font-family: Roboto;
}

.jobs__right_body span .jobs_content {
  text-align: justify;
}

.articles {
  padding: 20px 0;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
}

.breadcrumbs a {
  font-family: "Raleway";
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  text-decoration: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.breadcrumbs a i {
  font-size: 10px;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs p {
  text-decoration: none;
  font-weight: 600;
  font-family: "Raleway";
  color: #000;
  opacity: 40%;
}

.articles__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px;
  padding: 20px 0 100px;
}

.articles__body .news__item {
  width: 32%;
}

.articles__body .news__item img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagination a {
  text-decoration: none;
  padding: 5px;
  color: #979797;
  font-size: 20px;
  border-radius: 6px;
  font-weight: 600;
}

.pagination a:hover {
  color: #44AC36 !important;
}

.active-pagination {
  border: 1px solid #44AC36;
  border-radius: 6px;
  padding: 5px 10px !important;
  color: #44AC36 !important;
}

.single {
  padding: 10px 0;
}

.single__body {
  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;
  padding: 20px 0 60px;
}

.single__img {
  font-size: 0;
  width: 100%;
  height: 500px;
}

.single__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  border-radius: 16px;
}

.single__video {
  font-size: 0;
  width: 100%;
  height: 570px;
  border-radius: 12px;
}

.single__video video {
  width: 100%;
  border-radius: 16px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.single__video iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}

.single__info {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.single__info_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.single__info_row span {
  display: inline-block;
  color: #44AC36;
  padding: 2px 14px;
  border: 1px solid #44ac36;
  border-radius: 40px;
  font-style: italic;
}

.single__info_row_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 10px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.single__info_row_item i {
  color: #44AC36;
  font-size: 18px;
}

.single__info_row_item p {
  font-style: italic;
  color: #707070;
}

.single__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.single__content h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 15px;
}

.single__content b {
  font-weight: 700;
}

.reestr-single {
  padding: 30px 0;
}

.reestr-single__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  background: #ededed;
  padding: 20px;
  border-radius: 24px;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
}

.reestr-single__left {
  width: 30%;
  font-size: 0;
  line-height: 0;
  height: auto;
  border-radius: 16px;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #FFF;
}

.reestr-single__left img {
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -o-object-fit: contain;
  object-fit: contain;
  pointer-events: none;
}

.reestr-single__mid {
  width: 50%;
  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;
  background: #FFF;
  border-radius: 16px;
  padding: 20px;
}

.reestr-single__mid span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px 8px;
  border-radius: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.reestr-single__mid span img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.reestr-single__mid h1 {
  font-size: 40px;
  font-weight: 600;
}

.reestr-active {
  background: #E6F3FF;
  color: #5593CD;
}

.reestr-expired {
  background: #FFEAD2;
  color: #DC8D37;
}

.reestr-stopped {
  background: #FFE3DF;
  color: #CD5555;
}

.reestr-single__mid_body {
  margin-top: 10px;
  overflow: hidden;
}

.reestr-single__mid_body span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.reestr-single__mid_body span p {
  font-weight: 500;
  color: #A6AAA5;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 25%;
  flex: 1 0 25%;
}

.reestr-single__mid_body span p:after {
  z-index: -1;
  text-overflow: clip;
  white-space: nowrap;
  content: "..................................................................................................................................................................................................................................................................................................................";
  color: #e4e6e4;
  position: absolute;
  bottom: 0;
  font-size: 12px;
}

.reestr-single__mid_body span b {
  color: #0F0F0F;
  font-weight: 500;
  padding-left: 10px;
  background: #FFF;
  text-align: right;
}

.reestr-single__right {
  background: #FFF;
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  border-radius: 16px;
  padding: 20px;
}

.reestr-single__ava {
  font-size: 0;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 100%;
}

.reestr-single__ava img {
  border-radius: 100%;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  object-fit: cover;
}

.reestr-single__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.reestr-single__name b {
  font-size: 20px;
  font-weight: 600;
}

.reestr-single__name p {
  color: #A2A2A2;
  font-size: 18px;
}

.reestr-single__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.reestr-single__phone a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  font-family: "Raleway";
  font-size: 18px;
  font-weight: 500;
}

.reestr-single__phone a:hover {
  text-decoration: underline;
}

.reestr-single__phone a i {
  width: 15px;
  font-size: 15px;
  color: #44AC36;
}

/* form */
.wpcf7-spinner {
  display: none;
}

.form_bg {
  background-repeat: no-repeat;
  background-size: cover;
}

.form {
  padding: 20px 0;
}

.form__title {
  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;
  padding: 20px 0;
}

.form__title span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 20px;
  background: #DEF3FF;
  color: #4E81E9;
  border: 1px solid #BAE5FF;
  border-radius: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.form__title h1 {
  color: #0F0F0F;
  font-size: 40px;
  font-weight: 600;
}

.form__body {
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
  padding: 40px 60px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 20px rgba(148, 168, 179, 0.08);
  box-shadow: 0px 0px 20px rgba(148, 168, 179, 0.08);
  border-radius: 32px;
  position: relative;
}

.form__body:after {
  content: "";
  width: 1px;
  top: 80px;
  height: 80%;
  position: absolute;
  left: 50%;
  background: #D5D5D5;
}

.form__left {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.form__left b {
  color: #0F0F0F;
  font-size: 24px;
  font-weight: 500;
}

.form__left form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.form__left form input {
  width: 100%;
  border: 1px solid #CFCFCF;
  padding: 17px 24px;
  border-radius: 48px;
  outline: none;
  font-size: 16px;
  color: #959595;
}

.form__left form select {
  width: 100%;
  border: 1px solid #CFCFCF;
  padding: 17px 24px;
  border-radius: 48px;
  outline: none;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #959595;
}

.form__left form textarea {
  height: 100px;
  resize: none;
  width: 100%;
  border: 1px solid #CFCFCF;
  padding: 17px 24px;
  border-radius: 22px;
  outline: none;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #959595;
}

.form__left form .form__agreeement {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  color: #868686;
  font-family: "Raleway";
  font-size: 14px;
}

.form__left form .form__agreeement input {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.form__left form input[type=submit] {
  background: #44AC36;
  color: #FFF;
  cursor: pointer;
  font-weight: 500;
}

.form__left form input[type=checkbox] {
  accent-color: #b4deaf;
  width: 15px;
  height: 15px;
  border-radius: 20px;
}

.form__left form input::-webkit-outer-spin-button,
.form__left form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form__left form input[type=number] {
  -moz-appearance: textfield;
}

.form__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
  width: 100%;
}

.form__col span {
  width: 100%;
}

span.wpcf7-list-item.first.last>label {
  display: flex;
  justify-content: start;
  gap: 10px;
  align-items: center;
}

.form__row {
  width: 100%;
}

.form__right {
  width: 45%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.form__right b {
  color: #0F0F0F;
  font-size: 24px;
  font-weight: 500;
}

.form__right_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  border: 1px solid #4E81E9;
  padding: 20px 40px;
  border-radius: 16px;
  background: #F4FBFF;
}

.form__right_info a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  color: #29668B;
  font-size: 20px;
}

.form__right_info a:hover {
  text-decoration: underline;
}

.form__right_map {
  width: 100%;
  height: 280px;
  border: 1px solid #44AC36;
  border-radius: 16px;
  overflow: hidden;
}

.form__right_map iframe {
  width: 100%;
  height: 100%;
}

.logo_map {
  width: 50px !important;
  height: 50px !important;
  object-fit: contain !important;
}

#halalMap>div:nth-child(2) {
  display: none !important;
}

/* Fixed widgets */
.floating-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  padding: 0;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.floating-btn:active {
  transform: translateY(-1px);
}

.floating-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scroll-top-btn {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}