/* Buttons */ 
.btn,
.button,
.button.violet {
    display: inline-block;
    font-family: var(--font-family-quicksand);
    font-style: normal;
    font-weight: 700;
    color: var(--Black-color);
    text-transform: uppercase;
    background-color: var(--Purple-color);
    padding: 20px 48px;
    border: 1px solid var(--Purple-color);
    border-radius: 48px;
    transition: color .3s ease, background-color .3s ease, border .3s ease;   
}
.btn:hover,
.button.violet:hover {
    background-color:var(--PurpleLight-color);
}
.btn_green,
.button.green {
    background-color: var(--Green-color);
    color: var(--White-color);
    border: 1px solid var(--Green-color);
    transition: color .3s ease, background-color .3s ease, color .3s ease;
}
.btn_green:hover,
.button.green:hover {
    background-color: var(--Light-yellow);
    color: var(--Grey);
}
.btn_yellow {
    background-color: var(--Heavy-yellow);
    border: 1px solid var(--Heavy-yellow);
    color: var(--White-color);
    transition: color .3s ease, background-color .3s ease, border .3s ease, color .3s ease;   
}
.btn_yellow:hover {
    background-color: var(--Light-yellow);
    border: 1px solid var(--Green-color);
    color: var(--Green-color);
}
.button.smaller {
    padding: 16px 36px;
    font-size: 18px;
}
.wp-block-button__link {
    display: inline-block;
    font-family: var(--font-family-quicksand);
    font-style: normal;
    font-weight: 700;
    color: var(--Black-color);
    text-transform: uppercase;
    background-color: var(--Purple-color);
    padding: 20px 48px;
    border: 1px solid var(--Purple-color);
    border-radius: 48px;
    transition: color .3s ease, background-color .3s ease, border .3s ease;  
}
.wp-block-button__link:hover {
    background-color:var(--PurpleLight-color);
}
.wp-block-button.is-style-fill a {
    background-color: var(--Green-color);
    color: var(--White-color);
    border: 1px solid var(--Green-color);
    transition: color .3s ease, background-color .3s ease, color .3s ease;
}
.wp-block-button.is-style-fill a:hover {
    background-color: var(--Light-yellow);
    color: var(--Grey);
}
.wp-block-button.is-style-btn_green .wp-block-button__link {
    background-color: var(--Green-color);
    color: var(--White-color);
    border: 1px solid var(--Green-color);
    transition: color .3s ease, background-color .3s ease, color .3s ease;
}
.wp-block-button.is-style-btn_green:hover .wp-block-button__link {
    background-color: var(--Light-yellow);
    color: var(--Grey);
}
.wp-block-button.is-style-btn_yellow .wp-block-button__link {
    background-color: var(--Heavy-yellow);
    border: 1px solid var(--Heavy-yellow);
    color: var(--White-color);
    transition: color .3s ease, background-color .3s ease, border .3s ease, color .3s ease;  
}
.wp-block-button.is-style-btn_yellow:hover .wp-block-button__link {
    background-color: var(--Light-yellow);
    border: 1px solid var(--Green-color);
    color: var(--Green-color);  
}
/* End Buttons */

ul li a {
    color: var(--Green-color);
    font-weight: bold;
}

/* Header */
header {
    position: relative;
}
header .top_bar {
    background-color: var(--Brand-bg);
}
header .logo {
    display: inline-block;
    position: relative;
    top: -90px;
    z-index: 20;
    max-width: 168px;
    width: 100%;
}
header .bottom_bar {
    background-color: var(--White-color);
    height: 75px;
    padding: 16px 16px 0 16px;
}
header .bottom_bar .left_part {
    gap: 32px;
    align-items: flex-start;
}
header .donate {
    font-size: inherit;
    font-family: var(--font-family-quicksand);
    font-weight: 700;
    text-transform: uppercase;
    color: inherit;
    gap: 5px;
}
header .donate svg {
    width: 67px;
    height: 55px;
}
header .donate svg path {
    transition: fill 0.4s ease;
}
header .donate:hover svg path {
    fill: var(--Heavy-yellow);
}
header nav.is-open {
    display: block;
}
header nav ul.prime_nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
header nav ul.prime_nav > li {
    position: relative;
}
header nav ul.prime_nav > li:not(:last-child) {
    margin-right: 32px;
}
header nav ul.prime_nav li a {
    text-transform: uppercase;
    color: inherit;
    font-size: inherit;
    font-family: var(--font-family-quicksand);
    font-weight: 700;
    position: relative;
    padding: 0 0 8px 0;
    text-decoration: none;
}
header nav ul.prime_nav > li > a {
    position: relative;
    display: inline-block;
}
header nav ul.prime_nav > li > a::after {
    position: absolute;
    display: block;
    left: 0;
    bottom: 0px;
    height: 4px;
    width: 100%;
    content: "";
    border-radius: 5px;
    background-color: #47AA42;
    transition: background-color 0.4s ease;
}
header nav ul.prime_nav > li > a:hover::after {
    background-color: var(--Heavy-yellow);
}
header nav .dropdown_menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: -47px;
    background-color: rgba(255, 255, 255, 0.97);
    border-radius: 4px;
    min-width: 320px;
    z-index: 10;
    padding: 48px 32px;
    transition: opacity 0.3s ease;
}
header nav .dropdown_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
header nav ul.prime_nav > li:hover > .dropdown_menu {
    opacity: 1;
    visibility: visible;
}
header nav .dropdown_menu li:not(:last-child) {
    margin-bottom: 28px;
}
header nav .dropdown_menu li {
    margin-left: 16px;
}
header nav .dropdown_menu li a {
    position: relative;
}
header nav .dropdown_menu li a::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 3px;
    left: -32px;
    background-image: url("../images/before_nav_arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
header nav .dropdown_menu li a:hover::before {
    opacity: 1;
}
header nav .dropdown_menu li a::after {
    position: absolute;
    display: block;
    left: 0;
    bottom: -5px;
    height: 5px;
    width: 100%;
    content: "";
    border-radius: 5px;
    background-color: var(--Light-grey);
    transition: background-color 0.4s ease;
}
header nav .dropdown_menu li a:hover::after {
    background-color: var(--Purple-color);
}
header nav ul li:not(:last-child) {
    margin-bottom: unset;
}
/* Socials */
.socials a {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.socials a img {
    object-fit: contain;
    display: block;
}
.socials ul {
    list-style: none;
    margin: 0;
}
.socials ul li {
    width: 35px;
    height: 37px;
    background-color: var(--Purple-color);
    margin-right: 8px;
    border: 1px solid var(--Purple-color); 
    transition: background-color 0.3s ease; 
    cursor: pointer;
}
.socials ul li:hover {
    background-color: var(--Light-yellow);          
    border-color: var(--Purple-color);      
}
/* Search */
.search input {
    font: inherit;
}
.search_btn {
    width: 37px; 
    height: 37px;
    display: inline-block;
    border: none;
    padding: 0;
    cursor: pointer;
    text-indent: -9999px;
    background-color: var(--Purple-color);
    background-image: url("../images/search.svg");
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid var(--Purple-color); 
    margin-right: 8px;  
    transition: background-color 0.4s ease; 
}
.search_btn:hover {
    background-color: var(--Light-yellow);          
    border-color: var(--Purple-color);  
}

/* Burger Btn */
.nav_trigger {
    display: none;
    width: 40px; 
    height: 40px; 
    position: relative;
    cursor: pointer;
    transition: background-color 0.4s;
    margin-left: 16px;
}
.nav_trigger span {
    position: absolute;
    width: 40px;
    height: 4px;
    border-radius: 4px;
    background-color: var(--Grey);
    transition: top .4s, transform .4s, opacity .4s, background-color .4s;
}
.nav_trigger span:nth-child(1) {
    top: 0px; 
}
.nav_trigger span:nth-child(2) {
    top: 12px;
}
.nav_trigger span:nth-child(3) {
    top: 24px;
}
.nav_trigger.is-active span {
    background-color:  var(--Grey);
    height: 4px;
}
.nav_trigger.is-active span:nth-child(1) {
    top: 16px;
    transform: rotate(45deg);
}
.nav_trigger.is-active span:nth-child(2) {
    opacity: 0;
}
.nav_trigger.is-active span:nth-child(3) {
    top: 16px;
    transform: rotate(-45deg);
}
/* End Header */

/* Hero Section */
.hero {
    min-height: 580px;
    align-items: center;
}
.hero .hero_left {
    flex-basis: 60%;
}
.hero .hero_left img {
    object-position: 50% 50%;
}
.hero .hero_right {
    flex-basis: 40%;
}
.hero .hero_left .img_container {
    width: 100%; 
    height: 580px;
}
.hero .hero_right {
    padding: 0 38px;
}
.hero .hero_left {
    flex: 1;
    position: relative;
    margin-left: calc(-50vw + 50%);
    width: 60vw;   
}
.hero_left .img_container.swiper {
    width: 100%;
    height: 580px;
    overflow: hidden;
}
.hero_left .img_container.swiper .swiper-wrapper,
.hero_left .img_container.swiper .swiper-slide {
    width: 100% !important;
    height: 100% !important;
}
.hero .img_container .image {
    width: 100%;
    height: 580px;
    position: relative;
}
/* End Hero Section */

/* Text Slider */
.text_slider {
    background-color: var(--Light-yellow);
    padding: 64px 0;
}
/* End Text Slider */

/* Section Green */
.section_green {
    background-color: var(--Heavy-yellow);
    padding: 0 38px;
}
.section_green .section_inner {
    align-items: center;
    gap: 30px;
}
.section_green sup {
    top: -1px;
}
.section_green h2.h1 {
    margin-bottom: 12px;
}
.section_green h2:not(:first-child) {
    color: var(--White-color);
    text-transform: uppercase;
}
.section_green .left_part {
    flex: 0 0 50%;
    padding: 35px 0;
}
.section_green .left_part .text_content {
    max-width: 460px;
    width: 100%;
}
.section_green .right_part.videos {
    position: relative;
    z-index: 2;
    flex: 0 0 50%;
    display: flex;
    flex-direction: column; 
    gap: 20px;
    max-width: 600px; 
    width: 100%;
 }
 .section_green .right_part .video {
    aspect-ratio: 16 / 9; 
} 
.section_green .right_part .video:first-child {
    margin-top: -15px;
}
.section_green .right_part .video:last-child {
    margin-bottom: -15px;
}
.video h6 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    color: var(--White-color);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    width: max-content;
    white-space: nowrap;
}
 .video h6::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: var(--Heavy-yellow)
}
 .video:hover h6 {
    color: var(--Heavy-yellow);
}
.video:hover:after {
    color: var(--Grey);
    border: 1px solid var(--Grey);
}
.fancybox__content>.f-button.is-close-btn {
    border-radius: unset;
    transition: background-color .3s ease, border .3s ease;
}
.fancybox__content>.f-button.is-close-btn svg { 
    stroke: var(--White-color);
}
.fancybox__content>.f-button.is-close-btn:hover {
    background-color: var(--Light-yellow);
    border: 1px solid var(--Green-color);
}
.fancybox__content>.f-button.is-close-btn:hover svg{
   stroke: var(--Grey) ;
}
.fancybox__content {
    width: 85vw !important;  
    height: auto;
}
/* END Section Green */

