/*!
Theme Name: bo
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bo
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

bo is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

/* ================================
   BO Charity — Global CSS
   ================================ */

:root {
  --bo-blue: #1F61AE;
  --bo-blue-light: #1897D4;
  --bo-bg-light: #F3FAFD;

  --bo-heading: #404040;
  --bo-text: #8D8D8D;
  --bo-white: #FFFFFF;

  --bo-border: rgba(31, 97, 174, 0.16);
  --bo-shadow: 0 16px 40px rgba(31, 97, 174, 0.12);

  --bo-orange: #DFA35F;
  --bo-orange-dark: #C88943;

  --bo-radius-sm: 10px;
  --bo-radius-md: 20px;
  --bo-radius-lg: 32px;

  --bo-container: 1840px;
  --bo-container-padding: 20px;

  --bo-transition: 0.25s ease;
}


/* ================================
   Reset / Base
   ================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--bo-text);
  background: var(--bo-white);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img,
svg,
video,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--bo-transition), background-color var(--bo-transition), border-color var(--bo-transition);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

p:not(:last-child) {
  margin-bottom: 16px;
}

strong,
b {
  color: var(--bo-heading);
}


/* ================================
   Layout
   ================================ */

.bo-container,
.container {
  width: 100%;
  max-width: calc(var(--bo-container) + var(--bo-container-padding) * 2);
  margin: 0 auto;
  padding-left: var(--bo-container-padding);
  padding-right: var(--bo-container-padding);
}

.bo-section {
  position: relative;
  padding: 90px 0;
}

.bo-section--light {
  background: var(--bo-bg-light);
}

.bo-section--blue {
  background: var(--bo-blue);
  color: var(--bo-white);
}

.bo-section__head {
  max-width: 760px;
  margin-bottom: 48px;
}

.bo-section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.bo-grid {
  display: grid;
  gap: 24px;
}

.bo-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bo-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bo-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* ================================
   Typography
   ================================ */

.bo-suptitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--bo-blue-light);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
}

.bo-suptitle::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
  border-radius: 20px;
}

.bo-title,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--bo-heading);
  line-height: 1.15;
  margin: 0;
}

.bo-title--xl,
h1 {
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.bo-title--lg,
h2 {
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.bo-title--md,
h3 {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bo-title--sm,
h4 {
  font-size: 22px;
  font-weight: 700;
}

.bo-text {
  color: var(--bo-text);
  font-size: 18px;
  line-height: 1.65;
}

.bo-text--large {
  font-size: clamp(18px, 1.7vw, 22px);
}

.bo-text--white {
  color: rgba(255, 255, 255, 0.82);
}

.bo-section--blue .bo-title,
.bo-section--blue h1,
.bo-section--blue h2,
.bo-section--blue h3,
.bo-section--blue h4,
.bo-section--blue h5,
.bo-section--blue h6 {
  color: var(--bo-white);
}


/* ================================
   Buttons
   ================================ */

.bo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 56px;
  padding: 15px 28px;

  border-radius: 999px;
  border: 1px solid transparent;

  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;

  transition:
    background-color var(--bo-transition),
    color var(--bo-transition),
    border-color var(--bo-transition),
    box-shadow var(--bo-transition),
    transform var(--bo-transition);
}

.bo-btn:hover {
  transform: translateY(-2px);
}

.bo-btn:active {
  transform: translateY(0);
}

.bo-btn svg,
.bo-btn img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

/* Primary — “Допомогти зараз” */
.bo-btn--primary {
  background: var(--bo-blue-light);
  color: var(--bo-white);
  border-color: var(--bo-blue-light);
  box-shadow: 0 12px 28px rgba(24, 151, 212, 0.28);
}

.bo-btn--primary:hover {
  background: var(--bo-blue);
  border-color: var(--bo-blue);
  color: var(--bo-white);
  box-shadow: 0 14px 34px rgba(31, 97, 174, 0.32);
}

/* Light CTA — “Підтримати дітей” */
.bo-btn--light {
  background: var(--bo-bg-light);
  color: var(--bo-blue);
  border-color: var(--bo-bg-light);
}

.bo-btn--light:hover {
  background: var(--bo-blue-light);
  color: var(--bo-white);
  border-color: var(--bo-blue-light);
}

/* Secondary — “Про організацію” */
.bo-btn--outline {
  background: transparent;
  color: var(--bo-heading);
  border-color: rgba(64, 64, 64, 0.28);
}

.bo-btn--outline:hover {
  color: var(--bo-orange-dark);
  border-color: var(--bo-orange);
  background: rgba(223, 163, 95, 0.08);
}

.bo-btn--white-outline {
  background: transparent;
  color: var(--bo-white);
  border-color: rgba(255, 255, 255, 0.45);
}

.bo-btn--white-outline:hover {
  background: var(--bo-white);
  color: var(--bo-blue);
  border-color: var(--bo-white);
}

.bo-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}


/* ================================
   Cards
   ================================ */

.bo-card {
  position: relative;
  background: var(--bo-white);
  border: 1px solid var(--bo-border);
  border-radius: var(--bo-radius-lg);
  box-shadow: var(--bo-shadow);
  overflow: hidden;
}

.bo-card__content {
  padding: 28px;
}

.bo-card__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--bo-radius-lg);
}

