/* MEDIA MIXINS*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #332942;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

.header-top {
  background-color: #332942;
  padding: 16px 0;
}
.header-top .header-top__block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  font-size: 14px;
}
.header-top .header-top__block .header-top__left {
  flex: 0 0 auto;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top .header-top__block .header-top__right {
  flex: 0 0 auto;
  width: 20%;
}
.header-top .header-top__block .header-top__right .header-top__social-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
}

.container {
  margin: 0 auto;
}
@media (min-width: 1399.98px) {
  .container {
    max-width: 1280px;
  }
}

.section-header {
  width: 50%;
  margin: 0 auto 56px auto;
  text-align: center;
}
.section-header.left {
  width: auto;
  text-align: left;
  margin: 0 0 48px 0;
  margin-bottom: 48px;
}
.section-header .section-header__green-title {
  color: #0FC36D;
  font-size: 24px;
  font-weight: 600;
  line-height: 44px; /* 183.333% */
  margin-bottom: 8px;
}
.section-header .section-header__main-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 56px; /* 140% */
}
.section-header .section-header__subtitle {
  margin-top: 24px;
  color: #726A7E;
}

.breadcrumb {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 4px;
}
.breadcrumb.service_home_breadcrumb {
  margin-bottom: 100px;
}
.breadcrumb.blog_breadcrumb {
  margin-bottom: 55px;
}
.breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%; /* 16px */
  opacity: 0.5;
}
.breadcrumb .breadcrumb-item.active {
  opacity: 1;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #0FC36D;
}

header {
  background-color: #fff;
}
header .header-bottom {
  padding: 24px 0;
}
header .header-bottom .header-bottom__block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
header .header-bottom .header-bottom__block .header-bottom__logo {
  flex: 0 0 auto;
  width: 20%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0FC36D;
  font-size: 32px;
  font-weight: 700;
  line-height: 44px; /* 137.5% */
}
header .header-bottom .header-bottom__block .header-bottom__logo svg {
  width: 44px;
  max-width: 44px;
}
header .header-bottom .header-bottom__block .header-bottom__navigation {
  flex: 0 0 auto;
  width: 25%;
}
header .header-bottom .header-bottom__block .header-bottom__navigation ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-bottom .header-bottom__block .header-bottom__navigation ul li {
  font-weight: 600;
  font-size: 18px;
}
header .header-bottom .header-bottom__block .header-bottom__navigation ul li.dropdown {
  position: relative;
}
header .header-bottom .header-bottom__block .header-bottom__navigation ul li.dropdown button {
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #332942;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px; /* 133.333% */
}
header .header-bottom .header-bottom__block .header-bottom__navigation ul li.dropdown .dropdown_menu {
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 40px;
  border: 1px solid #332942;
  right: 0;
  left: 0;
  margin: auto;
  width: 150px;
  padding: 16px;
  border-radius: 16px;
  background-color: #fff;
}
header .header-bottom .header-bottom__block .header-bottom__navigation ul li.dropdown .dropdown_menu.none {
  display: none;
}
header .header-bottom .header-bottom__block .header-bottom__action {
  flex: 0 0 auto;
  width: 29%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
header .header-bottom .header-bottom__block .header-bottom__action button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 12px;
  width: 48px;
  background: #F6F7ED;
  border: none;
}
header .header-bottom .header-bottom__block .header-bottom__action button svg {
  width: 24px;
  max-width: 24px;
}
header .header-bottom .header-bottom__block .header-bottom__action button.header-bottom__lang-button {
  color: #0FC36D;
  font-size: 14px;
  font-weight: 600;
}
header .header-bottom .header-bottom__block .header-bottom__action a {
  display: inline-block;
  padding: 16px 20px;
  border-radius: 12px;
  background: #0FC36D;
  box-shadow: 0px 8px 32px 0px rgba(15, 195, 109, 0.32);
  color: #FFF;
  font-weight: 600;
  line-height: 100%; /* 16px */
}

