*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --color-main: #ffeef5;
  --color-accent: #FE3385;
  --container-width: 1200px;
  --padding: 15px;
  --transition: 0.3s ease;
  --font-family: "Onest", sans-serif;
  --second-family: "Inter", sans-serif;
  --third-family: "Akrobat", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-weight: 400;
  text-rendering: optimizeSpeed;
  color: #615b62;
  font-family: var(--font-family);
  font-family: 'Akrobat', sans-serif;
}

body.home {
  padding-top: 130px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h2 {
  font-family: 'Akrobat Bold';
  font-weight: 500;
  font-size: 50px;
  line-height: 120%;
  color: #362C37;
  margin-bottom: 25px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

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

button,
input,
textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button:focus {
  outline: none;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 0;
}

.hidden_anim {
  opacity: 0;
}

.d_flex {
  display: flex;
}

.d_flex_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.d_grid {
  display: grid;
}

.d_grid_center {
  place-content: center;
}

.hidden {
  display: none;
}

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

.burger_block {
  display: none;
}

li.menu-item-has-children:after {
  filter: brightness(11) invert(1);
}

.burger-menu-wraper {
  display: none;
  width: 45px;
  height: 27px;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  margin-right: 15px;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: black;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 12px;
}

#nav-icon3 span:nth-child(4) {
  top: 24px;
}

#nav-icon3.show-menu span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

#nav-icon3.show-menu span:nth-child(2) {
  transform: rotate(45deg);
}

#nav-icon3.show-menu span:nth-child(3) {
  transform: rotate(-45deg);
}

#nav-icon3.show-menu span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.mobile_menu {
  display: none;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
  /* box-shadow: 0px 4px 4px 0px rgba(239, 239, 239, 0.50); */
  transition: 0.8s cubic-bezier(0.01, -0.02, 0, 0.79);
  background: transparent;
}

body.home .header {
  background: #F8FAFD;
}

.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 33px 0;
  transition: 0.4s;
}

@media (min-width: 992px) {
  .header.sticky .header_wrapper {
    padding: 10px 0;
  }

  .header.sticky {
    backdrop-filter: blur(35px);
    background: rgba(248, 250, 253, 0.6) !important;
  }
}

.menu-header ul {
  display: flex;
  align-items: center;
  gap: 35px;
}

.menu-header ul li a {
  font-family: 'Akrobat';
  font-weight: 500;
  font-size: 16px;
  transition: 0.4s;
}

.menu-header ul li a:hover {
  color: var(--color-accent);
}

.header_right-side {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 35px 0 rgba(141, 78, 129, 0.15);
  background: var(--color-accent);
  border: 1px solid #ffb5f1;
  border-radius: 32px;
  padding: 0 45px;
  height: 63px;
  font-family: 'Akrobat';
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* .header_btn:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fe3385 0%, #ff79af 49.52%, #fe3385 100%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: -1;
  translate: -70px 0;
} */

/* .header_btn:hover:before {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
} */

.header_btn:hover {
  color: #fff;
  box-shadow: 0 8px 35px 0 rgba(254, 51, 133, 0.65);
}

header .mob_social a svg {
  transition: 0.3s;
  border-radius: 7px;
}

header .mob_social a:hover svg {
  box-shadow: 0 5px 10px 2px rgba(254, 51, 133, 0.20);

}

@media (min-width: 992px) {
  .header.sticky .header_num {
    font-size: 20px;
  }
}

.dropdown_lang .dropdown_menu a,
.header_lang__btn span {
  transition: 0.3s;
  font-size: 18px;
  font-weight: 500;
  padding-right: 13px;
}

.header_lang__btn {
  border-radius: 30px;
  background: #ECEFF6;
  width: 76px;
  height: 50px;
  position: relative;
  z-index: 5;
}

.header_lang__btn svg {
  position: absolute;
  top: 21px;
  right: 27%;
}

.dropdown_lang .dropdown_menu a:hover {
  color: var(--main-color);
}

.dropdown_lang .dropdown_menu {
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 27px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background: #ECEFF6;
  width: 76px;
  padding-bottom: 10px;
  padding-top: 20px;
  z-index: 1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.dropdown_lang.open .dropdown_menu {
  opacity: 1;
  visibility: visible;
}

.dropdown_item.disabled {
  display: none;
}

.dropdown_lang {
  position: relative;
  top: 0;
}

.top_section {
  padding-top: 35px;
  background: #F8FAFD;
  position: relative;
  isolation: isolate;
}

.top_section .mission_bg {
  top: 20px;
}

.mission {
  padding: 80px 0;
  position: relative;
  isolation: isolate;
  background: #F8FAFD;
  overflow: hidden;
  translate: 0 40px;
  transition: 0.8s;
}

.mission.show_elements {
  translate: 0 0;
  opacity: 1;
}

.mission__grid {
  padding: 37px 0;
  gap: 20px;
  display: flex;
  justify-content: space-between;
}

.mission__item-title {
  font-family: 'Akrobat', sans-serif;
  font-weight: 600;
  font-size: 25px;
  letter-spacing: 0.03em;
  color: #6D2E70;
  display: block;
  margin-bottom: 10px;
}

.mission__item-text {
  font-family: 'Akrobat', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 145%;
  color: #615b62;
}

.mission_bg {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 80px;
}

.mission__item {
  flex: 1;
  max-width: 400px;
}

.top_section__title {
  font-family: 'Akrobat Bold', sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 120%;
  text-align: center;
  color: #362C37;
  translate: 0 -20px;
  transition: 1s;
}

.top_section__title.show_elements {
  opacity: 1;
  translate: 0 0;
}

.top_section__title span {
  color: #6D2E70;
  display: block;
  text-align: center;
}


.home_team {
  padding: 55px 0;
}

.home_team__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.home_team__info {
  min-width: 448px;
  width: 448px;
  translate: -40px 0;
  transition: 1.2s;
}

.home_team__info.show_elements {
  translate: 0 0;
  opacity: 1;
}

.home_team__desc p {
  font-family: 'Akrobat';
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #615b62;
}

.pink_btn {
  display: flex;
  align-items: center;
  width: auto;
  justify-content: center;
  box-shadow: 0 9px 35px 0 rgba(247, 51, 132, 0.1);
  background: var(--color-main);
  transition: 0.3s;
  border: 1px solid #ffd4e6;
  border-radius: 29px;
  padding: 0 20px;
  height: 60px;

  font-family: 'Akrobat Bold';
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: var(--color-accent);
}

.pink_btn:hover {
  color: #fff;
  background: var(--color-accent);
}

.home_team__btn {
  width: 100%;
  margin-top: 94px;
}

.home_team__cards {
  display: flex;
  gap: 15px;
  translate: 40px 0;
  transition: 1.2s;
}

.home_team__cards.show_elements {
  translate: 0 0;
  opacity: 1;
}

.home_team__card {
  flex: 1;
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.03);
  background: #fff;
  border-radius: 16px;
  padding: 13px;
  border: 1px solid #DEE6EE;
  position: relative;
  isolation: isolate;
  transition: 0.4s;
  overflow: hidden;
}

.home_team__card:hover {
  box-shadow: 0 4px 50px 0 rgba(254, 51, 133, 0.12);
}

.home_team__card_iconbg {
  position: absolute;
  bottom: -5px;
  right: 0;
  z-index: -1;
  pointer-events: none;
}

.home_team__card-img img {
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
}

.home_team__card-body {
  margin: 23px 0 20px;
}

.home_team__card-role {
  font-family: 'Akrobat Bold';
  font-weight: 600;
  font-size: 18px;
  line-height: 167%;
  text-align: center;
  color: #403b41;
  display: block;
}

.home_team__card-name {
  font-family: 'Akrobat';
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #615b62;
}

