@charset "UTF-8";
:root {
  --main-bg-color-dark: #000;
  --main-fg-color-dark: #fff;
  --main-bg-color-light: #fff;
  --main-fg-color-light: #000;
  --main-about-color: #f16b31;
  --main-teams-color: #a2cc40;
  --main-partners-color: #652d90;
  --main-font-size: 18px;
  --main-line-height: 1.5;
  --main-font-family: "Athiti", sans-serif;
  --eu-font-family: "Arial", sans-serif;
  --heading-font-family: "Contrail One", cursive;
  --heading-font-size: 40px;
  --heading-line-height: 40px;
  --numbering-font-family: "Contrail One", cursive;
  --numbering-font-size: 48px;
  --numbering-line-height: 48px;
  --small-font-size: 14px;
  --container-width-xl: 1120px;
  --inner-container-width-xl: 1016px;
}

html {
  /* or 27px */
  background-color: var(--main-bg-color-dark);
  color: var(--main-fg-color-dark);
  font-family: var(--main-font-family);
  font-size: var(--main-font-size);
  font-style: normal;
  font-weight: normal;
  line-height: var(--main-line-height);
}

h2 {
  font-size: 60px;
  font-weight: bold;
}

h3 {
  font-weight: bold;
}

.color-about {
  color: var(--main-about-color);
}

@media (max-width: 1119.98px) {
  .container {
    max-width: 480px;
    margin: 0 auto;
  }
}

.header-container {
  z-index: 9999;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding-top: 13px;
  padding-bottom: 21px;
  background-color: var(--main-bg-color-dark);
}

@media (max-width: 1119.98px) {
  .header-container {
    top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

#about::before,
#teams::before,
#partners::before {
  display: block;
  height: 117px;
  margin: -117px 0 0;
  content: "";
}

@media (max-width: 1119.98px) {
  #about::before,
  #teams::before,
  #partners::before {
    height: 159px;
    margin-top: -159px;
  }
}

.main-container,
.main-header {
  width: var(--container-width-xl);
  margin: 0 auto;
}

@media (max-width: 1119.98px) {
  .main-container,
  .main-header {
    width: auto;
  }
}

.main-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1119.98px) {
  .main-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 1119.98px) {
  .voy-logo-container {
    margin: 0 auto;
  }
}

.main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 11px;
}

@media (max-width: 1119.98px) {
  .main-nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 0;
  }
}

.main-nav li {
  color: #ffffff;
  font-family: Athiti;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
}

@media (max-width: 1119.98px) {
  .main-nav li {
    font-size: 18px;
  }
}

.main-nav li a {
  display: block;
  padding: 5px 10px;
  border-bottom-width: 5px;
  border-bottom-style: solid;
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 1119.98px) {
  .main-nav li a {
    padding: 0 0 1px;
  }
}

