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

/**
 * Edit, delete or add as needed
 */
:root {
  --brand-main: #18473E;
  --brand-main-hover: #132C28;
  --brand-sec: #AE2727;
  --brand-sec-hover: #610808;
  --brand-grey: #222121;
  --off-grey: #FAFAFA;
  --off-white: #F2F2F2;
  
}


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

html {
  scroll-behavior: smooth;
}


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

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

h1, h2, h3 , h4, h5 {
  font-family: 'Playfair Display', serif; /* Change to correct font */
}

.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: 2rem;
}

.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: 210px;
  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;
  }
}


/* ==================== */
/* 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-grey);
  padding: 6px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

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

.top-bar__cta-btn {
  display: none;
  color: white !important;
  font-size: 14px;
  text-decoration: none !important;
  background-color: var(--brand-main);
  padding: 8px 32px;
  border-radius: 50px;
  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;
  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 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

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

/* Basic dropdown style for .slideout-menu */
.slideout-menu {
  display: none; /* hidden by default, toggled with JS */
  background-color: var(--brand-main);
  width: 100%;
  position: relative; /* no longer fixed or offscreen */
  z-index: 99;
  padding-bottom: 30px;
}

.slideout-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.slideout-menu li {
  position: relative;
  text-align: center;
}

.slideout-menu li a {
  display: block;
  padding: 12px;
  color: white;
  text-decoration: none;
}

/* Submenu dropdown toggle button */
.dropdown-toggle {
  background: transparent;
  border: none;
  font-size: 1em;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.dropdown-toggle:after {
  font-family: "FontAwesome";
  content: "\f078"; /* down arrow */
}

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

.slideout-menu .sub-menu {
  display: none;
  background-color: #2b673f;
}

.slideout-menu .sub-menu li a {
  padding-left: 20px;
}
.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 li.site-btn-header {
  max-width: 50%;
  margin: auto;
  padding: 0 20px;
}
/* ==================== */
/* Main Header
/* ==================== */
.site-header {
  position: absolute;
  width: 100%;
}

.main-header {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0.5rem 0;
  position: relative;
  z-index: 1;
}

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

.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;  
  align-items: center;
}

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

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

@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: 1280px){

  .fp-slideshow__slide {
    height: 750px;
  }

  .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-grey);
}

.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;
  font-size: 16px
}

/* .site-footer__title::after {
  content: "";
  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: 32px; */
  position: relative;
  margin-bottom: 16px;
}

/* .site-footer__addr::before {
  content: "\f3c5"; 
  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;
  color: var(--brand-sec);
}

.site-footer__link-wrap--email::before {
  content: "\f0e0";
  color: var(--brand-sec);
}

.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: #171515;
  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;
  align-items: center;
  text-align: center;
}

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

@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 */
  
  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;
  height: 200px;
}

.main-banner__title {
  margin: 0;
  color: white;
  position: absolute;
  height: 100%;
  left: 0;
  top: 45%;
}

@media (min-width: 768px){ 

  .main-banner__title {
    top: 55%;
  }

}

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

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


/* ==================== */
/* 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...
/* ============================================================ */

.section_title {
  font-size: 32px;
  margin: 0;
}

.section_title_center {
  text-align: center;
}

.section_title_white {
  color: white;
}

/* ==================== */
/* animations
/* ==================== */

.grow-in-scroll-animation {
  scale: .7; 
  opacity: 0;
  animation: grow-in linear forwards;
  animation-timeline: view();
  animation-range: entry;
  margin: 15px 0;
  height: 250px;
}

@keyframes grow-in {
  to{scale: 1; opacity: 1;}
}

.fade-in-left-scroll-animation {
  position: relative;
  left: -20%; 
  opacity: 0;
  animation: slide-in linear forwards;
  animation-timeline: view();
  animation-range: entry;
}

@keyframes slide-in {
  to{left: 0; opacity: 1;}
}

.fade-in-up-scroll-animation-js {
  position: relative;
  bottom: -150px; 
  opacity: 0;
  transition: opacity 1s ease-out, bottom 1s ease-out; /* Smooth transition */
}

/* When in viewport, apply this class */
.fade-in-up-scroll-animation-js.in-view {
  opacity: 1;
  bottom: 0;
}

