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

/**
 * Edit, delete or add as needed
 */
:root {
  --brand-main: #053D78;
  --brand-main-hover: #053D78;
  --brand-sec: #FFC83D;
  --brand-sec-hover: #FFC83D;
  --off-grey: #d2d2d2;
}


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

html {
  scroll-behavior: smooth;
}


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

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

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

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

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

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

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

.section {
  padding: 2rem 0;
}

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

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

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

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

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


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

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

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


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

.rte h2, .rte h3, .rte h4,
.site-title {
  margin: 0 !important;


  font-family: "Poppins";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

}

.sub-site-title {
  margin-top: 0 !important;

  color: #FFF;
  font-family: "Poppins";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
}

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


.product-name a {
  color: var(--brand-main);
  text-decoration: none !important;
}

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

.site-btn {
  display: inline-block;
  background-color: var(--brand-sec);
  color: rgb(0, 0, 0) !important;
  padding: 8px 32px;
  text-align: center;
  font-family: "Poppins";
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 600;
  width: fit-content;
  padding: 9px 22px;
  height: 42px;
}

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

@media (min-width: 768px){


  .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: white;
  padding: 6px 0;
  text-align: center;
}

@media (max-width:1080px){
  .top-bar__col--contact {
    display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        width: 350px;
        margin-top: 13px;
  }
  .top-bar__item{
    flex-direction: column;
  }
}


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

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

.top-bar__item a {
  color: var(--brand-main) !important;
  text-decoration: none !important;
  display: inline-block;
  margin-right: 1.5rem;
  font-size: 16px;
  cursor: pointer;
}

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

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

  .top-bar__col--contact {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: 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: 1200px){
  .slideout-menu {
    display: none;
  }
}

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

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

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

@media (max-width: 1200px){
  .main-header__row {
    justify-content: flex-end
  }
}

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

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

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

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