/* Video */
.video {
    display: inline-block;
    position: relative;
    border-radius: 48px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: auto; 
 }
 .video::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1.65) 0%,
        rgba(0, 0, 0, 0.45) 20%,
        rgba(0, 0, 0, 0.20) 40%,
        rgba(0, 0, 0, 0.05) 55%,
        rgba(0, 0, 0, 0.00) 70%  
     );
    z-index: 1;
 }
.video::after {
    display:inline-block;
    position: absolute;
    right: 18px;
    bottom: 18px;
    content: '\25BA';
    font-family: var(--font-family-arial);
    color: var(--Heavy-yellow);
    font-size: 32px;
    padding-left: 5.33333px;
    line-height: 1.9;
    text-align: center;
    background: var(--White-color);
    height: 64px;
    width: 64px;
    border-radius: 50%;
    border: 1px solid var(--Green-color);
    transition: color .3s ease, border .3s ease;
 }
 .video:hover {
    transform: scale(1.03);
    opacity: 1;
}
.video.small {
    aspect-ratio: 8 / 5;
    border-radius: 16px;
}
.video.small:after {
    width: 48px;
    height: 48px;
    right: 12px;
    bottom: 12px;
    line-height: 1.7;
    font-size: 28px;
}
.video h6 {
    width: max-content;
    white-space: nowrap;
}
a.play {
    position: relative;
}
a.play:after {
    display: inline-block;
    position: absolute;
    right: 18px;
    bottom: 18px;
    content: '\25BA';
    font-family: var(--font-family-arial);
    color: var(--Heavy-yellow);
    font-size: 32px;
    padding-left: 5.33333px;
    line-height: 1.9;
    text-align: center;
    background: var(--White-color);
    height: 64px;
    width: 64px;
    border-radius: 50%;
    border: 1px solid var(--Green-color);
    transition: color .3s ease, border .3s ease;
    z-index: 3;
}
/* END Video */

/* Section White */
.section_white {
    background-image: url(../images/section_white_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding-top: 64px;
}
.section_white:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(254, 254, 254, 0.7);
}
.section_white .section_inner {
    position: relative;
    z-index: 2;
}
.section_white h2 {
    color: var(--Black-color);
}
.section_white h2.h1 {
    text-transform: uppercase;
    color: var(--Green-color);
}
/* END Section White */

/* Section Purple */
.section_purple {
    background-color: var(--PurpleLight-color);
    background-image: url(../images/hands.svg);
    background-repeat: no-repeat;
    background-position: 106% center;
    background-size: 25%;
}
.section_purple .section_inner {
    max-width: 950px;
    width: 100%;
}
.section_purple h2 {
    color: var(--Black-color);
}
.section_purple h2.h1 {
    text-transform: uppercase;
    color: var(--White-color);
}
.section_purple .is-layout-flex {
    justify-content: center;
    align-items: center;
}
/* END Section Purple */

/* Section Yellow */
.section_yellow {
    background-color: var(--Light-yellow);
    padding: 80px 0;
}
.section_yellow p {
    font-size: 16px;
    line-height: 1.4;
}
.section_yellow h2 {
    color: var(--Black-color);
}
.section_yellow h2.h1 {
    text-transform: uppercase;
    color: var(--Green-color);
}
.section_yellow .section_inner {
    padding: 0 32px;
}
.section_yellow .section_content {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 48px;
}
.section_yellow .video.small:after {
    content: none;
}
.section_yellow .left_part {
    flex: 0 0 840px;
}
.section_yellow .left_part .video {
    aspect-ratio: 14 / 9; 
}
.section_yellow .left_part .video:after {
    content: none;
}
.section_yellow .right_part {
    flex: 0 0 420px;
}
.section_yellow h6 {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.section_yellow h6:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: var(--Heavy-yellow);
} 
.section_yellow .list-wrap {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}
.section_yellow .video.small {
    flex: 0 0 192px;
}
.section_yellow .item {
    gap: 16px;
    align-items: flex-start;
}
.section_yellow .left_part {
    flex: 1 1 65%;
    min-width: 300px;     
    max-width: 840px;
}
.section_yellow .right_part {
    flex: 1 1 30%;
    min-width: 260px;
    max-width: 420px;
}
.section_yellow .video.small {
    flex: 0 0 192px;
}
/* END Section Yellow */

/* Section White Large */
.section_white-large .section_inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 40px;
}
.section_white-large .section_head {
    margin-bottom: 24px;
}
.section_white-large .section_head h2 {
    text-transform: uppercase;
    margin-right: 64px;
}
.section_white-large .section_head .text_box h2 {
    color: var(--Green-color);
}
.section_white-large sup {
    top: -35px;
    font-size: 75px;
}
.section_white-large.right_img .box.d-flex {
    flex-direction: row-reverse;
}
.section_white-large .left_part {
    position: relative;
    flex-basis: 50%;
}
.section_white-large img {
    border-radius: 48px;
}
.section_white-large .left_part:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    margin: auto 0;
    height: 32px;
    width: 32px;
    border-top: 32px solid transparent;
    border-bottom: 32px solid transparent;
    border-right: 32px solid var(--White-color);
}
.section_white-large .right_part {
    flex-basis: 50%;
}
.section_white-large p {
    line-height: 1.2;
}
.section_white-large h2 {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 16px;
    font-family: var(--font-family-quicksand);
    font-weight: 600;
}
.section_white-large h2:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: var(--Heavy-yellow);
}
.section_white-large .box {
    gap: 48px;
    align-items: center;
}
.section_white-large .btn_actions a:first-child {
    margin-right: 16px;
}
.section_white-large.right_img .box .left_part:after {
    left: 0; 
    right: auto;
    transform: rotate(180deg);
}
.section_white-large .box_grid .box:not(:last-child) {
    margin-bottom: 68px;
}
/* END Section White Large */