main {
  margin-bottom: 120px;
  background-color: #F6F7ED;
}
main .main__block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
main .main__block .main-info {
  flex: 0 0 auto;
  width: 48%;
}
main .main__block .main-info .main-info__green-text {
  color: #0FC36D;
  font-size: 24px;
  font-weight: 600;
  line-height: 44px; /* 183.333% */
  margin-bottom: 8px;
}
main .main__block .main-info .main-info__title-text {
  font-size: 56px;
  font-weight: 700;
  line-height: 72px; /* 128.571% */
  margin-bottom: 24px;
}
main .main__block .main-info .main-info__subtitle-text {
  color: #726A7E;
  margin-bottom: 56px;
}
main .main__block .main-info .main-info__action {
  display: flex;
  align-items: center;
  gap: 24px;
}
main .main__block .main-info .main-info__action a {
  display: inline-block;
  padding: 15px 20px;
  border-radius: 12px;
  font-weight: 600;
  line-height: 100%; /* 16px */
}
main .main__block .main-info .main-info__action a.to-connect {
  color: #fff;
  background: #0FC36D;
  box-shadow: 0px 8px 32px 0px rgba(15, 195, 109, 0.32);
}
main .main__block .main-info .main-info__action a.our-services {
  color: #fff;
  color: #0FC36D;
  border: 1px solid #0FC36D;
}
main .main__block .main__right {
  flex: 0 0 auto;
  width: 49%;
}
main .main__block .main__right img.woman {
  width: 100%;
  max-width: 615px;
}

.facilities-section {
  margin-bottom: 120px;
}
.facilities-section .facilities-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.facilities-section .facilities-block .facilities-block__item {
  flex: 0 0 auto;
  width: 32.1%;
  text-align: center;
}
.facilities-section .facilities-block .facilities-block__item .facilities-block__img {
  margin-bottom: 16px;
}
.facilities-section .facilities-block .facilities-block__item .facilities-block__img svg {
  width: 48px;
}
.facilities-section .facilities-block .facilities-block__item .facilities-block__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px; /* 144.444% */
  margin-bottom: 12px;
}
.facilities-section .facilities-block .facilities-block__item .facilities-block__info {
  color: #726A7E;
  font-size: 14px;
  line-height: 22px; /* 157.143% */
}

.offer-section {
  margin-bottom: 170px;
}
.offer-section .offer-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.offer-section .offer-block .offer-block__item {
  flex: 0 0 auto;
  width: 23%;
  padding: 24px;
  border-radius: 32px;
  background: #F6F7ED;
}
.offer-section .offer-block .offer-block__item .offer-block__img {
  text-align: center;
  margin-bottom: 16px;
}
.offer-section .offer-block .offer-block__item .offer-block__img img {
  width: 100%;
}
.offer-section .offer-block .offer-block__item .offer-block__name {
  color: #332942;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.offer-section .offer-block .offer-block__item .offer-block__info {
  color: #726A7E;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px; /* 157.143% */
  margin-bottom: 16px;
}
.offer-section .offer-block .offer-block__item .offer-block__action {
  display: inline-block;
  text-align: center;
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid #0FC36D;
  color: #0FC36D;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%; /* 16px */
  transition: 0.3s all ease;
}
.offer-section .offer-block .offer-block__item .offer-block__action:hover {
  background: #0FC36D;
  box-shadow: 0px 8px 32px 0px rgba(15, 195, 109, 0.32);
  color: #fff;
}

.our-app-block {
  position: relative;
  margin-bottom: 170px;
  border-radius: 32px;
  background: #F6F7ED;
  padding: 48px 108px;
}
.our-app-block .our-app-block__links {
  display: flex;
  align-items: center;
  gap: 15px;
}
.our-app-block .our-app-block__links a img {
  width: 162px;
}
.our-app-block .our-app-block__phone {
  position: absolute;
  top: -50px;
  right: 108px;
  margin: auto;
}
.our-app-block .our-app-block__phone img {
  max-width: 228px;
}

.comment-section {
  margin-bottom: 120px;
}
.comment-section .comments-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.comment-section .comments-block .comments-block__item {
  flex: 0 0 auto;
  width: 49.2%;
  text-align: center;
}
.comment-section .comments-block .comments-block__item svg {
  margin-bottom: 16px;
}
.comment-section .comments-block .comments-block__item .comments-block__info {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px; /* 133.333% */
}
.comment-section .comments-block .comments-block__item .comment-subject .comment-subject__img {
  margin-bottom: 8px;
}
.comment-section .comments-block .comments-block__item .comment-subject .comment-subject__img img {
  width: 32px;
  max-width: 32px;
}
.comment-section .comments-block .comments-block__item .comment-subject .comment-subject__name {
  color: #726A7E;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px; /* 162.5% */
  margin-bottom: 12px;
}
.comment-section .comments-block .comments-block__item .comment-subject .comment-subject__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.comment-section .comments-block .comments-block__item .comment-subject .comment-subject__stars img {
  width: 20px;
}

