.post, .page {
  margin-bottom: 10px;
  height: 100vh;
  overflow-x: hidden;
}

* {
  font-family: 'proxima-nova', sans-serif;
  color: #111;
}

html {
  margin-top: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
}

b, strong {
  font-weight: 700;
}

h2 { 
  font-size:2rem;
  margin-bottom: 4rem;
}

section {
  padding: 6rem 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.5rem;
}

ul, li {
  margin: 0;
  padding: 0;
}

em {
  color: #fd793d;
}

a {
  text-decoration: none;
}

p a:link, p a:visited {
    color: #fe5d3b;
}

p a:hover, p a:active, p a:focus {
    text-decoration: underline;
}

.platter {
  max-width: 1920px;
}

.medium-platter {
  max-width: 1400px;
}

.small-platter {
  max-width: 1240px;
}

.x-small-platter {
  max-width: 980px;
}

.small-flex {
  display: flex;
}

.grid {
  display: grid;
}

.flex {
  display: block;
}

.medium-flex {
  display: block;
}

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

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

.orange-gradient {
  background: -webkit-linear-gradient(0deg, #fe523a 0%, #fcad40 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grey-bg {
  background-color: #f9f9f9;
  -webkit-box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
  -moz-box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
  box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
}

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

.dark-bg h2, .dark-bg p, .dark-bg li, .dark-bg strong {
  color: #fff;
}


.cta {
  margin: 0.5rem 0.25rem;
  padding: 1rem 2rem;
  border-radius: 5rem;
  width: fit-content;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  -webkit-box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
  -moz-box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
  box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%);
}

.dark-bg .cta, header .cta {
  -webkit-box-shadow: unset;
  -moz-box-shadow: unset;
  box-shadow: unset;
}

.cta-label {
  font-weight: 800;
  text-align: center;
}