.projects_home {
  padding: 80px 0;
  background: linear-gradient(to bottom, #F8FAFD 0%, #ffffff 100%);
  position: relative;
  isolation: isolate;
}

.project_bg_round {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.projects_home__info {
  min-width: 530px;
  width: 530px;
  transition: 1s;
  transition-delay: 0.3s;
  translate: 0 -30px;
}

.projects_home__info.show_elements {
  translate: 0 0;
  opacity: 1;
}

.projects_home__inner {
  gap: 53px;
}

.projects_home__list {
  width: 100%;
  border: 1px solid #dee6ee;
  border-radius: 13px;
  overflow: hidden;
}

.projects_home__item {
  padding: 20px;
  justify-content: space-between;
  position: relative;
  transition: 0.4s;
  border-radius: 12px;
  gap: 34px;
  transition: 1s;
  translate: 0 -30px;
}

.projects_home__item.show_elements {
  translate: 0 0;
  opacity: 1;
}

.projects_home__item:hover {
  box-shadow: 0 4px 50px 0 rgba(254, 51, 133, 0.05);
  background: #fff;
}

.projects_home__item:after {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  border-bottom: 1px solid #dee6ee;
  transition: 0.4s;
}

.projects_home__item:hover:after {
  border-color: transparent;
}

.projects_home__item:last-child:after {
  display: none;
}

.projects_home__item-img {
  width: 127px;
  min-width: 127px;
  height: 127px;
  border-radius: 4px;
  overflow: hidden;
}

.projects_home__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects_home__item_l {
  gap: 22px;
}

.projects_home__item-title {
  font-family: 'Akrobat Bold';
  font-weight: 400;
  font-size: 20px;
  color: #362C37;
  transition: 0.3s;
}

.projects_home__item:hover .projects_home__item-title {
  color: var(--color-accent);
}

.projects_home__item-btn {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 1px solid #ffd4e6;
}

.projects_home__desc {
  font-family: 'Akrobat';
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #615b62;
}

.projects_home__btn {
  margin-top: 55px;
  max-width: 295px;
}


.ambasadors {
  padding: 80px 0;
  background: #F8FAFD;
}

.ambasadors__title {
  text-align: center;
}

.ambasadors__desc {
  font-family: 'Akrobat';
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  max-width: 890px;
  margin: 0 auto;
}

.ambasadors__desc span {
  color: var(--color-accent);
}

.ambasadors__grid {
  margin-top: 55px;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.ambasadors__card {
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.03);
  background: #fff;
  border: 1px solid #dee6ee;
  border-radius: 16px;
  padding: 12px;
  display: flex;

  transition: 1s;
}

.ambasadors__card_grid {
  max-height: 200px;
  translate: 0 -40px;
}

.ambasadors__card.show_elements {
  translate: 0 0;
  opacity: 1;
  max-height: 300px;
}

.ambasadors__card-img img {
  width: 244px;
  min-width: 244px;
  aspect-ratio: 1/1;
  border-radius: 7px;
  display: block;
}

.ambasadors__card-more-img {
  width: 332px;
  aspect-ratio: unset;
  height: auto;
}

.ambasadors__card-body {
  padding: 12px 25px;
  display: flex;
  flex-direction: column;
}

.ambasadors__card-name {
  font-family: 'Akrobat Bold';
  font-weight: 600;
  font-size: 18px;
  color: #6D2E70;
  margin-bottom: 10px;
}

.ambasadors__card-role {
  font-family: 'Akrobat Bold';
  font-weight: 500;
  font-size: 18px;
  color: #362C37;
}

.ambasadors__card-text {
  margin-top: auto;
}

.ambasadors__card-text p {
  font-family: 'Akrobat';
  font-weight: 500;
  font-size: 16px;
  color: #615b62;
}

.ambasadors__card--more {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  justify-content: center;
}

.ambasadors__card--more-bg {
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  z-index: -1;
  pointer-events: none;
  height: 102%;
}

.ambasadors__more-btn {
  border: 3px solid #fff;
}

.partners__marquee-wrap {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  position: relative;
}

.partners__slider::before,
.partners__slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}

.partners__slider .slick-list {
  position: relative;
}

.partners__slider:before {
  left: 0;
  background: linear-gradient(to right, #f9fbfd, transparent);
}

.partners__slider:after {
  right: 0;
  background: linear-gradient(to left, #f9fbfd, transparent);
}



.partners__slider-wrap {
  margin: 0 auto;
}

.partners__btn {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: #fff2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 10;
}

.partners__btn--next {
  right: 0;
}

.partners__btn--prev {
  left: 0;
}

.partners__btn:hover {
  border: 1px solid var(--color-accent);
}

.partners__btn:hover svg path {
  stroke: var(--color-accent);
}

.partners {
  padding: 80px 0;
  background: linear-gradient(to bottom, #F8FAFD 0%, #ffffff 100%);
  position: relative;
  isolation: isolate;
}

.partners_bg {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.partners__title {
  text-align: center;
  margin-bottom: 62px;
}

.partners__item img {
  width: 305px;
  height: 60px;
  object-fit: contain;
  margin: 0 12px;
}

.contacts {
  padding: 80px 0;
  background: #f9fbfd;
}

.contacts__title {
  margin-bottom: 87px;
}

.contacts__grid {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 67px;
  position: relative;
}

.contacts__grid:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  translate: 0 -50%;
  top: 55%;
  border-top: 1px solid #dee6ee;
}

.contacts__item-label {
  display: block;
  margin-bottom: 14px;
  font-family: 'Akrobat';
  font-weight: 500;
  font-size: 16px;
  color: #6D2E70;
}

.contacts__item-value {
  font-family: 'Akrobat';
  font-weight: 500;
  font-size: 20px;
  color: #362C37;
  transition: 0.3s;
}

a.contacts__item-value:hover {
  color: var(--color-accent);
}

.contacts__item-top {
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.contacts__inner {
  gap: 30px;
  justify-content: space-between;
}

.contacts__form-card {
  background: #fff;
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.03);
  border-radius: 15px;
  padding: 42px 50px;
  max-width: 568px;
}

.form_descr {
  font-family: 'Akrobat';
  font-weight: 500;
  font-size: 18px;
  color: #615b62;
  margin-bottom: 20px;
}

.form_descr span {
  color: #6D2E70;
}

.contacts__form-card form .wpcf7-form-control-wrap input,
.contacts__form-card form .wpcf7-form-control-wrap textarea {
  height: 64px;
  border: 1px solid #dee6ee;
  border-radius: 5px;
  margin-bottom: 12px;
  width: 100%;
  padding: 22px 25px;
  resize: none;
  overflow: hidden;
  font-family: 'Akrobat';
}

.contacts__form-card form .wpcf7-form-control-wrap input::placeholder,
.contacts__form-card form .wpcf7-form-control-wrap textarea::placeholder {
  font-family: 'Akrobat';
  font-weight: 500;
  font-size: 16px;
  color: #615b62;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output,
.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid {
  border: 1px solid red !important;
}

.wpcf7-submit {
  width: 100%;
  margin-top: 13px;
}

.footer__top {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #d2dbe3;
  padding: 72px 0 0;

}

.footer {
  padding: 0 0 50px;
  background: #F8FAFD;
}

.footer__nav {
  display: flex;
  align-items: center;
  width: 76%;
  position: relative;
  justify-content: flex-end;

}

.footer__nav-divider {
  height: 105px;
  border-right: 1px solid #dee6ee;
  flex-shrink: 0;
  margin-right: 65px;
}

.footer__nav-wrapper ul {
  height: auto;
  column-count: 3;
}

.footer__nav-wrapper {
  width: 44%;
}

.footer__nav-wrapper li {
  margin-bottom: 20px;
}

.footer__nav-wrapper li a {
  transition: 0.3s;
  font-family: 'Akrobat';
  font-weight: 500;
  font-size: 16px;
  color: #362C37;
}

.footer__bottom {
  margin: 70px 0 50px;
  display: flex;
  justify-content: center;
  position: relative;
  isolation: isolate;
}

.footer__bottom:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  border-top: 1px solid #dee6ee;
}

.footer__social {
  gap: 30px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  position: relative;
  background: #F8FAFD;
}

.footer__copy {
  font-family: 'Akrobat';
  font-weight: 400;
  font-size: 16px;
  color: #362C37;
  text-align: center;
}

.footer__nav-wrapper li a:hover {
  color: var(--color-accent);
}

.top_section_banner {
  margin-top: 55px;
  display: flex;
  gap: 0;
}

.top_section_banner_item_s {
  width: 264px;
  min-width: 264px;
  overflow: hidden;
  transition: 1s;
}


.top_section_banner_item_s.show_elements {
  opacity: 1;
  translate: 0 0;
}

.top_section_banner_item_l {
  width: 100%;
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  transition: 1s;
}

.top_section_banner_item_l.show_elements {
  opacity: 1;
}

.top_section_banner_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info_blocks {
  background: #F8FAFD;
  padding-bottom: 80px;
  transition: 0.9s;
  translate: 0 40px;
}

.info_blocks.show_elements {
  translate: 0 0;
  opacity: 1;
}

.info_blocks__grid {
  border-radius: 16px;
  background: #fff;
  padding: 20px;
  border: 1px solid #DEE6EE;

}

.info_blocks__item {
  flex: 1;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #dee6ee;
}

.info_blocks__item:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.info_blocks__item-title {
  font-family: 'Akrobat Bold';
  font-weight: 700;
  font-size: 20px;
  color: #362C37;
  margin-bottom: 28px;
  transition: 0.3s;
}

.info_blocks__item-title:hover {
  color: var(--color-accent);
}

.info_blocks__item_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.info_blocks__item-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #fff2f7;
  transition: 0.4s;
  border: 1px solid transparent;
}

.info_blocks__item-arrow:hover {
  border: 1px solid var(--color-accent);
}

.page_banner {
  background: #F8FAFD;
  padding: 0 0 80px;
  transition: 1.2s;
  translate: 0 40px;
}

.page_banner.show_elements {
  translate: 0 0;
  opacity: 1;
}

.page_banner_wrapper {
  position: relative;
  isolation: isolate;
}

.page_banner__bg {
  width: 100%;
}

section {
  overflow: hidden;
}

.page_banner_info {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 70px;
}

.page_banner__title {
  font-family: 'Akrobat Bold', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 40px;
}

.page_banner__btn {
  box-shadow: 0 9px 35px 0 rgba(247, 51, 132, 0.1);
  background: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ffd4e6;
  border-radius: 29px;
  padding: 0 60px;
  height: 60px;
  font-family: 'Akrobat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: var(--color-accent);
}

.page_banner__btn:hover {
  color: #fff;
  background: var(--color-accent);
}

.mobile_top_pretitle,
.mob_baner_wrapper {
  display: none;
}

.home_team__btn_mob,
.ambasadors__card-text-mob {
  display: none;
}

.logo_wrapper {
  order: 1;
}

.menu-header {
  order: 3;
}

.header_right-side {
  order: 4;
}

.mob_social {
  order: 2;
  display: flex;
  gap: 13px;
}

.projects_hero {
  position: relative;
  max-height: 100vh;
  height: 740px;
  isolation: isolate;
}

.project_hero_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  inset: 0;
  z-index: -1;
}

.projects_hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.projects_hero__title {
  font-family: 'Akrobat Bold', sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 35px;
}

.projects_hero__descr {
  max-width: 636px;
}

.projects_hero__descr p {
  font-family: 'Akrobat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #fff;
}

.projects_hero__contact {
  margin-top: 113px;
  display: flex;
  gap: 13px;
  align-items: center;
}

.projects_hero__contact_title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.44);
}

.projects_hero__contact_name {
  font-weight: 400;
  font-family: 'Akrobat', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.44);
}

.projects_hero__contact_i a {
  font-family: 'Akrobat', sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  display: block;
}

.projects_hero__contact_icon {
  display: flex;
  align-items: center;
}

body.category header,
body.post-template-single-actualne header,
body.post-template-single-project header,
body.page-template-page-contact header,
body.tax-publicationscat header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

body.category header .logo_wrapper img,
body.post-template-single-actualne header .logo_wrapper img,
body.post-template-single-project header .logo_wrapper img,
body.page-template-page-contact header .logo_wrapper img,
body.tax-publicationscat header .logo_wrapper img {
  filter: brightness(11);
}

header .mobile_menu .logo_wrapper img {
  filter: unset !important;
}

body .mob_social_icon_white {
  display: none;
}

body.category .mob_social_icon_dark,
body.post-template-single-project .mob_social_icon_dark,
body.post-template-single-actualne .mob_social_icon_dark,
body.page-template-page-contact .mob_social_icon_dark,
body.tax-publicationscat .mob_social_icon_dark {
  display: none;
}

body.category .mob_social_icon_white,
body.tax-publicationscat .mob_social_icon_white,
body.post-template-single-project .mob_social_icon_white,
body.post-template-single-actualne .mob_social_icon_white,
body.page-template-page-contact .mob_social_icon_white {
  display: block;
}

body.category .menu-header ul li a,
body.tax-publicationscat .menu-header ul li a,
body.post-template-single-project .menu-header ul li a,
body.post-template-single-actualne .menu-header ul li a,
body.page-template-page-contact .menu-header ul li a {
  color: #fff;
}

body.category .menu-header ul li.menu-item-has-children:after,
body.tax-publicationscat .menu-header ul li.menu-item-has-children:after,
body.post-template-single-project .menu-header ul li.menu-item-has-children:after,
body.post-template-single-actualne .menu-header ul li.menu-item-has-children:after,
body.page-template-page-contact .menu-header ul li.menu-item-has-children:after {
  filter: brightness(11);
}

.mobile_menu .menu-header ul li a {
  color: #362C37 !important;
}

.category-project,
.tax-publicationscat,
.post-template-single-project,
.post-template-single-actualne,
.category-aktualne,
.page-template-page-contact {
  background: #F8FAFD;
  padding-top: 0 !important;
}





/* Project card (Figma block) */
.project_card {
  background: #fff;
  border: 1px solid #DEE6EE;
  border-radius: 16px;
  box-shadow: 0 7px 60px 0 rgba(54, 44, 55, 0.04);
  overflow: hidden;
  display: flex;
  gap: 35px;
  align-items: stretch;
  padding: 18px;
  margin-bottom: 20px;
  border: 1px solid #dee6ee;
}

.project_card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 32px 0;
}

.project_card__title {
  font-family: 'Akrobat', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  color: #362C37;
  margin-bottom: 0;
}

.project_card__title a {
  transition: 0.3s;
}

.project_card__title a:hover {
  color: var(--color-accent);
}

.project_card__descr {
  font-family: 'Akrobat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #615b62;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 150%;
  overflow: hidden;
}

.project_card__image {
  width: 34%;
  min-width: 200px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.project_card__image img {
  width: 100%;
  height: 100%;
  min-height: 469px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  transition: 0.3s;
}

.project_card__image:hover img {
  scale: 1.1;
}

.project_card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 45px;
  margin-top: 30px;
  border-top: 1px solid #dee6ee;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #FE3385;
  font-family: 'Akrobat', sans-serif;
}

.project_card__link_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ffd4e6;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  transition: 0.3s;
}

.project_card__link_icon:hover {
  background: #fff2f7;
}

.projects_list {
  margin-top: -124px;
  position: relative;
  z-index: 10;
}

