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

/**
 * Edit, delete or add as needed
 */
:root {
  --brand-main: #F15A29;
  --brand-main-hover: #b84823;
  --brand-sec: #F7941D;
  --brand-sec-hover: rgb(117, 58, 3);
  --off-grey: #d2d2d2;
  --off-white: #F5F5F5;
}


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

html {
  scroll-behavior: smooth;
}


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

body {
  font-family: 'Figtree', 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-padding-btm {
  padding-bottom: 4rem;
}

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

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

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

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

@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: #080402 !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;
  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, .row-rvrse {
  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-5, .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, .col-5 {
    width: 48.5%;
  }

}

@media (min-width: 1024px){

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

  .row-rvrse {
    flex-direction: row-reverse;
  }

  .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%;
  }

  .col-5 {
    width: 18.5%;
  }

}

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

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

.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-sec);
  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-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: white;
  padding: 0.5rem 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
}

.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: var(--brand-main) !important;
}

.main-header .site-btn-header a {
  color: white !important;
}

@media (min-width: 1024px){
  .main-header {
    padding: .75rem 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: .75rem 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: #1D1D1D !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: 16px;
  }
}


/* ==================== */
/* 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: #FAFAFA;
}

.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: var(--brand-main);
  position: relative;
  padding-bottom: 4px;
}


.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: #1E1E1E !important;
  text-decoration: none !important;
}

.footer-nav-wrap ul a:hover {
  border-color: var(--brand-main);
}

.site-footer__addr {
  color: #1E1E1E !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: var(--brand-main);
  position: absolute;
  left: 0;
}

.site-footer__link {
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
  color: #1E1E1E !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: var(--brand-main);
  position: absolute;
  left: 0;
}

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

.social-icons {
  padding: 0 !important;
  margin: 0 !important;
  list-style-type: none !important;
  display: flex;  
  align-items: center;
  justify-content: flex-end;
}

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

.social-icons__item {
  margin-right: 1rem;
  border: 2px solid var(--brand-main);
  border-radius: 20px;
  padding: 5px;
  text-align: center;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.social-icons__item .fa-brands {
  font-size: 20px;
 
}

.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: black;
  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: block;
  text-align: center;
}

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

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

  .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: absolute;
  bottom: 10px
}

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

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

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


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

.page-wrap {
  background-color: white;
  padding: 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: 0 !important;
  margin: 0 !important;
  list-style-type: none !important;
  display: flex;
  gap: 16px;
}

.social-icons__link {
  font-size: 20px;
  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...
/* ============================================================ */

/* ============================= */
/* Global Styles
/* ============================= */

.site_title {
  font-size: 40px;
  font-weight: 800;
  color: #080402 !important;
  margin-top: 0;
}

.site_title_center {
  text-align: center;
  width: 100%;
}

.site_title_white {
  color: white !important;
}

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

.site_sub_title {
  font-size: 24px;
  font-weight: 600;
  color: white;
  max-width: 500px;
}

.site_content {
  font-size: 16px;
  line-height: 1.6;
  color: #1E1E1E;
  margin-top: 30px;
}

.site_content_orange {
  background-color: var(--brand-main) !important;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 10px;
}

.site_content_orange p {
  color: white !important;
  margin: 0!important;
}

.site_content_white {
  color: white !important;
}

.site_content_contained {
  max-width: 650px;
  margin: 0 auto;
}

.site_content_center {
  text-align: center;
}

.site_content ul {
  margin-left: 10px;
  padding-left: 0;
}

.col_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.col_img {
  display: flex;
  justify-content: center;
}

.section-about {
  padding-top: 30px;
}

.section-about ul {
  list-style-type: none;
}

.section-about ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.section-about ul li::before {
  content: '';
  display: block;
  position: absolute;
  background-image: url("/wp-content/uploads/2025/07/square-point.png");
  width: 20px;
  height: 20px;
  left: -10px;
  top: 3px;
}

@media (min-width: 1024px) {
  .section-about .site_title {
    margin-top: -30px;
  }

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

.content_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content_center .site_sub_title {
  max-width: 580px;
}

.site-content-white {
  color: white !important; 
} 

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

h2 p {
  margin: 0;
  padding: 0;
}

/* ==================== */
/* 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;}
}

.animation-pulse {
  opacity: 1;
  animation: pulse 5s linear infinite; /* Added duration for the animation */
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.6; } /* Added intermediate state for a more pronounced effect */
  100% { opacity: 1; }
}

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

