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

/**
 * Edit, delete or add as needed
 */
:root {
  --brand-main: #45181B;
  --brand-main-hover: #663B3E;
  --brand-sec: #c9d8c1;
  --brand-sec-hover: #86a080;
  --off-grey: #FAFAFA;
}


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

html {
  scroll-behavior: smooth;
}


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

body {  
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

button {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Slab", serif;
  font-weight: bold;
}

.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: 130px;
  width: 100%;
  border-radius: 0%;
  margin-right: 100px;
}


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

.rte h2,
.site-title {
  font-size: 2rem;
}

.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-5, .col-6, .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;
  }

  .col-2{
    width: 48.5%;
    /* align-content: center; */
  }

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

  .col-6{
    width: 14.5%;
  }

}

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

.top-bar {  
  background-color: var(--brand-main);
  text-align: center;
}

.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;
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Roboto Slab", serif;
  letter-spacing: 1px;
  cursor: pointer;
}

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

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

.top-bar__item a {
  color: black !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;
  }

  .top-bar__row {
    display: flex;
    justify-content: center;
    padding: 25px 0;
  }

  .top-bar__col--contact, .top-bar__col--cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
  }

  .top-bar__cta-btn {
    display: inline-block;
    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;
}
.main-browse-nav > li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;

  width: 0;
  height: 0;

  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid white; /* Triangle colour */
}

.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: var(--brand-sec) !important;
  color: var(--brand-main)!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;
  border-bottom: 2px solid var(--brand-main);
}

.page-id-7 .main-header {
  border-bottom: none!important;
}

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

@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: 0 0.5rem;
  position: relative;
}

.main-browse-nav > li > a {
  color: white !important;
  font-weight: 300;
  text-decoration: none !important;
  font-size: 14px;
  font-family: 'Roboto Slab', serif;
  text-transform: uppercase!important;

}

@media (min-width: 1280px){

  .main-browse-nav > li { 
    margin: 0 1rem;
  }

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


/* ==================== */
/* 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: white;
  border-top: 2px solid var(--brand-main);
}

.page-id-7 .site-footer-main {
  border-top: none!important;
}

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

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

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

.site-footer__title {
  color: #606d73;
  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: black !important;
  text-decoration: none !important;
}

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

.site-footer__addr {
  color: black !important;
  position: relative;
  margin-bottom: 16px;
}

.site-footer__link {
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
  color: black !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) !important;
  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: var(--brand-main) !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% - 100px);
  }
}

@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-main);
  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: right;
    align-items: center;

}

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

.ftr_rane_logo{
  height: 30px;
  width: auto;
  display: inline-block;
  margin-left: 4px;
}
@media (min-width: 768px){
  .site-info__text {
    display: flex;
    justify-content: center; 
    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: 70px;
  }

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


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

.page-wrap {
  background-color: #ffffff;
  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: 1rem 0;
}

.section-has-bg .content-box__row {
  /* background-color: transparent ; */
  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;
  } 
   .col-order-2 {
    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: 490px;
    align-items: center;
    display: flex;
  }

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

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

.ftr_opening_days {
  color: #000;
  font-size: 16px;
}

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

.main-content {
  position: relative;
  z-index: 2;
  color: white;
  padding-bottom: 50px;
}

.section_content_center {
  text-align: center;
}

.section_content_short {
  max-width: 555px;
  margin-left: auto;
  margin-right: auto;
}

.section_title {
  font-size: 40px;
  margin: 0!important;
  width: 100%;
  color: #000;
}

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

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

.section_title_white {
  color: white !important;
}

.section_title_center {
  display: flex!important;
  justify-content: center;
  align-items: center;
  text-align: center!important;
  padding-bottom: 20px;
  position: relative;
}

/* .section_title_center_underline::after {
  content: '';
  background-color: var(--brand-sec);
  height: 2px;
  width: 120px;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  position: absolute;
} */

.section_title_center::before {
  margin-right: 20px;
}

.section_title_center::after {
  margin-left: 20px;
}

.section_title_dark, .section_content_dark {
  color: #050811 !important;
}

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

.btn_mgn_tb {
  margin-top: 20px;
  margin-bottom: 20px;
}

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

.site-content-short {
  max-width: 500px;
}

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

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

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

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

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

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

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

.site-btn-outline-light{
  background: transparent;
  border: 1px solid var(--brand-sec);
  transition: .2s;
  color: white!important;
}

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

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

.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-main-hover {
  background-color: var(--brand-main-hover)!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;
}

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

.bg-tree::before {
  content: "";
  display: flex;
  width: 681px;
  height: 775px;
  position: absolute;
  left: -10%;
  bottom: 0;
  transform: translateY(50%);
  background-image: url('/wp-content/uploads/2026/02/watermark.png');
  opacity: 0.25;
  transform: translateX(50%);
}

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

img{
    border-radius: 16px;
}

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

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

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

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

