@charset "UTF-8";

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #231F20;
  line-height: 1.5;
  letter-spacing: -0.02em;
  font-family: "Montserrat";
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Montserrat";
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}

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

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стилі будуть застосовуватись до
всіх класів, що містять *__container
Наприклад header__container, main__container і т.п.
Сніппет (HTML): cnt
*/

[class*=__container] {
  max-width: 71.875rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.gradient {
  visibility: hidden;
  position: absolute;
  top: -3000px;
}

.social__link {
  text-decoration: none;
}

.social__link path {
  -webkit-transition: fill 1s ease-in-out;
  -o-transition: fill 1s ease-in-out;
  transition: fill 1s ease-in-out;
}

.social__link:hover svg path:nth-child(1) {
  fill: url(#gradient);
}

.gradient {
  visibility: hidden;
  position: absolute;
  top: -3000px;
}

.social__link {
  text-decoration: none;
}

.social__link path {
  -webkit-transition: fill 1s ease-in-out;
  -o-transition: fill 1s ease-in-out;
  transition: fill 1s ease-in-out;
}

.social__link:hover svg path:nth-child(1) {
  fill: url(#gradient);
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #231F20;
  padding: 4px 12px;
  border-radius: 48px;
  -webkit-transition: background 1s;
  -o-transition: background 1s;
  transition: background 1s;
  background: #F3F3F3;
}

.button.white {
  background: #fff;
}

.button:hover {
  background: -webkit-gradient(linear, left top, right top, from(#3300CC), to(#E03616));
  background: -o-linear-gradient(left, #3300CC 0%, #E03616 100%);
  background: linear-gradient(90deg, #3300CC 0%, #E03616 100%);
  color: #fff;
}

.button:hover svg path {
  stroke: #fff;
}

.title {
  font-weight: 700;
  line-height: 1.14;
}

.title_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.title__decor {
  margin: 9px 0;
  display: inline-block;
  max-width: 544px;
  width: 100%;
  height: 46px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(224, 128, 92)), color-stop(29%, rgb(189, 66, 77)), color-stop(59%, rgb(166, 54, 103)), to(rgb(135, 74, 161)));
  background: -o-linear-gradient(left, rgb(224, 128, 92) 0%, rgb(189, 66, 77) 29%, rgb(166, 54, 103) 59%, rgb(135, 74, 161) 100%);
  background: linear-gradient(90deg, rgb(224, 128, 92) 0%, rgb(189, 66, 77) 29%, rgb(166, 54, 103) 59%, rgb(135, 74, 161) 100%);
}

.background {
  background: url("../img/main_bg.jpg") top/cover no-repeat;
}

._block991.partners-list {
  display: none;
}

.header {
  background: url("../img/header_bg.jpg") left/cover no-repeat;
  height: 100%;
  max-height: 37.5rem;
  min-height: 32.1875rem;
}

.header__container {
  position: relative;
}

.header__top_wrapper {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__menu {
  font-family: "Montserrat";
  font-weight: 400;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social__items {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 4;
}

.icon-menu {
  display: none;
}

.header-logo__img {
  pointer-events: none;
  position: absolute;
  left: -382px;
  z-index: 0;
}

.descr {
  max-width: 34rem;
  margin-bottom: 7.5rem;
  position: relative;
  z-index: 1;
}

.descr__title {
  position: relative;
  letter-spacing: -0.04em;
  line-height: 1.1;
  font-weight: 700;
}

.descr__title::before {
  position: absolute;
  content: "";
  background: url("../img/icons/dot.svg") 0 0 no-repeat;
  width: 12px;
  height: 12px;
  left: -40px;
  top: 50%;
}

.ns-header {
  height: 100%;
  max-height: 37.5rem;
  min-height: 32.1875rem;
}

.ns-header__container {
  position: relative;
}

.ns-header__top_wrapper {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ns-header__menu {
  font-family: "Space Grotesk";
  font-weight: 400;
}

.social__items_gap {
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.footer {
  background: url("../img/footer_bg.jpg") left/cover no-repeat;
  font-weight: 400;
}

.footer__logo {
  margin-bottom: 23px;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.footer__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 384px;
          flex: 0 1 384px;
  font-size: 12px;
  line-height: 2;
}

.footer__text p:not(:last-child) {
  margin-bottom: 12px;
}

.footer__items {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__europe-img {
  line-height: 2;
}

.footer__europe-text {
  max-width: 246px;
  font-size: 12px;
}

.footer__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 352px;
          flex: 0 1 352px;
}

.footer__img img {
  width: 100%;
}

.ambition {
  background: #fff;
  position: relative;
}

.descr-ambition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.descr-ambition__text {
  font-weight: 500;
  max-width: 16rem;
}

.descr-ambition__title {
  max-width: 18rem;
}

.ambition__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
}

.card__box {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-filter: drop-shadow(0px 28px 48px rgba(0, 0, 0, 0.08));
          filter: drop-shadow(0px 28px 48px rgba(0, 0, 0, 0.08));
  background: #FFFFFF;
  border-radius: 16px;
}

.card__text {
  color: #6F6F76;
  font-weight: 500;
}

.card__number {
  font-weight: 700;
}

.objectives__list-wrapper {
  padding: 64px 32px 40px;
  background: url("../img/objectives.jpg") 67% 0/cover no-repeat;
  margin-right: -32px;
  margin-left: -32px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.objectives__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}

.objectives__item {
  position: relative;
  font-weight: 500;
  max-width: 452px;
  height: 104px;
}

.objectives__item::before {
  position: absolute;
  content: "";
  background: url("../img/icons/dot.svg") 0 0 no-repeat;
  width: 12px;
  height: 12px;
  left: -32px;
  top: 0;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
}

.innovation_1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 24%;
          flex: 0 1 24%;
  border-right: 1px solid #C4C4C4;
}

.countries {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 52%;
          flex: 1 1 52%;
}

.innovation_2 {
  border-left: 1px solid #C4C4C4;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 24%;
          flex: 0 1 24%;
}

.partners__subtitle {
  font-weight: 700;
}

.partners__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.partners__item-box {
  padding: 51px 24px 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 24.4375rem;
  transition: all 0.7s;

}

.partners__item-box:hover {
  -webkit-box-shadow: 0px 28px 48px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 28px 48px 0px rgba(0, 0, 0, 0.08);
  position: relative;
}

.partners__item-box:hover::after {
  position: absolute;
  content: url(../img/icons/partners-arrow.svg);
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.partners__item-img {
  width: 100%;
  max-width: 185px;
  height: 122px;
  max-height: 122px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 32px;
}

.partners__item-img img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 185px;
  max-height: 122px;
}

.partners__item-text {
  max-height: 97px;
  font-weight: 500;
  color: #6F6F76;
  text-align: center;
}

.innovation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.innovation__title {
  border-bottom: 1px solid #C4C4C4;
  text-transform: uppercase;
}

.countries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.countries__items-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.countries__title {
  border-bottom: 1px solid #C4C4C4;
  text-transform: uppercase;
}

.countries-box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
          transition: all 1s;

}

.countries__title,
.innovation__title {
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  line-height: 2;
  padding: 32px 0;
}

.partners-list__title {
  font-weight: 600;
  font-size: 12px;
  line-height: 2;
  border-bottom: 1px solid #C4C4C4;
  text-transform: uppercase;
}

.partners-list-items {
  row-gap: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.partners-list__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 35px;
  transition: all 1s;

}

.partners-list__box:hover {
  -webkit-box-shadow: 0px 28px 48px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 28px 48px 0px rgba(0, 0, 0, 0.08);
  position: relative;
}

.partners-list__box:hover::after {
  position: absolute;
  content: url(../img/icons/partners-arrow.svg);
  bottom: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.partners-list__img {
  min-width: 185px;
  max-height: 122px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.partners-list__img img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 185px;
  max-height: 122px;
}

.partners-list__text {
  font-weight: 500;
  color: #6F6F76;
  text-transform: none;
}

.ns-wrapper {
  background: url("../img/news-sing_bg.jpg") left/cover no-repeat;
  height: 2000px;
}

@media (min-width: 56.25em) {
  .descr {
    margin-top: 12.0625rem;
  }
}

@media (min-width: 61.9375em) {
  .header__container {
    padding-top: 4rem;
  }

  .header-logo__img {
    top: -0.3125rem;
  }

  .descr__title {
    margin-left: 23rem;
  }

  .ns-header__container {
    padding-top: 4rem;
  }

  .partners-list-items {
    margin-top: 0.625rem;
  }

  .partners-list__text {
    margin-top: 0.9375rem;
  }
}

@media (min-width: 71.875em) {
  .title {
    font-size: 2.5rem;
  }

  .title_flex {
    gap: 5.1875rem;
  }

  .header__container {
    padding-bottom: 8.125rem;
  }

  .menu__list {
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }

  .descr__title {
    font-size: 4rem;
  }

  .ns-header__container {
    padding-bottom: 4rem;
  }

  .footer__container {
    padding-top: 5rem;
  }

  .footer__container {
    padding-bottom: 5rem;
  }

  .footer__social {
    margin-top: 3.4375rem;
  }

  .footer__nav-wrapper {
    margin-bottom: 2rem;
  }

  .footer__nav {
    row-gap: 0.75rem;
  }

  .footer__europe-img {
    margin-bottom: 1.4375rem;
  }

  .ambition__container {
    padding-top: 10rem;
  }

  .ambition__container {
    padding-bottom: 5rem;
  }

  .descr-ambition {
    margin-bottom: 2rem;
  }

  .descr-ambition__title {
    margin-right: 17.1875rem;
  }

  .card__box {
    padding: 2rem;
  }

  .card__box {
    padding-bottom: 3rem;
  }

  .card__box {
    row-gap: 2.5rem;
  }

  .objectives__container {
    padding-top: 5rem;
  }

  .objectives__container {
    padding-bottom: 5rem;
  }

  .objectives__title {
    margin-bottom: 4rem;
  }

  .partners__container {
    padding-top: 5rem;
  }

  .partners__container {
    padding-bottom: 5rem;
  }

  .partners__subtitle {
    margin-bottom: 4.0625rem;
  }
}

@media (max-width: 50em) {
  .header-logo__img {
    top: 1.875rem;
  }
}

@media (max-width: 20em) {
  .title {
    font-size: 2rem;
  }

  .title_flex {
    gap: 1.25rem;
  }

  .header__container {
    padding-bottom: 6.875rem;
  }

  .descr__title {
    margin-left: 3.125rem;
  }

  .descr__title {
    font-size: 3rem;
  }

  .ns-header__container {
    padding-bottom: 1.875rem;
  }

  .footer__container {
    padding-top: 1.25rem;
  }

  .footer__container {
    padding-bottom: 1.25rem;
  }

  .footer__nav-wrapper {
    margin-bottom: 0.9375rem;
  }

  .footer__nav {
    row-gap: 0.4375rem;
  }

  .footer__europe-img {
    margin-bottom: 0.9375rem;
  }

  .ambition__container {
    padding-top: 1.875rem;
  }

  .ambition__container {
    padding-bottom: 1.25rem;
  }

  .descr-ambition {
    margin-bottom: 0.9375rem;
  }

  .objectives__container {
    padding-top: 1.25rem;
  }

  .objectives__container {
    padding-bottom: 1.25rem;
  }

  .objectives__title {
    margin-bottom: 1.25rem;
  }

  .partners__container {
    padding-top: 1.25rem;
  }

  .partners__container {
    padding-bottom: 1.25rem;
  }

  .partners__subtitle {
    margin-bottom: 1.25rem;
  }

  .partners-list-items {
    margin-top: 0.0000000625rem;
  }

  .partners-list__text {
    margin-top: 0.5rem;
  }
}

@media (max-width: 61.99875em) {
  ._none991.partners__items {
    display: none;
  }

  ._block991.partners-list {
    display: block;
  }

  .partners__subtitle {
    margin-bottom: 10px;
  }
}

@media (max-width: 47.99875em) {
  ._none767 {
    display: none;
  }

  .header__container {
    padding-top: 1.25rem;
  }

  .header__top_wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .menu__body {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    -webkit-transition: left 1s ease 0s;
    -o-transition: left 1s ease 0s;
    transition: left 1s ease 0s;
    z-index: 4;
  }

  .menu-open .menu__body {
    left: 0;
    padding-top: 75px;
    overflow-y: auto;
  }

  .menu-open .menu__body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    background-color: rgba(255, 255, 255, 0.6);
    z-index: -1;
  }

  .menu__list {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }

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

  .icon-menu {
    display: block;
    position: relative;
    width: 1.875rem;
    height: 1.125rem;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #000;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .ns-header__container {
    padding-top: 1.25rem;
  }

  .ns-header__top_wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .footer__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .footer__text {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    margin-bottom: 15px;
  }

  .footer__items {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 212px;
            flex: 0 1 212px;
  }

  .footer__img {
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
  }

  .descr-ambition {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .descr-ambition__text {
    max-width: unset;
  }

  .descr-ambition__title {
    max-width: unset;
    margin-left: 0;
  }

  .ambition__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 5px;
  }

  .card__box {
    max-width: unset;
    padding-bottom: 20px;
  }

  .objectives__list-wrapper {
    margin-right: 0;
    padding: 20px 15px 20px 60px;
    background: url("../img/objectives.jpg") 67% 0/auto no-repeat;
  }

  .objectives__items {
    row-gap: 10px;
  }

  .objectives__item {
    height: unset;
    max-width: unset;
  }
}

@media (max-width: 47.99875em) and (max-width: 20em) {
  .menu__list {
    font-size: 1.25rem;
  }

  .menu__list {
    row-gap: 0.5rem;
  }

  .footer__img {
    max-width: 15.625rem;
  }
}

@media (max-width: 47.99875em) and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}

@media (max-width: 47.9375em) {
  .footer__social {
    margin-top: 0.9375rem;
  }

  .descr-ambition__title {
    margin-right: 2.5rem;
  }

  .card__box {
    padding: 1.25rem;
  }

  .card__box {
    padding-bottom: 2rem;
  }

  .card__box {
    row-gap: 0.9375rem;
  }
}

@media (max-width: 43.75em) {
  .descr {
    margin-top: 6.25rem;
  }
}

@media (max-width: 29.99875em) {
  .title__decor {
    display: none;
  }

  .footer__text {
    line-height: 1.5;
  }

  .footer__items {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }

  .footer__img {
    display: none;
  }

  .objectives__item {
    font-size: 14px;
  }

  .objectives__item::before {
    left: -25px;
    width: 10px;
    height: 10px;
    background-size: contain;
  }

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

  .partners-list__text {
    text-align: center;
  }
}

@media (min-width: 20em) and (max-width: 71.875em) {
@supports (font-size: clamp( 2rem , 1.8072289157rem  +  0.9638554217vw , 2.5rem )) {
    .title {
      font-size: clamp( 2rem , 1.8072289157rem  +  0.9638554217vw , 2.5rem );
    }
}

@supports not (font-size: clamp( 2rem , 1.8072289157rem  +  0.9638554217vw , 2.5rem )) {
    .title {
      font-size: calc(2rem + 0.5 * (100vw - 20rem) / 51.875);
    }
}

@supports (gap: clamp( 1.25rem , -0.2680722892rem  +  7.5903614458vw , 5.1875rem )) {
    .title_flex {
      gap: clamp( 1.25rem , -0.2680722892rem  +  7.5903614458vw , 5.1875rem );
    }
}

@supports not (gap: clamp( 1.25rem , -0.2680722892rem  +  7.5903614458vw , 5.1875rem )) {
    .title_flex {
      gap: calc(1.25rem + 3.9375 * (100vw - 20rem) / 51.875);
    }
}

@supports (padding-bottom: clamp( 6.875rem , 6.3930722892rem  +  2.4096385542vw , 8.125rem )) {
    .header__container {
      padding-bottom: clamp( 6.875rem , 6.3930722892rem  +  2.4096385542vw , 8.125rem );
    }
}

@supports not (padding-bottom: clamp( 6.875rem , 6.3930722892rem  +  2.4096385542vw , 8.125rem )) {
    .header__container {
      padding-bottom: calc(6.875rem + 1.25 * (100vw - 20rem) / 51.875);
    }
}

@supports (font-size: clamp( 3rem , 2.6144578313rem  +  1.9277108434vw , 4rem )) {
    .descr__title {
      font-size: clamp( 3rem , 2.6144578313rem  +  1.9277108434vw , 4rem );
    }
}

@supports not (font-size: clamp( 3rem , 2.6144578313rem  +  1.9277108434vw , 4rem )) {
    .descr__title {
      font-size: calc(3rem + 1 * (100vw - 20rem) / 51.875);
    }
}

@supports (padding-bottom: clamp( 1.875rem , 1.0557228916rem  +  4.0963855422vw , 4rem )) {
    .ns-header__container {
      padding-bottom: clamp( 1.875rem , 1.0557228916rem  +  4.0963855422vw , 4rem );
    }
}

@supports not (padding-bottom: clamp( 1.875rem , 1.0557228916rem  +  4.0963855422vw , 4rem )) {
    .ns-header__container {
      padding-bottom: calc(1.875rem + 2.125 * (100vw - 20rem) / 51.875);
    }
}

@supports (padding-top: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem )) {
    .footer__container {
      padding-top: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem );
    }
}

@supports not (padding-top: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem )) {
    .footer__container {
      padding-top: calc(1.25rem + 3.75 * (100vw - 20rem) / 51.875);
    }
}

@supports (padding-bottom: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem )) {
    .footer__container {
      padding-bottom: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem );
    }
}

@supports not (padding-bottom: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem )) {
    .footer__container {
      padding-bottom: calc(1.25rem + 3.75 * (100vw - 20rem) / 51.875);
    }
}

