/*!
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: 40px;

  --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: 20px;
  padding-right:  20px;
}

.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;

}

.bo-title--lg,
h2 {
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 700;

}

.bo-title--md,
h3 {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 700;

}

.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 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: #fff;
  border-color: #fff;
  color: #1897D4 !important;
}

/* 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);
      background: rgba(31, 97, 174, 0.25);
}

.bo-btn--white-outline:hover {
    background: transparent;
    border-color: #FFE1BF;
    color: var(--bo-blue);
    color: #FFE1BF !important;
}

.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: 1025px) {
  .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: visible;
}

.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;
        min-width: 206px;
}

.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: 1025px) {
  .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: left;
    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: #1F61AE;
  }

  .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: 40px;
  }

  .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: 100;
  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(2px) 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);
    z-index: 1000;
    min-width: 130px;
    padding: 0;
    list-style: none;
    border-radius: 14px;
    background: var(--bo-white);
    box-shadow: var(--bo-shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity var(--bo-transition), visibility var(--bo-transition), transform var(--bo-transition);
    height: auto;
    text-align: center;
}

.bo-header-lang.is-open .bo-header-lang__dropdown,
.bo-header-lang:focus-within .bo-header-lang__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  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: 1025px) {
.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;
}
}





/* ================================
   Hero
   ================================ */

.bo-hero {
    position: relative;
    overflow: hidden;
    padding: 55px 0 40px;
    color: var(--bo-white);
    background: var(--bo-blue);
}



.bo-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 795px 1fr;
    gap: 54px;
    align-items: start;
    background-image: url(/wp-content/uploads/2026/04/graphic.png);
    background-repeat: no-repeat;
    background-position: bottom left;
}

.bo-hero__text strong {
    font-weight: 600;
    color: #fff;
}

.bo-hero__content {
  min-width: 0;
  padding-top: 4px;
}

.bo-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    margin-bottom: 24px;
    padding: 10px 28px;
    border-radius: 999px;
    text-transform: uppercase;
    color: #1897D4;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    border-radius: 30px;
    background: #F3FAFD;
}

.bo-hero__badge-icon {
  display: inline-flex;
  color: currentColor;
}
.bo-hero__title {
    display: grid;
    gap: 28px;
    margin: 0 0 24px;
    color: #F3FAFD;
    font-size: 90.142px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
}
.bo-hero__title-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.bo-hero__title-row--second {
  justify-content: flex-start;
}

.bo-hero__title-accent {
  color: #FFE1BF;
}

.bo-hero__avatars {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.bo-hero__avatar {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-left: -10px;
  border: 2px solid var(--bo-white);
  border-radius: 50%;
  overflow: hidden;
  background: var(--bo-white);
}

.bo-hero__avatar:first-child {
  margin-left: 0;
}

.bo-hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bo-hero__avatars--bottom .bo-hero__avatar {
  width: 40px;
  height: 40px;
  margin-left: -9px;
}

.bo-hero__text {
    margin-bottom: 40px;
    color: #F3FAFD;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.bo-hero__text p {
  margin: 0;
}

.bo-hero__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bo-hero__buttons .bo-btn {
    min-width: 243px;
    min-height: 48px;
    padding: 7px 32px;
    color: #1F61AE;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 180%;
    border-radius: 8px;
}
.bo-btn--white-outline {
    background: transparent;
    color: var(--bo-white);
    border-color: rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    border: 3px solid #F3FAFD;
    backdrop-filter: blur(5px);
    color: #fff !important;
}
.bo-btn.bo-btn--light {
      width: 297px;
}

.bo-hero__media {
  display: grid;
  gap: 17px;
}

.bo-hero__video {
  position: relative;
  display: block;
  height: auto;
  overflow: hidden;
  border-radius: 16px;
  background: transparent;
}

.bo-hero__video img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bo-hero__play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    /* color: var(--bo-white); */
    /* background: rgba(24, 151, 212, 0.78); */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(5px);
    box-shadow: 0 18px 40px rgba(31, 97, 174, 0.28);
    transition: background-color var(--bo-transition), transform var(--bo-transition);
    border-radius: 141377.891px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(2.8275861740112305px);
}
.bo-hero__video:hover .bo-hero__play {

  transform: translate(-50%, -50%) scale(1.06);
}

.bo-hero__media-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.95fr);
  gap: 17px;
}

.bo-hero__play img {
    width: 22px;
    height: 22px;
        transition: background-color var(--bo-transition), transform var(--bo-transition);
}



.bo-hero__quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
  padding: 32px;
  color: var(--bo-text);
  background: var(--bo-white);
  border-radius: 22px;
      gap: 56px;
}

.bo-hero__quote-text {
    margin-bottom: 0;
    color: #8D8D8D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.bo-hero__quote-text p {
  margin: 0;
}

.bo-hero__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bo-hero__author-photo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--bo-bg-light);
}

.bo-hero__author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bo-hero__author-name {
  color: var(--bo-heading);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
}

.bo-hero__author-position {
  margin-top: 4px;
  color: var(--bo-text);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 500;
}

.bo-hero__small-image {
  min-height: 170px;
  overflow: hidden;
  border-radius: 22px;
    background: transparent;
}

.bo-hero__small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ================================
   Hero Responsive
   ================================ */

@media (max-width: 1199px) {
  .bo-hero__inner {
    gap: 30px;
  }

  .bo-hero__title {
    font-size: clamp(48px, 5.8vw, 74px);
  }

  .bo-hero__avatar {
    width: 36px;
    height: 36px;
  }

  .bo-hero__avatars--bottom .bo-hero__avatar {
    width: 34px;
    height: 34px;
  }

  .bo-hero__video {
    height: 300px;
  }
}

@media (max-width: 1025px) {
  .bo-hero {
    padding: 22px 0 48px;
  }

  .bo-hero::before,
  .bo-hero::after {
    display: none;
  }

  .bo-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bo-hero__content {
    padding-top: 0;
  }



  .bo-hero__title {
    gap: 4px;
    margin-bottom: 18px;
    font-size: clamp(42px, 13vw, 72px);
  }

  .bo-hero__title-row {
    gap: 10px;
  }

  .bo-hero__title-row--second {
    align-items: center;
  }

  .bo-hero__text {
    max-width: none;
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.35;
  }

  .bo-hero__buttons {
    display: none;
  }

  .bo-hero__media {
    gap: 12px;
  }

  .bo-hero__video {
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }

  .bo-hero__media-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bo-hero__quote {
    min-height: auto;
    padding: 24px;
    border-radius: 14px;
  }

  .bo-hero__small-image {
    min-height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }
}

@media (max-width: 575px) {
  .bo-hero {
    padding: 20px 0 40px;
  }

  .bo-hero__badge {
    max-width: none;
    margin-bottom: 24px;
  }

  .bo-hero__title {
    font-size: clamp(38px, 14vw, 58px);
  
  }

  .bo-hero__title-row {
    flex-wrap: wrap;
  }

  .bo-hero__title-row--second {
    flex-wrap: nowrap;
  }

  .bo-hero__avatar {
    width: 30px;
    height: 30px;
    margin-left: -7px;
    border-width: 1.5px;
  }

  .bo-hero__avatars--bottom .bo-hero__avatar {
    width: 28px;
    height: 28px;
    margin-left: -6px;
  }

  .bo-hero__text {
    font-size: 16px;
  }

  .bo-hero__play {
    width: 70px;
    height: 70px;
  }

  .bo-hero__quote {
    padding: 24px 22px;
  }

  .bo-hero__quote-text {
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .bo-hero__title {
    font-size: 39px;
  }

  .bo-hero__title-row {
    gap: 7px;
  }

  .bo-hero__avatar {
    width: 27px;
    height: 27px;
  }

  .bo-hero__avatars--bottom .bo-hero__avatar {
    width: 25px;
    height: 25px;
  }
}


/* ================================
   Video Popup
   ================================ */

.bo-hero__video {
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.bo-video-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--bo-transition), visibility var(--bo-transition);
}

.bo-video-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.bo-video-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.bo-video-popup__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  background: #000;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  transform: translateY(20px) scale(0.96);
  transition: transform var(--bo-transition);
}

.bo-video-popup.is-open .bo-video-popup__dialog {
  transform: translateY(0) scale(1);
}

.bo-video-popup__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
}

.bo-video-popup__frame iframe,
.bo-video-popup__frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bo-video-popup__close {
  position: absolute;
  right: -16px;
  top: -16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--bo-white);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.bo-video-popup__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--bo-heading);
  border-radius: 999px;
}

.bo-video-popup__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.bo-video-popup__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.bo-video-popup__close:hover {
  background: var(--bo-blue-light);
}

.bo-video-popup__close:hover span {
  background: var(--bo-white);
}

@media (max-width: 767px) {
  .bo-video-popup {
    padding: 16px;
  }

  .bo-video-popup__dialog {
    border-radius: 14px;
  }

  .bo-video-popup__frame {
    border-radius: 14px;
  }

  .bo-video-popup__close {
    right: 8px;
    top: -54px;
  }
}


/* ================================
   About Section
   ================================ */

.bo-about {
  position: relative;
  overflow: hidden;
  padding: 40px 0 40px;
  color: var(--bo-white);
  background: var(--bo-blue);
}
.bo-about__head {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 63px;
    align-items: end;
    margin-bottom: 44px;
}

.bo-about__title {
    max-width: 620px;
    color: var(--bo-white);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
}
.bo-about__head-right {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 187px;
  gap: 42px;
  align-items: center;
}

.bo-about__intro {
    max-width: 744px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; 
}

.bo-about__intro p {
  margin: 0;
}

.bo-about__decor {

  justify-self: end;
}

.bo-about__decor img {
  width: 100%;
  height: auto;
}

.bo-about__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.bo-about-card {
  min-height: 164px;
  padding: 32px;
  color: var(--bo-text);
  background: var(--bo-white);
  border-radius: 15px;
  overflow: hidden;
}

.bo-about-card--main {
  grid-column: span 6;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bo-about-card--stat-large {
  grid-column: span 6;
  min-height: 190px;
}

.bo-about-card--stat-small {
  grid-column: span 4;
}

.bo-about-card--visual {
  grid-column: span 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.bo-about-card--quote {
  grid-column: span 6;
  min-height: 184px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bo-about-card__icon {
  width: 70px;
  margin-bottom: 32px;
}

.bo-about-card__icon img {
  width: 100%;
  height: auto;
}

.bo-about-card__number {
  margin-bottom: 8px;
  color: var(--bo-blue);
font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: 40px;
  
}

.bo-about-card__label {
    margin-bottom: 56px;
    color: #A8A8A8;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 180%;
}
.bo-about-card__text {
    color: #8D8D8D;
    font-family: Geologica;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.bo-about-card__text p {
  margin: 0;
}

.bo-about-card__text p:not(:last-child) {
  margin-bottom: 12px;
}

.bo-about-card--visual img {

  object-fit: contain;
}

.bo-about-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.bo-about-author__photo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--bo-bg-light);
}

.bo-about-author__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bo-about-author__name {
  color: var(--bo-heading);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.bo-about-author__position {
    margin-top: 8px;
    color: #8D8D8D;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

/* ================================
   About Responsive
   ================================ */

@media (max-width: 1199px) {
  .bo-about__head {
    gap: 30px;
  }

  .bo-about__head-right {
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 24px;
  }

  .bo-about__intro {
    font-size: 18px;
  }

  .bo-about-card {
    padding: 24px;
  }
}

@media (max-width: 1025px) {
  .bo-about {
    padding: 36px 0 48px;
  }

  .bo-about__head {
    position: relative;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 18px;
  }

  .bo-about__title {
    max-width: calc(100% - 70px);
    font-size: clamp(24px, 8vw, 36px);
    line-height: 1.1;
  }

  .bo-about__head-right {
    display: block;
  }

  .bo-about__intro {
    max-width: none;
    font-size: 16px;
    line-height: 1.35;
  }

  .bo-about__decor {
    position: absolute;
    right: 0;
    top: 56px;
    width: 54px;
  }

  .bo-about__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bo-about-card,
  .bo-about-card--main,
  .bo-about-card--stat-large,
  .bo-about-card--stat-small,
  .bo-about-card--visual,
  .bo-about-card--quote {
    grid-column: auto;
    min-height: auto;
  }

  .bo-about-card {
    padding: 22px 20px;
    border-radius: 8px;
  }

  .bo-about-card--main {
    min-height: 230px;
  }

  .bo-about-card--visual {
    min-height: 128px;
  }

  .bo-about-card__icon {
    width: 48px;
    margin-bottom: 28px;
  }

  .bo-about-card__number {
    font-size: 26px;
  }

  .bo-about-card__label {
    margin-bottom: 30px;
    font-size: 12px;
  }

  .bo-about-card__text {
    font-size: 13px;
    line-height: 1.45;
  }

  .bo-about-card--visual img {

  }

  .bo-about-author {
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .bo-about {
    padding: 28px 0 40px;
  }

  .bo-about__head {
    margin-bottom: 12px;
  }

  .bo-about__title {
    font-size: 22px;
  }

  .bo-about__intro {
    font-size: 14px;
  }

  .bo-about__decor {
    top: 52px;
    width: 46px;
  }

  .bo-about-card {
    padding: 20px 18px;
  }

  .bo-about-card--main {
    min-height: 246px;
  }

  .bo-about-card__number {
    font-size: 24px;
  }

  .bo-about-card__label {
    margin-bottom: 26px;
  }
}



/* ================================
   Projects Section
   ================================ */

.bo-projects {
  position: relative;
  overflow: hidden;
  padding: 40px 0 40px;
  background: linear-gradient(180deg, #1F61AE 0%, #F3FAFD 100%);
}

.bo-projects__head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.bo-projects__title {
  max-width: 610px;
  color: var(--bo-white);
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.05;
  font-weight: 800;

}

.bo-projects__head-right {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 34px;
  align-items: end;
}

.bo-projects__text {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
}

.bo-projects__text p {
  margin: 0;
}

.bo-projects__decor {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}



.bo-projects__decor-star {
  width: 72px;
}

.bo-projects__body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.bo-projects__list {
  display: contents;
}

.bo-project-card {
  overflow: hidden;
  border-radius: 15px;
}

.bo-project-card__image {
  position: relative;
  display: block;
    height: 288px;
  overflow: hidden;

      border-radius: 15px;
}

.bo-project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--bo-transition);
    border-radius: 15px;
    background: transparent;
}
.bo-project-card:hover .bo-project-card__image img {
  transform: scale(1);
}
.bo-project-card__label {
    position: absolute;
    right: 24px;
    top: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 16px;
    background: var(--bo-white);
    border-radius: 999px;
    color: #404040;
    text-align: center;
    font-family: Geologica;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.bo-project-card__content {
    min-height: 168px;
    padding: 32px 24px;
    background: #F3FAFD;
    border-radius: 15px;
    margin-top: 8px;
}

.bo-project-card__title {
    margin: 0 0 12px;
    color: #404040;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.bo-project-card:hover .bo-project-card__title a {
  color: var(--bo-blue);
}

.bo-project-card__text {
    color: #8D8D8D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.bo-projects-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    padding: 32px;
    border-radius: 15px 15px 120px 15px;
    background: #F3FAFD;
}
.bo-projects-cta__image {
  max-height: 240px;
  object-fit: contain;
  margin-bottom: 40px;
}

.bo-projects-cta__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #1F61AE;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
}

.bo-projects-cta__link:hover {
  color: var(--bo-blue-light);
}

.bo-projects__mobile-button {
  display: none;
}


/* ================================
   Projects Responsive
   ================================ */

@media (max-width: 1199px) {
  .bo-projects__head {
    gap: 30px;
  }

  .bo-projects__head-right {
    grid-template-columns: minmax(0, 1fr) 110px;
    gap: 24px;
  }

  .bo-projects__text {
    font-size: 18px;
  }

  .bo-project-card__image {
    height: 170px;
  }
}

@media (max-width: 1025px) {
  .bo-projects {
    padding: 34px 0 48px;
  }

  .bo-projects__head {
    position: relative;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 22px;
  }

  .bo-projects__title {
    max-width: calc(100% - 70px);
    font-size: clamp(24px, 8vw, 36px);
    line-height: 1.1;
  }

  .bo-projects__head-right {
    display: block;
  }

  .bo-projects__text {
    max-width: none;
    font-size: 16px;
    line-height: 1.35;
  }

  .bo-projects__decor {
    position: absolute;
    right: 0;
    top: 58px;
    gap: 10px;
  }

  .bo-projects__decor-heart {
 
  }

  .bo-projects__decor-star {
    width: 48px;
  }

  .bo-projects__list {
    display: block;
  }

  .bo-projects-cta {
    display: none;
  }

  .bo-project-card {
    border-radius: 10px;
  }

  .bo-project-card__image {
    height: auto;
    aspect-ratio: 1 / 1.05;
    border-radius: 10px 10px 0 0;
  }


  .bo-project-card__content {
    min-height: 120px;
    padding: 20px 22px;
    border-radius: 0 0 10px 10px;
  }

  .bo-project-card__title {
    font-size: 16px;
  }

  .bo-project-card__text {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .bo-projects__mobile-button {
    display: block;
    margin-top: 18px;
  }

  .bo-projects__mobile-button .bo-btn {
    width: 100%;
    border-radius: 6px;
  }

  .bo-projects .owl-stage {
    display: flex;
  }

  .bo-projects .owl-item {
    display: flex;
  }

  .bo-projects .owl-item .bo-project-card {
    width: 100%;
  }

  .bo-projects .owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
  }

  .bo-projects .owl-nav button.owl-prev,
  .bo-projects .owl-nav button.owl-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--bo-blue);
    background: var(--bo-white);
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(31, 97, 174, 0.12);
  }

  .bo-projects .owl-nav button.disabled {
    opacity: 0.45;
  }

  .bo-projects .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transform: translateX(-50%);
  }

  .bo-projects .owl-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border-radius: 50%;
    background: rgba(31, 97, 174, 0.18);
  }

  .bo-projects .owl-dot.active {
    background: var(--bo-blue);
  }
}

@media (max-width: 575px) {
  .bo-projects {
    padding: 28px 0 40px;
  }

  .bo-projects__head {
    gap: 14px;
  }

  .bo-projects__title {
    font-size: 22px;
  }

  .bo-projects__text {
    font-size: 14px;
  }

  .bo-projects__decor {
    top: 50px;
  }

  .bo-projects__decor-heart {

  }

  .bo-projects__decor-star {
    width: 44px;
  }

  .bo-project-card__content {
    padding: 18px 20px;
  }
}

.bo-projects .bo-hero__badge {
    margin-bottom: 64px;
}






@media (max-width: 1025px) {
  .bo-projects .owl-nav {
    position: relative;
    z-index: 5;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 18px;
    pointer-events: none;
  }

  .bo-projects .owl-nav.disabled {
    display: flex !important;
  }

  .bo-projects .owl-nav button.owl-prev,
  .bo-projects .owl-nav button.owl-next {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0 !important;
    color: var(--bo-blue) !important;
    background: var(--bo-white) !important;
    border: 0 !important;
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(31, 97, 174, 0.12);
    pointer-events: auto;
  }

  .bo-projects .owl-nav button.owl-prev:hover,
  .bo-projects .owl-nav button.owl-next:hover {
    color: var(--bo-white) !important;
    background: var(--bo-blue-light) !important;
  }

  .bo-projects .owl-nav button.disabled {
    opacity: 0.45;
  }

  .bo-projects .owl-nav .bo-owl-arrow {
    display: block;
    font-size: 34px;
    line-height: 1;
    font-weight: 500;
    transform: translateY(-2px);
  } 

  .bo-projects .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 31px;
    z-index: 6;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transform: translateX(-50%);
  }

  .bo-projects .owl-dots.disabled {
    display: flex !important;
  }

  .bo-projects .owl-dot {
    width: 7px;
    height: 7px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50%;
    background: rgba(31, 97, 174, 0.18) !important;
  }

  .bo-projects .owl-dot.active {
    background: var(--bo-blue) !important;
  }
}

@media (max-width: 1025px) {
  .bo-projects__body {
    display: block;
  }

  .bo-projects__list {
    display: block;
  }

  .bo-projects-cta {
    display: none;
  }
}



/* ================================
   Projects Owl Carousel 1.x
   ================================ */

@media (max-width: 1025px) {
  .bo-projects .js-projects-carousel {
    position: relative;
  }

  .bo-projects .owl-wrapper-outer {
    overflow: hidden;
  }

  .bo-projects .owl-wrapper {
    display: flex !important;
  }

  .bo-projects .owl-item {
    float: none !important;
    display: flex;
  }

  .bo-projects .owl-item .bo-project-card {
    width: 100%;
  }

  .bo-projects .owl-controls {
    position: relative;
    z-index: 5;
    margin-top: 18px;
  }

  .bo-projects .owl-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }





}




/* ================================
   Social Section
   ================================ */

.bo-social {
  position: relative;
  overflow: hidden;
  padding: 40px 0 40px;
background: #F3FAFD;
}

.bo-social__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 220px minmax(0, 0.8fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 44px;
}

.bo-social__title {
  max-width: 540px;
  margin-top: 14px;
  color: var(--bo-blue);
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.05;
  font-weight: 800;

}

.bo-social__text {
  max-width: 520px;
  margin-top: 18px;
  color: var(--bo-text);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
}

.bo-social__text p {
  margin: 0;
}

.bo-social__decor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.bo-social__decor-hand {
    width: 100%;
    max-height: 144px;
}
.bo-social__decor-star {
  width: 96px;
}

.bo-social__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 68px;
}

.bo-social__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bo-social__link {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: var(--bo-blue);
}

.bo-social__link img,
.bo-social__link svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bo-social__link:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}

.bo-social__fb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-width: 297px;
    min-height: 40px;
    padding: 12px 32px;
    color: var(--bo-white);
    background: var(--bo-blue);
    border-radius: 8px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 180%;
}

.bo-social__fb:hover {
  color: var(--bo-white);
  background: var(--bo-blue-light);
}

.bo-social__fb-icon {
  display: inline-flex;
  flex: 0 0 auto;
}

.bo-social__slider {
  position: relative;
}

.bo-social-card {
  width: 100%;
}

.bo-social-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 0.56 / 1;
  padding: 0;
  overflow: hidden;
  background: var(--bo-white);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.bo-social-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bo-social-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: #1897D4;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 12px 26px rgba(31, 97, 174, 0.18);
    transition: transform var(--bo-transition), background-color var(--bo-transition), color var(--bo-transition);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(2.8275861740112305px);
}

.bo-social-card__media:hover .bo-social-card__play {
    background: #fff;

}

.bo-social__mobile-fb {
  display: none;
}


/* Owl Carousel 1.x — Social */

.bo-social .owl-wrapper-outer {
  overflow: hidden;
}

.bo-social .owl-wrapper {
  display: flex !important;
}

.bo-social .owl-item {
  float: none !important;

  box-sizing: border-box;
}

.bo-social .owl-item .bo-social-card {
  height: 100%;
}

.bo-social .owl-controls {
  position: relative;
  z-index: 5;
  margin-top: 24px;
}

.owl-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.owl-buttons > div {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 48px;
    color: var(--bo-white) !important;
    background: var(--bo-blue-light) !important;
    border-radius: 50%;
    opacity: 1 !important;
    pointer-events: auto;
    cursor: pointer;
    border-radius: 100px;
}

.owl-buttons > div:hover {
  background: var(--bo-blue) !important;
}
 .bo-owl-arrow {
    display: block;
    font-size: 0;
    background-repeat: no-repeat;
    background-position: center;
    width: 12px;
    height: 24px;
}
 .owl-prev .bo-owl-arrow {
    background-image: url(/wp-content/uploads/2026/04/weui_arrow-outlined.svg);
}
.owl-next .bo-owl-arrow {
    background-image: url(/wp-content/uploads/2026/04/weui_arrow-outlined-1.svg);
}



 .owl-pagination {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translate(-50%, -50%);
}

 .owl-page {
    display: inline-flex;
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    background: #A8A8A8;
    cursor: pointer;
    opacity: 0.3;
}

 .owl-page span {
  display: none !important;
}

 .owl-page.active {
      opacity: 1;
  background: var(--bo-blue-light);
}


/* Social Responsive */