.partners-section {
  margin-bottom: 120px;
}
.partners-section .partners-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.partners-section .partners-block .partners-block__item {
  flex: 0 0 auto;
  width: 15%;
  border-radius: 16px;
  background: #F6F7ED;
  padding: 22px 42px;
}
.partners-section .partners-block .partners-block__item img {
  width: 100%;
  max-width: 113px;
}

footer .footer-head {
  padding: 80px 80px 105px 80px;
  background: #F6F7ED;
  text-align: center;
}
footer .footer-head .footer-head__main {
  text-align: center;
  padding: 48px 0;
  background-color: #fff;
  border-radius: 32px;
  margin-bottom: 56px;
}
footer .footer-head .footer-head__main .section-header {
  margin: 0 auto 48px auto;
  width: 50%;
}
footer .footer-head .footer-head__main .footer-head__action {
  padding: 16px 20px;
  border-radius: 12px;
  background: #0FC36D;
  box-shadow: 0px 8px 32px 0px rgba(15, 195, 109, 0.32);
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%; /* 16px */
  border: none;
}
footer .footer-head .footer-logo {
  display: flex;
  align-items: center;
  flex-direction: column;
}
footer .footer-head .footer-logo svg {
  margin-bottom: 16px;
}
footer .footer-head .footer-logo .footer-logo__text {
  color: #0FC36D;
  font-size: 32px;
  font-weight: 700;
  line-height: 44px; /* 137.5% */
  margin-bottom: 12px;
}
footer .footer-head .footer-logo .footer-logo__subtitle {
  color: #726A7E;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

/* MEDIA MIXINS*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #332942;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

.header-top {
  background-color: #332942;
  padding: 16px 0;
}
.header-top .header-top__block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  font-size: 14px;
}
.header-top .header-top__block .header-top__left {
  flex: 0 0 auto;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top .header-top__block .header-top__right {
  flex: 0 0 auto;
  width: 20%;
}
.header-top .header-top__block .header-top__right .header-top__social-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
}

.container {
  margin: 0 auto;
}
@media (min-width: 1399.98px) {
  .container {
    max-width: 1280px;
  }
}

.section-header {
  width: 50%;
  margin: 0 auto 56px auto;
  text-align: center;
}
.section-header.left {
  width: auto;
  text-align: left;
  margin: 0 0 48px 0;
  margin-bottom: 48px;
}
.section-header .section-header__green-title {
  color: #0FC36D;
  font-size: 24px;
  font-weight: 600;
  line-height: 44px; /* 183.333% */
  margin-bottom: 8px;
}
.section-header .section-header__main-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 56px; /* 140% */
}
.section-header .section-header__subtitle {
  margin-top: 24px;
  color: #726A7E;
}

.breadcrumb {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 4px;
}
.breadcrumb.service_home_breadcrumb {
  margin-bottom: 100px;
}
.breadcrumb.blog_breadcrumb {
  margin-bottom: 55px;
}
.breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%; /* 16px */
  opacity: 0.5;
}
.breadcrumb .breadcrumb-item.active {
  opacity: 1;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #0FC36D;
}

.service_page main {
  padding-top: 32px;
}

/* MEDIA MIXINS*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #332942;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

.header-top {
  background-color: #332942;
  padding: 16px 0;
}
.header-top .header-top__block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  font-size: 14px;
}
.header-top .header-top__block .header-top__left {
  flex: 0 0 auto;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top .header-top__block .header-top__right {
  flex: 0 0 auto;
  width: 20%;
}
.header-top .header-top__block .header-top__right .header-top__social-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
}

.container {
  margin: 0 auto;
}
@media (min-width: 1399.98px) {
  .container {
    max-width: 1280px;
  }
}

.section-header {
  width: 50%;
  margin: 0 auto 56px auto;
  text-align: center;
}
.section-header.left {
  width: auto;
  text-align: left;
  margin: 0 0 48px 0;
  margin-bottom: 48px;
}
.section-header .section-header__green-title {
  color: #0FC36D;
  font-size: 24px;
  font-weight: 600;
  line-height: 44px; /* 183.333% */
  margin-bottom: 8px;
}
.section-header .section-header__main-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 56px; /* 140% */
}
.section-header .section-header__subtitle {
  margin-top: 24px;
  color: #726A7E;
}