@supports (margin-bottom: clamp( 0.9375rem , 0.5278614458rem  +  2.0481927711vw , 2rem )) {
    .footer__nav-wrapper {
      margin-bottom: clamp( 0.9375rem , 0.5278614458rem  +  2.0481927711vw , 2rem );
    }
}

@supports not (margin-bottom: clamp( 0.9375rem , 0.5278614458rem  +  2.0481927711vw , 2rem )) {
    .footer__nav-wrapper {
      margin-bottom: calc(0.9375rem + 1.0625 * (100vw - 20rem) / 51.875);
    }
}

@supports (row-gap: clamp( 0.4375rem , 0.3170180723rem  +  0.6024096386vw , 0.75rem )) {
    .footer__nav {
      row-gap: clamp( 0.4375rem , 0.3170180723rem  +  0.6024096386vw , 0.75rem );
    }
}

@supports not (row-gap: clamp( 0.4375rem , 0.3170180723rem  +  0.6024096386vw , 0.75rem )) {
    .footer__nav {
      row-gap: calc(0.4375rem + 0.3125 * (100vw - 20rem) / 51.875);
    }
}

@supports (margin-bottom: clamp( 0.9375rem , 0.7447289157rem  +  0.9638554217vw , 1.4375rem )) {
    .footer__europe-img {
      margin-bottom: clamp( 0.9375rem , 0.7447289157rem  +  0.9638554217vw , 1.4375rem );
    }
}

