@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --font-family-kyiv: 'KyivTypeSans', sans-serif;
  --font-family-mont: "Montserrat", sans-serif;
  --font-size: 16px;
  --font-weight: 400;
  --main-color: #5765F2;
  --main-color-h: #4a57df;
  --white-color: #fff;
  --category-1: #FEF18C;
  --category-2: #AAE8B8;
  --category-3: #ACEBFF;
}

html {
  scroll-behavior: smooth;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

._container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}
.training__list li {
	list-style: disc!important;
}
.page {
  flex: 1 1 100%;
}

.title__h1 {
  font-weight: 900;
  font-size: clamp(62px, 5vw, 96px);
}

.title__h2 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
}

.title__h3 {
  font-size: clamp(24px, 5vw, 44px);
  font-weight: 700;
}

.button__style {
  padding: 22px 45px;
  border-radius: 35px;
  background: var(--main-color);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  line-height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease 0s;
}
.button__style:hover {
  background: var(--main-color-h);
}

.button__style-border {
  padding: 22px 45px;
  border-radius: 35px;
  border: 1px solid #5765F2;
  color: #5765F2;
  font-weight: 900;
  font-size: 16px;
  line-height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease 0s;
}
.button__style-border:hover {
  background: var(--main-color-h);
  color: #fff;
}

/*================ header =========================*/
.mobile-menu {
  display: none;
}

.header {
  background: transparent;
  padding: 20px 0;
  z-index: 4;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: top 0.3s ease, background-color 0.3s ease;
}

.header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  max-width: 70px;
}

.header__logo-mobile {
  display: none;
}

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

.menu__contact {
  display: none;
}

.header__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
.header__menu .menu__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
}
.header__menu .menu__list li {
  position: relative;
}
.header__menu .menu__list > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.header__menu .menu__list > li > a {
  position: relative;
  z-index: 1;
}
.header__menu .menu__list a {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 16px;
}
.header__menu .menu__list a:hover {
  text-decoration: underline;
}
.header__menu .menu__list .menu__lang a {
  text-transform: uppercase;
  position: relative;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5019607843);
}
.header__menu .menu__list .menu__lang a.active {
  font-weight: 700;
  color: #fff;
}
.header__menu .menu__list .menu__lang:first-child a {
  position: relative;
  padding-right: 10px;
}
.header__menu .menu__list .menu__lang:first-child a:after {
  position: absolute;
  content: "|";
  left: 0;
  font-weight: 700 !important;
  color: #FFF !important;
}
.header__menu .menu__list .menu__lang:last-child a:after {
  position: absolute;
  content: "/";
  left: 0;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.5019607843) !important;
}
.header__menu .menu__list .sub-menu {
  width: max-content;
  padding: 53px 41px 24px 12px;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 12px;
  min-width: 137px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
.header__menu .menu__list .sub-menu li:not(:last-child) {
  margin-bottom: 20px;
}
.header__menu .menu__list .sub-menu li a {
  padding: 0;
  font-weight: 500;
  font-size: 14px;
}

/*================ hero ===========================*/
.hero {
  height: 100vh;
}

.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.slide {
  flex: 0 0 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.507) 0%, rgba(0, 0, 0, 0.22) 100%);
  z-index: 1;
}

.slide-content {
  position: absolute;
  bottom: 80px;
  left: 8vw;
  z-index: 2;
  max-width: 500px;
  margin-bottom: 40px;
}