/* Footer */
footer {
    background-color: var(--Light-yellow);
    padding-top: 40px;
}
footer .footer_top {
    display: flex;
    justify-content: center; 
    align-items: stretch;    
    min-height: 400px; 
}
footer .left_part {
    background-color: var(--Heavy-yellow);
    flex-basis: 50%;
    margin-left: auto;
    position: relative;
    align-items: center;
    display: flex;         
    flex-direction: column;
    justify-content: center;
    padding: 64px 32px; 
}
footer .left_part:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    margin: auto 0;
    height: 32px;
    width: 32px;
    border-top: 32px solid transparent;
    border-bottom: 32px solid transparent;
    border-right: 32px solid var(--White-color);
}
footer .left_part .text_content {
    max-width: 600px;
    width: 100%;
    margin-left: auto;
}
footer .left_part h2 {
    color: var(--Black-color);
}
footer .left_part h2.h1 {
    text-transform: uppercase;
    color: var(--White-color);
}
footer .right_part {
    background-color: var(--White-color);
    flex-basis: 50%;
    padding: 80px 32px;
    align-items: center;
}
footer p {
    margin: 0;
}
.signup_section {
    background: var(--White-color);
    font-family: var(--font-family-arial);
    color: var(--Black-color);
}
.signup_inner {
    max-width: 720px;
    width: 100%;
}
.signup_form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 24px;
}
.signup_form .form_row.full_width,
.signup_form .form_actions,
.signup_form .recaptcha_note {
    grid-column: 1 / -1;
}
.signup_form input {
    width: 100%;
    padding: 14px 16px;
    font-size: 18px;
    border: 1.5px solid var(--Purple-color); 
    background: var(--White-color);
    color: var(--Grey);
    box-sizing: border-box;
}
.signup_form input::placeholder {
    color: var(--Middle-grey);
    font-size: 18px;
}
.signup_form input:focus {
    outline: none;
    border-color: var(--Purple-color);
}
.signup_form .btn {
    font-size: 20px;
    padding: 12px 28px
}
.recaptcha_note {
    font-size: 26px;
    color: var(--Middle-grey);
    line-height: 1.3;
    margin-top: 12px;
}
.recaptcha_note a {
    color: var(--Middle-grey);
}
.signup_form .form_actions {
    grid-column: 1 / -1; 
    display: flex;    
    justify-content: flex-start; 
}
.signup_form .btn_green {
    width: auto;
    background-color: var(--Green-color);
    color: var(--White-color);
    border: 1px solid var(--Green-color);
    transition: color .3s ease, background-color .3s ease, color .3s ease;
    cursor: pointer;
}
.signup_form .btn_green:hover {
    background-color: var(--Light-yellow);
    color: var(--Grey);
}
footer .footer_bottom {
    position: relative;
    padding: 32px 32px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
footer .footer_bottom .col{
    flex-basis: 33.333%;
}
footer .footer_bottom .charity {
    display: inline-block;
    width: 192px;
    height: 58px;
}
footer .footer_bottom .footer_logo {
    display: inline-block;
    width: 130px;
    height: 180px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}
footer .footer_nav {
    list-style: none;
    margin: unset;
}
footer .footer_nav li:not(:last-child) {
    margin-bottom: 24px;
}
footer .footer_nav li a{
    font-family: var(--font-family-quicksand);
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    color: var(--Black-color);
}
footer .footer_bottom h4 {
    margin-bottom: 32px;
}
footer .footer_bottom p {
    line-height: 1.2;
    margin-bottom: 32px;
}
footer .footer_bottom .footer_content .col:not(:last-child) {
    padding-right: 16px;
}
footer .socials ul li {
    background-color: initial ;
    border: unset;
    justify-content: flex-start;
}
footer .socials ul li:hover {
    background-color: initial;
    border-color: initial;
}
footer .footer_bar {
    background-color: var(--Dark-color);
    border-top: 4px solid var(--Heavy-yellow);
}
footer .copyright {
    padding: 16px;
}
footer .copyright p {
    color: var(--White-color);
    font-size: 16px;
    text-align: center;
}
/* END Footer */

/* Intro Section */
.intro {
    background-color: var(--Light-yellow);
    padding: 48px;
}
.intro .intro_inner {
    text-align: center;
    overflow-wrap: anywhere;
}
.intro h1 {
    text-transform: uppercase;
}
/* END Intro Section */

/* About */
.about {
    padding: 48px;
}
blockquote {
    display: inline-block;
    position: relative;
    border-left: 4px solid var(--Heavy-yellow);
    font-size: 28px;
    line-height: 1.4;
}
.about h4 {
    margin-bottom: 24px;
    font-size: 38px;
}
.about p a {
    color: var(--Green-color);
    font-weight: bold;
    border-bottom: 1px solid var(--Green-color);
    transition: border-bottom .4s ease, color .4s ease;
}
.about p a:hover  {
    color: var(--PurpleLight-color);
    border-bottom: 1px solid var(--PurpleLight-color);
}
.about .video:after {
    content: none;
}
/* END About */

/* List Members */
.list_members {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.list_members:has(.accordion) {
    padding: 40px 40px 0;
}
.list_members .tabs ul {
    list-style: none;
}
.list_members .tabs ul li a {
    color: var(--Grey);
    font-family: var(--font-family-shadows);
    font-size: 32px;
    font-style: normal;
    font-weight: normal;
    line-height: 1.2;
}
.list_members .tabs ul li {
    margin-bottom: unset;
}
/* Accordion */
.accordion {
    background-color: var(--Greyish);
    padding: 40px;
}
.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
    padding-top: 24px;
}
.accordion-panel .btn.btn_green{
    display:block;
    clear:both;
    float:none;
    width:max-content;
    margin-top:20px;
    margin-bottom: 24px;
}
.accordion .img_container {
    width: 150px;
    height: 150px;
    margin: 0 32px 32px 0;
    float: left;
}
.accordion h6 {
    text-transform: uppercase;
    width: 90%;
    line-height: 1.3;
}
.accordion-header {
    all: unset;          
    display: block;     
    width: 100%;
    cursor: pointer;
    border-bottom: 2px solid var(--Heavy-yellow);
    position: relative;
    padding-bottom: 10px;
}
.list_members .accordion-header {
    padding-bottom: 0px;
}
.accordion-header:after {
    font-family: "Font Awesome 6 Free";
    content: "\f067";
    font-weight: 900;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: transform 0.6s ease;
}
.accordion-item.active .accordion-header::after {
    content: "\f068";
}
.accordion-panel {
    font-size: 20px;
}
.list_members .accordion ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 24px;
}
.list_members .accordion ul li {
    position: relative;
    padding-left: 14px;
    line-height: 1.7;
}
.list_members .accordion ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 14px;
}
/* End Accordion */
.tabs ul {
    margin: 18px 18px 0 18px;
}
.tabs-nav li a {
    padding: 10px 20px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    display: inline-block;
    transition: background 0.3s ease, color 0.3s ease;
    text-align: center;
}
.tabs-nav li.active a {
    background-color: var(--Greyish);
    height: 100%;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
/* END List Members */

/* Press */
.press {
    background-color: var(--Greyish);
}
.press .section_head {
    padding: 40px 40px 0 40px;
}
/* END Press */

/* Card */
.card_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card {
    /* display: flex;            
    justify-content: center;  
    align-items: center;       */
    position: relative;
    border-radius: 48px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    background-color: var(--White-color);
    width: 100%;      
    aspect-ratio: 350 / 255; 
}
.card.logos {
    display: flex;                 
    justify-content: center;       
    align-items: center;           
    padding: 24px;                 
    width: 100%;                   
    aspect-ratio: 350 / 255;     
    border-radius: 48px;
    background-color: var(--White-color);
    overflow: hidden;
}
.card.logos img {
    height: 100%;
    object-fit: contain;
}
.card.video::after { 
    content: none;
}
.card.fam {
    background-image: url('../images/emptybox.png');
    background-size: cover;
    background-position: center; 
}
.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.object_fit-contain {
    display: flex;                 
    justify-content: center;       
    align-items: center;           
    padding: 40px;                 
    width: 100%;                   
    aspect-ratio: 350 / 255;     
    border-radius: 48px;
    background-color: var(--White-color);
    overflow: hidden;
}
.object_fit-contain img {
    height: 100%;
    object-fit: contain;
}
/* END Card */

/* Families */
section.families {
    padding-block: 50px;
}
.families .tab-content {
    display: none;
}
.families .tab-content.active {
    display: grid;
    padding: 34px 40px;
}
.families li a {
    border-bottom: 2px solid transparent;
    transition: border-bottom .4s ease-in;
}
.families_nav li.active a {
    font-weight: 700;
    border-bottom: 2px solid var(--Heavy-yellow);
    font-size: 16.5px;
}
.filter_nav ul{
    list-style: none;
    flex-wrap: wrap;
    row-gap: 14px;
}
.filter_nav ul li a {
    color: var(--Grey);
    border-bottom: 2px solid transparent;
    transition: border-bottom .4s ease-in;
}
 .filter_nav ul li {
    font-family: var(--font-family-quicksand);
    font-weight: 700;
    font-size: 16px;
    font-style: normal;
    text-transform: uppercase;
    color: var(--Grey);
    cursor: pointer;
 }
.filter_nav ul li:not(.search):not(.active) a:hover {
    border-bottom: 2px solid var(--Heavy-yellow);
}
.filter_nav ul li:not(:last-child) {
    margin-right: 32px;
}
.filter_nav ul:last-child li:last-child {
    margin-right: 32px;
}
.filter_nav input {
    font-family: var(--font-family-raleway);
    padding: 8px;
    border: 1px solid var(--PurpleLight-color);
    color: var(--Grey);
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
}
.pagination .pagination-list {
    flex-wrap: wrap;
    row-gap: 12px;
}
.pagination {
    text-align: center;
}
.pagination li {
    display: inline-block;
    font-family: var(--font-family-quicksand);
    background-color: transparent;
    border: 1px solid var(--Purple-color);
    font-weight: bold;
    cursor: pointer;
}
.pagination li a {
    display: block;
    color: var(--Green-color);
    padding: 4px 14px;
}
.pagination li.go_next a {
    padding: 4px 0;
}
.pagination li.active {
    background-color: var(--Purple-color);
    color: var(--White-color);
    cursor: default;
}
.pagination li.active a {
    color: var(--White-color);
}
.pagination li.dots,
.pagination li.go_next,
.pagination li.go_prev {
    border: unset;
    padding: unset;
}
.pagination li:not(:last-child) {
    margin-right: 12px;
}
.pagination a svg {
    color: var(--Green-color);
}
/* END Families */

/* Large Slider */
.large_slider {
    padding: 40px;
}
/* END Large Slider */

/* Card Slider */
.card_slider {
    background-color: var(--Greyish);
    padding: 40px 0;
}
.card_slider .btn {
    margin-top: 42px;
}
.card_slider h4 {
    margin-bottom: 36px;
}
/* END Card Slider */

/* Sitemap */
.sitemap {
    padding: 0 40px;
}
.sitemap h6 {
    border-bottom: 1px solid var(--Green-color);
    width: max-content;
}
.sitemap h6 a {
    color: var(--Green-color);
}
.sitemap h6:first-child {
    margin-right: 12px;
}
.sitemap ul li a {
    border-bottom: 1px solid var(--Green-color);
    transition: color .4s ease-in, border-bottom .4s ease-in ;
}
.sitemap ul li:hover a {
    color: var(--Purple-color);
    border-bottom: 1px solid var(--Purple-color) ;
}
.sitemap li {
    margin-bottom: 8px;
}
/* END Sitemap */

/* Sliders */
/* Hero Swiper */
.heroSwiper .swiper-pagination {
    bottom: 30px;
}

.heroSwiper .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background: var(--White-color);
    opacity: 1;
    border: 2px solid var(--Heavy-yellow);
}
.heroSwiper .swiper-pagination-bullet-active {
    background: var(--Heavy-yellow);
}
.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next {
    color: var(--Heavy-yellow);
    width: 80px;
    height: 80px;
    transition: color 0.4s ease;
}
.heroSwiper .swiper-button-prev::after,
.heroSwiper .swiper-button-next::after {
    font-size: 60px;
    font-weight: bold;
}
.heroSwiper .swiper-button-prev {
    left: 16px;
}
.heroSwiper .swiper-button-next {
    right: 16px;
}
.heroSwiper .swiper-button-prev:hover,
.heroSwiper .swiper-button-next:hover {
    color: var(--Purple-color);
    transition: color 0.3s ease;
}
.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-pagination {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}
.heroSwiper.swiper-initialized .swiper-button-prev,
.heroSwiper.swiper-initialized .swiper-button-next,
.heroSwiper.swiper-initialized .swiper-pagination {
    opacity: 1;
    visibility: visible;
}
/* End Hero Swiper */
/* Swiper 0 */
.swiper0 {
    padding-bottom: 50px;
}
.swiper.swiper0 .swiper-pagination {
    left: 50% !important;
    transform: translateX(-50%) !important;
}
.swiper.swiper0.swiper-autoheight .swiper-wrapper {
   padding-bottom: 50px;
}
.swiper0 .swiper-slide {
    position: relative;
    padding: 85px 32px;
}
.swiper0 .swiper-slide:before,
.swiper0 .swiper-slide:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 5px;
    width: 90%;
    background-color: var(--Heavy-yellow);
    border-radius: 5px;
}
.swiper0 .swiper-slide:before{
   top: 0;
}
.swiper0 .swiper-slide:after{
    bottom: 0;
 }