@supports not (margin-bottom: clamp( 0.9375rem , 0.7447289157rem  +  0.9638554217vw , 1.4375rem )) {
    .footer__europe-img {
      margin-bottom: calc(0.9375rem + 0.5 * (100vw - 20rem) / 51.875);
    }
}

@supports (padding-top: clamp( 1.875rem , -1.2575301205rem  +  15.6626506024vw , 10rem )) {
    .ambition__container {
      padding-top: clamp( 1.875rem , -1.2575301205rem  +  15.6626506024vw , 10rem );
    }
}

@supports not (padding-top: clamp( 1.875rem , -1.2575301205rem  +  15.6626506024vw , 10rem )) {
    .ambition__container {
      padding-top: calc(1.875rem + 8.125 * (100vw - 20rem) / 51.875);
    }
}

@supports (padding-bottom: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem )) {
    .ambition__container {
      padding-bottom: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem );
    }
}

@supports not (padding-bottom: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem )) {
    .ambition__container {
      padding-bottom: calc(1.25rem + 3.75 * (100vw - 20rem) / 51.875);
    }
}

@supports (margin-bottom: clamp( 0.9375rem , 0.5278614458rem  +  2.0481927711vw , 2rem )) {
    .descr-ambition {
      margin-bottom: clamp( 0.9375rem , 0.5278614458rem  +  2.0481927711vw , 2rem );
    }
}