.site-header .menu-item-520 a,
.slideout-menu .menu-item-520 a{
  display: inline-block;
  background-color: var(--brand-sec);
  color: rgb(0, 0, 0) !important;
  padding: 8px 22px;
  text-decoration: none !important;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.site-header .menu-item-57 a,
.slideout-menu .menu-item-57 a {
  display: inline-block;
  background-color: var(--brand-sec);
  color: rgb(0, 0, 0) !important;
  padding: 8px 32px;
  text-decoration: none !important;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.slideout-menu ul li {
    text-align: center;
}
@media (min-width:1080px){
  .site-header .menu-item-520 a{
    margin-left: 55%;
    margin-right: 0px !important;
  }
  .site-header .menu-item-57 a{
    margin-left: 60%;
    margin-right: 0px !important;
  }
}

@media (max-width:1200px){
  .site-header .menu-item-520 a, .slideout-menu .menu-item-520 a {
    margin-bottom: 14px!important;
  }
}


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

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

  .main-header__burger {
    display: none;
  }

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

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


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

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

.main-browse-nav > li {
  margin-right: 0.6rem;
  position: relative;
}

.main-browse-nav > li > a {
  color: white !important;
  font-weight: 600;
  text-decoration: none !important;
  font-size: clamp(11px, 0.8vw, 12px);
}

@media (min-width: 1337px){

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


}


/* ==================== */
/* 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: 700px;
  position: relative;
  background-position: center;
  background-size: cover;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
}

.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;
  line-height: 1.5;
  color: #FFF;
  font-family: Poppins;
  font-size: clamp(3rem, 2.0625rem + 3vw, 3.75rem);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  max-width: 913px
}

.slide-show-btn{
  margin-right:40px;
  margin-bottom: 20px;
}

.fp-slideshow__text {
  color: white;
  margin: 0 0 0.5rem 0;
  max-width: 913px;
  margin: 20px 0 30px 0;
}

#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: #FFF;
}

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

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

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

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

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

}

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

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

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

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

.site-footer__addr {
  color: #404443 !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: #404443;
  position: absolute;
  left: 0;
}

.site-footer__link {
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
  color: #404443 !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: #404443;
  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: #404443 !important;
}

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

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

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

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

@media (min-width: 768px){

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

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

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

@media (min-width: 1024px){

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

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

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

@media (min-width: 1280px){

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

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

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


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


.site-info {
  background-color: var(--brand-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: 300px;
  }

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

/* ==================== */
/* Value Bar
/* ==================== */

.values-bar__row{
  display: grid;
  grid-auto-flow: column;
}

.values-bar__title {
  margin-bottom: 6px;
}

.values-bar{
  background-color: var(--brand-main);
  color: white;            
}

/* ==================== */
/* 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);*/
padding-bottom: 0%;
}

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

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

.content-box__title {
  margin-bottom: 1rem;
  padding-top: 30px;
}

.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__row--single-row {
    flex-direction: column;
    align-items: center;
    text-align: center !important;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

@media (min-width: 1080px){

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

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



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

  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: var(--brand-main) !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...
/* ============================================================ */

.row-1-col{
  display: flex;
  flex-direction: column;
  align-items: center; 
  width: 100%;
}

@media (max-width: 1023px){
  .mb{
    margin-bottom: 2rem;
  }
}

/* ========================= */
/* PRODUCT SWIPER STYLE
/* ========================= */

 .product-btn {
  background-color: var(--brand-main);
  color: #fff !important;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  width: 100%;
  padding: 8px 32px;
  font-family: "Poppins", sans-serif;
  text-decoration: none !important;
  display: inline-block;
}

.product-btn:hover {
  opacity: 0.9;
}

/* Layout + spacing */
.product-swiper{
  width: 100%;
  position: relative;
  padding: 0 0 75px;          /* space for arrows underneath */
}

/* Image box (white square) */
.product-swiper li.product a img{
  background: #fff;
  padding: 18px;
  border-radius: 2px;
  width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}


/* Center the arrows UNDER the products */
.product-swiper .swiper-button-prev,
.product-swiper .swiper-button-next{
  top: auto !important;
  bottom: 8px !important;
  width: 20px !important;
  height: 63px !important;
  margin: 0 !important;
  color: var(--brand-main) !important;
}

/* Place arrows side-by-side in the center */
.product-swiper .swiper-button-prev{
  left: 50% !important;
  transform: translateX(-28px) !important;
}
.product-swiper .swiper-button-next{
  left: 50% !important;
  transform: translateX(8px) !important;
  right: auto !important;
}

/* Optional: smaller arrow icons */
.product-swiper .swiper-button-prev:after,
.product-swiper .swiper-button-next:after{
  font-size: 22px !important;
  font-weight: 900;
} 


.product-swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

.product-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.product-swiper .tpn-section {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.product-swiper .tpn-section h2 {
  flex-grow: 1;
  margin: 0;
}

.product-swiper .product-btn {
  display: block;
  width: 100%;
  margin-top: auto;
  background-color: var(--brand-main);
  color: #fff !important;
  text-align: center;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 8px 32px;
  text-decoration: none !important;
  box-sizing: border-box;
}

.product-swiper .swiper-slide {
  padding: 10px;
  box-sizing: border-box;
  height: auto;
}

.product-swiper .product-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-swiper .product-image-link {
  display: block;
}

.product-swiper .product-image-link img {
  display: block;
  width: 75%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.product-swiper .tpn-section {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px;
}

/* Title */
.product-swiper .tpn-section h2{
color: #404443;
  margin: 0 0 12px;
  flex-grow: 1;
text-align: center;
font-family: Poppins;
font-size: 12px;
font-style: normal;
font-weight: 600;
line-height: normal;
  text-decoration: none!important;
}

.product-swiper .product-btn {
  display: block;
  width: 100%;
  margin-top: auto;
  background-color: var(--brand-main);
  color: #fff !important;
  text-align: center;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 10px 16px;
  text-decoration: none !important;
  box-sizing: border-box;
}

.product-swiper .product-btn:hover {
  opacity: 0.92;
}


/* ========================= */
/* Ad style col
/* ========================= */

.row-ad{
  gap: 40px;
  padding-top: 0px;

}

@media(max-width: 1023px){
  .row-ad{
  padding-bottom: 2rem;
}
}

.ad-col{
  position: relative;
  text-align: center;
  padding: 20px 24px;
  color: #fff !important;
  overflow: hidden;
  width: 100%;
}

/* overlay */
.overlay::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* keep text above overlay */
.ad-col h2,
.ad-col .rte,
.ad-col img,
.sub-site-title {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #FFF;
}
.ad-col a{
  position: relative;
  z-index: 3;
}
.ad-col{
  background-size: cover;
  background-position: center;
  background-color: var(--brand-main);
}


.content-box__row--single-row{
  padding-bottom: 0%;
}

.yellow{
  color:var(--brand-sec)!important;
  font-size: 60px;
}

  .content-box__row--single-row-center{
    padding: 5%
  }

.section-has-bg-2 {
  background-size: cover;
  position: relative;
  padding: 2rem 0;
  margin-bottom: 2rem;
  z-index: 1;
  color: #FFF;
  margin-top: 2rem;
}

@media (min-width: 1080px){
  .content-box__row--single-row-center {
    flex-direction: column;
    align-items:flex-start;
    text-align: left !important;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 2%;
  }
  .section-has-bg-2 {
    margin-top: 0%;
  }
  .ad-col {
      position: relative;
      text-align: center;
      padding: 20px 56px;
      color: #fff !important;
      overflow: hidden;
      width: 100%;
  }
}

/* content inside the section */
.section-has-bg-2 > * {
  position: relative;
  z-index: 2;
}

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

/* ========================= */
/* Partners 
/* ========================= */

.content-box__col--par img{
  margin-left: 10px;
  box-shadow: 2px 4px 12px #00000014;
  max-width: 100%;
  height: 64%;
  display: block;
  min-width: 0;
  min-height: 0;
}

.content-box__col--par {
  justify-content: space-around;
  display: flex;
  flex-direction: row;
  padding-bottom: 20px;
  align-items: center;
}

@media (max-width: 1080px){
  .content-box__col--text-par {
    text-align: center;
  }
}
.full-container {
  width: 90%;
  /* margin: 0 auto; */
}



.full-container {
  width: 100%;
}

/* .col-2-big {
  min-height: 500px;       
  background-size: cover;  
  background-position: center;
  background-repeat: no-repeat;

} */

.full-container{
  width: 100%;
}

.full-container .row{
  display: grid;
  grid-template-columns: 1fr 664px; /* left fills, right fixed */
              /* adjust */
}

@media (min-width: 1420px){
  .full-container .row{
    padding-right: 10%;
  }
}

@media (min-width: 2000px){
  .full-container .row{
    padding-right: 15%;
  }
}

.full-width-img{
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    object-position: center;
}
.full-w-col{
  height: 500px;
}

.full-w-col-2{
  padding-right: 15%;
  align-content: center!important;
}

@media (max-width:1020px){
  .full-w-col-2{
    padding:5%;
    padding-right: 5%;
    text-align: center;
  }
  .col-order-2 img{
    width: 100%;
  }
}

.cotact-sec{
  position: relative;
}

.box,
.box-2,
.yellow-box{
  display: none;
}

@media (min-width:1080px){

  .box{
    display: block;
    position: absolute;
    width: 232.431px;
    height: 232.431px;
    transform: rotate(-45deg);
    border: 30px solid rgba(10, 55, 108, 0.10);
    left: -16px;
    top:300px;
  }

  .yellow-box{
    display: block;
    position: absolute;
    width: 325.403px;
    height: 325.403px;
    transform: rotate(-45deg);
    aspect-ratio: 1 / 1;
    border: 30px solid rgba(247, 182, 17, 0.10);
    left: -255px;
    top: 253px;
  }

  .box-2{
    display: block;
    position: absolute;
    width: 232.431px;
    height: 232.431px;
    transform: rotate(-45deg);
    border: 30px solid rgba(10, 55, 108, 0.10);
    left: -402px;
    top:300px;
  }

}




.content-box__col--form {
  width: 600px;
  background: #FFF;
  padding: 30px;
  font-family: "Poppins";
  max-width: 600px;
  width: 100%;
}

@media (max-width: 1080px){
  .content-box__col--form {
      max-width: 100%;
  }

  .content-box__col--txt{
    text-align: center;
  }

  .accreditions{
    text-align: center;
  }
}

.content-box__col--form h2 {
  color: var(--brand-main);
  font-size: 32px;
}

.content-box__col--form button {
  font-weight: 700!important;
  float: left;
}

.bg--white{
  background-color: #fff;
  padding: 40px 0 40px 0;
}

.bg--gray{
  background-color: #F6F6F6;
}

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

.white--text{
  color: #ffffff;
}

.center-row{
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;

}

.pad_tb{
  padding: 50px;
  padding-bottom: 50px;
}


.accreditions{
  max-width: 600px;
}


.top-bar__cta-btn {
  display: inline-block;
  color: rgb(0, 0, 0) !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;
}

.cta-sec{
  justify-content: space-around;
  background-color: var(--brand-main);
}

.CTA-title{
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (max-width: 850px){
  .cta-sec{
    padding-bottom: 10px;
  }

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

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

  .site-btn{
    margin-left: auto;
    margin-right: auto;
  }
}


.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
}

.case-card {
    border: 1px solid #ddd;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.case-card__image img {
    width: 100%;
    height: auto;
    display: block;
}

.case-card__content {
    padding: 16px;
}

.case-card__title {
    margin: 0 0 10px;
    font-size: 20px;
}

.case-card__excerpt {
    font-size: 14px;
    margin-bottom: 10px;
}

.case-card__link {
    font-weight: bold;
    text-decoration: none;
}

/* ========================= */
/* Woocommerce
/* ========================= */

.home-link__logo {
    height: auto;
    max-width: 210px!important;
}

.woocommerce ul.products li.product .button {
  display: block;
  width: 100%;
  margin-top: auto;
  background-color: var(--brand-main);
  color: #fff !important;
  text-align: center;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 10px 10px;
  text-decoration: none !important;
  box-sizing: border-box;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    float: left;
    margin: 0 1% 2.992em 0;
    padding: 0;
    position: relative;
    width: 24%;
    margin-left: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title, 
.woocommerce ul.products li.product .woocommerce-loop-product__title, 
.woocommerce ul.products li.product h3 {
color: #404443;
  margin: 0 0 12px;
  flex-grow: 1;
text-align: center;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: normal;
  text-decoration: none!important;
min-height: 75px;
}

.woocommerce ul.products li.product a img {
  display: block;
  width: 75%;
  /* height: 200px; */
  margin-left: auto;
  margin-right: auto;
  /* max-height: 200px; */
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  background: #fff;
  border: 1px solid #e9e9e9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;

}

.woocommerce-product-gallery__image {
  width: 100%;
}

/* ========================= */
/* List Icons
/* ========================= */

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

ul.tick-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;

  font-weight: 600;
}

ul.tick-list li::before {
  content: "✓";
  position: absolute;
  font-family: Georgia, 'Times New Roman', Times, serif;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #FFC72C; /* yellow */
  color: #0b3d6b; /* tick color (dark blue) */
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-box_width{
  max-width: 525px;
}

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


.shop-hero {
  height: 600px;
  position: relative;
  background-position: center;
  background-size: cover;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
}


@media (min-width: 1280px){

  .shop-hero {
    height: 450px;
  }
}


.page-id-513 .section {
  padding: 2em;
}

.yith_ywraq_add_item_browse_message a {
  background: var(--brand-main);
  margin: 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: visible;
  padding: .618em 1em;
  font-weight: 700;
  border-radius: 3px;
  left: auto;
  color: #515151;
  background-color: #e9e6ed;
  border: 0;
  display: inline-block;
  background-image: none;
  box-shadow: none;
  text-shadow: none;

}

.woocommerce-breadcrumb, .posted_in {
  display: none;
}

.event-trail a,
.case-card__content a{
  text-decoration: none;
  color: #053D78;
}


.event-trail {
  display: none!important;
}

/* ========================= */
/* Range Columns
/* ========================= */
.range-columns{
  margin-bottom: 0px;
}

.range-columns__top{
  background-color: var(--brand-main);
  color: white;
  padding: 4px;
  text-align: center;
}
.range-columns__bottom{
  background-color: #FAFAFA;
}

.range-columns__title{
  font-size: 32px;
  margin: 10px 0 5px 0;
}
.range-btn-wrapper{
  display: flex;
  justify-content: center;
}
  .range-columns__col{
    margin-bottom: 30px;
  }
@media(min-width: 1080px){
  .range-columns__col{
    margin-bottom: 0px;
  }
  .range-columns{
    margin-bottom: 50px;
  }
}

.range-columns__col img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.range-img-wrapper{
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.content-box{
  max-width: 700px;
}



/* ========================= */
/* li ticks
/* ========================= */
.range-columns__list {
	list-style: none;
	padding: 0;
	margin: 0 71px;
  padding: 30px 0;
}

.range-columns__list-item {
	position: relative;
	padding-left: 28px;
	margin-bottom: 10px;
}

.range-columns__list-item::before {
	content: "✔";
	position: absolute;
	left: 0;
	top: 0;
	color: #f4b400; /* yellow/orange */
	font-weight: bold;
}

/* ==================== */
/* Split Section
/* ==================== */

.split-section {
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 50px;
}

.split-section-pagebuilder {
  overflow: hidden;

}

.split-layout {
  display: flex;
  align-items: stretch;
  position: relative;
  min-height: 500px;
}

.reverse-col{
  display: flex;
  align-items: stretch;
  position: relative;
  min-height: 500px;
  flex-direction: row-reverse;
}
.reverse-col img{
  display: block;
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  height: 100%;
}

.split__content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px 0 0;
  box-sizing: border-box;
  color: white;
}
.split__content h3, 
.split__content p{
  text-align: center;
}

@media (min-width: 1080px){
  .split__content h3, 
  .split__content p{
    text-align: start;
  }
}



.split__content ul {
	list-style: none;
	padding: 0;

}

.split__content ul li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 10px;
}

ul, ol {
    margin: 0;
}

.split__content ul li::before {
	content: "✔";
	position: absolute;
	left: 0;
	top: 0;
	color: #f4b400; /* yellow/orange */
	font-weight: bold;
}

.split__content-img-txt {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 60px;
  box-sizing: border-box;
  color: white;
}

.split__image {
  width: 50vw;
  margin-right: calc(50% - 50vw);
}

.split__image_2 {
  width: 65vw;
  margin-right: calc(63% - 64vw);
}

.reverse-img {
  width: 50vw;
  margin-left: calc(50% - 50vw);
}

.reverse-img-2 {
  width: 50vw;
  margin-left: calc(43.5% - 48vw);
  margin-bottom: 0;
}

.split__image img,
.split__image_2 img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
}

.description {
  margin: 30px 0;
  text-align: center;
}

@media (min-width: 750px) {
  .description {
    text-align: start;
  }
}

@media (max-width: 1138px) {
  .split-section {
    margin-top: 0;
  }

  .split__content-img-txt {
    width: 100%;
    padding: 30px 0 0;
  }

  .reverse-img {
    width: 100%;
  }

  .reverse-img-2 {
    width: 48vw;
  }
}

@media (max-width: 1080px) {
  .split-layout,
  .reverse-col {
    flex-direction: column;
  }

  .split__content {
    width: 100%;
    padding-top: 30px;
    padding-right: 0px;
  }

  .split__image,
  .split__image_2,
  .reverse-img-2 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 20px;
  }

  .split__image,
  .split__image_2 {
    padding-bottom: 20px;
  }
}

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

.gallery-our-work{
  margin: 30px 0 60px 0;
}

.grid {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 30vw;
  list-style-type: none!important;
  padding: 10px!important;
}

/*.grid .grid_item:nth-child(9) {
  grid-column: 1 / -1;
  grid-row: span 2;
}*/

.grid figure,
.grid img {
  width: 100%;
  height: 100%;
}

.grid img {
  object-fit: cover;
  background: #f5f3f4;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

@media (min-width: 850px) {
  .grid {
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 8vw;
    overflow: clip;
  }

  .grid .grid_item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .grid .grid_item:nth-child(2) {
    grid-column: 2 / span 2;
    grid-row: 1 / span 2;
  }

  .grid .grid_item:nth-child(3) {
    grid-column: 4;
    grid-row: 1;
  }

  .grid .grid_item:nth-child(4) {
    grid-column: 5;
    grid-row: 1;
  }

  .grid .grid_item:nth-child(5) {
    grid-column: 4;
    grid-row: 2;
  }

  .grid .grid_item:nth-child(6) {
    grid-column: 5;
    grid-row: 2 / span 2;
  }

  .grid .grid_item:nth-child(7) {
    grid-column: 2;
    grid-row: 3;
  }

  .grid .grid_item:nth-child(8) {
    grid-column: 1;
    grid-row: 3;
  }

  .grid .grid_item:nth-child(9) {
    grid-column: 3 / span 2;
    grid-row: 3 / span 2;
  }

  .grid .grid_item:nth-child(10) {
    grid-column: 1 / span 2;
    grid-row: 4;
  }

  .grid .grid_item:nth-child(11) {
    grid-column: 5;
    grid-row: 4;
  }

  .grid .grid_item:nth-child(12){
    grid-column: 1 ;
    grid-row: 5 ;

  }

  .grid .grid_item:nth-child(13){
    grid-column: 1;
    grid-row: 6 /span 2;

  }

  .grid .grid_item:nth-child(14){
    grid-column: 2 / span 2;
    grid-row: 5 / span 2;

  }

  .grid .grid_item:nth-child(15){
    grid-column: 4 ;
    grid-row: 5 / span 2;

  }

  .grid .grid_item:nth-child(16){
    grid-column: 5 ;
    grid-row: 5;

  }

  .grid .grid_item:nth-child(17){
    grid-column: 5 ;
    grid-row: 6;

  }

  .grid .grid_item:nth-child(18){
    grid-column: 2;
    grid-row: 7 / span 2;

  }

  .grid .grid_item:nth-child(19){
    grid-column: 3 ;
    grid-row: 7;

  }

  .grid .grid_item:nth-child(20){
    grid-column: 3 ;
    grid-row: 8;

  }

  .grid .grid_item:nth-child(21){
    grid-column: 4 / span 2 ;
    grid-row: 7;

  }

  .grid .grid_item:nth-child(22){
    grid-column: 4 ;
    grid-row: 8;

  }

  .grid .grid_item:nth-child(23){
    grid-column: 5 ;
    grid-row: 8;

  }

  .grid .grid_item:nth-child(24){
    grid-column: 1 ;
    grid-row: 8;

  }
}

@media (min-width: 850px) {
    .grid .grid_item:nth-child(9) {
        grid-column: 3 / span 2;
        grid-row: 3 / span 1;
    }
}


.our-partners{
  margin: 34px 0 80px;
}
.our-partners-images img{
  padding: 0 20px 0 20px;
}

@media (max-width: 650px){
  .our-partners-images img{

    padding: 10px 0;
  }
  .center-row{
    flex-direction: column;
  }
}


/* ========================= */
/* PRODUCT HERO
/* ========================= */

.product-hero {
  background: #fff;
  min-height: 450px;
  display: flex;
}
  .product-hero__inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }


/* Take this out at end */
/* .product-hero__image {
	position: relative;
	flex: 1;
  z-index: 0;
} */

/* .product-hero__image img {
	width: 100%;
	height: auto;
} */



.product-hero__content {
	flex: 1;
}

.product-hero__eyebrow {
  font-family: 'Lobster', cursive;
  font-size: 60px;
  font-weight: 500;
  color: #1f3b6b;
  position: relative;
  /* left: -75px; */
  line-height: 22px;
}



.product-hero__features-section {
  background-color: white;
  z-index: 2;
  position: relative;
}

.product-hero__features-section-home{
  background-color: var(--brand-main);
  color: white;
}

.product-hero__features-section-home h4,
.product-hero__features-section-home p{
  color: white;
}

.product-hero__features {
  display: flex;
  justify-content: space-between;
  /* margin-top: 40px; */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
    width: 100%;
}


.feature {
  width: 100%;
  max-width: 100%;
  color: var(--brand-main);
  display: flex;
  gap: 20px;
  box-sizing: border-box;
}
.feature h4{
  margin-bottom: 0px;
}
.site-header{
  position: relative;
  z-index: 2!important;
}

.product-hero__badge {
  height: fit-content;
  background-color: var(--brand-main);
  padding: 0px 20px 0 20px;
  color: white;
  z-index: 3;
  flex-shrink: 0;
  width: fit-content;
  margin-top: 20px;
}
.badge-top{
  margin-bottom: -2px;
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 5px;
  color:var(--brand-sec);

}
.badge-bottom{
  background-color: white;
  color: var(--brand-main);
  padding: 0 10px;
  font-size: 17px;
  line-height: 20px;
  text-align: center;
}

.feature img{
  object-fit: none;
}
.feature__content{
  font-size: clamp(12px, 3vw, 16px);
  width: 100%;
}
.product-hero__desc {
  width: 100%;
  max-width: 100%;
  color: #555;
}

.product-hero__title {
    font-size: clamp(67px, 3.5vw, 79px);
    color: #f2a900;
    margin: 21px 0;
    padding-left: 0;
}

@media (min-width: 750px){
  .product-hero__inner {
    display: flex;
    flex-direction: row;
    max-height: 100%;
    align-content: center;
    align-items: center;
  }
  .product-hero__title {
    font-size: clamp(52px, 3.5vw, 79px);
    margin: 10px 0;
    padding-left: 45px;
  }

  .feature {
    gap: 0px;
  }
  .product-hero__features {
    flex-direction: row;
  }
  .feature {
    flex: 1;
    gap: 0;
  }
  /* .feature__content {
    font-size: 16px;
    width: 100%;
  } */

}

@media (min-width: 1080px){
  .product-hero__features {
    flex-direction: row;
    width: 100%;
  }
  .product-hero__eyebrow {
    left: -75px;
  }

  .product-hero__title {
    padding-left: 0px;
  }

  .product-hero__desc {
    max-width: 400px;
  }
  /* .feature__content{
    font-size: 12px;
  } */
   
}

/* ========================= */
/* PRODUCT Section 2
/* ========================= */

.split__content-img-txt ul {
  list-style: none;
  padding-right: 5px;
}

.split__content-img-txt ul li {
  padding-bottom: 10px;
}

.split__content-img-txt ul li::before {
    content: "✔";
    position: relative;
    left: -20px;
    /* top: 0; */
    color: #f4b400;
    font-weight: bold;
    margin-right: -13px;
}

.woocommerce-result-count,
.orderby{
  display: none;
}

.product-archive-section{
  padding: 30px 0 0 0;
}

.product-archive{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-archive-header{
  max-width: 800px;;
  text-align: center;
}
@media (max-width:1080px){
  .contact-section{
    padding-bottom: 50px;
  }
}



/* .spc-single-product {
  width: 100%;
  overflow: hidden;
}

/* HERO */



.spc-hero__summary {
  padding: clamp(32px, 6vw, 80px);
}

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

.spc-hero__title {
  max-width: 520px;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.1;
  margin: 0 0 24px;
  color: #444;
}

.spc-hero__desc {
  max-width: 560px;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.6;
  color: #555;
  margin-bottom: 24px;
}

.spc-hero__cart .button,
.spc-hero__cart button {
  background: #ffc72c;
  color: #000;
  border: 0;
  padding: 14px 48px;
  font-weight: 700;
  cursor: pointer;
  max-width: 320px;
}

/* FEATURES / BENEFITS FULL WIDTH SPLIT */

.spc-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.spc-info {
  width: 100%;
}

.spc-info__inner {
  padding: clamp(40px, 6vw, 90px);
}

.spc-info--blue {
  background: #004681;
  color: #fff;
}

.spc-info--light {
  background: #f7f7f7;
  color: #444;
}

.spc-info h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin: 0 0 24px;
}

.spc-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.spc-info li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.5;
}

.spc-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffc72c;
  font-weight: 700;
}

.spc-info__note {
  margin-top: 32px;
  color: #004681;
  font-weight: 700;
}

/* DESKTOP */

@media (min-width: 768px) {
  .spc-hero,
  .spc-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .spc-hero {
    min-height: 520px;
  }

  .spc-info {
    min-height: 340px;
  }

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

@media (min-width: 1080px){
.spc-info-section {
  background: linear-gradient(
    to right,
    #004681 0%,
    #004681 50%,
    #f7f7f7 50%,
    #f7f7f7 100%
  );
  margin-bottom: 0!important;
}

.product-hero-section {
  background: linear-gradient(
    to right,
    #fff 0%,
    #fff 50%,
    #EDEDED 50%,
    #EDEDED 100%
  );
}
}
.woocommerce-product-gallery__trigger{
  display: none;
}
.spc-info-section{
  margin-bottom: 50px;
}

.spc-hero__cart {
    max-width: 350px;
}

.spc-size-dropdown {
    width: 100%;
    height: 38px;
    margin-bottom: 12px;
    padding: 6px 10px;
    border: 1px solid #ccc;
}

.spc-hero__cart .add-request-quote-button,
.spc-hero__cart .yith-ywraq-add-to-quote a {
    display: inline-block;
    background: #f5b51b;
    color: #111;
    padding: 10px 18px;
    font-weight: 700;
    text-decoration: none;
}

.woocommerce-product-gallery {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

.spc-size-dropdown {
  width: 100%;
  height: 38px;
  margin-bottom: 12px;
}

.spc-hero__cart .quantity {
  margin-bottom: 12px;
}

.spc-hero__cart .qty {
  width: 80px;
  height: 38px;
}

.yith-ywraq-add-button ~ .yith-ywraq-add-button,
.yith_ywraq_add_item_browse_message ~ .yith_ywraq_add_item_browse_message {
	display: none !important;
}

.logo-slider{
  background-color: #053D78;
}


.gs_logo_single img{
  max-width: 25%;
}

.gs_logo_single--inner{
  min-width: 80%;
}

#gs_logo_area_48 .gs_logo_single--wrapper{
  width: 20%!important;
}

.reverse-img-2 img{
  width: 100%;
  height: 100%;
}

@media (max-width:1080px){
  .gs_logo_single img{
    max-width:65%;
  }
  #gs_logo_area_48 .gs_logo_single--wrapper{
  width: 90%!important;
}
}

/* CART */

/* Wrapper */
.spc-hero__cart {
  max-width: 360px;
}

/* Variation form */
.spc-hero__cart form.cart,
.spc-hero__cart form.variations_form {
  width: 100%;
  margin: 0;
}

/* Hide WooCommerce labels */
.spc-hero__cart table.variations th.label {
  display: none;
}

/* Remove table spacing */
.spc-hero__cart table.variations,
.spc-hero__cart table.variations tbody,
.spc-hero__cart table.variations tr,
.spc-hero__cart table.variations td {
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
}

/* Dropdown */
.spc-hero__cart table.variations select {
  width: 100%;
  height: 54px;
  padding: 0 50px 0 28px;
  border: 0;
  border-radius: 0;
  background: #fff;
  font-size: clamp(11px, 0.6vw, 14px);
  font-weight: 600;
  color: #111;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* Custom arrow */
.spc-hero__cart .value {
  position: relative;
}

.spc-hero__cart .value::after {
  content: "▼";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  pointer-events: none;
  color: #000;
}

/* Hide clear link */
.spc-hero__cart .reset_variations {
  display: none !important;
}

/* Quantity */
.spc-hero__cart .quantity {
  margin: 14px 0;
}

.spc-hero__cart .qty {
  width: 90px;
  height: 46px;
  border: 0;
  background: #fff;
  text-align: center;
  font-size: 14px;
}

/* Quote button */
.spc-hero__cart .single_add_to_cart_button,
.spc-hero__cart .add-request-quote-button,
.spc-hero__cart .yith-ywraq-add-to-quote a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 322px;
  height: 50px;
  margin-top: 14px;
  background: #f6c436 !important;
  border: 0 !important;
  border-radius: 0;
  color: #000 !important;
  font-size: clamp(11px, 0.7vw, 15px);
  font-weight: 700;
  text-decoration: none;
  box-shadow: none;
  transition: 0.2s ease;
}

/* Hover */
.spc-hero__cart .single_add_to_cart_button:hover,
.spc-hero__cart .add-request-quote-button:hover,
.spc-hero__cart .yith-ywraq-add-to-quote a:hover {
  opacity: 0.9;
}





.product-hero-section .col-2:first-child {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
@media (min-width:1080px){
  .product-hero-section .col-2:first-child {
  width: 50%;
  max-width: 50%;
  overflow: hidden;
}
}

.woocommerce-product-gallery {
  width: 100% !important;
  max-width: 700px;
  position: relative;
}

.woocommerce-product-gallery .flex-viewport {
  height: 560px !important;
  overflow: hidden;
}

.woocommerce-product-gallery__image {
  height: 560px;
}


/* Fix WooCommerce gallery thumbnail list */
.woocommerce-product-gallery ol.flex-control-thumbs,
.woocommerce-product-gallery .flex-control-thumbs {
  list-style: none !important;
  margin: 20px 0 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 14px !important;
  justify-content: flex-start !important;
  align-items: center !important;
  width: 100% !important;
}

.woocommerce-product-gallery ol.flex-control-thumbs li,
.woocommerce-product-gallery .flex-control-thumbs li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 85px !important;
  height: 85px !important;
  flex: 0 0 85px !important;
  display: block !important;
  overflow: hidden !important;
}

.woocommerce-product-gallery .flex-control-thumbs li::marker {
  content: "" !important;
}

.woocommerce-product-gallery .flex-control-thumbs img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 1 !important;
  display: block !important;
}