.fade-in-left-scroll-animation-js {
  position: relative;
  left: -150px; 
  opacity: 0;
  transition: opacity 1s ease-out, left 1s ease-out; /* Smooth transition */
}

/* When in viewport, apply this class */
.fade-in-left-scroll-animation-js.in-view {
  opacity: 1;
  left: 0;
}

.fade-in-up-scroll-animation {
  position: relative;
  bottom: -230px; 
  opacity: 0;
  animation: slide-in-up ease-out forwards;
  animation-timeline: view();
  animation-range: entry 30% cover 40%; /* Adjust animation speed */
}

/* Keyframes remain the same */
@keyframes slide-in-up {
  to {
    bottom: 0;
    opacity: 1;
  }
}

/* Staggered delays for a cascading effect */
@media (min-width: 1024px) {
  .fade-in-up-scroll-animation:nth-child(1) {
    bottom: -230px; 
    animation-delay: 0.1s;
  }

  .fade-in-up-scroll-animation:nth-child(2) {
    bottom: -260px; 
    animation-delay: 0.2s;
  }

  .fade-in-up-scroll-animation:nth-child(3) {
    bottom: -290px;
    animation-delay: 0.3s;
  }
}


.fade-in-scroll-animation { 
  opacity: 0;
  animation: fade-in linear forwards;
  animation-timeline: view();
  animation-range: entry;
}

@keyframes fade-in {
  to{opacity: 1;}
}

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

.site-btn{
  position: relative;
  text-transform: none;
  border-radius: 50px;
}

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

.site-btn-main span, .site-btn-sec span, .site-btn-blk span{
  position: relative;
  z-index: 2;
  margin: 0!important;
}

.site-btn-main:hover{
  position: relative;
  background: var(--brand-main);
  color: white!important;
  transition: .5s;
}

.site-btn-main::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--brand-main-hover);
  transition: 0.5s;
  height: 100%;
  z-index: 1;
  border-radius: 50px;
}

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

.site-btn-sec:hover{
  position: relative;
  background: var(--brand-sec);
  transition: .5s;
}

.site-btn-sec::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--brand-sec-hover);
  transition: 0.5s;
  height: 100%;
  z-index: 1;
  border-radius: 50px;
}

.site-btn-outline{
  background: transparent;
  border: 1px solid white;
  transition: .2s;
}

.site-btn-outline:hover{
  position: relative;
  background: var(--brand-sec);
  border: 1px solid var(--brand-sec);
  transition: .5s;
  color: var(--brand-main)!important;
}

.site-btn-outline::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--brand-sec);
  transition: 0.5s;
  height: 100%;
  z-index: -1;
  border-radius: 50px;
}

.site-btn-blk{
  background-color: black;
  color: white!important;
}

.site-btn-blk:hover{
  position: relative;
  background: var(--brand-sec);
  transition: .5s;
}

.site-btn-blk::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--brand-sec-hover);
  transition: 0.5s;
  height: 100%;
  z-index: 1;
}

.site-btn-outline:hover::after, .site-btn-main:hover::after, .site-btn-sec:hover::after, .site-btn-blk:hover::after{
  width: 100%;
}

.site-btn-center {
  text-align: center;
}


.site-btn-header {
  border-radius: 50px;
  background: var(--brand-sec);
  padding: 10px 20px;
}

.site-btn-header:hover {
  background: var(--brand-sec-hover);
}

/* ==================== */
/* backgrounds
/* ==================== */

.bg-main {
  background-color: var(--brand-main)!important;
}

.bg-sec {
  background-color: var(--brand-sec)!important;
}

.bg-ter {
  background-color: var(--brand-ter)!important;
}

.bg-off-grey {
  background-color: var(--off-grey)!important;
}

.bg-off-white {
  background-color: var(--off-white)!important;
}

.bg-gradient {
  background: linear-gradient(to bottom, var(--brand-sec) 0%, var(--brand-main) 100%)!important;
}