@supports not (margin-bottom: clamp( 0.9375rem , 0.5278614458rem  +  2.0481927711vw , 2rem )) {
    .descr-ambition {
      margin-bottom: calc(0.9375rem + 1.0625 * (100vw - 20rem) / 51.875);
    }
}

@supports (padding-top: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem )) {
    .objectives__container {
      padding-top: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem );
    }
}

@supports not (padding-top: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem )) {
    .objectives__container {
      padding-top: calc(1.25rem + 3.75 * (100vw - 20rem) / 51.875);
    }
}

@supports (padding-bottom: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem )) {
    .objectives__container {
      padding-bottom: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem );
    }
}

@supports not (padding-bottom: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem )) {
    .objectives__container {
      padding-bottom: calc(1.25rem + 3.75 * (100vw - 20rem) / 51.875);
    }
}

@supports (margin-bottom: clamp( 1.25rem , 0.1897590361rem  +  5.3012048193vw , 4rem )) {
    .objectives__title {
      margin-bottom: clamp( 1.25rem , 0.1897590361rem  +  5.3012048193vw , 4rem );
    }
}

@supports not (margin-bottom: clamp( 1.25rem , 0.1897590361rem  +  5.3012048193vw , 4rem )) {
    .objectives__title {
      margin-bottom: calc(1.25rem + 2.75 * (100vw - 20rem) / 51.875);
    }
}