.swiper0 h3 {
    margin-bottom: 20px;
 }
.swiper0 .swiper-slide p {
    margin-bottom: 0;
 }
.swiper0 .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.swiper0 .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: var(--White-color);
    border: 1px solid var(--Heavy-yellow);
    opacity: 1;
    margin: 0 6px;
}
.swiper0 .swiper-pagination-bullet-active {
    background: var(--Heavy-yellow);
}
/* END Swiper0 */

/* Swiper1 */
.swiper1 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 48px;
    overflow: hidden;
    background-color: #f9f6f6;;
}
.swiper1 .swiper-slide {
    aspect-ratio: 16 / 9;
    padding: 0 100px;
    box-sizing: border-box;
    background-clip: content-box;
}
.swiper1 .swiper-slide a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.swiper1 .swiper-slide::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
    background-image: linear-gradient(rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.5) 100%);
}
.swiper1 .video {
    border-radius: unset;
}
.swiper1 .video:hover {
    transform: unset;
}
.swiper1 .video[data-fancybox]:after {
    display: block;
}
.swiper1 .video:not([data-fancybox]):after {
    display: none;
}
.swiper1 .swiper-pagination {
    bottom: 30px ;
}
.swiper1 .swiper-pagination-bullet {
    width: 24px;
    height: 24px;
    background: var(--White-color);
    opacity: 1;
    border: 2px solid var(--Heavy-yellow);
}
.swiper1 .swiper-pagination-bullet-active {
    background: var(--Heavy-yellow);
}
.swiper1 .swiper-button-prev,
.swiper1 .swiper-button-next {
    color: var(--Heavy-yellow);
    width: 80px;
    height: 80px;
    transition: color 0.4s ease;
}
.swiper1 .swiper-button-prev::after,
.swiper1 .swiper-button-next::after {
    font-size: 80px;
    font-weight: bold;
}
.swiper1 .swiper-button-prev {
    left: 16px;
}
.swiper1 .swiper-button-next {
    right: 16px;
}
.swiper1 .swiper-slide img {
    object-position: center 30%; 
}
.swiper1 .swiper-button-prev:hover,
.swiper1 .swiper-button-next:hover {
    color: var(--Purple-color);
    transition: color 0.3s ease; 
}
/* END Swiper1 */

/* Swiper2 */