.breadcrumb {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 4px;
}
.breadcrumb.service_home_breadcrumb {
  margin-bottom: 100px;
}
.breadcrumb.blog_breadcrumb {
  margin-bottom: 55px;
}
.breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%; /* 16px */
  opacity: 0.5;
}
.breadcrumb .breadcrumb-item.active {
  opacity: 1;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #0FC36D;
}

.service_home main {
  padding: 32px 0 100px 0;
}
.service_home main .main__block .main__right {
  position: relative;
}
.service_home main .main__block .main__right a.popup_video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-26px, -26px);
}
.service_home main .main__block .main__right a.popup_video img {
  max-width: 56px;
}

/* MEDIA MIXINS*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #332942;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

.header-top {
  background-color: #332942;
  padding: 16px 0;
}
.header-top .header-top__block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  font-size: 14px;
}
.header-top .header-top__block .header-top__left {
  flex: 0 0 auto;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top .header-top__block .header-top__right {
  flex: 0 0 auto;
  width: 20%;
}
.header-top .header-top__block .header-top__right .header-top__social-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
}

.container {
  margin: 0 auto;
}
@media (min-width: 1399.98px) {
  .container {
    max-width: 1280px;
  }
}

.section-header {
  width: 50%;
  margin: 0 auto 56px auto;
  text-align: center;
}
.section-header.left {
  width: auto;
  text-align: left;
  margin: 0 0 48px 0;
  margin-bottom: 48px;
}
.section-header .section-header__green-title {
  color: #0FC36D;
  font-size: 24px;
  font-weight: 600;
  line-height: 44px; /* 183.333% */
  margin-bottom: 8px;
}
.section-header .section-header__main-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 56px; /* 140% */
}
.section-header .section-header__subtitle {
  margin-top: 24px;
  color: #726A7E;
}

.breadcrumb {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 4px;
}
.breadcrumb.service_home_breadcrumb {
  margin-bottom: 100px;
}
.breadcrumb.blog_breadcrumb {
  margin-bottom: 55px;
}
.breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%; /* 16px */
  opacity: 0.5;
}
.breadcrumb .breadcrumb-item.active {
  opacity: 1;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #0FC36D;
}

.about_page main {
  padding: 32px 0 100px 0;
}
.about_page main .main__block .main-info .main-info__about-us {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}
.about_page main .main__block .main-info .main-info__about-us .main-info-name {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%; /* 16px */
  opacity: 0.5;
  margin-bottom: 8px;
}
.about_page main .main__block .main-info .main-info__about-us .main-info-number {
  color: #0FC36D;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px; /* 150% */
}
.about_page main .main__block .main__right {
  position: relative;
}
.about_page main .main__block .main__right a.popup_video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-26px, -26px);
}
.about_page main .main__block .main__right a.popup_video img {
  max-width: 56px;
}
.about_page .facilities-section {
  margin-bottom: 170px;
}

/* MEDIA MIXINS*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #332942;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

.header-top {
  background-color: #332942;
  padding: 16px 0;
}
.header-top .header-top__block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  font-size: 14px;
}
.header-top .header-top__block .header-top__left {
  flex: 0 0 auto;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top .header-top__block .header-top__right {
  flex: 0 0 auto;
  width: 20%;
}
.header-top .header-top__block .header-top__right .header-top__social-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
}

.container {
  margin: 0 auto;
}
@media (min-width: 1399.98px) {
  .container {
    max-width: 1280px;
  }
}

.section-header {
  width: 50%;
  margin: 0 auto 56px auto;
  text-align: center;
}
.section-header.left {
  width: auto;
  text-align: left;
  margin: 0 0 48px 0;
  margin-bottom: 48px;
}
.section-header .section-header__green-title {
  color: #0FC36D;
  font-size: 24px;
  font-weight: 600;
  line-height: 44px; /* 183.333% */
  margin-bottom: 8px;
}
.section-header .section-header__main-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 56px; /* 140% */
}
.section-header .section-header__subtitle {
  margin-top: 24px;
  color: #726A7E;
}