@supports (padding-top: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem )) {
    .partners__container {
      padding-top: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem );
    }
}

@supports not (padding-top: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem )) {
    .partners__container {
      padding-top: calc(1.25rem + 3.75 * (100vw - 20rem) / 51.875);
    }
}

@supports (padding-bottom: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem )) {
    .partners__container {
      padding-bottom: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem );
    }
}

@supports not (padding-bottom: clamp( 1.25rem , -0.1957831325rem  +  7.2289156627vw , 5rem )) {
    .partners__container {
      padding-bottom: calc(1.25rem + 3.75 * (100vw - 20rem) / 51.875);
    }
}

@supports (margin-bottom: clamp( 1.25rem , 0.1656626506rem  +  5.421686747vw , 4.0625rem )) {
    .partners__subtitle {
      margin-bottom: clamp( 1.25rem , 0.1656626506rem  +  5.421686747vw , 4.0625rem );
    }
}

@supports not (margin-bottom: clamp( 1.25rem , 0.1656626506rem  +  5.421686747vw , 4.0625rem )) {
    .partners__subtitle {
      margin-bottom: calc(1.25rem + 2.8125 * (100vw - 20rem) / 51.875);
    }
}
}

@media (min-width: 47.99875em) and (max-width: 61.9375em) {
@supports (padding-top: clamp( 1.25rem , -8.2197560757rem  +  19.7291722715vw , 4rem )) {
    .header__container {
      padding-top: clamp( 1.25rem , -8.2197560757rem  +  19.7291722715vw , 4rem );
    }
}

@supports not (padding-top: clamp( 1.25rem , -8.2197560757rem  +  19.7291722715vw , 4rem )) {
    .header__container {
      padding-top: calc(1.25rem + 2.75 * (100vw - 47.99875rem) / 13.93875);
    }
}

@supports (padding-top: clamp( 1.25rem , -8.2197560757rem  +  19.7291722715vw , 4rem )) {
    .ns-header__container {
      padding-top: clamp( 1.25rem , -8.2197560757rem  +  19.7291722715vw , 4rem );
    }
}

@supports not (padding-top: clamp( 1.25rem , -8.2197560757rem  +  19.7291722715vw , 4rem )) {
    .ns-header__container {
      padding-top: calc(1.25rem + 2.75 * (100vw - 47.99875rem) / 13.93875);
    }
}
}