.projects_pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.projects_pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #fff2f7;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid #ffd4e6;
}

.projects_pagination__arrow--disabled {
  filter: grayscale(1);
}

.projects_pagination__arrow:hover {
  background-color: rgba(254, 51, 133, 0.1);
  border-color: #FE3385;
}

.projects_pagination__arrow--disabled {
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.7;
}

.pagin_num_wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.projects_pagination__arrow--disabled:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.projects_pagination__number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid #dee6ee;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #362C37;
}

.projects_pagination__number:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #ffd4e6;
  color: #FE3385;
}

.projects_pagination__number--active {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #ffd4e6;
  color: #FE3385;
  pointer-events: none;
}

.projects_pagination__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

.header.sticky .mob_social_icon_white {
  display: none;
}

.header.sticky .mob_social_icon_dark {
  display: block;
}

.header.sticky .logo_wrapper img {
  filter: unset !important;
}

.header.sticky .menu-header ul li a {
  color: #362C37 !important;
}

.header.sticky .menu-header ul li:hover>a {
  color: var(--color-accent) !important;
}

.header.sticky .menu-header ul li.menu-item-has-children:after {
  filter: brightness(11) invert(1) !important;
}

.header.sticky .menu-header ul li.menu-item-has-children:hover:after {
  filter: unset !important;
}

.project_hero {
  overflow: hidden;
  background: linear-gradient(314deg, #fe3385 0%, #6d2e70 100%);
}

.project_hero .container {
  height: 100%;
}

.project_hero_wrapper {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  margin-top: 130px;
  height: 100%;
  padding-bottom: 283px;
}

.time_realisation {
  gap: 13px;
  display: flex;
  align-items: center;
}

.time_realisation_info_t {
  font-weight: 600;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.44);
}

.time_realisation_info_b {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
}

.time_realisation_icon {
  display: flex;
  align-items: center;
}

.time_realisation_icon_donor {
  width: 45px;
  height: 45px;
  justify-content: center;
  border-radius: 8px;
  border: 1.29px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
}

.time_realisation_icon_donor svg {
  width: 25px;
  height: 25px;
}

.project_hero__title {
  margin-top: 50px;
  font-weight: 700;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.9);
}

.time_realisation_donor {
  margin-top: 15px;
}

.project_hero_wrapper_top {
  padding: 78px 47px;

}

.project_share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 47px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  position: relative;
}

.project_share:before {
  content: '';
  position: absolute;
  height: 100%;
  bottom: 0;
  top: 0;
  left: -100%;
  right: -100%;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.project_share_inf {
  display: flex;
  align-items: center;
  gap: 25px;
}

.project_share__btn--copy {
  display: flex;
  align-items: center;
  gap: 26px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  height: 35px;
  padding: 0 16px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: 0.3s;
}

.project_share__btn--copy:hover {
  filter: drop-shadow(0px 0px 6px #fff);
}

.project_share_inf a {
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.project_share_inf a:hover {
  filter: drop-shadow(0px 0px 6px #fff);
}

.project_share_title {
  font-weight: 600;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.59);
}

.project_content {
  margin-top: -250px;
}

.project_content .container {
  position: relative;
  padding-bottom: 80px;
}

.project_content .container:before {
  content: '';
  position: absolute;
  border-left: 1px solid #D2DBE3;
  border-right: 1px solid #D2DBE3;
  top: 250px;
  bottom: 0;
  left: 15px;
  right: 15px;
  pointer-events: none;
}

.project_content_wrapper {
  width: 100%;
  max-width: 918px;
  margin: 0 auto;
}

.project_hero__image {
  width: 100%;
  border-radius: 16px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6C2E6F;
  min-height: 501px;
  overflow: hidden;
}

.project_hero__image img {
  height: 500px;
  object-fit: cover;
}

.project_block--text {
  margin: 45px 0 40px;
  padding: 0 60px;
}

.project_block--text p {
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 20px;
  line-height: 180%;
  color: #423f42;
}

.project_block--text p strong {
  font-family: 'Akrobat Bold';
}

.project_block--text p:last-child {
  margin-bottom: 0;
}

.project_block--white {
  box-shadow: 0 10px 70px 0 rgba(54, 44, 55, 0.06);
  background: #fff;
  border: 1px solid #dee6ee;
  border-radius: 16px;
  padding: 52px 60px 54px;
  margin-bottom: 40px;
}

.project_block--white p {
  font-weight: 700;
  font-size: 20px;
  line-height: 180%;
  color: #423f42;
  margin-bottom: 50px;
  position: relative;
}

.project_block--white p:last-child {
  margin-bottom: 0;
}

.project_block--white p strong {
  color: #6D2E70;
  font-family: 'Akrobat Bold';
}

.project_block__content.project_block__content_arrow p {
  padding-left: 33px;
}

.project_block__content.project_block__content_arrow p:first-child:before {
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  background-image: url('/wp-content/uploads/2026/05/text-arrow.svg');
  width: 21px;
  height: 14px;
}

.project_block__content.project_block__content_arrow p:last-child:before {
  content: '';
  position: absolute;
  bottom: 11px;
  left: 0;
  background-image: url('/wp-content/uploads/2026/05/text-arrow.svg');
  width: 21px;
  height: 14px;
}

.project_block__content_link {
  box-shadow: 0 10px 70px 0 rgba(54, 44, 55, 0.06);
  background: #fff;
  border: 1px solid #dee6ee;
  border-radius: 16px;
  padding: 52px 60px 54px;
  position: relative;
  isolation: isolate;
}

.project_block__content_link p {
  max-width: 520px;
  font-weight: 700;
  font-size: 20px;
  line-height: 180%;
  color: #6D2E70;
}

.project_block__content_link p a {
  color: #FE3385;
  border-bottom: 1px dashed #FE3385;
}

.project_block__content_link img {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0;
}

.post-template-single-project .header.sticky {
  border-bottom: 1px solid #D2DBE3;
}

.project_share_bottom {
  margin: 0;
  padding: 35px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-left: 1px solid #ffd4e6;
  border-right: 1px solid #ffd4e6;
}

.project_share_bottom:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  border: 1px solid #ffd4e6;
  left: -100%;
  right: -100%;
  pointer-events: none;
}

.project_share_bottom_email {
  display: flex;
  align-items: center;
  gap: 13px;
}

.project_share_bottom .projects_hero__contact_title,
.project_share_bottom .projects_hero__contact_name {
  color: #362C37;
}

.project_share_bottom .projects_hero__contact_i a {
  color: var(--color-accent);
}

.project_share_bottom .project_share {
  justify-content: flex-start;
  gap: 22px;
  padding: 0;
}

.project_share_bottom .project_share_inf {
  gap: 10px;
}

.project_share_bottom .project_share_title {
  color: #362C37;
}

.project_share_bottom .project_share__btn--copy {
  color: #362C37;
  background: #fff;
}

.container:has(>.project_share_bottom) {
  padding-bottom: 0;
}

.project_block--white p:has(+ul) {
  margin-bottom: 28px;
}

.project_block--white ul li,
.actu_block--list ul li {
  font-weight: 500;
  font-size: 20px;
  line-height: 180%;
  color: #423f42;
  margin-bottom: 20px;
  position: relative;
  padding-left: 42px;
}

.project_block--white ul {
  margin-bottom: 27px;
}

.project_block__content p a {
  color: var(--color-accent);
  border-bottom: 1px dashed var(--color-accent);
}

.project_block--white ul:last-child {
  margin-bottom: 0;
}

.project_block--white ul li:last-child,
.actu_block--list ul li:last-child {
  margin-bottom: 0;
}

.project_block--white ul li:before,
.actu_block--list ul li:before {
  content: '';
  position: absolute;
  background-image: url('/wp-content/uploads/2026/05/Check.svg');
  background-size: cover;
  width: 28px;
  height: 28px;
  top: 5px;
  left: 0;
}

.publications_top {
  height: 534px;
  background-image: url(/wp-content/uploads/2026/05/articles-bg.png);
  background-position: center;
  background-size: cover;
  padding-top: 129px;
  display: flex;
  align-items: center;
  overflow: unset;
}

.publications_top_wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-left: 47px;
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.publications_top__featured {
  box-shadow: 0 10px 70px 0 rgba(54, 44, 55, 0.06);
  background: #fff;
  border: 1px solid #d0d9e1;
  border-radius: 16px;
  width: 100%;
  max-width: 1042px;
  padding: 28px 31px 28px 46px;
  border: 1px solid #d0d9e1;
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: -174px;
  position: relative;
}


.publications_top__featured-thumb img {
  display: block;
  border-radius: 4px;
  max-width: 595px;
  height: 325px;
  object-fit: cover;
}

.publications_top_art_title {
  margin: 27px 0 32px;
  font-weight: 600;
  font-size: 25px;
  color: #362C37;
  transition: 0.1s;
}

.publications_top_art_title:hover {
  color: var(--color-accent);
}

.publications_top__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  color: #615b62;
}

.publications_top__date {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #615b62;
  padding-left: 16px;
  font-family: 'Akrobat Bold';
  border-left: 2px solid var(--color-accent);
}

.publications_top__more {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: var(--color-accent);
  margin-top: 55px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.publications_top__more:hover {
  color: var(--color-accent);
}

.publications_top__more svg {
  position: relative;
  top: 2px;
  transition: 0.3s;
  left: 0;
}

.publications_top__more:hover svg {
  left: 5px;
}

.publications_top_title {
  font-weight: 700;
  font-size: 50px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 23px;
}

.publications_top_other_cats {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 20px;
}

.publications_top_other_cat {
  font-weight: 700;
  font-size: 18px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.publications_top_other_cat:hover {
  color: #ffacce;
  border-bottom: 1px dashed #ffacce;

}

.publications_top .container {
  height: 100%;
}

.publications_list__grid {
  padding-top: 76px;
  border-left: 1px solid #d2dbe3;
  border-right: 1px solid #d2dbe3;
}

.publications_list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.publication_card__image img {
  width: 100%;
  max-height: 325px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.publication_card {
  padding: 60px 63px;
  border-bottom: 1px solid #d2dbe3;
}

.publication_card:nth-child(odd) {
  border-right: 1px solid #d2dbe3;
}

.publication_card__meta {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #615b62;
  padding-left: 16px;
  margin-bottom: 24px;
  font-family: 'Akrobat Bold';
  border-left: 2px solid var(--color-accent);

}

.publication_card__title {
  margin: 35px 0 20px;
  font-weight: 600;
  font-size: 25px;
  color: #362C37;
  font-weight: normal;
  font-family: 'Akrobat';
  transition: 0.1s;
  min-height: 60px;
}

.publication_card__title:hover {
  color: var(--color-accent);
}

.publication_card__excerpt {
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  color: #615b62;
}

.publication_card__link {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: var(--color-accent);
}

.publication_card__link:hover {
  color: var(--color-accent);
}

.publication_card__link svg {
  position: relative;
  top: 2px;
  left: 0;
  transition: 0.3s;
}

.publication_card__link:hover svg {
  left: 5px;
}

.projects_pagination {
  padding: 50px 0;
  margin: 0;
  position: relative;
  isolation: isolate;
}

.projects_pagination:before {
  content: '';
  position: absolute;
  top: -1px;
  bottom: 0;
  background: #fff;
  left: -100%;
  right: -100%;
  border-bottom: 1px solid #d2dbe3;
  border-top: 1px solid #d2dbe3;
  z-index: -1;
}

.publtop {
  padding-top: 130px;
  position: relative;
}

.publtop_bg {
  position: absolute;
  right: 0;
  top: 160px;
  pointer-events: none;
}

.publtop_wrapper {
  padding-top: 108px;
  border-left: 1px solid #d2dbe3;
  border-right: 1px solid #d2dbe3;
}

.publications-template-single-publications,
.page-template-page-goals,
.page-template-page-report,
.page-template-page-areas {
  background: #F8FAFD;
}

.publtop_shared .project_share_title {
  color: #615b62;
}

.publtop_shared .project_share__btn {
  color: #362C37;
  background: #fff;
}

.publtop_date {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #615b62;
  padding-left: 16px;
  border-left: 1px solid var(--color-accent);
  margin-bottom: 29px;
  position: relative;
  left: -1px;
}

.publications-template-single-publications header,
.page-template-page-goals header,
.page-template-page-value header,
.page-template-page-areas header,
.page-template-page-report header,
.page-template-page-theory header {
  border-bottom: 1px solid #d2dbe3;
}

.page-template-page-value header {
  backdrop-filter: blur(15px);
  background: rgba(248, 250, 253, 0.6) !important;
}

.page-template-page-report header {
  isolation: isolate;
}

.page-template-page-report header:before,
.page-template-page-areas header:before {
  backdrop-filter: blur(15px);
  background: rgba(248, 250, 253, 0.6) !important;
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
}


.publtop_title {
  font-weight: 700;
  font-size: 50px;
  line-height: 120%;
  color: #362C37;
  padding-left: 47px;
  margin-bottom: 110px;
}

.publtop_shared {
  /* border-left: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent); */
  position: relative;
  isolation: isolate;
}

.publtop_shared:after {
  content: '';
  position: absolute;
  left: -1.5px;
  right: -1.5px;
  top: 0;
  bottom: 0;
  border-left: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
  pointer-events: none;
}

.publtop_shared:before {
  content: '';
  position: absolute;
  border: 1px solid #d2dbe3;
  top: 0;
  bottom: 0;
  left: -100%;
  right: -100%;
}



.publcontent_wrapper {
  border-left: 1px solid #d2dbe3;
  border-right: 1px solid #d2dbe3;
  padding: 40px 0 65px;
}

.publcontent_img {
  width: 100%;
  max-width: 918px;
  margin: 0 auto;
}

.publcontent_img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}


.publcontent_flex__text_wrapper {
  border-top: 1px solid #d2dbe3;
  border-bottom: 1px solid #d2dbe3;

}

.publcontent_flex__text p {
  font-weight: 700;
  font-size: 20px;
  line-height: 180%;
  color: #423f42;
  margin-bottom: 40px;
}

.publcontent_flex__text p:has(+ul) {
  margin-bottom: 15px;
}

.publcontent_flex__text ol {
  padding-left: 15px;
}

.publcontent_flex__text ul {
  margin-bottom: 40px;
  list-style-type: disc;
  padding-left: 20px;
}

.publcontent_flex__text ul li {
  font-size: 20px;
  font-family: 'Akrobat', sans-serif;
  line-height: 180%;
  color: #423f42;
}

.publcontent_flex__text ul li a {
  color: var(--color-accent);
}

.publcontent_flex__text p:has(+ol) {
  margin-bottom: 13px;
}

.publcontent_flex__text p:last-child {
  margin-bottom: 0;
}

.publcontent_flex__text ol li {
  font-size: 20px;
}

.publcontent_flex__text {
  padding: 45px 50px 40px;
  width: 100%;
  max-width: 918px;
  margin: 0 auto;
}

.publcontent_flex__image {
  width: 100%;
  max-width: 918px;
  margin: 0 auto;
}

.publcontent_flex__image img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.publtop_shared_bottom {
  border-left: 1px solid #d2dbe3;
  border-right: 1px solid #d2dbe3;
}

.publcontent_flex .publcontent_flex__text_wrapper:not(:has(+.publcontent_flex__image)) {
  border-bottom: unset;
}

.amba_top_wrapper {
  padding-top: 110px;
}

.amba_top_title {
  font-weight: 700;
  font-size: 50px;
  line-height: 120%;
  color: #362C37;
  margin-bottom: 50px;
}

.amba_top_descr {
  font-weight: 600;
  font-size: 25px;
  color: #362C37;
  max-width: 816px;
  margin-bottom: 33px;
}

.amba_top_link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  border-bottom: 1px dashed var(--color-accent);
  color: var(--color-accent);
}

.page-template-page-ambasadorki {
  background: #f8fafd;
}

.amba_anketa {
  margin: 105px 0 70px;
}

.amba_anketa_wrapper {
  background: #fff;
  border: 1px solid #d2dbe3;
  border-radius: 16px;
  padding: 33px;
}

.amba_anketa_txt_columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 50px;
}

.amba_anketa_txt_item p {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #615B62;
}

.amba_anketa_txt_item p span {
  font-weight: 700;
  font-family: 'Akrobat Bold';
  color: #615B62;
}

.amba_anketa_bottom {
  box-shadow: 0 10px 70px 0 rgba(54, 44, 55, 0.06);
  border-radius: 10px;
  background-image: url(/wp-content/uploads/2026/05/ank-bg.png);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 55px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.amba_anketa_bottom_txt {
  position: relative;
  isolation: isolate;
}

.amba_anketa_bottom_txt span {
  font-weight: 600;
  font-size: 25px;
  color: #fff;
  max-width: 397px;
  display: block;
}

.amba_anketa_bottom_txt img {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  z-index: -1;
  left: 82%;
}

.amba_anketa_bottom_btn {
  width: 52%;
  border-radius: 73px;
  padding: 0 20px;
  height: 111px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 9px 80px 0 rgba(109, 46, 112, 0.3);
  background: #ffeef5;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.03em;
  color: var(--color-accent);
  cursor: pointer;
  transition: 0.3s;
}

.amba_anketa_bottom_btn:hover {
  color: var(--color-accent);
  background: #fff;
}

.amba_blocks_title {
  font-weight: 600;
  font-size: 25px;
  color: #362C37;
  margin-bottom: 0;
}

.amba_blocks_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.amba_blocks_head {
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  text-align: right;
  color: #615b62;
}

.amba_blocks_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 33px;
}

.amba_block_item {
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.03);
  background: #fff;
  border: 1px solid #dee6ee;
  border-radius: 16px;
  padding: 11px;
  display: flex;
  gap: 20px;
  padding-right: 25px;
}