.site-btn{
  position: relative;
  text-transform: none;
  border-radius: 16px;
  align-self: flex-start;
}

.site-btn-sml {
  padding: 10px 20px!important;
}

.site-btn-main{
  background-color: var(--brand-main);
  align-self: flex-start;
}

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

.site-btn-sml span {
  font-size: 16px!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: 16px;
}

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

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

.site-btn-sec::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: 16px;
}

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

.site-btn-blk{
  background-color: #3a3a3a;
  color: white!important;
  padding: 10px 20px;
  font-size: 18px;
}

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

.site-btn-blk::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: 16px;
}

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

@media (min-width: 1024px) {
  
  .site-btn-header {
    border-radius: 16px;
    background: var(--brand-sec);
    padding: 10px 20px;
    display: inline-block;
    color: white !important;
    padding: 8px 32px;
    text-decoration: none !important;
  }

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

/* ==================== */
/* 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-dark {
  background-color: #000;
}

.bg-cta {
  background-color: #fafafa!important;
}

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

.bg-img-inner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  height: 100%;
  width: 100%;
  margin: auto;
  border-radius: 16px;
}

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


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

.gradient-bg-blue {
  position: absolute;
  background: radial-gradient(rgba(0,255,241,.2) 0%, rgba(0,0,0,0) 75%);
  width: 800px;
  height: 800px;
  /* top: -400px;
  right: -400px; 
  background-color: white; */
}

.gradient-bg-orange {
  position: absolute;
  background: radial-gradient(rgba(255,130,0,.4) 0%, rgba(0,0,0,0) 75%);
  width: 800px;
  height: 800px;
  /* bottom: -400px;
  left: -400px; 
  background-color: white; */
}

.gradient-bg-top-right {
  top: -400px;
  right: -400px;
}

.gradient-bg-top-left {
  top: -400px;
  left: -400px;
}

.gradient-bg-bottom-right {
  bottom: -400px;
  right: -400px;
}

.gradient-bg-bottom-left {
  bottom: -400px;
  left: -400px;
}

/* ============================= */
/* End Global Styles
/* ============================= */


/* ====================== */
/* Hero
/* ====================== */

.hero_section {
  padding: 0 0 50px 0;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  background-position: center;
  background-size: cover;
  position: relative;
}

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

.hero_title {
  color: white;
  font-size: 32px;
  font-weight: 600;
  max-width: 900px;
  text-align: left;
  line-height: 1.2;
}

.hero_content {
  color: white;
  font-size: 22px;
  max-width: 750px;
  text-align: left;
  margin-bottom: 30px;
}

.usp_box {
  margin-top: 30px;
}

.hero_btn_rgt {
  margin-top: 20px;
}

@media (min-width: 768px) {

.section-usp {
  position: relative;
  top: -100px;
  margin-bottom: -50px;
  z-index: 3;
}
.usp_box {
  margin-top: 0;
}

}

@media (min-width: 1024px) {

.hero_title {
  font-size: 60px;
}

.hero_btn_rgt {
  margin-top: 0;
}

}

.usp_box {
  background-color: white;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 4px 14px #00000014;
  text-align: center;
}

/* ==================== */
/* Home News
/* ==================== */

.home_news_section {
  margin-top: 30px;
}

.home_blog_content {
  max-width: 570px;
}

.home_news_main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.home_news_main.bg-img {
  height: 450px;
  padding: 30px;
  border-radius: 16px;
}

.home_news_date {
  background-color: #874E8A;
  padding: 10px 20px;
  color: white;
  align-self: flex-start;
}

.home_news_main_link {
  text-decoration: none;
  cursor: pointer;
  color: white;
  transition: .2s;
}

.home_news_main_link:hover {  
  color: var(--brand-ter);
  transition: .2s;
}

.home_news_list {
  height: 450px;
  overflow-y: scroll;
  scrollbar-width: auto;
  margin-top: 30px;
}

/* For WebKit browsers (Chrome, Safari) */
.home_news_list::-webkit-scrollbar {
  width: 10px; /* Width of the scrollbar */
}

.home_news_list::-webkit-scrollbar-thumb {
  background-color: var(--brand-main-hover); /* Color of the scrollbar */
  border-radius: 10px; /* Rounded corners for the scrollbar thumb */
}