.swiper.swiper2 {
    position: relative;
    padding-inline: 70px;
    overflow: hidden;
}
.swiper2 .video:after {
    content: none;
}
.swiper2 .video:hover {
    transform: unset;
}
.swiper2 .swiper-button-prev,
.swiper2 .swiper-button-next {
    color: var(--Heavy-yellow);
    width: 40px;
    height: 40px;
    transition: color 0.4s ease;
}
.swiper2 .swiper-button-prev::after,
.swiper2 .swiper-button-next::after {
    font-size: 40px;
    font-weight: bold;
}
.swiper2 .swiper-button-prev {
    left: 16px;
}
.swiper2 .swiper-button-next {
    right: 16px;
}
.swiper2 .swiper-button-prev:hover,
.swiper2 .swiper-button-next:hover {
    color: var(--Green-color);
    transition: color 0.3s ease; 
}
/* mask left + right */
.swiper2::before,
.swiper2::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px; 
    z-index: 5;
    pointer-events: none;
    background: var(--Greyish);
}
.swiper2::before {
    left: 0;
}
.swiper2::after {
    right: 0;
}
/* END Swiper2 */

/* ----- Contact Form----- */
.contact-us {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: inherit;
    color: var(--Black-color);
  }
  .contact-us .form-field {
    margin-bottom: 18px;
  }
  .contact-us input[type="text"],
  .contact-us input[type="email"],
  .contact-us input[type="tel"],
  .contact-us select,
  .contact-us textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--Purple-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    color: var(--Black-color);
    background: var(--White-color);
    box-sizing: border-box;
  }
  .contact-us input:focus,
  .contact-us select:focus,
  .contact-us textarea:focus {
    outline: none;
    border-color: var(--Green-color);
    box-shadow: 0 0 1px var(--Green-color);
    background-color: var(--Greyish);
  }
  .contact-us label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    color: #222;
  }
  .contact-us textarea {
    min-height: 120px;
    resize: vertical;
  }
  .contact-us .checkbox label {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
  }
  .contact-us .checkbox label a {
   color: var(--Green-color);
   border-bottom: 1px solid var(--Green-color);
  }
  .contact-us .checkbox input[type="checkbox"] {
    margin-right: 10px;
  }
  .contact-us select {
    padding-right: 40px;
  }
  .contact-us select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  
    background-image: url(/assets/images/select-arrow.svg);
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px 8px;
    padding-right: 44px;
  }
  .contact-us button {
    padding: 10px 30px;
  }
 .contact-us .checkbox label {
    display: flex;
    align-items: flex-start; 
    gap: 8px;              
}
.contact-us .checkbox input[type="checkbox"] {
    flex: 0 0 auto;          
    margin-top: 3px;        
}
.contact-us .checkbox span {
    display: inline-block;
    line-height: 1.5;
    flex: 1 1 0;            
    min-width: 0;            
}

/* Fancybox popup */
.families-popup .fancybox__content {
    background-color: #424242;
    padding: 50px 32px 32px;
}
.families-popup .fancybox__slide .fancybox__content a.fancyclose {
    display: none;
}
.families-popup .fancybox__slide .fancybox__content h3 {
    color: var(--Heavy-yellow);
    font-family: var( --font-family-oswald);
    font-size: 103px;
    font-style: normal;
    font-weight: 100;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 28px;
}
.families-popup .fancybox__slide .fancybox__content h4 {
    color: var(--White-color);
    margin-right: 36px;
}
.families-popup .fancybox__slide .fancybox__content h5 {
    color: var(--White-color);
    text-align: center;
    margin-bottom: 24px;
}
.families-popup .fancybox__slide .fancybox__content p {
   color: var(--White-color);
    text-align: center;
    font-size: 24px;
}
.families-popup .fancybox__slide .fancybox__content p:not(:last-child) {
    margin-bottom: 12px;
 }
 .families-popup .fancybox__slide .fancybox__content .audio {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 36px 18px;
}
body .fancybox__container {
    --fancybox-bg: rgba(24, 24, 27, 0.95)!important;
 }
 .families-popup .fancybox__content>.f-button.is-close-btn {
    color: var(--White-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 5px;
    right: 5px;
}
.families-popup .fancybox__content>.f-button.is-close-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--White-color);
    transition: stroke .2s ease-in;
}
.families-popup .fancybox__content>.f-button.is-close-btn:hover {
    background: unset;
    border-radius: unset;
    border: none;
}
.families-popup .fancybox__content>.f-button.is-close-btn:hover svg {
    stroke: var(--Purple-color);
}
.families-popup .fancybox__content>.f-button.is-close-btn svg path {
    stroke-width: 5;
}
.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
    padding-block: 40px;
}
/* Audio */
.audio {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 40px 40px;
}
.audio h4 {
    margin-right: 35px;
}
/* Family */
.family .content {
    padding: 40px;
}

/* Loader */
#familyLoader {
    display: none;
}
.loader {
    position: absolute;
    top: 120px;
    left: 50%;
    width: 32px;
    height: 32px;
    height: 32px;
    transform: translateX(-50%);
    z-index: 999;
}
.loader.green-alt .loader-inner {
    background-color: #C3CF21;
}
.loader-inner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
}
.loader-inner:nth-child(1) {
    top: -4px;
    left: -4px;
    animation: translateBall1 0.8s infinite ease-in-out;
}
.loader-inner:nth-child(2) {
    top: -4px;
    right: -4px;
    animation: translateBall2 0.8s infinite ease-in-out;
}
.loader-inner:nth-child(3) {
    bottom: -4px;
    right: -4px;
    animation: translateBall3 0.8s infinite ease-in-out;
}
.loader-inner:nth-child(4) {
    bottom: -4px;
    left: -4px;
    animation: translateBall4 0.8s infinite ease-in-out;
}

/* Animations */
@keyframes translateBall1 {
    50% { transform: translate(2px,2px); }
}
@keyframes translateBall2 {
    50% { transform: translate(-2px,2px); }
}
@keyframes translateBall3 {
    50% { transform: translate(-2px,-2px); }
}
@keyframes translateBall4 {
    50% { transform: translate(2px,-2px); }
}
.loader {
    animation: rotateLoader 2.5s infinite linear;
}
@keyframes rotateLoader {
    from {
        transform: translateX(-50%) rotate(0deg);
    }
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}
/* CF7 */
.wpcf7-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: inherit;
    color: var(--Black-color);
  }
  .wpcf7-form .form-control {
    margin-bottom: 18px;
    line-height: 1.4;
  }
  .wpcf7-form .wpcf7-form-control-wrap {
    display: block;
  }
  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form input[type="tel"],
  .wpcf7-form select,
  .wpcf7-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--Purple-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    color: var(--Black-color);
    background: var(--White-color);
    box-sizing: border-box;
  }
  .wpcf7-form input:focus,
  .wpcf7-form select:focus,
  .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--Green-color);
    box-shadow: 0 0 1px var(--Green-color);
    background-color: var(--Greyish);
  }
  .wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
  }
  .wpcf7-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  
    background-image: url(../images/select-arrow.svg);
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px 8px;
    padding-right: 44px;
  }
  .wpcf7-form .checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
  }
  .wpcf7-form input[type="checkbox"] {
    flex: 0 0 auto;
    margin-top: 3px;
  }
  .wpcf7-form .checkbox a {
    color: var(--Green-color);
    border-bottom: 1px solid var(--Green-color);
    font-weight: bold;
  }
  .wpcf7-form input[type="submit"],
  .wpcf7-form button {
    padding: 10px 30px;
    background: var(--Green-color);
    color: var(--White-color);
    border: none;
    border-radius: 24px;
    cursor: pointer;
    font-size: 16px;
    border: 1px solid var(--Green-color);
  }
  .wpcf7-form input[type="submit"]:hover,
  .wpcf7-form button:hover {
    background-color: var(--Light-yellow);
    color: var(--Grey);
  }
  .wpcf7-response-output {
    width: 100%;
    margin: 18px 0 0;
    padding: 14px 16px;
    border-radius: 4px;
    border: 1px solid var(--Purple-color);
    background: var(--Greyish);
    color: var(--Black-color);
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    color: red;
}
.wpcf7 form.invalid .wpcf7-response-output {
    border-color: var(--Green-color);
    padding-block: 12px;
}
.wpcf7 form .wpcf7-response-output {
    margin: 2em 0em 1em!important;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2;
}
.wpcf7-not-valid-tip {
    font-size: 14px;
    color: var(--Green-color);
    margin-top: 4px;
}
.wpcf7-form-control.wpcf7-url {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--Purple-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    color: var(--Black-color);
    background: var(--White-color);
    box-sizing: border-box;
}
.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 0!important;
}
.wpcf7-list-item-label a {
    color: var(--Green-color);
    border-bottom: 1px solid var(--Green-color);
    font-weight: bold;
}