@media (min-width: 47.99875em) and (max-width: 71.875em) {
@supports ((-moz-column-gap: clamp( 1.25rem , -3.2732055913rem  +  9.4235903879vw , 3.5rem )) or (column-gap: clamp( 1.25rem , -3.2732055913rem  +  9.4235903879vw , 3.5rem ))) {
    .menu__list {
      -webkit-column-gap: clamp( 1.25rem , -3.2732055913rem  +  9.4235903879vw , 3.5rem );
         -moz-column-gap: clamp( 1.25rem , -3.2732055913rem  +  9.4235903879vw , 3.5rem );
              column-gap: clamp( 1.25rem , -3.2732055913rem  +  9.4235903879vw , 3.5rem );
    }
}

@supports not ((-moz-column-gap: clamp( 1.25rem , -3.2732055913rem  +  9.4235903879vw , 3.5rem )) or (column-gap: clamp( 1.25rem , -3.2732055913rem  +  9.4235903879vw , 3.5rem ))) {
    .menu__list {
      -webkit-column-gap: calc(1.25rem + 2.25 * (100vw - 47.99875rem) / 23.87625);
         -moz-column-gap: calc(1.25rem + 2.25 * (100vw - 47.99875rem) / 23.87625);
              column-gap: calc(1.25rem + 2.25 * (100vw - 47.99875rem) / 23.87625);
    }
}
}