.home_news_list::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #f2f2f2; /* Background color of the scrollbar track */
}

.home_news_card {
  margin-bottom: 30px;
  width: 95%;
  border-radius: 16px;
  background-color: var(--off-white);
}

.home_news_card_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px;
}

.home_news_card_text_content h2 {
  font-size: 16px;
}

.home_news_card .bg-img {
  min-height: 250px;
  border-radius: 16px 16px 0 0;
}

.home_news_main_text h2 {
  color: white!important;
  font-size: 24px;
  max-width: 270px;
}

.home_news_main_text p {
  color: white!important;
  max-width: 335px;
}

.read-more {
  color: white!important;
  text-decoration: none;
  position: relative;
}

.home_news_card_text_content a {
  color: black!important;
  float: right;
  text-decoration: none;
  position: relative;
  margin-right: 30px;
}

.read-more::after, .home_news_card_text_content a::after  {
    content: '\f061'; 
    font-family: 'Font Awesome 6 Free';
    font-weight: 900; 
    margin-left: 8px;
    position: absolute;
    color: var(--brand-main);
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
}


.read-more:hover::after, .home_news_card_text_content a:hover::after {
  right: -40px;
}

@media (min-width: 1024px) {
  .home_news_list {
    margin-top: 0;
  }

  .home_news_card_text {
    padding: 30px 30px 30px 0;
  }

  .home_news_card .bg-img {
    border-radius: 16px 0 0 16px;
  }
}




.home_service_box {
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 2px 4px 14px #00000014;
  padding: 0;
  margin: 15px 0;
}

.home_service_box_icn {
  padding: 30px;
  width: 100%;
  height: 100%;
  background-color: var(--brand-main);
  border-radius: 16px 16px 0 0;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home_service_box_txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.home_service_box_txt_white {
  background-color: white;
  border-radius: 0 0 16px 16px;
}

.home_service_box_icn img {
  height: 100px;
}

.home_service_box_txt {
  padding: 30px;
  padding-top: 0;
}

@media (min-width: 1024px) {
  .home_service_box {
    margin: 0;
  }
}
/* ==================== */
/* Image Stack
/* ==================== */

.image-stack {
  position: relative;
  min-height: 400px;
  height: 100%;
}


.stack-img {
  position: relative;
  width: 100%;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50px 30px;
  align-items: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 400px;
  margin: 15px 0;
  border-radius: 16px;
}


@media (min-width: 1024px) {

  .stack-img {
    background-size: cover;
    background-repeat: no-repeat;
    min-height: unset;
  }

  .image-stack-1 {
    position: absolute;
    max-width: 350px;
    height: 90%!important;
    top: 0;
    left: 0;
    bottom: 10%;
    border-radius: 16px;
    z-index: 3;
  }

  .image-stack-2 {
    position: absolute;
    width: 350px;
    height: 90%!important;
    top: 10%;
    left: auto;
    right: 0;
    border-radius: 16px;
    z-index: 4;
  }

  .row-rvrse .image-stack-1 {
    position: absolute;
    width: 250px;
    height: 170px!important;
    top: 50px;
    right: 20px;
    left: auto;
    z-index: 3;
  }

  .row-rvrse .image-stack-2 {
    position: absolute;
    width: 450px;
    height: 260px;
    z-index: 2;
    right: 0;
    left: auto;
    top: 100px;
  }

  .row-rvrse .image-stack-3 {
    position: absolute;
    width: 425px;
    height: 380px;
    z-index: 1;
    right: 130px;
    left: auto;
    top: 0;
    
  }

  .row-rvrse .image-stack-1.stack-img:hover {
    position: absolute; 
    right: 20px; 
    top: 50px; 
    transform: scale(1.5) translate(-50px, 30px);
  }


  .row-rvrse .image-stack-2.stack-img:hover {
    position: absolute;
    right: 0;
    top: 100px;
    transform: scale(1.2) translate(-50px, 30px);
  }

  .row-rvrse .image-stack-3.stack-img:hover {
    position: absolute;
    right: 130px;
    top: 0;
    transform: scale(1.2) translate(60px, 30px);
  }

}


.checklist_items {
  margin: 0 !important;
  padding: 0 !important;
  list-style-type: none !important;
  margin-left: 30px;
}

.checklist_items li {
  margin: 10px 0 !important;
  list-style-type: none !important;
}

.checklist_items li::before, .checklist_items_col li::before {
  content: '\f00c'; 
  font-family: 'Font Awesome 6 Free';
  font-weight: 900; 
  margin-right: 10px;
  color: var(--brand-sec);
}

/* ==================== */
/* Important Info Sections (experience)
/* ==================== */

.exp_info_wrap {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.exp_info_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #1e1e1e;
  padding: 30px;
  position: relative;
  z-index: 2;
  font-size: 16px;
}

.exp_info_txt_content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  padding: 50px 20px;
  margin: auto;
}