@media (max-width: 1119.98px) {
  .nav-about,
  .nav-teams,
  .nav-partners {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .nav-hashtag {
    -webkit-box-flex: 3;
        -ms-flex: 3 0 100%;
            flex: 3 0 100%;
  }
}

.nav-about a {
  border-bottom-color: var(--main-about-color);
}

.nav-teams a {
  border-bottom-color: var(--main-teams-color);
}

.nav-partners a {
  border-bottom-color: var(--main-partners-color);
}

.nav-hashtag a {
  border-bottom-color: transparent;
  font-size: 14px;
}

@media (max-width: 1119.98px) {
  .main-nav .nav-hashtag a {
    padding: 3px 0;
    border-bottom-width: 0;
  }
}

.language-switcher {
  position: absolute;
  top: 61px;
  right: 10px;
  font-size: 13px;
}

@media (max-width: 1119.98px) {
  .language-switcher {
    top: 40px;
    right: 20px;
  }
}

.language-switcher li {
  display: inline-block;
}

.language-switcher li.active,
.language-switcher li a {
  width: 28px;
  height: 28px;
  border: 1px solid var(--main-fg-color-dark);
  border-radius: 14px;
  color: var(--main-fg-color-dark);
  line-height: 24px;
  text-align: center;
}

.language-switcher li a {
  display: block;
  border-color: #5b5b5b;
  color: #5b5b5b;
  text-decoration: none;
}

.language-switcher li a:hover, .language-switcher li a:active {
  border-color: var(--main-fg-color-dark);
  color: var(--main-fg-color-dark);
}

.hero {
  position: relative;
  width: 100%;
  height: 350px;
  margin-bottom: 170px;
}

@media (max-width: 1119.98px) {
  .hero {
    height: auto;
    margin-top: 34px;
    margin-bottom: 38px;
  }
}

.hero-background {
  position: absolute;
  width: 100%;
  height: 350px;
  margin-bottom: 170px;
  background: url("../img/header-bold-L 1.png") center center no-repeat;
}

@media (max-width: 1119.98px) {
  .hero-background {
    position: static;
    height: 125px;
    margin-bottom: 0;
    background-size: cover;
  }
}

.hero-text {
  position: absolute;
  right: 0;
  bottom: -80px;
  width: 715px;
  padding: 50px;
  background: #000;
}

@media (max-width: 1119.98px) {
  .hero-text {
    position: static;
    width: 100%;
    padding: 70px 25px 0;
  }
}

.hero-text p {
  padding-bottom: 5px;
  border-bottom: 5px solid var(--main-about-color);
}

@media (max-width: 1119.98px) {
  .hero-text p {
    padding-bottom: 27px;
  }
}

.about-voy-objectives-container {
  position: relative;
  margin-bottom: 159px;
}

@media (max-width: 1119.98px) {
  .about-voy-objectives-container {
    margin-bottom: 52px;
  }
}

.about-voy {
  position: relative;
  top: 67px;
  left: 0;
  width: 616px;
  margin-bottom: 67px;
  padding: 0 132px 60px 52px;
  background-color: var(--main-about-color);
  color: var(--main-fg-color-light);
}

@media (max-width: 1119.98px) {
  .about-voy {
    position: static;
    width: auto;
    margin-bottom: 0;
    padding: 25px 25px 80px;
  }
}

.about-voy h2 {
  position: relative;
  margin-bottom: 20px;
}

@media (max-width: 1119.98px) {
  .about-voy h2 {
    font-size: 36px;
  }
}

.about-voy h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 5px solid var(--main-fg-color-dark);
  content: "";
}

@media (max-width: 1119.98px) {
  .about-voy h2::after {
    bottom: -6px;
  }
}

.about-objectives {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 616px;
  padding: 42px 66px;
  background-color: var(--main-bg-color-light);
  color: var(--main-fg-color-light);
}

@media (max-width: 1119.98px) {
  .about-objectives {
    position: static;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: auto;
    padding: 42px 25px;
    gap: 42px;
  }
}

.about-objectives > section {
  width: 228px;
}

@media (max-width: 1119.98px) {
  .about-objectives > section {
    width: auto;
  }
  .about-objectives > section > figure {
    text-align: center;
  }
}

.about-objectives h3 {
  font-size: 24px;
  font-weight: bold;
}

.about-map-missions-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

@media (max-width: 1119.98px) {
  .about-map-missions-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about-map img {
  max-width: none;
}

@media (max-width: 1119.98px) {
  .about-map img {
    max-width: 100%;
  }
}

.about-missions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 28px;
  gap: 15px;
}

@media (max-width: 1119.98px) {
  .about-missions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 38px;
    margin-right: 25px;
    margin-left: 25px;
  }
}

.about-missions h3 {
  display: inline-block;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 116px;
          flex: 0 0 116px;
  font-size: 36px;
  font-weight: bold;
  line-height: 36px;
}

.about-missions h3::after {
  display: inline-block;
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  border-bottom: 5px solid var(--main-fg-color-dark);
  content: "";
}

.about-missions h4 {
  font-weight: bold;
}

.missions-heading {
  grid-area: mission-heading;
}

.mission-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

@media (max-width: 1119.98px) {
  .mission-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 36px;
  }
}

.mission-item img {
  max-width: none;
}

.mission-item + .mission-item {
  margin-top: 14px;
}

@media (max-width: 1119.98px) {
  .mission-item + .mission-item {
    margin-top: 52px;
  }
}