.bg-hard-gradient{
  background: linear-gradient(to bottom, var(--brand-main) 0%, var(--brand-main) 20%, #f1f1f1 20%)!important;
}

@media (min-width: 1024px){
  .bg-hard-gradient{
    background: linear-gradient(90deg, var(--brand-main) 0%, var(--brand-main) 40%, #f1f1f1 40%)!important;
  }
}

.bg-dark {
  background-color: #222121;
}

.bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
}

.bg-vctr {
  background-size: cover;
  background-position: right 50% top 30px;
  background-repeat: no-repeat;
  min-height: 300px;
}

.bg-icon {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-icon::before {
  content: "";
  width: 170px;
  height: 280px;
  position: absolute;
  left: 10%;
  bottom: -20px;
  background-image: url('/wp-content/uploads/2025/02/logo-icn.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.bg-img-fixed {
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
}

/* .hero_section{
  position: relative;
  height: 80vh;
} */

.hero_wrapper {
  /* position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-40%); 
  width: 100%;
  max-width: 720px;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.hero_content {
  color: white;
  text-align: center;
  font-size: 16px;
  max-width: 720px;
  font-weight: 400;
}

.hero_title {
  color: white;
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.hero_content .site-btn-sec {
  font-size: 16px;
  font-weight: 500;
}

.hero_logo {
  max-width: 400px;
  margin-top: 30px;
}

@media (min-width: 768px) {

  .hero_title {
    font-size: 32px;
  }

  .hero_wrapper {
    height: 900px;
  }

}

@media (min-width: 1024px) {
  .hero_content {
    font-size: 24px;
  }

  .hero_content .site-btn-sec {
    font-size: 20px;
  }

  .hero_logo {
    max-width: 800px;
  }
}

@media (min-width: 1280px) {

  .hero_title {
    font-size: 60px;
  }
}



/* ==================== */
/* Home USP Bar
/* ==================== */


.home_usp_wrapper {
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  max-width: 330px;
  margin: auto;
}

.home_usp_item img {
  width: 100%;
  max-width: 30px;
  margin-right: 10px;
}

.home_usp_item {
  display: flex;
  justify-content: flex-start;
  color: white;
  align-items: center;
  font-size: 14px;
  margin: 10px 0;
}

@media (min-width: 1024px) {
  .home_usp_wrapper {
    justify-content: center;
    padding: 10px 0;
    max-width: unset;
  }

  .home_usp_item {
    justify-content: center;
  }

}

@media (min-width: 1280px) {

  .home_usp_item {
    font-size: 16px;
  }

}

/* ==================== */
/* Home Services
/* ==================== */

.service_boxes {
  position: relative;
  overflow: hidden;
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  min-height: 400px;
}

.service_boxes h2{
  color: white;
  font-size: 22px;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
}

.service_overlay {
  position: absolute;
  opacity: 1;
  padding: 10px 20px;
  top: 100%; 
  z-index: 2;
  height: 100%;
  width: 100%;
  transition: all 1s ease-in-out; 
  background-color: var(--brand-main);
  border-radius: 30px;
}

/* Trigger the animation on hover */
.service_boxes:hover .service_overlay {
  top: 0; /* Slide into view */
}

/* Trigger the slide-out animation on hover off */
.service_boxes:not(:hover) .service_overlay {
  top: 100%; /* Slide out of view */
}

.service_overlay_content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  color: white;
  margin-top: 0;
  padding-top: 0;
}

.service_overlay_content h3{
  margin-top: 0;
  font-size: 24px!important;
}

.service_overlay_content .site-btn {
  align-self: flex-start;
}


/* ==================== */
/* Home About
/* ==================== */

.about-img {
  border-radius: 20px;
  min-height: 360px;
}

.home_about_text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home_about_text::before {
  content: '';
  position: absolute;
  background-image: url('/wp-content/uploads/2025/03/mev-hooves-white-1.png');
  right: 0;
  bottom: -20%;
  opacity: 0.05;
  width: 100%;
  height: 370px;
  background-repeat: no-repeat;
}


/* ==================== */
/* Home Emergency 
/* ==================== */

.emergency_wrap {
  position: relative;  
  overflow: hidden;
}

.emergency_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #262626;
  text-align: center;
  padding: 30px;
  position: relative;
  z-index: 2;
}

.emergency_txt_content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 720px;
  color: white;
}

.emergency_txt_content h2 {
  font-size: 32px!important;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 500;
}

.emergency_txt_content p {
  margin-bottom: 0;
}

.emergency_txt_content .site-btn {
  align-self: center;
}

.emergency_txt {
  height: 100%;
  min-height: 500px;
  position: relative;
}

.emergency_price {
  font-size: 40px!important;
  font-weight: 600!important;
}

.emergency_img {
  position: relative;
  z-index: 2;
  min-height: 700px;
}

.emergency_blurb {
  text-align: center;
  margin: 15px 0;
}

.emergency_blurb h2 {
  font-size: 22px!important;
}

.emergency_blurb_text {
  margin: 0 auto;
  max-width: 190px;
}

.callout_list {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.callout_list li {
  margin-bottom: 10px;
}

@media (min-width: 1024px) {

  .emergency_txt {
    position: relative;
    text-align: left;
    transform: unset;
    margin: auto;
  }

  .emergency_txt_content {
    max-width: 600px;
    margin: auto;
  }


  .emergency_txt_content .site-btn {
    align-self: flex-start;
  }

  .emergency_img::after {
    content: '';
    opacity: 0;
  }
  
  .callout_list {
    margin-left: 30px;
    padding-left: unset;
    list-style-type: disc;
  }
}


/* ==================== */
/* Home Testimonials
/* ==================== */

#testimonial-section .slick-track {
  display: flex !important;
}

#testimonial-section .slick-slide {
  height: auto !important;
  float: none; /* Ensure slides are not floating */
}