.amba_block_item_info {
  padding: 13px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.amba_block_item_img {
  overflow: hidden;
  border-radius: 7px;
  width: 244px;
  min-width: 244px;
}

.amba_block_item_img img {
  display: block;
  transition: 0.3s;
  width: 100%;
}

.amba_block_item_name {
  font-weight: 600;
  font-size: 18px;
  color: #111;
  margin-bottom: 10px;
  font-family: 'Akrobat Bold';
}

.amba_block_item_position {
  font-weight: 600;
  font-size: 18px;
  color: #362C37;
}

.amba_block_item_descr {
  height: 121px;
  overflow: hidden;
  margin-top: 15px;
  font-weight: 600;
  font-size: 16px;
  color: #615b62;
  display: flex;
  align-items: flex-end;
}

.page-template-page-ambasadorki .projects_pagination:before {
  display: none;
}

.page-template-page-ambasadorki .contacts {
  border-top: 1px solid #D2DBE3;
}

.amba_block_item_descr_mob {
  display: none;
}

.menu-item-has-children {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 15px;
  margin-bottom: -15px;
}

.menu-item-has-children:after {
  content: '';
  background-image: url(/wp-content/uploads/2026/05/menu-arrow.svg);
  width: 11px;
  height: 6px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: rotate 0.3s;
}

.menu-item-has-children:hover:after {
  rotate: 180deg;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  z-index: 10;
  background: #f8fafd;
  border: 1px solid #dee6ee;
  border-radius: 10px;
  padding: 20px;
  min-width: 182px;
  display: flex;
  flex-direction: column;
  gap: 20px !important;
  align-items: flex-start !important;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
  translate: 0 -15px;
}

@media(min-width: 993px) {
  .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
  }
}

.sub-menu li a {
  font-weight: 600;
  font-size: 16px;
  color: #362C37 !important;
}

.sub-menu li a:hover {
  color: var(--color-accent) !important;
}

.goals_title {
  padding: 109px 0 66px;
}

.goals_title {
  font-weight: 700;
  font-size: 50px;
  line-height: 120%;
  color: #362C37;
  padding-left: 32px;
}

.areas_title {
  padding-bottom: 20px;
}

.goals__item {
  padding: 40px 0;
  border-bottom: 1px solid #d2dbe3;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  position: relative;
}

.goals__item:nth-child(odd) {
  background: #fff;
}

.goals__item:nth-child(odd):before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  background: #fff;
  left: -100%;
  right: -100%;
  z-index: -1;
}

.goals__item:nth-child(odd) .goals__right {
  background: #f8fafd;
}

.goals__left {
  max-width: 425px;
}

.goals__number {
  font-weight: 900;
  font-size: 150px;
  color: var(--color-accent);
  padding-left: 22px;
  position: relative;
  margin-bottom: 55px;
  line-height: 80%;
  display: block;
}


.goals__number:before {
  content: '';
  position: absolute;
  left: 0;
  height: 115px;
  border-left: 1px solid var(--color-accent);
  top: 54%;
  translate: 0 -50%;
}

.goals__descr p {
  font-weight: 600;
  font-size: 25px;
  color: #362C37;
  padding-left: 33px;
}

.goals__right {
  box-shadow: 0 4px 50px 0 rgba(44, 46, 88, 0.05);
  background: #fff;
  border: 1px solid #d2dbe3;
  border-radius: 16px;
  padding: 50px 32px;
  width: 100%;
  max-width: 857px;
  margin-right: 32px;
}

.goals__right ul li {
  position: relative;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  color: #615b62;
  display: flex;
  gap: 11px;
}

.goals__right ul li:last-child {
  margin-bottom: 0;
}

.goals__right ul li:before {
  content: '';
  width: 28px;
  min-width: 28px;
  height: 28px;
  background-image: url('/wp-content/uploads/2026/05/Check.svg');
}

.goals .container,
.values .container,
.theory_top .container {
  position: relative;
}

.theory_top .container {
  padding-bottom: 68px;
}

.goals .container:before,
.values .container:before,
.theory_top .container:before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  border-right: 1px solid #D2DBE3;
}

.goals .container:after,
.values .container:after,
.theory_top .container:after {
  content: '';
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  border-right: 1px solid #D2DBE3;
}

