/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Template: astra
Author: Brainstorm Force
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 5,700+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 4.11.1.1748939382
Updated: 2025-06-03 08:29:42

*/

/*-- Site-wide CSS --*/
@media (max-width: 767px) {
     /*html,body {
        height: 100dvh !important; 
               overflow-y: hidden;
        height: calc(var(--vh, 1vh) * 100);
    }

    html {
        overflow: hidden;
    }*/
}


.dd-mixed-grid {
    --_dd-content-max-width: var(--dd-content-max-width,1140px);
    --_dd-col1-pct: var(--dd-col1-pct, 50);
    --_dd-gap: var(--dd-gap, 20px);
    --_dd-gutter: var(--dd-gutter, 10px);
    --dd-col1-width: min((var(--_dd-col1-pct) * (100% - var(--_dd-gap) - 2*var(--_dd-gutter)) / 100), (var(--_dd-col1-pct) * (var(--_dd-content-max-width) - var(--_dd-gap)) / 100));
    --dd-col2-width: min(((100 - var(--_dd-col1-pct)) * (100% - var(--_dd-gap) - 2 * var(--_dd-gutter)) / 100), ((100 - var(--_dd-col1-pct)) * (var(--_dd-content-max-width) - var(--_dd-gap)) / 100));
    --dd-grid-cols: [full-start col1-full-start] minmax(var(--_dd-gutter), 1fr) [col1-start content-start] var(--dd-col1-width) [col1-end col1-full-end gap-start] var(--_dd-gap) [gap-end col2-start col2-full-start] var(--dd-col2-width) [col2-end content-end] minmax(var(--_dd-gutter), 1fr) [col2-full-end full-end];
    display: grid;
    column-gap: 0;
    grid-template-columns: var(--dd-grid-cols);
    grid-auto-flow: row dense;
    width: 100%;
    max-width: min(100%, var(--dd-body-max-width));
    padding-inline: 0;
    align-items: stretch;
}

.dd-mixed-grid:where(.dd-mixed-grid) > :where(div, p, figure, img, h1, h2, h3, h4) {
    grid-column: content;
}
.dd-mixed-grid__col1 {
    grid-column: col1;
}
.dd-mixed-grid__col2 {
    grid-column: col2;
}
.dd-mixed-grid__col1--full {
    grid-column: col1-full;
}
.dd-mixed-grid__col2--full {
    grid-column: col2-full;
}
.dd-mixed-grid__content {
    grid-column: content;
}
.dd-mixed-grid__full {
    grid-column: full;
}
@media (max-width: 767px) {
    .dd-mixed-grid > :is(.elementor-element, div, section, article, aside, nav, figure, img, p, h1, h2, h3, h4, h5, h6) {
        grid-column: content;
    }
}
@media (max-width: 767px) {
  #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton, #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton {
	  font-size: 14px !important;}
}
.grecaptcha-badge {
    visibility: hidden;
}

a:focus {
  outline: none;
}

/* floating menu */
/** nav bar **/
nav.header-nav {
    position: fixed ;
    width: 100vw;
    z-index: 15;
}
.nav-bar .e-con-inner.custom-height {
  height: 62px;
}
.floating-menu {
    height: 60px;
}

div.floating-menu:not(:has(.hfe-active-menu)) {
    border-radius: 100px;
}

.floating-menu .elementor-icon-wrapper {
    display: flex;
    align-items: center;
}

div.floating-menu:has(.hfe-active-menu),
div.floating-menu:has(.menu-is-active) {
  border-radius: 30px 30px 0 0;
}

div.floating-menu .menu-is-active,
div.floating-menu:has(.hfe-active-menu) .hfe-nav-menu, 
div.floating-menu .hfe-nav-menu li:last-of-type{
    border-radius: 0 0 30px 30px;
}

/** breadcrumb hidden in homepage **/
.home #menu-breadcrumb {
    display: none;
}

/** navbar content **/
.nav-text,
.nav-active,
.nav-search{
    overflow: hidden;
}

.nav-desc p {
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis; 
}

.nav-icon > div,
.nav-desc > div {
  position: absolute;
  visibility: hidden;
  transition: transform 0.5s ease;
}

.nav-icon > div.active {
  animation: slideUp ease 1s;
}

.nav-desc:not(.nav-search .nav-desc) > div.active {
  animation: slideDown ease 1s;
}

.nav-active .nav-icon > div, 
.nav-icon  > div.active,
.nav-desc  > div.active {
  visibility: visible;
  position: relative;
} 

.nav-icon  > div.exit {
  animation: slideUp2 ease 1s;
}

.nav-desc  > div.exit {
  animation: slideDown2 ease 1s;
}

@keyframes slideUp {
  0% {transform: translateY(-100%);}
  100% {transform: translateY(0)}
}

@keyframes slideUp2 {
  0% {transform: translateY(0);}
  100% {transform: translateY(100%)}
}

@keyframes slideDown {
  0% {transform: translateY(100%);}
  100% {transform: translateY(0)}
}

@keyframes slideDown2 {
  0% {transform: translateY(0);}
  100% {transform: translateY(-100%)}
}

.hfe-nav-menu-icon {
    padding: 0 !important;
    margin: 0 !important;
}

.hfe-nav-menu-icon:hover {
    cursor: pointer;
}
.h-15-icon .cls-1 {fill: #444445;} 
.h-15-icon .cls-2 {fill: #ffffff;} 
.h-search-icon .cls-1 {fill: #ffffff;} 
#page:has(.blurry-bg) .nav-text-wrapper,
#page .nav-active-wrapper,
#page .nav-search-wrapper,
#page .nav-back-wrapper {
    display:none;
}

#page:not(:has(.blurry-bg)) .nav-wrapper.hover .nav-search-wrapper,
#page:not(:has(.blurry-bg)) .nav-wrapper.back-hover .nav-back-wrapper {
    display: flex !important;
    cursor: pointer;
}

#page:has(.blurry-bg) .nav-active-wrapper {
    display: flex;
}

#page:not(:has(.blurry-bg)) .nav-wrapper.hover > *:not(.nav-search-wrapper),
#page:not(:has(.blurry-bg)) .nav-wrapper.back-hover > *:not(.nav-back-wrapper) {
    display: none !important;
}