@media (max-width: 47.99875em) and (min-width: 71.875em) {
  .menu__list {
    font-size: 1.75rem;
  }

  .menu__list {
    row-gap: 0.625rem;
  }
}

@media (max-width: 47.99875em) and (min-width: 20em) and (max-width: 71.875em) {
@supports (font-size: clamp( 1.25rem , 1.0572289157rem  +  0.9638554217vw , 1.75rem )) {
    .menu__list {
      font-size: clamp( 1.25rem , 1.0572289157rem  +  0.9638554217vw , 1.75rem );
    }
}

@supports not (font-size: clamp( 1.25rem , 1.0572289157rem  +  0.9638554217vw , 1.75rem )) {
    .menu__list {
      font-size: calc(1.25rem + 0.5 * (100vw - 20rem) / 51.875);
    }
}

@supports (row-gap: clamp( 0.5rem , 0.4518072289rem  +  0.2409638554vw , 0.625rem )) {
    .menu__list {
      row-gap: clamp( 0.5rem , 0.4518072289rem  +  0.2409638554vw , 0.625rem );
    }
}

@supports not (row-gap: clamp( 0.5rem , 0.4518072289rem  +  0.2409638554vw , 0.625rem )) {
    .menu__list {
      row-gap: calc(0.5rem + 0.125 * (100vw - 20rem) / 51.875);
    }
}
}

@media (min-width: 50em) and (max-width: 61.9375em) {
@supports (top: clamp( -0.3125rem , 11.0373036649rem  +  -18.3246073298vw , 1.875rem )) {
    .header-logo__img {
      top: clamp( -0.3125rem , 11.0373036649rem  +  -18.3246073298vw , 1.875rem );
    }
}

@supports not (top: clamp( -0.3125rem , 11.0373036649rem  +  -18.3246073298vw , 1.875rem )) {
    .header-logo__img {
      top: calc(1.875rem + -2.1875 * (100vw - 50rem) / 11.9375);
    }
}
}

@media (min-width: 43.75em) and (max-width: 56.25em) {
@supports (margin-top: clamp( 6.25rem , -14.09375rem  +  46.5vw , 12.0625rem )) {
    .descr {
      margin-top: clamp( 6.25rem , -14.09375rem  +  46.5vw , 12.0625rem );
    }
}

@supports not (margin-top: clamp( 6.25rem , -14.09375rem  +  46.5vw , 12.0625rem )) {
    .descr {
      margin-top: calc(6.25rem + 5.8125 * (100vw - 43.75rem) / 12.5);
    }
}
}

@media (min-width: 20em) and (max-width: 61.9375em) {
@supports (margin-left: clamp( 3.125rem , -6.353390462rem  +  47.39195231vw , 23rem )) {
    .descr__title {
      margin-left: clamp( 3.125rem , -6.353390462rem  +  47.39195231vw , 23rem );
    }
}

@supports not (margin-left: clamp( 3.125rem , -6.353390462rem  +  47.39195231vw , 23rem )) {
    .descr__title {
      margin-left: calc(3.125rem + 19.875 * (100vw - 20rem) / 41.9375);
    }
}

@supports (margin-top: clamp( 0.0000000625rem , -0.2980625008rem  +  1.4903128167vw , 0.625rem )) {
    .partners-list-items {
      margin-top: clamp( 0.0000000625rem , -0.2980625008rem  +  1.4903128167vw , 0.625rem );
    }
}

@supports not (margin-top: clamp( 0.0000000625rem , -0.2980625008rem  +  1.4903128167vw , 0.625rem )) {
    .partners-list-items {
      margin-top: calc(0.0000000625rem + 0.6249999375 * (100vw - 20rem) / 41.9375);
    }
}

@supports (margin-top: clamp( 0.5rem , 0.2913561848rem  +  1.043219076vw , 0.9375rem )) {
    .partners-list__text {
      margin-top: clamp( 0.5rem , 0.2913561848rem  +  1.043219076vw , 0.9375rem );
    }
}

@supports not (margin-top: clamp( 0.5rem , 0.2913561848rem  +  1.043219076vw , 0.9375rem )) {
    .partners-list__text {
      margin-top: calc(0.5rem + 0.4375 * (100vw - 20rem) / 41.9375);
    }
}
}