.slide-content h3 {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.slide-content h1 {
  font-weight: 900;
  margin-bottom: 15px;
}

.slide-content p {
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 500;
  margin-bottom: 20px;
}

.pagination-bars {
  position: absolute;
  bottom: 60px;
  right: 10%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  color: white;
  font-size: 16px;
  font-weight: 900;
  z-index: 3;
}

.bars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bar {
  width: 60px;
  height: 1px;
  background: rgb(255, 255, 255);
  transition: background 0.3s ease;
}

.bar.active {
  height: 4px;
}

.slide-number {
  min-width: 40px;
  text-align: right;
}

/*============== About ==============================*/
.section__padding {
  padding: 75px 0;
}

.m-about__heading {
  margin-bottom: 44px;
}

.m-about__body {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 30px;
}

.m-about__img img {
  width: 100%;
  border-radius: 16px;
}

.m-about__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content__text h3 {
  font-weight: 700;
  font-size: clamp(24px, 4vw, 44px);
  margin-bottom: 24px;
}
.content__text p {
  font-family: var(--font-family-mont);
  font-weight: 500;
  font-size: clamp(14px, 4vw, 16px);
  line-height: 140%;
  margin-bottom: 12px;
  color: #5F5F5F;
}

.content__btn {
  margin: 18px 0;
}

.content__nums h4 {
  font-weight: 700;
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 24px;
}

.stats-block {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.number__wrapp {
  display: flex;
  align-items: center;
}
.number__wrapp .number {
  font-family: var(--font-family-mont);
  font-weight: 700;
  font-style: Bold;
  font-size: clamp(44px, 4vw, 64px);
}
.number__wrapp span {
  font-size: 48px;
  font-weight: 700;
}

.label {
  font-family: var(--font-family-mont);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #5F5F5F;
  margin-top: 16px;
}

/*============== Team ==============================*/
.heading__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}

.link_page-mob {
  display: none;
}

.m-team__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.m-team__body .team__item .vector {
  display: inline-block;
  font-weight: 700;
  font-size: 10px;
  line-height: 140%;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 15px;
  background: #23272A;
  color: #fff;
  margin: 12px 0;
}
.m-team__body .team__item-img {
  width: 100%;
  height: 400px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
.m-team__body .team__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.m-team__body .team__item-img:hover .team__info {
  opacity: 1;
  visibility: visible;
}
.m-team__body .team__item .team__info {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.65);
  padding: 24px 18px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
}
.m-team__body .team__item .name {
  font-weight: 700;
  font-style: Bold;
  font-size: clamp(18px, 2vw, 20px);
  line-height: 140%;
}
.m-team__body .team__item .email {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}

/*============== project ==============================*/
.m-project__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.m-posts__body .boundless-image {
  position: relative;
  display: flex;
}
.m-posts__body .boundless-image img {
  border-radius: 16px;
  height: 200px;
  object-fit: cover;
}
.m-posts__body .boundless-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.entry-card {
  position: relative;
  min-width: 100%;
}
.entry-card .entry-card-wrap .boundless-image .boundless-image-wrap {
  display: flex;
  position: relative;
}
.entry-card .entry-card-wrap .boundless-image .boundless-image-wrap:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.entry-card .entry-card-wrap .boundless-image .boundless-image-wrap .wp-post-image {
  border-radius: 16px;
  max-height: 300px;
  height: 100%;
}
.entry-card .entry-card-wrap .entry-title a {
  font-weight: 700;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 140%;
  text-transform: uppercase;
}

/*==============  ==============================*/
.posts-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.posts-container .wp-post-image {
  aspect-ratio: 16/9;
  border-radius: 14px;
}
.posts-container .post-categories {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0 12px;
}
.posts-container .post-categories .post-category {
  display: inline-block;
  color: #000;
  padding: 8px 12px;
  border-radius: 15px;
  font-family: var(--font-family-mont);
  font-weight: 600;
  font-size: 10px;
  line-height: 140%;
  text-transform: uppercase;
  margin: 3px;
}
.posts-container .post-categories .cat-1 {
  background: var(--category-1);
}
.posts-container .post-categories .cat-2 {
  background: var(--category-2);
}
.posts-container .post-categories .cat-3 {
  background: var(--category-3);
}
.posts-container .entry-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.posts-container .entry-excerpt {
  font-family: var(--font-family-mont);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
}

/*============== partners ==============================*/
.m-partners__body .partners__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-bottom: 20px;
  align-items: center;
}
.m-partners__body .partners__list li {
	padding: 0 15px;
}
.m-partners__body .partners__list li:not(:last-child) {
  border-right: 2px solid #ebebeb;
}