.nav-search-wrapper .fa-times::before {
    color: #FFF;
}

/* menu */
div:has(.hfe-submenu-icon-plus) {
    align-self: unset !important;
}

.hfe-nav-menu__toggle {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end !important;
    margin: 0 !important;
}

.floating-menu:has(.hfe-active-menu) {
    width: 500px;
    height: 75px;
    padding-right: 18px;
}

nav.hfe-dropdown-expandible {
    transition: all .5s ease-in-out; 
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    z-index: 0;
    width: 500px;
    position: absolute; 
    top: 67px;
    /* left: -450.2px; */
    left: -463px;
}

.header-nav nav.hfe-dropdown-expandible li a.hfe-menu-item {
    padding-right: 55px !important;
}

.header-nav ul.hfe-nav-menu li a {
    font-size: 18px !important;
    font-weight: 500 !important;
}

.header-nav ul.sub-menu li a {
    font-size: 16px !important;
    color: #CCCCCC !important;
    background-color:#454545;
    padding-left: 30px !important;
}

.header-nav .hfe-nav-menu .sub-arrow {
    border: 0;
    padding: 0;
}

.hfe-has-submenu-container .hfe-menu-toggle svg {
    font-size: 17px;
    line-height: 17px;
    height: 17px;
    width: 17px;
}

.header-nav .hfe-nav-menu a.hfe-menu-item {
    padding-top: 20px !important;
}

.header-nav .hfe-nav-menu li:not(:last-child) a.hfe-menu-item {
    padding-bottom: 20px !important;
}

.header-nav .hfe-nav-menu a.hfe-sub-menu-item {
/*    padding: 15px 60px !important;*/
    padding: 17.5px 60px !important;
}

.header-nav .sub-menu {
    background: #343434 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease !important;
}

.header-nav .sub-menu-active .sub-menu {
    max-height: 500px;
}

.header-nav .hfe-nav-menu li,
.header-nav .hfe-nav-menu a {
  position: relative; 
}

.header-nav .hfe-nav-menu li:not(:last-child)::after,
.header-nav .hfe-nav-menu ul.sub-menu::before,
.header-nav  ul.hfe-nav-menu::before
{
  content: "";
  display: block;
  width: 88%; 
  margin: 0 auto;
  border-top-style: solid;
  border-top-color: #898989;
  border-top-width: 1px;
  opacity: 1 !important;
}

/** glowing effect **/
.glowing-effect{
  height: 60px;
  filter: blur(10px);
  opacity: 0.25;
  position: absolute;
  background-color: #FFF;
  will-change: transform;
  animation: spinBorder 6s linear infinite;
  overflow: hidden;
  z-index: -2 !important;
  width: 150%;
  top: 50%;
}

.e-con-inner:has(.glowing-effect) {
  padding: 1px !important;
  overflow: hidden;
  border-radius: 100px;
}

.e-con-inner:has(.menu-is-active) {
    overflow: overlay; 
    overflow-y: hidden;
    overflow-x: hidden;
    border-radius: 30px;
}

.glowing-effect.pause-animation {
    display: none !important;
}

@keyframes spinBorder {
  to {
    transform: rotate(360deg);
  }
} 

.header-nav polygon.cls-1 {
    stroke: none !important;
}

.header-nav .nav-bar polygon.cls-1 {
    fill: #00adee !important;
}

.header-nav svg.light-bcm-logo  polygon.cls-1,
.header-nav svg.footer-light-bcm-logo polygon.cls-1 {
    fill: #FFF !important;
}

.header-nav svg.video-bcm-logo polygon.cls-1,
.header-nav svg:not(.light-bcm-logo):not(.hide-active):not(.footer-light-bcm-logo) polygon.cls-1 {
    fill: #00adee !important;
}

.header-nav svg.hide-active,
.header-nav svg.hide-active polygon.cls-1{
    opacity:0;
    transition: opacity 0.3s ease-in-out;
}

body:has(.blurry-bg) .header-nav .bcm-logo svg,
body:has(.blurry-bg) aside#moove_gdpr_cookie_info_bar{
   opacity: 0.6;
}

/* blurry effect */
.site-content {
    max-height: 100vh;
    max-width: 100vw;
    margin: 0;
/*    inset: 0;*/
    border-radius: 0;
    transition: 
        max-height 0.5s ease, 
        max-width 0.5s ease, 
        margin 0.5s ease,
        border-radius 0.5s ease
}
/*.overly-menu{
	 position: fixed;
    top: 0px;
	left: 0px;
    width: 100%;
    height: 100%;
    z-index: 10;
	visibility: hidden;
	background:transparent;
	 border: 0px solid #000000;
	inset: 0;
	pointer-events: none;
	transition: border 0.9s ease, border-radius 0.9s ease, all ease 0.9s;
}*/
.overly-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: transparent;
  pointer-events: none;
  opacity: 0;
/*  transition: opacity 0.9s linear;*/
  transition: opacity 0.9s linear, backdrop-filter 0.9s linear;
}

.overly-menu.active {
  opacity: 1;
  pointer-events: auto;
}

/* Animate only the cutout */
.cutout {
  transform: scale(1.2);
  transform-origin: center;
  transition: transform 0.9s linear;
}
.overly-menu.active{
	backdrop-filter: blur(3px);
	background: #00000080;
}
.overly-menu.active .cutout {
  transform: scale(1);
	transition: transform 0.9s linear;
}


.site-content.blurry-bg {
/*    position: fixed;*/
   /* overflow: hidden;
    max-height: calc(100vh - 60px);
    max-width: calc(100vw - 60px);*/
    border-radius: 10px;
    margin: 0px;
/*    inset: 30px;*/
}

.blurry-bg .ast-container {
/*    background-color: #FFF;*/
    will-change: transform;
/*    opacity: 0.5;
    height: 100vh;*/
    /*filter: blur(3px);
    transform:scale(1.01);*/
    backdrop-filter: blur(1px);
}
/*.blurry-bg .ast-container:after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
    z-index: 10;
    background: #00000080;
}*/

/*.site-content.blurry-bg * {
  animation-play-state: paused !important;
  transition: none !important;
  transform: none !important;
  animation: none !important;
  pointer-events: none !important;
}*/

#page{
    width: 100vw;
}