.exp_info_txt_content ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

.exp_info_txt_content h2 {
  font-size: 32px;
  margin-top: 0;
  margin-bottom: 20px;
}

.exp_info_txt_content p {
  margin-top: 0;
  margin-bottom: 0;
}

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

.exp_info_txt {
  height: 100%;
  position: relative;
}

.exp_info_img {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0;
  background-color: #000;
  padding: 20px;
}

.exp_info_content {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 2;
}

@media (min-width: 1024px) {

  .exp_info_txt_content {
    text-align: left;
    max-width: 570px;
    padding: 50px 0;
  }

  .exp_info_txt_content ul {
    list-style-type: disc;
    margin-left: 0;
    padding-left: 20px;
  }

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

  .exp_info_txt_content {
    margin-right: 50px;
    margin-left: auto;
  }

  .exp_info_txt_content h2 {
    font-size: 40px;
  }
}

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

.details_wrap {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.details_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #1e1e1e;
  padding: 30px;
  position: relative;
  z-index: 2;
  font-size: 16px;
}

.details_txt_content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  padding: 50px 20px;
  margin: auto;
}

.details_txt_content ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

.details_txt_content h2 {
  font-size: 32px;
  margin-top: 0;
  margin-bottom: 20px;
}

.details_txt_content p {
  margin-top: 0;
  margin-bottom: 0;
}

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

.details_txt {
  height: 100%;
  position: relative;
}

.details_img {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0;
}

.details_content {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 2;
}

.checklist_wrapper_2_col {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.checklist_items_col {
  flex: 1;
  list-style: none !important;
  margin: 0;
  padding-left: 0!important;
  margin-left: 0!important;
}

.checklist_items_col li {
  margin: 10px 0!important;
  font-size: 16px;
}

@media (min-width: 1024px) {

  .details_txt_content {
    text-align: left;
    max-width: 650px;
    padding: 50px;
  }

  .details_txt_content ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 20px;
  }

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

  .details_img {
    border-radius: 15px 0 0 15px;
  }


  .details_txt_content h2 {
    font-size: 40px;
  }
}

@media (min-width: 1440px) {
  .details_txt_content {
    margin-right: auto;
    margin-left: 50px;
  }
}


.form_wrap {
  background: rgba(241, 90, 41, 0.7);
  padding: 30px 30px 0 30px;
  position: relative;
  border-radius: 16px;
}


.grey-box {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 16px;
  margin: 15px 0;
  box-shadow: 2px 4px 14px #00000014
}

.testimonial-carousel {
  display: flex;
  align-items: center;
  max-width: 910px;
  margin-bottom: 50px;
}

.testimonial_section .slick-track {
  height: 300px;
  display: flex;
  align-items: center;
}

.testimonial_box_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}

.testimonial_box_name {
  font-size: 14px;
}

.testimonial_box_content .star-rating {
  text-align: left;
  color: var(--brand-main);
  margin-bottom: 20px;
}

.testimonial_box {
  background-color: white;
  padding: 30px;
  height: 100%;
  margin: 0 .75%;
  border-radius: 16px;
}

.testimonial_box_content_txt {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 20px;
}


.testimonial-carousel .slick-prev,  .testimonial-carousel .slick-next {
  top: unset;
  bottom: -60px;
}

.testimonial-carousel .slick-prev {
  left: 30px;
}

.testimonial-carousel .slick-next {
  left: 70px;
}