@media (max-width: 1025px) {
  .bo-social {
    padding: 32px 0 42px;
  }

  .bo-social__head {
    position: relative;
    display: block;
    margin-bottom: 26px;
  }

  .bo-social__content {
    max-width: none;
  }

  .bo-social .bo-hero__badge {
    width: 100%;
    justify-content: center;
    margin-bottom: 42px;
  }

  .bo-social__title {
    max-width: calc(100% - 70px);
    margin-top: 0;
    color: var(--bo-heading);
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.1;
  }

  .bo-social__text {
    max-width: 100%;
    margin-top: 28px;
    font-size: 22px;
    line-height: 1.25;
  }

  .bo-social__decor {
    position: absolute;
    right: 0;
    top: 86px;
    flex-direction: column;
    gap: 6px;
  }



  .bo-social__decor-star {
    width: 62px;
  }

  .bo-social__actions.full, .bo-header__socials.full {
    display: none;
  }
   .bo-social__actions.mobile,  .bo-header__socials.mobile  {
    display: block;
  }

  .bo-social .owl-wrapper-outer {
    overflow: visible;
  }


  .bo-social-card__media {
    aspect-ratio: 0.56 / 1;
    border-radius: 8px;
  }

  .bo-social-card__play {
    width: 74px;
    height: 74px;
  }

  .bo-social .owl-controls {
    margin-top: 42px;
  }



  .bo-social .owl-buttons > div:hover {
    color: var(--bo-white) !important;
    background: var(--bo-blue-light) !important;
  }

  .bo-social .bo-owl-arrow {

  }

  .bo-social .owl-page {
    width: 14px;
    height: 14px;
    background: rgba(141, 141, 141, 0.22);
  }

  .bo-social .owl-page.active {
    background: var(--bo-blue);
  }

  .bo-social__mobile-fb {
    display: block;
    margin-top: 40px;
  }

  .bo-social__mobile-fb .bo-social__fb {
    width: 100%;
    min-height: 84px;
    border-radius: 10px;
    font-size: 24px;
  }

  .bo-social__mobile-fb .bo-social__fb-icon {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 575px) {
  .bo-social {
    padding: 28px 0 36px;
  }

  .bo-social .bo-hero__badge {
    margin-bottom: 34px;
  }

  .bo-social__title {
    font-size: 30px;
  }

  .bo-social__text {
    font-size: 20px;
  }

  .bo-social__decor {
    top: 80px;
  }




  .bo-social .owl-page {
    width: 12px;
    height: 12px;
  }

  .bo-social__mobile-fb .bo-social__fb {
    min-height: 74px;
    font-size: 20px;
  }
}

.bo-social .bo-hero__badge {
    background: rgba(24, 151, 212, 0.05);
}

.bo-social-card__play img {
    width: 12px;
    height: 16px;
    object-fit: contain;
}

.bo-social-card__media img {
    border-radius: 8px;
}

.bo-social .bo-about__title {
    color: #1F61AE;
}
.bo-social .bo-about__intro {
    max-width: 564px;
    color: #8D8D8D;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 24px;
}


.bo-social .owl-item {
  padding-right: 0 !important;
  box-sizing: border-box;
}

.bo-social .owl-wrapper-outer {
  overflow: hidden;
}

.bo-social-card {
  width: 100%;
}





.owl-pagination {
  display: none !important;
}

 .bo-social-custom-dots {
  position: absolute;
  left: 50%;
  top: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  transform: translate(-50%, -50%);
}

.bo-social-custom-dot {
  display: inline-flex;
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(31, 97, 174, 0.16);
  cursor: pointer;
}

 .bo-social-custom-dot.active {
  background: var(--bo-blue-light);
}

@media (max-width: 1025px) {
.bo-social-custom-dot {
    width: 8px;
    height: 8px;
  opacity: 0.3;
  background: #A8A8A8;
  }

  .bo-social .bo-social-custom-dot.active {
    background: var(--bo-blue);
      opacity:1;
  }
}







/* ================================
   Social slider spacing fix
   ================================ */

.bo-social .owl-wrapper-outer {
  overflow: hidden;
}

.bo-social .owl-wrapper {
  display: flex !important;
  margin-left: -6px;
  margin-right: -6px;
}

.bo-social .owl-item {
  float: none !important;
  padding-left: 6px;
    padding-right: 6px !important;
  box-sizing: border-box;
}

.bo-social-card {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.bo-social-card__media {
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1025px) {
  .bo-social .owl-wrapper-outer {
    overflow: visible;
  }
}


/* ================================
   News Section
   ================================ */

.bo-news {
  position: relative;
  overflow: hidden;
  padding: 40px 0 40px;
  background: var(--bo-blue-light);
}

.bo-news__head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.bo-news__title {
  max-width: 540px;
  color: var(--bo-white);
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.05;
  font-weight: 800;

}

.bo-news__head-right {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 34px;
  align-items: center;
}

.bo-news__text {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
}

.bo-news__text p {
  margin: 0;
}

.bo-news__decor {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    align-items: end;
}

.bo-news__decor-hand {
  width: 77px;
}

.bo-news__decor-book {
  width: 192px;
}

.bo-news__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bo-news-card {
  overflow: hidden;
  border-radius: 8px;
}

.bo-news-card__image {
    position: relative;
    display: block;
    height: 600px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

.bo-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--bo-transition);
}

.bo-news-card:hover .bo-news-card__image img {
  transform: scale(1.04);
}

.bo-news-card__category {
  position: absolute;
  right: 16px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 16px;
  color: var(--bo-heading);
  background: var(--bo-white);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(31, 97, 174, 0.14);
}

.bo-news-card__content {
    min-height: 204px;
    padding: 32px 24px;
    background: var(--bo-white);
    border-radius: 15px;
        margin-top: 8px;
}

.bo-news-card__date {
    margin-bottom: 16px;
    color: #8D8D8D;
    font-family: Geologica;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.bo-news-card__title {
    margin: 0 0 16px;
    color: #404040;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.bo-news-card__title a:hover {
  color: var(--bo-blue);
}

.bo-news-card__more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #8D8D8D;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.bo-news-card__more span {
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
}

.bo-news-card__more:hover {
  color: var(--bo-blue);
}

.bo-news__button {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.bo-news__all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 138px;
    min-height: 48px;
    padding: 7px 30px;
    color: var(--bo-blue);
    background: var(--bo-white);
    color: #1897D4;
    text-align: center;
    font-family: Geologica;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 180%;
    border-radius: 8px;
    border: 3px solid #F3FAFD;
    background: #F3FAFD;
}

.bo-news__all:hover {
  color: var(--bo-white);
  background: var(--bo-blue);
}


/* ================================
   News Owl Carousel 1.x
   ================================ */

@media (max-width: 1025px) {
  .bo-news__list {
    display: block;
  }

  .bo-news .owl-wrapper-outer {
    overflow: hidden;
  }

  .bo-news .owl-wrapper {
    display: flex !important;
  }

  .bo-news .owl-item {
    float: none !important;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }

  .bo-news .owl-item .bo-news-card {
    width: 100%;
  }

  .bo-news .owl-controls {
    position: relative;
    z-index: 5;
    margin-top: 24px;
  }

 




  .bo-news .owl-pagination {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translate(-50%, -50%);
  }

  .bo-news .owl-page {
    display: inline-flex;
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
  }

  .bo-news .owl-page span {
    display: none !important;
  }

  .bo-news .owl-page.active {
    background: var(--bo-white);
  }
}


/* ================================
   News Responsive
   ================================ */

@media (max-width: 1199px) {
  .bo-news__head {
    gap: 30px;
  }

  .bo-news__head-right {
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 24px;
  }

  .bo-news__text {
    font-size: 18px;
  }

  .bo-news-card__image {
    height: 330px;
  }
}

@media (max-width: 1025px) {
  .bo-news {
    padding: 28px 0 42px;
  }

  .bo-news__head {
    position: relative;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 24px;
  }

  .bo-news .bo-hero__badge {
    width: 100%;
    justify-content: center;
    margin-bottom: 26px;
  }

  .bo-news__title {
    max-width: calc(100% - 78px);
    font-size: clamp(26px, 8vw, 38px);
    line-height: 1.08;
  }

  .bo-news__head-right {
    display: block;
  }

  .bo-news__text {
    max-width: none;
    font-size: 17px;
    line-height: 1.35;
  }

  .bo-news__decor {
    position: absolute;
    right: 0;
    top: 64px;
    gap: 8px;
  }

  .bo-news__decor-hand {
   
  }

  .bo-news__decor-book {

  }

  .bo-news-card {
    border-radius: 12px;
  }

  .bo-news-card__image {
    height: auto;
    aspect-ratio: 1 / 0.95;
    border-radius: 12px 12px 0 0;
  }

  .bo-news-card__category {
    right: 16px;
    top: 16px;
    min-height: 34px;
    padding: 8px 17px;
    font-size: 13px;
  }

  .bo-news-card__content {
    min-height: 150px;
    padding: 24px 22px;
    border-radius: 0 0 12px 12px;
  }

  .bo-news-card__date {
    margin-bottom: 20px;
  }

  .bo-news-card__title {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .bo-news__button {
    margin-top: 22px;
  }

  .bo-news__all {
    min-width: 128px;
    min-height: 54px;
    border-radius: 8px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .bo-news {
    padding: 24px 0 38px;
  }

  .bo-news__title {
    font-size: 23px;
  }

  .bo-news__text {
    font-size: 15px;
  }

  .bo-news__decor {
    top: 60px;
  }

  .bo-news-card__content {
    min-height: 134px;
  }


}

.bo-news .bo-hero__badge {

    margin-bottom: 42px;
}

.bo-news .bo-about__intro {
    max-width: 733px;
}

/* ================================
   Gallery Section
   ================================ */

.bo-gallery {
  position: relative;
  overflow: hidden;
  padding: 40px 0 40px;
  background: var(--bo-bg-light);
}

.bo-gallery__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.bo-gallery__title {
  max-width: 620px;
  color: var(--bo-blue);
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.05;
  font-weight: 800;

}

.bo-gallery__head-right {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px;
  gap: 34px;
  align-items: center;
}

.bo-gallery__text {
  max-width: 720px;
  color: var(--bo-blue-light);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
}

.bo-gallery__text p {
  margin: 0;
}

.bo-gallery__decor {
  width: 112px;
  justify-self: end;
}

.bo-gallery__decor img {
  width: 100%;
  height: auto;
}

.bo-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 220px 220px 220px;
  gap: 12px;
}

.bo-gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bo-white);
  border-radius: 15px;
}

.bo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--bo-transition);
      border-radius: 15px;
}

.bo-gallery__item:hover img {
  transform: scale(1.04);
}

.bo-gallery__item--large-left {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.bo-gallery__item--wide-top {
  grid-column: 5 / 9;
  grid-row: 1 / 2;
}

.bo-gallery__item--large-center {
  grid-column: 5 / 9;
  grid-row: 2 / 4;
}

.bo-gallery__item--large-right {
  grid-column: 9 / 13;
  grid-row: 1 / 3;
}

.bo-gallery__item--small-left {
  grid-column: 1 / 5;
  grid-row: 3 / 4;
}

.bo-gallery__item--small-right {
  grid-column: 9 / 13;
  grid-row: 3 / 4;
}


/* ================================
   Gallery Owl Carousel 1.x
   ================================ */

@media (max-width: 1025px) {
  .bo-gallery__grid {
    display: block;
  }

  .bo-gallery .owl-wrapper-outer {
    overflow: hidden;
  }

  .bo-gallery .owl-wrapper {
    display: flex !important;
  }

  .bo-gallery .owl-item {
    float: none !important;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }

  .bo-gallery .owl-item .bo-gallery__item {
    width: 100%;
  }

  .bo-gallery .owl-controls {
    position: relative;
    z-index: 5;
    margin-top: 20px;
  }

  .bo-gallery .owl-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }





  .bo-gallery .owl-pagination {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translate(-50%, -50%);
  }

  .bo-gallery .owl-page {
    display: inline-flex;
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    background: rgba(141, 141, 141, 0.22);
    cursor: pointer;
  }

  .bo-gallery .owl-page span {
    display: none !important;
  }

  .bo-gallery .owl-page.active {
    background: var(--bo-blue);
  }
}


/* ================================
   Gallery Responsive
   ================================ */

@media (max-width: 1199px) {
  .bo-gallery__head {
    gap: 30px;
  }

  .bo-gallery__head-right {
    grid-template-columns: minmax(0, 1fr) 70px;
    gap: 24px;
  }

  .bo-gallery__text {
    font-size: 18px;
  }

  .bo-gallery__grid {
    grid-template-rows: 130px 130px 130px;
  }
}

@media (max-width: 1025px) {
  .bo-gallery {
    padding: 28px 0 42px;
  }

  .bo-gallery__head {
    position: relative;
    display: block;
    margin-bottom: 26px;
  }

  .bo-gallery .bo-hero__badge {
    width: 100%;
    justify-content: center;
    margin-bottom: 34px;
  }

  .bo-gallery__title {
    max-width: calc(100% - 70px);
    color: var(--bo-heading);
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.1;
  }

  .bo-gallery__head-right {
    display: block;
  }

  .bo-gallery__text {
    max-width: none;
    margin-top: 22px;
    color: var(--bo-text);
    font-size: 22px;
    line-height: 1.25;
  }

  .bo-gallery__decor {
    position: absolute;
    right: 0;
    top: 86px;
    width: 62px;
  }

  .bo-gallery__item,
  .bo-gallery__item--large-left,
  .bo-gallery__item--wide-top,
  .bo-gallery__item--large-center,
  .bo-gallery__item--large-right,
  .bo-gallery__item--small-left,
  .bo-gallery__item--small-right {
    display: block;
    height: auto;
    aspect-ratio: 1 / 1.28;
    border-radius: 12px;
  }

  .bo-gallery .owl-controls {
    margin-top: 18px;
  }
}

@media (max-width: 575px) {
  .bo-gallery {
    padding: 24px 0 38px;
  }

  .bo-gallery .bo-hero__badge {
    margin-bottom: 30px;
  }

  .bo-gallery__title {
    font-size: 30px;
  }

  .bo-gallery__text {
    font-size: 20px;
  }

  .bo-gallery__decor {
    top: 82px;
    width: 54px;
  }

 


}



/* ================================
   Gallery Popup
   ================================ */

.bo-gallery-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--bo-transition), visibility var(--bo-transition);
}

.bo-gallery-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.bo-gallery-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(4px);
}

.bo-gallery-popup__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  height: min(82vh, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bo-gallery-popup__image-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bo-gallery-popup__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.bo-gallery-popup__close {
  position: absolute;
  right: 0;
  top: -58px;
  z-index: 3;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--bo-white);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.bo-gallery-popup__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 21px;
  height: 2px;
  background: var(--bo-heading);
  border-radius: 999px;
}

.bo-gallery-popup__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.bo-gallery-popup__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.bo-gallery-popup__close:hover {
  background: var(--bo-blue-light);
}

.bo-gallery-popup__close:hover span {
  background: var(--bo-white);
}

.bo-gallery-popup__arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    /* color: var(--bo-blue); */
    background-color: var(--bo-blue-light) !important;
    border: 0;
    border-radius: 50%;
    font-size: 46px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    transition: background-color var(--bo-transition), color var(--bo-transition);
    background-repeat: no-repeat;
    background-position: center;
    width: 12px;
    height: 24px;
    font-size: 0px;
    width: 60px;
    height: 48px;
    border-radius: 100px;
}

.bo-gallery-popup__arrow:hover {

  background-color: var(--bo-blue) !important;
}

.bo-gallery-popup__arrow--prev {
    left: -82px;
   background-image: url(/wp-content/uploads/2026/04/weui_arrow-outlined.svg);
}

.bo-gallery-popup__arrow--next {
  right: -82px;
     background-image: url(/wp-content/uploads/2026/04/weui_arrow-outlined-1.svg);
}

@media (max-width: 1199px) {
  .bo-gallery-popup__arrow--prev {
    left: 16px;
  }

  .bo-gallery-popup__arrow--next {
    right: 16px;
  }
}

@media (max-width: 767px) {
  .bo-gallery-popup {
    padding: 18px;
  }

  .bo-gallery-popup__dialog {
    height: 76vh;
  }

  .bo-gallery-popup__image {
    border-radius: 12px;
  }

  .bo-gallery-popup__close {
    right: 0;
    top: -54px;
    width: 44px;
    height: 44px;
  }

  .bo-gallery-popup__arrow {
    width: 48px;
    height: 48px;
    font-size: 38px;
  }

  .bo-gallery-popup__arrow--prev {
    left: 0;
  }

  .bo-gallery-popup__arrow--next {
    right: 0;
  }
}


.bo-gallery .bo-about__title {
    color: #1F61AE;
}

.bo-gallery .bo-about__intro {
    max-width: 822px;
    color: #1897D4;
}
.bo-gallery .bo-hero__badge {
    background: #E8F5FB;
}





/* ================================
   FAQ Section
   ================================ */

.bo-faq {
  position: relative;
  overflow: hidden;
  padding: 40px 0 40px;
  background: var(--bo-bg-light);
}

.bo-faq__head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.bo-faq__title {
  max-width: 560px;
  color: var(--bo-blue);
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.05;
  font-weight: 800;
 
}

.bo-faq__head-right {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 52px;
  align-items: end;
}

.bo-faq__text {
  max-width: 720px;
  color: var(--bo-blue-light);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
}

.bo-faq__text p {
  margin: 0;
}

.bo-faq__decor {
    /* position: relative; */
    /* min-height: 127px; */
    display: flex;
    gap: 12px;
    align-items: end;
}

.bo-faq__decor-book {
     width: 107px;
}

.bo-faq__decor-bird {
    width: 127px;
}

.bo-faq__body {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.bo-faq__accordion {
  display: grid;
  gap: 12px;
}

.bo-faq-item {
  overflow: hidden;
  background: var(--bo-white);
  border-radius: 15px;
}

.bo-faq-item__button {
    width: 100%;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    background: transparent;
    border: 0;
    text-align: left;
    color: #404040;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    max-height: 64px;
}

.bo-faq-item__question {
  display: block;
}

.bo-faq-item__icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  background: var(--bo-blue-light);
  border-radius: 50%;
}

.bo-faq-item__icon::before,
.bo-faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 2px;
  background: var(--bo-white);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.bo-faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.bo-faq-item.is-open .bo-faq-item__icon {
  background: #FFBB00;
}

.bo-faq-item.is-open .bo-faq-item__icon::after {
  opacity: 0;
}

.bo-faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--bo-transition);
}

.bo-faq-item__answer {
    padding: 24px;
    color: #8D8D8D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
     padding-top: 15px;
}
.bo-faq-item__answer p {
  margin: 0;
}

.bo-faq-item__answer p:not(:last-child) {
  margin-bottom: 12px;
}

.bo-faq__side {
  display: grid;
  gap: 12px;
}

.bo-faq__image {
    overflow: hidden;
    border-radius: 15px;
    height: 244px;
    background: var(--bo-white);
}

.bo-faq__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bo-faq__card {
  padding: 32px;
  background: var(--bo-white);
  border-radius: 15px;
}

.bo-faq__card-text {
    color: #8D8D8D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.bo-faq__card-text p {
  margin: 0;
}

.bo-faq-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}
.bo-faq-author__photo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--bo-bg-light);
}

.bo-faq-author__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bo-faq-author__name {
    color: #404040;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.bo-faq-author__position {
    margin-top: 8px;
    color: #8D8D8D;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.bo-faq__buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.bo-faq__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 7px 18px;
    border-radius: 6px;
    text-align: center;
    border: 3px solid var(--bo-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 180%;
}

.bo-faq__btn--primary {
  color: var(--bo-white);
  background: var(--bo-blue);
}

.bo-faq__btn--primary:hover {
  color: var(--bo-white);
  background: var(--bo-blue-light);
  border-color: var(--bo-blue-light);
}

.bo-faq__btn--outline {
  color: var(--bo-blue);
  background: transparent;
}

.bo-faq__btn--outline:hover {
  color: var(--bo-white);
  background: var(--bo-blue);
}


/* ================================
   FAQ Responsive
   ================================ */

@media (max-width: 1199px) {
  .bo-faq__head {
    gap: 30px;
  }

  .bo-faq__head-right {
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 24px;
  }

  .bo-faq__text {
    font-size: 18px;
  }

  .bo-faq__body {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.95fr);
  }
}

@media (max-width: 1025px) {
  .bo-faq {
    padding: 28px 0 42px;
  }

  .bo-faq__head {
    position: relative;
    display: block;
    margin-bottom: 22px;
  }

  .bo-faq .bo-hero__badge {
    width: 100%;
    justify-content: center;
    margin-bottom: 26px;
  }

  .bo-faq__title {
    max-width: calc(100% - 78px);
    color: var(--bo-heading);
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.1;
  }

  .bo-faq__head-right {
    display: block;
  }

  .bo-faq__text {
    max-width: none;
    margin-top: 22px;
    color: var(--bo-text);
    font-size: 15px;
    line-height: 1.35;
  }


  .bo-faq__decor-book {
    left: 12px;
    bottom: 0;
    width: 44px;
  }

  .bo-faq__decor-bird {
    right: 0;
    top: -10px;
    width: 62px;
  }

  .bo-faq__body {
    grid-template-columns: 1fr;
    gap: 10px;
  }



  .bo-faq-item {
    border-radius: 8px;
  }

  .bo-faq-item__button {
    min-height: 54px;
    padding: 16px 18px;
    gap: 12px;
    font-size: 12px;
  }

  .bo-faq-item__icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .bo-faq-item__answer {

  }

  .bo-faq__image {
    display: none;
  }

  .bo-faq__card {
    padding: 22px 18px;
    border-radius: 8px;
  }

  .bo-faq__card-text {
    font-size: 13px;
    line-height: 1.45;
  }

  .bo-faq-author {
    margin-top: 20px;
  }

  .bo-faq__buttons {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bo-faq__btn {
    min-height: 48px;
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .bo-faq {
    padding: 24px 0 38px;
  }

  .bo-faq .bo-hero__badge {
    margin-bottom: 24px;
  }

  .bo-faq__title {
    font-size: 22px;
  }

  .bo-faq__decor {
    top: 68px;
  }

  .bo-faq-item__button {
    font-size: 11px;
  }

  .bo-faq__btn {
    width: 100%;
  }
}


.bo-faq .bo-about__title {
    color: #1F61AE;
}
.bo-faq .bo-about__intro {
    max-width: 749px;
    color: #1897D4;
}
.bo-faq .bo-hero__badge {
    background: #E8F5FB;
}





/* ================================
   Global Contact CTA
   ================================ */

.bo-contact-cta {
  position: relative;
  padding: 40px 0;
  background: var(--bo-bg-light);
}

.bo-contact-cta .bo-container {
  position: relative;
}

.bo-contact-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  gap: 32px;
  padding: 32px 40px;
  overflow: hidden;
  color: var(--bo-white);
  background: linear-gradient(115deg, var(--bo-blue-light) 0%, var(--bo-blue) 100%);
border-radius: 15px;
}

.bo-contact-cta__content {
  position: relative;
  z-index: 2;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bo-contact-cta__title {
  max-width: 520px;
  margin-top: 18px;
  color: var(--bo-white);
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.05;
  font-weight: 800;

}

.bo-contact-cta__text {
  max-width: 740px;
  margin-top: 24px;
  color: var(--bo-white);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
}

.bo-contact-cta__text p {
  margin: 0;
}

.bo-contact-cta__contacts {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.bo-contact-cta__contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.bo-contact-cta__contact:hover {
  color: var(--bo-bg-light);
}


.bo-contact-cta__contact-icon img,
.bo-contact-cta__contact-icon svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.bo-contact-cta__decor-left {
  position: absolute;
  left: -2px;
  bottom: 0;
  z-index: -1;
  width: 193px;
      opacity: 0.7;
}

.bo-contact-cta__decor-bird {
  position: absolute;
  right: 8px;
  top: 120px;
  z-index: -1;
  width: 176px;
      opacity: 0.7;
}

.bo-contact-cta__star {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.bo-contact-cta__star--top {
    right: 0;
    top: -72px;
    width: 144px;
    z-index: 9;
    /* overflow: overlay; */
}

.bo-contact-cta__star--bottom {
  left: -26px;
  bottom: -36px;
  width: 82px;
}

.bo-contact-cta__form {
    position: relative;
    z-index: 2;
    padding: 40px;
    background: var(--bo-blue);
    border-radius: 25px;
}
.bo-contact-cta__form .wpcf7 {
  width: 100%;
}

.bo-contact-cta__form form {
  display: grid;
  gap: 12px;
}

.bo-contact-cta__form p {
  margin: 0;
}

.bo-contact-cta__form label {
    display: block;
    color: #F3FAFD;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.bo-contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.bo-contact-cta__form input:not([type="submit"]), .bo-contact-cta__form textarea, .bo-contact-cta__form select {
    width: 100%;
    min-height: 40px;
    margin-top: 8px;
    padding: 8px 16px;
    color: var(--bo-heading);
    background: var(--bo-white);
    border: 0;
 border-radius: 8px;
    outline: none;
    font-size: 14px;
    color: #A8A8A8;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.bo-contact-cta__form textarea {
    min-height: 112px;
    max-height: 112px;
  resize: vertical;
}

.bo-contact-cta__form input::placeholder,
.bo-contact-cta__form textarea::placeholder {
  color: rgba(141, 141, 141, 0.75);
}

.bo-contact-cta__form input:focus,
.bo-contact-cta__form textarea:focus,
.bo-contact-cta__form select:focus {
  box-shadow: 0 0 0 4px rgba(24, 151, 212, 0.28);
}

.bo-contact-cta__form input[type="submit"] {
    width: 100%;
    min-height: 48px;
    padding: 9px 32px;
    color: var(--bo-blue);
    background: var(--bo-bg-light);
    border: 0;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    cursor: pointer;
    transition: background-color var(--bo-transition), color var(--bo-transition);
    border-radius: 8px;
    background: #F3FAFD;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    /* color: #1F61AE; */
    /* font-family: Geologica; */
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 180%;
        margin-top: 12px;

}

.bo-contact-cta__form input[type="submit"]:hover {
    color: #1897D4;
    background: #fff;
}
.bo-contact-cta__form .wpcf7-not-valid-tip {
    margin-top: 0;
    color: #D74B4B;
    font-size: 10px;
    position: absolute;
    top: 10px;
    left: 16px;
}
.bo-contact-cta__form .wpcf7 form .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 12px 14px;
  color: var(--bo-white);
  border-color: rgba(255, 255, 255, 0.45);
  border-radius: 6px;
}


/* ================================
   Contact CTA Responsive
   ================================ */

@media (max-width: 1199px) {
  .bo-contact-cta__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1fr);
    gap: 30px;
  }

  .bo-contact-cta__text {
    font-size: 18px;
  }
}

@media (max-width: 1025px) {
  .bo-contact-cta {
    padding: 34px 0;
  }

  .bo-contact-cta__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
    overflow: visible;
    background: transparent;
    border-radius: 0;
  }

  .bo-contact-cta__content {
    min-height: 360px;
    padding: 32px 22px 28px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--bo-blue-light) 0%, var(--bo-blue) 100%);
    border-radius: 10px;
  }

  .bo-contact-cta .bo-hero__badge {
    width: 100%;
    justify-content: center;
    margin-bottom: 24px;
  }

  .bo-contact-cta__title {
    max-width: 100%;
    margin-top: 0;
    font-size: 28px;
    line-height: 1.08;
  }

  .bo-contact-cta__text {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.35;
  }

  .bo-contact-cta__contacts {
    margin-top: 28px;
  }

  .bo-contact-cta__contact {
    font-size: 15px;
  }

  .bo-contact-cta__decor-left {
    left: -8px;
    bottom: 74px;
    width: 132px;
  }

  .bo-contact-cta__decor-bird {
    right: -18px;
    top: 66px;
    width: 146px;
  }

  .bo-contact-cta__form {
    padding: 28px 22px 22px;
    border-radius: 10px;
  }

  .bo-contact-form__row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bo-contact-cta__form input:not([type="submit"]),
  .bo-contact-cta__form textarea,
  .bo-contact-cta__form select {
    min-height: 50px;
    border-radius: 8px;
    font-size: 15px;
  }

  .bo-contact-cta__form textarea {
    min-height: 132px;
  }

  .bo-contact-cta__form input[type="submit"] {
    min-height: 56px;
 
    border-radius: 8px;
    font-size: 15px;
  }

  .bo-contact-cta__form input[type="submit"]:hover {
    background: var(--bo-blue-light);
            color: #fff;
  }

  .bo-contact-cta__star--top {
    left: -18px;
    right: auto;
    top: -32px;
    width: 70px;
  }

  .bo-contact-cta__star--bottom {
    left: auto;
    right: -16px;
    bottom: 430px;
    width: 62px;
  }
}

@media (max-width: 575px) {
  .bo-contact-cta {
    padding: 28px 0;
  }

  .bo-contact-cta__content {
    min-height: 360px;
    padding: 26px 20px 26px;
  }

  .bo-contact-cta__title {
    font-size: 25px;
  }

  .bo-contact-cta__text {
    font-size: 15px;
  }

  .bo-contact-cta__form {
    padding: 24px 20px 20px;
  }

  .bo-contact-cta__star--bottom {
    bottom: 442px;
  }
} 

.bo-contact-cta .bo-about__title {
    margin-bottom: 24px;
}

.wpcf7-spinner {
    position: absolute;
}

.wpcf7 .iti {
  display: block;
  width: 100%;
}

.wpcf7 .iti input[type="tel"] {
  width: 100%;
}

/* ================================
   Footer
   ================================ */

.bo-footer {
  position: relative;
  padding: 34px 0 24px;
  color: var(--bo-white);
  background: var(--bo-blue);
}

.bo-footer__inner {
    display: grid;
    grid-template-columns: 1fr 370px 1fr;
    gap: 52px;
    align-items: center;
    padding: 40px;
    background: #F3FAFD;
    border-radius: 20px;
        position: relative;
}
.bo-footer__brand {
  display: grid;
  gap: 40px;
}

.bo-footer__logo {
  display: inline-flex;
  max-width: 275px;
}

.bo-footer__logo img {
  width: auto;
  max-height: 56px;
  object-fit: contain;
}

.bo-footer__socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bo-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  color: var(--bo-blue);
  border-radius: 50%;
  transition: transform var(--bo-transition), opacity var(--bo-transition);
}

.bo-footer__social:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.bo-footer__social img,
.bo-footer__social svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bo-footer__menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 40px;
    list-style: none;
    max-width: 245px;
}

.bo-footer__menu a {
    color: #263950;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.bo-footer__menu a:hover,
.bo-footer__menu .current-menu-item > a {
    color: #1F61AE;
}

.bo-footer__contacts {
  display: grid;
  gap: 14px;
}

.bo-footer__contact {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bo-heading);
    font-size: 14px;
    line-height: 1.35;
    color: #263950;
     font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}
a.bo-footer__contact:hover {
  color: var(--bo-blue-light);
}



.bo-footer__contact-icon svg {
  width: 24px;
  height: 24px;
}

.bo-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
}

.bo-footer__bottom-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.bo-footer__bottom-links a, .bo-footer__copyright {
    color: #F3FAFD;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
}
.bo-footer__bottom-links a:hover {
  color: var(--bo-bg-light);
}


/* ================================
   Footer Responsive
   ================================ */

@media (max-width: 1199px) {
  .bo-footer__inner {
    grid-template-columns: minmax(220px, 0.8fr) minmax(250px, 0.7fr) minmax(310px, 1fr);
    gap: 30px;
    padding: 32px;
  }

  .bo-footer__menu {
    gap: 16px 32px;
  }
}

@media (max-width: 1025px) {
  .bo-footer {
    padding: 28px 0 26px;
  }

  .bo-footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 16px 28px;
    border-radius: 10px;
    text-align: center;
  }

  .bo-footer__brand {
    justify-items: center;
    gap: 26px;
  }

  .bo-footer__logo {
    max-width: 210px;
  }

  .bo-footer__logo img {
    max-height: 58px;
  }

  .bo-footer__nav {
    width: 100%;
  }

  .bo-footer__menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
  }

.bo-footer__menu a {
    color: #263950;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
}

  .bo-footer__socials {
    justify-content: center;
    gap: 12px;
  }

  .bo-footer__social {
    width: 38px;
    height: 38px;
    padding: 8px;
    background: var(--bo-white);
    border-radius: 8px;
  }

  .bo-footer__contacts {
    gap: 18px;
    text-align: left;
  }

  .bo-footer__contact {
    justify-content: flex-start;
    font-size: 14px;
  }

  .bo-footer__bottom {
    display: grid;
    justify-items: center;
    gap: 22px;
    padding-top: 24px;
    text-align: center;
  }

  .bo-footer__bottom-links {
    display: grid;
    justify-items: center;
    gap: 22px;
  }

  .bo-footer__bottom-links a,
  .bo-footer__copyright {
    font-size: 14px;
    line-height: 1.45;
  }
}

@media (max-width: 575px) {
  .bo-footer__inner {
    padding: 22px 14px 26px;
  }

  .bo-footer__menu a {
    min-height: 38px;
    font-size: 14px;
  }

  .bo-footer__contact {
    font-size: 13px;
  }

  .bo-footer__bottom-links {
    gap: 20px;
  }
}

.bo-footer .bo-contact-cta__star--top {
    left: -27px;
    top: -62px;
    width: 111px;
    z-index: 2;
}

.bo-contact-cta {
    padding-bottom: 24px;
}

.bo-btn__icon-swap {
  position: relative;
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.bo-btn__icon-swap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity var(--bo-transition);
}

.bo-btn__icon--default {
  opacity: 1;
}

.bo-btn__icon--hover {
  opacity: 0;
}

.bo-btn:hover .bo-btn__icon--default {
  opacity: 0;
}

.bo-btn:hover .bo-btn__icon--hover {
  opacity: 1;
}

.bo-project-card__image {
  position: relative;
  display: block;
  overflow: hidden;
}