body:has(.blurry-bg) {
  /*position: fixed;*/
overflow: hidden;
}

.nav-bar.scrolling {
  --content-width: 511px !important;
}

.nav-bar:has(.hfe-active-menu) {
  --content-width: 500px !important;
}

.nav-bar .e-con-inner{
  width: var(--content-width);
  transition: width .5s ease;
  max-width: unset !important;
}

.nav-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  transition: gap 0.3s ease, padding-right 0.3s ease;
}

.header-nav .nav-btn:not(:has(.menu-is-active)) {
    padding-right: 12px;
}

.header-nav .scrolling .nav-btn:not(:has(.menu-is-active)) {
    margin-right: 37px;
    padding-right: 0;
}

.nav-btn > div:hover {
    cursor: pointer;
}

.nav-top-wrapper {
    display:none;
    opacity:0;
  transition: opacity 0.3s ease;
}

.nav-bar.scrolling .nav-top-wrapper {
  display: inline-block;
  opacity: 1;
  pointer-events: auto;
}

.floating-menu:has(.menu-is-active) .nav-top-wrapper,
.floating-menu:has(.menu-is-active) #menu-breadcrumb{
    display: none;
}

div#menu-top {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/** mobile floating menu **/
@media only screen and (max-width: 767px) {
    nav.header-nav {
        top:0;
    }
    
    nav.header-nav:has(.mobile-nav-bar .hfe-active-menu) {
        background: #444;
    }

    nav.header-nav:has(.mobile-nav-bar .hfe-active-menu) .bcm-logo {
        display: none;
    }

    .bcm-logo .elementor-icon {
        font-size: 25px !important;
    }
    
    .mobile-floating-menu {
        height: 45px;
        width: auto;
        padding: 15px 18px;
        margin-left: auto;
    }

    .mobile-floating-menu:has(.hfe-active-menu) {
        width: 100%;
        margin-left: unset;
    }

    nav.header-nav:has(.mobile-nav-bar .hfe-active-menu) .nav-active-wrapper,
    nav.header-nav:has(.mobile-nav-bar .hfe-active-menu) .nav-search-wrapper {
        display: flex !important;
    }

    nav.header-nav:has(.mobile-nav-bar .hfe-active-menu) .mobile-floating-menu { 
        padding: 44px 35px;
    }
  
    .mobile-floating-menu .hfe-nav-menu__toggle  {
        height: auto;
        width: auto;
    }

    .mobile-floating-menu .nav-btn {
        padding: 0 !important;
    }

    div.mobile-floating-menu:not(:has(.hfe-active-menu)) {
        border-radius: 100px;
    }

    .mobile-nav-bar:has(.hfe-active-menu) {
        padding: 0;
        margin: 0;
        width: 100vw;
        height: 100vh;
    }

    .mobile-nav-bar nav.hfe-dropdown-expandible {
        z-index: 0;
        width: 100vw;
        position: absolute; 
        top: 67px;
/*        left: calc(-100vw + 35px + calc(calc(100vw - 70px) * 0.0325));*/
        left: calc(-100vw + 35px + calc(calc(100vw - 35px) * 0.0325));
        transition: none;
    }

    .mobile-nav-active{
        overflow: hidden;
    }

    /*.mobile-nav-active .elementor-icon {
        font-size: 13px !important;
    }*/
    
    .mobile-floating-menu:has(.hfe-active-menu) .mobile-nav-active .nav-icon > div {
        visibility: visible;
        position: relative;
    } 

    .mobile-nav-bar .mobile-nav-active {
        display: none;
    }

    .mobile-nav-bar:has(.hfe-active-menu) .mobile-nav-active {
        display: flex;
    } 

    .mobile-nav-bar:has(.hfe-active-menu) .mobile-nav-search .nav-icon > div,
    .mobile-nav-bar:has(.hfe-active-menu) .mobile-nav-search .nav-desc > div {
        visibility: visible;
        transition: none;
        position: unset;
    }

    .mobile-nav-bar:has(.hfe-active-menu) .mobile-nav-wrapper:has(.mobile-nav-search) {
/*        position: absolute;*/
        position: fixed;
/*        bottom: env(safe-area-inset-bottom, 0);*/
        bottom: 0;
    }

    .mobile-nav-bar .mobile-nav-search * {
        transition: none !important;
        animation: none !important;
     }

    .mobile-nav-search input {
        height: 60px;
    }

    .mobile-nav-search button {
        margin-right: 0 !important;
        padding-right: 0 !important;
    }

    .mobile-nav-bar ul {
        max-height: calc(100dvh - 170px);
        overflow-y: scroll;
    }

    .mobile-nav-bar .hfe-nav-menu .sub-menu a {
        background: transparent;
    }

    .mobile-nav-bar:has(.hfe-active-menu) .mobile-nav-search button#clear{
        visibility: visible;
    }

    body:has(.mobile-nav-bar .hfe-active-menu) {
        overflow: hidden;
    }

    .header-nav .hfe-nav-menu li:not(:last-child)::after,
    .header-nav .hfe-nav-menu ul.sub-menu::before,
    .header-nav  ul.hfe-nav-menu::before
    {
      width: calc(100% - 70px); 

    }

   .mobile-nav-bar a.hfe-menu-item,
   .header-nav .hfe-nav-menu a.hfe-sub-menu-item {
        padding-left: calc(((100vw - 70px) * 0.75 * 0.09) + 35px) !important;
    }
            
}

.hfe-search-form__container input {
    width: 85%;
}

.hfe-search-form__container button {
    width: 15%;
} 

.hfe-search-form__container button#clear, .hfe-search-icon-toggle button#clear {
    position: relative !important;
    margin-right: 10px !important;
}


/* end of floating menu */

/** news section **/
.home-news {
  --dd-col1-pct: 35;
  --_dd-gap: 126px;
}

.blog-swiper-nav .swiper-button-prev {
    --swiper-navigation-sides-offset: 40px;
}

.blog-swiper {
    border-radius: 10px;
}

.blog-swiper .swiper-slide, .blog-wrapper {
    display: flex;
    height: 478px !important;
    width: 346px !important;
}

.blog-swiper .swiper-slide:not(.swiper-slide-active), .swiper-slide:not(.swiper-slide-active) .blog-wrapper{
    border-radius: 10px;
}