@media (min-width: 47.9375em) and (max-width: 71.875em) {
@supports (margin-top: clamp( 0.9375rem , -4.0690274151rem  +  10.4438642298vw , 3.4375rem )) {
    .footer__social {
      margin-top: clamp( 0.9375rem , -4.0690274151rem  +  10.4438642298vw , 3.4375rem );
    }
}

@supports not (margin-top: clamp( 0.9375rem , -4.0690274151rem  +  10.4438642298vw , 3.4375rem )) {
    .footer__social {
      margin-top: calc(0.9375rem + 2.5 * (100vw - 47.9375rem) / 23.9375);
    }
}

@supports (margin-right: clamp( 2.5rem , -26.913348564rem  +  61.3577023499vw , 17.1875rem )) {
    .descr-ambition__title {
      margin-right: clamp( 2.5rem , -26.913348564rem  +  61.3577023499vw , 17.1875rem );
    }
}

@supports not (margin-right: clamp( 2.5rem , -26.913348564rem  +  61.3577023499vw , 17.1875rem )) {
    .descr-ambition__title {
      margin-right: calc(2.5rem + 14.6875 * (100vw - 47.9375rem) / 23.9375);
    }
}

@supports (padding: clamp( 1.25rem , -0.2519582245rem  +  3.1331592689vw , 2rem )) {
    .card__box {
      padding: clamp( 1.25rem , -0.2519582245rem  +  3.1331592689vw , 2rem );
    }
}

@supports not (padding: clamp( 1.25rem , -0.2519582245rem  +  3.1331592689vw , 2rem )) {
    .card__box {
      padding: calc(1.25rem + 0.75 * (100vw - 47.9375rem) / 23.9375);
    }
}

@supports (padding-bottom: clamp( 2rem , -0.0026109661rem  +  4.1775456919vw , 3rem )) {
    .card__box {
      padding-bottom: clamp( 2rem , -0.0026109661rem  +  4.1775456919vw , 3rem );
    }
}

@supports not (padding-bottom: clamp( 2rem , -0.0026109661rem  +  4.1775456919vw , 3rem )) {
    .card__box {
      padding-bottom: calc(2rem + 1 * (100vw - 47.9375rem) / 23.9375);
    }
}

@supports (row-gap: clamp( 0.9375rem , -2.1915796345rem  +  6.5274151436vw , 2.5rem )) {
    .card__box {
      row-gap: clamp( 0.9375rem , -2.1915796345rem  +  6.5274151436vw , 2.5rem );
    }
}

@supports not (row-gap: clamp( 0.9375rem , -2.1915796345rem  +  6.5274151436vw , 2.5rem )) {
    .card__box {
      row-gap: calc(0.9375rem + 1.5625 * (100vw - 47.9375rem) / 23.9375);
    }
}
}

@media (max-width: 47.99875em) and (min-width: 47.9375em) {
  .footer__img {
    max-width: 22.625rem;
  }
}

@media (max-width: 47.99875em) and (min-width: 20em) and (max-width: 47.9375em) {
@supports (max-width: clamp( 15.625rem , 10.6138143177rem  +  25.0559284116vw , 22.625rem )) {
    .footer__img {
      max-width: clamp( 15.625rem , 10.6138143177rem  +  25.0559284116vw , 22.625rem );
    }
}

@supports not (max-width: clamp( 15.625rem , 10.6138143177rem  +  25.0559284116vw , 22.625rem )) {
    .footer__img {
      max-width: calc(15.625rem + 7 * (100vw - 20rem) / 27.9375);
    }
}
}

.descr-ambition {
	flex-direction: column;
}

.menu__item {
  position: relative;
}

.menu__item:hover {
  background: -o-linear-gradient(12.32deg, #3300CC 0.13%, #E0168F 91.14%);
  background: linear-gradient(77.68deg, #3300CC 0.13%, #E0168F 91.14%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.menu__item:hover::before {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: -2px;
  background: -o-linear-gradient(12.32deg, #3300CC 0.13%, #E0168F 91.14%);
  background: linear-gradient(77.68deg, #3300CC 0.13%, #E0168F 91.14%);
}