.bo-project-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    0deg,
    rgba(31, 97, 174, 0.20) 0%,
    rgba(31, 97, 174, 0.20) 100%
  );
  opacity: 0;
  transition: opacity var(--bo-transition);
  pointer-events: none;
}

.bo-project-card__image:hover::before {
  opacity: 1;
}

.bo-project-card__image img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bo-project-card__label {
  z-index: 2;
}

@media (max-width: 1025px) {
    .bo-header__mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 20px;
        border-radius: 0 0 15px 15px;
        background: #F9F9F9;
    }
    .bo-hero__badge {
        max-width: 100%;
        margin-bottom: 24px;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .bo-hero__title {
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
                gap: 12px;
    }
.bo-hero__avatars.bo-hero__avatars--top img {
    width: 100%;
            max-width: 136px;
} 
.bo-hero__avatars.bo-hero__avatars--bottom img {
    width: 100%;
       max-width: 190px;
} 
    .bo-hero__title {
        margin-bottom: 24px;
    }
     .bo-hero__text {
        font-size: 13px;
        font-style: normal;

        line-height: 16px;
        margin-bottom: 0;
    } 
.bo-hero__video {
        height: auto;
        aspect-ratio: auto;
        border-radius: 10px;
    }
    .bo-hero__play {
        width: 56px;
        height: 56px;
    }
     .bo-hero__quote-text {
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
    }
     .bo-hero__quote {
        padding: 20px;
    }
.bo-hero__quote {
    gap: 24px;
} 
.bo-hero__author-name {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.bo-hero__author-position {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}
    .bo-mobile-menu__inner {
        background: #F9F9F9;
    }
 .no-scroll .bo-header__mobile {
        border-radius: 0;
    }
    .bo-hero__media-bottom {
        gap: 8px;
    }
     .bo-hero__media {
        gap: 8px;
    }
.bo-hero__inner {
    background-position: top;
    background-size: contain;
}
    .bo-about__title {
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
    }
    .bo-about__decor {
        top: 71px;
        width: 58px;
    }  
     .bo-hero {
        padding: 20px 0 20px;
    } 
    .bo-about__intro {
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
    }
    .bo-about__head {
        gap: 12px;
    } 
    .bo-about-card__text {
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
    }
    .bo-about-card__icon {
        width: 22px;
        margin-bottom: 24px;
    }
    .bo-about-card {
        padding: 20px;
        border-radius: 15px;
    }
      .bo-about-card__number {
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        margin-bottom: 0;
    }
       .bo-about-card__label {
        margin-bottom: 24px;
    } 
.bo-about-author__name {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.bo-about-author__position {
    margin-top: 0;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}
    .bo-about {
        padding: 20px 0 20px;
    }
.bo-projects .bo-hero__badge {
    margin-bottom: 24px;
}
    .bo-projects__decor-heart {
        width: 56px;
        margin-top: 10px;
    }
.bo-projects .bo-projects__head {
        gap: 36px;
    }
.bo-projects__head {
        margin-bottom: 20px;
    }
.bo-project-card__label {
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    padding: 6px 16px;
    min-height: 32px;
    right: 16px;
    top: 16px;
}
    .bo-project-card__content {
        padding: 20px;
        border-radius: 15px;
    }
    .bo-project-card__title {
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px;
    }
    .bo-project-card__text {
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
    } 
.owl-buttons > div {
    width: 48px;
    height: 44px;
    background: #fff !important;
}
.owl-prev .bo-owl-arrow {
    background-image: url(/wp-content/uploads/2026/04/weui_arrow-outlined-2.svg);
}
.owl-next .bo-owl-arrow {
    background-image: url(/wp-content/uploads/2026/04/weui_arrow-outlined-3.svg);
}
}







@media (min-width: 1025px) {
.bo-social__actions.mobile {
  display: none;;
}
}


@media (max-width: 1025px) {

.owl-buttons > div:hover {
    color: var(--bo-white) !important;
    background: var(--bo-blue-light) !important;
  }



.owl-pagination {
    position: absolute;
    left: 50%;
    top: 50%;

    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;

    transform: translate(-50%, -50%);
  }

.owl-page {
    display: inline-flex !important;
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0;

    border-radius: 50%;
opacity: 0.3;
background: #A8A8A8;

    cursor: pointer;
  }

 .owl-page span {
    display: none !important;
  }

 .owl-page.active {
    background: var(--bo-blue);
    opacity: 1;
  }
 .owl-controls {
        margin-top: 24px;
    } 
    .bo-projects__mobile-button {
        margin-top: 24px;
    }
     .bo-projects__mobile-button .bo-btn {
        width: 100%;

        border-radius: 8px;
        border: 3px solid #1F61AE;
        background: #1F61AE;
    }
    .bo-btn {
        width: 100%;
        min-height: 44px;
         padding: 4px 32px;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 180%;
    }  
     .bo-projects {
        padding: 20px 0 20px;
    }
    .bo-social .bo-hero__badge {
        margin-bottom: 24px;
    }
.bo-social .bo-about__title {
    color: #404040;
}    
.bo-social__decor-hand {
    width: 100%;
    max-height: 40px;
}
.bo-social .bo-about__intro {
    margin-top: 36px;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}
    .bo-social__head {
        position: relative;
        display: block;
        margin-bottom: 20px;
    }
    .bo-social-card__play {
        width: 48px;
        height: 48px;
    } 
.bo-social .owl-item {
    padding-left: 4px;
    padding-right: 4px !important;
}
.bo-social .owl-controls {
        margin-top: 24px;
    }
    .bo-social__mobile-fb {
        display: block;
        margin-top: 24px;
    } 
    .bo-social__mobile-fb .bo-social__fb {
        min-height: 48px;
        font-size: 20px;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 180%;
        border-radius: 15px;
        padding: 3px 32px;
    }
    .bo-social {
        padding: 20px 0 20px;
    } 
.bo-social__fb img {
    width: 20px;
}
.bo-social__actions .bo-header__socials {
    justify-content: center;
    margin-top: 24px;
}
    .bo-news__decor-book {
        width: 57px;
        top: 45px;
        position: absolute;
        min-width: 57px;
    }
    .bo-news__decor-hand {
        width: 23px;
        margin-top: 13px;
    }
    .bo-news__head {
        gap: 36px;
        margin-bottom: 20px;
    }
    .bo-news-card__content {
        padding: 20px 20px;
        border-radius: 15px;
    } 
     .bo-news-card__image {
        border-radius: 15px;
    }
    .bo-news-card__date {
        margin-bottom: 10px;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px;
    }
     .bo-news-card__title {
        margin-bottom: 16px;
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px;
    }
.bo-news-card__more {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}
    .bo-news__all {
        min-width: 129px;
        min-height: 44px;
        border-radius: 8px;
        font-size: 16px;
        color: #1F61AE;
        text-align: center;
        font-family: Geologica;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 180%;
        padding: 5px 30px;
    }
    .bo-news__button {
        margin-top: 24px;
    }
    .bo-news {
        padding: 20px 0 20px;
    } 
 .bo-gallery .bo-about__title {
    color: #404040;
}  
.bo-gallery .bo-about__intro {
    max-width: 822px;
    color: #8D8D8D;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    margin-top: 12px;
}
    .bo-gallery__head {
        margin-bottom: 20px;
    }
    .bo-gallery .owl-controls {
        margin-top: 24px;
    } 
    .bo-gallery {
        padding: 20px 0 20px;
    }
.bo-faq .bo-about__title {
    color: #404040;
}
.bo-faq .bo-about__intro {
    color: #8D8D8D;
    margin-top: 36px;
}
    .bo-faq__decor {
        top: 68px;
        position: absolute;
        right: 16px;
    }
.bo-faq__decor-bird {
        right: 0;
        top: -10px;
        width: 32px;
        position: absolute;
    }
    .bo-faq__decor-book {
        margin-top: 32px;
                width: 40px;

    }
     .bo-faq__head {
        margin-bottom: 20px;
    }
      .bo-faq-item__button {
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px;
    }
.bo-faq-item__button {
        min-height: 72px;
        padding: 20px;
        gap: 12px;
        font-size: 12px;
    } 
     .bo-faq-item__answer {
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
        padding-top: 0;
    }
    .bo-faq-item__icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    } 
.bo-faq__accordion {
    gap: 8px;
} 
    .bo-faq__card-text {
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
    }
    .bo-faq__card {
        padding: 20px;
        border-radius: 15px;
    }
.bo-faq-author__name {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.bo-faq-author__position {
    margin-top: 0;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}
.bo-faq__buttons {
    margin-top: 0;
}
    .bo-faq__btn {
        width: 100%;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 180%;
        padding: 4px 15px;
        min-height: 44px;
    }
    .bo-faq {
        padding: 20px 0 20px;
    } 
    .bo-contact-cta__content {
        min-height: 360px;
        padding: 20px;
        border-radius: 10px;
    }  
    .bo-contact-cta__star--top {
        left: 0px;
        right: auto;
        top: -28px;
        width: 70px;
        z-index: 9;
        width: 56px;
    }
    .bo-faq {
        padding: 20px 0 20px;
    }
.bo-contact-cta__contacts {
        margin-top: 36px;
    }  
    .bo-contact-cta__contact {
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
    }
    .bo-contact-cta__content {
        background: linear-gradient(180deg, #1897D4 0%, #1F61AE 100%);
    }  
    .bo-contact-cta__decor-bird {
        right: 20px;
        top: 38px;
        width: 99px;
        opacity: 0.5;
    }
    .bo-contact-cta__decor-left {
        left: 20px;
        bottom: 0;
        width: 132px;
        opacity: 0.5;
    }
     .bo-contact-cta__form {
        padding: 20px;
        border-radius: 15px;
    }
.bo-contact-cta__form label {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}
.bo-contact-cta__form form {
    gap: 8px;
}
.bo-contact-cta__form input:not([type="submit"]), .bo-contact-cta__form textarea, .bo-contact-cta__form select {
        min-height: 40px;
        border-radius: 8px;
        font-size: 15px;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
    }
.bo-contact-cta__form input[type="submit"] {
        min-height: 44px;
  
        border-radius: 8px;
        border-radius: 8px;

        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 180%;
        margin-top: 8px;
    }
.bo-footer .bo-contact-cta__star--top {
    left: -20px;
    top: -55px;
    width: 56px;
    z-index: 2;
}   
    .bo-footer {
        padding: 20px;
    }
.bo-footer .bo-container {
    padding: 0;
}
.bo-contact-cta {
    padding: 20px;
}
    .bo-footer .bo-contact-cta__star--top {
        left: -28px;
        top: -28px;
        width: 56px;
        z-index: 2;
    }
    .bo-footer__inner {
        padding: 20px;
                gap: 40px;
    }
.bo-footer__menu {
    max-width: 100%;
}
    .bo-footer__inner {
        background-color: #fff;
    }
.bo-footer__menu li {
    border-radius: 8px;
    background: #F3FAFD;
}
    .bo-footer__contact {
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }
 .bo-footer__contact-icon {
    min-width: 24px;
    width: 24px;
}
.bo-footer .bo-header__socials {
    display: flex;
    align-items: center;
    gap: 4px;
    text-align: center;
    margin: 0 auto;
}
.bo-footer .bo-header__social img, .bo-footer .bo-header__social svg {
    border-radius: 8px;
    background: #F3FAFD;
    padding: 7px;
}
.bo-social .bo-header__social img, .bo-social .bo-header__social svg {
border-radius: 8px;
background: rgba(24, 151, 212, 0.05);
    padding: 7px;
}
.bo-contact-cta .bo-container {
    position: relative;

}

  .bo-social__actions.full, .bo-header__socials.full {
    display: none;
  }
   .bo-social__actions.mobile,  .bo-header__socials.mobile  {
    display: block;
  }
    .bo-footer__bottom-links a, .bo-footer__copyright {
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
    }
    .bo-footer__bottom-links a, .bo-footer__copyright {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
    }
.bo-header-lang.is-open .bo-header-lang__dropdown {
    right: auto;
}
    .bo-header-lang {
        justify-content: center;
    }
}

@media (min-width: 1025px) {
.bo-header__socials.mobile {
  display: none;
}

}

    .bo-gallery-popup__arrow--next {
        font-size: 0px;
    }
        .bo-gallery-popup__arrow--prev {
          font-size: 0px;
    }

@media (max-width: 1450px) and (min-width: 992px) {
 .bo-hero__inner {
    grid-template-columns: 1fr;
}
}

.wpcf7-spinner {
    left: 0;
}

.row_hero_bottom p {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.row_hero_bottom {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
}
.page-template-about-page .bo-hero__media {
    gap: 40px;
}

.row_hero_bottom .col:first-child {
    padding: 12px 0;
}
.page-template-about-page .bo-hero__video {
position: relative;
    overflow: visible;
}
.page-template-about-page .bo-hero__video:after {
    content: '';
    background-image: url(/wp-content/uploads/2026/05/path110.svg);
    background-repeat: no-repeat;
    width: 112px;
    height: 112px;
    display: block;
    position: absolute;
    bottom: -40px;
    left: -40px;
}
.page-template-about-page .bo-hero__video:before {
    content: '';
    background-image: url(/wp-content/uploads/2026/05/path730.svg);
    background-repeat: no-repeat;
    width: 112px;
    height: 112px;
    display: block;
    position: absolute;
    top: -10px;
    right: -42px;
}
.page-template-about-page  .bo-hero__inner {
    background-image: url(/wp-content/uploads/2026/05/path138.svg);
    background-repeat: no-repeat;
    background-position: top left;
    background-position-x: 200px;
}

/* ================================
   About Page Info
   ================================ */

.bo-about-info {
  position: relative;
  overflow: hidden;

  background: var(--bo-blue);
}

.bo-about-info__nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    /* margin-bottom: 58px; */
    margin-top: 70px;
}
.bo-about-info__nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 170px;
  min-height: 40px;
  padding: 10px 24px;

  color: var(--bo-white);
  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;

  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;

  transition:
    color var(--bo-transition),
    background-color var(--bo-transition),
    border-color var(--bo-transition);
}

.bo-about-info__nav-link:hover {
  color: var(--bo-blue);
  background: var(--bo-white);
  border-color: var(--bo-white);
}

.bo-about-info__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bo-about-info-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border-radius: 8px;
    background: #F3FAFD;
}

.bo-about-info-card__title {
    margin: 0;
    color: #1F3566;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
}
.bo-about-info-card__text {
    margin-top: 56px;
    color: #8D8D8D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.bo-about-info-card__text p {
  margin: 0;
}

.bo-about-info-card__text p:not(:last-child) {
  margin-bottom: 12px;
}


/* anchor offset */
#about-info,
#fund-documents,
#team,
#reports {
  scroll-margin-top: 110px;
}


/* ================================
   About Page Info Responsive
   ================================ */

@media (max-width: 1025px) {
  .bo-about-info {
   
  }

  .bo-about-info__nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 32px;
  }

  .bo-about-info__nav-link {
    width: 100%;
    min-height: 44px;
    font-size: 14px;
  }

  .bo-about-info__cards {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bo-about-info-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .bo-about-info-card__title {
    font-size: 18px;
  }

  .bo-about-info-card__text {
    margin-top: 34px;
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .bo-about-info-card {
    padding: 22px 18px;
  }

  .bo-about-info-card__text {
    font-size: 14px;
  }
}

  

.page-template-about-page .bo-hero__inner {
    padding-bottom: 56px;
}
.page-template-about-page .bo-hero {
    padding-bottom: 0;
}
.bo-about-info {
    padding-bottom: 56px;
}
 
/* ================================
   Fund Documents
   ================================ */

.bo-fund-documents {
  position: relative;
  overflow: hidden;
  padding: 56px 0 56px;
  background: var(--bo-blue);
}

.bo-fund-documents__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.bo-fund-documents__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 44px;
}

.bo-fund-documents__title-group {
  flex: 1 1 auto;
  min-width: 0;
}

.bo-fund-documents__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 10px 28px;
  margin-bottom: 24px;
  border-radius: 30px;
  background: #e8f5fb;
  color: var(--bo-blue-light);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.bo-fund-documents__badge-icon {
  width: 27px;
  height: 20px;
}

.bo-fund-documents__badge-icon img,
.bo-fund-documents__patterns img,
.bo-fund-documents__item-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bo-fund-documents__copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  gap: 40px;
}

.bo-fund-documents__title {
  margin: 0;
  color: var(--bo-bg-light);
  font-size: 40px;
  line-height: 44px;
  font-weight: 600;
}

.bo-fund-documents__text {
  color: var(--bo-bg-light);
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
}

.bo-fund-documents__text p {
  margin: 0;
}

.bo-fund-documents__patterns {
  position: relative;
  flex: 0 0 212px;
  width: 212px;
  height: 144px;
}

.bo-fund-documents__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bo-fund-documents__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 92px;
  padding: 28px 32px;
  border-radius: 15px;
  background: var(--bo-bg-light);
  color: #1f3566;
  transition: transform var(--bo-transition), box-shadow var(--bo-transition);
      background: #F3FAFD;
}

a.bo-fund-documents__item:hover {
    background: #F3FAFD;

}

.bo-fund-documents__item-title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.bo-fund-documents__item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--bo-blue);
  color: var(--bo-bg-light);
}

.bo-fund-documents__item-icon img {
  width: 16px;
  height: 16px;
}

@media (max-width: 1199px) {
  .bo-fund-documents__head {
    align-items: flex-start;
  }

  .bo-fund-documents__patterns {
    flex-basis: 150px;
    width: 150px;
    height: 104px;
  }

}

@media (max-width: 1025px) {
  .bo-fund-documents {
    padding: 32px 0 44px;
  }

  .bo-fund-documents__inner {
    gap: 32px;
  }

  .bo-fund-documents__head {
    display: block;
  }

  .bo-fund-documents__copy,
  .bo-fund-documents__list {
    grid-template-columns: 1fr;
  }

  .bo-fund-documents__copy {
    gap: 20px;
  }

  .bo-fund-documents__title {
    font-size: 32px;
    line-height: 38px;
  }

  .bo-fund-documents__text {
    font-size: 18px;
    line-height: 26px;
  }

  .bo-fund-documents__patterns {
    display: none;
  }
}

@media (max-width: 575px) {
  .bo-fund-documents {
    padding: 20px 0 36px;
  }

  .bo-fund-documents__badge {
    width: 100%;
    min-height: 40px;
    margin-bottom: 24px;
    padding: 10px 20px;
    font-size: 14px;
  }

  .bo-fund-documents__title {
    font-size: 28px;
    line-height: 34px;
  }

  .bo-fund-documents__text {
    font-size: 16px;
    line-height: 24px;
  }

  .bo-fund-documents__item {
    min-height: 72px;
    padding: 20px;
    border-radius: 10px;
  }

  .bo-fund-documents__item-title {
    font-size: 16px;
    line-height: 22px;
  }
}

/* ================================
   Team
   ================================ */

.bo-team {
  position: relative;
  overflow: hidden;
  padding: 0 0 56px;
  background: var(--bo-blue);
}

.bo-team__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.bo-team__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 44px;
}

.bo-team__title-group {
  flex: 1 1 auto;
  min-width: 0;
}

.bo-team__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 10px 28px;
  margin-bottom: 24px;
  border-radius: 30px;
  background: var(--bo-bg-light);
  color: var(--bo-blue-light);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.bo-team__badge-icon {
  width: 20px;
  height: 20px;

}

.bo-team__badge-icon img,
.bo-team__patterns img,
.bo-team-card__email img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bo-team__copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  gap: 40px;
}

.bo-team__title {
  margin: 0;
  color: var(--bo-bg-light);
  font-size: 40px;
  line-height: 44px;
  font-weight: 600;
}

.bo-team__text {
  color: var(--bo-bg-light);
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
}

.bo-team__text p {
  margin: 0;
}

.bo-team__patterns {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}

.bo-team__pattern--hand {
  width: 77px;
  height: 80px;

}

.bo-team__pattern--star {
  width: 144px;
  height: 144px;
  transform: scaleY(-1);
}

.bo-team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bo-team-card {
  overflow: hidden;
  border-radius: 15px;
  background: var(--bo-white);
}

.bo-team-card__photo {
  position: relative;
  height: 482px;
  background: var(--bo-white);
}

.bo-team-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 68%, #ffffff 100%);
  pointer-events: none;
}

.bo-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bo-team-card__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 32px;
  background: var(--bo-white);
}

.bo-team-card__position,
.bo-team-card__name {
  overflow: hidden;
  width: 100%;
  margin: 0;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bo-team-card__position {
  color: var(--bo-blue-light);
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.bo-team-card__name {
  color: var(--bo-blue);
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
}

.bo-team-card__email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--bo-bg-light);
  color: var(--bo-blue-light);
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
}

