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

/**
 * Edit, delete or add as needed
 */
:root {
  --brand-main: #117311;
  --brand-main-hover: #198819;
  --brand-sec: #1F487E;
  --brand-sec-hover: #213A91;
  --off-grey: #ffffff;
}


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

html {
  scroll-behavior: smooth;
}

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

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

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

a {
  color: var(--brand-main);
  text-decoration: none;
  font-weight: 500;
}

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

/* ==================== */
/* 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: 100px;
  width: 100%;
}


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

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

}

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


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

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

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


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

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

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

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


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

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

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

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

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

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

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

}

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

}

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

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

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

@media (min-width: 768px) {

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

  .col-4{
    width: 48.5%;
  }

}

@media (min-width: 1024px) {

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

  .col-2{
    width: 48.5%;
  }

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

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

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

  .col-3{
    width: 31.5%;
  }

  .col-4{
    width: 23.5%;
  }

}

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

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

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

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

.top-bar__item {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-header {
  background-color: var(--off-grey);
  padding: 0;
  position: relative;
  z-index: 1;
}

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

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

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

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

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

@media (min-width: 1024px){
  .main-header {
    padding: 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: 0;
  }
}


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

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

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

.main-browse-nav > li > a {
  color: var(--brand-sec) !important;
  text-transform: capitalize !important;
  font-weight: 400;
  text-decoration: none !important;
  font-size: 14px;
}

@media (min-width: 1280px){

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

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


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

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

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

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

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

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


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

#slideshow {
  overflow: hidden;
}

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

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

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

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

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

}

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

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

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

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

@media (min-width: 1280px){

  .fp-slideshow__slide {
    height: 750px;
  }

  .fp-slideshow__logo {
    width: 550px;
  }

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

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

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


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

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

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

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

.site-footer__blurb {
  font-size: 16px;
  color: #060606;
}

.site-footer__title {
  color: var(--brand-main);
  position: relative;
  padding-bottom: 4px;
}

.site-footer__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 50px;
  height: 0;
  background-color: var(--brand-sec);

}

.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;
  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: 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);
  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% - 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: #E6E6E6;
  overflow: hidden;
  padding-top: 16px;
  padding-bottom: 16px;
}

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

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

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

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

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

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


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

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

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

.main-banner__row {
  position: relative;
}

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

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

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


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

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

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

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

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

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

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

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

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

.content-box__col--img {
  margin-bottom: 30px;
}

@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;
    margin-bottom: 0;
  }

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

.frm_button_submit{
  float: right;
}

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

.contact_form h2{
  color: #fff;
}





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


.btn {
  display: inline-block;
  background-color: var(--brand-main);
  padding: .6rem 1rem;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.5px;
  text-align: center;
  color: white !important;
  text-decoration: none;
  text-wrap: nowrap;
}

.btn-small {
  padding: .4rem 1rem;
  font-size: 14px;
}
.rsr-flex {
  display: flex;
}

.rsr-flex-row {
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
}

.rs-col {
  width: 100%;
}

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

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

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

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

.rsr-heading {
  font-family: Montserrat;
  font-size: 26px;
  font-weight: 700;
  line-height: 36.01px;
  margin: 0;
  padding: 0;
}

.rsr-padding {
  padding: 20px 0px;
}

.stdmargin {
  margin-bottom: 15px;
}

.smallmargin {
  margin-bottom: 8px;
}

.rsr-color-primary {
  color: var(--brand-sec);
}

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

.rsr-bg-secondary {
  background-color: var(--brand-sec);
}

@media(min-width: 768px) {
  .rsr-md-col-2 {
    width: calc(50% - 10px);
  }
  .rsr-md-col-3 {
    width: calc( 33% - 10px);
    flex-grow: 1;
  }
  .rsr-md-col-4 {
    width: calc(25% - 10px);
  }

  .rsr-md-col-1of3 {
    width: calc(35% - 10px);
  }

  .rsr-md-col-2of3 {
    width: calc(65% - 10px);
  }

  .rsr-md-col-3of4 {
    width: calc(75% - 10px);
  }
}

@media(min-width: 1024px) {
  .rsr-flex-row {
    gap: 15px;
  }

  .rsr-lg-col-2 {
    width: calc(50% - 15px);
  }

  .rsr-lg-col-3 {
    width: calc(33% - 15px);
    flex-grow: 1;
  }

  .rsr-lg-col-4 {
    width: calc(25% - 15px);
  }

  .rsr-lg-col-1of3 {
    width: calc(35% - 15px);
  }

  .rsr-lg-col-2of3 {
    width: calc(65% - 15px);
  }

  .rsr-lg-col-3of4 {
    width: calc(75% - 15px);
  }

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

  .rsr-heading {
    font-size: 32px;
    line-height: 39.01px;
  }

  .stdmargin {
    margin-bottom: 25px;
  }
}

@media(min-width: 1248px) {
  .rsr-xl-col-2 {
    width: calc(50% - 15px);
  }
  .rsr-xl-col-3 {
    width: calc(33% - 15px);
    flex-grow: 1;
  }

  .rsr-xl-col-4 {
    width: calc(25% - 15px);
  }

  .rsr-xl-col-1of3 {
    width: calc(35% - 15px);
  }

  .rsr-xl-col-2of3 {
    width: calc(65% - 15px);
  }

  .rsr-xl-col-3of4 {
    width: calc(75% - 15px);
  }
}

header#masthead .rsr-front-header {
  position: relative;
  overflow: hidden;
}
.main-browse-nav {
  align-items: center;
}

@media (min-width: 1024px ) {
  .main-header__row {
    justify-content: flex-start;
  }
}

.main-header__row .menu-item.menu-item-57 {
  margin-left: 5rem;
}

.main-header__row .menu-item.menu-item-57 a {
  display: inline-block !important;
  padding: .2rem 1rem;
  background-color: var(--brand-main);
  color: #ffffff !important;
}

.fronthead {
  padding: 1.5rem;
  color: white;
  overflow: hidden;
  width: 100%;
}

.fronthead .container {
  display: flex;
}

.fronthead-content h1 {
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0;
  padding-bottom: 0.65rem;
}

.fronthead-content p {
  font-weight: 400;
}

.slanted-headed {
  display: none;
  background: url("https://renewmysurfaces.ranestaging.com/wp-content/uploads/2025/01/close-up-glass-door-1.png") no-repeat bottom;
  position: absolute;
  top: -29px;
  z-index: 1;
  right: -29px;
  background-size: 100% 100%;
  background-position: bottom;
}

@media(min-width: 768px) {
  .fronthead {
    padding: 2rem;
  }

  .fronthead h1 {
    font-size: 2em;
  }
}

@media (min-width: 1024px) {
  .fronthead-content {
    width: 60%;
  }

  .slanted-headed {
    display: block;
    height: 100%;
    width: 40%;
  }
}

@media(min-width: 1248px) {
  .fronthead-content h1 {
    font-size: 50px;
    line-height: 60.95px;
  }

  .fronthead-content p {
    font-size: 28px;
    line-height: 34.13px;
  }

  .slanted-headed {
    width: 711px;
    height: 528px;
    background-size: cover;
    background-position: center center;
	clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%, 35% 20%);
  }
}

.fronthead-awards {
  background-color: var(--brand-main);
  position: relative;
  z-index: 2;
}

.fronthead-awards ul {
  margin: 0;
}

.fronthead-awards ul li {
  display: inline-block;
  background: url('https://renewmysurfaces.ranestaging.com/wp-content/uploads/2025/01/reward.svg') no-repeat left center;
  background-size: 24px 24px;
  padding: 15px 10px 15px 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.5px;
  color: white;
}

@media (min-width: 1024px ) {
  .fronthead-awards ul {
    display: flex;
    align-items: center;
    justify-content:center;
  }
}

@media(min-width: 1280px) {
  .fronthead-awards ul {
    gap: 50px;
  }
}

#rsr-about {
  background: #ffffff;
}

.rsr-about-image img {
  height: 100%;
}

#rsr-services {
  background-color: #FAFAFA;
}

.service-item {
  display: block;
  background: white;
  padding: 5px 10px;
  border-radius: 10px;
  text-align: center;
}

#rsr-contact,
#rsr-features {
  position: relative;
  background-color: #000;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

#rsr-contact::before,
#rsr-features::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  bottom: top;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

#rsr-features::before {
  background: rgba(0, 0, 0, 0.82);
}

#rsr-contact .container,
#rsr-features .container {
  position: relative;
}

#rsr-demo {
  background-color: #FAFAFA;
  position: relative;
}
  
.rsr-demo-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

@media(min-width: 1024px) {
  .rsr-absolute-bg,
  #rsr-demo > .rsr-bg-secondary {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 45%;
  }

  .rsr-demo-content {
    padding-left: 20px;
  }
}

@media(min-width: 1280px) {
  .rsr-demo-image img {
    height: 300px;
  }
}

#rsr-testimonials {
  background-color: #FFFFFE;
  overflow: hidden;
}

.rptr_testimonials {
  display: flex;
  align-items: stretch;
}

.rsr-testimonial-summary h3 {
  padding: 0px 0px 10px;
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 34.13px;
}

.testimonial-item-content,
.rsr-testimonial-summary p {
  font-size: 14px;
  font-weight: 400;
  line-height: 17.07px;
  
}

.testimonial-item-content {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.5px;
}

.testimonial-item-info {
  gap: 20px;
}

.rptr_testimonials .slick-prev:before,
.rptr_testimonials .slick-next:before {
  color: var(--brand-main);
}

.rptr_testimonials .slick-prev {
  left: 0;
}

.rptr_testimonials .slick-next {
  right: 0;
}

@media(min-width: 768px) {
  .rsr-testimonial-summary {
    padding-right: 20px;
    border-right: solid 2px var(--brand-main);
  }
  
  .rptr_testimonials {
    padding: 0px 50px;
  }
}

@media(min-width:1024px) {
  #rsr-services .service-item {
    padding: 5px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

  #rsr-services .service-item h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.94px;
  }

  #rsr-services .service-item p {
    font-size: 18px;
    font-weight: 400;
    line-height: 21.94px;
  }
}

.rsr-contact-wrap {
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 10px 20px;
  max-width: 639px;
  margin: 0 auto;
}

.site-footer-action {
  padding: 1rem;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
}

.site-footer-action p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 15px;
}

.site-footer__link-wrap,
.site-footer__addr {
  line-height: 1.8;
}

.site-info__designby,
.site-info__text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}

.site-info__designby a {
  display: inline-block;
  width: 70px;
  height: 29.86px;
  background: url(https://renewmysurfaces.ranestaging.com/wp-content/uploads/2025/01/rane-logo-1.svg) no-repeat;
  font-size: 0;
}

@media (min-width: 768px) {
  .site-footer-action  {
    text-align: left;
  }

  .site-footer-action .rsr-flex {
    justify-content: space-between;
    gap: 20px;
  }

  .site-footer-action {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
  }

  .site-info__designby,
  .site-info__text {
    text-align: center;
    justify-content: flex-end;
  }
}

.rsr-page-wrap {
  min-height: 450px;
}

.rsr-page-wrap > .container {
  gap: 25px;
}

.rsr-page-wrap .container .container {
  width: 100%;
}

.rsr-page-wrap .content-box__row {
  padding: 0;
  margin: 0;
}

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

.service-content-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.service-content-menu ul li {
  flex-grow: 1;
}

.service-content-menu ul a {
  display: block;
  text-decoration: none;
  padding: 1rem;
  background-color: var(--brand-main);
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.service-content-menu ul a:hover,
.service-content-menu ul a.active {
  background-color: var(--brand-main-hover);
}

.rsr-enquiry-form {
  background-color: var(--brand-sec);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
  border-radius: 6px;
  color: white;
}

.rsr-enquiry-form h3 {
  margin: 0;
  padding: 0;
  color: white;
}

.rsr-enquiry-form .frm_style_contact-2.with_frm_style .form-field {
  margin-bottom: 5px;
  grid-column: span 12 / span 12;
}

.rsr-enquiry-form .frm_forms.frm_style_contact-2.with_frm_style {
  width: 100%;
}

.rsr-enquiry-form .frm_style_contact-2.with_frm_style .frm_submit button {
  width: 100%;
  background-color: rgba(30, 191, 27, .3);
  color: white;
}

.polycabonate-demo .content-box__body > div {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.polycabonate-demo .wp-caption,
.content-box__col--img.has-caption .image-wrap {
  overflow: hidden;
  border-radius: 6px 6px 0px 0px;
  background: #ddd;
}

.content-box__col--img.has-caption img {
  width: 100%;
  margin: 0;
}

.content-box__col--img.has-caption p {
  margin: 0;
  padding: 20px;
}

.case-study-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px;
}

.case-study-list .case-study-item {
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media(min-width: 1024px ) {
  .case-study-list .case-study-item {
    width: calc(50% - 20px);
  }
}

@media(min-width: 1280px ) {
  .case-study-list .case-study-item {
    width: calc(33.3% - 20px);
  }
}

.case-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-sec);
  min-height: 300px;
}

.case-study-list .case-study-item .wp-post-image {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: solid 2px white;
}

.case-study-list .case-study-item .case-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  height: 100%;
}

.case-study-item .case-info h2 {
  padding: 0;
  margin: 0;

}

.case-study-item .case-info p {
  padding: 0;
  margin: 0;
}

.single-case-study .entry-header {
  background-color: rgba(31, 72, 126, .2);
  min-height: 500px;
}

.single-case-study .entry-header-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  height: 100%;
}

.single-case-study .post-thumbnail {
  width: 100%;
  height: 100%;
}

@media(min-width: 1024px) {
  .single-case-study .entry-header {
    padding: 100px 0;
  }

  .single-case-study .entry-title {
    font-size: 3rem;
    line-height: 1.2;
  }

  .single-case-study .entry-header-content p {
    font-size: 26px;
    line-height: 1.6;
    font-style: italic;
  }

  .single-case-study .entry-content p {
    font-size: 20px;
    line-height: 1.6;
  }
}

.single-case-study .post-navigation {
  margin: 20px 0;
}

.single-case-study .nav-links a {
  display: inline-block;
  text-decoration: none;
  padding: 1rem;
  background-color: var(--brand-main);
  color: white;
  border-radius: 2px;
}

@media (min-width: 1024px) {
  .content-box__row--single-row {
      align-items: normal;
      text-align: left !important;
  }
}

@media(min-width: 1024px) {
  #about-section-who {
    padding: 100px 0;
  }
  .about-who-row {
    gap: 60px;
    justify-content: space-between;
  }

  .about-who-row .who-image-wrap {
    width: calc(55% - 60px);
  }

  .about-who-row .who-image-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }

  .about-who-row .who-content-wrap {
    width: 45%;
  }

  .who-title {
    color: #060606;
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 0 0 15px;
  }

  .who-content {
    font-size: 20px;
    line-height: 1.8;
  }
}

#about-section-how {
  background-color: #F7F7F7;
  position: relative;
  color: #060606;
}

.about-how-process {
  background-color: white;
}

@media(min-width: 1024px) {
  .about-how-process .container {
    position: relative;
    background-color: white;
    border-top-left-radius: 30px;
    padding-left: 120px;
  }

  .about-how-title {
    font-size: 3rem;
    line-height: 1.2;
  }
  
  .about-how-content {
    font-size: 20px;
    line-height: 1.8;
  }

  .about-how-services .about-how-title {
    color: white;
  }

  .about-how-content {
    padding: 60px 0;
  }
}