.hero_content_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 680px;
  padding: 60px 20px;
}

.hero_title {
  color: var(--brand-main) !important;
  font-size: 32px;
  max-width: 900px;
  text-align: left;
  line-height: 1.2;
  background: white!important;
  padding: 10px!important;
  border-radius: 16px;
}

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

.hero_btn_rgt {
  margin-top: 20px;
}

@media (min-width: 768px) {

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

}

@media (min-width: 1024px) {

.hero_title {
  font-size: 75px;
  position: relative;
  background: white!important;
  padding: 0 10px 10px 10px!important;
  border-radius: 0 16px 16px 0;
}

.hero_section:before {
  content: '';
  position: absolute;
  background: white;
  height: 190px;
  width: 40%;
  top: 164px;
}

.hero_btn_rgt {
  margin-top: 0;
}

}



.home_about_content {
  margin: 30px 0;
}

.home_about_btn_1 {
  margin-top: 30px;
}

.home_about_image {
  border-radius: 16px;
  height: 100%;
  min-height: 450px;
  margin-top: 30px;
}

@media (min-width: 1024px) {

  .home_about_image {
    margin-top: 0
  }

}



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

.services_row {
  margin-top: 30px;
  align-items: flex-start;
  /* align-items: center; */
}

.service_card {
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 0!important;
  margin: 15px 0;
  align-self: flex-start;
}

.service_accordion_panel[hidden] {
  display: none !important;
}

.service_card_image {
  min-height: 250px;
  border-radius: 8px 8px 0 0;
}

.service_items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 5px;
}

.service_accordion {
  padding: 10px 20px;
}

/* clickable header row */
.service_accordion_toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.service_accordion_toggle:focus {
  outline: none;
}

/* keep your title styling */
.service_card_title {
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
  font-size: 14px;
}

/* plus/minus indicator */
.service_accordion_icon {
  font-weight: bold;
  line-height: 1;
  padding-bottom: 10px; /* align with border */
}

/* panel animation */
.service_accordion_panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

/* when open */
.service_accordion_toggle[aria-expanded="true"] + .service_accordion_panel {
  /* max-height is set inline by JS for smooth animation */
}

.service_card_list ul {
  margin: 0!important;
  padding-left: 20px!important;
  padding-top: 20px;
  padding-bottom: 20px;
}




.form_wrap {
  background: rgba(255, 255, 255, 1);
  padding: 30px 30px 0 30px;
  position: relative;
  border-radius: 16px;
}

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

.opening_row {
  display: flex;
  flex-direction: row!important;
  justify-content: space-between;
  width: 100%!important; 
  /* width: 400px!important; */
  font-size: 22px;
  margin: 30px 0;
}

.opening_days {
  text-align: left;
  color: white;
}

.opening_hours {
  text-align: right;
  color: white;
}

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

.exp_info_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: 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;
  height: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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;
  min-height: 500px;
  /* min-height: 600px; */
}

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

@media (min-width: 1024px) {

  .opening_row {
  width: 400px!important;
  justify-content: flex-start;
  margin: 0;
  }

  .exp_info_txt {
    align-items: flex-start;
  }

  .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;
  position: relative;
  z-index: 2;
  font-size: 16px;
  height: 100%;
  position: relative;
}

.details_txt_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
  margin: auto;
  min-height: 400px;
  height: 100%;
  padding: 30px;
}

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

@media (min-width: 1024px) {

  
  .details_txt {
    align-items: flex-start;
  }

  .details_txt_content {
    align-items: flex-start;
    text-align: left;
    max-width: 400px;
    padding: 50px 0;
  }

  .details_txt_content .section_content {
    font-size: 22px;
  }

  .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 {
    margin-right: auto;
    margin-left: 100px;
  }

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

.contact_box {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  max-width: 350px;
  margin-top: 30px;
  text-align: left
}



.product_card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 30px;
  box-shadow: 2px 4px 12px #00000014;
  margin: 10px 0;
}

.product_card h3 {
  color: white;
  margin-top: 0;
  max-width: 250px;
  font-size: 22px;
}
.product_card:nth-child(even) {
  background-color: rgba(142, 142, 142, 0.2);
}

.product_card:nth-child(odd) {
  background-color: rgba(0,0,0,0.2);
}

.product_card img {
  position: absolute;
  right: -2px;
  bottom: -50px;
  max-height: 180px;
}

@media (min-width: 1024px) {  
  .product_card {
    min-height: 280px;
  }

  .product_card img {
    right: 5px;
    bottom: -30px;
  }
}

@media (min-width: 1280px) {  

  .product_card img {
    right: 5px;
    bottom: -30px;
  }
}


/* ==================== */
/* Content Block Sections
/* ==================== */

.content-blk-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: auto;
  padding-top: 25px;
}

.cb_card {
  background: #ddd;
  padding: 30px;
  border-radius: 10px;
  min-height: 150px;
  z-index: 2;
}