.bo-team-card__email span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bo-team-card__email img {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.bo-team-card__email:hover {
  color: var(--bo-blue);
  background: #e8f5fb;
}

@media (max-width: 1399px) {
  .bo-team-card__photo {
    height: 390px;
  }
}

@media (max-width: 1199px) {
  .bo-team__head {
    align-items: flex-start;
  }

  .bo-team__patterns {
    transform: scale(0.74);
    transform-origin: right bottom;
  }

  .bo-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bo-team-card__photo {
    height: 420px;
  }
}

@media (max-width: 1025px) {
  .bo-team {
    padding-bottom: 44px;
  }

  .bo-team__inner {
    gap: 32px;
  }

  .bo-team__head {
    display: block;
  }

  .bo-team__copy {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bo-team__title {
    font-size: 32px;
    line-height: 38px;
  }

  .bo-team__text {
    font-size: 18px;
    line-height: 26px;
  }

  .bo-team__patterns {
    display: none;
  }

  .bo-team-card__photo {
    height: 360px;
  }

  .bo-team-card__body {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .bo-team {
    padding-bottom: 36px;
  }

  .bo-team__badge {
    width: 100%;
    min-height: 40px;
    margin-bottom: 24px;
    padding: 10px 20px;
    font-size: 14px;
  }

  .bo-team__title {
    font-size: 28px;
    line-height: 34px;
  }

  .bo-team__text {
    font-size: 16px;
    line-height: 24px;
  }

  .bo-team__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bo-team-card {
    border-radius: 10px;
  }

  .bo-team-card__photo {
    height: 330px;
  }

  .bo-team-card__body {
    gap: 14px;
    padding: 16px;
  }

  .bo-team-card__position {
    font-size: 14px;
    line-height: 20px;
  }

  .bo-team-card__name {
    font-size: 18px;
    line-height: 24px;
  }

  .bo-team-card__email {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 18px;
  }
}


.bo-fund-documents__item:hover .bo-fund-documents__item-icon {
    background: #1897D4;
}


@media (max-width: 1025px) {
    .bo-hero__title {
  
        justify-content: center;
    }
} 

/* ================================
   Tablet Main Figma Overrides
   ================================ */

@media (min-width: 768px) and (max-width: 1025px) {
  :root {
    --bo-container-padding: 32px;
  }

  .bo-header-mobile {
    padding: 24px 40px;
    border-radius: 0 0 25px 25px;
    background: #f6f6f6;
  }

  .bo-header-mobile__logo img {
    max-height: 40px;
  }

  .bo-header-mobile__phone {
    display: none;
  }

  .bo-header-mobile__burger {
    width: 48px;
    height: 40px;
    flex-basis: 48px;
    border-radius: 8px;
    background-color: var(--bo-blue);
  }

  .bo-mobile-menu {
    top: 64px;
  }

  .bo-mobile-menu__inner {
    max-width: 704px;
    min-height: calc(100vh - 88px);
    margin: 0 auto;
    padding: 32px 0;
    align-items: center;
  }

  .bo-mobile-menu__list {
    width: 240px;
  }

  .bo-mobile-menu__list a {
    min-height: 40px;
    font-size: 14px;
    line-height: 40px;
  }

  .bo-hero {
    padding: 32px 0;
  }

  .bo-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    background-size: 704px auto;
    background-position: center 386px;
  }

  .bo-hero__content {
    text-align: center;
  }

  .bo-hero__badge {
    margin-bottom: 28px;
    font-size: 14px;
  }

  .bo-hero__title {
    gap: 24px;
    margin-bottom: 28px;
    font-size: 76px;
    line-height: 1;
  }

  .bo-hero__title-row {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 20px;
  }

  .bo-hero__avatars img {
    width: auto;
    max-width: none;
    height: 77px;
  }

  .bo-hero__text {
    max-width: 704px;
    margin: 0 auto 40px;
    font-size: 20px;
    line-height: 24px;
  }

  .bo-hero__buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .bo-hero__buttons .bo-btn {
    width: 297px;
    min-width: 297px;
    min-height: 44px;
    padding: 7px 24px;
    font-size: 14px;
  }

  .bo-hero__media {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
  }

  .bo-hero__video {
    height: 208px;
    aspect-ratio: auto;
    border-radius: 15px;
  }
 
  .bo-hero__media-bottom {
    grid-template-columns: 240px 108px;
    gap: 8px;
  }

  .bo-hero__quote {
    min-height: 208px;
    padding: 24px;
    gap: 24px;
    border-radius: 15px;
  }
  
 
  .bo-hero__author-photo {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .bo-hero__small-image {
    min-height: 208px;
    aspect-ratio: auto;
    border-radius: 15px;
  }

  .bo-about,
  .bo-projects,
  .bo-social,
  .bo-news,
  .bo-gallery,
  .bo-faq {
    padding: 32px 0;
  }

  .bo-about__head,
  .bo-projects__head,
  .bo-social__head,
  .bo-news__head,
  .bo-gallery__head,
  .bo-faq__head {
    display: block;
    margin-bottom: 32px;
  }

  .bo-about .bo-hero__badge,
  .bo-projects .bo-hero__badge,
  .bo-social .bo-hero__badge,
  .bo-news .bo-hero__badge,
  .bo-gallery .bo-hero__badge,
  .bo-faq .bo-hero__badge {
    width: fit-content;
    min-height: 40px;
    margin: 0 auto 24px;
    justify-content: center;
    font-size: 14px;
  }

  .bo-about__title,
  .bo-projects .bo-about__title,
  .bo-social .bo-about__title,
  .bo-news .bo-about__title,
  .bo-gallery .bo-about__title,
  .bo-faq .bo-about__title {
    max-width: 608px;
    font-size: 32px;
    line-height: 32px;
  }

  .bo-about__head-right,
  .bo-projects__head-right,
  .bo-news__head-right,
  .bo-gallery__head-right,
  .bo-faq__head-right {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 24px;
    align-items: start;
    margin-top: 16px;
  }

  .bo-about__intro,
  .bo-projects .bo-about__intro,
  .bo-social .bo-about__intro,
  .bo-news .bo-about__intro,
  .bo-gallery .bo-about__intro,
  .bo-faq .bo-about__intro {
    max-width: none;
    margin-top: 0;
    font-size: 16px;
    line-height: 16px;
  }

  .bo-about__decor,
  .bo-projects__decor,
  .bo-news__decor,
  .bo-gallery__decor,
  .bo-faq__decor {
    position: static;
    width: auto;
    justify-self: end;
  }

  .bo-about__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
  }

  .bo-about-card,
  .bo-about-card--main,
  .bo-about-card--stat-large,
  .bo-about-card--stat-small,
  .bo-about-card--visual,
  .bo-about-card--quote {
    grid-column: span 3;
    border-radius: 8px;
    padding: 24px;
  }

  .bo-about-card--stat-small,
  .bo-about-card--visual {
    grid-column: span 2;
  }

  .bo-about-card--main,
  .bo-about-card--stat-large {
    min-height: 264px;
  }

  .bo-about-card--stat-small,
  .bo-about-card--visual {
    min-height: 180px;
  }

  .bo-about-card--quote {
    min-height: 304px;
  }

  .bo-about-card__number {
    font-size: 24px;
    line-height: 24px;
  }

  .bo-about-card__label {
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 16px;
  }

  .bo-about-card__text {
    font-size: 13px;
    line-height: 16px;
  }

  .bo-projects__list,
  .bo-news__list {
    display: block;
  }

  .bo-project-card__image {
    height: 280px;
    border-radius: 15px;
  }

  .bo-project-card__content {
    min-height: 132px;
    padding: 16px 20px;
  }

  .bo-project-card__title {
    font-size: 18px;
    line-height: 24px;
  }

  .bo-project-card__text {
    font-size: 13px;
    line-height: 16px;
  }

  .bo-projects-cta {
    display: none;
  }

  .bo-projects__mobile-button {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }

  .bo-projects__mobile-button .bo-btn,
  .bo-news__all {
    width: 300px;
    min-height: 44px;
    font-size: 14px;
  }

  .bo-projects .owl-wrapper-outer,
  .bo-news .owl-wrapper-outer {
    overflow: hidden;
  }

  .bo-projects .owl-wrapper,
  .bo-news .owl-wrapper {
    display: flex !important;
  }

  .bo-projects .owl-pagination,
  .bo-news .owl-pagination {
    display: flex !important;
  }

  .bo-projects .owl-item,
  .bo-news .owl-item {
    float: none !important;
    padding-right: 8px;
    box-sizing: border-box;
  }

  .bo-social__title {
    max-width: 627px;
    font-size: 32px;
    line-height: 32px;
  }

  .bo-social__text {
    margin-top: 16px;
    font-size: 16px;
    line-height: 16px;
  }

  .bo-social__decor {
    position: absolute;
    right: 0;
    top: 64px;
    width: 54px;
  }

  .bo-social-card__media {
    width: 220px;
    aspect-ratio: 220 / 394;
  }

  .bo-social__mobile-fb {
    margin-top: 24px;
  }

  .bo-social__mobile-fb .bo-social__fb {
    width: 300px;
    min-height: 44px;
    margin: 0 auto;
    font-size: 14px;
  }

  .bo-social__mobile-fb .bo-social__fb-icon {
    width: 32px;
    height: 32px;
  }

  .bo-news-card__image {
    height: 300px;
    aspect-ratio: auto;
    border-radius: 15px;
  }

  .bo-news-card__content {
    min-height: 152px;
    padding: 16px 20px;
    border-radius: 15px;
  }

  .bo-news-card__date {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 16px;
  }

  .bo-news-card__title {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 20px;
  }

  .bo-news-card__more {
    font-size: 14px;
    line-height: 16px;
  }

  .bo-news__button {
    margin-top: 24px;
  }

  .bo-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 280px 219px;
    gap: 8px;
    max-width: 680px;
    margin: 0 auto;
  }

  .bo-gallery__item,
  .bo-gallery__item--large-left,
  .bo-gallery__item--wide-top,
  .bo-gallery__item--large-center,
  .bo-gallery__item--large-right,
  .bo-gallery__item--small-left,
  .bo-gallery__item--small-right {
    aspect-ratio: auto;
    border-radius: 8px;
  }

  .bo-gallery__item--large-left {
    grid-column: 1;
    grid-row: 1;
  }

  .bo-gallery__item--wide-top {
    grid-column: 2;
    grid-row: 1;
  }

  .bo-gallery__item--large-center {
    grid-column: 3;
    grid-row: 1;
  }

  .bo-gallery__item--large-right {
    grid-column: 1;
    grid-row: 2;
  }

  .bo-gallery__item--small-left {
    grid-column: 2;
    grid-row: 2;
  }

  .bo-gallery__item--small-right {
    grid-column: 3;
    grid-row: 2;
  }

  .bo-faq__body {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bo-faq__accordion {
    width: 688px;
    max-width: 100%;
  }

  .bo-faq-item {
    border-radius: 8px;
  }

  .bo-faq-item__button {
    min-height: 68px;
    max-height: none;
    padding: 20px 24px;
    font-size: 13px;
    line-height: 16px;
  }

  .bo-faq-item__answer {
    padding: 0 24px 20px;
    font-size: 13px;
    line-height: 16px;
  }

  .bo-faq__side {
    grid-template-columns: 346px 346px;
    gap: 12px;
    align-items: start;
  }

  .bo-faq__image {
    display: block;
    height: 132px;
    border-radius: 8px;
  }

  .bo-faq__card {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: 240px;
    padding: 24px;
    border-radius: 8px;
  }

  .bo-faq__card-text {
    font-size: 13px;
    line-height: 16px;
  }

  .bo-faq__buttons {
    grid-column: 2;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 0;
  }

  .bo-faq__btn {
    width: 100%;
    min-height: 44px;
    font-size: 14px;
  }
 
  .bo-contact-cta {
    padding: 32px 0;
  }

  .bo-contact-cta__inner {
grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0;
    background: transparent;
  }

  .bo-contact-cta__content,
  .bo-contact-cta__form {
    border-radius: 15px;
    padding: 24px;
  }

  .bo-contact-cta__content {
    min-height: 468px;
  }

  .bo-contact-cta__title {
    font-size: 28px;
    line-height: 32px;
  }

  .bo-contact-cta__text,
  .bo-contact-cta__contact,
  .bo-contact-cta__form input:not([type="submit"]),
  .bo-contact-cta__form textarea,
  .bo-contact-cta__form select {
    font-size: 13px;
    line-height: 16px;
  }

  .bo-contact-cta__form {
    min-height: 468px;
  }

  .bo-contact-form__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bo-contact-cta__form input:not([type="submit"]),
  .bo-contact-cta__form textarea,
  .bo-contact-cta__form select {
    min-height: 40px;
  }

  .bo-contact-cta__form textarea {
    min-height: 112px;
    max-height: 112px;
  }

  .bo-contact-cta__form input[type="submit"] {
    min-height: 44px;
    color: var(--bo-blue);
    background: var(--bo-bg-light);
    font-size: 14px;
  }

  .bo-footer {
    padding: 32px 0;
  }

  .bo-footer__inner {
    grid-template-columns: minmax(0, 236px) minmax(0, 240px);
    justify-content: space-between;
    gap: 40px;
    padding: 20px;
  }

  .bo-footer__brand {
    align-items: flex-start;
  }

  .bo-footer__logo img {
    max-height: 48px;
  }

  .bo-footer__menu {
    width: 240px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bo-footer__menu a {
    min-height: 40px;
    justify-content: center;
    font-size: 14px;
  }

  .bo-footer__contacts {
    order: 3;
    grid-column: 1;
    margin-top: 90px;
  }

  .bo-footer__socials {
    width: 236px;
    margin-top: 90px;
  }

  .bo-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 12px;
  }

  .page-template-about-page .bo-hero {
    padding: 32px 0;
  }

  .page-template-about-page .bo-hero__inner {
    grid-template-columns: minmax(0, 704px);
    gap: 28px;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
    background-size: 704px auto;
    background-position: center 28px;
  }

  .page-template-about-page .bo-hero__content {
    text-align: center;
  }

  .page-template-about-page .bo-hero__badge {
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 16px;
  }

  .page-template-about-page .bo-hero__title {
    gap: 10px;
    margin-bottom: 18px;
    font-size: 76px;
    line-height: 1;
    justify-content: center;
  }

  .page-template-about-page .bo-hero__title-row {
    justify-content: center;
    gap: 20px;
  }

  .page-template-about-page .bo-hero__avatars img {
    height: 58px;
  }

  .page-template-about-page .bo-hero__avatar {
    width: 58px;
    height: 58px;
    margin-left: -18px;
  }

  .page-template-about-page .bo-hero__text {
    max-width: 704px;
    margin: 0 auto 28px;
    font-size: 13px;
    line-height: 16px;
  }

  .page-template-about-page .bo-hero__buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .page-template-about-page .bo-hero__buttons .bo-btn {
    width: auto;
    min-width: 144px;
    min-height: 44px;
    padding: 5px 20px;
    font-size: 14px;
  }

  .page-template-about-page .bo-about-info__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 572px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
    margin-bottom: 0;
  }

  .page-template-about-page .bo-about-info__nav-link {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 16px;
  }

  .page-template-about-page .bo-hero__media {
    display: block;
    gap: 0;
  }

  .page-template-about-page .bo-hero__video {
    height: 220px;
    border-radius: 8px;
  }

  .page-template-about-page .bo-hero__video img {
    object-fit: cover;
    border-radius: inherit;
  }

  .page-template-about-page .bo-hero__video::before {
    width: 56px;
    height: 56px;
    top: -8px;
    right: -20px;
    background-size: contain;
  }

  .page-template-about-page .bo-hero__video::after {
    width: 56px;
    height: 56px;
    left: -20px;
    bottom: -20px;
    background-size: contain;
  }

  .page-template-about-page .text_hero_bottom {
    margin-top: 24px;
  }

  .page-template-about-page .row_hero_bottom {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }

  .page-template-about-page .row_hero_bottom .col:first-child {
    padding: 0;
  }

  .page-template-about-page .row_hero_bottom p {
    font-size: 13px;
    line-height: 16px;
  }

  .page-template-about-page .bo-about-info {
    padding: 0 0 32px;
  }

  .page-template-about-page .bo-about-info__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .page-template-about-page .bo-about-info-card {
    min-height: 256px;
    padding: 24px;
    border-radius: 8px;
  }

  .page-template-about-page .bo-about-info-card__title {
    font-size: 18px;
    line-height: 28px;
  }

  .page-template-about-page .bo-about-info-card__text {
    margin-top: 40px;
    font-size: 13px;
    line-height: 16px;
  }

  .page-template-about-page .bo-fund-documents {
    padding: 32px 0;
  }

  .page-template-about-page .bo-fund-documents__inner,
  .page-template-about-page .bo-team__inner {
    gap: 32px;
  }

  .page-template-about-page .bo-fund-documents__head,
  .page-template-about-page .bo-team__head {
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }

  .page-template-about-page .bo-fund-documents__copy,
  .page-template-about-page .bo-team__copy {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .page-template-about-page .bo-fund-documents__title,
  .page-template-about-page .bo-team__title {
    font-size: 32px;
    line-height: 32px;
  }

  .page-template-about-page .bo-fund-documents__text,
  .page-template-about-page .bo-team__text {
    font-size: 16px;
    line-height: 16px;
  }

  .page-template-about-page .bo-fund-documents__patterns,
  .page-template-about-page .bo-team__patterns {
    display: flex;
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
    transform: none;
  }

  .page-template-about-page .bo-team__patterns {
    align-items: flex-start;
    gap: 8px;
    height: 80px;
  }

  .page-template-about-page .bo-team__pattern--hand {
    width: 40px;
    height: 42px;
  }

  .page-template-about-page .bo-team__pattern--star {
    width: 56px;
    height: 56px;
  }

  .page-template-about-page .bo-fund-documents__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .page-template-about-page .bo-fund-documents__item {
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 8px;
  }

  .page-template-about-page .bo-fund-documents__item-title {
    font-size: 13px;
    line-height: 16px;
  }

  .page-template-about-page .bo-fund-documents__item-icon {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .page-template-about-page .bo-team {
    padding-bottom: 32px;
  }

  .page-template-about-page .bo-team__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .page-template-about-page .bo-team-card {
    border-radius: 8px;
  }

  .page-template-about-page .bo-team-card__photo {
    height: 180px;
  }

  .page-template-about-page .bo-team-card__body {
    gap: 10px;
    padding: 14px 12px;
  }

  .page-template-about-page .bo-team-card__position {
    font-size: 12px;
    line-height: 16px;
  }

  .page-template-about-page .bo-team-card__name {
    font-size: 14px;
    line-height: 18px;
  }

  .page-template-about-page .bo-team-card__email {
    gap: 6px;
    min-height: 28px;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 11px;
    line-height: 14px;
  }

  .page-template-about-page .bo-team-card__email img {
    flex-basis: 14px;
    width: 14px;
    height: 14px;
  }
}

/* ================================
   About Mobile Figma Overrides
   ================================ */

@media (max-width: 767px) {
  .page-template-about-page {
    --bo-container-padding: 20px;
  }

  .page-template-about-page .bo-hero {
    padding: 20px 0;
  }

  .page-template-about-page .bo-hero__inner {

    gap: 28px;
    justify-content: center;
    padding-bottom: 0;
    background-size: 290px auto;
    background-position: center 24px;
  }

  .page-template-about-page .bo-hero__content {
    text-align: center;
  }

  .page-template-about-page .bo-hero__badge {
            width: 100%;
    min-height: 40px;
    margin: 0 auto 20px;
    padding: 10px 20px;
    font-size: 13px;
    line-height: 16px;
  }

  .page-template-about-page .bo-hero__title {
    gap: 8px;
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 1;
  }

  .page-template-about-page .bo-hero__title-row {
    justify-content: center;
    gap: 10px;
  }

  .page-template-about-page .bo-hero__avatars img {
    height: 34px;
  }

  .page-template-about-page .bo-hero__avatar {
    width: 34px;
    height: 34px;
    margin-left: -10px;
  }

  .page-template-about-page .bo-hero__text {
  
    margin: 0 auto 24px;
    font-size: 13px;
    line-height: 16px;
    text-align: left;
  }

  .page-template-about-page .bo-hero__buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .page-template-about-page .bo-hero__buttons .bo-btn {
    width: 250px;
    min-width: 250px;
    min-height: 44px;
    padding: 5px 20px;
    border-radius: 8px;
    font-size: 14px;
  }

  .page-template-about-page .bo-about-info__nav {
    grid-template-columns: 1fr;
    max-width: 290px;
    margin: 20px auto 0;
  }

  .page-template-about-page .bo-about-info__nav-link {
    min-height: 40px;
    font-size: 13px;
    line-height: 16px;
  }

  .page-template-about-page .bo-hero__media {
    display: block;
  }

  .page-template-about-page .bo-hero__video {
    height: 180px;
    border-radius: 8px;
  }

  .page-template-about-page .bo-hero__video img {
    object-fit: cover;
    border-radius: inherit;
  }

  .page-template-about-page .bo-hero__video::before {
    width: 56px;
    height: 56px;
    top: -12px;
    right: -20px;
    background-size: contain;
  }

  .page-template-about-page .bo-hero__video::after {
    width: 56px;
    height: 56px;
    left: -20px;
    bottom: -20px;
    background-size: contain;
  }

  .page-template-about-page .text_hero_bottom {
    margin-top: 24px;
  }

  .page-template-about-page .row_hero_bottom {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
  }

  .page-template-about-page .row_hero_bottom .col:first-child {
    padding: 0;
  }

  .page-template-about-page .row_hero_bottom p {
    font-size: 13px;
    line-height: 16px;
  }

  .page-template-about-page .bo-about-info {
    padding: 0 0 20px;
  }

  .page-template-about-page .bo-about-info__cards {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-template-about-page .bo-about-info-card {
    min-height: 180px;
    padding: 20px;
    border-radius: 8px;
  }

  .page-template-about-page .bo-about-info-card__title {
    font-size: 16px;
    line-height: 24px;
  }

  .page-template-about-page .bo-about-info-card__text {
    margin-top: 32px;
    font-size: 13px;
    line-height: 16px;
  }

  .page-template-about-page .bo-fund-documents {
    padding: 20px 0;
  }

  .page-template-about-page .bo-fund-documents__inner,
  .page-template-about-page .bo-team__inner {
    gap: 24px;
  }

  .page-template-about-page .bo-fund-documents__badge,
  .page-template-about-page .bo-team__badge {
    width: 100%;
    min-height: 40px;
    margin-bottom: 24px;
    padding: 10px 20px;
    justify-content: center;
    font-size: 13px;
    line-height: 16px;
  }

  .page-template-about-page .bo-fund-documents__copy,
  .page-template-about-page .bo-team__copy {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-template-about-page .bo-fund-documents__title,
  .page-template-about-page .bo-team__title {
    font-size: 20px;
    line-height: 24px;
  }

  .page-template-about-page .bo-fund-documents__text,
  .page-template-about-page .bo-team__text {
    font-size: 13px;
    line-height: 16px;
  }

  .page-template-about-page .bo-fund-documents__list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-template-about-page .bo-fund-documents__item {
    min-height: 72px;
    padding: 20px;
    border-radius: 8px;
  }

  .page-template-about-page .bo-fund-documents__item-title {
    font-size: 13px;
    line-height: 16px;
  }

  .page-template-about-page .bo-team {
    padding-bottom: 20px;
  }

  .page-template-about-page .bo-team__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-template-about-page .bo-team-card {
    border-radius: 8px;
  }

  .page-template-about-page .bo-team-card__photo {
    height: 260px;
  }

  .page-template-about-page .bo-team-card__body {
    gap: 12px;
    padding: 16px;
  }

  .page-template-about-page .bo-team-card__position {
    font-size: 13px;
    line-height: 16px;
  }

  .page-template-about-page .bo-team-card__name {
    font-size: 16px;
    line-height: 20px;
  }

  .page-template-about-page .bo-team-card__email {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 16px;
  }
}

@media (max-width: 1025px) {
  .page-template-about-page .bo-team__grid.owl-carousel {
    display: block;
  }

  .page-template-about-page .bo-team .owl-wrapper-outer {
    overflow: hidden;
  }

  .page-template-about-page .bo-team .owl-wrapper {
    display: flex !important;
  }

  .page-template-about-page .bo-team .owl-item {
    float: none !important;
    padding-right: 8px;
    box-sizing: border-box;
  }

  .page-template-about-page .bo-team .owl-item .bo-team-card {
    height: 100%;
  }

  .page-template-about-page .bo-team .owl-controls {
    position: relative;
    z-index: 5;
    margin-top: 24px;
  }

  .page-template-about-page .bo-team .owl-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }

  .page-template-about-page .bo-team .owl-buttons > div {
    width: 48px;
    height: 44px;
    background: var(--bo-bg-light) !important;
    color: var(--bo-blue) !important;
    pointer-events: auto;
  }

  .page-template-about-page .bo-team .owl-pagination {
    display: flex !important;
  }

  .page-template-about-page .bo-team .owl-page.active {
    background: var(--bo-bg-light);
  }
}

@media (max-width: 767px) {
  .page-template-about-page .bo-team .owl-item {
    padding-right: 0;
  }
}

/* ================================
   Reports Page
   ================================ */

.bo-reports {
  position: relative;
  overflow: hidden;
     padding: 56px 0 64px;
  background: var(--bo-blue);
  color: var(--bo-bg-light);
}

.bo-reports__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.bo-reports__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 44px;
}

.bo-reports__title-group {
  flex: 1 1 auto;
  min-width: 0;
}

.bo-reports__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 10px 28px;
  margin-bottom: 24px;
  border-radius: 30px;
  background: #e8f5fb;
  color: var(--bo-blue-light);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.bo-reports__badge-icon {
  width: 27px;
  height: 20px;
}

.bo-reports__badge-icon img,
.bo-reports__patterns img,
.bo-reports-card__button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bo-reports__copy {
    display: grid;
    grid-template-columns: 1fr 737px;
    align-items: end;
    gap: 40px;
}

.bo-reports__title {
  margin: 0;
  color: var(--bo-bg-light);
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
}

.bo-reports__text {
  color: var(--bo-bg-light);
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

.bo-reports__text p {
  margin: 0;
}

.bo-reports__patterns {
  flex: 0 0 281px;
  width: 281px;
  height: 144px;
}

.bo-reports__years-wrap {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 40px;
  align-items: center;
}

.bo-reports__arrow,
.bo-reports__year {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.bo-reports__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 44px;
  border-radius: 100px;
  background: var(--bo-white);
  color: var(--bo-blue);
}

.bo-reports__arrow .bo-owl-arrow {
  background-image: url(/wp-content/uploads/2026/04/weui_arrow-outlined-2.svg);
}

.bo-reports__arrow:last-child .bo-owl-arrow {
  background-image: url(/wp-content/uploads/2026/04/weui_arrow-outlined-3.svg);
}
 
.bo-reports__years {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding: 0 10px;
  scroll-padding: 0 10px;
  scrollbar-width: none;
}

.bo-reports__years::-webkit-scrollbar {
  display: none;
}

.bo-reports__years::before,
.bo-reports__years::after {
  content: "";
  flex: 0 0 1px;
}  

.bo-reports__year {
  flex: 0 0 106px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 30px;
  background: var(--bo-white);
  color: #bfbfbf;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  transition: color var(--bo-transition), background-color var(--bo-transition);
}

.bo-reports__year.is-active,
.bo-reports__year:hover {
  color: var(--bo-blue);
}

.bo-reports__panel[hidden] {
  display: none;
}

.bo-reports__docs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bo-reports-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  min-height: 188px;
  padding: 32px;
  border-radius: 15px;
  background: var(--bo-bg-light);
}

.bo-reports-card__title {
  margin: 0;
  color: #1f3566;
  font-size: 28px;
  line-height: 32px;
  font-weight: 600;
  text-align: center;
}

.bo-reports-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 400px;
  max-width: 100%;
  min-height: 60px;
  padding: 12px 28px;
  border-radius: 8px;
  background: var(--bo-blue);
  color: var(--bo-bg-light);
  font-size: 20px;
  line-height: 36px;
  font-weight: 600;
  text-align: center;
  transition: background-color var(--bo-transition);
}

.bo-reports-card__button:hover {
  background: var(--bo-blue-light);
}

.bo-reports-card__button[aria-disabled="true"] {
  pointer-events: none;
}

.bo-reports-card__button img {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.bo-reports__empty {
  padding: 32px;
  border-radius: 15px;
  background: var(--bo-bg-light);
  color: #1f3566;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1025px) {
  .page-template-reports-page {
    --bo-container-padding: 32px;
  }

  .bo-reports {
    padding: 32px 0;
  }

  .bo-reports__inner {
    gap: 32px;
  }

  .bo-reports__head {
    align-items: flex-start;
    gap: 24px;
  }

  .bo-reports__copy {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .bo-reports__title {
    font-size: 32px;
    line-height: 32px;
  }

  .bo-reports__text {
    font-size: 16px;
    line-height: 16px;
  }

  .bo-reports__patterns {
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
  }

  .bo-reports__years-wrap {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 8px;
  }

  .bo-reports__year {
    flex-basis: 86px;
    font-size: 14px;
  }

  .bo-reports-card {
    min-height: 132px;
    gap: 20px;
    padding: 24px;
    border-radius: 8px;
  }

  .bo-reports-card__title {
    font-size: 20px;
    line-height: 24px;
  }

  .bo-reports-card__button {
    width: 250px;
    min-height: 44px;
    padding: 7px 20px;
    font-size: 14px;
    line-height: 20px;
  }

  .bo-reports-card__button img {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 767px) {
  .page-template-reports-page {
    --bo-container-padding: 20px;
  }

  .bo-reports {
    padding: 32px 0 20px;
  }

  .bo-reports__inner {
    gap: 24px;
  }

  .bo-reports__head {
    display: block;
  }

  .bo-reports__badge {
    width: 100%;
    min-height: 40px;
    margin-bottom: 24px;
    padding: 10px 20px;
    font-size: 13px;
    line-height: 16px;
  }

  .bo-reports__copy {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bo-reports__title {
    font-size: 24px;
    line-height: 28px;
  }

  .bo-reports__text {
    font-size: 13px;
    line-height: 16px;
  }

  .bo-reports__patterns {
    display: none;
  }

  .bo-reports__years-wrap {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 4px;
  }

  .bo-reports__years {
    gap: 4px;
    padding: 0 8px;
    scroll-padding: 0 8px;
  }

  .bo-reports__year {
    flex-basis: 64px;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .bo-reports__docs {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bo-reports-card {
    min-height: 116px;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
  }

  .bo-reports-card__title {
    font-size: 16px;
    line-height: 20px;
  }

  .bo-reports-card__button {
    width: 250px;
    min-height: 36px;
    padding: 6px 20px;
    gap: 10px;
    font-size: 13px;
    line-height: 20px;
  }

  .bo-reports-card__button img {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
  }
}


@media (min-width: 768px) and (max-width: 1025px) {
    .bo-hero__quote {
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
    }
}


@media (max-width: 767px) {
    .page-template-about-page .bo-hero__title {
        gap: 8px;
        margin-bottom: 18px;
        font-size: 42px;
        line-height: 1;
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        text-transform: uppercase;
    }
}

@media (max-width: 767px) {
.full {
display: none !important;
}
}
@media (max-width: 1025px) {
.full_tablet {
display: none !important;
}
}


@media (max-width: 767px) {
    .page-template-about-page .row_hero_bottom .col:first-child {
        width: 40px;
        padding-top: 10px;
    }
}

@media (min-width: 1025px) {
	.bo-fund-documents__patterns_mobile {
		display: none;
	}
}

@media (max-width: 767px) {
    .page-template-about-page .bo-hero__inner {
        gap: 0;
    }
    .page-template-about-page .bo-hero__text {
        margin: 0 auto 16px;
    }
    .page-template-about-page .text_hero_bottom {
        margin-top: 40px;
    }
    .page-template-about-page .bo-hero {
        padding-bottom: 52px;
    }
     .page-template-about-page .bo-hero__avatars img {
        height: auto;
    }
    .page-template-about-page .bo-about-info {
       padding: 16px 0;
    } 
      .page-template-about-page .bo-fund-documents {
        padding: 16px 0;
    }
    .page-template-about-page .bo-team {
       padding: 16px 0;
    }
    .bo-contact-cta .bo-container {
        position: relative;
        padding: 0;
    }
   .page-template-about-page .bo-fund-documents__title {
        max-width: 236px;
    }
.bo-fund-documents__patterns_mobile {
    position: absolute;
    top: 87px;
    right: 20px;
}
}



@media (min-width: 768px) and (max-width: 1025px) {
    .page-template-about-page .bo-hero__avatars img {
        height: auto;
        max-width: 288px;
    }
    .page-template-about-page .bo-hero__avatars img {
        height: auto;
        max-width: 411px;
    }
    .page-template-about-page .bo-hero__badge {
        max-width: 237px;
    }
    .page-template-about-page .bo-hero__buttons .bo-btn {
        min-width: 297px;
        min-height: 44px;
        padding: 5px 20px;
    }
        .page-template-about-page .bo-hero__text {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }
    .page-template-about-page .bo-hero__title {
        margin-bottom: 28px;
    }
    .page-template-about-page .bo-hero__inner {
        gap: 40px;
    }
    .page-template-about-page .bo-hero__video {
        height: 100%;
    }
    .page-template-about-page .text_hero_bottom {
        margin-top: 40px;
    } 
    .page-template-about-page .bo-about-info-card__text {
        margin-top: 32px;
        line-height: 16px;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }
      .page-template-about-page .bo-about-info-card__title {
        font-size: 18px;
        line-height: 28px;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
    }
.bo-fund-documents__badge {
    font-size: 14px;
}
    .page-template-about-page .bo-fund-documents__head, .page-template-about-page .bo-team__head {
        display: grid;
        gap: 0;
    }
    .bo-fund-documents__badge {
        justify-content: center;
        display: flex;
    }
    .bo-fund-documents__badge {
        justify-content: center;
        display: flex;
        max-width: 180px;
        text-align: center;
        margin: 0 auto;
        margin-bottom: 24px;
    }
.page-template-about-page .bo-fund-documents__patterns {
  display: none;
}
    .bo-fund-documents__patterns_mobile {
        position: absolute;
        top: 87px;
        right: 20px;
    }
    .page-template-about-page .bo-fund-documents__title, .page-template-about-page .bo-team__title {
        font-size: 32px;
        line-height: 32px;
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        line-height: 32px;
    }
    .page-template-about-page .bo-fund-documents__text, .page-template-about-page .bo-team__text {
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
    }
    .page-template-about-page .bo-fund-documents__list {
        grid-template-columns: 1fr;
        gap: 4px;
    }
     .page-template-about-page .bo-fund-documents__inner, .page-template-about-page .bo-team__inner {
        gap: 20px;
    }
    .page-template-about-page .bo-fund-documents__item {
        padding: 20px;
    }
 .bo-team__badge {

    font-size: 13px;
    max-width: 153px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    margin-bottom: 24px;
}
    .page-template-about-page .bo-team {
        padding-top: 32px;
    }
     .page-template-about-page .bo-team__patterns {
        position: absolute;
        right: 20px;
        top: 112px;
    }
.page-template-about-page .bo-team__copy {

        max-width: 90%;
    }
    .page-template-about-page .bo-hero__text {
        margin: 0 auto 40px;
    }
    .page-template-about-page .bo-team-card__photo {
        height: 260px;
    }
.bo-project-card__image {
        width: 100%;
    }
        .page-template-about-page .bo-hero__badge {
        max-width: 237px;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        text-transform: uppercase;
    }
     .page-template-about-page .bo-team-card__position {
        font-size: 13px;
    }
    .page-template-about-page .bo-team-card__body {
        gap: 12px;
    }
.home .bo-hero__avatars.bo-hero__avatars--top img {
        width: 100%;
        max-width: 288px;
        height: auto;
    }
.home .bo-hero__avatars.bo-hero__avatars--bottom img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
.home .bo-hero__badge {
        max-width: 242px;
    }
.home .bo-hero__text {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }  
.home .bo-hero__inner {
        background-position: top;
    } 
.home .bo-hero__video img {
    object-fit: cover;
}
    .home .bo-hero__badge {
        max-width: 242px;
        display: flex;
    }
    .bo-about__title, .bo-projects .bo-about__title, .bo-social .bo-about__title, .bo-news .bo-about__title, .bo-gallery .bo-about__title, .bo-faq .bo-about__title {
        font-size: 28px;
        font-style: normal;
        font-weight: 600; 
        line-height: 32px;
    }
    .bo-about__intro, .bo-projects .bo-about__intro, .bo-social .bo-about__intro, .bo-news .bo-about__intro, .bo-gallery .bo-about__intro, .bo-faq .bo-about__intro {
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
    }
    .bo-about__head-right, .bo-projects__head-right, .bo-news__head-right, .bo-gallery__head-right, .bo-faq__head-right {
        display: grid;
        grid-template-columns: 1fr 180px;
        gap: 0;
    }  
.bo-about__decor {
    margin-top: -84px;
}
    .bo-projects__decor-heart {
        width: 157px;
        margin-top: -70px;
    }
    .bo-project-card__image {
        height: 300px;
    }
     .bo-social__decor-hand {
        max-height: 65px;
    }
.bo-about__intro {
    color: #1F61AE;
    margin-top: 16px;
}
.bo-social__decor {
        width: 106px;
    }
    .bo-social__mobile-fb {
        text-align: center;
    }
.bo-news .bo-about__intro {
        color: #fff;
    }
    .bo-news__decor-hand {
        width: 40px;
        margin-top: 0;
    } 
        .bo-news__decor-book {
        width: 82px;
        top: 60px;
        position: absolute;
        min-width: 57px;
    }
 .bo-news__head {
        display: block;
        margin-bottom: 20px;
    }
.bo-news__all {
        max-width: 133px;
    }
.bo-gallery .bo-about__intro {
        color: #1F61AE;
    }
 .bo-gallery__decor {
        margin-top: -84px;
    }
 .bo-faq .bo-about__intro {
        color: #1F61AE;
    }
    .bo-faq__decor-book {
        margin-top: -27px;
        width: 75px;
    }
      .bo-faq__decor-bird {
        right: 0;
        top: 0;
        width: 42px;
        position: absolute;
    }
.bo-contact-cta .bo-about__intro {
        color: #ffffff;

    }
.home .bo-contact-cta  .bo-hero__badge {
        max-width: 100%;
    }
    .bo-footer__inner {
        margin-left: 32px;
        margin-right: 32px;
                align-items: self-start;
    }
    .bo-footer__inner > *:last-child {
        grid-column: 1 / -1;
        width: 40%;
        margin-top: -240px;
    }
.bo-footer .bo-header__socials.mobile {
        order: 6;
        margin-top: -48px;
        margin: -48px auto auto auto;
        text-align: left;
                margin-left: 0;
    }
    .bo-footer__contact {
        align-items: start;
    }
.bo-footer__inner {
        gap: 0px;
    }
 .bo-footer__bottom {
        display: grid;
    }
     .bo-footer__bottom-links {
       display: flex;
        gap: 22px;
        flex-wrap: wrap;
    }
.bo-about .bo-about__intro {
        color: #ffffff;
    }
.bo-projects .bo-about__intro {
        color: #ffffff;
    }
.bo-social .bo-about__intro {
    color: #1F61AE;
    margin-top: 16px;
}
    .bo-mobile-menu__inner {
        max-width: 100%;
    }
}









@media (max-width: 767px) {
    .page-template-about-page .bo-about-info-card__text {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }
    .page-template-about-page .bo-fund-documents__list {
            gap: 4px;
    } 
      .bo-team__patterns {
        display: block;
        transform: none;
        width: 40px;
        position: absolute;
        top: 81px;
        right: 20px;
    }
    .page-template-about-page .bo-fund-documents__copy, .page-template-about-page .bo-team__copy {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 90%;
    }
    .page-template-about-page .bo-team .owl-controls {
        margin-top: 20px;
    }
    .page-template-about-page .bo-team {
        padding-bottom: 32px;
    }
  }

@media (max-width: 1025px) {
      .bo-mobile-menu__list a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 40px;
        padding: 2px 0;
        color: var(--bo-heading);
        border-bottom: 0px solid rgba(31, 97, 174, 0.1);
        font-size: 16px;
        line-height: 1.25;
        font-weight: 400;
        border-radius: 8px;
        background: #F3FAFD;
        min-height: 40px;
                justify-content: center;
    }
        .bo-mobile-menu__list {
        width: 240px;
        margin: 0 auto;
    }
 .bo-mobile-menu .bo-btn.bo-btn--light {
    width: 297px;
    border-radius: 8px;
    background: #1F61AE;
    color: #fff;
    margin: 40px auto;
    text-align: center;
    justify-content: center;
    display: flex;
}
.bo-mobile-menu .bo-btn__icon-swap img {
filter: brightness(0) invert(1);
 }
.bo-mobile-menu .bo-mobile-menu__list {
        gap: 8px;
    }
.text_bureger_costum {
    color: #8D8D8D;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-top: 40px;
    margin-bottom: 10px;
}
    .burger_contact_items {
        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;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        border-radius: 8px;
        border: 3px solid #F3FAFD;
        background: #F3FAFD;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
        display: flex;
        justify-content: center;
                padding: 10px 20px;
    }
.bo-footer__contact.burger_contact_items {
    width: -webkit-fill-available;
        max-width: 566px;
                margin-top: 8px;
}
.bo-footer__contact-icon {
        min-width: 25px;
        width: 25px;
    }
}

.bo-reports__years {
    justify-content: flex-start;
}

@media (max-width: 1025px) and (min-width: 768px) {
.bo-reports__year {
        font-weight: 600;
        line-height: 20px;
    }
      .bo-reports__title {
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        line-height: 32px;
    }
    .bo-reports__text {
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
                max-width: 570px;
    }
    .bo-reports-card__title {
        font-size: 20px;
        line-height: 24px;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
    }
        .bo-reports-card {
        padding: 20px;
        min-height: auto;
    }
   .bo-reports__badge {
    font-size: 14px;
}
.bo-reports__badge {
    line-height: 20px;
    display: flex;
    justify-content: center;
    max-width: 128px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 24px;
}
    .bo-reports__head {
        display: block;
    }
    .bo-reports__patterns.pattern_mobile {
        position: absolute;
        right: 20px;
        margin-top: -118px;
    }
 }
@media (min-width: 1025px) {
 .pattern_mobile {
    display: none;
 }
}


@media (max-width: 1025px) {
 .pattern_full {
    display: none;
 }
}
@media (max-width: 767px) {
    .bo-reports__title {
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
    }
     .bo-reports__patterns.pattern_mobile {
        display: block;
    }
    .bo-reports__patterns.pattern_mobile {
        position: absolute;
        right: 20px;
        margin-top: -118px;
    }
     .bo-reports__patterns.pattern_mobile {
        position: absolute;
        right: 20px;
        margin-top: -147px;
        max-width: 59px;
    }
        .bo-reports__text {
        max-width: 90%;
    }
 .bo-reports__years {
        padding: 0;

    }
 .bo-reports-card__title {
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
    }
     .bo-reports-card {
        min-height: auto;
    }
  }


  .bo-reports__arrow:hover {
    background-color: #1897D4;
}
.bo-reports__arrow:hover .bo-owl-arrow {
    filter: brightness(0) invert(1);
}

.bo-blog-post {
  background: #1f61ae;
  padding: 220px 0 40px;
}

.bo-blog-post__card {
  background: #f3fafd;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 40px;
}

.bo-blog-post__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 48px;
  align-items: end;
}

.bo-blog-post__title-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.bo-blog-post__date {
  color: #1f61ae;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.bo-blog-post__badge {
  align-items: center;
  align-self: flex-start;
  background: #e8f5fb;
  border-radius: 30px;
  color: #1897d4;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  gap: 10px;
  justify-content: center;
  line-height: 20px;
  padding: 10px 28px;
  text-transform: uppercase;
}

.bo-blog-post__badge img {
  display: block;
  height: 20px;
  width: 27px;
}

.bo-blog-post__title {
  color: #1f3566;
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
  margin: 0;
  max-width: 980px;
}

.bo-blog-post__pattern {
  display: block;
  height: 240px;
  justify-self: end;
  object-fit: contain;
  width: 150px;
}

.bo-blog-post__photo {
  border-radius: 15px;
  grid-column: 1 / -1;
  height: 520px;
  margin: 0;
  overflow: hidden;
  width: 100%;
}

.bo-blog-post__photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.bo-blog-post__content {
  color: #1f3566;
  font-size: 22px;
  font-weight: 400;
  line-height: 34px;
}

.bo-blog-post__content > *:first-child {
  margin-top: 0;
}

.bo-blog-post__content > *:last-child {
  margin-bottom: 0;
}

.bo-blog-post__content p,
.bo-blog-post__content ul,
.bo-blog-post__content ol {
  margin: 0 0 32px;
}

.bo-blog-post__content h2,
.bo-blog-post__content h3 {
  color: #1f3566;
  font-size: 22px;
  font-weight: 600;
  line-height: 34px;
  margin: 0 0 20px;
}

.bo-blog-post__content strong {
  font-weight: 600;
}

.bo-blog-post__content ul,
.bo-blog-post__content ol {
  padding-left: 32px;
}

.bo-blog-post__content li {
  margin: 0;
  padding-left: 4px;
}

@media (min-width: 768px) and (max-width: 1025px) {
  .page-template-blog-page,
  .category {
    --bo-container-padding: 32px;
  }

  .bo-blog-post {
    padding: 32px 0;
  }

  .bo-blog-post__card {
    gap: 40px;
    padding: 28px 24px;
  }

  .bo-blog-post__hero {
    grid-template-columns: minmax(0, 1fr) 107px;
    gap: 44px;
  }

  .bo-blog-post__title {
    font-size: 28px;
    line-height: 32px;
    max-width: none;
  }

  .bo-blog-post__pattern {
    height: 172px;
    width: 107px;
  }

  .bo-blog-post__photo {
    height: 350px;
  }

  .bo-blog-post__content,
  .bo-blog-post__content h2,
  .bo-blog-post__content h3 {
    font-size: 20px;
    line-height: 32px;
  }

  .bo-blog-post__content p,
  .bo-blog-post__content ul,
  .bo-blog-post__content ol {
    margin-bottom: 32px;
  }
}

@media (max-width: 767px) {
  .page-template-blog-page {
    --bo-container-padding: 8px;
  }

  .bo-blog-post {
    padding: 20px 0;
  }

  .bo-blog-post__card {
    background: transparent;
    border-radius: 0;
    gap: 16px;
    padding: 0;
  }

  .bo-blog-post__hero {
    background: #f3fafd;
    border-radius: 15px;
    grid-template-columns: minmax(0, 1fr) 53px;
    gap: 28px 12px;
    padding: 28px 20px;
  }

  .bo-blog-post__title-group {
    display: contents;
  }

  .bo-blog-post__badge {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 182px;
    order: 1;
  }

  .bo-blog-post__title {
    align-self: start;
    font-size: 20px;
    line-height: 24px;
    max-width: 209px;
    order: 2;
  }

  .bo-blog-post__date {
    background: #e8f5fb;
    border-radius: 30px;
    color: #1f61ae;
    font-size: 14px;
    grid-column: 1 / -1;
    justify-self: center;
    line-height: 20px;
    order: 4;
    padding: 10px 28px;
  }

  .bo-blog-post__pattern {
    height: 72px;
    order: 3;
    width: 53px;
  }

  .bo-blog-post__photo {
    grid-column: 1 / -1;
    height: 180px;
    order: 5;
  }

  .bo-blog-post__content {
    background: #f3fafd;
    border-radius: 15px;
    font-size: 16px;
    line-height: 24px;
    padding: 24px 20px;
  } 

  .bo-blog-post__content h2,
  .bo-blog-post__content h3 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
  }

  .bo-blog-post__content p,
  .bo-blog-post__content ul,
  .bo-blog-post__content ol {
    margin-bottom: 24px;
  }
 
  .bo-blog-post__content ul,
  .bo-blog-post__content ol {
    padding-left: 22px;
  }
}

.bo-blog {
  background: #1f61ae;
  padding: 64px 0 40px;
}

.bo-blog__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bo-blog__head {
  align-items: end;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 720px) minmax(0, 1fr) 280px;
}

.bo-blog__title-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bo-blog__badge {
    align-items: center;
    align-self: flex-start;
    background: #e8f5fb;
    border-radius: 30px;
    color: #1897d4;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    gap: 10px;
    justify-content: center;
    line-height: 20px;
    padding: 10px 28px;
    text-transform: uppercase;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.bo-blog__badge img {
  display: block;
  height: 20px;
  width: 27px;
}

.bo-blog__title {
  color: #f3fafd;
  font-size: 40px;
  font-weight: 600;
  line-height: 44px;
  margin: 0;
}

.bo-blog__text {
    color: #f3fafd;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    max-width: 720px;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.bo-blog__text p {
  margin: 0;
}

.bo-blog__pattern {
  display: block;
  height: 100%;
  justify-self: end;
  object-fit: contain;
  width: 280px;
}

.bo-blog__filters {
  display: block;
}

.bo-blog__filters-toggle {
  display: none;
}
 
.bo-blog__filters-list {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    border-radius: 8px;
    padding: 4px;
    background: rgba(232, 245, 251, 0.50);
}
.bo-blog__filter-mobile {
  display: none;
}
.bo-blog__filter {
    align-items: center;
    background: #f3fafd;
    border: 2px solid #f3fafd;
    border-radius: 8px;
    color: #1f61ae;
    display: flex;
    justify-content: center;
    min-height: 44px;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.bo-blog__filter.is-active,
.bo-blog__filter:hover {
  background: #1897d4;
  border-color: #f3fafd;
  color: #f3fafd;
}

.bo-blog__grid {
  display: grid;
  gap: 24px 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bo-blog-card {

  border-radius: 8px;
  min-width: 0;
  overflow: hidden;
}

.bo-blog-card__image {
  display: block;
  height: min(30.42vw, 584px);
  min-height: 360px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.bo-blog-card__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
  width: 100%;
}

.bo-blog-card:hover .bo-blog-card__image img {
  transform: scale(1.03);
}

.bo-blog-card__category {
  background: #fff;
  border-radius: 30px;
  color: #1f3566;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  max-width: calc(100% - 32px);
  overflow: hidden;
  padding: 10px 18px;
  position: absolute;
  right: 16px;
  text-overflow: ellipsis;
  top: 16px;
  white-space: nowrap;
}

.bo-blog-card__body {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 20px;
}

.bo-blog-card__date {
  color: #a8a8a8;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 20px;
}

.bo-blog-card__title {
  color: #1f3566;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin: 0 0 28px;
}

.bo-blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.bo-blog-card__more {
  align-items: center;
  color: #a8a8a8;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  line-height: 20px;
  margin-top: auto;
  text-decoration: none;
}

.bo-blog-card__more:hover {
  color: #1897d4;
}

.bo-blog__pagination {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
  padding-top: 5px;
}

.bo-blog__pagination .page-numbers {
    align-items: center;
    background: #f3fafd;
    border: 0;
    border-radius: 999px;
    color: #b8b8b8;
    display: inline-flex;
    font-size: 28px;
    font-weight: 600;
    height: 44px;
    justify-content: center;
    line-height: 32px;
    min-width: 52px;
    padding: 0 22px;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}
.bo-blog__pagination .page-numbers.current {
  background: #f3fafd;
  color: #1f61ae;
}

.bo-blog__pagination a.page-numbers:hover {
  background: #f3fafd;
  color: #1f61ae;
}

.bo-blog__pagination .page-numbers.prev,
.bo-blog__pagination .page-numbers.next {
  font-size: 0;
  min-width: 58px;
  padding: 0;
  position: relative;
  width: 58px;
}

.bo-blog__pagination .page-numbers.is-disabled {
  cursor: default;
  opacity: 1;
}

.bo-blog__pagination .page-numbers.prev {
  margin-right: 36px;
}

.bo-blog__pagination .page-numbers.next {
  margin-left: 36px;
}

.bo-blog__pagination .page-numbers.prev::before,
.bo-blog__pagination .page-numbers.next::before {
  border-color: #1f61ae;
  border-style: solid;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  top: 50%;
    width: 9px;
}

.bo-blog__pagination .page-numbers.prev::before {
  border-width: 0 0 2px 2px;
  left: 50%;
  transform: translate(-35%, -50%) rotate(45deg);
}

.bo-blog__pagination .page-numbers.next::before {
  border-width: 2px 2px 0 0;
  right: 50%;
  transform: translate(35%, -50%) rotate(45deg);
}

.bo-blog__pagination .page-numbers.dots {
  color: #b8b8b8;
  pointer-events: none;
}

.bo-blog__empty {
  background: #f3fafd;
  border-radius: 8px;
  color: #1f3566;
  font-size: 20px;
  line-height: 28px;
  padding: 32px;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1025px) {
  .page-template-blog-page,
  .category {
    --bo-container-padding: 32px;
  }

  .bo-blog {
    padding: 32px 0;
  }

  .bo-blog__head {
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) 107px;
  }

  .bo-blog__title-group {
    grid-column: 1 / 2;
  }

  .bo-blog__text {
    font-size: 16px;
    grid-column: 1 / 2;
    line-height: 24px;
    max-width: 520px;
  }

  .bo-blog__title {
    font-size: 28px;
    line-height: 32px;
  }

  .bo-blog__pattern {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    height: 172px;
    width: 107px;
  }

  .bo-blog__filters {
    display: block;
  }

  .bo-blog__filters-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .bo-blog__filters-list::-webkit-scrollbar {
    display: none;
  }

  .bo-blog__filter {
    flex: 0 0 160px;
  }

  .bo-blog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bo-blog-card__image {
    height: 330px;
    min-height: 0;
  }

  .bo-blog-card__body {
    min-height: 188px;
  }

  .bo-blog-card__title {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  .page-template-blog-page,
  .category {
    --bo-container-padding: 20px;
  }

  .bo-blog {
    padding: 20px 0;
  }

  .bo-blog__inner {
    gap: 20px;
  }

  .bo-blog__head {
    gap: 24px 12px;
    grid-template-columns: minmax(0, 1fr) 64px;
  }

  .bo-blog__title-group {
    display: contents;
  }

  .bo-blog__badge {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .bo-blog__title {
    font-size: 24px;
    grid-column: 1 / 2;
    line-height: 28px;
  }

  .bo-blog__text {
    font-size: 14px;
    grid-column: 1 / -1;
    line-height: 20px;
    max-width: none;
  }

  .bo-blog__pattern {
    align-self: end;
    height: 86px;
    width: 64px;
  }

  .bo-blog__filters {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
  }

  .bo-blog__filters-toggle {
    align-items: center;
    background: #f3fafd;
    border: 0;
    border-radius: 8px;
    color: #1897d4;
    cursor: pointer;
    display: flex;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    gap: 12px;
    height: 56px;
    justify-content: center;
    line-height: 20px;
    padding: 0 20px;
    width: 100%;
  }

  .bo-blog__filters-icon {
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    display: block;
    height: 9px;
    margin-top: -4px;
    transform: rotate(45deg);
    transition: transform 0.2s ease, margin-top 0.2s ease;
    width: 9px;
  }

  .bo-blog__filters.is-open .bo-blog__filters-icon {
    margin-top: 4px;
    transform: rotate(225deg);
  }

  .bo-blog__filters-list {
    display: none;
    flex-direction: column;
    gap: 6px;
  }

  .bo-blog__filters.is-open .bo-blog__filters-list {
    display: flex;
  }

  .bo-blog__filter {
    border: 0;
    color: #1f3566;
    flex: none;
    font-size: 16px;
    font-weight: 600;
    height: 56px;
    line-height: 20px;
    min-height: 56px;
    padding: 0 20px;
    width: 100%;
  }

  .bo-blog__filter.is-active,
  .bo-blog__filter:hover {
    background: #f3fafd;
    color: #1f3566;
  }

  .bo-blog__filter-desktop {
    display: none;
  }

  .bo-blog__filter-mobile {
    display: inline;
  }

  .bo-blog__grid {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .bo-blog-card__image {
    height: 280px;
    min-height: 0;
  }

  .bo-blog-card__category {
    font-size: 13px;
    line-height: 16px;
    padding: 8px 14px;
    right: 12px;
    top: 12px;
  }

  .bo-blog-card__body {
    min-height: 172px;
    padding: 16px;
  }

  .bo-blog-card__date {
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 16px;
  }

  .bo-blog-card__title {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 24px;
  }

  .bo-blog-card__more {
    font-size: 13px;
    line-height: 16px;
  }

  .bo-blog__pagination {
    gap: 6px;
    padding-top: 20px;
  }

  .bo-blog__pagination .page-numbers {
    font-size: 20px;
    height: 46px;
    line-height: 24px;
    min-width: 52px;
    padding: 0 16px;
  }

  .bo-blog__pagination .page-numbers.prev,
  .bo-blog__pagination .page-numbers.next {
    height: 46px;
    min-width: 46px;
    width: 46px;
  }

  .bo-blog__pagination .page-numbers.prev {
    margin-right: 10px;
  }

  .bo-blog__pagination .page-numbers.next {
    margin-left: 10px;
  }

  .bo-blog__pagination .page-numbers.prev::before,
  .bo-blog__pagination .page-numbers.next::before {
    height: 10px;
    width: 10px;
  }
}
 
@media (max-width: 1025px) and (min-width: 768px) {
.bo-blog__filter {
    font-weight: 500;
    line-height: 20px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
    .bo-blog__filter {
        flex: auto;
        width: 100%;
    }
}
@media (min-width: 1025px) {
.bo-blog__pattern.mobile {
  display: none;
}
}
@media (max-width: 1025px) {
.bo-blog__pattern.full {
  display: none;
}
}

@media (min-width: 768px) and (max-width: 1025px) {
    .bo-blog__text {
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
    }
  .bo-blog__badge {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
        margin: 0 auto;
}
    .bo-blog__head {
        display: block;
                position: relative;
    }

    .bo-blog__text {
        margin-top: 16px;
    }
.bo-blog__pattern.mobile {
    position: absolute;
    bottom: 0;
} 
}

@media (max-width: 767px) {
    .bo-blog__head {
        display: block;
      position: relative;
    }

    .bo-blog__text {
        margin-top: 36px;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
                max-width: 90%;
    }
    .bo-blog__pattern.mobile {
        position: absolute;
        top: 63px;
    }
    .bo-blog__badge {
      font-size: 12px;
        font-weight: 500;
        line-height: 20px;
        margin-bottom: 24px;
                width: 100%;
    }
    .bo-blog__title {
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
    }
      .bo-blog__pattern {
        align-self: end;
        height: 74px;
        width: auto;
    }
.bo-blog__filters-toggle {
        align-items: center;
        background: #f3fafd;
        border: 0;
        border-radius: 8px;
        color: #1897d4;
        cursor: pointer;
        display: flex;
        font-family: inherit;
        font-size: 16px;
        font-weight: 600;
        gap: 12px;
        height: 48px;
        justify-content: center;
        line-height: 20px;
        padding: 0 20px;
        width: 100%;
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 22px;
    }
    .bo-blog__filter {
        border: 0;
        color: #1f3566;
        flex: none;
        font-size: 16px;
        font-weight: 600;
        height: 56px;
        line-height: 20px;
        min-height: 56px;
        padding: 0 20px;
        width: 100%;
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
    } 
    .bo-blog__filter {
        width: 100%;
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
                min-height: 44px;
                height: 44px;
    }
.bo-blog__filters-list {
    background: transparent;
}
    .bo-blog__filters.is-open .bo-blog__filters-list {
        padding: 0;
    }
    .bo-blog__pagination .page-numbers {
        font-size: 20px;
        height: 44px;
        line-height: 24px;
        min-width: 40px;
        padding: 0 16px;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
    } 
        .bo-blog__pagination .page-numbers.prev, .bo-blog__pagination .page-numbers.next {
        height: 44px;
        min-width: 40px;
        width: 40px;
    } 
}

/* ==========================================================================
   BO Charity — Single Post Page (single.php)
   ========================================================================== */

/* Main wrapper and container */
.bo-single-section {
  background-color: var(--bo-blue);
  padding: 64px 0 64px;
  position: relative;
  overflow: hidden;
}

.bo-single-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.bo-single-header-card, .bo-single-content-card {
    background-color: #F3FAFD;
    border-radius: var(--bo-radius-md);
    /* box-shadow: var(--bo-shadow); */
    position: relative;
    border-radius: 15px;
}
.bo-single-header-card {
    padding: 40px;
    margin-bottom: 0;
    border-radius: 15px 15px 0 0;
}

.bo-single-content-card {
    padding: 40px;
    margin-bottom: 60px;
    border-radius: 0 0 15px 15px;
    padding-top: 0;
}

.bo-single-meta {
    display: grid;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}

.bo-single-date {
    color: #1F61AE;
    font-family: Geologica;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.bo-single-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    border-radius: 30px;
    background: #E8F5FB;
    color: #1897D4;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    text-transform: uppercase;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    height: 40px;
    width: 166px;
    text-align: center;
    justify-content: center;
}

.bo-single-badge svg {
  width: 22px;
  height: 16px;
  flex: 0 0 auto;
}

.bo-single-badge svg path {
  fill: currentColor;
}

.bo-single-title {

    color: #1F3566;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
}
.bo-single-featured-image {
    width: 100%;
    max-height: 700px;
    display: block;
    border-radius: 15px;
    height: 700px;
    object-fit: cover;
}
/* Decorative SVGs in Header Card */
.bo-single-decor-book {
  position: absolute;
  right: 40px;
  top: 40px;
  width: 107px;
  height: 80px;
  pointer-events: none;
}

.bo-single-decor-hand {
  position: absolute;
  right: 50px;
  top: 145px;
  width: 77px;
  height: 80px;
  pointer-events: none;
}

.bo-single-content {
    color: #1F3566;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
}

.bo-single-content p {
  margin-top: 0;
  margin-bottom: 40px;
}

.bo-single-content p:last-child {
  margin-bottom: 0;
}

.bo-single-content h1,
.bo-single-content h2,
.bo-single-content h3,
.bo-single-content h4,
.bo-single-content h5,
.bo-single-content h6 {
  color: var(--bo-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 48px;
  margin-bottom: 20px;
}

.bo-single-content h2 {
  font-size: clamp(22px, 2.8vw, 30px);
}

.bo-single-content h3 {
  font-size: clamp(20px, 2.4vw, 24px);
}

.bo-single-content ul,
.bo-single-content ol {
  margin-top: 0;
  margin-bottom: 40px;
  padding-left: 40px;
}

.bo-single-content li {
  margin-bottom: 10px;

}

.bo-single-content li::marker {
    color: #1F3566;
}
.bo-single-content ul li {
  list-style-type: disc;
}

.bo-single-content ol li {
  list-style-type: decimal;
}

.bo-single-content blockquote {
  margin: 36px 0;
  padding: 0 0 0 28px;
  border-left: 4px solid var(--bo-blue-light);
  font-size: 20px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--bo-heading);
  font-style: normal;
}

/* Related Posts Section */
.bo-single-related {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.bo-single-related__head {
  margin-bottom: 40px;
  position: relative;
}

.bo-single-related__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bo-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.bo-single-related__badge svg {
  width: 22px;
  height: 16px;
  flex: 0 0 auto;
}

.bo-single-related__badge svg path {
  fill: currentColor;
}

.bo-single-related__title {
  color: var(--bo-white);
  font-size: clamp(24px, 3.8vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  margin: 20px 0 0;
  max-width: 80%;
}

.bo-single-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Decorative icons in Related Posts */
.bo-single-related-decor-book {
  position: absolute;
  right: 20px;
  top: 10px;
  width: 107px;
  height: 80px;
  pointer-events: none;
  opacity: 0.8;
}

.bo-single-related-decor-hand {
  position: absolute;
  right: 140px;
  top: 10px;
  width: 77px;
  height: 80px;
  pointer-events: none;
  opacity: 0.8;
}

.bo-single-related-decor-book svg path,
.bo-single-related-decor-hand svg path {
  fill: rgba(255, 255, 255, 0.25) !important;
}

/* Responsive adjustments */
@media (max-width: 1025px) {
  .bo-single-section {
    padding: 48px 0 72px;
  }
  
  .bo-single-header-card {
    padding: 32px;
  }

  .bo-single-content-card {
    padding: 40px 48px;
    margin-bottom: 0px;
  }



  .bo-single-decor-book {
    right: 24px;
    top: 32px;
    width: 90px;
    height: auto;
  }

  .bo-single-decor-hand {
    right: 32px;
    top: 120px;
    width: 65px;
    height: auto;
  }

  .bo-single-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  
  .bo-single-related-decor-book {
    right: 10px;
    top: 5px;
    width: 80px;
    height: auto;
  }

  .bo-single-related-decor-hand {
    right: 100px;
    top: 5px;
    width: 60px;
    height: auto;
  }
} 

@media (max-width: 767px) {
  .bo-single-section {
    padding: 32px 0 56px;
  }

  .bo-single-header-card {
    padding: 24px 20px;
    margin-bottom: 16px;
    text-align: center;
  }

.bo-single-meta {
    display: grid;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}


  .bo-single-content-card {
    padding: 32px 20px;
    margin-bottom: 0px;
  }

  .bo-single-content {
    font-size: 16px;
  }

  .bo-single-content blockquote {
    padding-left: 20px;
    font-size: 18px;
    margin: 28px 0;
  }

  /* Reposition SVGs on mobile so they stack on the top right */
  .bo-single-decor-book {
    right: 12px;
    top: 12px;
    width: 60px;
    height: auto;
  }

  .bo-single-decor-hand {
    right: 16px;
    top: 60px;
    width: 45px;
    height: auto;
  }

  .bo-single-related__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bo-single-related__head {
    text-align: center;
  }
  
  .bo-single-related__title {
    max-width: 100%;
  }

  .bo-single-related-decor-book,
  .bo-single-related-decor-hand {
    display: none; /* Hide decorative background icons on small screens to save space */
  }
}



.single .bo-container {
    max-width: 1840px;
}

.bo_single_head {
    display: flex;
    justify-content: space-between;
    align-items: end;
        margin-bottom: 40px;
}

.single .bo-news__head-right {
    grid-template-columns: 1fr;
}

.single .bo-about__title {
    max-width: 100%;
    font-size: 40px;
    color: #F3FAFD;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
}
.single .bo-news__head {
    grid-template-columns: 1fr 1fr;
        margin-bottom: 24px;
}
.single .bo-news_ .bo-container {
    padding: 0;
}



 

.single .bo-project-related-news .owl-wrapper-outer {
    overflow: hidden;
    margin: 0 -4px;
}

.single .bo-project-related-news .bo-news__list.owl-carousel {
    display: block;
}

.single .bo-project-related-news .owl-wrapper {
    display: flex !important;
}

.single .bo-project-related-news .owl-item {
    float: none !important;
    padding: 0 4px;
    box-sizing: border-box;
}

.single .bo-project-related-news .owl-controls {
    position: relative;
    margin-top: 24px;
}


.single .bo-project-related-news .owl-buttons {
    justify-content: center;
    gap: 16px;
}

.single .bo-project-related-news .owl-buttons > div {
    width: 22px;
    height: 22px;
    background: #F3FAFD !important;
    box-shadow: none;
}

.single .bo-project-related-news .owl-buttons > div:hover {
    background: #FFFFFF !important;
}

.single .bo-project-related-news .bo-owl-arrow {
    width: 7px;
    height: 12px;
    background-size: contain;
}

.single .bo-project-related-news .owl-pagination {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0;
    transform: none;
} 

.single .bo-project-related-news .owl-page {
    display: inline-flex;
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.single .bo-project-related-news .owl-page span {
    display: none !important;
}
 
.single .bo-project-related-news .owl-page.active {
    background: #FFFFFF;
}

.bo-research-single .bo-single-header-card {
    margin-bottom: 28px;
}

.bo-research-viewer {
    padding: 20px;
    background: #F3FAFD;
    border-radius: 15px;
}

.bo-research-viewer__stage {
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 420px;
    overflow: auto;
} 

.bo-research-viewer__canvas {
    max-width: 100%;
    height: auto;
    background: #FFFFFF;
        border-radius: 30px;

}

.bo-research-viewer__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.bo-research-viewer__page-list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.bo-research-viewer__page-control, .bo-research-viewer__page-number, .bo-research-viewer__page-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 44px;
    padding: 0 7px;
    color: #BFBFBF;
    background: #FFFFFF;
    border: 0;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    /* font-family: Montserrat; */
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.bo-research-viewer__page-control,
.bo-research-viewer__page-number {
    cursor: pointer;
}

.bo-research-viewer__page-control {
    width: 52px;
    min-width: 44px;
    padding: 0;
    color: #1F61AE;
}
.bo-research-viewer__page-control span {
    font-size: 34px;
    line-height: 1;

    font-size: 0px;
    width: 9px;
    height: 12px;
}
.js-research-pdf-prev {
    background-image: url(/wp-content/uploads/2026/05/weui_arrow-outlined-4.svg);
        background-repeat: no-repeat;
    background-position: center;
}
.js-research-pdf-next {
    background-image: url(/wp-content/uploads/2026/05/weui_arrow-outlined-5.svg);
        background-repeat: no-repeat;
    background-position: center;
}


.bo-research-viewer__page-control:disabled {
    opacity: 0.45;
    cursor: default;
}

.bo-research-viewer__page-number.is-active {
    color: #1F61AE;
    background: #fff;
}

.bo-research-viewer__page-dots {
    cursor: default;
}

.bo-research-viewer__loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    color: #404040;
    font-size: 16px;
    font-weight: 600;
}

.bo-research-viewer__loader[hidden] {
    display: none;
}

.bo-research-viewer__fallback {
    margin-top: 18px;
    text-align: center;
}

.bo-research-viewer__fallback a {
    color: #1897D4;
    font-weight: 600;
}

.bo-tender-documents {
    margin-top: 40px;
}

.bo-tender-documents__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.bo-tender-document {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 48px;
    padding: 20px 32px;
    border-radius: 15px;
    background: #1897D4;
}

.bo-tender-document__title {
  color: #F3FAFD;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.bo-tender-document__download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 10px;
    min-width: 198px;
    min-height: 48px;
    padding: 10px 28px;
    background: #FFFFFF;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #1897D4;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.bo-tender-document__download:hover {
    color: #FFFFFF;
       background: var(--bo-blue);
}

.bo-tender-document__download svg {
    flex: 0 0 auto;
}



@media (max-width: 1025px) {
.single .bo-blog__pattern.mobile {
        position: relative;
        bottom: 0;
    }
    .bo-single-section {
        padding: 32px 0 32px;
    } 
.bo-single-badge {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    width: 157px;
}
.bo-single-title {
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}
.bo-single-featured-image {
    max-height: 350px;
    height: 350px;
}
    .bo-single-header-card {
        padding: 28px;
    }
.bo-single-content-card {
     padding: 28px;
        margin-bottom: 0px;
    }
.bo-single-content {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}
.bo-news_ {
  display: none !important;
}

.single .bo-project-related-news.bo-news_ {
  display: block !important;
}
}
@media (max-width: 767px) {
    .bo-tender-documents__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .bo-tender-document {
        padding-left: 14px;
    }

    .bo-single-badge {
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        margin: 0 auto;
    }
.bo_single_head {
    display: grid;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 28px;
}
    .single .bo-blog__pattern.mobile {
        position: relative;
        top: -82px;
    }
        .bo-single-title {
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 24px; 
        max-width: 87%;
        text-align: left;
    }
.bo-single-date {
    color: #1F61AE;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    border-radius: 30px;
    background: rgba(24, 151, 212, 0.05);
    padding: 10px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
        position: absolute;
        bottom: -64px;
        width: 100%;
}
.bo_single_head > div {
    position: relative;
}
    .bo-single-badge {
        width: 100%;
    }
    .bo-single-featured-image {
        max-height: 180px;
        height: 180px;
    } 
    .bo-single-content {
        font-size: 16px;
        font-style: normal;
        line-height: 24px;
    }
    .bo-single-header-card, .bo-single-content-card {
        border-radius: 15px;
    }
.bo-single-content p {
    margin-bottom: 28px;
}
.bo-single-content ul, .bo-single-content ol {
    margin-top: 0;
    margin-bottom: 28px;
    padding-left: 20px;
}
    .bo-single-header-card {
        padding: 28px 20px;
    }
    .bo-single-content-card {
        padding: 24px 20px;
    }
}
@media (min-width: 1025px) {
.projects_pages .bo-blog__head {
    grid-template-columns: 790px 1fr 171px;
}
}
.projects_pages .bo-blog__pattern {
    width: 171px;
}

.projects_pages .bo-news-card__image {
    height: 288px;
}

.projects_pages .bo-news-card__content {
    min-height: 168px;
    background: #F3FAFD;
}

@media (min-width: 768px) and (max-width: 1025px) {
.projects_pages .bo-blog__filters-list {
        flex-wrap: wrap;
    }
.projects_pages .bo-blog__filter {
        flex: auto;
        width: auto;
    } 
}
@media (max-width: 767px) {
.projects_pages .bo-blog__pattern {
    width: auto;
}
}


.single-project .bo-single-meta {
    display: flex;
    justify-content: space-between;
}
.single-project .bo_single_head {
    display: block;
}
.single-project .bo-single-date {
    color: #1897D4;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 10px 28px;
    border-radius: 30px;
    background: #E8F5FB;
}
.single-project .bo-single-badge {
    width: auto;
}

.single-project .bo-single-content-card {
    margin-bottom: 40px;
}
.single-project .bo-single-content {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}
.single-project .bo-single-content li {
    margin-bottom: 0;
}
.single-project .bo-single-content ul, .single-project .bo-single-content ol {
    margin-top: 0;
    margin-bottom: 0px;
    padding-left: 40px;
}
.single-project .bo-single-content p {
    margin-top: 0;
    margin-bottom: 0;
} 
.single-project .owl-prev .bo-owl-arrow {
    background-image: url(/wp-content/uploads/2026/05/weui_arrow-outlined-4.svg);
}
.single .bo-project-related-news .owl-buttons > div {
    width: 48px;
    height: 44px;
}
.single .owl-next .bo-owl-arrow {
    background-image: url(/wp-content/uploads/2026/05/weui_arrow-outlined-5.svg);
}
.single .bo-project-related-news .bo-owl-arrow {
    background-size: 100%;
}
.single .bo-project-related-news .bo-owl-arrow {
    width: 12px;
    height: 24px;
}
.single .bo-project-related-news .owl-buttons {
    gap: 40px;
}
@media (max-width: 1025px) {
.single .bo-project-related-news .owl-buttons {
    justify-content: space-between;
}
} 

.research_page .bo-blog__inner {
    gap: 40px;
}
.research_page .bo-news-card__image::after {
    content: '';
    display: block;
    width: 40px;
    background-image: url(/wp-content/uploads/2026/05/heading.svg);
    height: 40px;
    top: 24px;
    position: absolute;
    right: 24px;
}
.research_page .bo-news-card__image {
  position: relative;
}

.research_page .bo-news-card__image {
    position: relative;
    display: block;
    height: 435px;
    overflow: hidden;
    background: #FBFBFB;
    border-radius: 30px 30px 0 0;
    padding: 8px;
}

.research_page .bo-news-card__image img {
    border-radius: 30px;
}
.research_page .bo-news-card:hover .bo-news-card__image img {
    transform: scale(1);
}
.research_page .bo-news-card__date {
    margin-bottom: 12px;
    color: #1897D4;
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: 10px;
}
.research_page .bo-news-card__content {
    min-height: auto;
    padding: 12px 16px;
    background: var(--bo-white);
    border-radius: 0 0 30px 30px;
    margin-top: 0;
}
.research_page .bo-news-card__title {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}
@media (min-width: 1024px) {
.page-template-research-page .bo-blog__grid {
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
}
.more_research {
    color: #1897D4;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    gap: 12px;
}
@media (max-width: 1024px) {
.research_page .bo-blog__inner {
    gap: 40px;
}
.research_page .bo-news-card__image {
    position: relative;
    display: block;
    height: 332px;
 
    width: 100%;
}
.research_page .bo-news-card__title {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}
.more_research {
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
}
@media (max-width: 767px) {
.research_page .bo-blog__inner {
    gap: 16px;
}
.research_page .bo-news-card__image {
    position: relative;
    display: block;
    height: 274px;
    width: 100%;
}
.research_page .bo-news-card__title {
    font-size: 16px;
}
}

.single-research .bo-single-section {
    background-color: #F3FAFD;
}
.single-research .bo-header {
    background-color: #F3FAFD;
}

.single-research .bo-single-title {
    text-align: center;
}
.single-research .bo-research-single .bo-single-header-card {
    margin-bottom: 0;
}

.bo-research-viewer__page-number:hover {
    color: #1F61AE;
}
@media (max-width: 767px) {
.bo-research-viewer__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    justify-content: space-between;
    flex-wrap: wrap;
}
}
.bo-research-viewer {
    padding: 0;
    background: #F3FAFD;
    border-radius: 30px;
}

.projects_pages .bo-news-card__image {
    width: 100%;
}

@media (min-width: 1024px) {
    .tenders_page .bo-blog__grid {
        gap: 12px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.bo-blog__head_ {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 44px;
}
.tenders_page .bo-blog__text {
    max-width: 100%;
        margin-top: 24px;
}

.research_page.tenders_page .bo-news-card__image::after {
    content: '';
    background-image: none;
}
.research_page.tenders_page .bo-news-card__image {
    height: 320px;
} 

.research_page.tenders_page .bo-news-card__date {
    color: #1897D4;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.flex_card_data {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bo-news-card__number {
    color: #1897D4;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.research_page.tenders_page .bo-project-card__label {
    color: #1897D4;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
@media (max-width: 1025px) {
.research_page.tenders_page .bo-blog__head_ {
    position: relative;
}
.research_page.tenders_page .bo-blog__pattern.mobile {
        position: absolute;
              top: 54px;
        right: 0;
                height: 74px;
    }
 .research_page.tenders_page .bo-blog__title {
        max-width: 50%;
    }
.research_page.tenders_page .bo-project-card__label {
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.research_page.tenders_page .bo-news-card__date {
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.bo-news-card__number {
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
}
.single-tenders .bo_single_head {
    gap: 44px;
}
.number_tender {
    color: #1897D4;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    border-radius: 30px;
    background: #E8F5FB;
    width: fit-content;
    padding: 10px 28px;
}
@media (max-width: 1025px) {
.bo-tender-document {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        width: 100%;
}
.bo-tender-document {
    padding: 20px;
} 
.bo-tender-document__download {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 180%;
}
    .bo-tender-document__title {
        width: 100%;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
    }
.bo-tender-document__download {
    width: 100%;
}
.single-tenders .bo_single_head {
    position: relative;
}
    .single.single-tenders .bo-blog__pattern.mobile {
        position: absolute;
        top: 0;
    }
.number_tender {
    width: 100%;
}
.single.single-tenders .bo-single-date {
        position: relative;
        bottom: 0;
        width: 100%;
    }
.single.single-tenders .bo-single-meta {
        gap: 5px;
    }
}

/* Gallery page */
.bo-gallery-page {
    background: #1f61ae;
}

.bo-gallery-page__section {
    background: #1f61ae;
    padding: 64px 0 40px;
}

.bo-gallery-page .bo-container {
    padding-left: 20px;
    padding-right: 20px;
}

.bo-gallery-page__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bo-gallery-page .bo-blog__head {
    align-items: end;
    display: grid;
    gap: 44px;
    grid-template-columns: minmax(0, 724px) minmax(0, 1fr) 112px;
    margin: 0;
}

.bo-gallery-page .bo-blog__title-group {
    gap: 24px;
}

.bo-gallery-page .bo-blog__badge {
    align-self: flex-start;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    width: fit-content;
    padding: 10px 28px;
    text-transform: uppercase;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.bo-gallery-page .bo-blog__badge img {
    height: 20px;
    object-fit: contain;
    width: 20px;
}

.bo-gallery-page .bo-blog__title {
    color: #f3fafd;
    font-size: 40px;
    font-weight: 600;
    line-height: 44px;
    max-width: 724px;
}

.bo-gallery-page .bo-blog__text {
    color: #f9f9f9;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    max-width: none;
}

.bo-gallery-page .bo-blog__pattern {
    align-self: end;
    height: 112px;
    justify-self: end;
    object-fit: contain;
    position: static;
    width: 112px;
}

.bo-gallery-page__hero {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bo-gallery-page__hero-media {
    aspect-ratio: 605.3333129882812 / 340;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
}

.bo-gallery-page__hero-media img,
.bo-gallery-page__item img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.bo-gallery-page__slider {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 44px;
    width: 100%;
}

.bo-gallery-page__slider-arrow {
    background-color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 24px;
    border: 0;
    border-radius: 100px;
    flex: 0 0 48px;
    height: 44px;
    padding: 0;
    transition: background-color 0.2s ease;
    width: 48px;
}

.bo-gallery-page__slider-arrow:hover {
    background-color: #e8f5fb;
}

.bo-gallery-page__slider-arrow--prev {
    background-image: url(/wp-content/uploads/2026/04/weui_arrow-outlined.svg);
}

.bo-gallery-page__slider-arrow--next {
    background-image: url(/wp-content/uploads/2026/04/weui_arrow-outlined-1.svg);
}

.bo-gallery-page__numbers {
    align-items: center;
    display: flex;
    gap: 6px;
    justify-content: center;
    margin: 0 40px;
}

.bo-gallery-page__number {
    align-items: center;
    background: #f3fafd;
    border: 0;
    border-radius: 999px;
    color: #b8b8b8;
    display: inline-flex;
    font-size: 18px;
    font-weight: 600;
    height: 44px;
    justify-content: center;
    line-height: 20px;
    min-width: 52px;
    padding: 0 22px;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.bo-gallery-page__number.is-active,
.bo-gallery-page__number:hover {
    color: #1f61ae;
}

.bo-gallery-page__number--dots {
    pointer-events: none;
}

.bo-gallery-page__dots {
    display: none;
}

.bo-gallery-page__grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    width: 100%;
}

.bo-gallery-page__item {
    aspect-ratio: 605.3333129882812 / 340;
    border-radius: 15px;
    display: block;
    overflow: hidden;
}

.bo-gallery-page__item img {
    border-radius: 8px;
    transition: transform 0.25s ease;
}

.bo-gallery-page__item:hover img {
    transform: scale(1.03);
}

.bo-gallery-page__empty {
    background: #f3fafd;
    border-radius: 8px;
    color: #1f3566;
    font-size: 20px;
    line-height: 28px;
    padding: 32px;
    text-align: center;
}

@media (min-width: 768px) and (max-width: 1025px) {
    .page-template-gallery-page {
        --bo-container-padding: 32px;
    }

    .bo-gallery-page__section {
        padding: 32px 0;
    }

    .bo-gallery-page .bo-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .bo-gallery-page .bo-blog__head {
        align-items: end;
        display: grid;
        gap: 16px 24px;
        grid-template-columns: minmax(0, 1fr) 112px;
    }

    .bo-gallery-page .bo-blog__title-group {
        display: contents;
    }

    .bo-gallery-page .bo-blog__badge {
        font-size: 14px;
        grid-column: 1 / -1;
        justify-self: center;
    }

    .bo-gallery-page .bo-blog__title {
        font-size: 28px;
        grid-column: 1 / 2;
        line-height: 32px;
        max-width: 608px;
    }

    .bo-gallery-page .bo-blog__text {
        font-size: 13px;
        grid-column: 1 / 2;
        line-height: 16px;
        margin: 0;
        max-width: 520px;
    }

    .bo-gallery-page .bo-blog__pattern {
        grid-column: 2 / 3;
        grid-row: 2 / 4;
        height: 112px;
        width: 112px;
    }

    .bo-gallery-page__hero {
        gap: 24px;
    }
.bo-gallery-page__grid {
    gap: 6px;
}

}

@media (max-width: 767px) {
    .page-template-gallery-page {
        --bo-container-padding: 20px;
    }

    .bo-gallery-page__section {
        padding: 20px 0;
    }

    .bo-gallery-page .bo-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .bo-gallery-page__inner {
        gap: 16px;
    }

    .bo-gallery-page .bo-blog__head {
        align-items: start;
        display: grid;
        gap: 12px;
        grid-template-columns: minmax(0, 1fr) 40px;
    }

    .bo-gallery-page .bo-blog__title-group {
        display: contents;
    }

    .bo-gallery-page .bo-blog__badge {
        font-size: 12px;
        grid-column: 1 / -1;
        justify-self: stretch;
        line-height: 20px;
        width: 100%;
    }

    .bo-gallery-page .bo-blog__title {
        font-size: 20px;
        grid-column: 1 / 2;
        line-height: 24px;
        max-width: none;
    }

    .bo-gallery-page .bo-blog__text {
        font-size: 13px;
        grid-column: 1 / -1;
        line-height: 16px;
        margin: 0;
        max-width: none;
    }

    .bo-gallery-page .bo-blog__pattern {
        align-self: start;
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        height: 40px;
        width: 40px;
    }

    .bo-gallery-page__hero {
        gap: 12px;
    }

    .bo-gallery-page__slider {
        justify-content: space-between;
    }

    .bo-gallery-page__numbers {
        display: none;
    } 

    .bo-gallery-page__dots {
        align-items: center;
        display: flex;
        flex: 1 1 auto;
        gap: 8px;
        justify-content: center;
        min-width: 0;
        overflow: hidden;
        padding: 0 8px;
    }

    .bo-gallery-page__dot {
        background: rgba(168, 168, 168, 0.3);
        border: 0;
        border-radius: 50%;
        flex: 0 0 8px;
        height: 8px;
        padding: 0;
        transition: background-color 0.2s ease;
        width: 8px;
    }

    .bo-gallery-page__dot.is-active {
        background: #fff;
    }

    .bo-gallery-page__grid {
        gap: 4px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bo-gallery-page__empty {
        font-size: 16px;
        line-height: 24px;
        padding: 24px 20px;
    }
}

/* Help page */
.bo-help-page {
    background: #1f61ae;
}

.bo-help {
    background: #1f61ae;
    padding: 64px 0;
}

.bo-help .bo-container {
    padding-left: 40px;
    padding-right: 40px;
}

.bo-help__inner {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.bo-help__head {
    align-items: flex-end;
    display: flex;
    gap: 44px;
}

.bo-help__title-group {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.bo-help__badge {
    align-items: center;
    background: #e8f5fb;
    border-radius: 30px;
    color: #1897d4;
    display: inline-flex;
    font-size: 16px;
    font-weight: 500;
    gap: 10px;
    justify-content: center;
    line-height: 20px;
    padding: 10px 28px;
    text-transform: uppercase;
    width: fit-content;
}

.bo-help__badge img {
    height: 20px;
    object-fit: contain;
    width: 22px;
}

.bo-help__copy {
    align-items: flex-end;
    color: #f3fafd;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bo-help__title {
    color: #f3fafd;
    font-size: 40px;
    font-weight: 600;
    line-height: 44px;
    margin: 0;
}

.bo-help__text {
    color: #f3fafd;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
}

.bo-help__text p {
    margin: 0;
}

.bo-help__decor {
    align-items: flex-end;
    color: #f3fafd;
    display: flex;
    flex: 0 0 232px;
    gap: 8px;
}

.bo-help__decor-star {
    color: #f8d9aa;
    flex: 0 0 80px;
    height: 80px;
    position: relative;
    width: 80px;
}

.bo-help__decor-star::before,
.bo-help__decor-star::after {
    background: currentColor;
    border-radius: 999px;
    content: "";
    height: 8px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
}

.bo-help__decor-star::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.bo-help__decor-star {
    transform: rotate(45deg);
}

.bo-help__decor-heart {
    display: block;
    flex: 0 0 144px;
    height: 133px;
    width: 144px;
}

.bo-help__decor-heart svg {
    display: block;
    height: 100%;
    width: 100%;
}

.bo-help__notice {
    background: #e8f5fb;
    border-radius: 8px;
    color: #1f61ae;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 16px 20px;
}

.bo-help__body {
    align-items: start;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 716.5fr) minmax(260px, 383fr) minmax(0, 716.5fr);
}

.bo-help-card {
    background: #fdfdfd;
    border-radius: 15px;
    overflow: hidden;
}

.bo-help-card__title {
    align-items: center;
    background: #1f61ae;
    border-radius: 15px;
    color: #fdfdfd;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    justify-content: center;
    line-height: 24px;
    margin: 0;
    min-height: 48px;
    padding: 12px 24px;
    text-align: center;
    text-transform: uppercase;
}

.bo-help-requisites {
    min-height: 504px;
    padding: 8px;
}

.bo-help-requisites__list {
    display: flex;
    flex-direction: column;
}

.bo-help-requisites__row {
    align-items: center;
    border-radius: 15px;
    display: flex;
    gap: 32px;
    min-height: 80px;
    padding: 20px 24px;
}

.bo-help-requisites__row:nth-child(2n) {
    background: #F2F2F7;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.bo-help-requisites__top {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    gap: 32px;
    min-width: 0;
}

.bo-help-requisites__label {
    color: #9999a3;
    flex: 0 0 108px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.bo-help-requisites__divider {
    background: #7dc6f0;
    flex: 0 0 24px;
    height: 2px;
}

.bo-help-requisites__value {
    color: #1f61ae;
    flex: 1 1 auto;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    min-width: 0;
}
.bo-help-copy {
    align-items: center;
    border-radius: 100px;
    color: #1f61ae;
    display: inline-flex;
    flex: 0 0 50px;
    height: 40px;
    justify-content: center;
    padding: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
    width: 50px;
    border-radius: 30px;
    border: 2px solid rgba(24, 151, 212, 0.05);
    background: rgba(24, 151, 212, 0.05);
}
.bo-help-copy svg {
    height: 18px;
    width: 18px;
}

.bo-help-copy:hover,
.bo-help-copy.is-copied {
    background: #ffffff;
    color: #f3fafd;
}

.bo-help-qr {
    align-items: center;
    color: #f3fafd;
    display: flex;
    flex-direction: column;
    margin-top: 37px;
    min-height: 430px;
    border-radius: 15px;
    background: #F3FAFD;
}

.bo-help-qr__title {
    color: #f3fafd;
    font-size: 18px;

    margin: 0;
    max-width: 210px;
    text-align: center;
    color: #1F61AE;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    margin-top: 32px;
}

.bo-help-qr__image {
    align-items: center;

    border: 10px solid #f3fafd;
    display: flex;
    height: 200px;
    justify-content: center;
    margin-top: 40px;
    overflow: hidden;
    width: 200px;
}

.bo-help-qr__image img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.bo-help-payments {
    border: 1px solid rgba(24, 151, 212, 0.10);
    border-radius: 8px;
    display: grid;
    gap: 1px;
    grid-template-columns: 58px 59px 110px 55px 47px;
    margin-top: 40px;
    max-width: 100%;
    overflow: hidden;
    width: auto;
    border-radius: 30px;
    background: rgba(24, 151, 212, 0.10);
    justify-content: center;
    margin-left: 24px;
    margin-right: 24px;
}
.bo-help-payments span {
    align-items: center;
    background: #fdfdfd;
    color: #1f61ae;
    display: flex;
    font-size: 11px;
    font-weight: 700;
    height: 44px;
    justify-content: center;
    line-height: 1;
    white-space: nowrap;
    border-radius: 30px;
    background: rgba(24, 151, 212, 0.05);
}
.bo-help-donate {
    min-height: 504px;
    padding: 20px 32px;
}

.bo-help-donate__form {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 33px;
    justify-content: space-between;

    margin-top: 33px;
}

.bo-help-donate__tabs {
    background: #e8f5fb;
    border-radius: 30px;
    display: flex;
    gap: 8px;
    padding: 4px;
    width: 100%;
}

.bo-help-donate__tab {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 30px;
    color: #1897d4;
    display: flex;
    flex: 1 1 0;
    font-size: 20px;
    font-weight: 500;
    justify-content: center;
    line-height: 28px;
    min-height: 48px;
    padding: 10px 24px;
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.bo-help-donate__tab.is-active {
    background: #1f61ae;
    color: #ffffff;
    font-weight: 600;
}

.bo-help-donate__amounts {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    width: 100%;
}

.bo-help-donate__amount {
    align-items: center;
    background: #e8f5fb;
    border: 2px solid #e8f5fb;
    border-radius: 57px;
    color: #1897d4;
    display: inline-flex;
    font-size: 18px;
    font-weight: 600;
    height: 48px;
    justify-content: center;
    line-height: 24px;
    padding: 8px 20px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bo-help-donate__amount.is-active,
.bo-help-donate__amount:hover {
    background: #1f61ae;
    border-color: #1f61ae;
    color: #f3fafd;
}

.bo-help-donate__separator {
    align-items: center;
    display: flex;
    gap: 40px;
    width: 100%;
}

.bo-help-donate__separator span {
    background: #f7f9fc;
    flex: 1 1 auto;
    height: 2px;
}

.bo-help-donate__separator em {
    color: rgba(131, 145, 161, 0.5);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
    text-transform: uppercase;
}

.bo-help-donate__custom {
    align-items: center;
    color: #1f61ae;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: 500;
    gap: 4px;
    line-height: 24px;
    position: relative;
    text-align: center;
    width: 183px;
}

.bo-help-donate__custom input {
    background: #f3fafd;
    border: 1px solid #1f61ae;
    border-radius: 8px;
    color: #1f61ae;
    font-size: 18px;
    font-weight: 600;
    height: 48px;
    line-height: 24px;
    padding: 12px 34px 12px 16px;
    text-align: center;
    width: 100%;
}

.bo-help-donate__custom::after {
    bottom: 12px;
    color: #1f61ae;
    content: "₴";
    font-size: 18px;
    font-weight: 600;
    pointer-events: none;
    position: absolute;
    right: 65px;
}

.bo-help-donate__submit {
    align-items: center;
    background: #1f61ae;
    border: 0;
    border-radius: 8px;
    color: #f3fafd;
    display: inline-flex;
    font-size: 16px;
    font-weight: 600;
    gap: 16px;
    height: 48px;
    justify-content: center;
    line-height: 180%;
    padding: 12px 32px;
    transition: background-color 0.2s ease, color 0.2s ease;
    width: 297px;
}

.bo-help-donate__submit svg {
    height: 24px;
    width: 26px;
}

.bo-help-donate__submit:hover {
    background: #1897d4;
}

@media (min-width: 768px) and (max-width: 1025px) {
    .page-template-help-page {
        --bo-container-padding: 32px;
    }

    .bo-help {
        padding: 32px 0;
    }

    .bo-help .bo-container {
        padding-left: 32px;
        padding-right: 32px;
    }

    .bo-help__inner {
        gap: 40px;
    }

    .bo-help__head {
        display: grid;
        gap: 40px;
        grid-template-columns: minmax(0, 1fr) 96px;
    }

    .bo-help__title-group {
        display: contents;
    }

    .bo-help__badge {
        font-size: 14px;
        grid-column: 1 / -1;
        justify-self: center;
        line-height: 20px;
    }

    .bo-help__copy {
        align-self: start;
        display: flex;
        flex-direction: column;
        gap: 16px;
        grid-column: 1 / 2;
    }

    .bo-help__title {
        font-size: 28px;
        line-height: 32px;
        max-width: 576px;
    }

    .bo-help__text {
        font-size: 13px;
        line-height: 16px;
        max-width: 576px;
    }

    .bo-help__decor {
        align-self: stretch;
        flex-basis: 96px;
        flex-direction: column;
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        justify-content: space-between;
    }

    .bo-help__decor-star,
    .bo-help__decor-heart {
        flex-basis: auto;
        height: 96px;
        width: 96px;
    }

    .bo-help__decor-star {
        height: 47px;
        width: 47px;
    }

    .bo-help__decor-star::before,
    .bo-help__decor-star::after {
        height: 5px;
        width: 47px;
    }

    .bo-help__body {
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr;
    }

    .bo-help-requisites {
        min-height: 464px;
        order: 1;
    }

    .bo-help-donate {
        min-height: 451px;
        order: 2;
    }

    .bo-help-qr {
        margin-top: 0;
        min-height: 430px;
        order: 3;
    }

    .bo-help-requisites__row {
        gap: 32px;
        min-height: 80px;
    }

    .bo-help-requisites__label {
        flex-basis: 140px;
    }

    .bo-help-donate__form {
        gap: 24px;
        min-height: 363px;
    }

    .bo-help-donate__tab {
        font-size: 18px;
    }

    .bo-help-donate__amounts {
        gap: 12px;
    }

    .bo-help-donate__custom {
        font-size: 14px;
        width: 132px;
    }

    .bo-help-donate__custom input {
        height: 44px;
    }

    .bo-help-donate__custom::after {
        bottom: 10px;
        right: 34px;
    }

    .bo-help-donate__submit {
        height: 44px;
    }

    .bo-help-payments {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        width: 656px;
    }
}

@media (max-width: 767px) {
    .page-template-help-page {
        --bo-container-padding: 21px;
    }

    .bo-help {
        padding: 20px 0;
    }

    .bo-help .bo-container {
        padding-left: 21px;
        padding-right: 21px;
    }

    .bo-help__inner {
        gap: 16px;
    }

    .bo-help__head {
        display: grid;
        gap: 16px;
        grid-template-columns: minmax(0, 1fr) 51px;
    }

    .bo-help__title-group {
        display: contents;
    }

    .bo-help__badge {
        font-size: 12px;
        grid-column: 1 / -1;
        justify-self: stretch;
        line-height: 20px;
        width: 100%;
    }

    .bo-help__copy {
        align-self: start;
        display: flex;
        flex-direction: column;
        gap: 8px;
        grid-column: 1 / 2;
    }

    .bo-help__title {
        font-size: 20px;
        line-height: 24px;
    }

    .bo-help__text {
        font-size: 13px;
        line-height: 16px;
    }

    .bo-help__decor {
        align-self: start;
        flex-basis: 51px;
        flex-direction: column;
        gap: 8px;
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .bo-help__decor-heart {
        flex-basis: auto;
        height: 47px;
        width: 51px;
    }

    .bo-help__decor-star {
        flex-basis: auto;
        height: 51px;
        width: 51px;
    }

    .bo-help__decor-star::before,
    .bo-help__decor-star::after {
        height: 5px;
        width: 51px;
    }

    .bo-help__body {
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr;
    }

    .bo-help-card__title {
        font-size: 18px;
        min-height: 48px;
    }

    .bo-help-requisites {
        min-height: 0;
        order: 1;
    }

    .bo-help-requisites__row {
        align-items: stretch;
        display: flex;
        flex-direction: column;
        gap: 8px;
        min-height: 96px;
        padding: 16px;
    }

    .bo-help-requisites__top {
        align-items: stretch;
        display: flex;
        flex-direction: column;
        gap: 8px;
        min-width: 0;
    }

    .bo-help-requisites__label {
        flex: 0 0 auto;
        font-size: 16px;
        line-height: 24px;
        min-height: 40px;
        padding-right: 58px;
        width: 100%;
    }

    .bo-help-requisites__divider {
        display: none;
    }

    .bo-help-requisites__value {
        font-size: 14px;
        line-height: 16px;
    }

    .bo-help-copy {
        align-self: flex-end;
        flex-basis: auto;
        margin-top: -48px;
    }

    .bo-help-donate {
        min-height: 426px;
        order: 2;
        padding: 8px;
    }

    .bo-help-donate__form {
        gap: 28px;
        min-height: 362px;
    }

    .bo-help-donate__tabs {
        border-radius: 30px;
        gap: 8px;
        min-height: 48px;
        width: 100%;
            
    }

    .bo-help-donate__tab {
        font-size: 12px;
        line-height: 20px;
        min-height: 40px;
        padding: 0 20px;
        white-space: normal;
    }

    .bo-help-donate__amounts {
        display: grid;
        gap: 8px;
        grid-template-columns: repeat(5, 48px);
        justify-content: center;
    }

    .bo-help-donate__amount {
        font-size: 12px;
        height: 48px;
        line-height: 20px;
        padding: 0;
        width: 48px;
    }

    .bo-help-donate__separator {
        gap: 40px;
    }

    .bo-help-donate__separator em {
        font-size: 10px;
        line-height: 10px;
    }

    .bo-help-donate__custom {
        font-size: 11px;
        line-height: 24px;
        width: 102px;
    }

    .bo-help-donate__custom input {
        font-size: 14px;
        height: 44px;
        padding: 10px 26px 10px 10px;
    }

    .bo-help-donate__custom::after {
        bottom: 10px;
        font-size: 14px;
        right: 28px;
    }

    .bo-help-donate__submit {
        height: 44px;
        width: 100%;
    }

    .bo-help-qr {
        margin-top: 0;
        min-height: 302px;
        order: 3;
    }

    .bo-help-qr__title {
        font-size: 18px;
        line-height: 20px;
    }

    .bo-help-qr__image {
        border-width: 7px;
        height: 144px;
        margin-top: 28px;
        width: 144px;
    }

    .bo-help-payments {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        margin-top: 28px;
        width: 272px;
    }

    .bo-help-payments span {
        font-size: 8px;
        height: 44px;
    }

    .bo-help__notice {
        font-size: 13px;
        line-height: 18px;
        padding: 12px 14px;
    }
}

.bo-gallery-page__slider-arrow--next {
    background-image: url(/wp-content/uploads/2026/05/weui_arrow-outlined-5.svg);
}
.bo-gallery-page__slider-arrow--prev {
    background-image: url(/wp-content/uploads/2026/05/weui_arrow-outlined-4.svg);
}

 .page-template-help-page .bo-help__head {
           position: relative;
    } 
@media (min-width: 768px) and (max-width: 1025px) {
    .bo-help__copy {
        align-self: start;
        display: grid;
        flex-direction: column;
        gap: 16px;
        grid-column: 1;
        grid-template-columns: 1fr;
    }
.bo-help-requisites__value {
    color: #1f61ae;
    flex: 1 1 auto;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    min-width: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}  
    .bo-help-requisites__label {
        color: #9999A3;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
    }
.bo-help-card__title {
    padding: 12px 24px;
    text-align: center;
    text-transform: uppercase;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}  
.bo-help-donate__tab.is-active {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
} 
    .bo-help-donate__custom {
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
    }

}
@media (max-width: 767px) {
    .bo-help__copy {
        align-self: start;
        display: grid;
        flex-direction: inherit;
        gap: 8px;
        grid-template-columns: 1fr;
    }
    .bo-help-card__title {
        font-size: 13px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
    }
     .bo-help-requisites__label {
        width: 100%;
        font-size: 10px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
    }
    .bo-help-requisites__top {
        position: relative;
    }
    .bo-help-copy {
        position: absolute;
        top: auto;
        right: 48px;
        margin-top: 0;
    }
     .bo-help-requisites__value {
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 16px;
    }
.bo-help-donate__tab.is-active {
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 10px;
}
    .bo-help-donate__custom {
        font-size: 11px;
        line-height: 24px;
        width: 102px;
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
    }
    .bo-help-donate__submit {
        font-size: 13px;
        font-style: normal;
        font-weight: 600;
        line-height: 180%;
    } 
.bo-help-qr__title {
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 40px;
                margin-top: 0;
    }
}

/* ================================
   Report Page
   ================================ */
 
.bo-report-page,
.page-template-report-page {
    background: #1f61ae;
}

.bo-report {
    background: #1f61ae;
    padding: 64px 0;
}

.bo-report .bo-container {
    max-width: 1920px;
    padding-left: 40px;
    padding-right: 40px;
}

.bo-report__shell {
    background: #fdfdfd;
    border-radius: 40px;
    padding: 40px;
}

.bo-report__panel {
    align-items: start;
    background: #1f61ae;
    border-radius: 40px;
    color: #fff;
    column-gap: 56px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 32px 40px;
    row-gap: 80px;
}

.bo-report__intro {
    display: flex;
    flex-direction: column;
    gap: 16px;
    grid-column: span 2;
}

.bo-report__title {
    color: #fff;
    font-family: Geologica, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin: 0;
    text-transform: uppercase;
}

.bo-report__text {
    color: #fff;
    font-family: Geologica, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.bo-report__text p:not(:last-child) {
    margin-bottom: 16px;
}

.bo-report__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    grid-column: span 3;
    min-width: 0;
    width: 100%;
}

.bo-report-alert {
    border-radius: 15px;
    font-family: Geologica, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 16px 24px;
}

.bo-report-alert--sent {
    background: #f3fafd;
    color: #1f61ae;
}

.bo-report-alert--error {
    background: #fff2f2;
    color: #ad2727;
}

.bo-report-alert--required {
    background: #fff2f2;
    color: #ad2727;
}

.bo-report-form,
.bo-report-form__body,
.bo-report-form__group,
.bo-report-options,
.bo-report-fields,
.bo-report-info {
    display: flex;
    flex-direction: column;
}

.bo-report-form {
    gap: 24px;
    margin: 0;
}

.bo-report-form__body {
    background: #f3fafd;
    border-radius: 15px;
    gap: 24px;
    padding: 16px;
}

.bo-report-form__group {
    background: #fff;
    border-radius: 15px;
    border: 2px solid transparent;
    gap: 20px;
    padding: 24px;
}

.bo-report-form__group.is-invalid {
    border-color: #d94b4b;
}

.bo-report-form__group-head {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bo-report-form__group-head h2 {
    color: #1f3566;
    font-family: Geologica, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
    text-transform: uppercase;
}

.bo-report-form__group-head p,
.bo-report-form__hint,
.bo-report-form__subhead {
    color: #1f61ae;
    font-family: Geologica, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.bo-report-form__hint ul {
    list-style: disc;
    margin: 0;
    padding-left: 24px;
}

.bo-report-options,
.bo-report-fields {
    gap: 20px;
}

.bo-report-option {
    align-items: center;
    background: #f2f2f7;
    border-radius: 4px;
    color: #9999a3;
    cursor: pointer;
    display: flex;
    gap: 16px;
    min-height: 40px;
    padding: 10px 28px;
    position: relative;
    transition: background-color var(--bo-transition), color var(--bo-transition);
    width: 100%;
}

.bo-report-option input {
    height: 1px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 1px;
}

.bo-report-option__check {
    align-items: center;
    background: #a8a8a8;
    border: 1px solid #a8a8a8;
    border-radius: 8px;
    display: inline-flex;
    flex: 0 0 24px;
    height: 24px;
    justify-content: center;
    opacity: 0.5;
    transition: background-color var(--bo-transition), border-color var(--bo-transition), opacity var(--bo-transition);
    width: 24px;
}

.bo-report-option__check::before {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    content: "";
    display: block;
    height: 7px;
    transform: rotate(-45deg) translate(1px, -1px);
    width: 12px;
}

.bo-report-option__text {
    color: currentColor;
    flex: 1 1 auto;
    font-family: Geologica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    min-width: 0;
}

.bo-report-option:hover,
.bo-report-option.is-active {
    background: #f3fafd;
    color: #1f61ae;
}

.bo-report-option:has(input:checked) {
    background: #f3fafd;
    color: #1f61ae;
}

.bo-report-option.is-active .bo-report-option__check {
    background: #1f61ae;
    border-color: #1f61ae;
    opacity: 1;
}

.bo-report-option:has(input:checked) .bo-report-option__check {
    background: #1f61ae;
    border-color: #1f61ae;
    opacity: 1;
}

.bo-report-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.bo-report-field > span:not(.screen-reader-text) {
    color: #1f61ae;
    font-family: Geologica, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.bo-report-field input,
.bo-report-field textarea {
    background: #f2f2f7;
    border: 0;
    border-radius: 4px;
    color: #1f3566;
    font-family: Geologica, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    outline: 0;
    padding: 10px 28px;
    width: 100%;
}

.bo-report-field input.is-invalid,
.bo-report-field textarea.is-invalid {
    box-shadow: 0 0 0 2px #d94b4b inset;
}

.bo-report-client-error {
    color: #ad2727;
    font-family: Geologica, sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    margin: 0;
}

.bo-report-field input {
    min-height: 44px;
}

.bo-report-field textarea {
    min-height: 92px;
    resize: vertical;
}

.bo-report-field input::placeholder,
.bo-report-field textarea::placeholder,
.bo-report-file-modal__link input::placeholder {
    color: #9999a3;
    opacity: 1;
}

.bo-report-fieldset {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bo-report-conditional[hidden],
.bo-report-upload[hidden],
.bo-report-attachments[hidden],
.bo-report-form__notice[hidden] {
    display: none;
}

.bo-report-conditional {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.bo-report-upload {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.bo-report-upload__button {
    align-items: center;
    align-self: flex-start;
    background: #1897d4;
    border: 0;
    border-radius: 4px;
    color: #f3fafd;
    display: inline-flex;
    font-family: Geologica, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    gap: 10px;
    justify-content: center;
    line-height: 24px;
    min-height: 48px;
    padding: 12px 32px;
}

.bo-report-upload__button:hover,
.bo-report-file-modal__link button:hover,
.bo-report-file-modal__attach:hover {
    background: #1f3566;
}

.bo-report-attachments {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.bo-report-attachment {
    display: flex;
    gap: 8px;
    width: 100%;
}

.bo-report-attachment__name,
.bo-report-attachment__remove {
    align-items: center;
    background: #c5e7f9;
    border: 0;
    border-radius: 4px;
    color: #1f61ae;
    display: flex;
    min-height: 48px;
}

.bo-report-attachment__name {
    flex: 1 1 auto;
    font-family: Geologica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    min-width: 0;
    overflow: hidden;
    padding: 12px 32px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bo-report-attachment__remove {
    flex: 0 0 auto;
    justify-content: center;
    padding: 12px 32px;
}

.bo-report-attachment__remove svg {
    height: 24px;
    width: 24px;
}

.bo-report-form__submit {
    align-items: center;
    align-self: center;
    background: #1f61ae;
    border: 0;
    border-radius: 8px;
    color: #f3fafd;
    display: inline-flex;
    font-family: Geologica, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    justify-content: center;
    line-height: 24px;
    min-height: 48px;
    min-width: 304px;
    padding: 12px 32px;
}

.bo-report-form__submit:hover {
    background: #1897d4;
}

.bo-report-form__notice {
    color: #1f61ae;
    font-family: Geologica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin: 0;
    text-align: center;
}

.bo-report-info {
    gap: 8px;
}

.bo-report-info__card {
    background: #f3fafd;
    border-radius: 15px;
    color: #1f61ae;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
}

.bo-report-info__card h2 {
    color: #1f3566;
    font-family: Geologica, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
    text-transform: uppercase;
}

.bo-report-info__card p,
.bo-report-info__card li {
    color: #1f61ae;
    font-family: Geologica, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.bo-report-info__card ol {
    margin: 0;
    padding-left: 22px;
}

.bo-report-info__card--thanks {
    align-items: normal;
    text-align: left;
    border-radius: 15px;
    background: #FFF;
    color: #1F61AE;
}
.bo-report-info__card--thanks p {
color: #1F61AE;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 24px;
}

.bo-report-file-modal {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: 24px;
    pointer-events: none;
    position: fixed;
    transition: opacity var(--bo-transition), visibility var(--bo-transition);
    visibility: hidden;
    z-index: 10000;
}

.bo-report-file-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.bo-report-file-modal__overlay {
    background: rgba(0, 0, 0, 0.55);
    inset: 0;
    position: absolute;
}

.bo-report-file-modal__dialog {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    color: #242424;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-height: calc(100vh - 48px);
    max-width: 1000px;
    overflow: auto;
    padding: 40px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.bo-report-file-modal__head {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    width: 100%;
}

.bo-report-file-modal__head h2 {
    color: #242424;
    font-family: Geologica, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin: 0;
}

.bo-report-file-modal__close {
    background: transparent;
    border: 0;
    flex: 0 0 40px;
    height: 40px;
    padding: 0;
    position: relative;
    width: 40px;
}

.bo-report-file-modal__close span {
    background: #bfbfbf;
    border-radius: 999px;
    height: 2px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 21px;
}

.bo-report-file-modal__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.bo-report-file-modal__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.bo-report-file-modal__library {
    align-items: center;
    align-self: center;
    background: #fff;
    border: 2px solid #1897d4;
    border-radius: 4px;
    color: #1897d4;
    display: inline-flex;
    font-family: Geologica, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    gap: 10px;
    justify-content: center;
    line-height: 24px;
    min-height: 48px;
    padding: 12px 32px;
}

.bo-report-file-modal__library:hover {
    background: #f3fafd;
}

.bo-report-file-modal__note {
    color: #9999a3;
    font-family: Geologica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    text-align: center;
}

.bo-report-file-modal__link {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bo-report-file-modal__link label {
    color: #1f61ae;
    font-family: Geologica, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.bo-report-file-modal__link-row {
    display: flex;
    gap: 8px;
    width: 100%;
}

.bo-report-file-modal__link input {
    background: #f2f2f7;
    border: 0;
    border-radius: 8px;
    color: #1f3566;
    flex: 1 1 auto;
    font-family: Geologica, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    min-height: 40px;
    min-width: 0;
    outline: 0;
    padding: 8px 16px;
}

.bo-report-file-modal__link button,
.bo-report-file-modal__attach {
    align-items: center;
    background: #1897d4;
    border: 0;
    border-radius: 4px;
    color: #f3fafd;
    display: inline-flex;
    font-family: Geologica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    justify-content: center;
    line-height: 24px;
    min-height: 40px;
    padding: 10px 32px;
}

.bo-report-file-modal__attach {
    align-self: center;
    background: #1f61ae;
    font-size: 16px;
    min-height: 48px;
    min-width: 304px;
    padding: 12px 32px;
}

@media (max-width: 1199px) {
    .bo-report__panel {
        column-gap: 32px;
        padding: 32px;
    }

    .bo-report__title {
        font-size: 22px;
        line-height: 30px;
    }
}

@media (max-width: 1025px) {
    .bo-report {
        padding: 32px 0;
    }

    .bo-report .bo-container {
        padding-left: 32px;
        padding-right: 32px;
    }

    .bo-report__shell {
        background: transparent;
        border-radius: 0;
        padding: 0;
    }

    .bo-report__panel {
        display: flex;
        flex-direction: column;
        gap: 44px;
        padding: 32px;
    }

    .bo-report__intro,
    .bo-report__content {
        grid-column: auto;
        width: 100%;
    }

    .bo-report__text {
        font-size: 14px;
        line-height: 24px;
    }

    .bo-report__content {
        gap: 8px;
    }

    .bo-report-form__body {
        gap: 8px;
        padding: 8px;
    }

    .bo-report-info {
        gap: 8px;
    }
}

.back_mobile_btn {
    text-align: center;
}
@media (max-width: 767px) {
    .bo-report {
        padding: 20px 0;
    }
.back_mobile_btn {
    text-align: center;
    border-radius: 15px;
    background: #FFF;
    padding: 24px 16px;
} 

    .bo-report .bo-container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .bo-report__panel {
        border-radius: 0;
        gap: 8px;
        padding: 0;
    }

    .bo-report__intro {
        background: #f3fafd;
        border-radius: 15px;
        padding: 28px 20px;
    }

    .bo-report__title {
        color: #1f3566;
        font-size: 20px;
        font-weight: 500;
        line-height: 24px;
    }

    .bo-report__text {
        display: none;
    }

    .bo-report-form__body {
        background: transparent;
        border-radius: 0;
        padding: 0;
    }

    .bo-report-form__group {
        gap: 20px;
        padding: 24px 16px;
    }

    .bo-report-form__group-head {
        gap: 4px;
        text-align: center;
    }

    .bo-report-form__group-head h2 {
        font-size: 14px;
        line-height: 24px;
    }

    .bo-report-form__group-head p,
    .bo-report-form__hint,
    .bo-report-form__subhead {
        font-size: 13px;
        line-height: 16px;
    }

    .bo-report-form__hint ul {
        padding-left: 20px;
        text-align: left;
    }

    .bo-report-option {
        gap: 16px;
        padding: 10px 16px;
    }

    .bo-report-option__text {
        font-size: 12px;
        line-height: 16px;
    }

    .bo-report-field > span:not(.screen-reader-text) {
        font-size: 13px;
        line-height: 16px;
    }

    .bo-report-field input,
    .bo-report-field textarea {
        font-size: 12px;
        line-height: 16px;
        padding: 10px 16px;
    }

    .bo-report-upload__button,
    .bo-report-form__submit,
    .bo-report-file-modal__attach {
        width: 100%;
    }

    .bo-report-attachment__name {
        font-size: 12px;
        line-height: 16px;
        padding: 12px 16px;
    }

    .bo-report-attachment__remove {
        padding: 12px 16px;
    }

    .bo-report-info__card {
        padding: 24px 16px;
    }

    .bo-report-info__card h2 {
        font-size: 14px;
        line-height: 24px;
        text-align: center;
    }

    .bo-report-info__card p,
    .bo-report-info__card li {
        font-size: 13px;
        line-height: 16px;
    }

    .bo-report-file-modal {
        padding: 8px;
    }

    .bo-report-file-modal__dialog {
        gap: 28px;
        max-height: calc(100vh - 16px);
        padding: 24px 16px;
    }

    .bo-report-file-modal__head h2 {
        font-size: 18px;
        line-height: 24px;
    }

    .bo-report-file-modal__library {
        font-size: 13px;
        padding: 10px 16px;
        width: 100%;
    }

    .bo-report-file-modal__link-row {
        flex-direction: column;
    }

    .bo-report-file-modal__link button {
        width: 100%;
    }
}

.page-template-report-page p:not(:last-child) {
  margin-bottom: 0px;
} 

/* ================================
   Contact Page
   ================================ */

.bo-contact-page {
    background: #1F61AE;
    color: #F3FAFD;
}

.bo-contact-page__hero {
    padding: 64px 0 40px;
}

.bo-contact-page__head.bo-blog__head_ {
    position: relative;
    align-items: flex-end;
    margin-bottom: 40px;
}

.bo-contact-page__title-wrap {
    max-width: 820px;
}

.bo-contact-page__badge {
    width: fit-content;
    margin-bottom: 24px;
    background: #E8F5FB;
    color: #1897D4;
}

.bo-contact-page__title {
    max-width: 100%;
    color: #F3FAFD;
}

.bo-contact-page__intro {
    max-width: 850px;
    margin-top: 24px;
    color: #F3FAFD;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
}

.bo-contact-page__intro p {
    margin: 0;
}

.bo-contact-page__pattern {
    position: static;
    flex: 0 0 auto;
    width: min(22vw, 228px);
    max-height: 115px;
    object-fit: contain;
}

.bo-contact-page__pattern--mobile {
    display: none;
}

.bo-contact-page__contacts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 40px 24px;
}

.bo-contact-page__contact {
    display: grid;
    gap: 24px;
    min-width: 0;
    text-align: center;
}

.bo-contact-page__contact-label,
.bo-contact-page__socials-title {
    color: #F3FAFD;
    font-size: 20px;
    font-weight: 600;
    line-height: 40px;
}

.bo-contact-page__contact-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 12px 24px;
    color: #1F61AE;
    background: #F2F2F7;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    word-break: break-word;
}

a.bo-contact-page__contact-value {
    transition: color var(--bo-transition), background-color var(--bo-transition), transform var(--bo-transition);
}

a.bo-contact-page__contact-value:hover {
    color: #1897D4;
    background: #FFFFFF;
}

.bo-contact-page__icon {
    display: inline-flex;
    flex: 0 0 auto;
    color: currentColor;
}

.bo-contact-page__report-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 48px;
    margin: 40px auto 0;
    padding: 10px 42px;
    color: #F3FAFD;
    border: 2px solid #F3FAFD;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    transition: color var(--bo-transition), background-color var(--bo-transition);
}

.bo-contact-page__report-link:hover {
    color: #1F61AE;
    background: #F3FAFD;
}

.bo-contact-page__socials {
    margin-top: 40px;
    text-align: center;
}

.bo-contact-page__socials-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.bo-contact-page__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 12px 20px;
    color: #1F61AE;
    background: #F2F2F7;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    transition: color var(--bo-transition), background-color var(--bo-transition), transform var(--bo-transition);
}

.bo-contact-page__social:hover {
    color: #1897D4;
    background: #FFFFFF;
    transform: translateY(-1px);
}

.bo-contact-page__social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    color: currentColor;
}

.bo-contact-page__social-icon--fallback::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.bo-contact-page__social-icon img,
.bo-contact-page__social-icon svg {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.page-template-contact-page .bo-contact-cta,
.page-template-contact-page-php .bo-contact-cta {
    padding-top: 40px;
}

@media (min-width: 641px) and (max-width: 1025px) {
    .page-template-contact-page .bo-contact-cta__inner,
    .page-template-contact-page-php .bo-contact-cta__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 8px;
        padding: 0;
        overflow: visible;
        background: transparent;
        border-radius: 0;
    }

    .page-template-contact-page .bo-contact-cta__content,
    .page-template-contact-page-php .bo-contact-cta__content {
        min-height: 0;
        padding: 22px;
        overflow: hidden;
        background: linear-gradient(145deg, var(--bo-blue-light) 0%, var(--bo-blue) 100%);
        border-radius: 10px;
    }

    .page-template-contact-page .bo-contact-cta__form,
    .page-template-contact-page-php .bo-contact-cta__form {
        padding: 22px;
        border-radius: 10px;
    }
}

@media (max-width: 1025px) {
    .bo-contact-page__hero {
        padding: 34px 0 40px;
    }

    .bo-contact-page__head.bo-blog__head_ {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 24px;
        align-items: end;
        padding-top: 58px;
        margin-bottom: 34px;
    }

    .bo-contact-page__badge {
        position: absolute;
        top: 0;
        left: 50%;
        justify-content: center;
        margin: 0;
        transform: translateX(-50%);
    }

    .bo-contact-page__title {
        font-size: 28px;
        line-height: 34px;
    }

    .bo-contact-page__intro {
        max-width: 430px;
        margin-top: 12px;
        font-size: 16px;
        line-height: 20px;
    }

    .bo-contact-page__pattern {
        width: 190px;
        max-height: 160px;
    }

    .bo-contact-page__pattern--mobile {
        display: block;
    }

    .bo-contact-page__contacts {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .bo-contact-page__contact-label,
    .bo-contact-page__socials-title {
        font-size: 15px;
        line-height: 24px;
    }

    .bo-contact-page__contact-value {
        min-height: 56px;
        padding: 12px 20px;
        font-size: 14px;
        line-height: 20px;
    }

    .bo-contact-page__report-link {
        min-height: 46px;
        margin-top: 28px;
        padding: 10px 36px;
        font-size: 14px;
        line-height: 20px;
    }

    .bo-contact-page__socials {
        margin-top: 28px;
    }

    .bo-contact-page__socials-list {
        gap: 8px;
        margin-top: 14px;
    }

    .bo-contact-page__social {
        min-height: 56px;
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 640px) {
    .bo-contact-page__hero {
        padding: 7px 0 25px;
    }

    .bo-contact-page__head.bo-blog__head_ {
        grid-template-columns: minmax(0, 1fr) 118px;
        gap: 8px;
        padding-top: 38px;
        margin-bottom: 18px;
    }

    .bo-contact-page__badge {
        width: 126px;
        min-height: 30px;
        margin-bottom: 20px;
        padding: 8px 20px;
        font-size: 9px;
        line-height: 14px;
    }

    .bo-contact-page__badge img {
        width: 14px;
        height: 14px;
    }

    .bo-contact-page__title {
        font-size: 18px;
        line-height: 24px;
    }

    .bo-contact-page__intro {
        max-width: 172px;
        margin-top: 8px;
        font-size: 9px;
        line-height: 12px;
    }

    .bo-contact-page__pattern--desktop {
        display: none;
    }

    .bo-contact-page__pattern--mobile {
        display: block;
        width: 118px;
        max-height: 126px;
    }

    .bo-contact-page__contacts {
        gap: 20px;
    }

    .bo-contact-page__contact {
        gap: 8px;
    }

    .bo-contact-page__contact-label,
    .bo-contact-page__socials-title {
        font-size: 9px;
        line-height: 14px;
    }

    .bo-contact-page__contact-value {
        min-height: 48px;
        padding: 10px 14px;
        font-size: 9px;
        line-height: 14px;
    }

    .bo-contact-page__icon svg {
        width: 12px;
        height: 12px;
    }

    .bo-contact-page__report-link {
        min-height: 42px;
        margin-top: 18px;
        padding: 8px 26px;
        font-size: 9px;
        line-height: 14px;
        border-radius: 4px;
    }

    .bo-contact-page__socials {
        margin-top: 20px;
    }

    .bo-contact-page__socials-list {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 8px;
    }

    .bo-contact-page__social {
        min-height: 46px;
        padding: 10px 14px;
        font-size: 9px;
        line-height: 14px;
    }

    .bo-contact-page__social-icon,
    .bo-contact-page__social-icon img,
    .bo-contact-page__social-icon svg {
        width: 12px;
        height: 12px;
    }
}

/* ================================
   Reviews Page
   ================================ */

.bo-reviews-page,
.bo-review-single {
    background: #1F61AE;
}

.bo-reviews {
    padding: 64px 0 64px;
    background: #1F61AE;
}

.bo-reviews__inner {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.bo-reviews__head.bo-blog__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 172px;
    gap: 44px;
    align-items: end;
}

.bo-reviews__title-group {
    gap: 24px;
    min-width: 0;
}

.bo-reviews__badge {
    width: fit-content;
}
 
.bo-reviews__heading-row {
    display: grid;
    grid-template-columns: 740px 1fr;
    gap: 40px;
    align-items: end;
    width: 100%;
}
.bo-reviews__title {
    max-width: 100%;
} 

.bo-reviews__text {
    max-width: 100%;
}

.bo-reviews__pattern {
    width: 172px;
    height: 144px;
    object-fit: contain;
}

.bo-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.bo-review-card {
    min-width: 0;
    min-height: 452px;
    background: #F3FAFD;
    border-radius: 15px;
    overflow: hidden;
}

.bo-review-card__link {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    height: 100%;
    min-height: 452px;
    padding: 24px;
    color: #1F3566;
    text-decoration: none;
    transition: transform var(--bo-transition), box-shadow var(--bo-transition);
}

.bo-review-card__link:hover {

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.bo-review-card__person {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.bo-review-card__photo {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border: 4px solid #1897D4;
    border-radius: 300px;
    box-shadow: 0 4px 4px rgba(24, 151, 212, 0.05);
}

.bo-review-card__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bo-review-card__name-group {
    display: grid;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    text-align: center;
}

.bo-review-card__name {
    margin: 0;
    color: #1F3566;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
}

.bo-review-card__role {
    overflow: hidden;
    color: #1F61AE;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bo-review-card__text {
    display: -webkit-box;
    min-height: 120px;
    margin: 0;
    overflow: hidden;
    color: #1F3566;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.bo-review-card__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    margin-top: auto;
    padding: 10px 16px;
    color: #1897D4;
    background: #E8F5FB;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
}

.bo-reviews__pagination {
    margin-top: -32px;
}

.bo-reviews__empty {
    padding: 32px;
    color: #1F61AE;
    background: #F3FAFD;
    border-radius: 15px;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
}

.bo-review-single {
    padding: 64px 0 40px;
}

.bo-review-single__card {
    max-width: 980px;
    margin: 0 auto;
    padding: 40px;
    color: #1F3566;
    background: #F3FAFD;
    border-radius: 15px;
}

.bo-review-single__head {
    display: grid;
    gap: 32px;
    margin-bottom: 32px;
}

.bo-review-single__back {
    width: fit-content;
    color: #1897D4;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.bo-review-single__person {
    display: flex;
    align-items: center;
    gap: 24px;
}

.bo-review-single__photo {
    flex: 0 0 auto;
    width: 140px;
    height: 140px;
    overflow: hidden;
    border: 4px solid #1897D4;
    border-radius: 300px;
}

.bo-review-single__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bo-review-single__title {
    margin: 0;
    color: #1F3566;
    font-size: 40px;
    font-weight: 600;
    line-height: 44px;
}

.bo-review-single__role {
    margin-top: 8px;
    color: #1F61AE;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.bo-review-single__content {
    color: #1F3566;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.bo-review-single__content > *:first-child {
    margin-top: 0;
}

.bo-review-single__content > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 1025px) {
    .bo-reviews {
        padding: 40px 0;
    }

    .bo-reviews__inner {
        gap: 32px;
    }

    .bo-reviews__head.bo-blog__head {
        position: relative;
        grid-template-columns: minmax(0, 1fr) 172px;
        gap: 20px;
        padding-top: 56px;
    }

    .bo-reviews__badge {
        position: absolute;
        top: 0;
        left: 50%;
        margin: 0;
        transform: translateX(-50%);
    }

    .bo-reviews__heading-row {
        display: block;
    }

    .bo-reviews__title {
        font-size: 24px;
        line-height: 30px;
    }

    .bo-reviews__text {
        margin-top: 12px;
        font-size: 13px;
        line-height: 16px;
    }

    .bo-reviews__pattern {
        width: 172px;
        height: 144px;
    }

    .bo-reviews__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .bo-review-card,
    .bo-review-card__link {
        min-height: 380px;
    }

    .bo-review-card {
        border-radius: 8px;
    }

    .bo-review-card__link {
        gap: 18px;
        padding: 16px;
    }

    .bo-review-card__photo {
        width: 92px;
        height: 92px;
    }

    .bo-review-card__name {
        font-size: 13px;
        line-height: 16px;
    }

    .bo-review-card__role {
        font-size: 11px;
        line-height: 14px;
    }

    .bo-review-card__text {
        min-height: 104px;
        font-size: 12px;
        line-height: 16px;
        -webkit-line-clamp: 6;
    }

    .bo-review-card__button {
        min-height: 34px;
        font-size: 12px;
        line-height: 16px;
    }

    .bo-reviews__pagination {
        margin-top: -8px;
    }

    .bo-review-single {
        padding: 40px 0;
    }

    .bo-review-single__card {
        padding: 28px;
        border-radius: 10px;
    }

    .bo-review-single__title {
        font-size: 28px;
        line-height: 34px;
    }

    .bo-review-single__content {
        font-size: 16px;
        line-height: 26px;
    }
}

@media (max-width: 640px) {
    .bo-reviews {
        padding: 7px 0 25px;
    }

    .bo-reviews__inner {
        gap: 20px;
    }

    .bo-reviews__head.bo-blog__head {
        grid-template-columns: minmax(0, 1fr) 88px;
        gap: 8px;
        padding-top: 38px;
    }

    .bo-reviews__badge {
        min-height: 30px;
        padding: 8px 20px;
        font-size: 9px;
        line-height: 14px;
    }

    .bo-reviews__badge img {
        width: 18px;
        height: 14px;
    }

    .bo-reviews__title {
        font-size: 12px;
        line-height: 16px;
    }

    .bo-reviews__text {
        max-width: 182px;
        margin-top: 6px;
        font-size: 7px;
        line-height: 10px;
    }

    .bo-reviews__pattern {
        width: 88px;
        height: 74px;
    }

    .bo-reviews__grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .bo-review-card,
    .bo-review-card__link {
        min-height: 238px;
    }

    .bo-review-card__link {
        gap: 10px;
        padding: 12px 16px;
    }

    .bo-review-card__person {
        gap: 8px;
    }

    .bo-review-card__photo {
        width: 72px;
        height: 72px;
        border-width: 3px;
    }

    .bo-review-card__name-group {
        gap: 4px;
        min-height: 0;
    }

    .bo-review-card__name {
        font-size: 9px;
        line-height: 12px;
    }

    .bo-review-card__role {
        font-size: 8px;
        line-height: 10px;
    }

    .bo-review-card__text {
        min-height: 60px;
        font-size: 8px;
        line-height: 12px;
        -webkit-line-clamp: 5;
    }

    .bo-review-card__button {
        min-height: 28px;
        padding: 6px 12px;
        font-size: 8px;
        line-height: 12px;
        border-radius: 4px;
    }

    .bo-review-single {
        padding: 25px 0;
    }

    .bo-review-single__card {
        padding: 20px 16px;
        border-radius: 8px;
    }

    .bo-review-single__head {
        gap: 20px;
        margin-bottom: 20px;
    }

    .bo-review-single__back {
        font-size: 12px;
        line-height: 16px;
    }

    .bo-review-single__person {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .bo-review-single__photo {
        width: 92px;
        height: 92px;
    }

    .bo-review-single__title {
        font-size: 20px;
        line-height: 26px;
    }

    .bo-review-single__role {
        font-size: 12px;
        line-height: 16px;
    }

    .bo-review-single__content {
        font-size: 14px;
        line-height: 22px;
        text-align: center;
    }
}

/* ================================
   Single Review Page
   ================================ */

 .bo-review-single {
    padding: 0;
    background: #1F61AE;
}

.bo-review-single__hero {
    padding: 64px 0 0;
    background: #1F61AE;
}

 .bo-review-single__panel {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    margin: 0;
    padding: 40px;
    color: #1F3566;
    background: #F3FAFD;
    border-radius: 15px;
}

.bo-review-single__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
    text-align: center;
}

.bo-review-single__date {
    color: #1F61AE;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
}

.bo-review-single__badge {
    align-self: center;
}

.bo-review-single__visuals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    height: 152px;
}

 .bo-review-single__photo {
    flex: 0 0 auto;
    width: 152px;
    height: 152px;
    overflow: hidden;
    border: 6px solid #1897D4;
    border-radius: 300px;
}

 .bo-review-single__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bo-review-single__decor {
    display: block;
    flex: 0 0 auto;
    height: 152px;
    object-fit: contain;
}

.bo-review-single__decor--heart {
    width: 128px;
}

.bo-review-single__decor--house {
    width: 110px;
}

 .bo-review-single__title {
    max-width: 100%;
    margin: 0;
    color: #1F3566;
    font-size: 40px;
    font-weight: 400;
    line-height: 44px;
    text-align: center;
}

 .bo-review-single__content {
    color: #1F3566;
    font-size: 24px;
    font-weight: 400;
    line-height: 44px;
}

 .bo-review-single__content p {
    margin: 0 0 24px;
}

 .bo-review-single__content p:last-child {
    margin-bottom: 0;
}

.bo-review-related {
    padding: 56px 0 64px;
}

.bo-review-related__inner {
    gap: 56px;
}

.bo-review-related__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

.bo-review-related__list.owl-carousel {
    display: block;
}

.bo-review-related__list .owl-wrapper-outer {
    overflow: hidden;
}

.bo-review-related__list .owl-wrapper {
    display: flex !important;
}

.bo-review-related__list .owl-item {
    display: flex;
    padding: 0 4px;
}

.bo-review-related__list .owl-item .bo-review-card {
    width: 100%;
}

.bo-review-related__list .owl-controls {
    display: grid;
    grid-template-columns: 32px auto 32px;
    align-items: center;
    justify-content: center;
    column-gap: 18px;
    margin-top: 24px;
}

.bo-review-related__list .owl-buttons {
    display: contents;
}

.bo-review-related__list .owl-buttons > div {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #1F61AE;
    background: #F3FAFD;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: color var(--bo-transition), background-color var(--bo-transition);
        width: 52px !important;
    height: 44px !important;
        border-radius: 100px !important;
}

.bo-review-related__list .owl-prev {
    grid-column: 1;
}

.bo-review-related__list .owl-next {
    grid-column: 3;
}

.bo-review-related__list .owl-buttons > div:hover {
    color: #1897D4;
    background: #FFFFFF;
}

.bo-review-related__list .owl-pagination {
    display: flex;
    grid-column: 2;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 0;
}

.bo-review-related__list .owl-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    padding: 0;
    background: transparent;
    border-radius: 50%;
    cursor: pointer; 
}
 
.bo-review-related__list .owl-page span {
    display: block !important;
    width: 4px;
    height: 4px;
    margin: 0;
    background: rgba(243, 250, 253, 0.45);
    border-radius: 50%;
    transition: background-color var(--bo-transition), transform var(--bo-transition);
}

.bo-review-related__list .owl-page.active span,
.bo-review-related__list .owl-page:hover span {
    background: #F3FAFD;
    transform: scale(1.1);
} 

.bo-review-related__button-wrap {
    display: flex;
    justify-content: center;
        margin-top: -6px;
} 
.bo-review-related__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 40px;
    color: #1F61AE;
    background: #F3FAFD;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    transition: color var(--bo-transition), background-color var(--bo-transition);
    color: #1F61AE;
    font-family: Geologica;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
}

.bo-review-related__button:hover {
    color: #1897D4;
    background: #FFFFFF;
}

@media (max-width: 1025px) {
    .bo-review-single__hero {
        padding-top: 32px;
    }

     .bo-review-single__panel {
        gap: 24px;
        padding: 24px;
        border-radius: 10px;
    }

    .bo-review-single__intro {
        gap: 16px;
    }

    .bo-review-single__visuals {
        gap: 28px;
        height: 136px;
    }

     .bo-review-single__photo {
        width: 136px;
        height: 136px;
    }

    .bo-review-single__decor {
        height: 132px;
    }

    .bo-review-single__decor--heart {
        width: 82px;
    }

    .bo-review-single__decor--house {
        width: 86px;
    }

     .bo-review-single__title {
        max-width: 520px;
        font-size: 24px;
        font-weight: 600;
        line-height: 30px;
    }

     .bo-review-single__content {
        font-size: 14px;
        line-height: 24px;
    }

    .bo-review-related {
        padding-top: 32px;
    }

    .bo-review-related__inner {
        gap: 28px;
    }

    .bo-review-related__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .bo-review-related__button-wrap {
        margin-top: -4px;
    }
}

@media (max-width: 640px) {
    .bo-review-single__hero {
        padding-top: 7px;
    }

     .bo-review-single__panel {
        gap: 8px;
        padding: 0;
        background: transparent;
        border-radius: 0;
    }

    .bo-review-single__intro {
        gap: 8px;
        padding: 8px 12px 10px;
        background: #F3FAFD;
        border-radius: 8px;
    }

    .bo-review-single__date {
        order: 4;
        font-size: 7px;
        line-height: 10px;
    }

    .bo-review-single__badge {
        order: 1;
        min-height: 26px;
        padding: 7px 18px;
        font-size: 8px;
        line-height: 12px;
    }

    .bo-review-single__badge img {
        width: 16px;
        height: 12px;
    }

    .bo-review-single__visuals {
        order: 2;
        gap: 12px;
        height: 72px;
    }

     .bo-review-single__photo {
        width: 72px;
        height: 72px;
        border-width: 3px;
    }

    .bo-review-single__decor {
        height: 52px;
    }

    .bo-review-single__decor--heart {
        width: 34px;
    }

    .bo-review-single__decor--house {
        width: 40px;
    }

     .bo-review-single__title {
        order: 3;
        max-width: 210px;
        font-size: 10px;
        font-weight: 600;
        line-height: 14px;
    }

     .bo-review-single__content {
        padding: 12px;
        color: #1F3566;
        background: #F3FAFD;
        border-radius: 8px;
        font-size: 10px;
        line-height: 18px;
        text-align: left;
    }

     .bo-review-single__content p {
        margin-bottom: 14px;
    }

    .bo-review-related {
        padding-top: 20px;
    }

    .bo-review-related__inner {
        gap: 20px;
    }

    .bo-review-related__list {
        grid-template-columns: 1fr;
    }

    .bo-review-related__list .owl-controls {
        margin-top: 10px;
    }

    .bo-review-related__list .owl-controls {
        grid-template-columns: 22px auto 22px;
        column-gap: 18px;
    }

 

 

  
}


.bo-contact-page__intro {
    max-width: 1567px;
}
.bo-contact-page__title-wrap {
     max-width: 1567px;
}

@media (max-width: 1025px) {
    .bo-contact-page__head.bo-blog__head_ {
        position: relative;
    }
.page-template-contact-page .bo-blog__pattern.mobile {
        position: absolute;
        bottom: auto;
        right: 24px;
        top: auto;
        min-width: 64px;
    }
.bo-contact-page__intro {
    max-width: 84%;
}
.bo-contact-page__contact {
    gap: 12px;
}
    .page-template-contact-page .bo-blog__pattern.mobile {
        right: 0;
    }
}

@media (max-width: 767px) { 
  .bo-contact-page__intro {
    max-width: 90%;
}
    .bo-contact-page__head.bo-blog__head_ {
        grid-template-columns: minmax(0, 1fr) 64px;
    }
        .bo-contact-page__head.bo-blog__head_ {
        gap: 8px;
        padding-top: 48px;
        margin-bottom: 27px;
    }
       .bo-contact-page__hero {
        padding: 24px 0 20px;
    }
.bo-contact-page__contact-value .bo-contact-page__icon {
    width: 15px;
}
    .bo-contact-page__contact-value {

        font-size: 11px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
    }  
    .bo-contact-page__report-link {
              margin-top: 28px;
        line-height: 14px;
        border-radius: 4px;
        font-size: 13px;
        font-style: normal;
        font-weight: 600;
        line-height: 180%;
    }
    .bo-contact-page__socials {
        margin-top: 28px;
    } 
}

@media (min-width: 1025px) { 
.bo-social .owl-buttons {
    justify-content: center;
    gap: 112px;
}
}
@media (min-width: 767px) {
.bo-projects .owl-buttons {
        justify-content: center;
        gap: 112px;
}
.bo-social .owl-buttons {
    gap: 144px;
           justify-content: center;
}
    .page-template-about-page .bo-team .owl-buttons {
        display: flex;
        justify-content: center;
        gap: 112px;
        width: 100%;
    }
}

.page-template-reviews-page .bo-reviews__pagination {
    margin-top: 0;
    padding-top: 0;
}
@media (max-width: 1025px) {
    .bo-reviews__title {
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        line-height: 32px;
    }
.bo-reviews__text {
        margin-top: 16px;
    }
    .bo-review-card__text {
        min-height: 98px;
    }
    .bo-review-card, .bo-review-card__link {
        min-height: 346px;
    }
.bo-review-card__link p:not(:last-child) {
    margin-bottom: 0;
}
}
@media (max-width: 767px) {
    .bo-review-card, .bo-review-card__link {
        min-height: auto;
    }
     .bo-reviews__badge {
        min-height: 30px;
        padding: 8px 20px;
        font-size: 9px;
        line-height: 14px;
        width: 100%;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
    }
    .bo-reviews {
        padding: 20px 0 25px;
    }
    .bo-reviews__title {
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        margin-top: 24px;
                max-width: 80%;
    }
    .bo-reviews__text {
        margin-top: 16px;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
        width: 100%;
        max-width: 100%;
    }
    .bo-reviews__heading-row {
       position: relative;
        width: 100%;
    }
    .bo-reviews__pattern {
        width: 88px;
        height: 74px;
        position: absolute;
        top: 48px;
    }
      .bo-reviews__head.bo-blog__head {
        grid-template-columns: 1fr;
    }
    .bo-review-card__photo {
        width: 104px;
        height: 104px;
        border-width: 4px;
    }
    .bo-review-card__name {
        line-height: 12px;
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
    }
 .bo-review-card__role {
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px;
    }
    .bo-review-card__text {
        min-height: auto;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
    }
     .bo-review-card__button {
        min-height: 40px;
        padding: 10px 16px;
        font-size: 8px;
        line-height: 12px;
        border-radius: 4px;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
    }
}

.bo-review-related__list .owl-controls.clickable,  .bo-review-related__list .owl-controls {
    position: relative !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 220px;
    min-height: 32px;
    margin: 24px auto 0;
}
.bo-review-related__list .owl-buttons {
    position: absolute !important;
    inset: 0;
    display: block !important;
    width: 100%;
    height: 32px;
    pointer-events: none;
}

.bo-review-related__list .owl-buttons > div {
    position: absolute !important;
    top: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    margin: 0 !important;
    padding: 0 !important;
    color: #1F61AE !important;
    background: #F3FAFD !important;
    border-radius: 50% !important;
    font-size: 0 !important;
    line-height: 1 !important;
    opacity: 1 !important;
    cursor: pointer;
    pointer-events: auto;
    transform: translateY(-50%);
}

 .bo-review-related__list .owl-prev {
    left: 0;
}

 .bo-review-related__list .owl-next {
    right: 0;
}

.bo-review-related__list .bo-owl-arrow {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    height: auto !important;
    color: inherit !important;
    background: none !important;
    background-image: none !important;
    font-size: 0 !important;
    line-height: 1 !important;
}

 .bo-review-related__list .owl-pagination {
    position: static !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 44px !important;
    transform: none !important;
}

 .bo-review-related__list .owl-page {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 8px  !important;
    height: 8px  !important;
    margin: 0 !important;
    padding: 0;
    background: transparent !important;
    border-radius: 50%;
    cursor: pointer;
    opacity: 1 !important;
}

 .bo-review-related__list .owl-page span {
    display: block !important;
    width: 8px;
    height: 8px;
    margin: 0;
    background: #A8A8A8;
    border-radius: 50%;
    opacity: 0.3 !important;
}
 .bo-review-related__list .owl-page.active span,
 .bo-review-related__list .owl-page:hover span {
    background: #F3FAFD;
     opacity: 1 !important;
}

@media (max-width: 640px) {
     .bo-review-related__list .owl-controls.clickable,
     .bo-review-related__list .owl-controls {
        min-width: 116px;
        min-height: 22px;
        margin-top: 10px;
    }


 
     .bo-review-related__list .owl-pagination {
        margin: 0 32px !important;
    }
}


 



 .bo-review-related__list .owl-buttons > div {
        width: 48px;
        height: 44px;
        background: var(--bo-bg-light) !important;
        color: var(--bo-blue) !important;
        pointer-events: auto;
    }

 .bo-review-related__list .owl-buttons > div {
        width: 48px;
        height: 44px;
        background: var(--bo-bg-light) !important;
        color: var(--bo-blue) !important;
        pointer-events: auto;
    }
        .bo-review-related .owl-next .bo-owl-arrow {
        background-image: url(/wp-content/uploads/2026/04/weui_arrow-outlined-3.svg) !important;
            background-repeat: no-repeat !important;
    background-position: center !important;
    width: 12px !important;
    height: 24px !important;
    }

      .bo-review-related  .owl-prev .bo-owl-arrow {
        background-image: url(/wp-content/uploads/2026/04/weui_arrow-outlined-2.svg) !important;
            background-repeat: no-repeat !important;
    background-position: center !important;
    width: 12px !important;
    height: 24px !important;
    }

@media (max-width: 1025px) {

.bo-review-related__list .owl-controls.clickable, .bo-review-related__list .owl-controls {
    min-width: 100%;
}
}

@media (max-width: 1025px) {
    .bo-review-single__title {
        max-width: 520px;
        font-size: 24px;
        font-weight: 600;
        line-height: 30px;
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        line-height: 32px;
    }
       .bo-review-single__visuals {
        gap: 28px;
        height: 144px;
        justify-content: space-around;
    }
    .bo-review-single__intro {
        gap: 24px;
    }
       .bo-review-single__content {
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
    }
      .bo-review-single__panel {
        gap: 24px;
        padding: 28px 24px;
        border-radius: 15px;
    }
    .bo-review-related__inner {
        gap: 20px;
    }
  .bo-review-related__list .owl-buttons {
    width: 300px;
    height: 32px;
    margin: 0 auto;
}
.bo-review-related__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 40px;
    color: #1F61AE;
    background: #F3FAFD;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    margin-top: 35px;
}
    .bo-review-related {
        padding-top: 32px;
        padding-bottom: 32px;
    }
 }
 @media (max-width: 767px) {
    .bo-review-single__panel {
        gap: 16px;
        padding: 0;
        border-radius: 15px;
    }
    .bo-review-single__hero {
        padding-top: 20px;
    }
      .bo-review-single__badge {
        order: 1;
        min-height: 40px;
        padding: 7px 18px;
        font-size: 8px;
        line-height: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        font-size: 12px;
                margin: 0;
    }
    .bo-review-single__visuals {
        height: auto;
    }  
    .bo-review-single__photo {
        width: 80px;
        height: 80px;
        border-width: 4px;
    }
    .bo-review-single__intro {
        gap: 28px;
        padding: 28px 20px;
        border-radius: 15px;
        height: auto;
        min-height: auto;
    } 
    .bo-review-single__date {
        order: 4;
        font-size: 7px;
        line-height: 10px;
        font-family: Geologica;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        text-transform: uppercase;
        border-radius: 30px;
        background: rgba(24, 151, 212, 0.05);
        padding: 10px 28px;
        width: 100%;
        color: #1897D4;
    }
     .bo-review-single__title {
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
    }
    .bo-review-single__content {
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
        border-radius: 15px;
        background: #F3FAFD;
        padding: 24px 20px;
        border-radius: 15px;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }
    .bo-review-related {
        padding-top: 16px;
        padding-bottom: 20px;
    }
     .bo-review-related__list .owl-controls.clickable, .bo-review-related__list .owl-controls {
        margin-top: 20px;
    }
    .bo-review-related__list .owl-buttons {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    .bo-review-related__button {
        margin-top: 16px;
        font-size: 13px;
font-style: normal;
font-weight: 600;
    }
}
 @media (max-width: 1435px) and (min-width: 1025px){
.bo-reviews__heading-row {
    grid-template-columns: 1fr 1fr;
}
.bo-reports__copy {
    grid-template-columns: 1fr 1fr;
}
    .projects_pages .bo-blog__head, .bo-blog__head {
        grid-template-columns: 1fr 1fr 200px;
    }
.bo-gallery-page .bo-blog__head {
    grid-template-columns: 1fr 1fr 200px;
}
}

.page-template-about-page .bo-review-related {
    padding: 0;
}
 @media (max-width: 1025px) {
.page-template-about-page .bo-review-related {
    padding: 32px 0;
}
.page-template-about-page .bo-review-related__button {
        margin-top: 25px;
    }
}
 @media (max-width: 767px) {
.page-template-about-page .bo-review-related {
    padding: 16px 0;
}
}
 @media (min-width: 1025px) {
.bo-footer__menu {
    display: block;
    column-count: 2;
}
}
@media (max-width: 1510px) and (min-width: 1410px) {
  .bo-header__menu a {
      padding: 0px 15px;
  }
}
@media (max-width: 1410px) and (min-width: 1310px) {
  .bo-header__menu a {
      padding: 0px 10px;
  }
}
@media (max-width: 1310px) and (min-width: 1210px) {
  .bo-header__menu a {
      padding: 0px 10px;
          font-size: 14px;
  }
}
@media (max-width: 1225px) and (min-width: 1100px) {
  .bo-header__menu a {
      padding: 0px 10px;
  font-size: 13px;
  }
.bo-header__menu {
    gap: 4px 5px;
}
}
@media (max-width: 1100px) and (min-width: 1025px) {
  .bo-header__menu a {
   padding: 0px 6px;
  font-size: 13px;
  }
.bo-header__menu {
    gap: 4px 5px;
}
}

@media (max-width: 1600px) and (min-width: 1025px) {
.bo-blog__pattern {
    position: absolute;
    bottom: -46px;
}
.bo-blog__text {
    margin-top: 24px;
}
.projects_pages .bo-blog__head, .bo-blog__head {
        display: block;
    }
.tenders_page .bo-blog__pattern {
               right: 24px;
    }
.tenders_page .bo-blog__text {
    max-width: 720px;
}
    .bo-reports__copy {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .bo-gallery-page .bo-blog__head {
        grid-template-columns: 1fr;
        gap: 24px;
        position: relative;
    }
    .bo-gallery-page .bo-blog__text {
        margin-top: 0;
        max-width: 720px;
    }
    .bo-gallery-page .bo-blog__pattern {
        bottom: 66px;
        position: absolute;
    }
 .bo-reviews__heading-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: end;
    width: 100%;
}
.bo-reviews__head.bo-blog__head {
    position: relative;
}
.bo-reviews__head .bo-blog__pattern {
        position: absolute;
        bottom: 0;
    }
.bo-contact-page__head .bo-blog__pattern {
        position: absolute;
        bottom: -18px;
        right: 0;
    }
.bo-contact-page__head .bo-blog__text {
        margin-top: 24px;
        max-width: 720px;
    }
.bo-reports__text {
    color: var(--bo-bg-light);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    max-width: 720px;
}
.bo-help-page .bo-blog__pattern {
        right: 0;
    }
.bo-help__copy {
    gap: 24px;
    grid-template-columns: 1fr;
        max-width: 720px;
}
}
@media (max-width: 1725px) and (min-width: 1025px) {
.bo-help-payments {
    margin-left: 24px;
    margin-right: 24px;
    display: flex;
    flex-wrap: wrap;
}
.bo-help-payments span {
    border-radius: 30px;
    background: rgba(24, 151, 212, 0.05);
    min-width: 44px;
    padding: 0 5px;
}
}
@media (max-width: 1360px) and (min-width: 1025px) {
.bo-help-requisites__top {
    gap: 15px;
}
}
@media (max-width: 1620px) and (min-width: 1025px) {
.bo-help-donate__tabs {
    display: grid;
}
}

@media (max-width: 1600px) and (min-width: 1025px) {
    .projects_pages .bo-blog__head, .bo-blog__head {
        position: relative;
    }
.bo_single_head {
    position: relative;
}
    .bo-blog__pattern {
        right: 0;
    }
.bo-blog__pattern {
    width: 200px;
}
.bo-single-title {
    max-width: 80%;
}
}
 
 @media (min-width: 1450px) {
:lang(en) .bo-hero__title {
    font-size: 63.142px;
}
 }
 @media (max-width: 767px) {
    .bo-reports__copy {
        max-width: 80%;
    }
}