#testimonial-section .slick-center {
  background: white;
  color: black;
  box-shadow: 2px 4px 12px #00000014;
}

.testimonial-slider__content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
}

.testimonial-slider__slide {
  padding: 4rem 1rem 1rem 1rem;
  transition: 0.3s;
  background: white;
  color: black;
  position: relative;
  margin: 2rem 1rem 0 1rem;
  height: 100%;
  box-shadow: 2px 4px 12px #00000014;
  border-radius: 20px;
}

.testimonial-slider__slide::before {
  content: "\f10d";
  font-family: "FontAwesome";
  font-weight: 900;
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 24px;
}


@media (min-width: 1280px){
  .testimonial-slider__slide {
    padding: 2rem;
    padding-top: 3rem;
    background: var(--brand-main);
    color: white;
  }

  .testimonial-slider__slide::before {
    font-size: 34px;
    left: 2rem;
  }

  .testimonial-slider__text {
    line-height: 2;
  }

}


/* ==================== */
/* Home Gallery
/* ==================== */

.home_gallery_slide {
  margin: 0 10px;
}

.home_gallery_slide img {
  box-shadow: 2px 4px 12px #00000014;
  object-fit: cover;
  height: 300px;
  width: 300px;
  border-radius: 20px;
}


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

.ftr_cta_bar {
  border-bottom: 2px solid var(--brand-sec);
}

.ftr_cta_bar_txt {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.ftr_cta_bar_txt h2{
  color: white;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Raleway', serif;
}

.ftr_cta_bar_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  margin-bottom: 1rem;
  width: 100%;
}

.ftr_cta_bar_btn .site-btn-grad-bg-dark span:hover {
  bottom: -6px;
}

@media (min-width: 1024px){

  .ftr_cta_bar_btn{
    margin-bottom: 0;
      width: 16.5%;
  }

  .ftr_cta_bar_txt{
    width: 81.5%;
    
  }

}

.emergency-btn {
  margin-top: 30px;
}

.service_icon_box {
  background: var(--brand-main);
  margin: 10px 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: white;
  text-align: center;
  border-radius: 16px;
}

.service_icon_box img {
  max-height: 100px;
}


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

.banner_content {
  text-align: center;
  color: white;
  max-width: 700px;
  margin: 0 auto;
}

.banner_button {
  margin-top: 30px;
  text-align: center;
}

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

.team_card {
  background-color: #f2f2f2;
  border: 1px solid #cecece;
  margin: 15px 0;
  box-shadow: 2px 4px 12px #00000014;
}

.team_card .col-2-big {
  padding: 30px;
}

.team_card .col-2-big h2, .team_card .col-2-big h3 {
  margin-top: 0;
}

.team_card .col-2-big h2 {
  margin-bottom: 0;
}

.team_card .bg-img {
  background-position: left;
  background-position-x: 25%;
}


@media (min-width:1280px) {

  
  .team_card .bg-img {
    background-position: center;
  }

}