.bo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ================================
   Forms / CF7 Base
   ================================ */

.bo-form {
  display: grid;
  gap: 16px;
}

.bo-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bo-form input:not([type="submit"]),
.bo-form textarea,
.bo-form select,
.wpcf7 input:not([type="submit"]),
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  min-height: 56px;
  padding: 15px 18px;

  color: var(--bo-heading);
  background: var(--bo-white);

  border: 1px solid var(--bo-border);
  border-radius: var(--bo-radius-sm);
  outline: none;

  transition: border-color var(--bo-transition), box-shadow var(--bo-transition);
}

.bo-form textarea,
.wpcf7 textarea {
  min-height: 140px;
  resize: vertical;
}

.bo-form input:focus,
.bo-form textarea:focus,
.bo-form select:focus,
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: var(--bo-blue-light);
  box-shadow: 0 0 0 4px rgba(24, 151, 212, 0.12);
}

.bo-form input::placeholder,
.bo-form textarea::placeholder,
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: rgba(141, 141, 141, 0.75);
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #D74B4B;
  font-size: 14px;
}

.wpcf7 form .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 14px 18px;
  border-radius: var(--bo-radius-sm);
  border-color: var(--bo-blue-light);
  color: var(--bo-heading);
}


/* ================================
   Helpers
   ================================ */

.bo-hidden {
  display: none !important;
}

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

.bo-mt-0 {
  margin-top: 0 !important;
}

.bo-mb-0 {
  margin-bottom: 0 !important;
}

.bo-decor {
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.bo-relative {
  position: relative;
  z-index: 1;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


/* ================================
   WordPress Content
   ================================ */

.bo-content {
  color: var(--bo-text);
  font-size: 18px;
  line-height: 1.7;
}

.bo-content h1,
.bo-content h2,
.bo-content h3,
.bo-content h4,
.bo-content h5,
.bo-content h6 {
  margin-bottom: 18px;
}

.bo-content p,
.bo-content ul,
.bo-content ol {
  margin-bottom: 18px;
}

.bo-content ul,
.bo-content ol {
  padding-left: 22px;
}

.bo-content li:not(:last-child) {
  margin-bottom: 8px;
}

.bo-content a {
  color: var(--bo-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bo-content a:hover {
  color: var(--bo-blue-light);
}


/* ================================
   Responsive
   ================================ */

@media (max-width: 1199px) {
  :root {
    --bo-container-padding: 18px;
  }

  .bo-section {
    padding: 72px 0;
  }

  .bo-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .bo-grid--2,
  .bo-grid--3 {
    grid-template-columns: 1fr;
  }

  .bo-section__head {
    margin-bottom: 36px;
  }

  .bo-text {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  :root {
    --bo-container-padding: 16px;
  }

  .bo-section {
    padding: 56px 0;
  }

  .bo-title--xl,
  h1 {
    font-size: clamp(38px, 13vw, 54px);
  }

  .bo-title--lg,
  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .bo-btns {
    align-items: stretch;
  }

  .bo-btn {
    width: 100%;
    min-height: 54px;
    padding: 14px 22px;
  }

  .bo-form-row {
    grid-template-columns: 1fr;
  }

  .bo-card__content {
    padding: 22px;
  }
}

@media (max-width: 575px) {
  .bo-grid--4 {
    grid-template-columns: 1fr;
  }

  .bo-section {
    padding: 48px 0;
  }

  .bo-suptitle {
    font-size: 15px;
  }

  .bo-text,
  .bo-content {
    font-size: 16px;
  }
}





/* ================================
   Header
   ================================ */

.bo-header {
  position: relative;
  z-index: 50;
  padding: 24px 0;
}

.bo-header__desktop {
  background: var(--bo-white);

  overflow: hidden;
}

.bo-header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
	    padding-top: 0;
}
.bo-header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 250px;
}

.bo-header__logo img {
  width: auto;
  max-height: 56px;
}

.bo-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
}

.bo-header__socials {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bo-header__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}

.bo-header__social:hover {
  opacity: 0.8;
}

.bo-header__social img,
.bo-header__social svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bo-header__lang {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 24px;
    color: var(--bo-white);
    background: var(--bo-blue);
    border-radius: 8px;
    background: #1F61AE;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
	    width: 130px;
    line-height: 24px;
}

.bo-header__lang-icon {
  display: inline-flex;
  color: currentColor;
}

.bo-header__lang select {
    min-height: auto;
    color: var(--bo-white);
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
    appearance: none;
    padding-right: 18px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.bo-header__lang::after {
    content: "";
    position: relative;
    right: 0;
    top: 35%;
    width: 16px;
    height: 16px;
    background-image: url(/wp-content/uploads/2026/04/lsicon_down-outline.svg);
    position: absolute;
    right: 22px;
}
.bo-header__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 5px 14px;
    color: var(--bo-blue);
    line-height: 1;
    white-space: nowrap;
    background: #F3FAFD;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    border-radius: 8px;
    background: #F3FAFD;
}

.bo-header__phone:hover {
  color: var(--bo-white);
  background: var(--bo-blue-light);
}

.bo-header__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
	    padding-top: 6px;
}

.bo-header__nav {
  min-width: 0;
}

.bo-header__menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 12px;
  list-style: none;
}