.mission-1 {
  grid-area: mission-1;
}

.mission-2 {
  grid-area: mission-2;
}

.mission-3 {
  grid-area: mission-3;
}

.about-what-we-do {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "wwd-item-1 wwd-item-2 wwd-heading wwd-heading" "wwd-item-3 wwd-item-4 wwd-item-5 ." ". wwd-item-6 wwd-item-7 .";
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr 1fr;
  margin-top: 164px;
  -webkit-column-gap: 12px;
          column-gap: 12px;
  row-gap: 12px;
}

@media (max-width: 1119.98px) {
  .about-what-we-do {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 52px;
    padding: 25px 25px 68px;
    background-color: var(--main-about-color);
  }
}

.about-what-we-do h3 {
  display: inline-block;
  position: relative;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: bold;
  line-height: 120px;
}

@media (max-width: 1119.98px) {
  .about-what-we-do h3 {
    display: inline-block;
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 116px;
            flex: 0 0 116px;
    font-size: 36px;
    font-weight: bold;
    line-height: 36px;
  }
}

.about-what-we-do h3::before {
  display: block;
  z-index: -1;
  position: absolute;
  top: 0px;
  right: 93px;
  width: 638px;
  height: 612px;
  background-color: var(--main-about-color);
  content: "";
}

@media (max-width: 1119.98px) {
  .about-what-we-do h3::before {
    display: none;
  }
}

.about-what-we-do h3::after {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 5px solid var(--main-fg-color-dark);
  content: "";
}

@media (max-width: 1119.98px) {
  .about-what-we-do h3::after {
    top: 52px;
    width: 150px;
  }
}

.wwd-heading {
  position: relative;
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-area: wwd-heading;
  place-self: end end;
}

@media (max-width: 1119.98px) {
  .wwd-heading {
    place-self: start end;
  }
}

.wwd-item-1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: wwd-item-1;
}

.wwd-item-2 {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: wwd-item-2;
}

.wwd-item-3 {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: wwd-item-3;
}

.wwd-item-4 {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: wwd-item-4;
}

.wwd-item-5 {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  grid-area: wwd-item-5;
}

.wwd-item-6 {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: wwd-item-6;
}

.wwd-item-7 {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: wwd-item-7;
}

.about-what-we-do-item-dark,
.about-what-we-do-item-light {
  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;
  padding: 22px;
  border: 3px solid var(--main-fg-color-dark);
  line-height: 1.2;
}

@media (max-width: 1119.98px) {
  .about-what-we-do-item-dark,
  .about-what-we-do-item-light {
    padding: 22px 60px;
  }
}

.about-what-we-do-item-dark img,
.about-what-we-do-item-light img {
  max-width: none;
}

.about-what-we-do-item-dark {
  background-color: var(--main-bg-color-dark);
  color: var(--main-fg-color-dark);
}

.about-what-we-do-item-light {
  background-color: var(--main-bg-color-light);
  color: var(--main-fg-color-light);
}

.teams {
  margin-top: 284px;
}

@media (max-width: 1119.98px) {
  .teams {
    margin-top: 237px;
  }
}

.teams a {
  color: var(--main-fg-color-dark);
}

@media (max-width: 1119.98px) {
  .teams-heading {
    padding: 27px 25px 42px;
    background-color: var(--main-teams-color);
  }
}

.teams h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 60px;
  padding-top: 20px;
  color: var(--main-fg-color-light);
  font-family: var(--heading-font-family);
  font-size: 50px;
  font-weight: normal;
  line-height: 50px;
}

@media (max-width: 1119.98px) {
  .teams h2 {
    margin-bottom: 0;
    padding-top: 0;
    background-color: var(--main-teams-color);
    font-size: 36px;
    line-height: 1;
  }
}

.teams h2 .highlight {
  color: var(--main-fg-color-dark);
}

.teams h2::before {
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  left: -52px;
  width: 528px;
  height: 381px;
  background-color: var(--main-teams-color);
  content: "";
}

@media (max-width: 1119.98px) {
  .teams h2::before {
    display: none;
  }
}

