/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra Child Theme by OuterBox
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

/* TOC:
- Variables
- Utility
- Typography
- Slider
- Carousel
- Video
- Tabbed Content
- Tables
- Forms
- Mobile Menu
*/

:root {
    /* Spacing */
    --space-base: 16px;
    --space-xxs: calc(var(--space-base)*0.25);
    --space-xs: calc(var(--space-base)*0.5);
    --space-sm: calc(var(--space-base)*0.75);
    --space-md: calc(var(--space-base)*1.5);
    --space-lg: calc(var(--space-base)*2);
    --space-xl: calc(var(--space-base)*2.5);
    --space-xxl: calc(var(--space-base)*4);
    --space-xxxl: calc(var(--space-base)*5);
    --section-space: var(--space-xxxl);
    --section-side-space: var(--space-xxl);
    --gutter: var(--space-xxl);	
    --gutter-sm: var(--space-lg);
    --content-max: 768px;
    --content-padded-max: 920px;
    --container-max: 2000px;
    
    /* Fonts */
    --text-base: 16px;
    --text-sm: calc(var(--text-base)*0.875);
    --text-lg: calc(var(--text-base)*1.125);
    --heading-xxs: calc(var(--text-base)*0.875);
    --heading-xs: calc(var(--text-base)*1);
    --heading-sm: calc(var(--text-base)*1.25);
    --heading-md: calc(var(--text-base)*1.5);
    --heading-lg: calc(var(--text-base)*2);
    --heading-xl: calc(var(--text-base)*2.5);
    --heading-xxl: calc(var(--text-base)*3);
    --heading-xxxl: calc(var(--text-base)*3.5);	
    --font-weight-regular: 400;
    --font-weight-bold: 700;
    --line-height-body:1.5;
    --line-height-heading:1.25;
    --font-family-heading: "Lato", sans-serif;
    --font-family-body: "Lato", sans-serif;
        
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 24px;
    --border-radius-element: var(--border-radius-lg);
    --border-radius-button: var(--border-radius-sm);
    --border-radius-input: var(--border-radius-md);
    
    
    /* Colors */
    --color-brand-01: #C51F33;
    --color-brand-02: #231F20;
    --color-brand-03: #F9F9F9;
    --color-text-black: var(--color-brand-02);
    --color-text-white: #FFFFFF;
    --color-text-01: var(--color-brand-01);
    --color-text-02: #5A5A5A;
    --color-ui-01: var(--color-brand-03);
    --color-ui-02: #D9D9D9;
    --color-ui-03: #666666;
    --color-ui-04: var(--color-brand-02);
    --color-ui-white: #FFFFFF;
    --headerHeight: 108px;
}

  
@media only screen and (max-width : 991px) {	
    :root {	
   /*Mobile Styles*/
   --heading-xxs: calc(var(--text-base)* 0.875);
   --heading-xs: calc(var(--text-base)* 1);
   --heading-sm: calc(var(--text-base)* 1.125);
   --heading-md: calc(var(--text-base)* 1.25);
   --heading-lg: calc(var(--text-base)* 1.5);
   --heading-xl: calc(var(--text-base)* 2);
   --heading-xxl: calc(var(--text-base)* 2.5);
   --heading-xxxl: calc(var(--text-base)* 2);
   --section-space: var(--space-xl);
   --gutter: var(--space-xl);
   --gutter-sm: var(--space-md);
   --section-side-space: var(--space-base);

    }
}
.off-canvas-toggle {
    padding: 0;
    background: transparent;
    margin: 0;
    justify-content: flex-end;
}
.off-canvas-toggle a{
  padding: var(--space-base);
}
.off-canvas-toggle a[aria-expanded="false"]{
  background: #fff;
  border: 1px solid #231F20;
}
.off-canvas-toggle a[aria-expanded="false"] i{
  color: #231F20;
}
.off-canvas-toggle a[aria-expanded="true"] {
    background: #231F20;
    color: #fff;
    border: 1px solid #fff!important;
}
.off-canvas-toggle a[aria-expanded="true"] i {
    color: #fff;
}
.primary-menu-nav ul{
  width: 100%;
  justify-content: space-between !important;
}
.primary-menu-nav ul li a{
  padding: 0px!important;
  position: relative;
}
.primary-menu-nav ul li a:after{
  content:'';
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -3px;
  left: 0;
  background: #fff;
}
.primary-menu-nav ul li a:hover:after{
  width: 100%;
}
.utility-bar .elementor-heading-title a:hover{
  text-decoration: underline;
}
/* Utility */
.border-radius-element {
    img, span, div, .elementor-slides .swiper-slide {
    border-radius: var(--border-radius-element);
}}

