@charset "UTF-8";
*,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
}

body {
  margin-top: 70px;
  background-color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

.btn {
  color: #1e2a38;
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  border: 1px solid #1e2a38;
  border-radius: 30px;
  background-color: transparent;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.5s ease, color 0.5s ease, transform 0.5s ease;
  text-align: center;
}

.btn:hover,
.btn:focus {
  background-color: #1e2a38;
  color: #ffffff;
  cursor: pointer;
}

.btn:active {
  background-color: #1e2a38;
  color: #ffffff;
  transform: scale(0.98);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
header .container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}
header .container .subcontainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
header .container .subcontainer .navbar {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container .subcontainer .navbar .logo {
  display: flex;
  width: 260px;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  font-size: 100%;
}
header .container .subcontainer .navbar .logo img {
  height: 80%;
  border-radius: 100%;
}
header .container .subcontainer .navbar .nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
  margin-right: 5%;
}
header .container .subcontainer .navbar .nav-menu .nav-item {
  list-style: none;
}
header .container .subcontainer .navbar .nav-menu .nav-item .nav-link {
  color: #1e2a38;
  text-decoration: none;
}
header .container .subcontainer .navbar .hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
header .container .subcontainer .navbar .hamburger .bar {
  width: 25px;
  height: 3px;
  border-radius: 20px;
  background-color: #1e2a38;
  transition: all 0.3s ease;
}

.overlay {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 100vh; /* Покрывает весь экран */
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

@media screen and (max-width: 1100px) {
  .overlay.active {
    opacity: 1;
    pointer-events: all;
  }
  .container .subcontainer .navbar .nav-menu {
    gap: 0 !important;
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    background-color: rgba(30, 42, 56, 0.9);
    width: 100%;
    padding: 0;
    overflow: hidden;
    transition: left 0.3s ease;
  }
  .container .subcontainer .navbar .nav-menu.active {
    left: 0;
  }
  .container .subcontainer .navbar .nav-menu .nav-item {
    line-height: 40px;
    width: 100%;
    padding: 10px 0;
    text-align: center;
  }
  .container .subcontainer .navbar .nav-menu .nav-item:hover {
    background-color: rgba(255, 255, 255, 0.027);
    transition: 0.5s ease;
  }
  .container .subcontainer .navbar .nav-menu .nav-item:hover .nav-link {
    transition: 0.5s;
    color: white !important;
  }
  .container .subcontainer .navbar .nav-menu .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.613) !important;
    text-decoration: none;
    display: block;
    padding: 5px 0;
  }
  .container .subcontainer .navbar .nav-menu .nav-item .nav-link.active {
    color: white;
  }
  .hamburger {
    display: flex !important;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
@media screen and (min-width: 1150px) {
  .container .subcontainer .navbar .nav-menu {
    height: 100%;
    padding: 20px;
    gap: 0 !important;
  }
  .container .subcontainer .navbar .nav-menu .nav-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 145px;
    height: 100%;
  }
  .container .subcontainer .navbar .nav-menu .nav-item .nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.5s ease, transform 0.5s ease;
  }
  .container .subcontainer .navbar .nav-menu .nav-item .nav-link:hover {
    transition: 0.5s;
    color: #29588f;
    font-size: 120%;
  }
  .container .subcontainer .navbar .nav-menu .nav-item .nav-link::after {
    content: "";
    position: absolute;
    top: 155%;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 5px;
    background-color: #29588f;
    border-radius: 5px;
    transition: width 0.5s ease, left 0.5s ease;
    transform: translateX(-50%);
  }
  .container .subcontainer .navbar .nav-menu .nav-item .nav-link:hover::after, .container .subcontainer .navbar .nav-menu .nav-item .nav-link:focus::after, .container .subcontainer .navbar .nav-menu .nav-item .nav-link:active::after {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .container .subcontainer .navbar .nav-menu .nav-item .nav-link:active::after {
    width: 100%;
  }
}
.footer {
  background-color: #1e2a38;
  padding: 3rem 0rem;
  text-align: center;
  color: white;
}
.footer .footer-content {
  max-width: 100%;
  margin: 0 auto;
}
.footer .footer-content p {
  margin: 0.5rem 0;
}
@media (max-width: 768px) {
  .footer .footer-content {
    font-size: 0.9rem;
  }
}

.main-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-section .hero {
  display: flex;
  width: 100%;
  height: calc(100vh - 70px);
}
.main-section .hero .hero__left {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-section .hero .hero__left img {
  height: 90%;
}
.main-section .hero .hero__right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15%;
}
.main-section .hero .hero__right .hero__title {
  letter-spacing: 10px;
  font-size: 400%;
  font-weight: 300;
}
.main-section .hero .hero__right .hero__title .A {
  color: #29588f;
  display: inline-block;
  transform: rotateX(180deg) translateY(-30%);
}
.main-section .hero .hero__right .hero__title .E {
  color: #29588f;
  display: inline-block;
  transform: rotateY(180deg) translateX(10px) translateY(-50%);
}
.main-section .hero .hero__right .hero__subtitle {
  font-size: 120%;
  line-height: 300%;
}
.main-section .hero .hero__right .btn-primary {
  font-size: 120%;
}
.main-section .partners {
  width: 100%;
  height: calc(120vh - 80px);
  background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 10%, #f5f5f5 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5%;
}
.main-section .partners .excursion {
  margin-top: 2rem;
  font-size: 200%;
  color: #29588f;
}
.main-section .partners .partners_photo_with_text {
  display: flex;
  gap: 2%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 85%;
}
.main-section .partners .partners_photo_with_text .partners_div {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
  width: 35%;
  padding: 1%;
}
.main-section .partners .partners_photo_with_text .partners_div .img_div_excursion {
  height: auto;
  width: 100%;
}
.main-section .partners .partners_photo_with_text .partners_div .img_div_excursion .ex_img {
  border-radius: 10px;
  width: 100%;
}
.main-section .partners .partners_photo_with_text .partners_div .item-container {
  width: 100%;
  min-height: 40%;
  padding: 10px 10px 0px 10px;
  box-sizing: border-box;
  overflow: hidden;
}
.main-section .partners .partners_photo_with_text .partners_div .item-container .text {
  text-align: justify;
  line-height: 1.7;
  color: #1e2a38;
}
.main-section .partners .partners_photo_with_text .partners_div .item-container .text h1 {
  color: #29588f;
  font-size: 22px;
}
.main-section .video {
  background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 98%);
  width: 100%;
  height: auto;
  padding: 1rem 0 3rem;
  display: flex;
  flex-direction: column;
}
.main-section .video .video_title {
  width: 100%;
  text-align: center;
  margin: 3rem 0 2rem;
  font-size: 200%;
  color: #29588f;
}
.main-section .video .video-section {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background-color: #ffffff;
  margin: 0 6rem;
  height: auto;
  padding: 2rem 0;
}
.main-section .video .video-section .video-section_title {
  margin: 0 0 2rem 2rem;
  font-size: 22px;
  color: #29588f;
}
.main-section .video .video-section .video-section_container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  gap: 2rem;
}
.main-section .video .video-section .video-section_container .video-section_left {
  flex: 1;
  min-width: 0;
}
.main-section .video .video-section .video-section_container .video-section_left .video-section_player {
  width: 100%;
  height: auto;
  background-color: #000;
  display: block;
  border-radius: 10px;
}
.main-section .video .video-section .video-section_container .video-section_right {
  flex: 1;
  min-width: 0;
}
.main-section .video .video-section .video-section_container .video-section_right .video-section_content-title {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.main-section .video .video-section .video-section_container .video-section_right .video-section_content-title .video-section_thumbnail {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-right: 1rem;
}
.main-section .video .video-section .video-section_container .video-section_right .video-section_content-title .video-section_content-heading {
  margin: 0;
  color: #29588f;
  font-size: 22px;
}
.main-section .video .video-section .video-section_container .video-section_right .video-section_description {
  margin: 0;
  line-height: 1.5;
  color: #1e2a38;
  text-align: justify;
}
.main-section .socials {
  margin: 2rem 0 5rem 0;
  display: flex;
  width: 100%;
}
.main-section .socials .icon_div {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-section .socials .icon_div .icon {
  margin-right: 10px;
  width: 32px;
}
.main-section .socials .icon_div a {
  color: #1e2a38;
  text-decoration: none;
}
.main-section .socials .icon_div .hov {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .main-section .hero {
    margin-top: 2rem;
    height: auto;
  }
  .main-section .hero .hero__left {
    width: 100%;
    display: flex;
    padding-top: 2rem;
    height: auto;
    justify-content: center;
  }
  .main-section .hero .hero__left img {
    max-width: 400px;
    height: auto;
  }
  .main-section .hero .hero__right {
    padding-top: 1rem;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
  }
  .main-section .hero .hero__right .hero__subtitle {
    line-height: 25px;
    font-size: 90%;
    text-align: center;
    width: 80%;
  }
  .main-section .hero .hero__right .btn-primary {
    width: 90%;
    max-width: 300px;
    height: 48px;
    font-size: 100%;
  }
  .main-section .partners {
    padding: 1rem;
    min-height: 100vh;
  }
  .main-section .partners .excursion {
    font-size: 200%;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  .main-section .partners .partners_photo_with_text {
    height: 100%;
    align-items: start;
    gap: 1rem;
  }
  .main-section .partners .partners_photo_with_text .partners_div {
    justify-content: start;
    width: 40%;
    height: 100%;
    padding: 1rem;
  }
  .main-section .partners .partners_photo_with_text .partners_div .img_div_excursion {
    width: 100%;
  }
  .main-section .partners .partners_photo_with_text .partners_div .img_div_excursion .ex_img {
    width: 100%;
    max-width: 100%;
  }
  .main-section .partners .partners_photo_with_text .partners_div .item-container {
    width: 100%;
    padding: 1rem 0;
  }
  .main-section .partners .partners_photo_with_text .partners_div .item-container .text {
    font-size: 85%;
    line-height: 1.5;
    text-align: justify;
  }
  .main-section .partners .partners_photo_with_text .partners_div .item-container .text h1 {
    font-size: 20px;
  }
  .main-section .video .video_title {
    margin: 4rem 0 3rem;
    font-size: 200%;
  }
  .main-section .video .video-section {
    margin: 0 6.5rem;
  }
  .main-section .video .video-section .video-section_container {
    flex-direction: column;
  }
  .main-section .video .video-section .video-section_container .video-section_right .video-section_content-title .video-section_content-heading {
    font-size: 20px;
  }
  .main-section .video .video-section .video-section_container .video-section_right .video-section_description {
    font-size: 85%;
  }
  .main-section .socials {
    height: auto;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0rem 6.5rem;
  }
  .main-section .socials .icon_div {
    width: 100%;
    display: flex;
    gap: 0.5rem;
    justify-content: start;
  }
  .main-section .socials .icon_div .icon {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 1024px) {
  .main-section .hero {
    padding: 0 1rem;
    height: auto;
  }
  .main-section .hero .hero__left {
    padding-top: 0rem;
  }
  .main-section .hero .hero__left img {
    max-width: 350px;
  }
  .main-section .hero .hero__right {
    gap: 3.5rem;
  }
  .main-section .hero .hero__right .hero__title {
    font-size: 300%;
  }
  .main-section .hero .hero__right .btn-primary {
    max-width: 250px;
  }
  .main-section .partners {
    height: auto;
  }
  .main-section .partners .partners_photo_with_text {
    margin-top: 1rem;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 8rem;
  }
  .main-section .partners .partners_photo_with_text .partners_div {
    width: 100%;
  }
  .main-section .video {
    padding: 1rem 2.5rem;
  }
  .main-section .socials {
    margin: 0;
    gap: 1rem;
    padding: 2rem 9rem;
  }
}
@media (max-width: 767px) {
  .main-section .hero {
    flex-direction: column;
  }
  .main-section .hero .hero__right {
    gap: 2rem;
  }
  .main-section .hero .hero__right .hero__title {
    display: none;
  }
  .main-section .hero .hero__right .btn-primary {
    max-width: 400px;
  }
  .main-section .partners .excursion {
    font-size: 150%;
  }
  .main-section .partners .partners_photo_with_text {
    padding: 2rem;
  }
  .main-section .video {
    padding: 0;
  }
  .main-section .video .video_title {
    margin: 1rem 0 3rem;
    font-size: 150%;
  }
  .main-section .video .video-section {
    margin: 0 3rem;
  }
  .main-section .video .video-section .video-section_title {
    font-size: 20px;
  }
  .main-section .video .video-section .video-section_container .video-section_right .video-section_content-title .video-section_thumbnail {
    width: 40px;
    height: 40px;
  }
  .main-section .video .video-section .video-section_container .video-section_right .video-section_content-title .video-section_content-heading {
    font-size: 18px;
  }
  .main-section .socials {
    padding: 3rem;
  }
}
@media (max-width: 480px) {
  .main-section .partners .excursion {
    margin: 0;
  }
  .main-section .partners .partners_photo_with_text {
    margin: 0;
    padding: 0;
  }
  .main-section .partners .partners_photo_with_text .partners_div .item-container .text h1 {
    font-size: 19px;
  }
  .main-section .video .video_title {
    margin: 2rem 0;
  }
  .main-section .video .video-section .video-section_title {
    font-size: 19px;
  }
  .main-section .video .video-section {
    margin: 0 1rem;
  }
}
.participants-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 14rem;
  background-color: #f5f5f5;
}
.participants-section .table-container {
  background-color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
.participants-section .table-container .table-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #29588f;
}
.participants-section .table-container .table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.participants-section .table-container .table .table-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  background-color: #eaeaea;
  border-radius: 8px;
}
.participants-section .table-container .table .table-row .table-cell {
  font-size: 1rem;
  color: #1e2a38;
}

@media (max-width: 1280px) {
  .participants-section {
    padding: 1.5rem 8rem;
  }
  .participants-section .table-container .table-title {
    font-size: 1.4rem;
  }
  .participants-section .table-container .table .table-row .table-cell {
    font-size: 0.95rem;
  }
}
@media (max-width: 1024px) {
  .participants-section {
    padding: 1rem 2rem;
  }
  .participants-section .table-container .table-title {
    font-size: 1.3rem;
  }
  .participants-section .table-container .table .table-row {
    padding: 0.5rem;
  }
  .participants-section .table-container .table .table-row .table-cell {
    font-size: 0.9rem;
  }
}
@media (max-width: 767px) {
  .participants-section {
    padding: 1rem;
    gap: 1.5rem;
  }
  .participants-section .table-container {
    padding: 1rem;
  }
  .participants-section .table-container .table-title {
    font-size: 1.2rem;
  }
  .participants-section .table-container .table .table-row {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 0.5rem;
  }
  .participants-section .table-container .table .table-row .table-cell {
    width: 100%;
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .participants-section {
    padding: 0.5rem;
    gap: 1rem;
  }
  .participants-section .table-container {
    padding: 0.75rem;
  }
  .participants-section .table-container .table-title {
    font-size: 1.1rem;
  }
  .participants-section .table-container .table .table-row {
    padding: 0.5rem;
    gap: 0.25rem;
  }
  .participants-section .table-container .table .table-row .table-cell {
    font-size: 0.8rem;
  }
}
.events-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: #f5f5f5;
}
.events-section .event-container {
  background-color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
.events-section .event-container .event-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #29588f;
}
.events-section .event-container .event-content {
  display: flex;
  gap: 1rem;
}
.events-section .event-container .event-content .event-image {
  width: 30%;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 8px;
}
.events-section .event-container .event-content .event-description {
  text-align: justify;
  line-height: 2;
  flex: 1;
  font-size: 1rem;
  color: #1e2a38;
}

@media (max-width: 1280px) {
  .events-section {
    padding: 1.5rem;
  }
  .events-section .event-container .event-title {
    font-size: 1.4rem;
  }
  .events-section .event-container .event-content .event-image {
    width: 35%;
  }
}
@media (max-width: 1024px) {
  .events-section {
    padding: 1rem 7rem;
    gap: 1.5rem;
  }
  .events-section .event-container {
    padding: 1rem;
  }
  .events-section .event-container .event-title {
    font-size: 1.2rem;
  }
  .events-section .event-container .event-content {
    flex-direction: column;
    align-items: center;
  }
  .events-section .event-container .event-content .event-image {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
  .events-section .event-container .event-content .event-description {
    width: 100%;
    font-size: 0.9rem;
    text-align: justify;
  }
}
@media (max-width: 767px) {
  .events-section {
    padding: 1rem;
    gap: 1.5rem;
  }
  .events-section .event-container {
    padding: 1rem;
  }
  .events-section .event-container .event-title {
    font-size: 1.2rem;
  }
  .events-section .event-container .event-content {
    flex-direction: column;
    align-items: center;
  }
  .events-section .event-container .event-content .event-image {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
  .events-section .event-container .event-content .event-description {
    width: 100%;
    font-size: 0.9rem;
    text-align: justify;
  }
}
@media (max-width: 480px) {
  .events-section {
    padding: 0.5rem;
    gap: 1rem;
  }
  .events-section .event-container {
    padding: 0.75rem;
  }
  .events-section .event-container .event-title {
    font-size: 1.1rem;
  }
  .events-section .event-container .event-content .event-image {
    width: 100%;
    height: auto;
  }
  .events-section .event-container .event-content .event-description {
    font-size: 0.85rem;
  }
}
.resources-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: #f5f5f5;
}
.resources-section .resource-container {
  background-color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  position: relative;
}
.resources-section .resource-container .resource-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #29588f;
}
.resources-section .resource-container .resource-description {
  text-align: justify;
  font-size: 1rem;
  color: #1e2a38;
  line-height: 1.5;
  margin-bottom: 6rem;
}
.resources-section .resource-container .resource-button {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

@media (max-width: 1280px) {
  .resources-section .resource-container {
    padding: 1.25rem;
  }
  .resources-section .resource-container .resource-title {
    font-size: 1.4rem;
  }
  .resources-section .resource-container .resource-button {
    padding: 15px 30px;
    font-size: 0.9rem;
  }
}
@media (max-width: 1024px) {
  .resources-section .resource-container {
    padding: 1rem;
  }
  .resources-section .resource-container .resource-title {
    font-size: 1.6rem;
  }
  .resources-section .resource-container .resource-description {
    font-size: 0.9rem;
  }
  .resources-section .resource-container .resource-button {
    padding: 15px 30px;
    font-size: 0.85rem;
  }
}
@media (max-width: 767px) {
  .resources-section .resource-container {
    padding: 1rem;
  }
  .resources-section .resource-container .resource-title {
    font-size: 1.2rem;
  }
  .resources-section .resource-container .resource-button {
    width: calc(100% - 2rem);
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 1rem;
  }
  .resources-section .resource-container .resource-description {
    margin-bottom: 40px;
    font-size: 0.9em;
  }
}
@media (max-width: 480px) {
  .resources-section .resource-container {
    padding: 0.75rem;
  }
  .resources-section .resource-container .resource-title {
    font-size: 1.2rem;
  }
  .resources-section .resource-container .resource-description {
    margin-bottom: 30px;
    font-size: 0.9em;
  }
  .resources-section .resource-container .resource-button {
    font-size: 0.85rem;
  }
}
.about-page {
  background-color: #f5f5f5;
  color: #1e2a38;
  line-height: 1.6;
  padding: 0 0 2rem;
}
.about-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.about-page h1,
.about-page h2,
.about-page h3,
.about-page h4 {
  color: #29588f;
  margin-bottom: 1rem;
}
.about-page h1 {
  font-size: 200%;
}
.about-page h2 {
  text-align: center;
  font-size: 200%;
  margin: 2rem 0 1.5rem;
}
.about-page h3 {
  font-size: 22px;
}
.about-page h4 {
  font-size: 20px;
}

.project-header {
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 80%, #f5f5f5 100%);
  text-align: center;
  margin-bottom: 3rem;
  padding: 4rem 0;
}
.project-header h1 {
  margin-bottom: 1.5rem;
}
.project-header .project-meta {
  display: flex;
}
.project-header .project-meta .project-meeta_h {
  display: flex;
  justify-content: center;
  width: 50%;
}
.project-header .project-meta .project-meeta_h .meta__logo {
  margin-right: 4rem;
  height: 25rem;
}
.project-header .project-meta .meta_text {
  text-align: left;
  padding-left: 4rem;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 10%;
}
.project-header .project-meta .meta_text p {
  font-size: 120%;
}
.project-header .project-meta p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}
.project-header .project-meta .btn-pr {
  margin: 0;
  padding: 10px 30px;
  max-width: 200px;
  font-size: 120%;
}

.project-description p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.project-description .program-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
.project-description .program-features .feature-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  flex: 1 1 300px;
}
.project-description .program-features .feature-card ul {
  padding-left: 1.2rem;
}
.project-description .program-features .feature-card li {
  margin-bottom: 0.5rem;
}

.project-content .content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.project-content .content-grid .content-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.project-content .content-grid .content-card.tasks {
  text-align: center;
  grid-column: 1/-1;
}
.project-content .content-grid .content-card.tasks ul {
  margin-left: 25%;
  text-align: left;
}
.project-content .content-grid .task-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.project-content .content-grid .task-categories .task-category h4 {
  color: #29588f;
  margin-bottom: 0.8rem;
}
.project-content .content-grid .task-categories .task-category ul {
  padding-left: 1.2rem;
}
.project-content .content-grid .task-categories .task-category li {
  margin-bottom: 0.5rem;
}

.project-results {
  margin: 3rem 0;
}
.project-results p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.project-results .audience {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}
.project-results .audience ul {
  padding-left: 1.2rem;
}
.project-results .audience li {
  margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
  .about-page .project-header {
    padding: 2rem 0;
  }
  .about-page .project-header .project-meta {
    flex-direction: column;
    align-items: center;
  }
  .about-page .project-header .project-meta .project-meeta_h {
    padding: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .about-page .project-header .project-meta .project-meeta_h .meta__logo {
    max-width: 300px;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    margin-bottom: 2rem;
    height: auto;
  }
  .about-page .project-header .project-meta .meta_text {
    gap: 5%;
  }
  .about-page .project-header .project-meta .meta_text p {
    font-size: 100%;
  }
  .about-page .project-header .project-meta .btn-pr {
    min-width: 70%;
    margin-top: 1.5rem;
    font-size: 100%;
  }
  .about-page .project-content .content-grid .content-card.tasks ul {
    margin-left: 10%;
  }
}
@media (max-width: 979px) {
  .content-grid .content-card.relevance {
    grid-column: 1/-1;
    width: 100%;
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .about-page {
    padding: 0 0 1.5rem;
  }
  .about-page h1 {
    font-size: 180%;
  }
  .about-page h2 {
    font-size: 160%;
    margin: 1.5rem 0 1rem;
  }
  .about-page .project-header {
    padding: 2rem 0;
  }
  .about-page .project-header .project-meta .project-meeta_h .meta__logo {
    max-width: 250px;
  }
  .about-page .project-header .project-meta .meta_text {
    text-align: center;
    padding-left: 1rem;
  }
  .about-page .project-header .project-meta .meta_text .btn-pr {
    min-width: 90%;
  }
  .about-page .project-content .content-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .about-page .project-content .content-grid .content-card.tasks ul {
    margin-left: 5%;
  }
  .about-page .program-features {
    flex-direction: column;
  }
}
@media (max-width: 603px) {
  .about-page .content-grid .content-card.tasks {
    text-align: left;
  }
}
@media (max-width: 480px) {
  .about-page h1 {
    font-size: 120%;
  }
  .about-page h2 {
    font-size: 100%;
  }
  .about-page h3 {
    font-size: 16px;
  }
  .about-page .project-header {
    padding: 1.5rem 0;
  }
  .about-page .project-header .project-meta .project-meeta_h .meta__logo {
    max-width: 200px;
  }
  .about-page .project-header .project-meta .meta_text {
    padding-left: 0;
  }
  .about-page .project-header .project-meta .meta_text p {
    font-size: 90%;
  }
  .about-page .project-header .project-meta .btn-pr {
    min-width: 100%;
    padding: 8px 20px;
    font-size: 90%;
  }
  .about-page .project-content .content-grid .content-card {
    padding: 1rem;
  }
  .about-page .project-content .content-grid .content-card.tasks ul {
    margin-left: 0;
    padding-left: 1.5rem;
  }
  .about-page .task-categories {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=style.css.map */
