/**
 * Theme Name:  children theme
 

 */
* {
  box-sizing: border-box;
}

body {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 0;
  margin: 0;
  color: #333;
  /* position: relative; */
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

h3 {
  margin-top: 0;
}

ul {
  padding-left: 30px;
  margin: 0;
  list-style: none;
}

h1 {
  margin: 0;
}

p {
  margin: 0;
}

.text-bold {
  font-weight: 600;
}

.col {
  width: 50%;
}

.section-title {
  margin-top: 0;
  color: #015b25;
  font-size: 40px;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  position: relative;
  height: 34vw;
  overflow: hidden;
  margin-bottom: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__text {
  position: absolute;
  z-index: 2;
  font-size: 40px;
  color: #fff;
  font-weight: 700;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 1;
}

.header-wrapper {
  background: #10913e;
  padding: 15px 0;
}

.hero-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1280px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  z-index: 99;
}

.hero-logo {
  max-width: 700px;
  margin-bottom: 30px;
  display: block;
}

.hero-place {
  max-width: 500px;
  display: block;
  margin-bottom: 60px;
  width: 100%;
}

.hero-right {
  text-align: center;
}

.hero-text {
  position: relative;
  z-index: 11;
  font-size: 40px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
}

.hero-text p {
  margin-top: 20px;
}

.hero-left {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-date {
  font-size: 40px;
  color: #ffd601;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 25px 60px;
  background-color: #d232f1;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-7px);
}

@media (max-width: 767px) {
  .hero-wrapper {
    flex-direction: column;
    justify-content: center;
  }

  .hero-text img {
    width: 300px;
    margin: 0 auto;
    display: block;
  }

  .hero-text p {
    margin-top: 30px;
    text-align: center;
  }
}

.divider {
  background-color: #ebe7e7;
  width: 250px;
  height: 2px;
  margin: 20px 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-medium {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-max {
  max-width: 1920px;
  margin: 0 auto;
}

@media (min-width: 1000px) {
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%); */
    width: 100%;
    max-width: 1280px;
    z-index: 9999;
    padding: 0 15px;
  }
}

.nav {
  margin: 0;
  list-style-type: none;
  display: flex;
}

.nav .page_item:last-child {
  margin-right: 0;
}

.nav li {
  margin: 0 15px;
}

.nav a {
  color: #fff;
  padding: 0 5px;
  font-size: 18px;
}

.nav .current_page_parent a {
  font-weight: 700;
  color: #d5b467;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 991px) {
  .header-right {
    margin-left: auto;
    margin-right: 20px;
  }
}

.header-social .fab {
  color: #10913e;
  font-size: 28px;
}

.header-social a {
  background-color: #fff;
  padding: 5px;
  display: block;
  transition: 0.3s;
}

.header-social a:hover {
  transform: translateY(-5px);
}

.breadcrumbs {
  font-size: 15px;
  margin-bottom: 20px;
  color: #666;
}

.breadcrumbs a {
  color: #10913e;
  text-decoration: none;
}

.breadcrumbs span {
  margin: 0 5px;
}

.overlay {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  transition: all 0.3s ease;
}

.overlay.is-active {
  display: block;
}

.header-menu {
  display: none;
}

@media (max-width: 999px) {
  .header-menu {
    display: block;
    background: #10913e;
    color: #fff;
    transform: translateX(100%);
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    transition: all 0.3s ease;
    z-index: 9999;
    height: 100vh;
    overflow: hidden;
    padding: 10px 0 30px;
    max-width: 350px;
    border-left: 1px solid #ccc;
  }
}

.header__mobile-button {
  margin-top: -10px;
  background-color: transparent;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header__menu-icon {
  background: #fff;
  display: block;
  width: 26px;
  height: 3px;
  margin-top: 6px;
}

.header-menu.is-active {
  transform: translateX(0);
  display: block;
  z-index: 3000000;
  transition: all 0.3s ease;
}

.header-menu__top {
  display: flex;
}

.header__btn-close {
  padding-top: 25px;
  padding-right: 25px;
  margin-left: auto;
  background-color: transparent;
  cursor: pointer;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-mobile {
  margin-top: 50px;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.nav-mobile li {
  text-align: center;
  margin-bottom: 40px;
}

.nav-mobile li a {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}

.nav-mobile .current_page_item a {
  text-decoration: underline;
}

@media (max-width: 999px) {
  .nav {
    display: none;
  }
  .header-wrapper {
    padding: 10px 0;
  }
  .header-container {
    display: flex;
  }
  .header-lang {
    display: none;
  }
  .header-lang-mobile {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
  }

  .header-lang-mobile img {
    width: 30px !important;
    height: 18px !important;
  }

  .header-lang-mobile li {
    list-style: none;
  }
}

@media (min-width: 1000px) {
  .header__mobile-button {
    display: none;
  }
  .header-lang-mobile {
    display: none;
  }
}

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

.organizers {
  background-color: #7b1b8f;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  padding: 50px 0 80px;
}

.organizers-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.organizers-left {
  max-width: 900px;
  margin: 0 auto;
}

.organizers p {
  margin-bottom: 10px;
}

.organizers h3 {
  font-weight: 700;
}

.organizers-items {
  border-left: 5px solid #ffd601;
  padding-left: 30px;
}

.organizers-title {
  margin-bottom: 50px;
  font-size: 38px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

/* about us */

.about-us {
  padding: 70px 0;
  background: #10913e;
  color: #fff;
}

.about-us .section-title {
  color: #fff;
}

.about-us .about-content p {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.4;
}

.about {
  padding: 80px 0;
}

.about-title {
  margin-bottom: 30px;
}

.about-subtitle {
  font-size: 20px;
  text-align: center;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 70px;
}

.about-item {
  width: 30%;
  display: flex;
  gap: 20px;
}

.about-item-title {
  font-size: 22px;
  color: #005b24;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-item-text,
.about-item-text p {
  line-height: 1.4;
  font-size: 16px;
}

.about-item-img {
  width: 110px;
  height: 110px;
  flex: 1 0 auto;
}

.about-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

@media (max-width: 1100px) {
  .about-item {
    flex-direction: column;
    width: 45%;
  }
  .about-item-img {
    flex: 0 1 auto;
  }
}

@media (max-width: 767px) {
  .about-wrapper img {
    width: 300px;
  }
  .about-item {
    width: 100%;
  }
}

/* parthers */
.partners {
  padding: 70px 0;
  background-color: #f9f9f9;
}

.partners-title {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
  color: #333;
}

.partners-logos {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
}

.partner-logo {
  height: 140px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
}

/* achievements */

.achievements {
  background-color: #10913e;
  color: #fff;
  padding: 60px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.achievements-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.achievements-content {
  flex: 1 1 auto;
  margin-bottom: 30px;
}

.achievements-content h2 {
  font-size: 26px;
  line-height: 1.4;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}

.achievements-content h2 span {
  color: #f2c244;
}

.btn-outline {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background-color: transparent;
  color: #f2c244;
  border-color: #f2c244;
}

.achievements-stats {
  display: flex;
  gap: 40px;
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1 1 150px;
}

.stat-circle {
  width: 150px;
  height: 150px;
  border: 3px solid #d5b467;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: bold;
}

.stat-item p {
  font-weight: 700;
  font-size: 16px;
}

@media (max-width: 768px) {
  .achievements-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .achievements-stats {
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
  }

  .stat-circle {
    width: 100px;
    height: 100px;
    font-size: 28px;
  }

  .achievements-content h2 {
    font-size: 20px;
  }
}

/* gallery */
.gallery {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.gallery-title {
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-grid a {
  width: auto;
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* Адаптивність */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* news */

.news {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 5px #ccc;
}

.news-image img {
  width: 100%;
  height: 240px;
  display: block;
}

@media (max-width: 767px) {
  .news-image img {
    height: auto;
  }
}

.news-date {
  font-weight: bold;
  color: #8cb59d;
  line-height: 1.2;
  font-size: 14px;
  margin-bottom: 10px;
}

.news-date-item {
  border: 1px solid #007f38;
  padding: 5px 10px;
}

.news-day {
  display: block;
  font-size: 20px;
}

.news-month {
  display: block;
  font-size: 14px;
}

.news-content {
  padding: 20px;
}

.news-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #005f2f;
}

.news-title a {
  color: inherit;
  text-decoration: none;
}

.news-excerpt {
  flex-grow: 1;
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.news-page {
  padding: 70px 0;
  background-color: #f2f2f2;
}

.news-page .section-title {
  margin-bottom: 70px;
}

.btn-read {
  display: inline-flex;
  align-self: start;
  padding: 8px 16px;
  background-color: transparent;
  border: 1px solid #005f2f;
  color: #005f2f;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-read:hover {
  background-color: #005f2f;
  color: #fff;
}

.news-more {
  text-align: center;
  margin-top: 40px;
}

.news-more .btn-outline {
  padding: 10px 20px;
  border: 1px solid #005f2f;
  background: transparent;
  color: #005f2f;
  text-decoration: none;
  transition: 0.3s;
}

.news-more .btn-outline:hover {
  background-color: #005f2f;
  color: #fff;
}

@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-title {
    font-size: 16px;
  }
}

/* single post template */

.single-post {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #333;
}

.single-post .container {
  margin: 0 auto;
  background: #fff;
  padding: 30px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.post-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #222;
}

.post-date {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
  display: flex;
  gap: 12px;
  font-weight: 500;
}

.post-day {
  background-color: #005b24;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 700;
}

.post-month {
  text-transform: uppercase;
  color: #005b24;
  font-weight: 700;
  align-self: center;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.post-text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 40px;
}

.post-text p {
  margin-bottom: 20px;
}

.back-to-news {
  text-align: center;
}

.back-to-news .btn-outline {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid #005b24;
  border-radius: 5px;
  color: #005b24;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.back-to-news .btn-outline:hover {
  background-color: #005b24;
  color: #fff;
}

@media (max-width: 600px) {
  .single-post .container {
    padding: 20px;
  }

  .post-title {
    font-size: 2rem;
  }

  .post-text {
    font-size: 1rem;
  }
}

/* contacts */

.contacts {
  background-color: #8cb59d;
}

.contact-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  flex-shrink: 0;
}

.contact-icon img {
  width: 50px;
  height: 50px;
}

.contacts-title {
  text-transform: uppercase;
  font-size: 28px;
  color: #fff;
  margin: 0;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.contact-info i {
  min-width: 18px;
  text-align: center;
}

.contact-info a {
  color: #005f2f;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #003f20;
}

.map {
  width: 100%;
}

.map iframe {
  display: block;
}

@media (max-width: 991px) {
  .section-img {
    max-width: 100%;
  }

  .contacts-info {
    padding-left: 50px;
    padding-right: 20px;
  }
}

/* footer */
.footer {
  padding-top: 40px;
  background-color: #10913e;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto 30px;
}

.footer-col {
  width: 30%;
}

.footer a,
.footer h3 {
  color: #fff;
}

.footer ul {
  list-style-type: none;
  padding-left: 0;
}

.footer__menu a {
  font-size: 20px;
  font-weight: 500;
  transition: all 0.5s ease;
  padding-bottom: 2px;
}

.footer__menu .current_page_parent a {
  font-weight: 700;
  color: #d6b369;
}

.footer h3 {
  font-size: 20px;
  font-weight: 500;
}

.footer-logo {
  display: block;
  width: 200px;
}

@media (max-width: 767px) {
  .footer-logo {
    margin: 0 auto;
  }
  .footer-col {
    text-align: center;
  }
}

.footer__menu {
  display: flex;
  flex-direction: column;
}

.footer__menu li {
  margin-bottom: 20px;
}

.footer__menu li:last-child {
  margin-bottom: 0;
}

.footer__menu li a:hover {
  color: #d6b369;
}

.contact-info {
  font-size: 16px;
  color: #333;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-label {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin-bottom: 7px;
  display: block;
}

.contact-data {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: 0.3s ease;
}

@media (max-width: 767px) {
  .contact-data {
    justify-content: center;
  }
  .contact-label {
    text-align: center;
  }
}

.contact-data i {
  color: #fff;
  min-width: 18px;
}

.contact-data a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-data a:hover {
  color: #d6b369;
  text-decoration: none;
  border: none;
}

@media (max-width: 767px) {
  .footer__menu {
    display: flex;
    flex-direction: column;
  }

  .footer-nav li {
    margin-bottom: 20px;
  }
  .footer__logos {
    justify-content: center;
  }
}

.footer__logos-item img {
  width: 300px;
}

.footer__menu .current_page_item {
  display: inline-block;
  padding-bottom: 2px;
}

.footer__contacts a {
  display: flex;
  align-items: center;
}

.footer__contacts a svg {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

.footer__contacts ul li {
  margin-bottom: 10px;
}

.footer-social__link {
  display: flex;
  align-items: center;
}

.footer-social__link svg {
  margin-right: 10px;
}

.footer .footer-social li {
  margin-bottom: 20px;
}

.footer-copy {
  padding: 20px 0;
  font-size: 14px;
  text-align: center;
  color: #fbfbfb;
  border-top: 1px solid #fbfbfb;
}

@media (max-width: 1000px) {
  .footer-wrapper {
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
  }

  .footer-col {
    width: 50%;
  }
}

@media (max-width: 650px) {
  .footer-col {
    width: 100%;
  }
}

.page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 70px;
}

.page-title__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #f9fbff;
  margin-right: 25px;
}

.page-title span {
  color: #2f327d;
  font-size: 45px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero {
  position: relative;
}

.hero-top {
  background-color: #fff;
  padding: 40px 0;
  text-align: center;
}

.hero-title {
  color: #333;
  text-transform: uppercase;
  font-size: 34px;
  font-weight: 600;
}

.hero .swiper {
  position: relative;
}

.hero .swiper {
  width: 100%;
  height: 700px;
}

.hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .swiper-slide:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgb(100 100 100 / 60%);
}

.hero .slide-info {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero .slide-info-text {
  color: #fff;
  font-size: 44px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero .slide-info-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.hero .slide-info-btn {
  color: #fff;
  padding: 14px 30px;
  border: 1px solid #fff;
  transition: 0.3s;
  font-size: 18px;
}

.hero .btn-green {
  border-color: #10913e;
  background: #10913e;
  color: #f2f2f2;
}

.hero .btn-gold {
  border-color: #d5b467;
  background: #d5b467;
  color: #333;
}

.hero .slide-info-btn:hover {
  transform: scale(1.1);
}

.hero .swiper-slide {
  position: relative;
}

.hero .swiper-button-prev:after,
.hero .swiper-button-next:after {
  color: #fff;
}

.hero .slider-info {
  position: absolute;
  top: 50px;
  max-width: 700px;
}

.hero .slider-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero .slider-title span {
  color: #e5ff4f;
}

.hero .slider-text {
  color: #fff;
  font-size: 24px;
  margin-bottom: 50px;
}

.hero .swiper-pagination {
  margin-bottom: 20px;
}

.hero .swiper-pagination-bullet {
  background-color: transparent;
  border: 3px solid #fff;
  width: 24px;
  height: 24px;
  opacity: 1;
}

.hero .swiper-pagination-bullet-active {
  background-color: #fff;
}

.header-lang li {
  list-style: none;
  margin: 3px 0;
}

.header-lang li img {
  width: 24px !important;
  height: 16px !important;
}

.videos {
  padding: 70px 0;
}

.wp-block-columns {
  align-items: stretch; /* вирівнює колонки по висоті */
}

.wp-block-column img {
  height: 100%;
  object-fit: cover; /* або contain, залежно від бажаного ефекту */
  width: 100%;
}

.wp-has-aspect-ratio iframe {
  aspect-ratio: 16 / 9;
  height: auto;
  width: 100%;
}
