/* ==================== */
/* Colours
/* ==================== */

/**
 * Edit, delete or add as needed
 */
:root {
  --brand-main: #2F4F4F;
  --brand-main-hover: #4D6969;
  --brand-sec: #4B5B6A;
  --brand-sec-hover: #6A7B8C;
  --off-grey: #F8FBFC;

  --transition-speed: 0.3s;
}


/* ==================== */
/* Scroll Behaviour
/* ==================== */

html {
  scroll-behavior: smooth;
}


/* ==================== */
/* Global Font
/* ==================== */

body {
  font-family: 'Montserrat', sans-serif; /* Change to correct font */
  font-size: 16px;
}

.post, .page {
  margin: 0 !important;
}

/* ==================== */
/* Container
/* ==================== */

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-has-bg .container {
  position: relative;
  z-index: 2;
}

/* ==================== */
/* Sections
/* ==================== */

.section {
  padding: 2rem 0;
}

.section--off-grey {
  background-color: var(--off-grey);
}

.section-has-bg {
  background-size: cover;
  position: relative;
  padding: 2rem 0;
  margin-bottom: 0;
}

.section-has-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
}

@media (min-width: 1280px){
  .section {
    padding: 50px 0;
  }

  .section-has-bg {
    padding: 50px 0;
  }
}


/* ==================== */
/* Reset H1 CSS
/* ==================== */

h1.home-link,
a.home-link {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  font-size: 16px !important;
}

.home-link__logo {
  display: block;
  max-width: 110px;
  width: 100%;
}


/* ==================== */
/* Site Titles
/* ==================== */

.rte h2, .rte h3, .rte h4,
.site-title {
  margin-top: 0 !important;
  color: var(--brand-main) !important;

}

.site-title--centre {
  text-align: center;
}


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

.site-btn {
  display: inline-block;
  background-color: var(--brand-main);
  color: white !important;
  padding: 8px 32px;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none !important;
}

.site-btn--white {
  background-color: white;
  color: var(--brand-main) !important;
}


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

p:first-of-type {
  margin-top: 0;
}

.rte {
  line-height: 1.75 !important;
}

@media (min-width: 1280px){
  .rte--larger-text {
    font-size: 18px;
  }
}

a, a:visited {
  color: var(--brand-main);
  text-decoration: none;
  transition: color var(--transition-speed) ease-in-out;
}

a:hover {
  color: var(--brand-main-hover);
}

ul, li {
  padding: 0;
  margin: 0;
  margin-left: 10px;
}

/* ==================== */
/* Misc Classes
/* ==================== */

.text-align-center {
  text-align: center !important;
}

.max-width--750 {
  max-width: 750px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.text--white {
  color: white !important;
}

.disp-block {
  display: block !important;
}

/* ==================== */
/* Grid
/* ==================== */

.row{
  display: flex!important;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;

}

.row-invert{
  display: flex!important;
  flex-direction: column-reverse;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;

}

.col-2, .col-3, .col-4, .col-2-small, .col-2-big, .col-2-no-space{
  width: 100%;
}

.col-4{
  padding: 15px 0;
}

.vertical_center{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px){

  .row, .row-invert{
    flex-direction: row;
  }

  .col-4{
    width: 48.5%;
  }

}

@media (min-width: 1024px){

  .row, .row-invert{
    flex-direction: row;
  }

  .col-2{
    width: 48.5%;
  }

  .col-2-small{
    width: 31.5%;
  }

  .col-2-big{
    width: 64.5%;
  }

  .col-2-no-space{
    width: 50%;
  }

  .col-3{
    width: 31.5%;
  }

  .col-4{
    width: 23.5%;
  }

}

/* ==================== */
/* Top Bar
/* ==================== */

.top-bar {  
  background-color: var(--brand-main-hover);
  padding: 6px 0;
  text-align: center;
}

.top-bar__col--contact {
  display: none;
}

.top-bar__cta-btn {
  display: inline-block;
  color: white !important;
  font-size: 14px;
  text-decoration: none !important;
  background-color: var(--brand-main);
  padding: 8px 32px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
}

.top-bar__item {
  color: white;
}

.top-bar__item i {
  display: inline-block;
  margin-right: 5px;
}

.top-bar__item a {
  color: white !important;
  text-decoration: none !important;
  display: inline-block;
  margin-right: 1.5rem;
  text-transform: uppercase;  
  font-size: 14px;
  cursor: pointer;
}

@media (min-width: 768px){
  .top-bar {
    display: block;
    padding: 8px 0;
  }

  .top-bar__row {
    display: flex;
    justify-content: space-between;
  }

  .top-bar__col--contact {
    display: flex;
    align-items: center;
  }

  .top-bar__cta-btn {
    padding: 5px 25px;    
  }
}

/* ===================== */
/* Slideout Nav
/* ===================== */

.slideout-menu {    
  width: 350px;
  position: fixed;
  top: 0; 
  left: -350px; 
/*  left: 0;*/
  height: 100%; 
  background: #333;
  z-index: 100;
  /*overflow-y: scroll;*/
  background-color: var(--brand-main);
  transition: 0.5s;
}

body.admin-bar .slideout-menu {
  top: 46px;
}

.slideout-menu.active {
  box-shadow: 0 21px 27px rgb(0 0 0 / 90%);
  left: 0;
}

.slideout-menu i {
  font-family: "FontAwesome";
}

.slideout-menu h3 { 
  margin: 0;
  position: relative;
  padding: 12px 10px;
  color: #fff;
  font-size: 1.2em;
  font-weight: 400;
/*  border-bottom: 4px solid #222;*/
}

/* Style up the toggle menu "x" */
.slideout-menu .slideout-menu-toggle {
  position: absolute;
  top: 12px;
  right: 10px;
  display: inline-block;
  padding: 6px 9px 5px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  line-height: 1;
  background: var(--brand-blue);
  color: white;
  text-decoration: none;
  vertical-align: top;
}

.slideout-menu .slideout-menu-toggle:hover {
  color: #fff;
}

/* Give the menu container some love */
.slideout-menu ul {
  list-style: none;
  font-weight: 300; 
  margin: 0;
  padding: 0;
}

/* And now the list items */
.slideout-menu ul li {
  /*border-top: 1px solid #454545;
  border-bottom: 1px solid #151515;*/
}

/* The anchor elements within the list items */
.slideout-menu ul li a {
  position: relative;
  display: block;
  padding: 10px;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
}

.slideout-menu ul li a button  {
  position: absolute;
  right: 10px;
}

.slideout-menu ul li a:hover {
  /*background: #000;
  color: #fff;*/
}

.slideout-menu ul li a i {
  position: absolute;
  top: 15px;
  right: 10px;
  opacity: .5;
}

.dropdown-toggle {
  background-color: transparent;
  border: 0;    
  content: "";
  height: 42px;
  padding: 0;
  position: absolute;
  text-transform: lowercase;
  top: 3px;
  right: 0;
  width: 42px;
}

.dropdown-toggle:after {
  font-family: "FontAwesome";
  color: white;
  content: "\f078";    
  line-height: 42px;
  position: relative;
  top: 0;
  left: 1px;
  width: 42px;
}

.dropdown-toggle.sub-menu-on:after {
  content: "\f077";    
}

/* Submenu */
.slideout-menu ul .sub-menu {
  display: none;
  position: relative;
  width: 100%;
}

.slideout-menu ul .sub-menu li {
  border: 0;  
}

.slideout-menu ul .sub-menu li a {
  text-align: center;
  background-color: #2b673f !important;
}

@media (min-width: 1024px){
  .slideout-menu {
    display: none;
  }
}

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

.main-header {
  background-color: var(--brand-main-hover);
  padding: 0.5rem 0;
  position: relative;
  z-index: 1;
}

.main-header__row {
  display: flex;
  justify-content: space-between;
}

.main-header__col--logo {
  flex-basis: 60%;
}

.main-header__col--nav {
  display: none;
}

.main-header__burger {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.main-header__burger-link {
  color: white !important;
}

@media (min-width: 1024px){
  .main-header {
    padding: 1rem 0;
  }

  .main-header__col--logo {
    flex-basis: auto;
  }

  .main-header__burger {
    display: none;
  }

  .main-header__col--nav {
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1280px){
  .main-header {
    padding: 1.5rem 0;
  }
}


/* ==================== */
/* Main Nav
/* ==================== */

.main-browse-nav {
  margin: 0 !important;
  padding: 0 !important;
  list-style-type: none !important;
  display: flex;  
}

.main-browse-nav > li {
  margin-left: 1rem;
  position: relative;
}

.main-browse-nav > li > a {
  color: white !important;
  text-transform: none !important;
  font-weight: 500;
  text-decoration: none !important;
  font-size: 16px;
}

@media (min-width: 1280px){

  .main-browse-nav > li { 
    margin-left: 2rem;
  }

  .main-browse-nav > li > a {
    font-size: 18px;
  }
}


/* ==================== */
/* Sub Menus
/* ==================== */

.sub-menu {
  position: absolute;
  left: 0;  
  margin: 0;
  padding: 0;
  width: 250px;
  display: none;
}

.sub-menu > li.menu-item {
  display: block;  
}

.sub-menu > li.menu-item a {
  color: white !important;
  display: block;
  background-color: var(--brand-main);
  padding: 8px;
  text-align: left;
  text-decoration: none !important;
}

.sub-menu > li.menu-item a:hover {
  background-color: var(--brand-main-hover)
}

.main-browse-nav > li:hover .sub-menu {
  display: block;
}


/* ==================== */
/* Slideshow
/* ==================== */

#slideshow {
  overflow: hidden;
}

.fp-slideshow__slide {
  height: 500px;
  position: relative;
  background-position: center;
  background-size: cover;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.fp-slideshow__slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
}

.fp-slideshow__content {
  position: relative;
  z-index: 1;  
  width: 90%;
  max-width: 1280px;  
  margin-left: auto;
  margin-right: auto;
}

.fp-slideshow__title {
  margin: 0;
  padding: 0;
  color: white;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.fp-slideshow__text {
  color: white;
  margin: 0 0 0.5rem 0;
  max-width: 500px;

}

#slideshow .slick-dots {
  bottom: 1rem;
}

#slideshow .slick-dots li button:before {
  font-size: 14px;
  color: white;
}

#slideshow .slick-dots li.slick-active button:before {
  color: white;
  opacity: 1;
}