.padding-full {
    padding: var(--section-space) var(--section-side-space);
}

.padding-top {
    padding: var(--section-space) var(--section-side-space) 0 var(--section-side-space);
}

.padding-bottom {
    padding: 0 var(--section-side-space) var(--section-space) var(--section-side-space);
}

.padding-none {
    padding: 0px var(--section-side-space);
}
.elementor-posts--skin-classic.elementor-posts{
  .elementor-post{
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.10);
    padding: var(--gutter-sm) var(--gutter-sm);
  }
}
a.elementor-post__read-more {
    background: var(--brand-color-01);
    color: #fff;
    padding: var(--space-sm) var(--space-md);
    border-radius: 0px;
    border: 2px solid var(--color-text-01);
    background: var(--color-brand-01);
    color: #fff;
    font-family: 'Lato';
    font-size: 16px !important;
    font-style: normal;
    font-weight: 900 !important;
    line-height: 150%;
    text-transform: uppercase;
    margin-top: 16px;
    display: inline-block;
}
a.elementor-post__read-more:hover{
  background: var(--color-brand-02);
  border: 2px solid var(--color-brand-02);
  color: #fff;
}
/* Typography */

a.elementor-element{
    text-decoration: none !important;
}

.eyebrow-heading {
    span, h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
    font-size: var(--heading-xs);
    font-family: var(--font-family-heading);
    text-transform: uppercase;
    font-weight:var(--font-weight-bold);
    letter-spacing: 1px;
}}

.headline-heading {
    span, h1, h2, h3, h4, h5, h6 {
    line-height: var(--line-height-heading);
    font-size: var(--heading-xxxl);
    font-family: var(--font-family-heading);
    font-weight: 900;
    text-transform: uppercase;
}}

.heading1 {
    span, h1, h2, h3, h4, h5, h6 {
    line-height: var(--line-height-heading);
    font-size: var(--heading-xxl);
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-bold);
}}

.heading2 {
    span, h1, h2, h3, h4, h5, h6 {
    line-height: var(--line-height-heading);
    font-size: var(--heading-xl);
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-bold);
}}

.heading3 {
    span, h1, h2, h3, h4, h5, h6 {
    line-height: var(--line-height-heading);
    font-size: var(--heading-lg);
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-bold);
}}

.heading4 {
    span, h1, h2, h3, h4, h5, h6 {
    line-height: var(--line-height-heading);
    font-size: var(--heading-md);
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-bold);
}}


.heading5 {
    span, h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
    font-size: var(--heading-sm);
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-bold);
}}

.heading6 {
    span, h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
    font-size: var(--heading-xs);
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-bold);
}}


p {
    margin-bottom: 0!important;
    font-size: var(--text-base);
    font-family: var(--font-family-body);
    line-height: var(--line-height-body);
}

.p--small {
    font-size: var(--text-sm);
}

.p--large {
    font-size: var(--text-lg);
}
.p--large{
  p{
    font-size: var(--text-lg);
  }
}

p + p {
    margin-top: var(--space-base)!important;
}

span, h1, h2, h3, h4, h5, h6, p {
    max-width: 768px!important;
}}

body, button, input, select, textarea, {
    font-family: var(--font-family-body);
}