/* Common */
.cont-lg {
    padding-inline: 40px;
    padding-bottom: 40px;
}
section.cont-lg p a:not(.btn):not(.button) {
    color: var(--Green-color);
    font-weight: bold;
    border-bottom: 1px solid var(--Green-color);
    transition: border-bottom .4s ease, color .4s ease;
}
  section.cont-lg p a:not(.btn):not(.button):hover {
    color: var(--Purple-color);
    border-bottom: 1px solid var(--Purple-color);
}
.o_wrapper h4 {
    font-size: 40px;
    margin-bottom: 32px;
}
.o_wrapper p a:hover {
    color: var(--PurpleLight-color);
    border-bottom: 1px solid var(--PurpleLight-color);
}
ul li:not(:last-child) {
    margin-bottom: 5px;
}
nav.prime_nav li {
    margin-bottom: unset;
}
.families ul li {
    margin-bottom: unset;
}
.wp-block-group {
    padding: 0px 40px 0;
}
.wp-block-group .section_head > h2 {
    color: var(--Heavy-yellow);
    margin-right: 60px;
}
.wp-block-group .section_head .text_box h2 {
    color: var(--Green-color);
}
.wp-block-group .section_head .text_box h2 sup {
    font-size: 40px;
    top: -58px;
}
.wp-block-group .section_head h4 {
    margin-bottom: unset;
}
.img_section .video {
    display: block;
    width: 100%;
    height: 586px;
    background-size: cover;
    background-position: center;
}
p.quote {
    margin-bottom: unset;
}
section.cont-lg h6 {
    position: relative;
    margin-bottom: 12px;
    display: inline-block; 
}
section.cont-lg h6::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: var(--Heavy-yellow);
}
section.cont-lg h4 {
    font-size: 50px;
    margin-bottom: 35px;
}
.split-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
    margin-bottom: 50px;
}
body.homepage .wp-block-group .section_head {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding-inline: 40px;
}
  main:has(h2.only_bg) {
    background: var(--Greyish);;
  }
  p.only_width {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  section.cont-lg h2.only_bg {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
section.cont-lg .top_hd {
    margin-top: 60px!important;
}
.tabs .tab-content {
    background: var(--Greyish);
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 40px;
  }
  section.cont-lg .accordion h6::after {
    content: none;
  }
  .tabs .tab-content h4 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 0 40px 0;
  }
  .cont-lg > p:first-child {
    margin-top: 50px;
  }
  section.cont-lg > p:first-of-type:not(:first-child):not(.mt-unset) {
    margin-top: 40px;
}
  p:empty {
    display: none;
 }
 .accordion .accordion-panel {
    font-size: 20px;
    font-family: var(--font-family-raleway);
    line-height: 1.6;
    font-weight: 400;
    font-style: normal;
 }
 body.homepage .wp-block-group .section_head {
    margin-top: 45px;
 }
section.cont-lg > .full_width > section.section_yellow:first-child {
    margin-bottom: 45px;
}
body:has(.accordion) .section_yellow {
    margin-bottom: 0!important;
}
b {
    font-weight: bold;
}
ul li:not(nav ul li) {
    font-size: 21px;
}
.col.half.top h6 a{
    color: var(--Green-color);
}
.grid:has(.half.top) {
    display: flex;
    gap: 24px;
}
.col.half.top h6:first-child{
    margin-right: 12px;
}
.accordion-item.cont-lg {
    padding-inline: 0px;
}
p.quote {
    font-size: 30px;
}
section.cont-lg h2 {
    margin-bottom: 35px;
}
section.cont-lg .section_yellow h2 {
    margin-bottom: 0px;
}
.button_wrapper a:first-child {
    margin-right: 24px;
}
.mr-top {
    margin-top: 50px;
}
.list_members .tabs .cont-lg {
    padding-bottom: unset;
}
section.cont-lg .accordion h2 {
    margin-bottom: 0px;
}
.accordion-item.cont-lg {
    padding-bottom: 0px;
}
.section_yellow .section_inner p:last-child {
    font-size: 24px;
    margin-top: 24px;
}
.wp-block-heading.gdpr {
    color: var(--Heavy-yellow);
    margin-bottom: 10px;
}
.section_yellow.shortnews-homepage .right_part .item p {
    margin-top: 0px;
    font-size: 16px;
}
.section_yellow.shortnews-homepage .list-wrap {
    gap: 14px;
}
.section_yellow.shortnews-homepage .left_part .video::before{
    content: none;
}
.section_yellow.shortnews-homepage .right_part .video::before{
    content: none;
}
body.search ul.two-cols {
    list-style: none;
    padding: 40px;
    margin: unset;
}
body.search h3 {
    padding-inline: 40px;
}
.pagination ul.pagination-list li:not(:last-child) {
    margin-bottom: unset;
}
footer .footer_content .col p a {
    color: var(--Grey);
    border-bottom: 1px solid var(--Green-color);
    transition: border-bottom .4s ease, color .4s ease;
}
footer .footer_content .col p a:hover {
    color: var(--Purple-color);
    transition: color .3s ease-in-out;
    border-bottom: 1px solid var(--Purple-color);
}
section.cont-lg .families h6 {
   position: absolute;
}
section.cont-lg .families .tab-content.active {
    padding: 34px 0px;
}
ul.pagination-list {
    margin: 24px 0 0 0;
}
.pagination ul.pagination-list li.go_prev {
    margin-right: unset!important;
}
/* Cookie Banner */
.cky-btn-customize {
    color: #424242!important;
    background: transparent;
    border: 2px solid #C7A2D2!important;
    transition: opacity .3s ease,
}
.cky-btn-reject {
    color: #424242!important;
    background: transparent;
    border: 2px solid #C7A2D2!important;
    transition: opacity .3s ease,
}
.cky-btn-accept {
    background: var(--Purple-color)!important;
    color: var(--Black-color)!important;
    border: 2px solid var(--Purple-color)!important;
    transition: color .3s ease, background-color .3s ease, border .3s ease;   
}
.cky-btn-accept:hover {
    background-color:var(--PurpleLight-color)!important;
}
.cky-btn-reject:hover {
    opacity: 0.8!important;
}
.cky-btn-customize:hover {
    opacity: 0.8!important;
}
.cky-consent-bar .cky-notice-des p {
    font-family: var(--font-family-raleway)!important;
    color: #424242!important;
}
.cky-notice .cky-title {
    font-family: var(--font-family-raleway)!important;
    color: #424242!important;
}

/* BBForm */
/* Container as grid */
#bboxsignup-74594b82-0371-4764-b4ab-abb2878596fe_BBEmbeddedForm .BBFormSection fieldset {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 24px;
    border: none;
    padding: 0;
    margin: 0;
}
.BBFormSectionHeading,
.BBFormSubSectionHeading {
    grid-column: 1 / -1;
}
.BBFormFieldContainer {
    width: 100%;
}
.BBFormFieldContainer:nth-of-type(4),
.BBFormButtonRow,
#reCAPTCHADisclosure {
    grid-column: 1 / -1;
}
.BBFormTextbox {
    width: 100%;
    padding: 14px 16px;
    font-size: 18px;
    border: 1.5px solid var(--Purple-color);
    background: var(--White-color);
    color: var(--Grey);
    box-sizing: border-box;
}
.BBFormTextbox::placeholder {
    color: var(--Middle-grey);
    font-size: 18px;
}
.BBFormTextbox:focus {
    outline: none;
    border-color: var(--Purple-color);
}
.BBFormButtonRow {
    margin-top: 10px;
}

.BBFormSubmitbutton {
    font-size: 20px;
    padding: 12px 28px;
    cursor: pointer;
    border: none;
    background: var(--Purple-color);
    color: #ffffff;
}
.BBFormSubmitbutton:hover {
    opacity: 0.9;
}
#reCAPTCHADisclosure p {
    font-size: 26px;
    color: var(--Middle-grey);
    line-height: 1.3;
}
#reCAPTCHADisclosure p a{
    color: var(--Middle-grey);
}