.bo-header__menu li {
  position: relative;
}
.bo-header__menu a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    color: var(--bo-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    border-radius: 8px;
    background: #F3FAFD;
    padding: 0px 20px;
}
.bo-header__menu a:hover,
.bo-header__menu .current-menu-item > a,
.bo-header__menu .current-menu-ancestor > a {
  color: var(--bo-blue-light);
}

.bo-header__menu .menu-item-has-children > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.bo-header__menu .sub-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 20;
  min-width: 210px;
  padding: 10px;
  list-style: none;
  background: var(--bo-white);
  border: 1px solid var(--bo-border);
  border-radius: 14px;
  box-shadow: var(--bo-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--bo-transition), visibility var(--bo-transition), transform var(--bo-transition);
}

.bo-header__menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bo-header__menu .sub-menu a {
  width: 100%;
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 8px;
}

.bo-header__menu .sub-menu a:hover {
  background: var(--bo-bg-light);
}
.bo-header__donate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 40px;
    padding: 8px 20px;
    color: var(--bo-white);
    background: var(--bo-blue-light);
    border-radius: 8px;
    white-space: nowrap;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.bo-header__donate:hover {
  color: var(--bo-white);
  background: var(--bo-blue);
}

.bo-header__donate-icon {
  display: inline-flex;
  flex: 0 0 auto;
}


/* Mobile header */

.bo-header__mobile {
  display: none;
}

.bo-mobile-menu {
  display: none;
}


/* ================================
   Header Responsive
   ================================ */