#slideshow .slick-dotted.slick-slider {
  margin-bottom: 0;
}

@media (min-width: 1024px){

  .fp-slideshow__slide {
    height: 797px;
  }

  .fp-slideshow__logo {
    width: 550px;
  }

  .fp-slideshow__title {
    font-size: 28px;
  }

  .fp-slideshow__text {
    font-size: 22px;
  }

  #slideshow .slick-dots {
    bottom: 2rem;
  }
}


/* ==================== */
/* Footer
/* ==================== */

.site-footer-main {
  padding: 32px 0;
  background-color: var(--brand-main-hover);
}

.site-footer-main__col--blurb {
  margin-bottom: 32px;
}

.site-footer__logo {
  max-width: 210px;
  margin-bottom: 1rem;
}

.site-footer__blurb {
  font-size: 14px;
  color: white;
}

.site-footer__title {
  color: white;
  position: relative;
  padding-bottom: 4px;
}

.site-footer__title::after {
  content: none;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 50px;
  height: 2px;
  background-color: white;

}

.footer-nav-wrap ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style-type: none !important;
}

ul.footer-legal-nav {
  margin-bottom: 1rem !important;
}

.footer-nav-wrap ul a {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
  color: white !important;
  text-decoration: none !important;
}

.footer-nav-wrap ul a:hover {
  border-color: white;
}

.site-footer__addr {
  color: white !important;
  padding-left: 0;
  position: relative;
  margin-bottom: 16px;
}

.site-footer__addr::before {
  content: none; 
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900;
  color: white;
  position: absolute;
  left: 0;
}

.site-footer__link {
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
  color: white !important;
  text-decoration: none !important;  
}

.site-footer__link-wrap {
  position: relative;
  padding-left: 32px;
}

.site-footer__link-wrap::before {
  content: "\f095"; 
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900;
  color: white;
  position: absolute;
  left: 0;
}

.site-footer__link-wrap--email::before {
  content: "\f0e0";
}

.social-icons {
  padding: 16px 0 0 0 !important;
  margin: 0 !important;
  list-style-type: none !important;
  display: flex;  
}

.social-icons__link {
  font-size: 32px;
  color: white !important;
}

.social-icons__item {
  margin-right: 1rem;
}

.social-icons__item:last-of-type {
  margin-right: 0;
}

.social-icons__link--dark {
  color: var(--brand-main) !important;
}

.site-footer .social-icons__item {
  margin-right: 0.5rem;
}

@media (min-width: 768px){

  .site-footer-main__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .site-footer-main__col--blurb,
  .site-footer__blurb {
    margin-bottom: 0;
  }

  .site-footer__title {
    margin-top: 0;
  }
}

@media (min-width: 1024px){

  .site-footer-main {
    padding-top: 50px;
  }

  .site-footer-main__row {
    flex-wrap: nowrap;
  }

  .site-footer-main__col {
    flex-basis: calc(25% - 32px);
  }
}

@media (min-width: 1280px){

  .site-footer-main {
    padding-top: 75px;
  }

  .site-footer__blurb {
    padding-right: 32px;
  }
  
  .social-icons__link--lg {
    font-size: 45px;
  }

  .site-footer__blurb {
    line-height: 2;
  }
}


/* ==================== */
/* Site Info
/* ==================== */

.site-info {
  background-color: var(--brand-sec);
  overflow: hidden;
  padding-top: 16px;
  padding-bottom: 16px;
}