/* MEDIA QUERIES */
@media (max-width: 1300px) {
    nav > ul > li:not(:last-child) {
        margin-right: 16px;
    }
    .section_yellow .right_part .item {
        flex-direction: column;
    }
    header .bottom_bar .left_part {
        gap: 18px;
    }
    header nav ul.prime_nav > li:not(:last-child) {
        margin-right: 12px;
    }
}
@media (max-width: 1200px) {
    header .bottom_bar {
        height: 80px;
    }
    header .bottom_bar .left_part {
        gap: 0px;
    }
    nav ul li a {
        font-size: 14.5px;
    }
    nav ul li {
        line-height: 1.5;
    }
    nav ul li:not(:last-child) {
        margin-right: 12px;
    }
    header nav ul.prime_nav li a {
       font-size: 18px;
    }
    .donate {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
}
@media (max-width: 1100px) { 
    header nav ul.prime_nav li a {
        font-size: 16px;
     }
}
@media (max-width: 1024px) {
    body {
        padding-top:75px;
    }
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
    }
    header .logo {
       top: -15px;
    }
    header .logo img {
        width: 108px;
        height: 102px;
    }
    header .donate svg {
        width: 41px;
        height: 35px;
    }
    header .top_bar {
        display: none;
    }
    header nav {
        display: block;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--White-color);
        padding: 40px 16px 24px;
        z-index: 2;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
    }

    header nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    header nav ul.prime_nav {
        flex-direction: column;
        gap: 0px;
    }
    header nav ul.prime_nav > li {
        width: 100%;
        cursor: pointer;
    }
    header nav ul.prime_nav > li:not(:last-child) {
        margin-right: 0;
    }

    header nav ul.prime_nav li a {
        font-size: inherit;
    }
    header nav .dropdown_menu {
        opacity: 1;
        visibility: visible;
        position: relative;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin: 0px 0px 16px 10px;
        transition: max-height 0.3s ease;
        left: 0;
    }
    header nav .dropdown_menu ul {
        padding: 0;
        margin: 0;
    }
    header nav .dropdown_menu li {
        padding: 10px 0;
        margin: 0;
    }
    header nav .dropdown_menu li:not(:last-child) {
        margin-bottom: 8px;
    }
    header nav ul.prime_nav > li.open > .dropdown_menu {
        max-height: 500px; 
    }
    header nav ul.prime_nav > li.has_dropdown::before {
        font-family: "Font Awesome 6 Free";
        content: "\f067";
        font-weight: 900;
        position: absolute;
        right: 10px;
        top: 0;
        font-size: 24px;
        transition: transform 0.4s ease;
    }
    header nav ul.prime_nav > li.open.has_dropdown::before {
        transform: rotate(45deg);
    }
    header .bottom_bar {
        height: 70px;
    }
    header nav.is-open .top_bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        width: 100%;
        margin-top: 30px;
    }
    header nav.is-open .top_bar .search{
       margin-bottom: 20px;
    }
    .donate {
        flex-direction: row;
        align-items: flex-start;
    }
    .nav_trigger {
        display: block;
    }  
    .search_btn {
        margin-right: unset;
    }
    .hero {
        flex-direction: column;
        margin-top: unset;
        min-height: auto;
        margin-top: unset;
    }
    .hero .hero_left,
    .hero .hero_right {
        flex: 0 0 100%;
        width: 100%;
    }
    .hero .hero_left .img_container {
        position: relative; 
        width: 100%;
        height: 400px; 
    }
    .hero .hero_right {
        margin: 0 auto;
        padding: 32px 24px 64px;
    }
    .hero .img_container .image {
        height: 400px;
    }
    .section_green {
        padding: 0 24px;   
    }
    .section_green .section_inner {
        flex-direction: column;
        text-align: center;
    }
    .section_green .left_part .text_content {
        max-width: 100%;
    }
    .section_yellow .right_part {
        text-align: center;
    }
    .section_white-large .section_inner {
        padding: 40px 24px;
    }
    .section_white-large .section_head {
        flex-direction: column;
        text-align: center;
    }
    .section_white-large .section_head h2 {
        margin-bottom: 16px;
    }
    .section_white-large .box {
        flex-direction: column;
        text-align: center;
    }
    .section_white-large .box:nth-child(even) {
        flex-direction: column;
    }
    .section_white-large .btn_actions {
        justify-content: center;
    }
    .section_white-large .section_head h2 {
        margin-right: 0;
    }
    .section_white-large .box .left_part,
    .section_white-large .box .right_part {
        width: 100%;
        max-width: 100%;
        flex: none; 
    }
    footer .recaptcha_note {
        text-align: center;
        font-size: 20px;
    }
    footer .left_part {
        margin-left: unset;
    }
    footer .left_part,
    footer .right_part {
        flex-basis: 100%;
    }
    footer .footer_top {
        flex-direction: column;
    }
    footer .left_part .text_content {
        margin: 0 auto;
        text-align: center;
    }
    footer .left_part:after {
        left: 50%;           
        top: 84%;           
        transform: translateX(-50%); 
        border-left: 32px solid transparent;
        border-right: 32px solid transparent;
        border-bottom: 32px solid var(--White-color);
    }
    footer .right_part {
        padding: 40px 32px;
    }
    .signup_inner {
        max-width: 100%;
    }
    .signup_form .form_actions {
        text-align: center;
    }
    footer .footer_content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    footer .footer_bottom .col {
        flex-basis: 100%;
    }
    footer .footer_nav {
        margin-bottom: 24px;
    }
    footer .footer_nav li:not(:last-child) {
        margin-bottom: 0;
    }
    footer .socials ul {
        justify-content: center;
        margin-bottom: 24px;
    }
    footer .socials ul li {
        justify-content: center;
    }
    .card_grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
   } 
   .card {
       border-radius: 35px;
   }
    .tabs {
        background-color: var(--Greyish);
        padding-top: 40px;
        position: relative;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    .tabs-nav {
        flex-wrap: wrap;
    }
    .list_members .tabs .tabs-nav li a {
       border-radius: 24px;
       background-color: var(--Light-grey);
       font-family: var(--font-family-raleway);
       font-size: 16px;
       font-weight: 700;
    }
    .tabs ul {
        margin: 0 18px;
        gap: 12px;
    }
    .list_members .tabs .tabs-nav li.active a {
        background-color: #ebebeb;
    }
    .list_members:has(.accordion) {
        padding: 0px 40px 0;
    }
    .accordion {
        padding: 40px 24px 16px;
    }
    .families-popup .fancybox__slide .fancybox__content p {
         font-size: 18px;
     }
     .families-popup .fancybox__slide .fancybox__content h3 {
         font-size: 80px;
     }
     .families-popup .fancybox__slide .fancybox__content .audio {
       flex-direction: column;
       row-gap: 24px;
    }
    .families-popup .fancybox__slide .fancybox__content h4 {
        margin-right: 0;
     }
     .swiper0 .swiper-slide {
        padding: 50px 24px;
    }
    .section_white-large.right_img .box.d-flex {
        flex-direction: column;
    }
    .section_white-large .wp-block-buttons {
        justify-content: center;
        align-items: center;
    }
    .wp-block-group .section_head {
        flex-direction: column;
        text-align: center;
    }
    .wp-block-group .section_head h2{
        margin-bottom: 24px;
    }
    .wp-block-group .section_head .text_box h2 sup {
        font-size: 30px;
       top: -29px;
    }
    .wp-block-group .section_head > h2 {
       margin-right: 0px;
    }
    .accordion-item .cont-lg {
        padding-inline: 0px;
    }
    h4 {
        line-height: 1.3;
    }
    section.cont-lg h4 {
        margin-bottom: 24px;
    }
    section.cont-lg > p:first-of-type.mt-unset2 {
        margin-top: 0 !important;
    }
  }
  @media (max-width: 768px) {
    .hero .hero_right p {
        margin-bottom: 32px;
    }
    .hero .hero_right {
        padding: 32px 24px 64px;
    }
    .text_slider {
        padding: 32px 0
    }
    .text_slider .swiper .swiper-slide {
        position: relative;
        padding: 58px 32px;
    }
    .text_slider .swiper .swiper-pagination {
        margin-top: -40px;
    } 
    .section_white {
        background-position: left bottom;
        background-size: 140%;
        padding-bottom: 200px;
    }
    .section_yellow .right_part .list-wrap {
        display: none;
    }
    .section_yellow h6 {
        display: none;
    }
    footer .footer_bottom .footer_logo {
        width: 100px;
        height: 130px;
    }
    .press .section_head {
        padding: 40px 24px;
    }
    .card_grid {
        padding: 40px 0px;
    }
    .filter_nav ul {
        margin: 24px 24px 0 24px;
    }
    .families .filter_nav {
        flex-direction: column;
    }
    .filter_nav ul:last-child li:last-child {
         margin-right: 0px;
    }
    .audio {
        flex-direction: column;
        row-gap: 24px;
        padding: 0px 24px 40px;
    }
    .audio h4 {
        margin-right: unset;
    }
    .split-two {
        grid-template-columns: 1fr;
    }
    .wp-block-group {
        padding: 0;
    }
    .card_grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .accordion h2 {
        font-size: 22px;
    }
    .section_yellow.shortnews-homepage .section_content {
        gap: 24px;
    }

}
  @media (max-width: 640px) {
    .hero h2 {
        margin-bottom: 12px;
    }
    .hero h1 {
        margin-bottom: 8px;
    }
     .hero .hero_right {
        padding: 32px 24px 40px;
    }
    .hero .hero_left .img_container {
        height: 300px;
    }
    .hero .img_container .image {
        height: 300px;
    }
    .section_white {
        padding-top: 40px;
    }
    .section_white .section_inner {
        padding: 24px;
    }
    .section_purple .section_inner {
        padding: 40px 24px
    }
    .video {
        border-radius: 28px;
    }
    .section_white-large .btn_actions {
        flex-direction: column;
    }
    .section_white-large .btn_actions a:first-child {
        margin-right: 0;
        margin-bottom: 16px;
    }
    .section_white-large sup {
        font-size: 36px;
        top: -25px;
    }
    .section_white-large img {
        border-radius: 24px;
    }
    .section_white-large .box_grid .box:not(:last-child) {
        margin-bottom: 50px;
    }
    .section_white-large .box {
        gap: 24px;
    }
    .section_yellow {
        padding: 40px 0px;
    }
    .section_yellow .section_content {
        gap: 24px;
    }
    .section_green {
        padding: 0;
    }
    .press_grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .btn {
        padding: 12px 24px;
    }
    .signup_form {
        grid-template-columns: 1fr;
    }
    .fancybox__content>.f-button.is-close-btn {
        position: absolute;
        top: -33px;
        right: 0;
        background-color: transparent;
    }
    .card_grid {
        padding: 24px 0px;
    }
    blockquote {
       font-size: 24px;
    }
    .about {
        padding: 40px 24px;
    }
    .intro {
        padding: 40px 24px;
    }
    .pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        margin: 24px;
        row-gap: 10px;
    }
    .pagination li:not(:last-child) {
        margin-right: 8px;
    }
    section.cont-lg .families .pagination {
        margin: unset;
    }
    section.cont-lg .families ul.pagination-list {
        margin: 0px 0px 0px 0px;
    }
    section.cont-lg .families li.go_prev a {
        padding: 4px 8px;
    }

    .swiper1 {
        border-radius: 24px;
    }
    .swiper1 .swiper-button-next::after,
    .swiper1 .swiper-button-prev::after  {
        font-size: 30px;
    }
    .swiper1 .swiper-button-prev, .swiper1 .swiper-button-next {
        width: 30px;
        height: 30px;
    }
    .swiper1 .swiper-button-prev {
        left: 8px;
    }
    .swiper1 .swiper-button-next {
        right: 8px;
    }
    .swiper1 .swiper-slide {
        padding: 0 45px;
    }
    .swiper1 .swiper-pagination-bullet {
        width: 15px;
        height: 15px;
    }
    .swiper1 .swiper-pagination {
        bottom: 15px;
    }
    .swiper1 .swiper-slide {
        padding: 0 50px;
     }
    .sitemap .col-sm-6 {
        width: 100%;
        margin: 0;
    }
    .sitemap {
        flex-direction: column;
        padding: 24px;
    }
    .families-popup .fancybox__slide .fancybox__content p {
        font-size: 16px;
    }
    .families-popup .fancybox__slide .fancybox__content h3 {
        font-size: 50px;
    }
    .family .content {
        padding: 24px;
    }
    .large_slider {
        padding: 24px 24px 40px;
    }
    p.quote {
        font-size: 22px;
    }
    .img_section .video {
        height: 350px;
    }
    .button.smaller {
        padding: 12px 30px;
        font-size: 16px;
    }
    section.cont-lg h4 {
        font-size: 34px;
    }
    section.cont-lg {
        padding-inline: 24px;
    }
    body.homepage .wp-block-group .section_head {
       padding-inline: 0;
    }
  .wp-block-group .wp-block-group__inner-container p {
    margin-bottom: 24px;
    }
    .wp-block-spacer {
        height: 40px!important;
    }
    .tabs .tab-content h4 {
        padding: 0px 0 24px 0;
      }
      .cont-lg > p:first-child {
        margin-top: 40px;
      }
      .wpcf7-form {
        padding: 24px 0px;
    }
    .tabs .accordion.tab-content {
        padding: unset;
    }
    .list_members .tabs .accordion.tab-content {
        padding: 40px 40px 40px 24px;
    }
    .list_members .tabs .tab-content {
        margin-left: unset;
    }
    .accordion {
        padding: 40px 22px 16px 10px;
        margin-left: -8px;
    }
    .accordion .accordion-header {
        padding-right: 18px;
    }
    .accordion .btn {
        padding: 14px 20px;
        font-size: 16px;
    }
    .accordion .img_container {
        margin: 0 24px 24px 0;
    }
    body.homepage .wp-block-group .section_head {
        margin-top: 30px;
     }
     .section_white-large .section_inner {
        padding: 20px 24px;
    }
    h2.top_hd {
        margin-top: 40px;
    }
    section.cont-lg > .full_width > section.section_yellow:first-child {
        margin-bottom: 24px;
    }
    .grid:has(.half.top) {
        flex-direction: column;
    }
    ul li:not(nav ul li) {
        font-size: 18px;
    }
    .button_wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .button_wrapper a:first-child {
        margin-bottom: 15px;
    }
    .button_wrapper a:first-child {
        margin-right: 0px;
    }
    .cont-lg {
        padding-bottom: 24px;
    }
    .mr-top {
        margin-top: 0px;
    }
    section.cont-lg > p:first-of-type:not(:first-child) {
        margin-top: 0px;
    }
      section.cont-lg .accordion h6 {
        margin-bottom: unset;
    }
    section.cont-lg .accordion {
        padding-bottom: unset;
    }
    .section_yellow .section_inner p:last-child {
        font-size: 24px;
        margin-top: 24px;
    }
    body.search ul.two-cols {
        list-style: none;
        padding: 24px;
    }
    body.search h3 {
        padding-inline: 24px;
    }
    .heroSwiper .swiper-button-next {
        right: 0px;
    }
    .heroSwiper .swiper-button-prev {
        left: 0px; 
    }
    .heroSwiper .swiper-button-prev::after, 
    .heroSwiper .swiper-button-next::after {
        font-size: 40px;
    }
    section.families {
        padding-block: 18px;
    }
    .families .tab-content.active {
        padding: 34px 24px 0px;
    }
    .families .video h6 {
        font-size: 22px;
    }
    .families .card_grid {
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    }
    ul.pagination-list {
        margin: 18px 0 0 0;
    }
    p a.button.smaller:first-of-type {
        margin-bottom: 12px;
    }
}
@media (max-width: 560px) {
    .is-compact .fancybox__content>.f-button.is-close-btn {
        top: -34px!important;
        right: -1px!important;
    }
}
@media (max-width: 500px) {
    footer .footer_bottom {
        padding-bottom: 180px;
    }
    footer .footer_bottom .footer_logo {
        bottom: 30px;
        right: 50%;
        transform: translateX(50%);
    }
    .video:after {
        width: 40px;
        height: 40px;
        font-size: 21px;
        right: 10px;
        bottom: 10px;
    }
    a.play:after {
        width: 40px;
        height: 40px;
        font-size: 21px;
        right: 10px;
        bottom: 10px; 
    }
    .video h6 {
        font-size: 18px;
    }
    .filter_nav ul {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    .filter_nav ul li:not(:last-child) {
       margin-right: unset;
    }
    .families-popup .fancybox__slide .fancybox__content h3 {
        font-size: 40px;
    }
    .swiper1 .swiper-slide {
        padding: 0 35px;
    }
    .swiper1 .swiper-button-next {
        right: 2px;
    }
    .swiper1 .swiper-button-prev {
        left: 2px;
    }
    .audio h4 {
        font-size: 30px;
    }
    .img_section .video {
        height: 200px;
    }
}