.slick-prev:before {
  content: "\f053"; /* Font Awesome left arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--brand-sec);
  font-size: 16px;
  border: 1px solid white;
  border-radius: 20px;
  padding: 5px 8px;
}

.slick-next:before {
  content: "\f054"; /* Font Awesome left arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--brand-sec);
  font-size: 16px;
  border: 1px solid white;
  border-radius: 20px;
  padding: 5px 8px;
}



.btns_wrapper {
  position: relative;
  margin-top: 30px;
}

.btns_wrapper .site-btn {
  margin-top: 10px;
}

.contained_cta {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  border-radius: 16px;
  padding: 30px;
}

.contained_cta_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 100%;
}

.contained_cta_content .site_title {
  margin-top: 0;
}

.contained_cta_content .site_content {
  margin-top: 0;
}

@media (min-width: 1024px) {
  .contained_cta_content {
    max-width: 50%;
    margin-left: auto;
    margin-right: 0;
  }
}

.form_wrap .site_title h3 {
  margin-top: 0!important;
  font-size: 32px;
}

.enquiry_content {
  background-color: rgba(255,255,255,0.7);
  border-radius: 16px;
  padding: 30px;
}

.enquiry_content h2 {
  font-size: 32px;
  color: #1E1E1E!important;
}

.ftr-cta {
  padding: 20px 0;
  border-bottom: 2px solid #D9D9D9;
  border-top: 2px solid #D9D9D9;
  display: flex;
}

.ftr-cta .col-left {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 20px;
}

.ftr-cta .site-btn {
  margin-right: 0;
  margin-bottom: 20px!important;
}

.ftr-cta .site-btn-main {
  align-self: center!important;
}

.ftr-cta .social-icons {
  justify-content: center;
}

@media (min-width: 1024px) {
  .ftr-cta .col-left {
    flex-direction: row;
    padding-bottom: 0;
  }

  .ftr-cta .site-btn {
    margin-right: 20px;
    margin-bottom: 0!important;
  }

  .ftr-cta .social-icons {
    justify-content: flex-end;
  }
}

.news_card {
  display: flex!important;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 2px 4px 12px rgba(0,0,0,0.14);
  margin: 15px 0;
  border-radius: 16px;
}

.latest_post--image {
  background-size: cover;
  background-position: center;
  width: 100%;
  flex-shrink: 0;
  border-radius: 16px 16px 0 0;
}

.latest_post--text {
  background-color: var(--off-white);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  border-radius: 0 0 16px 16px;
}

.latest_post--text h2 {
  font-size: 18px;
}

.latest_post--text a {
  color: black;
  text-decoration: none;
}

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

.latest_post--text h2 a {
  color: #121010;
  text-decoration: none;
}

.latest_post--text h2 a:hover {
  color: var(--brand-main);
}

.latest_post--content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.latest_post--btn {
  margin: 0 30px 30px 30px;
}

.news_link {
  margin-top: 20px;
}

.news_link a {
  position: relative;
}

.news_link a::after {
  content: '\f061'; 
  font-family: 'Font Awesome 6 Free';
  font-weight: 900; 
  margin-left: 8px;
  position: absolute;
  color: var(--brand-main);
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;

}

.news_link a:hover::after {
  right: -40px;
}

/********************
 * News Article Page
********************/

.news_text_wrapper {
  padding: 30px;
  color: #1E1E1E;
}

.news-article__image img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.news-article__meta {
  font-size: 14px;
  margin-bottom: 10px;
}

.news-article__meta .news-article__date {
  margin-right: 10px;
}

.news-article__title {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 20px;
}

.news-article__content {
  font-size: 18px;
  line-height: 1.6;
}

.news-article__content img {
  max-width: 100%;
  height: auto;
}

/* ==================== */
/* CTA Boxes
/* ==================== */

.cta_col {
  margin: 15px 0
}

.cta_col {
  color: white;
}

.cta_col .bg-img-rounded {
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  align-items: flex-start!important;
  text-align: left;
}

.cta_box_content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

}

.cta_box_content h3 {
  color: white;
  margin-bottom: 0;
  font-size: 28px;
  max-width: 468px;
}


.cta_box_content p {
  margin-bottom: 0!important;
}

.cta_box_content .site-btn {
  margin-top: 20px;
  align-self: flex-start;
}


.exp_info_wrap .details_txt_content p {
  margin-bottom: 10px!important;
}

.hero_btns {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .hero_btns {
    flex-direction: row;
    gap: 10px;
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  background: #25D366;
  color: #fff!important;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 9999;
}
.whatsapp-float:hover {
  filter: brightness(1.1);
}

.accred_img {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

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

.hero_accred_logos {
  max-width: 500px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}

.hero_accred_logos img{
  max-height: 80px;
}

@media (min-width: 1024px) {
  .hero_accred_logos {
    flex-direction: row;
  }
}