.teams h2::after {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
  margin-top: 5px;
  border-bottom: 5px solid var(--main-fg-color-dark);
  content: "";
}

@media (max-width: 1119.98px) {
  .teams h2::after {
    right: 0;
    left: auto;
    width: 100px;
    height: 24px;
  }
}

.teams h3 {
  color: var(--main-teams-color);
}

.team-list {
  display: -ms-grid;
  display: grid;
      grid-template-areas: ". . . team-1-image team-1-image team-1-image team-1-image team-1-image team-1-image team-1-image team-1-image . team-1-text team-1-text team-1-text team-1-text team-1-text" ". . team-2-text team-2-text team-2-text . team-2-image team-2-image team-2-image team-2-image team-2-image team-2-image team-2-image . . . ." ". . team-3-image team-3-image team-3-image team-3-image team-3-image team-3-image team-3-image . . . team-3-text team-3-text team-3-text . ." ". . team-4-image team-4-image team-4-image team-4-image team-4-image team-4-image team-4-image team-4-image team-4-image . team-4-text team-4-text team-4-text . ." ". . . . team-5-text team-5-text team-5-text team-5-text . team-5-image team-5-image team-5-image team-5-image team-5-image team-5-image . ." ". team-6-image team-6-image team-6-image team-6-image team-6-image team-6-image team-6-image . . . . team-6-text team-6-text team-6-text team-6-text team-6-text" ". team-7-image team-7-image team-7-image team-7-image team-7-image team-7-image team-7-image . . . . team-7-text team-7-text team-7-text team-7-text team-7-text" ". . . team-8-text team-8-text team-8-text team-8-text . . . . team-8-image team-8-image team-8-image team-8-image team-8-image ." ". . team-9-image team-9-image team-9-image team-9-image team-9-image team-9-image team-9-image . . team-9-text team-9-text team-9-text . . ." ". . team-10-image team-10-image team-10-image team-10-image team-10-image team-10-image team-10-image . . team-10-text team-10-text team-10-text team-10-text team-10-text .";
  -ms-grid-columns: 52px 28px 40px 48px 266px 26px 64px 26px 20px 24px 16px 30px 310px 60px 58px 30px 22px;
      grid-template-columns: 52px 28px 40px 48px 266px 26px 64px 26px 20px 24px 16px 30px 310px 60px 58px 30px 22px;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  row-gap: 60px;
  counter-reset: team;
}

@media (max-width: 1119.98px) {
  .team-list {
    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: 0;
  }
}

.team-text {
  counter-increment: team;
}

.team-text::before {
  color: var(--main-teams-color);
  font-family: var(--numbering-font-family);
  font-size: var(--numbering-font-size);
  line-height: 54px;
  content: counter(team, decimal-leading-zero);
}

@media (max-width: 1119.98px) {
  .team-text,
  .team-image {
    padding-right: 25px;
    padding-left: 25px;
  }
  .team-image + .team-text {
    padding-top: 50px;
  }
  .team-text {
    padding-bottom: 34px;
  }
  .team-image {
    padding-top: 34px;
  }
  .team-3-image {
    background-color: var(--main-bg-color-light);
  }
  .team-5-image,
  .team-9-image {
    background-color: var(--main-teams-color);
  }
}

.team-coordinators {
  margin-top: 27px;
  font-size: var(--small-font-size);
}

.team-1-image,
.team-3-text,
.team-5-text,
.team-9-text,
.team-10-image {
  position: relative;
}

.team-2-text,
.team-5-text,
.team-8-text {
  text-align: right;
}

.team-3-text {
  background-color: var(--main-bg-color-light);
  color: var(--main-fg-color-light);
}

.team-3-text::after {
  display: block;
  z-index: -1;
  position: absolute;
  top: -288px;
  left: -124px;
  width: 624px;
  height: 648px;
  background-color: var(--main-bg-color-light);
  content: "";
}

@media (max-width: 1119.98px) {
  .team-3-text::after {
    display: none;
  }
}

.team-5-text,
.team-9-text {
  background-color: var(--main-teams-color);
  color: var(--main-fg-color-light);
}

.team-5-text h3, .team-5-text::before,
.team-9-text h3,
.team-9-text::before {
  color: var(--main-fg-color-light);
}