/* Main image */
.woocommerce-product-gallery .flex-viewport {
  width: 100% !important;
  height: 560px !important;
  overflow: hidden !important;
}

.woocommerce-product-gallery__image {
  height: 100% !important;
}

.woocommerce-product-gallery__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.woocommerce-product-gallery .flex-viewport {
    width: 100% !important;
    height: 300px !important;
    overflow: hidden !important;
}

.woocommerce-product-gallery__image img {
    width: 100% !important;
    height: 300px !important;
    object-fit: contain !important;
}

@media (min-width:750px){
  .woocommerce-product-gallery__image img {
  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
}
.woocommerce-product-gallery .flex-viewport {
    width: 100% !important;
    height: 560px !important;
    overflow: hidden !important;
}

.woocommerce-product-gallery__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

}

.woocommerce-product-gallery {
    width: 100% !important;
    max-width: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.woocommerce-info{
  display: none;
}

.woocommerce .add-request-quote-button.button, .woocommerce .add-request-quote-button-addons.button, .yith-wceop-ywraq-button-wrapper .add-request-quote-button.button, .yith-wceop-ywraq-button-wrapper .add-request-quote-button-addons.button{
  width: 100%;
}

.spc-hero__cart .single_add_to_cart_button, .spc-hero__cart .add-request-quote-button, .spc-hero__cart .yith-ywraq-add-to-quote a {
 width: 100%;
}

.title-slider {
  border-top: 2px solid #fff;
  color: white;
  display: flex;
  align-items: flex-end;
  /* height: 106px; */
  justify-content: center;
  position: relative;
  top: 124px;
  font-size: 41px;
  font-weight: 300;
}

@media (max-width:700px){
  .title-slider {
    justify-content: flex-start;
    top: 0px; 

}
}

/* ==================== */
/* VALUES SLIDER */
/* ==================== */

.section-values{
  padding: 30px 0;
  margin: 0;
  background-color: var(--brand-main);
}

.values-content{
  color: #fff;
  max-width: 500px;
  margin: auto;
  text-align: center;
}

.truncate-multiline{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.values_slide{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

@media (max-width:1000px){

  .values_slide{
    flex-direction: column;
  }

}

.values-slider{
  margin: auto;
  width: 70%;
}

.values-content h2{
    margin: 0;
    padding: 0;
    color: #FFF;
    font-family: Poppins;
    font-size: clamp(1rem, 2.0625rem + 3vw, 2rem);
    font-style: normal;
    font-weight: 300;
    line-height: 1.5;
}

.bg-img{
  background-size: cover;
}

.spc-hero__cart .button, .spc-hero__cart button {
  display: none!important;
}