.site-info__text {
  margin: 0;
  color: white;
  font-size: 14px;
}

.site-info__copyright,
.site-info__designby {
  display: flex;
  text-align: center;
  align-items: center;
}

.site-info a {
  color: white !important;
}

.ftr_rane_logo {
  width: 75px;
  margin-left: 8px;
}

@media (min-width: 768px){
  .site-info__text {
    display: flex;
    justify-content: flex-end;    
  }

  .site-info__copyright {
    margin-right: 8px;
    position: relative;
  }  

  .site-info__copyright::after {
    content: " |";
    display: inline-block;
    padding-left: 8px;
  }
}



/* ==================== */
/* Main Banner
/* ==================== */

.main-banner {
  background-size: cover;
  background-position: center;
  background-color: var(--brand-main); /* Default colour fallback for banner */
  height: 200px;
  display: flex;
  align-items: center;
  position: relative;
}

.main-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
}

.main-banner__row {
  position: relative;
}

.main-banner__title {
  margin: 0;
  color: white;
}

@media (min-width: 1280px){
  .main-banner {
    height: 300px;
  }

  .main-banner__title {
    font-size: 50px;
  }
}


/* ==================== */
/* Page Builder
/* ==================== */

.page-wrap {
  background-color: #efefef;
  padding: 2rem 0 1rem 0;
}

.content-box__row {
/*  background-color: white;*/
/*  padding: 1rem;*/
  margin-bottom: 2rem;
/*  box-shadow: 0 0 4px rgba(0,0,0,0.4);*/
}

.content-box__row p:last-of-type {
  margin-bottom: 0;
}

.col-order-1 {
  margin-bottom: 2rem;
}

.content-box__title {
  margin-bottom: 1rem;
}

.content-box__body {
  margin-bottom: 1rem;
}

.section-has-bg .content-box__row {
  background-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-shadow: none;
}

.section-has-bg .site-title-pre,
.section-has-bg .content-box__title,
.section-has-bg .content-box__body .rte * {
  color: white !important;
}

@media (min-width: 1024px){

  .col-order-1 {
    margin-bottom: 0;
  } 

  .content-box__row {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
  }

  .content-box__row--single-row {
    flex-direction: column;
    align-items: center;
    text-align: center !important;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }

  .content-box__col--txt {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .content-box__col--img {
    width: 400px;
  }

  .content-box__col--txt.col-order-1 {
    padding-right: 2rem;
  }

  .col-order-1 {
    order: 1;
  }

  .col-order-2 {
    order: 2;
  }
}

@media (min-width: 1280px){
  .content-box__row { 
    padding: 3rem 0;
  }

  .content-box__body {
    margin-bottom: 2rem;
  }
}


/* ==================== */
/* Contact Page 1
/* ==================== */

.contact-card {
  background-color: var(--brand-main);
  padding: 1rem;
  border-radius: 10px;
  display: flex;  
  align-items: center;
  margin-bottom: 1rem;
}

.contact-card__icon-wrap {
  margin-right: 1rem;
}

.contact-card__icon-circle {
  color: white !important; 
}

.contact-card__icon {
  color: var(--brand-main) !important;
}

.contact-card__text-wrap,
.contact-card__link {
  color: white !important;
}

.contact-card__link {
  text-decoration: none !important;
}

.opening-hours {
  margin: 0 0 2rem 0 !important;
  padding: 0 !important;
  list-style-type: none !important;
}

.opening-hours__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  position: relative;
}

.opening-hours__item::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted white;
}

.opening-hours__day,
.opening-hours__hours {
  background-color: var(--brand-main);
  display: inline-block;  
  position: relative;
  z-index: 1;
}

.opening-hours__day {
  padding-right: 8px;
}

.opening-hours__hours {
  padding-left: 8px;
}

.section-about-lower__col--hours {
  margin-bottom: 2rem;
}

.section-contact__col--form h2 {
  margin-bottom: 2rem !important;
}

.social-icons {
  padding: 16px 0 0 0 !important;
  margin: 0 !important;
  list-style-type: none !important;
  display: flex;
  gap: 16px;
}

.social-icons__link {
  font-size: 32px;
  color: var(--brand-main) !important;
}

.site-footer .social-icons__link {
  color: white !important;
}

@media (min-width: 1024px){
  .section-contact__row,
  .section-about-lower__row {
    display: flex;
    justify-content: space-between;
  }

  .section-contact__col--form {
    flex-basis: 60%;
  }

  .section-contact__col--text {
    flex-basis: 35%;
  }

  .section-about-lower__col {
    flex-basis: 40%;
  }
}


/*====================
Contact Page 2
====================*/

.contact_box_wrapper{
  background-color: var(--brand-main);
  padding: 30px;
  border-radius: 10px;
  color: #fff;  
  text-align: center;
  margin: 15px 0;
  box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.2);
}

.contact_box_wrapper h2{
  font-size: 60px;
  margin: 0;
}

.contact_box_wrapper a{
  color: #fff;  
  text-decoration: none;
}

.contact_box_wrapper a:hover{
  color: var(--brand-secondary);  
  text-decoration: none;
}

.frm_button_submit{
  float: right;
}

.contact_form{
  background-color: var(--brand-main);
}

.contact_form h2{
  color: #fff;
}

/* ============================================================ */
/* Custom code starts below...
/* ============================================================ */


:root {
  --col-gap: 10px;
  --text-color: #181F1F;
}

body, button, input, select, optgroup, textarea {
  color: var(--text-color);
}

h1 {
  line-height: 1.2;
}

.rane-builder-row-wrapper {
  --title-color: var(--text-color);
  --title-highlight-color: var(--brand-main);
  --title-size: 26px;
  --title-highlight-size: 26px;
  line-height: 1.6em;
  font-weight: 400;
}

.rane-builder-row-wrapper.rane-builder-row-hero {
  padding: 200px 0 100px;
}

.rane-builder-row--dark{
  --title-color: white;
}

.rane-builder-row-wrapper.row-sized-title {
  --title-size: 26px;
}

.rane-builder-row-wrapper.row-inverse-heading {
  --title-highlight-color: var(--title-color);
  --title-color: var(--brand-main);
}

.rane-builder-row-clear-contents .content-box__col--txt,
.rane-builder-row-clear-contents .content-box__body .rte,
.rane-builder-row-double .content-box__col--txt,
.rane-builder-row-double .content-box__body,
.rane-builder-row-double .content-box__body .rte,
.content-box__col--img {
  max-width: unset;
  margin: 0;
  padding: 0;
}

.rane-builder-row-double .content-box__content {
  padding: 3rem 0;
  justify-content: space-between;
}

.rane-builder-row-wrapper.row-items-center .content-box__row,
.rane-builder-row-wrapper.row-items-center .content-box__content {
  align-items: center;
}

.rane-builder-row-wrapper.double-centered .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rane-builder-row-wrapper.double-centered .rane-flex-row {
  flex-direction: column;
  justify-content: center;
}