.team-5-text::after {
  display: block;
  z-index: -1;
  position: absolute;
  top: -23px;
  right: -60px;
  width: 460px;
  height: 500px;
  background-color: var(--main-teams-color);
  content: "";
}

@media (max-width: 1119.98px) {
  .team-5-text::after {
    display: none;
  }
}

.team-9-text::after {
  display: block;
  z-index: -1;
  position: absolute;
  top: -324px;
  left: -60px;
  width: 486px;
  height: 648px;
  background-color: var(--main-teams-color);
  content: "";
}

@media (max-width: 1119.98px) {
  .team-9-text::after {
    display: none;
  }
}

.team-10-image::after {
  display: block;
  z-index: -1;
  position: absolute;
  right: -24px;
  bottom: -20px;
  width: 334px;
  height: 110px;
  background-color: var(--main-bg-color-light);
  content: "";
}

@media (max-width: 1119.98px) {
  .team-10-image::after {
    display: none;
  }
}

html[lang="en"] .team-3-text::after {
  height: 729px;
}

html[lang="en"] .team-9-text::after {
  height: 698px;
}

.team-1-image {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 8;
  grid-area: team-1-image;
}

.team-1-text {
  -ms-grid-row: 1;
  -ms-grid-column: 13;
  -ms-grid-column-span: 5;
  grid-area: team-1-text;
}

.team-2-image {
  -ms-grid-row: 2;
  -ms-grid-column: 7;
  -ms-grid-column-span: 7;
  grid-area: team-2-image;
}

.team-2-text {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  -ms-grid-column-span: 3;
  grid-area: team-2-text;
}

.team-3-image {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 7;
  grid-area: team-3-image;
}

.team-3-text {
  -ms-grid-row: 3;
  -ms-grid-column: 13;
  -ms-grid-column-span: 3;
  grid-area: team-3-text;
}

.team-4-image {
  -ms-grid-row: 4;
  -ms-grid-column: 3;
  -ms-grid-column-span: 9;
  grid-area: team-4-image;
}

.team-4-text {
  -ms-grid-row: 4;
  -ms-grid-column: 13;
  -ms-grid-column-span: 3;
  grid-area: team-4-text;
}

.team-5-image {
  -ms-grid-row: 5;
  -ms-grid-column: 10;
  -ms-grid-column-span: 6;
  grid-area: team-5-image;
}

.team-5-text {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
  -ms-grid-column-span: 4;
  grid-area: team-5-text;
}

.team-6-image {
  -ms-grid-row: 6;
  -ms-grid-column: 2;
  -ms-grid-column-span: 7;
  grid-area: team-6-image;
}

.team-6-text {
  -ms-grid-row: 6;
  -ms-grid-column: 13;
  -ms-grid-column-span: 5;
  grid-area: team-6-text;
}

.team-7-image {
  -ms-grid-row: 7;
  -ms-grid-column: 2;
  -ms-grid-column-span: 7;
  grid-area: team-7-image;
}

.team-7-text {
  -ms-grid-row: 7;
  -ms-grid-column: 13;
  -ms-grid-column-span: 5;
  grid-area: team-7-text;
}

.team-8-image {
  -ms-grid-row: 8;
  -ms-grid-column: 12;
  -ms-grid-column-span: 5;
  grid-area: team-8-image;
}

.team-8-text {
  -ms-grid-row: 8;
  -ms-grid-column: 4;
  -ms-grid-column-span: 4;
  grid-area: team-8-text;
}

.team-9-image {
  -ms-grid-row: 9;
  -ms-grid-column: 3;
  -ms-grid-column-span: 7;
  grid-area: team-9-image;
}

.team-9-text {
  -ms-grid-row: 9;
  -ms-grid-column: 12;
  -ms-grid-column-span: 3;
  grid-area: team-9-text;
}

.team-10-image {
  -ms-grid-row: 10;
  -ms-grid-column: 3;
  -ms-grid-column-span: 7;
  grid-area: team-10-image;
}

.team-10-text {
  -ms-grid-row: 10;
  -ms-grid-column: 12;
  -ms-grid-column-span: 5;
  grid-area: team-10-text;
}