.blog-swiper .swiper-slide.swiper-slide-active {
    margin-right: 17px !important;
}

.blog-swiper .swiper-slide-spacer {
  pointer-events: none;
  background: none;
  visibility: hidden;
  flex-shrink: 0;
}

.blog-swiper a {
    text-decoration: none !important;
}

.home-news {
    min-height: 653px !important;
}

.blog-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    border-radius: 10px;
    box-sizing: border-box;
}

.blog-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background: linear-gradient(to bottom, transparent 60%, black 100%);
    z-index: 1;
}

.blog-wrapper h3, .blog-wrapper p{
    color: #FFF !important;
    z-index: 2;
}
.blog-wrapper h3{
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-wrapper p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0;
}


.blog-swiper-nav > div {
    width: 45px !important;
    height:45px !important;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #BCBEC0;
}

.blog-swiper-nav .swiper-button-next.swiper-button-disabled,
.blog-swiper-nav .swiper-button-prev.swiper-button-disabled {
    background: #E0E0E0;
}

.blog-swiper-nav .swiper-button-next:after, 
.blog-swiper-nav .swiper-button-prev:after {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #000000;
}

@media (max-width: 767px) {
    .blog-swiper .swiper-slide, .blog-wrapper {
        height: 300px !important;
        width: 240px !important;
    }

    .blog-swiper .swiper-slide.swiper-slide-active {
        margin-right: 5px !important;
    }

    .blog-wrapper h3, .blog-wrapper p{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp:2;
        overflow: hidden;
        margin: 0;
    }

    .home-news {
      --dd-col1-pct: 100;
      --_dd-gap: 0;
    }

    .home-news .dd-mixed-grid__col1 {
        margin-bottom: 25px;
    }

    .blog-swiper-nav {
      display: flex;
      justify-content: center; 
      gap: 25px; 
    }

    .blog-swiper-nav .swiper-button-prev,
    .blog-swiper-nav .swiper-button-next {
      position: static;
    }


}

/** end of news section **/

/** button arrow effect **/
.arrow-icon {
    position: relative;
    top: -1px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    vertical-align: middle;
}

.arrow-icon--circle {
        transition: stroke-dashoffset .3s ease;
        stroke-dasharray: 95;
        stroke-dashoffset: 95;
}

.elementor-button:hover .arrow-icon {
    transform: translate3d(5px, 0, 0);
}

.elementor-button:hover .arrow-icon--circle {
    stroke-dashoffset: 0;
}
/** end of button arrow effect **/

/** footer **/
/*footer {
  position: relative !important;
  margin-top: -101vh !important;
  width: 100% !important;
  height: 100vh !important;
  z-index: -1 !important;
  box-sizing: border-box !important;
  padding: 0 !important;
}*/
footer[data-wpr-lazyrender] {
    content-visibility: unset;
}

footer { 
  position: relative;
  bottom: 0px;
  z-index: -1;
  transition: transform 0.9s linear;
  will-change: transform;
}

footer .hfe-nav-menu li:first-of-type a {
    padding-left: 0 !important;
}

footer .elementor-icon:hover {
    background: #FFF !important;
    
}

footer .hfe-nav-menu li a:hover {
    color: #00AEEF !important;
}


footer .elementor-social-icon:hover svg {
    fill: #1D1D1D !important;
}

.footer-copyright p:last-child {
    margin-bottom: 0 !important;
}