@media(min-width: 480px) {
  .rane-builder-row-wrapper.double-centered .rane-flex-row {
    flex-direction: row;
  }
}

.rane-builder-row-wrapper.double-centered .content-box__hdr,
.rane-builder-row-wrapper.double-centered .content-box__hdr h2,
.rane-builder-row-wrapper.double-centered .content-box__ftr {
  text-align: center !important;
}

.rane-builder-row-wrapper.double-full-image .content-box__col--img > * {
  width: 100% !important;
}

.rane-builder-row-wrapper.row-bordered-image .content-box__col--img {
  border: solid 5px white;
}

.rane-section-title {
  font-size: 32px;
  color: var(--title-color);
  margin: 0;
}

.rane-builder-row-wrapper.row-caps-heading .section_title,
.rane-builder-row-wrapper.row-caps-heading .site-title {
  text-transform: uppercase !important;
}

.rane-title-highlight {
  color: var(--title-highlight-color);
}

.row-inline-heading .rane-section-title-highlight {
  display: inline;
}

.rane-builder-row-wrapper.row-highlight-strong .content-box__intro strong,
.rane-builder-row-wrapper.row-highlight-strong .content-box__col--txt strong {
  color: var(--brand-main);
  font-weight: 700;
}

.rane-builder-hero-bg-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.site-btn,
.rane-button,
.frm_style_big-text.with_frm_style .frm_submit button {
  display: inline-block;
  background-color: var(--brand-sec-hover);
  padding: .5rem 1rem;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.6px;
  text-align: center;
  color: #fafafa !important;
  text-decoration: none;
  text-wrap: nowrap;
  transition: all var(--transition-speed) ease-in-out;
}

.rane-button:hover,
.frm_style_big-text.with_frm_style .frm_submit button:hover {
  background-color: var(--brand-main-hover);
}

.rane-button-small {
  padding: .4rem 1rem;
  font-size: 14px;
}

.rane-button--secondary {
  background-color: white;
  border: solid 1px var(--brand-main);
  color: var(--brand-main) !important;
}

.rane-button--secondary:hover {
  background-color: var(--brand-main);
  color: white !important;
}

.object-cont {
  flex: 1 0 0%;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.rane-flex {
  display: flex;
}

.rane-flex-row {
  flex-wrap: wrap;
  flex-direction: row;
  gap: var(--col-gap);
  justify-content: center;
}

.rane-flex-column {
  flex-direction: column;
}

.rane-flex-center {
  justify-content: center;
  align-items: center;
}

.rane-flex-fit {
  justify-content: flex-start;
  align-items: stretch;
}

.rane-between {
  justify-content: space-between;
}

.rane-justify-start {
  justify-content: flex-start;
}

.rane-justify-end {
  justify-content: flex-end;
}

.rane-justify-center {
  justify-content: center;
}

.rane-items-center {
  align-items: center;
}

.rane-items-stretch {
  align-items: stretch;
}

.rane-col {
  width: 100%;
}

.rane-w-full {
  width: 100%;
}

.rane-w-half {
  width: 50%;
}

.rane-h-full {
  height: 100%;
}

.rane-h-half {
  height: 50%;
}

.rane-vh-full {
  height: 100vh;
}

.rane-vh-half {
  height: 50vh;
}

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

.rane-heading {
  font-size: 22px;
  font-weight: 700;
  line-height: 36.01px;
  margin: 0;
  padding: 0;
}

.section_title_main {
  color: var(--brand-main);
}

.widget-title,
.rte .front-features h2, .rte .widget-title {
  font-weight: 700;
  font-size: 20.65px;
  line-height: 33px;
}

.widget-title::after,
.rane-builder-row-wrapper:not(.rane-builder-row-builder-text-image) .section_title .rane-heading::after,
.rte .front-features h2::after {
  content: none;
  display: block;
  width: 62px; 
  height: 3px;
  background-color: var(--brand-main-hover);
  margin-top: 10px;
}

.rane-builder-row-wrapper.rane-builder-row-builder-text-image .section_title.rane-center {
  text-align: left;
}

.rane-padding {
  padding: 30px 0px;
}

.stdmargin {
  margin-bottom: 15px;
}

.smallmargin {
  margin-bottom: 8px;
}

.stdgap {
  gap: 25px;
}

.smallgap {
  gap: 10px
}

.stdpadding {
  padding: 30px;
}

.smallpadding {
  padding: 10px;
}

.rane-uppercase {
  text-transform: uppercase;
}

.rane-thin {
  font-weight: 300;
}

.rane-bold {
  font-weight: 700;
}

.rane-boldx {
  font-weight: 900;
}

.rane-color-primary {
  color: var(--brand-main-hover);
}

.rane-color-white {
  color: white;
}

.rane-text-black {
  color: #0F0F0F;
}

.rane-bg-primary {
  background-color: var(--brand-main);
}

.rane-bg-secondary {
  background-color: var(--brand-main-hover);
}

.rane-bg-white {
  background: white;
}

.rane-bg-offgrey {
  background: var(--off-grey);
}

.rane-bg-alt {
  background: #F5F3EF;
}

.rane-bg-gradient {
  background: linear-gradient( to bottom, #FFFFFF, #EBEBEA );
}

.rane-absolute-bg-cont > .container,
.rane-absolute-bg-cont {
  position: relative;
}

.rane-absolute-bg img {
  opacity: .1;
  width: 100%;
  height: 100%;
}

.rane-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.rane-bg-image-overlay {
  position: relative;
}

.rane-bg-image-overlay::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.49);
}

.rane-bg-image-overlay > *:not(.rane-builder-hero-bg-overlay) {
  position: relative;
  z-index: 1;
}

.rane-text-sm {
  font-size: .8rem;
  line-height: 1.6;
}

.rane-ul {
  padding: 0px 0px 0px 15px;
  margin: 0;
  list-style: none;
}

.product-banner ul,
.rane-ul-regular {
  padding: 0;
  margin: 0;
  list-style: none;
}

.rane-builder-row-wrapper ul li,
.product-banner ul li,
.rane-ul-regular li {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
  vertical-align: middle;
}

.rane-builder-list-regular ul li::before,
.rane-ul-regular li::before {
  display: inline-block;
  content: '';
  position: relative;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: var(--brand-sec);
  transition: transform 0.3s ease-in-out;
  vertical-align: bottom;
  margin-right: 10px;
}

.rane-builder-list-regular ul li:hover::before,
.rane-ul-regular li:hover::before {
  transform: translateY(-50%) scale(1.4);
}

.rane-ul-flex {
  display: flex;
  padding: 0;
  gap: 15px;
}

.rane-list-icon {
  color: var(--brand-main);
  width: 100px;
  height: 100px;
  display: inline-block;
}

.rane-list-icon svg,
.rane-list-icon img {
  width: 100%;
  height: 100%;
}

.rane-tab-components {
  display: flex;
  flex-direction: column;
}