.elementor-button{
   border-radius:var(--border-radius-button);
   padding:var(--space-sm) var(--space-md) !important;
   font-family: var(--font-family-heading);
   font-weight: var(--font-weight-bold);
   text-transform: uppercase;
   line-height: 1.35 !important;
}
.text-link .elementor-button{
  /* width: 100%; */
}
.text-link .elementor-button .elementor-button-content-wrapper{
  justify-content: space-between;
  width: 100%;
}
ul.hfe-breadcrumbs li .hfe-breadcrumbs-home-icon i {
    font-size: 12px;
    opacity: 0.80;
}
ul.hfe-breadcrumbs li .hfe-breadcrumbs-separator-icon i{
  color: var(--color-brand-01);
}
ul.hfe-breadcrumbs li.hfe-breadcrumbs-item .hfe-breadcrumbs-text{
  opacity: 0.8;
}
/* Slider */
.elementor-swiper{
    margin-bottom: 16px;
}
.elementor-element .swiper .swiper-pagination-bullets.swiper-pagination-horizontal{
    bottom: -18px;
}
.elementor-element.elementor-arrows-position-outside .swiper{
    width: calc(100% - 80px);
}
.elementor-slides .swiper-slide{
    position: relative;
    overflow: hidden;
}
.elementor-swiper-button-next.swiper-button-disabled,
.elementor-swiper-button-prev.swiper-button-disabled{
  display: none;
  opacity: 0!important;
}
#btn-top{
  padding: 0px!important;
}
#btn-top:visited,
#btn-top:focus{
  color: #fff;
  outline: none;
  border:none;
}
#btn-top:hover{
  color: #C51F33!important;
}
/* Carousel */
.swiper-pagination-bullet{
    opacity: 1;
    position: relative;
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path fill="%23ffffff" d="M6,12c-3.31,0-6-2.69-6-6S2.69,0,6,0s6,2.69,6,6-2.69,6-6,6ZM6,1C3.24,1,1,3.24,1,6s2.24,5,5,5,5-2.24,5-5S8.76,1,6,1Z"/></svg>');
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
}
.swiper-pagination-bullet:hover,
.swiper-pagination-bullet-active{
    mask: none;
}
.elementor-swiper-button .fa-arrow-left,
.elementor-swiper-button .fa-arrow-right,
.eicon-chevron-left,
.eicon-chevron-right{
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.38,11.06L10.66,1.34l1.34-1.34,12,12-12,12-1.34-1.34,9.72-9.72H0v-1.89h20.38Z" style="fill-rule:evenodd;"/></svg>');
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    display: block;
}
.elementor-swiper-button .fa-arrow-left:before,
.elementor-swiper-button .fa-arrow-right:before,
.eicon-chevron-left:before,
.eicon-chevron-right:before{
    background-color: currentColor;
}
.elementor-swiper-button .fa-arrow-left,
.eicon-chevron-left{
    transform: rotate(180deg);
}

nav.elementor-pagination {
    padding-top: var(--gutter);
    display: flex;
    justify-content: center;
    column-gap: var(--space-xs);
}
button.e-filter-item {
    display: block;
    padding: var(--space-sm) var(--space-md) !important;
    border: 2px solid #231F20 !important;
    color: #231F20!important;
    font-family: var(--font-family-body);
    font-size: var(--text-base);
    font-style: normal;
    font-weight: 900;
    line-height: 150%;
    text-transform: uppercase;
}
span.page-numbers.current, .page-numbers:hover {
    background: #C51F33;
    color: #fff;
    /* display: block; */
    cursor: pointer;
}