.cta.orange {
  background: #fd6d3b;
  background: linear-gradient(90deg, #fe523a 0%, #fcad40 100%);
}

.cta.orange .cta-label {
  color: #fff;
}

.cta.white {
  background-color: #fff;
}

.cta.white .cta-label {
  background: -webkit-linear-gradient(0deg, #fe523a 0%, #fcad40 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta:hover {

}

.cta.orange:hover {
  background: #fff;
}

.cta.white:hover {
  background: #fd6d3b;
  background: linear-gradient(90deg, #fe523a 0%, #fcad40 100%);
}

.cta.orange:hover .cta-label {
  background: -webkit-linear-gradient(0deg, #fe523a 0%, #fcad40 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta.white:hover .cta-label {
  color: #fff;
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

.will-animate {
  -webkit-transition: all 1.0s ease-out;
  -moz-transition: all 1.0s ease-out;
  -ms-transition: all 1.0s ease-out;
  -o-transition: all 1.0s ease-out;
  transition: all 1.0s ease-out;
  -moz-transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -o-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
}


.will-animate.animated {
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}


.faqs-question {
  position: relative;
  width: 100%;
  font-size: 1.25rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 0.15rem solid #fc833d;
  cursor: pointer;
}

.faqs-question::after {
  content: "+";
  font-weight: 600;
  font-size: 1.5rem;
  position: absolute;
  right: 0;
  color: #fc833d;
  rotate: 0deg;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.faqs-answer {
  width: 100%;
  margin-bottom: 0.75rem;
  opacity: 0;
  max-height: 0;
  -webkit-transition: all 0.75s ease-out;
  -moz-transition: all 0.75s ease-out;
  -ms-transition: all 0.75s ease-out;
  -o-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
}

.faqs-answer.open {
  opacity: 1;
  max-height: 20rem;
}

.open::after {
  rotate: 135deg;
}

.section:not(.product-hero):not(.home-hero):not(.home-buckets):not(.guidance-centre):not(.post-hero):not(.product-process) ul {
  padding: 1rem 0rem;
}
.section:not(.product-hero):not(.home-hero):not(.home-buckets):not(.guidance-centre):not(.post-hero):not(.product-process) ul li {
  padding: 0.5rem 0.5rem 0.5rem 2rem;
  font-weight: 600;
}

.section:not(.product-hero):not(.home-hero):not(.home-buckets):not(.guidance-centre):not(.post-hero):not(.product-process) ul li:before {
  content: '•';
  color: #fd793d;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  margin-left: -1rem;
}



.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    margin-top: 5rem;
    padding: 0rem 3rem;
}

.mySlides {
    display: none;
    text-align: center;
    padding: 2rem;
    width: 100%;
}

.mySlides:first-child {
    display: block;
}

/* Owl Carousel overrides */
.owl-carousel .owl-item {
    display: flex;
    align-items: stretch;
}

.owl-carousel .owl-item .slide-item {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Slick carousel compatibility */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-initialized .slick-slide {
    display: block;
}

/* GC Carousel specific fixes */

.gc-carousel .slick-slide {
    padding: 0 10px;
    box-sizing: border-box;
    outline: none;
}

.gc-carousel .gc-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.gc-carousel .gc-item {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.gc-carousel .gc-background {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 20rem;
}

/* Fix for potential Slick button conflicts */
.gc-carousel .slick-prev,
.gc-carousel .slick-next {
    z-index: 10;
    width: 40px;
    height: 40px;
}

.slideshow-container i,
.slideshow-container h3 {
    color: #333;
    margin-bottom: 1.5rem;
}

.slideshow-container h3 {
    font-size: 1.5rem;
}

.next,
.prev {
    cursor: pointer;
    position: absolute;
    top: 40%;
    left: 0;
    width: fit-content;
    padding: .5rem;
    color: #fd6d3b;
    background: #fff;
    font-weight: 700;
    font-size: 1.75rem;
    transition: .6s ease;
    border-radius: 3px 0 0 3px;
    user-select: none
}

.next {
    right: 0;
    left: unset;
    border-radius: 0 3px 3px 0
}

.next:hover,
.prev:hover {
    background: #fd6d3b;
    background: linear-gradient(90deg, #fe523a 0%, #fcad40 100%);
    color: #fff;
    transition: .6s ease;
}

.dot {
    cursor: pointer;
    height: 1rem;
    width: 1rem;
    margin: 1.5rem 0.1rem 1rem 0.1rem;
    background: #fd6d3b;
    background: linear-gradient(90deg, #fe523a 0%, #fcad40 100%);
    border-radius: 50%;
    display: inline-block;
    border: solid 2px #f9f9f9;
    transition: all .6s ease;
}

.dot.active,
.dot:hover {
    background: #fff;
    border: solid 2px #fd6d3b;
    transition: all .6s ease;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}


.gform_wrapper {
  position: relative;
}


.gform_required_legend {
  display: none;
}

.dark-bg .gfield_label.gform-field-label {
  color: #fff;
}

.gc-item {
  padding: 3rem;
  position: relative;
  z-index: 1;
}

/* Fix for carousel before Slick initialization */
.gc-carousel:not(.slick-initialized) {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.gc-carousel:not(.slick-initialized) .gc-link {
  flex: 0 0 25%; /* Show 4 items at 25% width each */
  max-width: 25%;
}

/* Slick carousel specific fixes */
.gc-carousel .slick-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.gc-carousel .gc-link {
  display: block;
  width: 100%;
  height: 100%;
}

.gc-carousel .gc-item {
  height: 100%;
  display: flex;
  align-items: stretch;
}

.gc-carousel .gc-background {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}


.gc-link .more {
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.gc-background {
  background-color: #f9f9f9;
  border-radius: 1rem;
  padding: 2rem 1rem;
  -webkit-box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%), inset 33px -90px 103px 0px rgba(255,255,255,1);
  -moz-box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%), inset 33px -90px 103px 0px rgba(255,255,255,1);
  box-shadow: 0px -1px 17px 2px rgb(195 195 195 / 50%), inset 33px -90px 103px 0px rgba(255,255,255,1);
  height: 20rem;
  position: relative;
  top: 0rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.gc-link:hover .gc-background {
  top: -0.25rem;
}


.gc-link:hover .more {
  color: #fe9472;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.gc-link:hover .chevron:before {
  left: 0.25rem;
}

.gc-background h3 {
  margin-bottom: 1rem;
}

.gc-background .more {
  position: absolute;
  bottom: 0;
  font-weight: 600;
}




@media only screen and (min-width:735px) {
  .flex {
    display: flex;
  }
  .two-column .column:first-child {
    padding-right: 50px;
  }
  .hero {
    padding-top: 100px;
  }
  .faqs-answer.open {
    max-height: 10rem;
  }

  .slideshow-container {
    padding: 0rem 5rem;
  }

  .gc-carousel {
    margin: 0;
  }
  
  .gc-carousel:not(.slick-initialized) .gc-link {
    flex: 0 0 50%; /* Show 2 items on tablet */
    max-width: 50%;
  }

  .gc-item {
    padding: 1rem;
  }

  .gc-background {
    height: 25rem;
  }
}

@media only screen and (max-width: 734px) {
  .gc-carousel:not(.slick-initialized) .gc-link {
    flex: 0 0 100%; /* Show 1 item on mobile */
    max-width: 100%;
  }

  .slick-prev {
    left: -2.75rem;
  }
  .slick-next {
    right: -1.5rem;
  }
}


@media only screen and (min-width:1069px) {
  .medium-flex {
    display: flex;
  }

  

}