.rane-tab-menu {
  display: flex;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.rane-tab-menu-item {
  cursor: pointer;
  transition: all 0.3s ease;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.rane-tab-menu-item .label {
  display: block;
  background-color: rgb(235, 245, 255);
  border-radius: 16px;
  padding: 10px;
  text-align: center;
  width: 100%;
  transition: background ease-in-out .3s;
}

.rane-tab-menu-item:hover .label,
.rane-tab-menu-item.active .label {
  font-weight: 400;
  background-color: var(--brand-main);
}

.rane-tab-content {
  display: none; /* Hidden by default, shown via jQuery */
}

.rane-rounded {
  border-radius: 100%;
}


/* Horizontal Scroll Styling */
.flatlist-scroll {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  overflow-x: scroll; /* Enable horizontal scrolling */
  overflow-y: hidden; /* Prevent vertical scrolling */
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: var(--brand-main) #DBDBDB; /* Firefox */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
  -ms-overflow-style: scrollbar; /* IE 10+ */
  scrollbar-gutter: stable; /* Modern CSS - Chrome/Edge/Firefox */
}

.flatlist-scroll::-webkit-scrollbar {
  height: 8px;
  background: #DBDBDB; /* Scrollbar track color */
}

.flatlist-scroll::-webkit-scrollbar-thumb {
    background: var(--brand-main);
    border-radius: 4px;
}

.flatlist-scroll::-webkit-scrollbar-track {
  background: #DBDBDB;
}

/* Custom OverlayScrollbars Styling */
.flatlist-scroll .os-scrollbar-handle {
  background-color: var(--brand-main) !important; /* Scrollbar thumb color */
  border-radius: 4px; /* Optional: Rounded corners */
}

.flatlist-scroll .os-scrollbar-track {
  background-color: #DBDBDB !important; /* Scrollbar track color */
}

.flatlist-item__scroll {
  display: flex;
  gap: 20px;
}

/* Item Styling */
.flatlist-item {
  display: inline-block;
  width: 80%;
  flex-shrink: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

@media(min-width: 768px) {
  .flatlist-item {
    width: 60%;
  }
}

@media(min-width: 1024px) {
  .flatlist-item {
    width: 40%;
  }
}

.flatlist-item__image img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #eee;
}

.flatlist-item__content {
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.flatlist-item__link {
  flex-grow: 1;
}

.flatlist-item__title {
  font-weight: 600;
  font-size: 23.04px;
  line-height: 28px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.flatlist-item__description {
  color: #333333;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
}

@media(min-width: 768px) {
  .rane-md-col-2 { width: calc(50% - var(--col-gap)); }
  .rane-md-col-3 { width: calc(33.333% - var(--col-gap));}
  .rane-md-col-4 { width: calc(25% - var(--col-gap)); }
  .rane-md-col-5 { width: calc(20% - var(--col-gap)); }
  .rane-md-col-6 { width: calc(16.667% - var(--col-gap)); }
  .rane-md-col-7 { width: calc(14.286% - var(--col-gap)); }
  .rane-md-col-8 { width: calc(12.5% - var(--col-gap)); }
  .rane-md-col-narrow { width: calc(35% - var(--col-gap)); }
  .rane-md-col-wide { width: calc(65% - var(--col-gap)); }
  .rane-md-col-supernarrow { width: calc(25% - var(--col-gap)); }
  .rane-md-col-superwide { width: calc(75% - var(--col-gap)); }
}

@media(min-width: 1024px) {
  :root {
    --col-gap: 15px;
  }

  .rane-lg-col-2 { width: calc(50% - var(--col-gap)); }
  .rane-lg-col-3 { width: calc(33.333% - var(--col-gap));}
  .rane-lg-col-4 { width: calc(25% - var(--col-gap)); }
  .rane-lg-col-5 { width: calc(20% - var(--col-gap)); }
  .rane-lg-col-6 { width: calc(16.667% - var(--col-gap)); }
  .rane-lg-col-7 { width: calc(14.286% - var(--col-gap)); }
  .rane-lg-col-8 { width: calc(12.5% - var(--col-gap)); }
  .rane-lg-col-narrow { width: calc(35% - var(--col-gap)); }
  .rane-lg-col-wide { width: calc(65% - var(--col-gap)); }
  .rane-lg-col-supernarrow { width: calc(25% - var(--col-gap)); }
  .rane-lg-col-superwide { width: calc(75% - var(--col-gap)); }

  .rane-padding {
    padding: 50px 0px;
  }

  .rane-lg-padding {
    padding: 100px 0;
  }

  .rane-heading {
    font-weight: 700;
    font-size: 32px;
  }

  .rane-lg-heading {
    font-size: 3.5rem;
    line-height: 1.2; 
  }

  .rane-lg-lead {
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
  }

  .stdmargin {
    margin-bottom: 25px;
  }

  .rane-absolute-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 45%;
  }

  .widget-title,
  .rte .front-features h2,
  .rte .widget-title {
    font-size: 27.65px;
  }
}

.rane-builder-row-wrapper .section_title .rane-heading::after {
  margin: 10px auto 0;
}

/* Card Entry */
.card-entry {
  --card-radius: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed) ease-in-out;
  overflow: hidden;
}

.card-entry:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.card-entry__cover {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.card-entry__cover > a {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.card-entry__cover .post-image,
.card-entry__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  transition: transform var(--transition-speed) ease-in-out;
}

.card-entry:hover .card-entry__cover .post-image,
.card-entry:hover .card-entry__cover img {
  transform: scale(1);
}

.card-entry__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background-color: white;
  flex-grow: 1;
}

.card-entry__title {
  font-size: 18px;
  font-weight: 700;
}

.card-entry__title a {
  color: var(--text-color);
  font-weight: 600;
  font-size: 23.04px;
  line-height: 28px;
}

.card-entry__excerpt {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.brochure-card,
.related-brochure-item .card-entry {
  height: 100%;
}

@media(min-width: 1248px) {
  :root {
    --col-gap: 25px;
  }

  .rane-xl-col-2 { width: calc(50% - var(--col-gap)); }
  .rane-xl-col-3 { width: calc(33.333% - var(--col-gap));}
  .rane-xl-col-4 { width: calc(25% - var(--col-gap)); }
  .rane-xl-col-5 { width: calc(20% - var(--col-gap)); }
  .rane-xl-col-6 { width: calc(16.667% - var(--col-gap)); }
  .rane-xl-col-7 { width: calc(14.286% - var(--col-gap)); }
  .rane-xl-col-8 { width: calc(12.5% - var(--col-gap)); } 
  .rane-xl-col-narrow { width: calc(35% - var(--col-gap)); }
  .rane-xl-col-wide { width: calc(65% - var(--col-gap)); }
  .rane-xl-col-supernarrow { width: calc(25% - var(--col-gap)); }
  .rane-xl-col-superwide { width: calc(75% - var(--col-gap)); }
}

body {
  width: 100%;
  overflow-x: hidden;
}

.main-banner {
  height: auto;
  min-height: 250px;
  padding: 100px 0 50px;
}

/* Header area */
.site-header {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 99;
}

body.fixed-header .site-header {
  position: fixed;
}

body.admin-bar .site-header {
  top: 32px;
}

body.admin-bar.fixed-header .site-header {
  top: 0;
}

.main-header {
  transition: all var(--transition-speed) ease-in-out;
  background-color: transparent;
}

body.fixed-header .main-header {
  background-color: var(--brand-main-hover);
}

.main-header .main-header__row {
  gap: 20px;
  align-items: center;
}

@media (min-width: 768px) {
  body.admin-bar.fixed-header .site-header {
    top: 32px;
  }

  .home-link__logo {
    max-width: 160px;
  }
}

.main-header__item,
.main-header__item a {
  font-size: 14px;
  color: var(--brand-main);
  font-weight: 600;
  text-align: right;
}

.main-header__item--tel,
.main-header__item--tel a {
  font-size: 16px;
  font-weight: 900;
}

.main-header__cta-btn {
  display: inline-block;
  background-color: var(--brand-main);
  color: white !important;
  padding: 5px 20px;
  border-radius: 5px 5px 0px 0px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

@media (min-width: 768px) {
  .main-header__item,
  .main-header__item a {
    font-size: 19.2px;
    line-height: 24px;
    text-wrap: nowrap;
  }

  .main-header__item--tel,
  .main-header__item--tel a {
    font-size: 33.18px;
    line-height: 40px;
  }
  
  .main-header__cta-btn {
    padding: 10px 30px;
    font-size: 16px;
  }
}

.main-header-menu-cont .main-header__row {
  align-items: flex-end;
}

@media (min-width: 1024px) {
  .main-banner {
    min-height: 400px;
    padding: 150px 0 50px;
  }
}

/* ===== STANDARD DROPDOWN MENU STYLES ===== */

.main-browse-nav {
  position: relative;
  gap: 0;
  align-items: center;
}

.main-browse-nav > li {
  margin: 0;
  margin: 5px 0;
}

.main-browse-nav > li:last-of-type {
  border-right: none;
}

.main-browse-nav > li > a {
  display: block;
  padding: 5px 25px;
}

.main-browse-nav > li:first-of-type > a {
  padding-left: 0;
}

/* FontAwesome Icon for Parent Menu Items */
.main-browse-nav li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

/* Icon Styles */
.main-browse-nav li.menu-item-has-children > a::after {
  content: "\f078"; /* FontAwesome chevron-down */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  transition: transform var(--transition-speed) ease-in-out;
}

.main-browse-nav  > li.menu-item .sub-menu li.menu-item-has-children > a {
  justify-content: space-between;
}

.main-browse-nav  > li.menu-item:not(.mega-menu) .sub-menu li.menu-item-has-children > a::after {
  content: "\f054"; /* FontAwesome chevron-right */
}

.main-browse-nav > li.menu-item:not(.mega-menu) .sub-menu {
  display: block !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0;
  opacity: 0;
  height: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition-speed) ease-in-out, height var(--transition-speed) ease-in-out, transform var(--transition-speed) ease-in-out;
  z-index: 102;
}

.main-browse-nav > li.menu-item:not(.mega-menu) .sub-menu > li.menu-item {
  margin: 0;
  padding: 0;
  position: relative;
}

.main-browse-nav > li.menu-item:not(.mega-menu) .sub-menu > li.menu-item a {
  padding: 8px 20px;
}

/* Reveal Dropdown Menu */
.main-browse-nav > li.menu-item:not(.mega-menu):hover > .sub-menu,
.main-browse-nav > li.menu-item:not(.mega-menu) .sub-menu > li.menu-item:hover > .sub-menu {
  opacity: 1;
  height: auto;
  visibility: visible;
  padding: 0;
  transform: translateY(0);
}

.main-browse-nav > li.menu-item:not(.mega-menu) .sub-menu > li.menu-item > .sub-menu {
  width: 100%;
  left: 100%;
  height: 100%;
  top: 0;
}

/* Mega Menu Container Hover to Reveal Sub-Menu */

.main-browse-nav > .mega-menu {
  position: unset;
}

.main-browse-nav > .mega-menu > .sub-menu {
  display: flex !important;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 0px 0px 16px 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  gap: 20px;
  width: 100%;
  opacity: 0;
  height: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition-speed) ease-in-out, height var(--transition-speed) ease-in-out, transform var(--transition-speed) ease-in-out;
  z-index: 102;
}

.main-browse-nav > .mega-menu:hover > .sub-menu {
  opacity: 1; 
  height: auto;
  visibility: visible;
  padding: 20px;
  transform: translateY(0);
}

/* Individual Mega Menu Item Styles */
.main-browse-nav > .mega-menu > .sub-menu > li.menu-item {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}

/* Main Link Styles */
.main-browse-nav > .mega-menu > .sub-menu > li.menu-item a {
  padding: 4px 0;
  margin: 0;
  background-color: transparent;
  border-bottom: 2px solid var(--brand-main-hover);
  color: var(--brand-main-hover) !important;
  font-weight: 600;
  transition: color var(--transition-speed) ease-in-out, border-color var(--transition-speed) ease-in-out;
}

/* Hover effect on main links */
.main-browse-nav > .mega-menu > .sub-menu > li.menu-item a:hover {
  color: var(--brand-main-hover) !important;
  border-color: var(--brand-main-hover);
}

/* Nested Sub-Menu Container */
.main-browse-nav > .mega-menu > .sub-menu > li.menu-item > .sub-menu {
  display: block;
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.main-browse-nav > .mega-menu > .sub-menu > li.menu-item > .sub-menu > li.menu-item {
  margin: 0;
}

/* Nested Sub-Menu Link Styles */
.main-browse-nav > .mega-menu > .sub-menu > li.menu-item > .sub-menu > li.menu-item a {
  display: block;
  padding: 4px;
  border-bottom: none;
  color: var(--text-color) !important;
  font-weight: 400;
  transition: color var(--transition-speed) ease-in-out;
}

/* Hover effect on nested sub-menu links */
.main-browse-nav > .mega-menu > .sub-menu > li.menu-item > .sub-menu > li.menu-item a:hover,
.main-browse-nav > .mega-menu > .sub-menu > li.menu-item > .sub-menu > li.menu-item.current-menu-item a {
  color: var(--brand-main) !important;
  background-color: #f7f7f7;
  border-radius: 8px;
}

.slideout-menu {
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 40px;
}

.slideout-menu h3 {
  font-size: 0px;
  margin: 0;
  padding: 0;
  border: none;
}

.slideout-menu .slideout-menu-toggle {
  position: relative;
  background: var(--brand-main);
  font-size: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin: 0px auto 40px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slideout-menu .slideout-menu-toggle:hover {
  transform: rotate(90deg);
}

/* Main navigation styles */
.mobile-main-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 5px;
  max-height: calc(100% - 150px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-main, #0073e6) #f9f9f9;
}

/* Fancy scrollbar for WebKit-based browsers */
.mobile-main-nav::-webkit-scrollbar {
  width: 8px;
}

.mobile-main-nav::-webkit-scrollbar-track {
  background: #f9f9f9;
  border-radius: 10px;
}

.mobile-main-nav::-webkit-scrollbar-thumb {
  background-color: var(--brand-main, #0073e6);
  border-radius: 10px;
  border: 2px solid #f9f9f9;
}

.mobile-main-nav::-webkit-scrollbar-thumb:hover {
  background-color: var(--brand-main);
}

.mobile-main-nav > li {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  height: 100%;
}

.slideout-menu ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  padding: 8px 10px;
  font-weight: 600;
  color: var(--text-color, #333);
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.3s ease;
  border-radius: 8px;
  width: 100%;
  background-color: #f9f9f9;
}

.slideout-menu ul li a:hover {
  background: var(--brand-main, #0073e6);
  color: #fff;
}

/* Submenu styles */
.slideout-menu ul .sub-menu {
  list-style: none;
  padding-left: 15px;
  margin: 10px 0;
  max-height: 250px;
  overflow: scroll;
}

.slideout-menu ul .sub-menu li a {
  display: flex;
}

.mobile-main-nav .menu-item-has-children > a {
  position: relative;
}

.mobile-main-nav .menu-item-has-children > a .dropdown-toggle {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  margin-left: 10px;
}

.mobile-main-nav .menu-item-has-children > a .dropdown-toggle:after {
  font-size: 0.8rem;
  margin-left: 5px;
  color: inherit;
}

/* Fontawesome chveron Up when expanded */
.mobile-main-nav .menu-item-has-children > a .dropdown-toggle.sub-menu-on:after {
  content: "\f077";
}

/* Show submenu when active */
.mobile-main-nav .menu-item-has-children.active > .sub-menu {
  display: block;
}

/* Home styles */
.home-hero-main {
  position: relative;
  top: 0;
  padding: 150px 0;
  overflow: hidden;
}

.home-hero-main .content-box__intro {
  position: absolute;
  left: 0;
  top: -10%;
  opacity: .05;
  z-index: 0;
  width: 50%;
}

.home-hero-main .content-box__col--txt {
  position: relative;
  z-index: 2;
  color: white;
  font-weight: 400;
  font-size: 22px;
}

.home-hero-main .content-box__col--txt h1 {
  line-height: 1.2;
  margin: 0 0 20px;
}

.home-hero-main .content-box__intro img {
  width: 60%;
  height: auto;
  object-fit: cover;
  transform: scale(1.2);
  transition: transform var(--transition-speed) ease-in-out;
}

.home-hero-main .content-box__col--img img,
.home-hero-main .content-box__col--img:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .home-hero-main .content-box__col--txt h1 {
    font-weight: 800;
    font-size: 80px;
    line-height: 90px;
  }

  .home-hero-main .content-box__col--txt .rte {
    padding-right: 60px;
  }

  .home-hero-main .content-box__col--img img,
  .home-hero-main .content-box__col--img:after {
    width: 50%;
  }
}

.home-hero-main .content-box__col--img:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
}

.home-front-features .content-box__body,
.home-front-features .rte {
  padding: 0;
  margin: 0;
}

.home-front-features .content-box__hdr {
  display: none;
}

.spiral-section {
  padding: 50px 0;
  overflow: hidden;
}

.spiral-section .content-box__content {
  align-items: center;
}

.spiral-section .content-box__col--txt {
  position: relative;
  z-index: 2;
}

.spiral-section .content-box__col--txt img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.2;
  z-index: -1;
}

@media (min-width: 1024px) {
  .spiral-section .content-box__content {
    justify-content: space-between;
    --col-gap: 60px;
  }
  
  .spiral-section .content-box__col--txt {
    width: 40%;
  }
  
  .spiral-section .content-box__col--img {
    width: calc(60% - var(--col-gap));
  }
}

.home-bottom-cta {
  background-repeat: no-repeat;
  background-position: center center;
}

.home-bottom-cta::before {
  opacity: .7;
}

.home-bottom-cta .container {
  max-width: 538px;
  text-align: center;
}

.home-bottom-cta .container .rane-heading {
  color: white;
}

.front-features-list li span {
  font-weight: 600;
  font-size: 18px;
}

/* .banner__image img {
  border-radius: 8px;
} */

/* About Page */

.about-image-section .content-box__col--img {
  height: 450px;
  width: 100%;
  overflow: hidden;
}

.about-image-section .content-box__col--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-products-section {
  padding: 100px 0;
  background-position: center center;
  background-repeat: no-repeat;
}

.about-products-section .rane-heading {
  color: white;
}

@media (min-width: 1024px) {
  .about-image-section .content-box__col--img {
    width: 50%;
  }
}

/* Testimonials Slider */
.rane-testimonials {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 50px;
  overflow: hidden;
}

.rane-testimonials.slick-slider .slick-track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  cursor: grab;
}

.rane-testimonials__item-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: 100%;
  text-align: center;
}

.testimonial-item__title,
.testimonial-item__content {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.testimonial-item__title {
  font-weight: 300;
}

.testimonial-item__content * {
  margin: 0;
  padding: 0;
  display: inline;
}

.testimonial-item__rating {
  display: flex;
  gap: 10px;
  margin: 20px auto;
}

.testimonial-item__rating .dashicons {
  font-size: 25px;
  color: var(--brand-main);
}

.rane-testimonials .slick-prev,
.rane-testimonials .slick-next {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #191919;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 2;
}

.rane-testimonials .slick-prev::before,
.rane-testimonials .slick-next::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--brand-main);
}