@media (max-width: 1199px) {
  .bo-header__menu {
    gap: 4px 22px;
  }

  .bo-header__menu a,
  .bo-header__donate,
  .bo-header__phone {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .bo-header {
    padding: 12px 0;
  }

  .bo-header__desktop {
    display: none;
  }

  .bo-header__mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    background: var(--bo-white);
border-radius: 0 0 15px 15px;

  }

  .bo-header-mobile__phone,
  .bo-header-mobile__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    flex: 0 0 88px;
    color: var(--bo-white);
    background: var(--bo-blue);
    border: 0;
    border-radius: 18px;
  }


  .bo-header-mobile__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    flex: 1 1 auto;
  }

  .bo-header-mobile__logo img {
    width: auto;
    max-height: 64px;
    object-fit: contain;
  }

  .bo-header-mobile__burger {
    flex-direction: column;
    gap: 8px;
  }

  .bo-header-mobile__burger span {
    width: 38px;
    height: 4px;
    background: currentColor;
    border-radius: 999px;
    transition: transform var(--bo-transition), opacity var(--bo-transition);
  }

  .bo-header.is-open .bo-header-mobile__burger span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }

  .bo-header.is-open .bo-header-mobile__burger span:nth-child(2) {
    opacity: 0;
  }

  .bo-header.is-open .bo-header-mobile__burger span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }

  .bo-mobile-menu {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 2px);
    z-index: 45;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--bo-transition), visibility var(--bo-transition), transform var(--bo-transition);
  }

  .bo-header.is-open .bo-mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .bo-mobile-menu__inner {
    padding: 22px;
    background: var(--bo-white);
 border-radius: 0 0 15px 15px;
    box-shadow: var(--bo-shadow);
  }

  .bo-mobile-menu__list {
    display: grid;
    gap: 4px;
    list-style: none;
    margin-bottom: 18px;
  }

  .bo-mobile-menu__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 10px 0;
    color: var(--bo-heading);
    border-bottom: 1px solid rgba(31, 97, 174, 0.1);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
  }

  .bo-mobile-menu__list a:hover,
  .bo-mobile-menu__list .current-menu-item > a {
    color: var(--bo-blue-light);
  }

  .bo-mobile-menu__list .sub-menu {
    display: grid;
    gap: 4px;
    padding: 6px 0 10px 16px;
    list-style: none;
  }

  .bo-mobile-menu__list .sub-menu a {
    min-height: 36px;
    font-size: 15px;
    font-weight: 500;
    color: var(--bo-text);
  }

  .bo-mobile-menu__donate {
    width: 100%;
    margin-bottom: 16px;
  }

  .bo-mobile-menu__phone {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--bo-blue);
    font-size: 18px;
    font-weight: 700;
  }

  .bo-mobile-menu__socials {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .bo-mobile-menu__socials .bo-header__social {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 992px) {


  .bo-header-mobile__phone,
  .bo-header-mobile__burger {
    width: 48px;
    height: 40px;
    flex-basis: 48px;
    border-radius: 8px;
  }

  .bo-header-mobile__logo img {
    max-height: 32px;
  }

  .bo-header-mobile__burger span {
    width: 32px;
    height: 4px;
  }
}



/* Сам select Polylang розтягуємо на всю кнопку */
.bo-header__lang select {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  border: 0;
  cursor: pointer;
  appearance: none;
}


/* ================================
   Header Language Dropdown
   ================================ */

.bo-header-lang {
  position: relative;
  z-index: 30;
  flex: 0 0 auto;
}

.bo-header-lang__current {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 24px;
    color: var(--bo-white);
    background: var(--bo-blue);
    border: 0;
    /* border-radius: 999px; */
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--bo-transition);
    border-radius: 8px;
    /* background: #1F61AE; */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.bo-header-lang__current:hover,
.bo-header-lang.is-open .bo-header-lang__current {
  background: var(--bo-blue-light);
}

.bo-header-lang__icon {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
}

.bo-header-lang__name {
  white-space: nowrap;
}

.bo-header-lang .bo-header-lang__arrow {
    transform: translateY(6px) rotate(0deg);
}

.bo-header-lang.is-open .bo-header-lang__arrow {
    transform: translateY(-2px) rotate(180deg);
}
.bo-header-lang__dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 5px);
    min-width: 130px;
    padding: 0;
    list-style: none;
    border-radius: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--bo-transition), visibility var(--bo-transition), transform var(--bo-transition);
    height: 40px;
    text-align: center;
}

.bo-header-lang.is-open .bo-header-lang__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bo-header-lang__link {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 24px;
    color: var(--bo-heading);
    border-radius: 8px;
    line-height: 1.2;
    font-weight: 500;
    white-space: nowrap;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    justify-content: center;
}

.bo-header-lang__link:hover {
  color: var(--bo-blue);
  background: var(--bo-bg-light);
}

.bo-header-lang__item.is-current .bo-header-lang__link {
  color: var(--bo-white);
  background: var(--bo-blue);
  pointer-events: none;
}

.bo-header__desktop {
    padding: 24px 40px;
    border-radius: 0 0 30px 30px;
}
.bo-header .bo-container {
    padding: 0;
}
.bo-header__desktop {
    padding: 24px 40px;
    border-radius: 0 0 30px 30px;
}
.bo-header {
    padding: 0;
    background-color: #1F61AE;
}
@media (max-width: 991px) {
.bo-header-mobile__burger {

        background-image: url(/wp-content/uploads/2026/04/eva_menu-2-outline.svg);
        background-repeat: no-repeat;
        background-position: center;
    }
    .bo-header-mobile__burger span {
        width: 0;
        height: 0;
    }
    .bo-header.is-open .bo-header-mobile__burger span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
        width: 18px;
        height: 2px;
    }
.bo-header.is-open .bo-header-mobile__burger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        width: 18px;
        height: 2px;
    }
.bo-header.is-open .bo-header-mobile__burger {
        background-image: none;
    }
}

@media (max-width: 992px) {
    .bo-header__menu a, .bo-header__donate, .bo-header__phone {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
    }
    .bo-mobile-menu__phone {
        display: inline-flex;
        margin-bottom: 16px;
        color: var(--bo-blue);
        font-size: 18px;
        font-weight: 700;
        margin-top: 10px;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
  .bo-header__donate {
        width: 100%;
    }
    .bo-mobile-menu__socials {
        display: flex;
        align-items: center;
        gap: 4px;
        justify-content: center;
    }
    .bo-mobile-menu__socials .bo-header__social {
        width: 40px;
        height: 40px;
    }
.bo-header-lang {
    justify-content: center;
    display: flex;
    margin-top: 20px;
}
.bo-header-lang {
    position: relative;
    z-index: 30;
    flex: 0 0 auto;
    justify-content: end;
    display: flex;
    margin-top: 20px;
}
}