/*================ footer ============================*/
.footer {
  background: var(--main-color);
  border-radius: 64px 64px 0 0;
  padding: 55px 0;
  color: #fff;
}
.footer a {
  color: #fff;
}
.footer__adrs {
  margin-top: 23px;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 768px) {
  .footer__adrs {
    width: max-content;
    margin: 0 auto 32px;
    text-align: left !important;
    font-size: 14px;
  }
}
.footer__adrs p {
  display: block;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  margin-top: 44px;
}
@media (max-width: 1024px) {
  .footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .footer__bottom {
    margin-top: 32px;
  }
}
.footer__copy {
  font-size: 12px;
  font-weight: 900;
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (min-width: 1024px) {
  .footer__menu {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 1024px) {
  .footer__menu {
    order: -2;
  }
}
@media (max-width: 768px) {
  .footer__menu {
    gap: 20px;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .footer__menu li {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer__menu li {
    text-align: center;
  }
}
.footer__menu li a {
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
  white-space: nowrap;
}
.footer__menu li a:hover {
  text-decoration: none;
}
.footer__contacts {
  text-align: right;
}
@media (max-width: 1024px) {
  .footer__contacts {
    order: -1;
    text-align: center;
  }
}
.footer__contacts li {
  font-weight: 900;
}
.footer__contacts li:first-child {
  font-size: 20px;
}
.footer__contacts li:last-child {
  font-size: 16px;
}

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

.footer__logo a {
  font-family: var(--font-family-kyiv);
  font-weight: 900;
  font-size: 72.18px;
  line-height: 100%;
  color: #fff;
}

.footer__nav {
  display: grid;
  grid-template-columns: 204px 204px 204px;
  gap: 20px;
}
.footer__nav .footer-widget {
  margin: 0;
}
.footer__nav .footer-widget h4 {
  margin-bottom: 20px;
  font-weight: 900;
  font-size: 16px;
}
.footer__nav .footer-widget ul {
  display: grid;
  gap: 20px;
}
.footer__nav .footer-widget ul li a {
  font-size: 14px;
  font-weight: 500;
}
.footer__nav .footer-widget ul li a:hover {
  text-decoration: underline;
}

.footer__address {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.address__list .address__row {
  text-align: right;
  margin-bottom: 6px;
}

@media (min-width: 1510px) {
  ._container {
    max-width: 1490px;
  }
}
@media (max-width: 1040.98px) {
  .m-team__body {
    grid-template-columns: repeat(2, 49%);
    gap: 10px;
  }
}
@media (max-width: 959.98px) {
  .menu__icon {
    display: block;
    z-index: 8;
    position: relative;
    width: 42px;
    height: 42px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  #logo {
    display: flex;
  }
  #logo img {
	width: 50px;
    height: 50px;
  }
  .menu__icon span {
    position: absolute;
    left: 11px;
    top: 13px;
    height: 2px;
    width: 20px;
    background-color: var(--white-color);
    transition: all 0.3s ease 0s;
    border-radius: 2px;
  }
  .menu__icon::before,
  .menu__icon::after {
    position: absolute;
    left: 11px;
    height: 2px;
    background-color: var(--white-color);
    transition: all 0.3s ease 0s;
    border-radius: 2px;
  }
  .menu__icon::before,
  .menu__icon::after {
    content: "";
  }
  .menu__icon::before {
    top: 20px;
    width: 20px;
  }
  .menu__icon::after {
    bottom: 12px;
    width: 20px;
  }
  .menu__icon._active span {
    transform: scale(0) translate(0px, -50%);
  }
  .menu__icon._active::before {
    top: 50%;
    left: 11px;
    width: 22px;
    background-color: #fff;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon._active::after {
    top: 50%;
    left: 10px;
    width: 22px;
    background-color: #fff;
    transform: rotate(45deg) translate(0px, -50%);
  }
  .header {
    padding: 10px 0;
  }
  .header__body .header__logo {
    max-width: 160px;
  }
  header.dark-overlay::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    /* полупрозрачный черный фон */
    z-index: 3;
    /* выше обычного контента, но ниже модалок и т.п. */
    pointer-events: none;
    /* чтобы не мешал кликам */
  }
  .header__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    top: 0px;
    right: 0;
    width: 70%;
    transform: translateX(100%);
    visibility: hidden;
    transition: all 0.3s ease 0s;
    background: var(--main-color);
    border-radius: 30px 0 0 30px;
    overflow-y: auto;
    z-index: 7;
  }
  .header__right .header__logo-mobile {
    display: block;
    padding: 44px 44px 12px;
  }
  .header__right .menu__contact {
    display: block;
    padding: 44px;
  }
  .header__right .menu__contact .contact__row {
    margin-bottom: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
  }
  .header__right .menu__contact .contact__row a {
    color: #fff;
    font-weight: 400;
  }
  .header__right._active body {
    background: rgba(0, 0, 0, 0.5);
  }
  .header__menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    padding: 12px 32px;
    width: 100%;
  }
  .header__menu .menu__list {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .header__menu .menu__list .menu__link {
    font-weight: 700;
    font-size: 14px;
    margin-left: 0;
    margin-bottom: 5px;
    position: relative;
    width: 100%;
  }
  .header__menu .menu__list .menu__link a {
    color: #fff;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
  }
  .header__menu .wd-nav {
    margin-bottom: 32px;
  }
  .header__menu form {
    margin-right: 0;
  }
  ._active {
    visibility: visible;
    transform: translateX(0);
  }
  .header__button {
    margin-right: 3em;
  }
  .m-about__body {
    grid-template-columns: 1fr;
  }
  .m-project__body {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992.98px) {
  .posts-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 1024px) {
  .footer__body {
    flex-direction: column;
  }
  .footer__body .footer__logo {
    margin-bottom: 30px;
    text-align: center;
  }
  .footer__adrs {
    text-align: center;
  }
  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__nav .footer-widget {
    margin: 30px 0 0;
    text-align: center;
  }
}
@media (max-width: 768.98px) {
  .footer__body .footer__logo {
    margin-bottom: 24px;
  }
  .footer__body .footer__logo a {
    font-size: 44px;
  }
  .footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 44px 20px;
    justify-content: center;
  }
  .footer__nav .footer-widget {
    margin: 0;
    text-align: left;
  }
  .footer__nav .footer-widget:nth-child(1), .footer__nav .footer-widget:nth-child(2) {
    min-width: 152px;
  }
  .footer__nav .footer-widget:nth-child(3) {
    min-width: 204px;
  }
}
@media (max-width: 639.98px) {
  .section__padding {
    padding: 45px 0;
  }
  .slide-content {
    left: 18px;
    width: 92%;
  }
  .posts-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .footer {
    border-radius: 32px 32px 0 0;
  }
}
@media (max-width: 580.98px) {
  .m-team__body {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .m-team__body .team__item-img {
    height: auto;
  }
  .link_page {
    display: none;
  }
  .link_page-mob {
    display: block;
    text-align: center;
    margin-top: 20px;
  }
  .m-project__body {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .m-partners__body .partners__list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 10px;
  }
  .m-partners__body .partners__list li {
    margin-bottom: 5px;
  }
  .m-partners__body .partners__list li:not(:last-child) {
    border-right: 2px solid transparent;
  }
  .m-partners__body .partners__list li:nth-child(2n+1) {
    border-right: 2px solid #ebebeb;
  }
}
@media (max-width: 479.98px) {
  .btn {
    width: 100%;
  }
  .slide-content {
    max-width: 420px;
  }
  .content__btn .m-about__btn {
    width: 100%;
  }
  .stat {
    width: 50%;
    padding: 5px;
  }
  .m-posts__body {
    width: 440px;
    overflow-x: scroll;
  }
  .m-posts__body .posts-container {
    display: grid;
    grid-template-columns: repeat(5, 340px);
    width: 1420px;
  }
}
@media (max-width: 412.98px) {
  .m-posts__body {
    width: 380px;
  }
}
.header-post {
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 100px;
  color: #fff;
  position: relative;
}
.header-post:before {
  	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}
@media (max-width: 768px) {
  .header-post {
    margin-bottom: 64px;
  }
}
.header-post ._container {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}
.header-post__title {
  margin-bottom: 12px;
  font-family: var(--font-family-kyiv);
  font-size: 44px;
  font-weight: 900;
  z-index: 2;
}
@media (max-width: 768px) {
  .header-post__title {
    font-size: 24px;
  }
}
.header-post__description {
  font-size: 16px;
  line-height: 1.4;
  max-width: 651px;
  z-index: 2;
}
@media (max-width: 768px) {
  .header-post__description {
    font-size: 14px;
  }
}
.header-post__category {
  margin-bottom: 12px;
  padding: 0 29px;
  height: 30px;
  text-transform: uppercase;
  border-radius: 100px;
  font-weight: 600;
  font-size: 10px;
  color: #000;
  width: max-content;
  align-items: center;
  display: flex;
  z-index: 2;
}

.page-header {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
}

.team {
  margin: 100px 0;
}
@media (max-width: 768px) {
  .team {
    margin: 64px 0;
  }
}
.team__hero {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 44px;
}
@media (max-width: 768px) {
  .team__hero {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
.team__title {
  font-size: 54px;
  font-weight: bold;
  color: #000;
}
@media (max-width: 768px) {
  .team__title {
    font-size: 32px;
  }
}
.team__description {
  font-size: 16px;
  font-weight: 500;
  color: #5F5F5F;
}
.team .m-team__body {
  gap: 44px 20px;
}
@media (max-width: 768px) {
  .team .m-team__body {
    gap: 20px;
  }
}

.posts-page {
  margin: 100px 0;
}
@media (max-width: 768px) {
  .posts-page {
    margin: 64px 0;
  }
}

@media (max-width: 479.98px) {
  .posts-page .m-posts__body {
    width: 100%;
    overflow-x: hidden;
  }
  .posts-page .m-posts__body .posts-container {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.m-team__body .team__item-img img {
  border-radius: 16px;
}

.mission__img img {
  border-radius: 16px;
}

.wp-block-image img {
  border-radius: 12px;
}

.single-article img {
  border-radius: 12px;
}

.anonce__items img {
  height: 440px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 640px) {
  .anonce__items img {
    height: auto;
  }
}
.page-header {
  position: relative;
}
.page-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1125) 100%);
}
.page-header ._container {
  position: relative;
  z-index: 1;
}

.more-posts {
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: max-content;
  height: 64px;
  border: 1px solid #5765F2;
  border-radius: 58px;
  font-weight: 900;
  font-size: 16px;
  color: #5765F2;
  transition: all 0.5s ease;
}
@media (max-width: 400px) {
  .more-posts {
    width: 100%;
  }
}
.more-posts:hover {
  background: #5765F2;
  color: #fff;
}

@media (max-width: 959.98px) {
  .header__menu .menu__list {
    align-items: flex-start;
  }
  .header__menu .menu__list > li.menu-item-has-children > a {
    position: relative;
  }
  .header__menu .menu__list > li.menu-item-has-children > a:before {
    content: "";
    position: absolute;
    right: -32px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    background: url("../img/mobile-menu-arrow.svg") center no-repeat;
    width: 24px;
    height: 24px;
    transition: transform 0.5s ease;
  }
  .header__menu .menu__list > li.menu-item-has-children.open > a:before {
    transform: translateY(-50%) rotate(0deg);
  }
  .header__menu .menu__list .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    max-width: 100%;
    background: transparent;
    border-radius: 0;
    padding: 22px 0;
    display: none;
    min-width: 1px;
  }
  .header__menu .menu__list .sub-menu li {
    padding-left: 15px;
  }
  .header__menu .menu__list a {
    text-decoration: none !important;
  }
  .header__menu .menu__list-langs {
    flex-direction: row;
  }
  .header__menu .menu__list-langs li:nth-child(1) a:after {
    display: none;
  }
}
.boundless-image {
  margin-bottom: 14px;
}

.project-categories.posts-container {
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 20px;
}
@media (max-width: 993px) {
  .project-categories.posts-container {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .project-categories.posts-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.project-categories .boundless-image img {
  height: 280px;
}
@media (max-width: 993px) {
  .project-categories .boundless-image img {
    height: 200px;
  }
}

.header-projects {
  position: relative;
  background-position: center center;
  background-size: cover;
}
.header-projects:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.1625) 100%);
}
.header-projects ._container {
  height: 600px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.header-projects__heading {
  display: flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 30px;
  padding: 0 27px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  background: #AAE8B8;
  min-width: 97px;
}
.header-projects__title {
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: #fff;
}
@media (max-width: 768px) {
  .header-projects__title {
    font-size: 32px;
  }
}
.header-projects__description {
  max-width: 651px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 768px) {
  .header-projects__description {
    font-size: 14px;
  }
}

.pos-btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.pos-btn a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  background: #5765F2;
  height: 64px;
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 58px;
  transition: opacity 0.5s ease;
}
.pos-btn a:hover {
  opacity: 0.5;
}
.pos-btn a span {
  width: 126px;
  text-align: center;
}

.to-support__tab:not(.active) {
  display: none;
}
@media (max-width: 768px) {
  .to-support__tabs {
    margin: 0 -20px;
  }
}
.to-support__tabs-list {
  width: max-content;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  background: #F5F5F5;
  border-radius: 100px;
  padding: 6px;
}
@media (max-width: 500px) {
  .to-support__tabs-list {
    width: 100%;
  }
}
.to-support__tabs-list li {
  width: 200px;
  height: 64px;
  border-radius: 58px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.5s ease;
}
@media (max-width: 500px) {
  .to-support__tabs-list li {
    width: 50%;
    font-size: 14px;
  }
}
.to-support__tabs-list li:not(.active) {
  cursor: pointer;
}
.to-support__tabs-list li.active {
  background: #5765F2;
  font-weight: 900;
  color: #fff;
}
.to-support__pay-details {
  background: #BFC5FF;
  border-radius: 18px;
  padding: 48px 64px 24px;
}
@media (max-width: 1024px) {
  .to-support__pay-details {
    padding: 48px 20px 24px;
  }
}
@media (max-width: 768px) {
  .to-support__pay-details {
    padding: 70px 20px;
    border-radius: 0;
  }
}
.to-support__pay-details--title {
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 768px) {
  .to-support__pay-details--title {
    margin-bottom: 12px;
  }
}
.to-support__pay-details--value {
  font-weight: 700;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .to-support__pay-details--value {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .to-support__pay-details--value {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.to-support__pay-details--copy a {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid #FFFFFF;
  border-radius: 50px;
  height: 54px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  transition: all 0.5s ease;
}
.to-support__pay-details--copy a:hover {
  color: #000;
  background: #fff;
}
@media (max-width: 768px) {
  .to-support__pay-details--copy {
    display: flex;
    justify-content: center;
  }
  .to-support__pay-details--copy a {
    max-width: 224px;
  }
}
@media (max-width: 480px) {
  .to-support__pay-details--copy a {
    max-width: 100%;
  }
}
.to-support__pay-details--btn {
  display: flex;
  justify-content: center;
}
.to-support__pay-details ul {
  margin-bottom: 22px;
}
.to-support__pay-details ul li {
  display: grid;
  align-items: center;
  grid-template-columns: 406px 1fr 180px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2509803922);
  padding-bottom: 22px;
  margin-bottom: 22px;
  position: relative;
}
@media (max-width: 1200px) {
  .to-support__pay-details ul li {
    grid-template-columns: 250px 1fr 180px;
  }
}
@media (max-width: 1024px) {
  .to-support__pay-details ul li {
    grid-template-columns: 208px 1fr 160px;
  }
}
@media (max-width: 768px) {
  .to-support__pay-details ul li {
    display: block;
  }
}
.to-support__pay-details ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.to-support__pay {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 64px;
  align-items: center;
  background: #FFBFE2;
  border-radius: 18px;
  padding: 48px 64px;
}
@media (max-width: 1200px) {
  .to-support__pay {
    grid-template-columns: 386px 1fr;
    gap: 38px;
  }
}
@media (max-width: 1024px) {
  .to-support__pay {
    padding: 70px 20px;
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .to-support__pay {
    grid-template-columns: 1fr;
    gap: 33px;
    border-radius: 0;
  }
}
.to-support__pay--form {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
}
@media (max-width: 768px) {
  .to-support__pay--form {
    width: 100%;
  }
}
.to-support__pay--checkbox {
  display: flex;
  align-items: center;
  width: max-content;
  margin: 0 auto 37px;
  background: #F5F5F5;
  border-radius: 100px;
  padding: 6px;
}
.to-support__pay--checkbox li {
  width: 160px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  border-radius: 58px;
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .to-support__pay--checkbox li {
    width: 132px;
  }
}
.to-support__pay--checkbox li.active {
  font-weight: 900;
  color: #fff;
  background: #7D82BD;
}
.to-support__pay--checkbox li:not(.active) {
  cursor: pointer;
}
.to-support__pay--input {
  position: relative;
  margin-bottom: 13px;
}
.to-support__pay--input input {
  width: 100%;
  height: 70px;
  outline: none;
  border: 0;
  border-bottom: 1px solid #BFBFBF;
  font-size: 44px;
  font-weight: 800;
}
@media (max-width: 768px) {
  .to-support__pay--input input {
    height: 60px;
    font-size: 32px;
    font-weight: 500;
  }
}
.to-support__pay--input span {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  text-transform: uppercase;
}
.to-support__pay--values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 23px;
}
@media (max-width: 768px) {
  .to-support__pay--values {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.to-support__pay--val {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  font-size: 14px;
  border: 1px solid #C5C5C5;
  border-radius: 100px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .to-support__pay--val {
    gap: 4px;
  }
}
.to-support__pay--val span {
  font-size: 12px;
  text-transform: uppercase;
}
.to-support__pay--text {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 27px;
}
.to-support__pay--content {
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 768px) {
  .to-support__pay--content {
    font-size: 14px;
  }
}
.to-support__pay--content h4 {
  margin-bottom: 24px;
  font-size: 44px;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .to-support__pay--content h4 {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .to-support__pay--content h4 {
    font-size: 32px;
  }
}
.to-support__pay--content p:not(:last-child) {
  margin-bottom: 12px;
}
.to-support__pay--all {
  margin-top: 24px;
  display: none;
}
.to-support__pay--all a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  background: #fff;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 900;
  color: #000;
  width: max-content;
  transition: opacity 0.5s ease;
  padding: 0 41px;
}
@media (max-width: 400px) {
  .to-support__pay--all a {
    width: 100%;
  }
}
.to-support__pay--all a:hover {
  opacity: 0.5;
}
.to-support__section {
  margin-top: 75px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .to-support__section {
    margin-top: 30px;
    margin-bottom: 70px;
  }
  .to-support__section ._container {
    padding: 0;
  }
}
.to-support__section .to-support__pay--all {
  display: flex;
}

/*# sourceMappingURL=style.css.map */