/* Desktop layout */
@media (min-width: 1024px) {

  .content-blk-container {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  /* right tall card */
  .tall {
    grid-column: 3;
    grid-row: 1 / 3;
    background: var(--brand-main);
    color: white;
    background-size: cover;
  }

  /* bottom wide card */
  .wide {
    grid-column: 1 / 3;
  }

  .full-wide {
    grid-column: 1 / 4;
  }
}


/* ======================== */
/* Content Block Section 2
/* ======================== */

.section-img{
  margin-top: 20px;
  height: 400px;
  border-radius: 16px;
  background-position: left;
  background-repeat: no-repeat;
  background-size: 100%;
}

.cb_card-2{
  background-color: var(--brand-main-hover);
  padding: 15px;
  margin-top: 10px;
  border-radius: 16px;
  color: var(--off-grey);
}
.card-2 h3{
  color: var(--brand-main);
}

.cb_card-2:hover{
  background-color: var(--brand-main);
}

.content-box__row--single-row p{
  color: black;
}

.section-has-bg .content-box__row {
  padding-left: 5% !important;
    padding-right: 5% !important;
}

.content{
  width:100%;
  padding-left: 5%;
  padding-right: 5%;
  color: #fff;
}

@media(min-width:1080px){
  .content{
    /* max-width: 622px;
    margin-right: 0px;
    margin-left: auto; */
    color: #fff;
    padding-left: 2%;
    padding-right: 2%;
  }
}

.content h2{
  color: #fff!important;
  padding-top: 30px;
}

/* ======================== */
/* Bullet Points
/* ======================== */

.cb_card-2 ul,
.rte ul {
  /* list-style: none; */
  padding-left: 0;
  /* margin: 0; */
}

.cb_card-2 li,
.rte li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 5px;
}

/* .cb_card-2 li::before,
.rte li::before {
  content: "•";
  position: absolute;
  left: 5px;
  top: 0;
  color: white;
  font-size: 18px;
} */

/* ==================== */
/* ACCORDION
/* ==================== */

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: var(--off-grey);
  color: var(--dark);
  cursor: pointer;
  padding: 22px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: var(--brand-main-hover);
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion {
  font-family: "Roboto Slab", sans-serif;
  color: #fff;
    width: 100%;
    background: var(--brand-main);
    border: none;
    padding: 24px 20px;
    text-align: left;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease;
    line-height: 1.5em;
    margin-bottom: 5px;
}

@media (max-width: 720px){
  .accordion{
    padding-right: 40px;
  }

}

/* PLUS ICON */
.accordion::after {
  content: "\002B"; /* plus */
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--off-grey);
  color: var(--brand-main);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: bold;
}

/* MINUS ICON WHEN ACTIVE */
.accordion.active::after {
  content: "\2212"; /* proper minus sign */
}

/* PANEL */
.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 13px;
}

 .accordion-item__description, .arrow{
  font-family: "poppins", sans-serif;
  margin-top: 15px;
  line-height: 1.5em;
}



/* ==================== */
/* CARDS
/* ==================== */

.cards-section{
  margin: 50px 0 50px 0;
}
.services_row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 15px;
  /* justify-content: flex-start; */
  justify-content: center;
}

/* .services_row > [class*="col-"] {
  display: flex;
} */

.col-1{
  width: 100%;
}

.card {
  display: flex;
  flex-direction: column;

  height: 100%;
  background-color: #FFFFFF;
  border-radius: 20px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 0 !important;
  margin: 0;
  overflow: hidden;
  gap: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card_title{
  color:var(--brand-main);
  margin: 0%;
}

.card_image {
  min-height: 400px;
  border-radius: 20px 20px 0 0;
  background-position: center;
  background-size: cover;
  flex-shrink: 0;
}

.service_accordion {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

.card_link {
  margin-top: auto;
  text-align: center;
  display: block;
  color: var(--dark) !important;
  text-decoration: none !important;
}
/* .services_row > [class*="col-"] {
  display: flex;
} */

.dark-theme{
  background-color: var(--brand-main);
  color: white!important;
  /* padding: 30px 0 15px 0; */
}
.dark-theme h2,
.dark-theme h3,
.dark-theme p {
  color: white !important;
}





.slide-nav {
    position: sticky;
    top: 120px;
    border-radius: 30px;
    background-color: var(--off-grey);
    padding: 30px;
}

.slide-nav a {
    display: block;
    margin-bottom: 18px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--brand-main);
}

.slide-nav a:hover,
.slide-nav a:focus {
    color: var(--brand-main-hover);
}

.section-text {
    margin-bottom: 40px;
}

.top{
  align-content: flex-start;
}

hr{
  background-color: var(--brand-sec)!important;
  height: 2px;
}

@media (max-width:750px){
  .content-box__row {
    padding: 8px 0 8px 0;
}
}