@font-face {
  font-family: "GothamPro";
  src: url("../../fonts/GothamProRegular.woff") format("woff"), url("../../fonts/GothamProRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "GothamPro";
  src: url("../../fonts/GothamProMedium.woff") format("woff"), url("../../fonts/GothamProMedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../../fonts/Montserrat-Black.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-display: swap;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/Montserrat-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  src: url("../../fonts/Montserrat-SemiBold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/Montserrat-Bold.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 800;
  src: url("../../fonts/Montserrat-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 900;
  src: url("../../fonts/Montserrat-Black.woff2") format("woff2");
}
body {
  min-width: 320px;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

main {
  display: flex;
  flex-direction: column;
  flex: 1 1 95svh;
}

a {
  color: #1d1d22;
  transition: color 0.3s ease;
}
a:hover {
  color: #2d2e2e;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1d1d22;
  font-family: "Montserrat";
  font-weight: 800;
}

h1 {
  font-size: clamp(1.5rem, 1.1429rem + 1.7857vw, 2.75rem);
  line-height: 1;
}

h2 {
  font-size: clamp(2.59rem, 1.97rem + 3.08vw, 4.75rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.5rem, 1.1429rem + 1.7857vw, 2.75rem);
  line-height: 110%;
}

h4 {
  font-size: 1.25rem;
  line-height: 1;
  color: #2d2e2e;
}

::-moz-selection {
  background-color: rgba(42, 139, 236, 0.3294117647);
}

::selection {
  background-color: rgba(42, 139, 236, 0.3294117647);
}

.btn {
  display: block;
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
  border: 1px solid #1d1d22;
  border-radius: 6px;
  font-family: Roboto;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 110%;
  text-align: center;
}
.btn.white {
  color: #1d1d22;
  background-color: #fff;
}
.btn.white:hover {
  color: #fff;
  background-color: #1d1d22;
}
.btn.black {
  color: #fff;
  background-color: #1d1d22;
}
.btn.black:hover {
  color: #1d1d22;
  background-color: #fff;
}

.container {
  margin-inline: auto;
  width: min(100%, 1440px - 5.5rem);
  padding: 0 1rem;
  height: 100%;
}

.text {
  font-family: Roboto;
  font-size: clamp(0.875rem, 0.8393rem + 0.1786vw, 1rem);
  font-weight: 400;
  line-height: 150%;
  text-align: left;
  color: #737373;
}
.text.black {
  color: #1d1d22;
}

[class*=_container] {
  max-width: 1440px;
  padding: 0 clamp(1.22rem, 0.13875rem + 4.16vw, 3.875rem);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-section,
  .stats,
  .map,
  .participants,
  .news,
  .support,
  .advantage {
    margin: 4.5rem 0 0;
  }
}
:root {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #1d1d22;
  background-color: #f8f9fa;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  font-style: italic;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

select {
  outline: none;
  border: none;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background-color: #fff;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 1.5rem 3.75rem;
}

.logo-wrap {
  width: 1.25rem;
  flex: 0 0 auto;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.nav-menu li {
  cursor: pointer;
}
.nav-menu li a, .nav-menu li > span {
  display: block;
  padding: 0.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  text-wrap: nowrap;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dropdown-only {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  max-width: 100%;
}
.dropdown-only::after {
  content: url("../../img/icons/arrow.png");
  display: block;
  margin: 0 0 0 -0.2rem;
  order: 2;
  height: 1.375rem;
  transition: all 0.3s ease;
}
.dropdown-only.active::after {
  transform: rotateX(180deg);
}
.dropdown-only.active .dropdown-content {
  opacity: 1;
  pointer-events: all;
}

.dropdown-content {
  width: -moz-max-content;
  width: max-content;
  max-width: 900px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  background-color: #fff;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 1.5rem;
  order: 3;
}

.dropdown-grid {
  display: grid;
  gap: 1.25rem 2rem;
  grid-template: auto 1fr/1fr 1fr 1fr;
}
.dropdown-grid a {
  white-space: nowrap;
  overflow: hidden;
  display: block;
  padding: 0.5rem;
  border-radius: 0.5rem;
}
.dropdown-grid a:hover {
  background-color: #f8f9fa;
}

.language-switcher {
  cursor: pointer;
}

/* Burger Menu Styles */
.burger-icon {
  display: none;
  cursor: pointer;
}
.burger-icon span {
  position: relative;
  margin-inline: auto;
  transition: all 0.3s ease-in-out;
}
.burger-icon span:nth-child(1) {
  top: 0;
  transform: rotate(0);
}
.burger-icon span:nth-child(2) {
  opacity: 1;
  width: 100%;
}
.burger-icon span:nth-child(3) {
  bottom: 0;
  transform: rotate(0);
}
.burger-icon.active span:nth-child(1) {
  top: 20%;
  transform: rotate(45deg);
}
.burger-icon.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.burger-icon.active span:nth-child(3) {
  bottom: 50%;
  transform: rotate(-45deg);
}

/* Horizontal navigation for larger screens */
@media (min-width: 1025px) {
  .burger-icon {
    display: none;
  }
  .burger-menu {
    display: none;
  }
  .nav-menu {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
}
@media (max-width: 1024px) {
  .burger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    position: relative;
    z-index: 11;
    cursor: pointer;
  }
  .burger-icon span {
    width: 100%;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
  }
  .nav-menu {
    gap: 1rem;
    position: fixed;
    top: 0;
    right: 0;
    max-height: 100svh;
    width: -moz-max-content;
    width: max-content;
    max-width: 22rem;
    background: #fff;
    border-radius: 0 0 0 1rem;
    z-index: 10;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding: 5rem 1.5rem 1.5rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .nav-menu li {
    width: 100%;
    text-align: center;
  }
  .nav-menu li a {
    padding: 1rem;
    order: 1;
  }
  .dropdown-only.active .dropdown-content {
    max-height: -moz-max-content;
    max-height: max-content;
    max-width: 100%;
  }
  .dropdown-content {
    max-height: 0;
    padding: 0;
    position: static;
    translate: unset;
  }
  .dropdown-grid {
    display: grid;
    gap: 0.5rem 1rem;
    grid-template: auto 1fr/1fr 1fr;
  }
  .no-scroll {
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .hero-image {
    display: none;
  }
  .nav-menu {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .nav-menu {
    padding: 6rem 1rem 1rem;
  }
}
#hero-section {
  margin-block: 6rem 3rem;
}

.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.hero-container > div {
  flex: 1 1 45%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.main-title {
  font-size: clamp(3rem, 1.8929rem + 5.5357vw, 6.875rem);
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
  padding: 5rem;
  background: #2a8bec;
  max-height: 31rem;
}
.hero-image img {
  height: 19rem;
}

@media (max-width: 768px) {
  .hero-image {
    display: none;
  }
}
.stats-container {
  display: flex;
  justify-content: space-between;
  gap: 1.75rem;
  background-color: #fff;
  border-radius: 1.25rem;
  padding-block: 9rem;
}

.stats-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  flex: 1 1 30%;
  border-left: 2px solid #737373;
  padding: 0 0 0 2rem;
}

@media (max-width: 979px) {
  .stats-container {
    flex-direction: column;
    justify-content: flex-start;
    gap: 3rem;
    padding-block: 3rem;
  }
  .stats-item {
    max-width: 35%;
  }
  .stats-item:nth-child(2) {
    margin-inline: auto;
  }
  .stats-item:nth-child(3) {
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .stats-container .stats-item {
    margin: unset;
    max-width: 100%;
  }
}
.map {
  margin: 5rem 0px 0px 0px;
}

.map-image {
  margin: 3.75rem 1.75rem -2.5625rem 0.5625rem;
}

.map-container {
  position: relative;
  padding: 0;
}

.map-content {
  position: absolute;
  top: -60px;
  left: 0;
}
.map-content h2 {
  max-width: clamp(21.91rem, 16.69rem + 26.1vw, 40.25rem);
  text-align: left;
}

.participants {
  margin: 6.25rem 0;
}

.participants-container {
  display: grid;
  grid-template: "title btn" auto "cards-list cards-list" auto/1fr auto;
  row-gap: 4rem;
}
@media (max-width: 768px) {
  .participants-container {
    grid-template: "title" auto "cards-list" auto "btn" auto/1fr auto;
    row-gap: 2rem;
  }
}
.participants-container h2 {
  grid-area: title;
  max-width: 39.875rem;
  margin: 0 1.5rem 0 0;
  align-self: flex-start;
}
@media (max-width: 768px) {
  .participants-container h2 {
    justify-self: center;
    text-align: center;
  }
}

.participants-btn {
  grid-area: btn;
  width: -moz-max-content;
  width: max-content;
  align-self: flex-end;
}
@media (max-width: 768px) {
  .participants-btn {
    justify-self: center;
  }
}

.participants-cards-list {
  grid-area: cards-list;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.75rem;
}
@media (max-width: 1024px) {
  .participants-cards-list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}
@media (max-width: 768px) {
  .participants-cards-list {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.participants-card {
  padding: 1.5rem 0px 0px 0px;
  padding: 1.5rem;
  border-radius: 20px;
  background: #ffffff;
  transition: box-shadow 0.3s ease;
}
.participants-card:hover {
  box-shadow: 0 0 20px rgba(29, 29, 34, 0.3215686275);
}
.participants-card img {
  width: 100%;
  margin: 0 0 1.5rem 0;
  border-radius: 1rem;
  aspect-ratio: 125/78;
  box-shadow: 0px 0px 5px 1px #e5e5e5;
  -o-object-fit: cover;
     object-fit: cover;
}
.participants-card h4 {
  margin: 0 0 0.5rem 0;
}

.news {
  width: 100%;
  margin: 6.25rem 0;
}

.news-container {
  display: grid;
  grid-template: "title btn" auto "cards-list cards-list" auto/1fr auto;
  row-gap: 4rem;
}
@media (max-width: 768px) {
  .news-container {
    grid-template: "title" auto "cards-list" auto "btn" auto/1fr auto;
    row-gap: 2rem;
  }
}
.news-container h2 {
  grid-area: title;
  max-width: 39.875rem;
  margin: 0 1.5rem 0 0;
  align-self: flex-start;
}
@media (max-width: 768px) {
  .news-container h2 {
    justify-self: center;
    text-align: center;
  }
}

.news-btn {
  grid-area: btn;
  width: -moz-max-content;
  width: max-content;
  align-self: flex-end;
}
@media (max-width: 768px) {
  .news-btn {
    justify-self: center;
  }
}

.news-cards-list {
  grid-area: cards-list;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 1.75rem;
}
@media (max-width: 768px) {
  .news-cards-list {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.news-card a {
  display: block;
  padding: 1.5rem 0px 0px 0px;
  padding: 1.5rem;
  border-radius: 20px;
  background: #ffffff;
  transition: box-shadow 0.3s ease;
}
.news-card a:hover {
  box-shadow: 0 0 20px rgba(29, 29, 34, 0.3215686275);
}
.news-card a > img {
  width: 100%;
  margin: 0 0 1.5rem 0;
  border-radius: 1rem;
  aspect-ratio: 125/78;
  box-shadow: 0px 0px 5px 1px #e5e5e5;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-card a h4 {
  margin: 0 0 0.5rem 0;
}
.news-card a > p {
  margin: 0 0 2rem 0;
}

.date-box,
.author-box {
  width: -moz-max-content;
  width: max-content;
  padding: 0.625rem 0.75rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 0.875rem;
  color: #737373;
}
.date-box img,
.author-box img {
  width: 1rem;
  height: 1rem;
  margin: 0 0.375rem 0 0;
}

.advantage {
  width: 100%;
}
.advantage__container {
  width: 100%;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
.advantage__card {
  padding: 3.125rem 3.875rem;
  border-radius: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.75rem;
}
.advantage__card:nth-child(even) {
  flex-direction: row-reverse;
}
.advantage__card:nth-child(even) .advantage__img {
  max-width: 100%;
}
.advantage__card:nth-child(even) .advantage__label {
  background-color: #fff;
}
.advantage__card:nth-child(odd) {
  background: #ffffff;
}
.advantage__card:nth-child(odd) .advantage__img img {
  aspect-ratio: 1.2/1;
}
.advantage__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 26.25rem;
}
.advantage__label {
  width: -moz-max-content;
  width: max-content;
  padding: 0.625rem 0.75rem;
  margin: 0 0 2rem 0;
  border-radius: 0.75rem;
  background: #f8f9fa;
  font-family: "Montserrat", serif;
  font-weight: 800;
}
.advantage__number {
  color: #1d1d22;
}
.advantage__btn {
  margin: 4.125rem 0 0 0;
  align-self: flex-start;
}
.advantage__img {
  flex: 1 1 auto;
  max-width: 40.25rem;
  max-height: 32.5rem;
  border-radius: 0.625rem;
  overflow: hidden;
}
.advantage__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
  .advantage__card:nth-child(even) .advantage__content {
    align-items: flex-end;
  }
  .advantage__card:nth-child(even) .text {
    text-align: right;
  }
  .advantage__card:nth-child(even) .advantage__btn {
    align-self: flex-end;
  }
  .advantage__content {
    max-width: unset;
  }
  .advantage__img {
    display: none;
  }
}
.support {
  margin: 6.25rem 0;
}
.support h2 {
  text-align: center;
  margin: 0 0 4rem 0;
}
.support__cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}
.support__card {
  display: flex;
  flex-direction: column;
  min-height: 20rem;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 1.25rem;
  background: #fff;
}
.support__card .btn {
  margin: auto 0 0 0;
}

.support-label span {
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem;
  background: #f8f9fa;
  align-self: flex-start;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 1rem;
}

span.support-label__popular {
  font-size: 1rem;
  color: #2a8bec;
  background: rgba(42, 139, 236, 0.1647058824);
}

.support-cost {
  font-weight: 600;
  font-size: 2.75rem;
  line-height: 110%;
  margin: 0 0.5rem 0 0;
}

.black-card {
  transform: scaleY(110%);
  background: #1d1d22;
}
.black-card .support-label {
  background-color: unset;
  align-self: stretch;
  display: flex;
  justify-content: space-between;
}
.black-card .support-label span:not(.support-label__popular) {
  background: #303035;
}
.black-card .support-label,
.black-card h4 {
  color: #fff;
}
.black-card .btn {
  border: 1px solid #fff;
}

@media (max-width: 979px) {
  .support__cards {
    flex-direction: column;
    gap: 3rem;
  }
}
.footer__content {
  display: grid;
  grid-template-columns: 50% 30% 14%;
  gap: 1.75rem;
}
.footer__list-container {
  display: flex;
  gap: 2rem;
}
.footer__list-container .footer__list {
  flex: 0 1 9rem;
  gap: 1rem;
}
.footer__list-container .footer__list li:first-child {
  font-weight: 700;
  font-size: 1rem;
}
.footer__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.footer__list li {
  font-weight: 400;
  font-size: 0.875rem;
  color: #1d1d22;
  flex: 0 0 auto;
}
.footer__list li a {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__list li a:hover {
  text-decoration: underline;
}
.footer__list li a img {
  height: 2.25rem;
  width: 2.25rem;
}
.footer__list.socials img {
  height: 2.25rem;
  width: 2.25rem;
  filter: grayscale(1);
  transition: filter 0.3s ease;
}
.footer__list.socials img:hover {
  filter: none;
}
.footer__copyright {
  margin: 1.75rem 0 1.75rem 0;
  background-color: #fff;
  padding: 2rem;
  border-radius: 1.25rem;
}

.small-icon {
  width: 1rem;
  height: unset;
}

.footer-container {
  gap: 1rem;
}

.footer-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1 1 auto;
  border-radius: 1.25rem;
  padding: 2rem;
  background-color: #fff;
}
.footer-block:first-child {
  flex: 1 1 55%;
}

@media (max-width: 1024px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .footer__content .footer-block:first-child {
    grid-area: 1/1/2/3;
    align-items: center;
    gap: 5rem;
  }
  .footer__content .footer-block:nth-child(2) {
    grid-area: 2/1/3/2;
  }
  .footer__content .footer-block:last-child {
    grid-area: 2/2/3/3;
  }
  .socials {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .footer__list.socials img {
    filter: unset;
  }
}
@media (max-width: 480px) {
  .footer__content {
    display: flex;
    flex-direction: column;
  }
  .footer__content .footer-block:first-child .footer__list-container {
    flex-wrap: wrap;
  }
  .footer__content .footer-block:first-child .footer__list-container .footer__list {
    flex: 1 1 auto;
  }
}
.newsPage-content {
  max-width: 59.375rem;
  margin-inline: auto;
}

.news-title {
  margin: 4.25rem 0 3rem 0;
}
.news-title .container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sub-title {
  font-size: 1.25rem;
  line-height: 120%;
}

.news-details {
  display: flex;
  gap: 1.25rem;
}
.news-details .date-box,
.news-details .author-box {
  background-color: #fff;
}

.news-image {
  border-radius: 1.25rem;
  overflow: hidden;
  text-align: center;
}
.news-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 3rem 0 6.25rem 0;
}

.news-item {
  border-radius: 1.25rem;
  padding: 32px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.news-item h3 {
  margin: 0 0 1rem 0;
}
.news-item h4 {
  margin: 0 0 0.5rem 0;
}
.news-item p:not(:last-child) {
  margin: 0 0 1.75rem 0;
}

@media (max-width: 480px) {
  .news-title {
    margin: 4.25rem 0 1rem 0;
  }
  .news-content {
    margin: 1rem 0 4.25rem 0;
  }
}/*# sourceMappingURL=index.css.map */