.values .container:before {
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.values .container:after {
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.round_bg {
  position: absolute;
  top: 48%;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

.header_lang_block {
  order: 4;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #dee6ee;
  border-radius: 6px;
  padding: 0 4px;
}

.header_lang_block li {
  list-style: none;
  width: 33px;
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header_lang_block li a {
  font-weight: 700;
  font-size: 14px;
  color: #362C37;
}

.header_lang_block li.current-lang a {
  color: var(--color-accent);
}

.values_bg {
  position: absolute;
  top: 5%;
  left: 0;
  right: 0;
  z-index: -1;
}

.values .values_bg {
  top: 8%;
}

.main_ben .values_bg {
  top: 5%;
}

.values {
  isolation: isolate;
}

.values_title {
  padding-left: 32px;
  color: #fff;
}

.values_wrapper {
  padding: 0 33px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  padding-bottom: 80px;
}

.values_item {
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid #d2dbe3;
  border-radius: 16px;
  padding: 40px 30px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 231px;
}

.values_item_icon {
  margin-top: 40px;
}

.values_item_title {
  font-weight: 600;
  font-size: 25px;
  text-align: center;
  color: #fff;
  margin-top: 30px;
}

.page-template-page-value .contacts {
  background: transparent !important;
  position: relative;
  z-index: 10;
  padding-top: 0;
}

.page-template-page-report .contacts {
  background: transparent !important;
}

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

.form_popup {
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -90%;
  box-shadow: 0 12px 77px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
  border: 1px solid #dee6ee;
  border-radius: 16px;
  max-width: 1205px;
  width: 92%;
  z-index: 4000;
  padding: 35px;
  opacity: 0;
  visibility: hidden;
  scale: 0.4;
  transition: 0.5s;
}

.form_popup.open_popup {
  opacity: 1;
  visibility: visible;
  translate: -50% -50%;
  scale: 1;
}

.form_popup_wrapper {
  display: flex;
  align-items: center;
  gap: 35px;
}

.form_popup_wrapper>div {
  flex: 1;
}

.form_popup_close {
  position: absolute;
  width: 44px;
  height: 44px;
  top: 21px;
  left: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #f8fafd;
  border: 1px solid rgba(222, 230, 238, 0.31);
  transition: 0.3s;
  cursor: pointer;
}

.form_popup_over {
  position: fixed;
  inset: 0;
  z-index: 3999;
  backdrop-filter: blur(15px);
  background: rgba(248, 250, 253, 0.3);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.form_popup_over.open_popup {
  opacity: 1;
  visibility: visible;
}

.form_popup_close:hover {
  background: #fff;
}

.form_popup_l {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form_popup_l_wrapper {
  max-width: 462px;
}

.form_popup_r img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.form_popup_f .wpcf7-form-control-wrap input,
.form_popup_f .wpcf7-form-control-wrap textarea {
  background: #fff;
  border: 1px solid #dee6ee;
  border-radius: 5px;
  width: 100%;
  height: 64px;
  padding: 0 22px;
  margin-bottom: 12px;
}

.form_popup_f .wpcf7-form-control-wrap textarea {
  resize: none;
  padding-top: 21px;
}

.form_popup_l_wrapper .form_descr p {
  font-weight: 600;
  font-size: 23px;
  color: #362C37;
  margin-bottom: 28px;
}

.form_popup_f .wpcf7-submit {
  background: var(--color-accent);
  color: #fff;
  cursor: pointer;
}

.form_popup_f .wpcf7-submit:hover {
  color: var(--color-accent);
  background: var(--color-main);
}



.theory_top_descr {
  font-weight: 600;
  font-size: 25px;
  color: #615b62;
  padding-left: 33px;
  padding-right: 15px;
  border-left: 1px solid var(--color-accent);
  margin-bottom: 80px;
}

.theory_top_title {
  padding-bottom: 28px;
}

.theory_top_add_wrapper {
  padding: 0 33px;
}

.theory_top_add_head {
  display: flex;
  margin-bottom: 25px;
  position: relative;
}

.theory_top_add_head:before {
  content: '';
  position: absolute;
  width: 55%;
  height: 30px;
  left: 111px;
  top: 14px;
  background-image: url(/wp-content/uploads/2026/05/th-icon-t.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.theory_top_add {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.theory_top_add_item {
  box-shadow: 0 4px 50px 0 rgba(44, 46, 88, 0.25);
  padding: 28px;
  border-radius: 20px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.theory_top_add_item:nth-child(1) {
  background-image: url(/wp-content/uploads/2026/05/theory-item-1.png);
}

.theory_top_add_item:nth-child(2) {
  background-image: url(/wp-content/uploads/2026/05/theory-item-2.png);
}

.theory_top_add_item:nth-child(3) {
  background-image: url(/wp-content/uploads/2026/05/theory-item-3.png);
}

.theory_top_add_item:nth-child(4) {
  background-image: url(/wp-content/uploads/2026/05/theory-item-4.png);
}

.theory_top_add_item_icon {
  margin-bottom: 40px;
}

.theory_top_add_item_title {
  font-weight: 700;
  font-size: 25px;
  color: #fff;
  margin-bottom: 18px;
}

.theory_top_add_item_descr {
  font-weight: 600;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.theory_top_add_item_descr p {
  margin-bottom: 10px;
}

.theory_top_add_item_descr p:last-child {
  margin-bottom: 0;
}

.theory_top_add_head_txt {
  font-weight: 700;
  font-size: 25px;
  text-transform: uppercase;
  color: #FE3385;
}

.theory_top_add_head_txt_r {
  color: #6D2E70;
}

.theory_top_add_head_txt_l {
  width: 76.7%;
}

.society {
  background-image: url(/wp-content/uploads/2026/05/sus-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 88px 0;
  position: relative;
}

.society_title {
  font-weight: 700;
  font-size: 25px;
  text-transform: uppercase;
  color: #362C37;
  text-align: center;
  margin-bottom: 38px;
}

.society_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.society_item {
  background: #fff;
  border: 1px solid #d2dbe3;
  border-radius: 16px;
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.society_item:last-child {
  grid-column: 5 / 3;
}

.society_item:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-right: 5px solid var(--color-accent);
}

.society_item span {
  font-weight: 700;
  font-size: 25px;
  color: #615b62;
}

.page-template-page-theory .contacts,
.page-template-page-theory .footer {
  background: transparent;
}

.areas_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0 32px;
  margin-top: 30px;
  padding-bottom: 70px;
  position: relative;
}



.areas_item {
  box-shadow: 0 18px 50px 0 rgba(0, 0, 0, 0.01);
  border: 1px solid #d2dbe3;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px 45px 20px;
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  gap: 20px;
  /* background: linear-gradient(46deg, rgba(255, 255, 255, 0.69) 0%, rgba(255, 248, 251, 0.69) 100%); */
}

.areas_item:first-child {
  grid-column: 1 / 3;
}

.areas_item_title {
  font-weight: 600;
  font-size: 25px;
  text-align: center;
  color: #362C37;
  text-align: center;
}

.areas_title {
  position: relative;
  color: #fff;
}

.areas {
  overflow: unset;
}

.areas .container:before,
.areas .container:after {
  border-right: 1px solid rgba(255, 255, 255, 0.26);

}

.values_bg_mob {
  display: none;
}

.area_page .contacts {
  background: transparent;
  padding-top: 0 !important;
}

.area_page .contacts__inner {
  border-right: 1px solid rgba(255, 255, 255, 0.26);
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

/* .areas_title:after,
.areas_wrapper:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 150%;
  border-top: 1px solid #d2dbe3;
} */

.page-id-396 .values_wrapper,
.page-id-433 .values_wrapper {
  grid-template-columns: repeat(2, 1fr);
}

.page-id-396 .values_item,
.page-id-433 .values_item {
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 40px 45px;
  gap: 72px;
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  background-size: cover;
  border: unset;
}

.page-id-396 .values_item:nth-child(1),
.page-id-433 .values_item:nth-child(1) {
  background-image: url(/wp-content/uploads/2026/05/benefi-1.png);
}

.page-id-396 .values_item:nth-child(2),
.page-id-433 .values_item:nth-child(2) {
  background-image: url(/wp-content/uploads/2026/05/benefi-2.png);
}

.page-id-396 .values_item:nth-child(3),
.page-id-433 .values_item:nth-child(3) {
  background-image: url(/wp-content/uploads/2026/05/benefi-3.png);
}

.page-id-396 .values_item:nth-child(4),
.page-id-433 .values_item:nth-child(4) {
  background-image: url(/wp-content/uploads/2026/05/benefi-4.png);
}

.page-id-396 .values_item .values_item_title,
.page-id-433 .values_item .values_item_title {
  text-align: left;
  font-weight: 600;
  font-size: 25px;
  color: #362C37;
  margin-top: 0;
}

.page-id-396 .values_item_icon,
.page-id-433 .values_item_icon {
  margin-top: 0;
}

.contact_page {
  padding-top: 130px;
  background-image: url(/wp-content/uploads/2026/05/conbg.png);
}

.contact_page .contacts {
  background: transparent;
  padding: 0;
}

.contact_page .contacts__title,
.contact_page .contacts__item-value {
  color: #fff;
}

.contact_page .contacts__item-label {
  color: rgba(255, 255, 255, 0.5);
}

.contact_page .container {
  padding: 80px 0;
  position: relative;
}

.contact_page .container:before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.contact_page .container:after {
  content: '';
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.contact_page .contacts__inner {
  padding: 0 62px;
  gap: 70px;
}

.contact_page .contacts__item-top {
  padding-bottom: 0;
  margin-bottom: 20px;
}

.contact_page .contacts__grid:before {
  display: none;
}

.contact_page .contacts__grid {
  gap: 20px;
}

.contact_page .contacts__item {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 49px 34px 50px;
}

.contact_page .contacts__title {
  margin-bottom: 45px;
}

.contact_page .contacts__info {
  width: 100%;
}

.reports_wraper {
  margin-top: 110px;
  margin: 0 50px 0;
}

.reports_item {
  box-shadow: 0 10px 70px 0 rgba(54, 44, 55, 0.06);
  border: 1px solid #dee6ee;
  border-radius: 16px;
  padding: 40px 40px 40px 55px;
  position: relative;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 70px 0 rgba(54, 44, 55, 0.06);
  background: rgba(255, 255, 255, 0.3);
}

.reports_item_title {
  font-weight: 700;
  font-size: 50px;
  line-height: 120%;
  color: #fff;
  max-width: 760px;
  width: 100%;
}

.reports_item_link {
  min-width: 460px;
  max-width: 460px;
  background: #f8fafd;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #d2dbe3;
  border-radius: 18px;
  padding: 16px 20px 50px;
}

.reports_item_link span {
  font-weight: 700;
  font-size: 20px;

  color: var(--color-accent);
  border-bottom: 1px dashed var(--color-accent);
  display: block;
  text-align: center;
}

.reports .container {
  position: relative;
  padding: 110px 0;
}

.reports .container:before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.reports .container:after {
  content: '';
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}



.page-template-page-report .contacts {
  border-top: 1px solid rgba(255, 255, 255, 0.26);

}

.report_page .values_bg {
  top: 0;
}

.area_page .values_bg {
  top: 5%;
}

.report_page .contacts {
  padding-top: 110px;
}

.actu_page .projects_hero__contact {
  margin-top: 0;
}

.actu_page_hero .container {
  justify-content: flex-start;
  padding-top: 217px;
}

.actu_page .projects_list {
  margin-top: -245px;
}

.actu_page .project_card {
  box-shadow: 0 10px 70px 0 rgba(54, 44, 55, 0.06);
  background: #6c2e6f;
  border: 1px solid #C3AAC4;
  padding: 0;
  gap: 60px;
}

.actu_page .project_card__content {
  margin-top: 55px;
  margin-right: 55px;
  margin-bottom: 55px;
  padding: 37px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 9px;
  justify-content: flex-start;
  box-shadow: 0 10px 70px 0 rgba(54, 44, 55, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 100%);
}

.actu_page .project_card__title {
  color: #fff;
  margin-bottom: 20px;
}

.actu_page .project_card__descr {
  color: rgba(255, 255, 255, 0.75);
}

.actu_page .project_card__content_bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.actu_page .project_card__link {
  margin-top: 0;
  padding-top: 25px;
  color: #fff;
}

.post-template-single-actualne {
  background: #F8FAFD;
}

.single_project_top {
  background: #6c2e6f;
  padding-top: 130px;

}

.single_project_top_wrapper {
  display: flex;
  justify-content: space-between;
}

.single_project_top_r {
  border-left: 1px solid #926494;
  border-right: 1px solid #926494;
}

.single_actu .project_share:before {
  display: none;
}

.single_actu .project_share {
  border: unset;
  padding: 35px 48px;
  border-top: 1px solid #926494;
}

.single_project_top_l {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid #926494;
}

.single_project_top_l_t {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 48px;
  gap: 50px;
}

.single_project_title {
  font-weight: 600;
  font-size: 50px;
  color: #fff;
}



.actu_content_wrapper {
  width: 100%;
  max-width: 918px;
  margin: 0 auto;
}


.actu_block--video {
  border-radius: 16px;
  overflow: hidden;
}


.actu_video_wrap {
  position: relative;
  display: block;
  cursor: pointer;
  box-shadow: 0 4px 67px 0 rgba(54, 44, 55, 0.15);
}

.actu_video_cover {
  width: 100%;
  object-fit: cover;
  display: block;
}


.actu_video_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: none;
  border-radius: 50px;
  width: 367px;
  height: 60px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 9px 35px 0 rgba(247, 51, 132, 0.1);
  background: #ffeef5;
}

.actu_video_btn svg {
  position: relative;
  top: 2px;
}

.actu_block--text {
  margin: 40px 0;
  padding: 0 60px;
}

.actu_block--text p,
.actu_block--list p {
  margin-bottom: 40px;
  font-weight: 300;
  font-size: 20px;
  line-height: 180%;
  color: #423f42;
}

.actu_block--text p strong {
  font-family: 'Akrobat Bold';
}

.actu_block--text p a,
.actu_block--list a {
  color: var(--color-accent);
  border-bottom: 1px dashed var(--color-accent);
}

.actu_block--list p {
  margin-bottom: 30px;
  font-family: 'Akrobat Bold';
}

.actu_block--text p:last-child,
.actu_block--list p:last-child {
  margin-bottom: 0;
}

.actu_block--list {
  box-shadow: 0 10px 70px 0 rgba(54, 44, 55, 0.06);
  background: #fff;
  padding: 52px 60px;
  margin-bottom: 40px;
  border: 1px solid #dee6ee;
  border-radius: 16px;
}

.actu_content_wrapper_bottom {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.socials_grid {
  margin: 80px 0 0;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.social_card {
  background: #fff;
  border: 1px solid #d2dbe3;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: 0.4s;
}

.social_card:hover {
  border: 1px solid var(--color-accent);
}

.social-card__icon img {
  box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.06);
  display: block;
}

.social-card__label {
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #423f42;
}

.social-card__value {
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  color: var(--color-accent);
}

.project_share_bottom_actu .project_share {
  padding: 0 !important;
  border-top: unset !important;
  border-bottom: unset !important;
}

.actu_content .container {
  padding-top: 44px;
  position: relative;
}

.actu_content .container:before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  border-right: 1px solid #D2DBE3;
}

.actu_content .container:after {
  content: '';
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  border-right: 1px solid #D2DBE3;
}

.actu_content_line {
  overflow: hidden;
}

.footer__logo img {
  width: 215px;
}

.team_section_page_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team_page_title {
  font-family: 'Akrobat Bold';
  font-weight: 500;
  font-size: 50px;
  line-height: 120%;
  color: #362C37;
  margin-bottom: 25px;
  text-align: center;
  margin-bottom: 15px;
}

.team_page_descr {
  font-size: 20px;
  text-align: center;
  margin: 0 auto 23px;
  max-width: 510px;
}

.team_top_img {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.team_top_img img {
  width: 100%;
  max-width: 760px;
}

.page-template-page-team {
  background: #f9fbfd;
}

.team_top {
  position: relative;
  isolation: isolate;
}

.team_top .publtop_bg {
  z-index: -1;

}

.footer__social a img {
  transition: 0.3s;
}


.footer__social a:hover img {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));
}

.publications-template .project_share_inf a svg,
.publications-template .project_share_inf button {
  transition: 0.3s;
}

.publications-template .project_share_inf a:hover svg,
.publications-template .project_share_inf button:hover {
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.3));
}


































@media(max-width: 1380px) {
  .amba_anketa_bottom_txt img {
    left: 70%;
  }
}

@media(max-width: 1280px) {

  .amba_anketa_bottom_btn {
    width: 48%;
  }

  .footer__nav-wrapper {
    width: 46%;
  }

  .menu-header ul {
    gap: 23px;
  }

  .header_btn {
    font-size: 13px;
    padding: 0 16px;
  }

  .header_wrapper .custom-logo {
    width: 190px;
  }
}

@media(max-width: 1024px) {

  .page-id-396 .values_item .values_item_title,
  .page-id-433 .values_item .values_item_title {
    font-size: 19px;
  }

  .amba_anketa_bottom_txt img {
    display: none;
  }

  .publtop {
    padding-top: 0;
  }

  .publtop_wrapper {
    padding-top: 60px;
  }

  .publtop_title {
    font-size: 40px;
    padding-left: 30px;
    margin-bottom: 60px;
  }

  .publications_top__featured-thumb img {
    max-width: 450px;
    height: 230px;
  }

  .publications_top_art_title {
    font-size: 20px;
    margin: 12px 0;
  }

  .publications_list__grid {
    padding-top: 65px;
  }

  .publication_card {
    padding: 45px 35px;
  }

  .publication_card__image img {
    max-height: 225px;
  }

  .publication_card__title {
    font-size: 21px;
  }

  .publication_card__excerpt {
    font-size: 16px;
  }

  .publications_top__excerpt {
    font-size: 16px;
  }

  .publications_top__more {
    margin-top: 20px;
  }

  .publications_top_wrapper {
    padding-left: 20px;
    gap: 65px;
  }

  .publications_top__featured {
    padding: 25px;
  }

  .publications_top_title {
    font-size: 40px;
  }

  .publications_top {
    padding-top: 91px;
  }

  .publications_top_other_cat {
    font-size: 15px;
  }

  .publications_top {
    height: 405px;
  }

  .project_hero_wrapper {
    margin-top: 90px;
  }

  .project_hero__title {
    font-size: 38px;
  }

  .project_card__title {
    margin-bottom: 80px;
  }

  .project_card__link {
    padding-top: 15px;
    margin-top: 25px;
  }

  .projects_list {
    margin-top: -80px;
  }

  .menu-header ul {
    gap: 20px;
  }

  .menu-header ul li a {
    font-size: 14px;
  }

  .custom-logo-link img {
    width: 170px;
  }

  .header_btn {
    padding: 0 25px;
    height: 52px;
    font-size: 13px;
  }

  .header_wrapper {
    padding: 14px 0;
  }

  body {
    padding-top: 88px;
  }

  .top_section__title {
    font-size: 43px;
  }

  .top_section {
    padding-top: 15px;
  }

  .top_section_banner_item img {
    height: 260px;
  }

  .info_blocks__item-title {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .page_banner__title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .home_team__info {
    width: 335px;
    min-width: 335px;
  }

  h2 {
    font-size: 38px;
  }

  .home_team__card-role {
    font-size: 15px;
  }

  .home_team__btn {
    margin-top: 35px;
  }

  .projects_home__item-title {
    font-size: 15px;
  }

  .projects_home__item-img {
    width: 100px;
    min-width: 100px;
    height: 100px;
  }

  .ambasadors__card-role {
    font-size: 14px;
  }

  .ambasadors__card-img img {
    width: 150px;
    min-width: 150px;
  }

  .ambasadors__card-text p {
    font-size: 12px;
  }

  .ambasadors__grid {
    gap: 14px;
  }

  .ambasadors__card-more-img {
    width: 200px;
  }

  .contacts__form-card {
    padding: 30px 35px;
  }

  .contacts__form-card {
    max-width: 500px;
  }

  .contacts__item-value {
    font-size: 15px;
  }

  .footer__nav-wrapper li a {
    font-size: 14px;
  }

  .footer__nav-divider {
    margin-right: 39px;
  }

  .theory_top_add {
    gap: 15px;
  }

  .theory_top_add_item {
    padding: 17px;
  }

  .theory_top_add_item_icon {
    margin-bottom: 20px;
  }

  .theory_top_add_item_title {
    font-size: 20px;
  }

  .theory_top_add_item_descr {
    font-size: 16px;
  }

}

@media(max-width: 992px) {

  .areas_title,
  .values_title {
    color: #111;
  }

  .values .values_bg {
    top: 5%;
  }


  .contact_page {
    padding-top: 91px;
  }


  .page-id-396 .goals_title,
  .page-id-433 .goals_title {
    color: #362C37;
  }

  .page-id-396 .values_item,
  .page-id-433 .values_item {
    gap: 30px;
    padding: 30px;
  }

  .page-id-396 .values_wrapper,
  .page-id-433 .values_wrapper {
    margin-top: 120px;
  }

  .page-id-396 .values_item_icon img,
  .page-id-433 .values_item_icon img {
    width: 50px;
    height: 50px;
  }

  .areas_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .society_item span {
    font-size: 18px;
  }

  .society_item {
    padding: 17px 22px;
  }

  .society_wrapper {
    gap: 15px;
  }

  .goals__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .goals__left {
    display: flex;
    max-width: 100%;
    align-items: flex-end;
    padding-right: 15px;
  }

  .goals__descr p {
    padding-left: 25px;
  }

  .goals__right {
    padding: 25px;
    margin-right: 0;
    max-width: 96%;
    margin: 0 auto;
  }

  .goals .publtop_bg {
    top: 20px;
  }

  .goals_title {
    padding: 40px 0 20px 20px;
  }

  .goals__number {
    margin-bottom: 0;
  }

  .menu-item-has-children:after {
    display: none;
  }

  .menu-item-has-children {
    flex-direction: column;
    align-items: flex-start;
    gap: 0 !important;
  }

  .sub-menu {
    position: relative;
    top: 0;
    left: 0;
    max-height: 0;
    padding: 0;
    border: unset;
    border-radius: 0;
    background: transparent;
    gap: 0 !important;
    translate: 0 0 !important;
    overflow: hidden;
  }

  .sub-menu.show_sub {
    opacity: 1;
    visibility: visible;
    max-height: 100px;
    margin-top: 10px;
  }

  .sub-menu li {
    margin-bottom: 0 !important;
    padding-bottom: 12px !important;
    border: unset !important;
  }

  .open_sub_menu {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid var(--color-accent);
    position: absolute;
    right: 0;
    top: -2px;
    background-image: url(/wp-content/uploads/2026/05/menu-arrow.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    transition: 0.3s;
  }

  .menu-item-has-children:has(.show_sub) .open_sub_menu {
    rotate: 180deg;
  }

  .amba_top_wrapper {
    padding-top: 45px;
  }

  .amba_anketa_txt_columns {
    gap: 30px;
  }

  .amba_anketa_bottom {
    gap: 20px;
    padding: 30px;
  }

  .amba_blocks_list {
    gap: 15px;
    grid-template-columns: repeat(1, 1fr);
  }

  .amba_anketa_bottom_btn {
    height: 80px;
  }

  .amba_anketa_txt_item p {
    font-size: 15px;
  }

  .amba_anketa_bottom_txt span {
    font-size: 22px;
  }

  .publcontent_flex__text_wrapper {
    border-top: unset;
    border-bottom: unset;
  }

  .publtop {
    padding-top: 3px;
  }

  .header.sticky {
    isolation: isolate;
  }

  .header.sticky:before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(35px);
    background: rgba(248, 250, 253, 0.6) !important;
    z-index: -1;
  }

  .project_hero_wrapper_top {
    padding: 50px 30px;
  }

  .project_hero__title {
    font-size: 33px;
  }

  .project_block--white,
  .project_block__content_link {
    margin: 0 15px 20px;
  }

  .project_block__content_link img {
    z-index: -1;
    opacity: 0.2;
  }

  .project_share_bottom {
    padding: 25px 15px;
  }

  .project_share__btn--copy {
    gap: 15px;
  }

  .project_share_bottom .project_share_title {
    display: none;
  }

  body.home {
    padding-top: 91px;
  }

  .category-project #nav-icon3 span,
  .tax-publicationscat #nav-icon3 span,
  .post-template-single-project #nav-icon3 span {
    background: #fff;
  }

  .category-project .header.sticky #nav-icon3 span,
  .tax-publicationscat .header.sticky #nav-icon3 span,
  .post-template-single-project .header.sticky #nav-icon3 span {
    background-color: #111;
  }

  .category-project .header.sticky,
  .tax-publicationscat .header.sticky,
  .post-template-single-project .header.sticky {
    background: #F8FAFD;
    /* backdrop-filter: blur(35px);
    background: rgba(248, 250, 253, 0.6) !important; */
  }

  .publication_card__title {
    margin: 18px 0;
  }

  .publication_card__excerpt {
    line-height: 133%;
  }

  .publication_card {
    padding: 30px 30px;
  }

  .publications_list__grid {
    padding-top: 48px;
  }

  .publications_top {
    height: 465px;
  }

  .publications_top_wrapper {
    flex-direction: column;
    gap: 20px;
    padding-left: 0;
    justify-content: flex-start;
  }

  .publications_top_title {
    margin-bottom: 10px;
  }

  .publications_top_other_cats {
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .publications_top {
    height: 465px;
  }

  .mobile_menu .mob_social {
    order: unset;
  }

  .burger_block span {
    display: none;
  }

  .info_blocks__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }

  .info_blocks__item {
    padding-right: 0;
    margin-right: 0;
    border-right: unset;
    padding: 20px;
    border-bottom: 1px solid #dee6ee;
  }

  .home_team__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .home_team__info {
    width: 100%;
    min-width: unset;
  }

  .projects_home__inner {
    flex-direction: column-reverse;
  }

  .contacts__inner {
    flex-direction: column;
  }

  .contacts__form-card {
    max-width: 100%;
  }

  .footer__top {
    flex-direction: column;
  }

  .footer__nav {
    width: 100%;
    justify-content: center;
  }

  .info_blocks__item:nth-child(odd) {
    border-right: 1px solid #dee6ee;
  }

  .menu-header {
    display: none;
  }

  .burger_block {
    display: flex;
    align-items: center;
    gap: 25px;
  }

  .burger-menu-wraper {
    display: block;
  }

  .mobile_menu {
    display: flex;
    flex-direction: column;
    visibility: hidden;
    translate: 0 110%;
    z-index: 1000;
    background-color: white;
    position: fixed;
    padding: 34px 15px;
    overflow: auto;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    box-shadow: 0 -6px 45px 0 rgba(73, 41, 75, 0.12);
    background: #f8fafd;
    border: 1px solid #dee6ee;
    border-radius: 20px 20px 0 0;
    transition: 1.1s cubic-bezier(0.42, 0, 0, 1.31);
  }

  .mobile_menu.open_menu {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
  }

  .overlay-bg-mob {
    background: linear-gradient(180deg, rgba(254, 51, 133, 0) 0%, #fe3385 100%);
    position: fixed;
    z-index: 999;
    inset: 0;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    translate: 0 100px;
  }

  .burger_close_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: 10;
    transition: 0.3s;
    opacity: 0;
    scale: 0.3;
    display: flex;
    align-items: center;
  }

  .burger_block.show-menu .burger_close_icon {
    opacity: 1;
    scale: 1;
  }

  .burger_block.show-menu span {
    font-size: 0;
  }

  .overlay-bg-mob.open_menu {
    opacity: 1;
    visibility: visible;
    translate: 0 0;

  }

  .logo_wrapper_menu img {
    width: 172px !important;
  }

  .logo_wrapper_menu {
    margin-bottom: 42px;
  }

  .mobile_menu.show-menu {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
  }

  .mobile_menu .menu-header {
    display: block;
  }

  .logo_wrapper,
  .burger-menu-wraper {
    position: relative;
    z-index: 55;
  }

  .menu-header ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .menu-header ul li {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #d2dbe3;
    width: 100%;
  }

  .mob_social_menu {
    margin: 37px 0;
  }

  .menu-header ul li:last-child {
    margin-bottom: 0;
    border-bottom: unset;
    padding-bottom: 0;
  }

  .menu-header ul li a {
    font-size: 16px;
  }

  .project_card {
    flex-direction: column;
    padding: 18px;
  }

  .project_card__image {
    width: 100%;
    min-width: unset;
  }

  .project_card__title {
    font-size: 26px;
  }

  .project_card__excerpt {
    font-size: 16px;
    line-height: 24px;
  }

  .projects_home__item:last-child {
    display: none;
  }

  .projects_home__item:nth-child(3):after {
    display: none;
  }

  .reports .container {
    padding-bottom: 40px;
    padding-top: 42px;
  }

  .reports_item {
    flex-direction: column;
    padding: 20px;
    gap: 17px;
  }

  .reports_item_title {
    font-size: 30px;
  }

  .reports_wraper {
    margin: 0 28px;
  }

  .reports_item_link {
    width: 100%;
    max-width: unset;
    min-width: unset;
  }

  .reports_item_link span {
    margin-top: -20px;
  }
}

@media(max-width: 600px) {

  .contact_page .contacts__item {
    flex-direction: column;
  }

  .contact_page .contacts__item-top,
  .contact_page .contacts__item {
    margin-bottom: 10px;
  }

  .contact_page .contacts__grid {
    gap: 0;
  }

  .contact_page .contacts__item-value {
    font-size: 18px;
  }

  .contact_page .contacts__inner {
    gap: 0;
  }

  .page-id-396 .values_wrapper,
  .page-id-433 .values_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .page-id-396 .values_item,
  .page-id-433 .values_item {
    min-height: 130px;
  }

  .page-id-396 .goals_title,
  .page-id-433 .goals_title {
    font-size: 35px;
  }

  .page-template-page-value .contacts {
    background: transparent !important;
  }

  .page-id-396 .values_wrapper,
  .page-id-433 .values_wrapper {
    margin-top: 33px;
  }

  .areas_wrapper {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 15px;
    margin-top: 25px;
    padding-bottom: 33px;
    gap: 15px;
  }

  .areas_item:first-child {
    grid-column: unset;
  }

  .goals_title {
    font-size: 40px;
  }

  .goals__descr p {
    font-size: 18px;
    padding-left: 15px;
  }

  .goals__number {
    font-size: 90px;
  }

  .goals__left {
    align-items: flex-start;
  }

  .goals__number:before {
    height: 68px;
  }

  .goals__item {
    padding: 30px 0;
    gap: 30px;
  }

  .goals__right {
    max-width: 91%;
    padding: 20px;
  }

  .goals__right ul li:before {
    width: 20px;
    min-width: 20px;
    height: 20px;
    background-size: contain;
  }

  .goals__right ul li {
    font-size: 16px;
    line-height: 140%;
  }

  .amba_block_item_img {
    width: 145px;
    min-width: 145px;
  }

  .amba_block_item {
    gap: 15px;
    flex-wrap: wrap;
    padding-right: 15px;
    padding: 15px;
  }

  .amba_block_item_descr_mob {
    width: 100%;
    height: auto;
    margin-top: 0;
  }

  .amba_block_item_info {
    width: 50%;
  }

  .amba_block_item_position {
    font-size: 16px;
  }

  .amba_top_title {
    font-size: 40px;
    margin-bottom: 24px;
  }

  .publtop_title {
    font-size: 27px;
    padding-left: 15px;
    margin-bottom: 40px;
  }

  .amba_top_descr {
    font-size: 20px;
  }

  .amba_top_link {
    border-bottom: unset;
  }

  .amba_anketa {
    margin: 60px 0 45px;
  }

  .amba_top_wrapper {
    padding-top: 26px;
  }

  .amba_anketa_wrapper {
    padding: 15px;
  }

  .amba_anketa_txt_columns {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-bottom: 15px;
  }

  .amba_anketa_bottom {
    flex-direction: column;
    padding: 15px;
  }

  .amba_anketa_bottom_txt span {
    font-size: 20px;
  }

  .amba_anketa_bottom_btn {
    width: 100%;
    height: 55px;
    font-size: 16px;
  }

  .amba_blocks_top {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .amba_block_item_descr {
    display: none;
  }

  .amba_block_item_descr_mob {
    display: block;
  }

  .amba_blocks_head {
    text-align: left;
  }

  .publication_card {
    padding: 30px 15px;
  }

  .projects_pagination__number {
    min-width: 40px;
    height: 40px;
  }

  .projects_pagination__arrow {
    width: 40px;
    height: 40px;
  }

  .projects_pagination {
    padding: 27px 0;
  }

  .publications_top__featured {
    flex-direction: column-reverse;
    padding: 15px;
    gap: 18px;
  }

  .publications_top_wrapper {
    padding-top: 17px;
  }

  .publications_top__more {
    margin-top: 11px;
  }

  .publications_top {
    height: 612px;
  }

  .publications_list__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .publications_top__featured-thumb img {
    max-width: 100%;
    height: auto;
  }

  .top_section_banner {
    display: none;
  }

  .mission__grid {
    flex-direction: column;
    gap: 25px;
    padding-bottom: 0;
  }

  .ambasadors__grid {
    margin-top: 20px;
    grid-template-columns: repeat(1, 1fr);
  }

  .ambasadors__grid .ambasadors__card:nth-child(4),
  .ambasadors__grid .ambasadors__card:nth-child(5) {
    display: none;
  }

  .contacts__grid {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 30px;
  }

  .footer__nav {
    flex-direction: column;
  }

  .header_right-side {
    display: none;
  }

  .burger-menu-wraper {
    display: none;
  }

  .burger_block span {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-accent);
    background: rgba(255, 212, 230, 0.8);
    backdrop-filter: blur(3px);
    border: 1px solid #ffd4e6;
    border-radius: 50px;
    height: 52px;
    padding: 0 22px;
    font-size: 17px;
    font-weight: 500;
    width: 94px;
    font-family: 'Akrobat Bold';
  }

  .burger_block {
    position: fixed;
    bottom: 34px;
    right: 16px;
    z-index: 2000;
  }

  .header_btn {
    width: 69%;
    font-size: 14px;
  }

  .custom-logo-link img {
    width: 145px;
  }



  .mobile_top_pretitle {
    display: block;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    color: #6D2E70;
    margin-bottom: 20px;
  }

  .top_section__title {
    font-size: 30px;
  }

  .mob_baner_wrapper {
    display: block;
  }

  .mob_baner_wrapper .container {
    padding: 0;
  }

  .mob_baner_wrapper {
    margin-top: 42px;
  }

  .page_banner {
    padding: 0;
  }

  .page_banner_wrapper {
    height: 366px;
  }

  .page_banner__bg {
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
  }

  .page_banner_info {
    left: 15px;
    right: 15px;
  }

  .page_banner__title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 30px;
    line-height: 133%;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
  }

  .page_banner__btn {
    width: 100%;
  }

  .mission_bg {
    top: 53px;
  }

  .mission {
    padding: 36px 0 55px;
  }

  .mission__item-title {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.03em;
  }

  .mission__item-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 167%;
    color: #615b62;
    font-family: var(--font-family);
  }

  .info_blocks__item-title {
    font-size: 16px;
    font-weight: 500;
  }

  .info_blocks__item-arrow {
    width: 40px;
    height: 40px;
  }

  .info_blocks__item-icon {
    display: none;
  }

  .info_blocks {
    padding-bottom: 56px;
  }

  h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .home_team__desc p {
    font-size: 14px;
  }

  .home_team__btn_mob {
    display: flex;
  }

  .home_team__btn_desk {
    display: none;
  }

  /* Слайдер для home_team__cards на мобільних (Slick Carousel) */
  .home_team__cards {
    overflow: visible;
    touch-action: pan-y;
  }

  .home_team__cards.slick-initialized {
    overflow: hidden;
  }

  .home_team__card {
    width: 154px;
    min-width: 154px;
    margin-right: 5px;
    padding: 7px;
  }

  .home_team .container {
    padding-right: 0;
  }

  .home_team__desc {
    padding-right: 15px;
  }

  .slick-list {
    margin: 0;
    padding: 0;
    touch-action: pan-y;
  }

  .slick-track {
    display: flex;
  }

  .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    outline: none;
  }

  .home_team__card-body {
    margin: 15px 0 7px;
  }

  .home_team__card-role {
    font-size: 10px;
  }

  .home_team__card-name {
    font-size: 11px;
  }

  .home_team__btn {
    margin-top: 0;
  }

  .projects_home {
    padding: 47px 0;
  }

  .projects_home__desc {
    font-size: 14px;
  }

  .projects_home__info {
    min-width: unset;
    width: 100%;
  }

  .projects_home__btn {
    margin-top: 25px;
    width: 100%;
    max-width: 100%;
  }

  .projects_home__inner {
    gap: 33px;
  }

  .projects_home__item-img {
    width: 90px;
    min-width: 90px;
    height: 90px;
  }

  .projects_home__item {
    padding: 12px;
    gap: 10px;
  }

  .projects_home__item_l {
    gap: 13px;
  }

  .projects_home__item-title {
    font-size: 14px;
  }

  .projects_home__item-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .ambasadors {
    padding: 48px 0;
  }

  .ambasadors__desc {
    font-size: 14px;
  }

  .ambasadors__card-text {
    display: none;
  }

  .ambasadors__card-text-mob {
    display: block;
    width: 100%;
  }

  .ambasadors__card {
    flex-wrap: wrap;
    gap: 10px;
  }

  .ambasadors__card-img img {
    width: 90px;
    min-width: 90px;
  }

  .ambasadors__card-name {
    font-size: 14px;
  }

  .ambasadors__card-body {
    padding: 0;
    width: 70%;
  }

  .ambasadors__more-btn {
    font-size: 14px;
    text-align: center;
  }

  .partners {
    padding: 0px 0 50px;
  }

  .partners__title {
    margin-bottom: 30px;
  }

  .partners__btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .partners__item img {
    width: 170px;
    height: 33px;
    margin: 0 5px;
  }

  .partners__slider-wrap {
    gap: 13px;
  }

  .contacts {
    padding: 47px 0;
  }

  .contacts__title {
    margin-bottom: 35px;
  }

  .contacts__item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #dee6ee;
    display: flex;
    gap: 15px;
  }

  .contacts__grid:before {
    display: none;
  }

  .contacts__item-label {
    width: 130px;
    min-width: 130px;
    margin-bottom: 0;
  }

  .contacts__item-label {
    font-size: 14px;
  }

  .contacts__item-value {
    font-size: 14px;
  }

  .contacts__form-card {
    padding: 42px 12px;
  }

  .form_descr {
    font-size: 14px;
  }

  .contacts__form-card form .wpcf7-form-control-wrap input,
  .contacts__form-card form .wpcf7-form-control-wrap textarea {
    padding: 15px;
    height: 50px;
    font-size: 14px;
  }

  .contacts__form-card form .wpcf7-form-control-wrap input::placeholder,
  .contacts__form-card form .wpcf7-form-control-wrap textarea::placeholder {
    font-size: 14px;
  }

  .footer__logo img {
    width: 215px;
  }

  .footer {
    padding-top: 40px;
    padding-bottom: 90px;
  }

  .footer__top {
    align-items: flex-start;
    gap: 55px;
  }

  .footer__nav-divider {
    display: none;
  }

  .footer__nav-wrapper ul {
    column-count: unset;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .footer__nav-wrapper {
    width: 100%;
  }

  .footer__nav-wrapper li {
    margin-bottom: 0;
  }

  /* project_card styles moved to the end of file */

  .footer__nav-left {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #dee6ee;
  }

  .footer__social {
    padding: 0 27px;
  }

  .header_wrapper .custom-logo {
    width: 145px;
  }

  body.home {
    padding-top: 88px;
  }

  body.category header,
  body.tax-publicationscat header,
  body.post-template-single-project header,
  body.page-template-page-contact header {
    background: transparent;
  }

  body.page-template-page-contact {
    padding-top: 0 !important;
  }

  .contact_page {
    padding-top: 91px;
  }

  .contact_page .container {
    padding: 35px 0;
  }

  .projects_hero {
    height: 67vh;
  }

  .projects_hero__title {
    font-size: 40px;
    margin-bottom: 25px;
  }

  .projects_hero__contact {
    margin-top: 60px;
  }

  .project_card__title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .project_card__content {
    padding-bottom: 0;
  }

  .project_hero_wrapper_top {
    padding: 20px 15px;
  }

  .time_realisation {
    margin-bottom: 20px;
  }

  .project_hero__title {
    font-size: 26px;
  }

  .project_share_title {
    display: none;
  }

  .project_share {
    padding: 17px 15px;
  }

  .project_share_inf {
    gap: 10px;
    width: 100%;
    justify-content: space-between;
  }

  .project_hero__image img {
    height: auto;
    width: 100%;
  }

  .project_hero__image {
    min-height: unset;
  }

  .project_block--text p {
    font-size: 18px;
    line-height: 140%;
    margin-bottom: 28px;
  }

  .project_block--text {
    margin: 28px 0 30px;
    padding: 0 15px;
  }

  .project_block--white p {
    font-size: 18px;
    line-height: 150%;
  }

  .project_block--white {
    padding: 30px 15px 30px;
  }

  .project_block__content_link {
    padding: 14px 20px 15px;
    overflow: hidden;
  }

  .project_block__content_link p {
    font-size: 18px;
    line-height: 150%;
  }

  .project_block__content_link img {
    /* display: none; */
    translate: 0 0;
    top: unset;
    bottom: -85px;
    right: -65px;
    opacity: 0.1;
  }

  .project_content .container {
    padding-bottom: 15px;
  }

  .project_share_bottom {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
  }

  .project_share_bottom .project_share {
    width: 100%;
    justify-content: space-between;
  }

  .project_card {
    gap: 0;
  }

  .project_block--white ul li {
    font-size: 18px;
    line-height: 140%;
  }

  .project_block--white ul li:before {
    top: 0;
  }

  .publcontent_img img {
    height: auto;
  }

  .publcontent_flex__text {
    padding: 28px 15px 28px;
  }

  .publcontent_flex__text p {
    font-size: 18px;
    line-height: 160%;
    margin-bottom: 20px;
  }

  .publcontent_wrapper {
    padding-bottom: 35px;
  }

  .publtop_wrapper {
    padding-top: 33px;
  }

  .publtop_shared:after {
    left: -2px;
    right: -2px;
  }

  .header_lang_block {
    display: none;
  }

  .mob_soc_lang .header_lang_block {
    display: flex;
  }

  .mob_soc_lang {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
  }

  .values_wrapper {
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
    gap: 15px;
  }

  .values_title {
    color: #111;
    padding-left: 0;
  }

  .values_item_icon img {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  }

  .values .container:before,
  .values .container:after {
    display: none;
  }

  .values_item:nth-last-child(-n+3) .values_item_title {
    color: #111;
  }

  .page-template-page-value header {
    backdrop-filter: unset;
  }

  .page-template-page-value .contacts {
    padding: 47px 0;
    background: #f9fbfd;
  }

  .theory_top_descr {
    font-size: 20px;
    padding-left: 23px;
    margin-bottom: 45px;
  }

  .theory_top_add_wrapper {
    padding: 0 23px;
  }

  .theory_top_add {
    grid-template-columns: repeat(1, 1fr);
  }

  .theory_top_add_head {
    margin-bottom: 15px;
  }

  .theory_top_add_item_icon img {
    width: 50px;
    height: 50px;
  }

  .theory_top_add_item:nth-child(5) {
    background-image: url(/wp-content/uploads/2026/05/theory-item-4.png);
  }

  .theory_top_add_head:before {
    display: none;
  }

  .theory_top .container {
    padding-bottom: 60px;
  }

  .society {
    margin-top: -30px;
    padding-bottom: 58px;
  }

  .society_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .society_item:last-child {
    grid-column: unset;
  }

  .society_title {
    margin-bottom: 28px;
  }

  .contact_page .contacts__inner {
    padding: 0 30px;
  }

  .report_page .values_bg {
    top: -44px;
  }

  .reports .container:before {
    display: block;
  }

  .reports .container:after {
    display: block;
  }

  .area_page .values_bg {
    display: none;
  }

  .area_page .values_bg_mob {
    display: block;
    height: 73%;
    top: -140px;
  }

  .projects_hero .container {
    padding-top: 135px;
  }

  .actu_page .project_card {
    gap: 0;
  }

  .actu_page .project_card__content {
    margin-top: 7px;
    margin-right: 35px;
    margin-left: 35px;
    margin-bottom: 35px;
    padding: 20px;
  }

  .actu_page .project_card__link {
    margin-top: 25px;
  }

  .single_actu .single_project_top {
    padding-top: 91px;
  }

  .single_project_top_l_t {
    padding: 22px 15px;
    gap: 30px;
  }

  .single_project_title {
    font-size: 35px;
  }

  .single_actu .project_share {
    padding: 25px 15px;
    border-bottom: 1px solid #926494;
  }

  .single_project_top_wrapper {
    flex-direction: column;
  }

  .single_project_top_r img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    display: block;
  }

  .single_project_top_l {
    border-right: 1px solid #926494;
  }

  .actu_video_btn {
    width: 280px;
  }

  .actu_block--text {
    padding: 0 20px;
  }

  .actu_block--text p,
  .actu_block--list p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .actu_block--list {
    padding: 25px 15px;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 20px;
  }

  .actu_block--list ul li {
    font-size: 18px;
  }

  .actu_content_wrapper_bottom {
    min-height: 250px;
    gap: 22px;
  }

  .socials_grid {
    margin-top: 30px;
    grid-template-columns: repeat(1, 1fr);
    margin-left: 15px;
    margin-right: 15px;
    gap: 15px;
    padding-bottom: 35px;
  }

  .social_card {
    padding: 15px;
    gap: 15px;
  }

  .team_section_page_wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .team_section_page_wrapper .home_team__card {
    min-width: unset;
    width: 100%;
  }

  .team_page_title {
    font-size: 35px;
  }

  .team_page_descr {
    font-size: 18px;
  }

  .project_card__image img {
    min-height: 316px;
  }

  .category-project .projects_hero .container {
    padding-top: 0px;
  }

  .form_popup_r {
    display: none;
  }

  .form_popup {
    padding: 20px;
    padding-top: 80px;
  }

  .form_popup_l_wrapper .form_descr p {
    font-size: 20px;
  }

  .actu_page .projects_list {
    margin-top: -170px;
  }
}