.rane-testimonials .slick-prev {
  left: 0;
}
.rane-testimonials .slick-next {
  right: 0;
}

/* Accordion FAQs Styling */
.accordion-faqs {
  margin: 0 auto;
  overflow: hidden;
}

.accordion-faq {
  border-bottom: 1px solid #ddd;
}

.accordion-faq:last-child {
  border-bottom: none;
}

.accordion-faq__question {
  width: 100%;
  padding: 15px 20px;
  margin: 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 25.2px;
}

.accordion-faq__icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.accordion-faq__answer {
  padding: 0 20px;
  font-size: 16px;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-faq.open .accordion-faq__answer {
  max-height: 200px; /* Adjust based on content */
  padding: 15px 20px;
}

.accordion-faq.open .accordion-faq__icon {
  transform: rotate(180deg);
}

/* Gallery Flatlist Styling */
.gallery-flatlist {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.gallery-flatlist__stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.gallery-flatlist__stack:not(.gallery-flatlist__stack--multiple) {
  flex-direction: row; /* Default to row for single image stacks */
}

.gallery-flatlist__item {
  flex-grow: 1;
  overflow: hidden;
  display: flex;
}

.gallery-flatlist__item a {
  display: block;
  min-width: 300px;
}

.gallery-flatlist__stack--multiple .gallery-flatlist__item a {
  height: 210px; /* Set a fixed height for the stack */
  width: auto;
}

.gallery-flatlist__item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures full coverage */
}

.gallery-grid .gallery-flatlist__item a {
  min-width: 300px;
  width: 100%;
}

/* Product Specifications */

.product-specifications__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

@media (min-width: 1024px) {
  .product-specifications__content {
    width: calc(50% - var(--col-gap));
  }
}

.specification-item {
  background: #EFEFEF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.specification-item__title {
  position: relative;
  background-color: #FAFAFA;
  font-weight: 500;
  font-size: 16px;
  padding: 10px;
  margin: 0;
  cursor: pointer;
}

.specification-item__title::after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  position: absolute;
  background-color: var(--brand-main);
  width: 60px;
  height: 100%;
  top: 0;
  right: 0;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.specification-item:not(.active) .specification-item__title::after {
  content: "\f078";
}

.specification-item:not(.active) .specification-item__content {
  display: none;
}

.specification-item .specification-item__content {
  padding: 16px;
  font-size: 16px;
  line-height: 24px;
}

.specification-item--rptr_dimension .rptr_dimension-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Product Enquiry Form */
.section-product-enquiry {
  position: relative;
  z-index: 1;
}

.section-product-enquiry .product-enquiry__form .frm_form_title {
  font-weight: 600;
  font-size: 28px;
  margin: 0 0 20px;
}

.section-product-enquiry .product-enquiry__form .with_frm_style .frm_primary_label {
  font-weight: 400;
  font-size: 16px;
}

.section-product-enquiry .product-enquiry__form .with_frm_style input,
.section-product-enquiry .product-enquiry__form .with_frm_style select,
.section-product-enquiry .product-enquiry__form .with_frm_style textarea {
  border-radius: 0px;
  padding: 10px 20px;
  border: none;
  box-shadow: 2px 4px 12px 0px rgba(0, 0, 0, 0.1);
}

.section-product-enquiry .product-enquiry__form .frm_style_formidable-style.with_frm_style .frm_submit button {
  background-color: var(--brand-sec-hover);
  color: white;
  padding: 10px 20px;
  border-radius: 0px;
  border: none;
  box-shadow: none;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.section-product-enquiry .product-enquiry__form .frm_style_formidable-style.with_frm_style .frm_submit button:hover {
  background-color: var(--brand-sec);
}

@media (min-width: 1024px) {
  .section-product-enquiry .product-enquiry__form {
    padding-left: 60px;
  }
  
  .section-product-enquiry .product-enquiry__form::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--brand-main-hover);
    z-index: -1;
  }

  .section-product-enquiry .product-enquiry__form .frm_form_title,
  .section-product-enquiry .product-enquiry__form .with_frm_style .frm_primary_label {
    color: white;
  }
}
/* Pagination */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.pagination a, .pagination span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: all 0.3s ease;
}