.page-numbers {
    padding: 6px 12px;
    text-decoration: none !important;
    margin: 0px !important;
}
button.e-filter-item[aria-pressed="true"],
button.e-filter-item:hover{
  background-color: #231F20!important;
  color: #fff!important;
}
/* Video */
.elementor-widget-video{
    border-radius: var(--border-radius-element);
    position: relative;
    overflow: hidden;
}
.elementor-custom-embed-image-overlay:after{
    content: '';
    background-color: var(--color-text-black);
    opacity: .3;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.elementor-custom-embed-play{
    z-index: 2;
}
.elementor-custom-embed-image-overlay:hover .eicon-play{
    opacity: .8 !important;
}
.eicon-play{
    background-color: currentColor;
    border-radius: 100%;
    opacity: 1 !important;
}
.eicon-play:before{
    opacity: 0;
}
.eicon-play:after{
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"><path fill="%230E6E92" d="M0,2.22v17.56c0,1.68,1.89,2.75,3.45,1.96l17.31-8.78c1.65-.84,1.65-3.08,0-3.91L3.45.27C1.89-.53,0,.55,0,2.22Z"/></svg>') center center no-repeat transparent;
    background-size: 16px;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 2px;
    top: 1px;
}
    
/* Tabbed Content */
.tabs-left .e-n-tabs-heading button{
    position: relative;
}
.tabs-left .e-n-tabs-heading button:after{
    content:'';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    background-color: var(--color-ui-01);
}
@media only screen and (max-width: 767px) {	
   .tabs-top .e-n-tabs-heading button{
       position: relative;
   }
   .tabs-top .e-n-tabs-heading button:after{
       content:'';
       width: 100%;
       height: 1px;
       position: absolute;
       bottom: 0;
       left: 0;
       display: block;
       background-color: var(--color-ui-01);
   }
}


/* Tables */

.html-table{
   table{
      border: 0;
   }
   thead{
      background-color: var(--color-brand-01);
   }
   th{
      border-color: var(--color-text-white);
      color: var(--color-text-white);
      line-height: 1.5;
      font-size: var(--text-base);
      font-family: var(--font-family-body);
      text-transform: uppercase;
      font-weight:var(--font-weight-bold);
      padding: var(--space-sm) var(--space-base);
   }
   tbody tr:nth-child(odd){
      background-color: var(--color-ui-white);
   }
   tbody tr:nth-child(even){
      background-color: var(--color-ui-01);
   }
   td{
      border: 0;
      border-bottom: 1px solid var(--color-ui-02);
      text-align: center;
      font-size: var(--text-base);
      padding: var(--space-sm) var(--space-base);
   }
}

.html-table::-webkit-scrollbar-track {
  background: var(--color-text-white);
  border: 1px solid var(--color-brand-03);
  height: 8px;
  border-radius: 12px;
}
.html-table::-webkit-scrollbar {
  width: 8px;
  background: var(--color-text-white);
  height: 8px;
  border-radius: 12px;
}
.html-table::-webkit-scrollbar-thumb {
  background: var(--color-brand-03);
  width: 40px;
  border-radius: 12px;
}

@media only screen and (max-width: 1024px) {	
   .html-table{
      overflow: auto;
      table{
         width: 1024px;
      }
   }
}
header .e-search-form input{
  color: #fff!important;
}

/* Forms */
form{
   .gfield_label{
      color: var(--color-text-black)  !important;
      line-height: 1.5;
      font-size: var(--text-base) !important;
      font-family: var(--font-family-body);
      font-weight:var(--font-weight-bold) !important;
      float: left;
   }
   .gfield_required{
      text-transform: lowercase;
      color: var(--color-ui-warning);
      font-size: var(--text-sm) !important;
   }
   .ginput_container input[type="text"],
   .ginput_container input[type="tel"],
   .ginput_container input[type="email"]   {
      border: 1px solid #D9D9D9 !important;
      padding: var(--space-sm) var(--space-base) !important;
      height: 48px !important;
      line-height: 48px !important;
      
   }
   .ginput_container input[type="file"]{
     border: 1px solid #D9D9D9 !important;
   }
   .ginput_container textarea{
      border: 1px solid #D9D9D9 !important;
      padding: var(--space-sm) var(--space-base) !important;
      height: 96px !important;
   }
   label + .gfield_description{
      text-transform: lowercase;
      color: var(--color-text-black);
      font-size: var(--text-sm) !important;
      left: 8px;
      top: 1px;
      position: relative;
   }
   .gform_fields{
      row-gap: var(--space-md) !important;
   }
   .gform_button{
      border-radius:var(--border-radius-button);
      padding:var(--space-sm) var(--space-md) !important;
      font-family: var(--font-family-heading) !important;
      font-weight: var(--font-weight-bold) !important;
      text-transform: uppercase !important;
      line-height: 1.35 !important;
      color: var(--color-text-white);
      border: 2px solid var(--color-brand-03) !important;
      background-color: var(--color-brand-03) !important;
      font-size: var(--text-base) !important;
   }
   .gform_button:hover{
      border: 2px solid var(--color-brand-03) !important;
      background-color: var(--color-ui-white) !important;
      color: var(--color-brand-03) !important;
   }
}

.form-wide form .gfield--width-half{
   grid-column: 1 / -1;
}

.form-light form .gfield_label,
.form-light form .gfield_required,
.form-light form .gfield_description{
   color: var(--color-text-white) !important;
}


body.e-off-canvas__no-scroll, 
body.e-off-canvas__no-scroll-animation {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  overflow: hidden; /* Keep vertical scrolling enabled */
}

/* For Chrome, Safari, Opera, and other WebKit-based browsers */
body.e-off-canvas__no-scroll::-webkit-scrollbar, 
body.e-off-canvas__no-scroll-animation::-webkit-scrollbar {
  display: none;
}

/* Mobile Menu */
.off-canvas-toggle a[aria-expanded="true"] i:before{
  content: '\f00d';
}
.elementor-widget-off-canvas{
  .e-off-canvas__overlay{
    background-color: transparent !important;
  }
  .e-off-canvas__content{
    width: 100%;
  }
  .e-off-canvas__main{
    height: calc(100% - var(--headerHeight));
    top: var(--headerHeight);
    overflow-y: auto;
  }
}
.e-off-canvas .elementor-nav-menu--main{
  .menu-item-home-text{
    letter-spacing: 1px;
    border: 0;
    line-height: 1.5;
    padding: 13px 0;
    color: var(--color-text-black);
    font-weight: var(--font-weight-bold);
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #D9D9D9;
    
  }
  ul {
    position: relative;
    height: 100%;
  }
  ul li{
    position: relative;
  }
  ul li > .submenu-toggle {
    cursor: pointer;
    position: absolute;
    width: 40px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
  }
  ul li a{
    margin: 0;
    border: 0;
    padding: var(--space-base)!important;
  }
  ul li a:after{
    content: '';
    opacity: 1 !important;
    height: 1px;
    width: 100%;
    background-color: #D9D9D9;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  ul li a > span{
    display: none !important;
  }
  ul ul {
    position: absolute;
    left: 100vw !important;
    transition: left 0.2s ease-in-out;
    z-index: 3;
    background-color: white;
    width: 100% !important;
    top: 0 !important;
    transition: none;
    margin-left: 0 !important;
    margin-top: 0 !important;
  }
  ul li.submenu-active {
    position: static;
  }
  ul li.submenu-active > ul {
    left: 0 !important;
    transition: left 0.2s ease-in-out;
    z-index: 9;
    display: block !important; 
  }
  button.submenu-toggle{
    position: relative;
    width: 40px;
    height: 40px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 0;
    line-height: 1.5;
    color: var(--color-text-black);
    font-weight: var(--font-weight-bold);
    background-color: transparent;
    padding: 0;
  }
  button.submenu-toggle:before{
    content:'';
    width: 20px;
    height: 20px;
    display: block;
    background-color: var(--color-brand-01);
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z"/></svg>');
    mask-repeat: no-repeat;
    mask-position: right center;
    mask-size: contain;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .submenu-headline{
    font-weight: 700;
  }
  .submenu-back{
    border-bottom: 1px solid  var(--color-ui-03);
  }
  button.submenu-back-button{
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 0;
    line-height: 1.5;
    padding: 13px 0;
    color: var(--color-text-black);
    font-weight: var(--font-weight-bold);
    background-color: transparent;
  }
  .submenu-back-button:before{
    content:'';
    width: 20px;
    height: 20px;
    display: block;
    background-color: var(--color-brand-01);
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z"/></svg>');
    mask-repeat: no-repeat;
    mask-position: left center;
    mask-size: contain;
  }
}
.mobile-menu-nav ul li a:hover{
  background: var(--color-brand-02);
  color: #fff!important;
}
#mobile-nav .search-container{
  padding: var(--space-md) 0;
  .search-form input{
    width: 100%;
  }
}
.mobile-nav__utility{
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
  i{
    width: 20px;
    color: var(--color-brand-03);
  }
  a{
    text-decoration: none;
    color: var(--color-text-black);
  }
}
.e-hotspot, 
.e-hotspot__button{
  cursor:default!important;
}
.e-off-canvas__content .e-search-form input{
  color: #fff!important;
}
.primary-bucket-image .text-link .elementor-button{
  border-bottom: 2px solid #fff;
  padding-bottom: var(--space-sm)!important;
}
.primary-bucket-image:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #231F20;
    background-image: url(/wp-content/uploads/2026/02/a-watermark.png);
    background-size: 100%;
    background-position: bottom right;
    z-index: 4;
    opacity: 0;
    transition: 0.2s opacity;
}
.primary-bucket-image:hover:after {
    opacity: 1;
    transition: 0.2s opacity;
}
.tertiary-btn .elementor-button{
  padding: 12px 0px!important;
  border-bottom: 2px solid var(--color-brand-01);
}
.tertiary-btn .elementor-button:hover{
  border-bottom: 2px solid var(--color-text-black);
}
.e-grid .elementor-widget-image a{
  display: block;
}
.footer-menu ul li a:hover{
  text-decoration: underline;
}
.gform-footer input[type="submit"] {
    background: var(--color-brand-01) !important;
}
.gform-footer input[type="submit"]:hover{
  background: var(--color-brand-02)!important;
}
header.elementor.elementor-location-header > div.elementor-element.elementor-sticky{
  width: 100%!important;
}
.blog-card {
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.10)!important;
}
.blog-card:hover {
    box-shadow: 0 24px 32px 0 rgba(0, 0, 0, 0.10)!important;
}
.blog-card .category-chip {
    position: absolute;
    z-index: 2;
    background: red;
    color: #fff;
    padding: 8px 12px;
    top: 0;
    right: 0;
}
@media(max-width: 1365px){
  
}
@media(max-width: 1024px){
  .footer-menu,
  .footer-menu ul, 
  .footer-menu  li{
    width: 100%;
  }
  .footer-menu ul li a{
    text-align: center;
    justify-content: center!important;
  }
  
}