.partners {
  width: 100%;
  margin-top: 315px;
  margin-bottom: 230px;
}

@media (max-width: 1119.98px) {
  .partners {
    margin-top: 13px;
    margin-bottom: 33px;
  }
}

.partners-header-container {
  background-color: var(--main-partners-color);
}

.partners-header,
.partner-body {
  width: var(--inner-container-width-xl);
}

@media (max-width: 1119.98px) {
  .partners-header,
  .partner-body {
    width: auto;
  }
}

.partners-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      grid-template-areas: "partners-heading partners-heading" "partners-eu-flag partners-eu-text";
  min-height: 460px;
  margin: 0 auto;
  gap: 18px;
}

@media (max-width: 1119.98px) {
  .partners-header {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 88px auto;
        grid-template-columns: 88px auto;
    -ms-grid-rows: 60px 60.5px;
        grid-template-rows: 60px 60.5px;
    min-height: 221px;
    margin: 0 25px;
    gap: 9px;
  }
}

.partners-header .partners-heading {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: partners-heading;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.partners-header h2 {
  display: inline-block;
  position: relative;
  margin-top: 27px;
  color: var(--main-fg-color-dark);
  font-family: var(--heading-font-family);
  font-size: 50px;
  font-weight: normal;
  line-height: 50px;
}

@media (max-width: 1119.98px) {
  .partners-header h2 {
    margin-top: 12px;
    float: right;
    font-size: 36px;
  }
}

.partners-header h2::after {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
  margin-top: 5px;
  border-bottom: 5px solid var(--main-fg-color-dark);
  content: "";
}

@media (max-width: 1119.98px) {
  .partners-header h2::after {
    right: 0;
    left: auto;
    width: 68px;
    height: 55px;
  }
}

.partners-header figure {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: partners-eu-flag;
}

@media (max-width: 1119.98px) {
  .partners-header figure {
    width: 88px;
  }
}

.partners-header img {
  margin-top: 95px;
  clear: both;
}

@media (max-width: 1119.98px) {
  .partners-header img {
    margin-top: 0;
  }
}

.partners-header p {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: partners-eu-text;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  margin-top: 95px;
  font-family: var(--eu-font-family);
  font-size: 40px;
  font-weight: bold;
}

@media (max-width: 1119.98px) {
  .partners-header p {
    margin-top: 0;
    font-size: 20px;
  }
}

.partner-body {
  margin: -209px auto 0;
}

@media (max-width: 1119.98px) {
  .partner-body {
    margin: -68px 25px 0;
  }
}

.partner-body::after {
  display: block;
  width: 604px;
  height: 48px;
  margin: 0 auto;
  background-color: var(--main-partners-color);
  content: "";
}

@media (max-width: 1119.98px) {
  .partner-body::after {
    width: auto;
    height: 30px;
    margin-right: 35px;
    margin-left: 35px;
  }
}

.partners h3 {
  color: var(--main-partners-color);
  font-size: 24px;
}

.partner {
  width: var(--inner-container-width-xl);
  margin: 0 auto;
  padding: 32px 35px;
  background: var(--main-bg-color-light);
  color: var(--main-fg-color-light);
}

@media (max-width: 1119.98px) {
  .partner {
    width: auto;
    padding: 13px 11px 20px;
  }
}

.partner a {
  color: var(--main-partners-color);
}

.partner + .partner {
  margin-top: 28px;
}

.partner img {
  display: block;
  float: right;
}

@media (max-width: 1119.98px) {
  .partner img {
    width: 70px;
    margin-bottom: 19px;
  }
}

.partner h3 {
  margin-top: 42px;
}

@media (max-width: 1119.98px) {
  .partner h3 {
    clear: both;
    font-size: 18px;
  }
}

.partner p + p,
.partner p + h4 {
  margin-top: calc(var(--main-font-size) * var(--main-line-height));
}

.partner-coordinators li::before {
  display: inline-block;
  width: 1em;
  color: var(--main-partners-color);
  font-family: var(--main-font-family);
  content: "●";
}
/*# sourceMappingURL=style.css.map */