.pagination a:hover,
.pagination .current {
  background-color: var(--brand-main);
  color: white;
  border-color: var(--brand-main);
}

.pagination .current {
  pointer-events: none;
}

.pagination .dots {
  background: none;
  border: none;
  color: #666;
  font-weight: bold;
}

.pagination .prev, .pagination .next {
  font-size: 14px;
}

.pagination .prev:hover, .pagination .next:hover {
  background-color: var(--brand-main);
  color: var(--brand-main-hover);
}

.read-more-link:visited,
.read-more-link {
  display: inline-block;
  color: var(--brand-main-hover);
  font-weight: 500;
  text-decoration: none;
  transition:all 0.3s ease, color 0.3s ease;
}

.read-more-link:hover,
.read-more-link:active,
.read-more-link:focus {
  color: var(--brand-main);
  outline: none;
}

.post-category-switch {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-weight: 500;
}

.post-category-switch select {
  background-color: rgb(255, 255, 255);
  border-radius: 0px;
  box-shadow: rgb(204, 204, 204) 0px 0px 0px 1px inset;
  padding: 8px 20px;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  height: 54px;
  border: none;
  outline: 0px !important;
}

/* Blog Header */

.page-row-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-bg-overlay.rane-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.rane-bg-image-overlay::before {
  z-index: 1;
  background-color: rgba(0, 0, 0, .6);
  opacity: 1;
}