.home-icon-mask {
    display: inline-block;
    width: 100vw;
    max-width: 1140px;
    aspect-ratio: 1360 / 253;
    mask: url('/wp-content/uploads/2025/07/BCM-footer-logo.svg') no-repeat center;
    mask-size: 100% auto;
    -webkit-mask-image: url(/wp-content/uploads/2025/07/BCM-footer-logo.svg);
    -webkit-mask-size: 100% auto;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    color: transparent;
    /* background: linear-gradient(90deg, #BCBEC0, #58595B 99%); */
    background: linear-gradient(115deg, #9d9fa1 10%, var(--engine-color) 20%, #9d9fa1 35%, #9d9fa1 45%, var(--engine-color) 60%, #9d9fa1 75%);
    background-size: 200% auto;
    animation: sweep 8s linear infinite, greyColourShift 9s linear infinite;
}

.blue-footer .home-icon-mask {
    background: linear-gradient(115deg, #0073bd 10%, var(--engine-color) 20%, #0073bd 35%, #0073bd 45%, var(--engine-color) 60%, #0073bd 75%);
    animation: sweep 8s linear infinite, blueColourShift 9s linear infinite;
    background-size: 200% auto;
}

/* .home-icon-mask::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    max-width: 100vw;
    height: 100%;
    background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 60%
  );
    animation: shimmer 1.5s infinite; 
    background-size: 100% auto; 
   
} */

@media (max-width: 767px) {
    .home-icon-mask {
        max-width: calc(100vw - 70px);
    }

    /* .home-icon-mask::after {
        width: 100%;
        left: 0;
    } */
}
/* 
@keyframes shimmer {
  from {
    background-position: -1000px 0;
  }
  to {
    background-position: 1000px 0;
  }
}
 */

footer .elementor-widget-container:has(.elementor-social-icons-wrapper) {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.light-footer .footer-copyright a:hover {
    color: #00AEEF !important;
}

/** end of footer **/

/** portfolio **/
.home-portfolio img,
.home-portfolio video {
    border-radius: 10px;
    height: 0; 
/*    object-fit: fill !important;*/
}

.home-portfolio .pg-alien-item {
    overflow: visible;
}

.home-portfolio .pg-alien-item:hover .pg-alien-img {
    opacity: 1;
    -webkit-animation: none;
    animation: none;
}

.home-portfolio .pg-alien-content {
    display: flex;
    flex-direction: column-reverse;
}

@media (max-width: 767px) {
    .home-portfolio  .pg-alien-item.pg-item {
        height: auto !important;
    }
}

/** end of portfolio **/

/** home client **/
/*.bc-clients {
  display: flex;
  width: 1140px;
  flex-direction: row;
  flex-wrap: wrap;
}

.bcclient-logo {
  width: 20%;
  height: 140px;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center; 
  align-items: center; 
}

.bcclient-logo > img {
  position: absolute;
  padding: 20px;
}*/

.bc-clients {
  max-width: 1140px;
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
}

.bcclient-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  position: relative;
}

.bcclient-logo img {
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
  display: block;
  position: absolute;
}

@media (min-width: 768px) and (max-width: 1140px) {
  .bc-clients {
    width: calc(100vw - 50px);
  }

  .bcclient-logo {
/*    height: auto;*/
    max-height: 25px;
  }
}

@media (max-width: 767px) {
  .bc-clients {
    grid-template-columns: repeat(2, 1fr);
    width: calc(100vw - 70px);
    column-gap: 35px;
    row-gap: 40px;
  }
	
	.bcclient-logo{display:none;}
	.bcclient-logo:first-child,
	.bcclient-logo:nth-child(2),
	.bcclient-logo:nth-child(3),
	.bcclient-logo:nth-child(4),
	.bcclient-logo:nth-child(5),
	.bcclient-logo:nth-child(6),
	.bcclient-logo:nth-child(7),
	.bcclient-logo:nth-child(8),
	.bcclient-logo:nth-child(9),
	.bcclient-logo:nth-child(10){display:block;}
  .bcclient-logo {
    max-height: 40px;
  }

  .bcclient-logo img {
    max-height: 40px;
  }
}


/** end of home client **/

.shimmer-heading h2 {
    color: transparent !important;
    background-image: linear-gradient(to right, #BCBEC0 0%, #58595B 50%, #BCBEC0 100%);
    background-clip: text;
    background-size: 1000px 100%;
    animation: shimmer 3s infinite linear;
}

/** portfolio **/
a:has(.portfolio) {
    text-decoration: none !important;
    color: unset !important;
}

.portfolio {
    margin-bottom: 50px;
}

.portfolio-info {
 /*   position: sticky;
    top: 0;*/
    background: #2C2C2C;
    padding: 40px 150px 50px 150px;
/*    z-index:2;*/
}

.portfolio-featured {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 1px;
  overflow:hidden;
  border-radius: 10px;
}

.portfolio-title h1,
.portfolio-title h2 {
    color: #FFF;
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
}

.portfolio-tag {
/*    margin-bottom: 40px;*/
    display: flex;
    gap: 15px;
    flex-flow:wrap;
}

.portfolio-tag .tag {
    background: #FFF;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid #707070;
    font-size: 14px;
    line-height: 17px;
    height: 40px;
}

.portfolio-featured img, 
.portfolio-featured video {
    border-radius: 10px;
}

.portfolio-detail-info .portfolio-title h1,
.portfolio-detail-info .portfolio-title h2 {
    font-size: 45px;
    font-weight: 600;
    line-height: 50px;
    margin: 0 0 30px 0;
}

.portfolio-featured-wrap {
  position: relative;
  display: block;
}

.portfolio-featured-wrap video {
  display: block;
  width: 100%;
  height: 100%;
}

.portfolios-header {
    position:fixed;
    top: 0;
/*    max-width: 1140px;*/
    width: min(100vw, 1140px); 
    transform-origin: top center;
    transition: transform 0.1s linear;
}

.portfolios-listing {
    margin-top: 550px;
}

/*@media (min-width: 768px) {
    .portfolios-header {
        position:fixed;
        top: 0;
        
        width: min(100%, 1140px); 
        transform-origin: top center;
        transition: transform 0.1s linear;
    }

    .portfolios-listing {
        margin-top: 550px;
    }
}*/

@media (max-width: 767px) {
    .portfolio-info {
        padding: 20px 0 0 0;
    }

    .portfolio-title h1,
    .portfolio-title h2 {
        font-size: 20px;
        line-height: 25px;
    }

    .portfolios-wrapper {
        padding-bottom: 50px;
    }

    .portfolios-header {
        position: relative;
        width: min(calc(100vw - 70px), 1140px); 
    }

    .portfolios-listing {
        margin-top: unset;
    }
}

/** portfolio inner page **/
.single-portfolio nav.post-navigation {
    display:none;
}

.portfolio-description {
    color: #FFF;
}

.portfolio-description p:last-of-type {
    margin-bottom: 30px;
}

.portfolio-btn .elementor-button {
    background: transparent;
    text-decoration: none !important;
    padding: 0;
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
}

.portfolio-scroll-info .portfolio-title {
  display: flex;
  justify-content: center; 
  align-items: flex-start;
  height: 100%;
}

.portfolio-scroll-info .portfolio-title h1,
.portfolio-scroll-info .portfolio-title h2 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin: 0;
}

.portfolio-scroll-info a {
    text-decoration: none !important;
    color: #FFF;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    text-align: center;
}

.portfolio-btn-wrapper {
    display:flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.portfolio-btn-wrapper img {
    width: 20px;
    height: 20px;
}

@media (min-width: 768px) {
    .portfolio-bar {
        width: 35%;
    }

    .portfolio-gallery {
        width: 65%;
    }

    .portfolio-inner .portfolio-bar {
        height: 100vh !important;
        position: sticky;
        top: 50px;
    }

    .portfolio-details {
        display: flex;
        height: 100vh;
        position: relative;
    }

    .portfolio-detail-info {
        opacity: 1;
        transform: translateX(0);
        transition:
            opacity 0.4s ease-out 0.3s,
            transform 0.4s ease-out 0.3s;
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 90vh;
        padding-top: 60px;
    }
}

@media (max-width: 767px) {
    .portfolio-inner {
        padding: 70px 35px 0 35px;
    }

    .portfolio-detail-info .portfolio-title h1,
    .portfolio-detail-info .portfolio-title h2 {
        font-size: 25px;
        margin: 0 0 20px 0;
    }

    .portfolio-top {
        margin-bottom: 50px;
    }

    .portfolio-detail-info {
         margin-bottom: 80px;
    }
}
/*.portfolio-bar {
    width: 35%;
}

.portfolio-gallery {
    width: 65%;
}

.portfolio-inner .portfolio-bar {
    height: 100vh !important;
    position: sticky;
    top: 50px;
}

.portfolio-details {
    display: flex;
    height: 100vh;
    position: relative;
}

.portfolio-detail-info {
    opacity: 1;
    transform: translateX(0);
    transition:
        opacity 0.4s ease-out 0.3s,
        transform 0.4s ease-out 0.3s;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 90vh;
    padding-top: 60px;
}
*/
/* When fading out */
.portfolio-inner.portfolio-scroll .portfolio-detail-info {
    opacity: 0;
    transform: translateX(-100px);
    pointer-events: none;
    transition-delay: 0s, 0s;
}

.portfolio-scroll-info {
    visibility: hidden;
    opacity:0; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
 /*   height: 100vh;
    padding: 50px 0;*/
    height: calc(100vh - 80px);
    padding: 0;
    transform: translateX(-30px);
    transition:
        opacity 0.5s ease-out,
        transform 1s ease;
    position: absolute;
    right: 0px;
} 

.portfolio-inner.portfolio-scroll .portfolio-scroll-info {
    visibility: inherit;
    opacity:1;
    transform: translateX(-333px);
    transition: opacity 0.5s ease-out, transform 1s ease;
}

.portfolio-inner.portfolio-scroll .portfolio-scroll-info .portfolio-title h1,
.portfolio-inner.portfolio-scroll .portfolio-scroll-info .portfolio-title h2 {
    font-size: 30px;
}

.portfolio-gallery img {
    width: calc(1110px * 0.95) !important;
}

.gallery-wrapper {
    transform: scale(1);
    transition: transform 1s;
    transform-origin: right top; 
}

.portfolio-inner.portfolio-scroll .gallery-wrapper {
    /*transform: scale(1.42);
    padding-bottom: 500px;*/
}

/** end of portfolio **/

.blue-engine-heading h1,
.blue-engine-heading h2 {
    background: linear-gradient(115deg, #0073bd 10%, var(--engine-color) 20%, #0073bd 35%, #0073bd 45%, var(--engine-color) 60%, #0073bd 75%);
    background-size: 130% auto;
    color: #000;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sweep 4s linear infinite, blueColourShift 5s linear infinite;
}

.grey-engine-heading h1,
.grey-engine-heading h2 {
    background: linear-gradient(115deg, #9d9fa1 10%, var(--engine-color) 20%, #9d9fa1 35%, #9d9fa1 45%, var(--engine-color) 60%, #9d9fa1 75%);
    background-size: 130% auto;
    color: #000;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sweep 4s linear infinite, greyColourShift 5s linear infinite;
}

@keyframes sweep {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 200% 200%;
    }
    0% {
        background-position: 0 0;
    }
}
    
@keyframes blueColourShift {

  0% {
    --engine-color: #00AEEF;
  }
  33% {
    --engine-color: #00B9B5;
}
  66% {
    --engine-color: #00AEEF;
  }
  100% {
    --engine-color: #00B9B5;
  }
}

@keyframes greyColourShift {
0% {
    --engine-color: #3a3c3d;
}
33% {
    --engine-color: #bcbec0;
}
66% {
    --engine-color: #bcbec0;
}
100% {
    --engine-color: #3a3c3d;
}
}

@property --engine-color {
  syntax: '<color>';
  initial-value: #E2AEEF;
  inherits: false;
}

/** home reviews **/
.reviews-wrapper.desktop-only {
    column-count: 3; 
    max-width: calc(100vw - 60px);
    gap: 30px;
}

.reviews-wrapper .review {
    padding: 30px;
    background: #444444;
    border: 1px solid #444444;
    border-radius: 10px;
    break-inside: avoid;
    display: inline-block;
    margin-bottom: 30px;
}

.reviews-wrapper.desktop-only .review:hover {
    cursor: pointer;
    background: #333333;
    border: 1px solid #707070;
}

.reviews-wrapper .review-profile {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.reviews-wrapper .review-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.reviews-wrapper .review-info h3 {
    margin-bottom: 0;
    color: #FFF;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
}

.reviews-wrapper .review-text {
    color: #FFF;
}

.reviews-wrapper .review-text p:last-of-type {
    margin-bottom: 0;
}

.reviews-wrapper .rating > span {
    color: orange;
     margin-right: 2px; 
    font-size: 13px;
}

.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 767px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
}

.review-swiper .swiper-slide, .review-wrapper {
    width: 250px !important;
}

.review-swiper .swiper-slide {
    margin-right: 15px !important;
}

.review-swiper .review {
    margin-bottom: 0;
    width: 250px !important;
}

.review-swiper .review-featured img {
    min-width: 70px!important;
}

.review-swiper .review-text {
    max-height: 200px;
    overflow-y: scroll; 
    padding-right: 5px;
}

.review-swiper {
    height: 400px;
}

.review-swiper .swiper-pagination-bullet {
    background: #FFF;
    height: 1px;
    border-radius: 0;
    width: calc((100vw - 70px) / 6); 
}

.review-swiper .swiper-pagination {
  display: flex;          
  justify-content: space-evenly; 
  width: 100vw;  
}

.review-swiper .swiper-pagination-bullet {
  opacity:1;
}

.review-swiper .swiper-pagination-bullet-active ~ .swiper-pagination-bullet {
  opacity:.2;
}

.review-swiper .review-text::-webkit-scrollbar {
  width: 3px; 
}

.review-swiper .review-text::-webkit-scrollbar-thumb {
  background-color: #FFF; 
}

.review-swiper .review-text::-webkit-scrollbar-track {
   background: rgba(255, 255, 255, 0.2); 
}
@media(max-width:767px){
	.review-swiper .swiper-pagination{padding-right:35px}
}

/** end of home reviews **/

.bcm-logo,
body:has(.blurry-bg) .bcm-logo svg {
    pointer-events: none;
}

.bcm-logo svg{
    pointer-events:auto;
}

body:not(.wp-admin):not(.elementor-editor-active).single-portfolio.single:has(.site-content) {
    background: #1D1D1D !important;
}


/** contact page **/
/** hide the safari autofill icon **/
input::-webkit-contacts-auto-fill-button,
input::-webkit-credentials-auto-fill-button {
  visibility: hidden;
  position: absolute;
  right: 0;
}

/*.career-section .e-n-accordion-item:not(:first-of-type) {
    border-top: 1px solid #707070;
}*/
.contact-form .submit-btn:has(button.wpcf7-submit:hover) .arrow-icon {
    transform: translate3d(5px, 0, 0);
}

.contact-form .submit-btn:has(button.wpcf7-submit:hover) .arrow-icon--circle {
    stroke-dashoffset: 0;
}

.contact-form .field {
    position: relative;
}

.contact-form .field p {
    margin-bottom: 46px !important;
}

.contact_form_label {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left top;
}

.field:has(textarea) .contact_form_label {
    transform: translateY(-80%);
}

.contact-form .field:has(input:focus) .contact_form_label,
.contact-form .field:has(input:not(:placeholder-shown)) .contact_form_label,
.contact-form .field:has(textarea:focus) .contact_form_label,
.contact-form .field:has(textarea:not(:placeholder-shown)) .contact_form_label{
  top: 0;
  transform: translateY(-100%);
  transform-origin: left top;
  font-size: 16px;
}

.contact-form input,
.contact-form textarea{
    box-shadow: none;
    border: none;
    border-radius: 0;
/*    border-bottom: 1px solid #707070;*/
    color: #000;
    font-size: 22px;
}

.contact-form input {
    padding: 11px 0 0 0 !important;
}

.contact-form textarea{
/*    width: 100% !important;*/
    padding: 18px 0 0 0 !important;
    height: 40px;
    min-height: 40px;
    resize: vertical;
}

.contact-form *::placeholder { 
    visibility: hidden;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus{
    border-style: none;
/*    border-bottom: 1px solid #707070;*/
}

.wpcf7 input.wpcf7-form-control:not([type=submit]):focus, .wpcf7 select.wpcf7-form-control:focus, .wpcf7 textarea.wpcf7-form-control:focus {
    color: #000 !important;
}

.wpcf7 input:not([type=submit]):focus, .wpcf7 select:focus, .wpcf7 textarea:focus {
    border-color: #9D9D9D !important;
    padding: 18px 0 0 0 !important;
}

.wpcf7 input:not([type=submit]):focus {
    border-color: #9D9D9D !important;
    padding: 11px 0 0 0 !important;
}

.contact-form  .wpcf7-form-control-wrap:not(.row-submit .wpcf7-form-control-wrap) {
    border-bottom: 1px solid #707070;
    padding-bottom: 15.5px;
}

.contact-form label,
.contact-form .contact_form_label {
    font-size: 22px;
    font-weight: 500;
    color: #000000;
}

.contact-form label span {
    font-weight: 400;
}

.contact-form span.wpcf7-list-item {
  display: flex;             
  align-items: center;      
  margin: 10px 0;           
}

.contact-form .row-submit {
    margin-top: 60px;
}

.contact-form .submit-btn p {
    margin-bottom: 15px !important;
}

.contact-form .submit-btn button.wpcf7-submit {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    font-weight: 500;
}

.contact-form .privacy-btn p,
.contact-form .privacy-btn span {
    margin: 0 !important;
    font-weight: 400;
    font-size: 14px;
}

.contact-form .privacy-btn  input[type="checkbox"] {
    margin: 0; 
}

.contact-form .privacy-btn .wpcf7-list-item-label {
    margin-left: 5px !important;
}

.contact-form input[type="radio"],
.contact-form input[type="checkbox"]{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 15px !important;     
  height: 15px !important;     
  min-width: 15px !important;
  border: 1px solid #9D9D9D;
  background: #FFF !important;
  border-radius: 50px !important;
  outline: none;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0 !important;
}

.contact-form input[type="radio"]:checked,
.contact-form input[type="checkbox"]:checked {
  background-color: #00AEEF !important;
  border-color: #00AEEF !important;
  padding: 0 !important;
}

.contact-form input[type="radio"]:focus,
.contact-form input[type="checkbox"]:focus {
  padding: 0 !important;
}

.contact-form .wpcf7-not-valid-tip {
    position: absolute;   
    top: 100%;            
    left: 0;
    margin-top: 5px;     
}

.contact-form .wpcf7-form-control-wrap {
    position: relative;   
}

.contact-section {
    position: relative;
}

.contact-section a {
    color: #00AEEF;
} 

.contact-section a:hover {
    color: #02548D;
}

@media only screen and (min-width: 768px) {
    .contact-sticky{
       height: 100% !important;
        position: sticky;
        top: 195px;
    }
}

.career-section .e-n-accordion-item {
  border-bottom: 1px solid #707070;
}

.career-section .e-n-accordion-item ul {
  margin-top: 0 !important;
}

.career-section .e-n-accordion-item summary {
  padding: 40px 0 !important;
  display: flex;
  align-items: center;
}

body:not(.wp-admin):not(.elementor-editor-active).page-contact.page:has(.site-content){
    background: #00548A !important;
}

body:not(.wp-admin):not(.elementor-editor-active).page-thank-you.page:has(.site-content){
    background: #1D1D1D !important;
}


@media only screen and (max-width: 767px) {
    .contact-form label,
    .contact-form .contact_form_label,
    .contact-form input, 
    .contact-form textarea{
        font-size: 18px;
    }

    .contact-form .submit-btn button.wpcf7-submit {
        font-size: 20px;
    }
}
/** end of contact page **/

.full-height-section {
    transition: none !important;
}

.full-height-section video {
    object-fit: contain !important;
}

.elementor-counter {
    gap: 15px;
}

/** agency **/
.agency-info > div,
.accreditations-info .e-con-inner > div {
    opacity: 0;
    transform: translate3d(0,24px,0);
    transition-property: transform, opacity;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.25,.1,.25,1);
}

.agency-info > div.info-anim,
.accreditations-info .e-con-inner > div.info-anim {
    opacity: 1;
    transform: translate3d(0,0,0);
}


/** end of agency **/

/** search result **/
.ast-container:has(.search-page-wrapper),
.content-area:has(.search-page-wrapper) {
    margin: 0 !important;
    padding:0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.search-result-wrapper {
    display: flex;
    background: #FFF;
    position: relative;
    z-index: 1;
}

.search-result {
    display: flex;
    width: 100%;
    max-width: 1140px;
    margin: 150px auto;
}

.search-result-wrapper .sr-left {
    width: 25%;
}

.search-result-wrapper .sr-right {
    width: 75%;
    padding-left: 50px;
    border-left: solid 1px #707070;
}

.search-result-wrapper .search-title h3 {
    font-weight: 700;
    margin-bottom: 30px;
}

.search-result-wrapper .search-desc {
    font-size: 18px;
    line-height: 25px;
}

.search-result-wrapper .search-desc span {
    font-weight: 600;
}

.search-result-wrapper .sr-right .search-title {
    margin-bottom: 50px;
}

.search-result-wrapper .sr-right .search-title.no-result-title {
    margin-bottom: 30px;
}

.search-result-wrapper .search-item:first-of-type {
    padding-top: 0;
}

.search-result-wrapper .search-item {
    padding: 30px 0;
    border-bottom: solid 1px #707070;
}

.search-result-wrapper .search-item-cat {
    color: #00AEEF;
    font-size: 16px;
    font-weight:600;
    margin-bottom: 5px;
}

.search-result-wrapper .search-item-content {
    margin-top: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.search-result-wrapper  span.search-highlight {
    font-weight: 600;    
}

.search-result-wrapper .s-pagination {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.s-pagination ul.page-numbers {
    margin: 0 !important;
    border-radius: 100px;
    background: #EBEBEB;
}

.s-pagination .page-numbers li {
    display: inline-block;
    width: 65px;
    height: 65px;
}

.s-pagination .page-numbers .pagination-link {
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}


.s-pagination  .page-numbers span.pagination-link.current {
    background: #00AEEF;
    color: #fff;
}

.s-pagination div.pagination-prev {
    margin-right: 20px;
}

.s-pagination div.pagination-next {
    margin-left: 20px;
}

a.pagination-next-link, 
a.pagination-prev-link {
    padding: .375rem .75rem;
    background-color: #EBEBEB;
    color: #000000;
    text-decoration: none;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 0 none;
    text-align: center;
    line-height: 50px;
    text-decoration: none !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;       
}

a.pagination-next-link:hover, 
a.pagination-prev-link:hover {
    background-color: #dddddd;
}

ul.filter-list {
    margin: 0;
}

li.filter-option {
    display: block;
    font-size: 18px;
    line-height: 40px;
}

li.filter-option:hover {
    cursor: pointer;
}

li.filter-option.selected {
    color:#00AEEF;
}

@media only screen and (max-width: 767px) {
    .search-result {
        flex-direction: column;
        gap: 50px;
        margin: 50px auto 100px auto;
    }

    .search-result-wrapper .sr-left,
    .search-result-wrapper .sr-right{
        width: 100%;
        border: none;
        padding: 0 35px;
    }

    .search-result-wrapper .search-title h3 {
        font-size: 22px;
        line-height: 25px;
        margin-bottom: 20px;
    }

    li.filter-option {
        line-height: 35px;
    }

    .search-result-wrapper .search-item-cat {
        font-size: 14px;
    }

    .search-item-title h3 {
        font-size: 18px;
        line-height: 25px;
    }

    .search-item-content {
        font-size: 16px;
    }

    .search-result-wrapper .search-item-content {
        -webkit-line-clamp: 3;
    }

    .search-result-wrapper .search-item {
         padding: 40px 0;
    }

    .search-result-wrapper .s-pagination {
        margin-top: 50px;
    }

    .s-pagination .page-numbers li {
        width: 40px;
        height: 40px;
    }

    .s-pagination .page-numbers .pagination-link {
         font-size: 16px;
    }

    .s-pagination .pagination-prev,
    .s-pagination .pagination-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .s-pagination div.pagination-prev {
         margin-right: 10px;
    }

    .s-pagination div.pagination-next {
         margin-left: 10px;
    }

     a.pagination-next-link, a.pagination-prev-link {
        width: 40px;
        height: 40px;
    }

    .s-pagination .arrow svg {
        width: 24px;
    }
}
/*
html {
    overflow-y: auto;
}*/
/** end of search result **/

body:not(.wp-admin):not(.elementor-editor-active).page-privacy-policy.page:has(.site-content),
body:not(.wp-admin):not(.elementor-editor-active).page-terms-and-conditions.page:has(.site-content),
body:not(.wp-admin):not(.elementor-editor-active).search:has(.site-content){
    background: #1D1D1D !important;
}

/** consent bar **/
#moove_gdpr_cookie_info_bar {
    max-width: 700px;
    width: 90%;
    border: none !important;
    -webkit-backdrop-filter: blur(80px) !important;
    backdrop-filter: blur(80px) !important;
    background-color: rgba(232, 232, 237, 0.8) !important;
    border-radius: 100px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    bottom: 15px !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 9 !important; /**below menu **/
    font-weight: 600 !important;
    opacity: 1;
    animation: opacity 0.9s linear;
}

.moove-gdpr-info-bar-content {
    padding: 0 !important;
    gap: 10px;
}

.moove-gdpr-info-bar-container {
    padding: 10px 30px !important;
}

.moove-gdpr-button-holder {
    padding-left: 0 !important;
    justify-content: center;
    align-items: center;
}

.mgbutton {
    font-weight: 600 !important;
    padding: 9px 16px !important;
}

/** accept btn **/
.mgbutton.moove-gdpr-infobar-allow-all {
    background: #00AEEF !important;
}

.mgbutton.moove-gdpr-infobar-allow-all:hover {
    background: #00548A !important;
}

/** reject btn **/
.mgbutton.moove-gdpr-infobar-reject-btn {
    background: #FFF !important;
    color: #000 !important;
}

.mgbutton.moove-gdpr-infobar-reject-btn:hover {
    background: #f5f5f7 !important;
}

@media only screen and (max-width: 767px) {
    .moove-gdpr-info-bar-content {
        display: flex !important;
        flex-direction: column;
        gap: 0;
    }
    
    #moove_gdpr_cookie_info_bar {
        border-radius: 22px;
        max-width: calc(100vw - 60px);
    }

    .moove-gdpr-cookie-notice {
        text-align: center;
        padding: 0 !important;
    }

    .moove-gdpr-button-holder {
        width: 100%;
        align-content: space-between;
    }

    #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton {
        margin: 1% !important;
        width: 48%;
        overflow: hidden;
        text-overflow: ellipsis; 
    }

    .moove-gdpr-info-bar-container {
        padding: 10px 30px !important;
    }
}

.page-id-5331 ul, .page-id-5347 ul {
    margin-bottom: 1.6em !important;
}

.mobile-heading-text {
    position: absolute ;
    bottom: 0 ;
}