.breadcrumb {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 4px;
}
.breadcrumb.service_home_breadcrumb {
  margin-bottom: 100px;
}
.breadcrumb.blog_breadcrumb {
  margin-bottom: 55px;
}
.breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%; /* 16px */
  opacity: 0.5;
}
.breadcrumb .breadcrumb-item.active {
  opacity: 1;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #0FC36D;
}

.blog_page header {
  margin-bottom: 35px;
}
.blog_page .offer-section .search-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: var(--icon-size, 24px);
  background: #F6F7ED;
  padding: 16px;
  margin-bottom: 35px;
}
.blog_page .offer-section .search-block .search-block__buttons {
  flex: 0 0 auto;
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog_page .offer-section .search-block .search-block__buttons button {
  border: none;
  padding: 12px 16px;
  border-radius: 16px;
  background: transparent;
  color: #808080;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%; /* 16px */
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog_page .offer-section .search-block .search-block__buttons button span {
  display: none;
}
.blog_page .offer-section .search-block .search-block__buttons button.active {
  background-color: #0FC36D;
  color: #FFF;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.blog_page .offer-section .search-block .search-block__buttons button.active span {
  display: block;
  width: 32px;
  height: 32px;
  padding: 10px;
  border-radius: 50%;
  background: #FFF;
  text-align: center;
  color: #808080;
  font-size: 12px;
  font-weight: 700;
  line-height: 100%; /* 12px */
}
.blog_page .offer-section .search-block .search-block__search {
  flex: 0 0 auto;
  width: 23%;
  padding-left: 30px;
  border-left: 1px solid #786868;
}
.blog_page .offer-section .search-block .search-block__search .search-block__input {
  position: relative;
}
.blog_page .offer-section .search-block .search-block__search .search-block__input input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #E3E2E2;
  background: #FFF;
  padding: 16px 16px 16px 52px;
  font-size: 16px;
  color: #332942;
  font-weight: 700;
  line-height: 24px; /* 150% */
}
.blog_page .offer-section .search-block .search-block__search .search-block__input input::-moz-placeholder {
  color: #B7B4BB;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.blog_page .offer-section .search-block .search-block__search .search-block__input input::placeholder {
  color: #B7B4BB;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.blog_page .offer-section .search-block .search-block__search .search-block__input input:focus {
  outline: none;
}
.blog_page .offer-section .search-block .search-block__search .search-block__input::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 16px;
  content: " ";
  background-image: url("../images/search_icon.png");
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
}
.blog_page .offer-section .offer-block {
  justify-content: space-between;
}
.blog_page .offer-section .offer-block .offer-block__item .offer-block__img {
  margin-bottom: 16px;
}
.blog_page .offer-section .offer-block .offer-block__item .offer-block__tag {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 8px;
  background: #0FC36D;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px; /* 150% */
  margin-bottom: 18px;
}

/* MEDIA MIXINS*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #332942;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

.header-top {
  background-color: #332942;
  padding: 16px 0;
}
.header-top .header-top__block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  font-size: 14px;
}
.header-top .header-top__block .header-top__left {
  flex: 0 0 auto;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top .header-top__block .header-top__right {
  flex: 0 0 auto;
  width: 20%;
}
.header-top .header-top__block .header-top__right .header-top__social-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
}

.container {
  margin: 0 auto;
}
@media (min-width: 1399.98px) {
  .container {
    max-width: 1280px;
  }
}

.section-header {
  width: 50%;
  margin: 0 auto 56px auto;
  text-align: center;
}
.section-header.left {
  width: auto;
  text-align: left;
  margin: 0 0 48px 0;
  margin-bottom: 48px;
}
.section-header .section-header__green-title {
  color: #0FC36D;
  font-size: 24px;
  font-weight: 600;
  line-height: 44px; /* 183.333% */
  margin-bottom: 8px;
}
.section-header .section-header__main-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 56px; /* 140% */
}
.section-header .section-header__subtitle {
  margin-top: 24px;
  color: #726A7E;
}

.breadcrumb {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 4px;
}
.breadcrumb.service_home_breadcrumb {
  margin-bottom: 100px;
}
.breadcrumb.blog_breadcrumb {
  margin-bottom: 55px;
}
.breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%; /* 16px */
  opacity: 0.5;
}
.breadcrumb .breadcrumb-item.active {
  opacity: 1;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #0FC36D;
}/*# sourceMappingURL=main.css.map */