.cat-links a {
  display: inline-block;
  padding: 2px 10px;
  background-color: var(--brand-main);
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.cat-links a:hover {
  background-color: var(--brand-main-hover);
}

.page-row-hero .main-banner__entry-time {
  display: block;
  margin-bottom: 10px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  transition: filter 1s ease; /* Smooth transition */
}

.map-container iframe:hover {
  filter: grayscale(0%); /* Remove grayscale on hover */
  transition: filter 1s ease; /* Smooth transition */
}

.map-container .map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1); /* Semi-transparent overlay */
  pointer-events: none; /* Allow interaction with the map */
}

/* Footer styles */
.footer-top-bar {
  padding: 20px 0;
  text-align: center;
}

.footer-top-bar_row {
  justify-content: center;
  gap: 15px;
}

.footer-top-bar__content {
  font-weight: 600;
  font-size: 18px;
  color: white;
}

@media (min-width: 768px) {

  .footer-top-bar__content {
    text-align: left;
    width: 80%;
  }
}

.site-footer__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
}

.footer-nav-wrap ul li {
  margin: 0;
  padding: 0;
}

.footer-nav-wrap ul li a {
  display: block;
  padding: 0 0 10px;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  border: none;
}

.footer-nav-wrap ul li a:hover {
  font-weight: 400;
}

/* Homepage Half Slider */

#slideshow {
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0;
  top: 0;
  z-index: 2;
}

.fp-slideshow__slide {
  height: 854px;
}

@media (min-width: 270px) {

  .fp-slideshow__slide {
    height: 801px;
  }
}

@media (min-width: 291px) {

  .fp-slideshow__slide {
    height: 762px;
  }
}

@media (min-width: 383px) {

  .fp-slideshow__slide {
    height: 724px;
  }
}

@media (min-width: 530px) {

  .fp-slideshow__slide {
    height: 717px;
  }
}

@media (min-width: 574px) {

  .fp-slideshow__slide {
    height: 632px;
  }
}

/* @media (min-width: 783px) {

  .fp-slideshow__slide {
    height: 632px;
  }
} */


@media (min-width: 1024px) {
  #slideshow {
    width: 50%;
  }
  .fp-slideshow__slide {
    height: 909px;
  }
}

@media (min-width: 1172px) {
  .fp-slideshow__slide {
    height: 819px;
  }
}

@media (min-width: 1280px) {
  .fp-slideshow__slide {
    height: 835px;
  }
}

@media (min-width: 1335px) {
  .fp-slideshow__slide {
    height: 797px;
  }
}

.rane-lg-col-2 img {
  position: relative;
  z-index: 2;
}