/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px

* $breakpoint argument choices
- phone
- tablet-port
- tablet-landscape
- big-desktop
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes alternateUpAndDown {
  0% {
    top: 52vh;
  }
  50% {
    top: 55vh;
  }
  100% {
    top: 52vh;
  }
}
@keyframes scaleIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes o-rotate-360 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes navItemColor {
  0% {
    color: inherit;
  }
  100% {
    color: yellow;
  }
}
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px

* $breakpoint argument choices
- phone
- tablet-port
- tablet-landscape
- big-desktop
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
}

main {
  overflow: hidden;
}

html {
  font-size: 62.5%;
  /*@include respond(phone) {
      html {
          font-size: 50%;
      }
  }*/
}
@media (min-width: 1025px) {
  html {
    /* big landscape tablets, laptops, and desktops */
  }
  html html {
    font-size: 80%;
  }
}
@media (min-width: 1281px) {
  html {
    /* hi-res laptops and desktops */
  }
  html html {
    font-size: 93.75%;
  }
}

@media (max-width: 1024px) {
  body {
    /* tablet, landscape iPad, lo-res laptops ands desktops */
    padding: 0;
  }
}
body body {
  box-sizing: border-box;
}

.wrapper {
  max-width: 120rem;
  width: 100%;
  margin: auto;
}
@media (max-width: 120rem) {
  .wrapper {
    padding: 0 2rem 0 2rem;
  }
}

::selection {
  background-color: #386c5f;
  color: #fff;
}

input {
  padding: 0.5rem;
  color: rgba(0, 0, 0, 0.8);
}

input:focus {
  border: 1px solid #386c5f;
  box-shadow: 0 0 3px #1670BE;
  outline-offset: 0px;
  outline: none;
}

/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px

* $breakpoint argument choices
- phone
- tablet-port
- tablet-landscape
- big-desktop
*/
h1,
h2,
h3,
h4,
h5 {
  font-family: Helvetica, sans-serif, Arial;
}

p {
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem;
}

a {
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem;
}

button {
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden;
}
.heading-primary--main {
  display: block;
  font-size: 6rem;
  font-weight: 600;
  letter-spacing: 0.5rem;
  line-height: 1;
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}
@media (max-width: 1024px) {
  .heading-primary--main {
    /* tablet, landscape iPad, lo-res laptops ands desktops */
    font-size: 3.7rem;
  }
}
@media (max-width: 481px) {
  .heading-primary--main {
    /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
    letter-spacing: 1rem;
    font-family: 3.7rem;
  }
}
.heading-primary--main {
  /*
      animation-delay: 3s;
      animation-iteration-count: 3;
      */
}
.heading-primary--sub {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  animation: moveInRight 1s ease-out;
}
@media (max-width: 481px) {
  .heading-primary--sub {
    /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
    letter-spacing: 0.5rem;
  }
}

.heading-secondary {
  font-size: 3.7rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #3b5c41, #2d5a4a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
}
@media (max-width: 1024px) {
  .heading-secondary {
    /* tablet, landscape iPad, lo-res laptops ands desktops */
    font-size: 3.2rem;
  }
}
@media (max-width: 481px) {
  .heading-secondary {
    /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
    font-size: 2.8rem;
  }
}
.heading-secondary:hover {
  transform: scale(1.25);
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
}

.heading-tertiary {
  font-size: 2.3rem;
  font-weight: 700;
  text-transform: uppercase;
}

.heading-quaternary {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
}

/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px

* $breakpoint argument choices
- phone
- tablet-port
- tablet-landscape
- big-desktop
*/
.u-center-text {
  text-align: center !important;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

.gradient-masked {
  background-image: linear-gradient(174deg, #3b5c41, #2d5a4a);
  /* Use the image as a mask */
  -webkit-mask-image: var(--mask);
  mask-image: var(--mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center;
  mask-position: center;
  /* Size the box to your needs */
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

.quote-cta {
  padding: 10rem 0 30rem 0;
}
.quote-cta .quote-cta_container {
  text-align: center;
}
.quote-cta .quote-cta_container h2 {
  display: block !important;
  margin-bottom: 2rem;
}
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px

* $breakpoint argument choices
- phone
- tablet-port
- tablet-landscape
- big-desktop
*/
.testimonials {
  background-image: linear-gradient(to right bottom, #2d5a4a, #f0bc2f);
  color: white;
  background-size: cover;
  background-position: top;
  position: relative;
  padding-top: 10rem;
  padding-bottom: 10rem;
  height: auto;
  box-shadow: inset 0px 0px 8px 0.2px rgba(60, 60, 60, 0.7294117647);
}
.testimonials h2.heading-secondary {
  text-align: center;
  display: block;
  color: white;
  background: none;
  -webkit-text-fill-color: white;
}
.testimonials #carouselTestimonialsControls {
  margin-top: 5rem;
}
.testimonials #carouselTestimonialsControls .testimonial-text {
  margin: auto;
  max-width: 75rem;
  text-align: center;
}
.testimonials #carouselTestimonialsControls .testimonial-text p {
  font-size: 2.1rem;
}
.testimonials #carouselTestimonialsControls .testimonial-text img {
  width: 8rem;
  height: auto;
  border-radius: 50%;
  margin: 1.5rem 0 1.5rem 0;
}
.testimonials #carouselTestimonialsControls .testimonial-text label {
  display: block;
  font-size: 1.8rem;
}
.testimonials #carouselTestimonialsControls .testimonial-text .testimonial-owner-name {
  margin-top: 1rem;
  font-weight: bold;
}
.testimonials #carouselTestimonialsControls .testimonial-text .testimonial-business-name {
  margin-top: 0.5rem;
}
.testimonials #carouselTestimonialsControls .carousel-control-next-icon,
.testimonials #carouselTestimonialsControls .carousel-control-prev-icon {
  width: 5rem;
  height: 5rem;
}
@media (max-width: 1024px) {
  .testimonials {
    /* tablet, landscape iPad, lo-res laptops ands desktops */
  }
  .testimonials .wrapper {
    padding: 0 2rem 0 2rem;
  }
  .testimonials #carouselTestimonialsControls .testimonial-text {
    max-width: 55rem;
  }
  .testimonials #carouselTestimonialsControls .carousel-control-next-icon,
  .testimonials #carouselTestimonialsControls .carousel-control-prev-icon {
    margin-bottom: -10rem;
  }
}
@media (max-width: 481px) {
  .testimonials {
    /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
  }
  .testimonials #carouselTestimonialsControls .testimonial-text {
    max-width: 35rem;
  }
  .testimonials #carouselTestimonialsControls .carousel-control-next-icon,
  .testimonials #carouselTestimonialsControls .carousel-control-prev-icon {
    margin-bottom: -22rem;
  }
}

/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px

* $breakpoint argument choices
- phone
- tablet-port
- tablet-landscape
- big-desktop
*/
.plans {
  margin: auto;
  margin-top: -10rem;
  margin-bottom: 5rem;
  text-align: center;
}
.plans h2 {
  padding-bottom: 6rem;
}
@media (max-width: 415px) {
  .plans {
    /* smartphones, iPhone, portrait 480x320 phones */
    margin-top: -3rem;
  }
}
.plans .plans-wrapper {
  display: flex;
  text-align: center;
  padding: 0 3rem 0 3rem;
}
@media (max-width: 1024px) {
  .plans .plans-wrapper {
    /* tablet, landscape iPad, lo-res laptops ands desktops */
    flex-direction: column;
    align-items: center;
  }
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0.5;
  overflow: hidden;
}
.bg-video__content {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.btn {
  border-radius: 2em;
  outline: none;
  text-transform: uppercase;
  font-size: 1.8rem !important;
  letter-spacing: 1px;
  font-weight: bold;
}
.btn__landing, .btn.btn__landing {
  background-color: white;
  width: 10em;
  height: 3em;
  color: #386c5f;
}
.btn__landing:hover, .btn.btn__landing:hover {
  background-color: #f0bc2f;
  color: white;
}
.btn__cta, .btn.btn__cta {
  background-color: #386c5f;
  width: 10em;
  height: 3em;
  color: white;
}
.btn__cta:hover, .btn.btn__cta:hover {
  background-color: #f0bc2f;
  color: white;
}
.btn__newsletter, .btn.btn__newsletter {
  background-color: #386c5f;
  width: 10em;
  height: 3em;
  color: white;
}
.btn__newsletter:hover, .btn.btn__newsletter:hover {
  background-color: #f0bc2f;
  color: white;
}

a.btn--white {
  background-color: white;
  width: 10em;
  padding: 1.5rem 0;
  color: #386c5f;
  text-transform: uppercase;
  font-weight: 700;
}
a.btn--white:hover {
  background-color: #f0bc2f;
  color: white;
}

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  height: 63rem;
  max-width: 37rem;
  display: flex;
  flex: auto !important;
  margin: 0 2rem 2rem 2rem;
  outline: none;
  border: none;
}
.card__side {
  height: 63rem;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
  border: none;
  outline: none;
  overflow: hidden;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}
.card__side--front {
  background-color: #fff;
}
.card__side--back {
  transform: rotateY(180deg);
}
.card__side--back-1 {
  background-image: linear-gradient(to right bottom, #2d5a4a, #f0bc2f);
}
.card__side--back-2 {
  background-image: linear-gradient(to right bottom, #2d5a4a, #3b5c41);
}
.card__side--back-3 {
  background-image: linear-gradient(to right bottom, #2d5a4a, #1c5b71);
}
.card:hover .card__side--front {
  transform: rotateY(-180deg);
}
.card:hover .card__side--back {
  transform: rotateY(0);
}
.card__picture {
  background-size: cover;
  height: 22rem;
  background-blend-mode: screen;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.card__picture img {
  object-fit: cover;
  width: 37rem;
  height: auto;
  margin-top: -1rem;
}
.card__picture--1 {
  background-image: linear-gradient(to right bottom, #2d5a4a, #f0bc2f), url(../img/nat-5.jpg);
}
.card__picture--2 {
  background-image: linear-gradient(to right bottom, #2d5a4a, #2d5a4a), url(../img/nat-6.jpg);
}
.card__picture--3 {
  background-image: linear-gradient(to right bottom, #2d5a4a, #1c5b71), url(../img/nat-7.jpg);
}
.card__heading {
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  z-index: 100;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 19rem;
  width: 100%;
}
.card__heading-span {
  padding: 1rem 1.5rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.card__heading-span--1 {
  background-image: linear-gradient(to right bottom, rgba(240, 188, 47, 0.85), rgba(240, 188, 47, 0.85));
}
.card__heading-span--2 {
  background-image: linear-gradient(to right bottom, rgba(59, 92, 65, 0.85), rgba(45, 90, 74, 0.85));
}
.card__heading-span--3 {
  background-image: linear-gradient(to right bottom, rgba(85, 141, 165, 0.85), rgba(28, 91, 113, 0.85));
}
.card__details {
  margin-top: -2rem;
  padding: 5rem;
}
.card__details ul {
  list-style: none;
  width: 80%;
  margin: 0 auto;
}
.card__details ul li {
  text-align: center;
  font-size: 1.8rem;
  padding: 1rem;
}
.card__details ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.card__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}
.card__price-box {
  text-align: center;
  color: #fff;
  margin-bottom: 8rem;
}
.card__price-only {
  font-size: 1.4rem;
  text-transform: uppercase;
}
.card__price-value {
  font-size: 4rem;
  font-weight: 100;
}
@media (max-width: 1024px) {
  .card {
    /* tablet, landscape iPad, lo-res laptops ands desktops */
    height: auto;
    max-width: 45rem;
    width: 100%;
    margin-bottom: 5rem;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  }
  .card__side {
    height: auto;
    position: relative;
    box-shadow: none;
  }
  .card__side--back {
    transform: rotateY(0);
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
  }
  .card:hover .card__side--front {
    transform: rotateY(0);
  }
  .card__details {
    padding: 4rem 2rem;
  }
  .card__picture img {
    width: 45rem;
  }
  .card__cta {
    position: relative;
    top: 0%;
    left: 0;
    transform: translate(0);
    width: 100%;
    padding: 7rem 4rem 4rem 4rem;
  }
  .card__price-box {
    margin-bottom: 3rem;
  }
  .card__price-value {
    font-size: 4rem;
  }
}
@media only screen and (min-device-width: 1366px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .card {
    /* tablet landscape */
    height: auto;
    max-width: 45rem;
    width: 100%;
    margin-bottom: 5rem;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  }
  .card__side {
    height: auto;
    position: relative;
    box-shadow: none;
  }
  .card__side--back {
    transform: rotateY(0);
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
  }
  .card:hover .card__side--front {
    transform: rotateY(0);
  }
  .card__details {
    padding: 4rem 2rem;
  }
  .card__picture img {
    width: 45rem;
  }
  .card__cta {
    position: relative;
    top: 0%;
    left: 0;
    transform: translate(0);
    width: 100%;
    padding: 7rem 4rem 4rem 4rem;
  }
  .card__price-box {
    margin-bottom: 3rem;
  }
  .card__price-value {
    font-size: 4rem;
  }
}

/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px

* $breakpoint argument choices
- phone
- tablet-port
- tablet-landscape
- big-desktop
*/
/* Root RFQ block */
.rfq {
  max-width: 96rem;
  margin: 3rem auto 6rem;
  padding: 2rem;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.12);
}
@media (max-width: 1024px) {
  .rfq {
    /* tablet, landscape iPad, lo-res laptops ands desktops */
    padding: 1.6rem;
    margin: 2rem auto 4rem;
  }
}
.rfq {
  /* Alerts */
}
.rfq__alert {
  padding: 1.2rem 1.6rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  margin: 0 0 1.6rem 0;
  line-height: 1.5;
}
.rfq__alert--success {
  background: rgba(61, 179, 110, 0.12);
  color: #135e2d;
  border: 1px solid rgba(61, 179, 110, 0.35);
}
.rfq__alert--error {
  background: rgba(220, 53, 69, 0.1);
  color: #8a1c1c;
  border: 1px solid rgba(220, 53, 69, 0.35);
}
.rfq {
  /* Form layout */
}
.rfq__form {
  display: grid;
  gap: 1.6rem;
}
.rfq__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
@media (max-width: 1024px) {
  .rfq__row {
    /* tablet, landscape iPad, lo-res laptops ands desktops */
    grid-template-columns: 1fr;
  }
}
.rfq__field {
  display: flex;
  flex-direction: column;
}
.rfq__field--full {
  grid-column: 1/-1;
}
.rfq__field label {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: rgba(0, 0, 0, 0.8);
}
.rfq__field input,
.rfq__field select,
.rfq__field textarea {
  appearance: none;
  width: 100%;
  padding: 1.1rem 1.2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.85);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.8rem;
  transition: box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}
.rfq__field input::placeholder,
.rfq__field select::placeholder,
.rfq__field textarea::placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.rfq__field input:hover,
.rfq__field select:hover,
.rfq__field textarea:hover {
  border-color: rgba(0, 0, 0, 0.25);
}
.rfq__field input:focus,
.rfq__field select:focus,
.rfq__field textarea:focus {
  outline: none;
  border-color: #3b5c41;
  box-shadow: 0 0 0 0.25rem rgba(59, 92, 65, 0.2);
  background: #fff;
}
.rfq__field input,
.rfq__field select,
.rfq__field textarea {
  /* Invalid state hook (add .is-invalid via JS if needed) */
}
.rfq__field input.is-invalid,
.rfq__field select.is-invalid,
.rfq__field textarea.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.18);
}
.rfq__field {
  /* Nice file input */
}
.rfq__field input[type=file] {
  padding: 0.8rem;
  font-size: 1.5rem;
  background: #fafafa;
  border-style: dashed;
}
.rfq__field input[type=file]:hover {
  background: #f6f6f6;
}
.rfq__field {
  /* Number inputs sane UI */
}
.rfq__field input[type=number]::-webkit-outer-spin-button, .rfq__field input[type=number]::-webkit-inner-spin-button {
  margin: 0;
}
.rfq {
  /* Actions */
}
.rfq__actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  margin-top: 0.8rem;
}
.rfq__actions .btn {
  border-radius: 0.8rem;
  padding: 1.1rem 1.6rem;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  font-weight: 700;
}
.rfq__actions {
  /* Ensure your orange CTA variant looks great here */
}
.rfq__actions .btn__cta {
  background-color: #386c5f !important;
  color: #fff !important;
}
.rfq__actions .btn__cta:hover {
  background-color: #f0bc2f !important;
  color: #fff !important;
}
.rfq {
  /* Small helper text style (if you add any) */
}
.rfq__help {
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0.4rem;
}

/* Optional: dark-on-gradient containers (if RFQ sits over a colored section) */
.rfq--elevated {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(120%) blur(4px);
}

/* Accessibility & motion preferences */
@media (prefers-reduced-motion: reduce) {
  .rfq * {
    transition: none !important;
  }
}
/* Tight integration with your page content width */
.page .page-wrapper .rfq {
  margin-top: 2rem;
}

/* Tidy headings above the form (use your existing heading classes if present) */
.page .page-wrapper h1 + .rfq p {
  text-align: center;
  margin: 0 0 1.2rem 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.6rem;
}

/* Ensure form elements look crisp on mobile */
@media (max-width: 415px) {
  /* smartphones, iPhone, portrait 480x320 phones */
  .rfq__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px

* $breakpoint argument choices
- phone
- tablet-port
- tablet-landscape
- big-desktop
*/
.service {
  background-color: #f7f7f7;
  position: relative;
  padding: 10rem 2rem 5rem 2rem;
}
.service h2 {
  padding-bottom: 3rem;
}
.service .wrapper {
  display: flex;
  justify-content: center;
}
.service i {
  position: relative;
  border-radius: 25px;
  background: #e0e2de;
  width: 2em;
  display: inline-block;
  padding: 10px;
  margin: 0.75em auto;
  font-size: 2.5em;
}
.service__wrapper {
  width: 34rem;
  height: 36rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px -10px rgba(0, 64, 128, 0.2);
  border-radius: 8px;
}
@media (max-width: 415px) {
  .service__wrapper {
    /* smartphones, iPhone, portrait 480x320 phones */
    width: 30rem !important;
    height: 36rem !important;
  }
}
.service__container {
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}
.service__container p {
  font-size: 1.6rem;
}
.service__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  text-align: center;
  padding: 0 !important;
}
.service__list li {
  display: block;
  margin: 3rem 2rem 3rem 2rem;
}
@media (max-width: 415px) {
  .service__list li {
    /* smartphones, iPhone, portrait 480x320 phones */
    margin: 0em;
    margin-top: 5em;
  }
}
.service .rainbow {
  width: 100%;
  height: 100%;
  animation: o-rotate-360 linear 16s infinite;
}
.service .rainbow span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transform: translate(-50%, -50%);
}
.service .rainbow span:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 100%;
}
.service .rainbow span:first-child {
  background: #3b5c41;
}
.service .rainbow span:first-child:after {
  background: #fff;
}
.service .rainbow span:last-child {
  background: #fff;
}
.service .rainbow span:last-child:after {
  background: #386c5f;
}

/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px

* $breakpoint argument choices
- phone
- tablet-port
- tablet-landscape
- big-desktop
*/
.difference {
  background-color: rgba(3, 3, 3, 0.65);
  color: white;
  background-size: cover;
  background-position: top;
  position: relative;
  padding-top: 10rem;
  padding-bottom: 10rem;
  height: auto;
}
.difference .wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.difference .wrapper h2 {
  text-align: center;
  display: block;
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  padding-bottom: 5rem;
}

.story {
  max-width: 80rem;
  min-height: 30rem;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5rem 4rem 5rem 4rem;
  margin: 2rem 0 2rem 0;
  font-size: 2.6rem;
  border-radius: 1em;
}
.story__shape {
  width: 10rem;
  height: 10rem;
  float: left;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 1rem 1rem 0;
}
@supports (clip-path: polygon(0 0)) or (-webkit-clip-path: polygon(0 0)) {
  .story__shape {
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    -webkit-shape-outside: circle(50% at 50% 50%);
    shape-outside: circle(50% at 50% 50%);
    border-radius: none;
  }
}
.story__picture {
  float: right;
  overflow: hidden;
}
.story__picture img {
  width: 100%;
  width: 25rem;
  height: auto;
  margin: 0 0 1rem 3rem;
}
.story__img {
  height: 100%;
  float: left;
}
.story__img-static {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: white;
}
.story__img-active {
  width: 100px;
  height: 100px;
}
.story__img {
  transition: all 0.5s;
}
.story__text {
  transform: translate(3%, 0%);
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.8rem;
  max-width: 85%;
}
.story__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20%);
  color: #fff;
  text-transform: uppercase;
  font-size: 1.7rem;
  text-align: center;
  opacity: 0;
  transition: all 0.5s;
  backface-visibility: hidden;
}
.story:hover .story__img-static {
  opacity: 0;
}

@media (max-width: 703px) {
  .story {
    display: flex;
    flex-direction: column-reverse;
    border-radius: 0;
    box-shadow: inset 0px 0px 7px 0.1px rgba(60, 60, 60, 0.7294117647);
    max-width: 100%;
  }
  .story .story__shape {
    display: none;
  }
  .story .story__picture {
    margin: 2rem 2rem 0 auto;
  }
  .difference .wrapper {
    padding: 0;
  }
  .difference .wrapper h2 {
    padding-bottom: 6rem;
  }
}
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px

* $breakpoint argument choices
- phone
- tablet-port
- tablet-landscape
- big-desktop
*/
.elementor-page header {
  position: relative !important;
}
.elementor-page main {
  position: relative !important;
  margin-top: -15rem;
}
.elementor-page main .page-wrapper h1.u-center-text {
  display: none !important;
}
@media (max-width: 415px) {
  .elementor-page main {
    /* smartphones, iPhone, portrait 480x320 phones */
    margin-top: -5 !important;
  }
}

.top-header {
  background: #fff;
  padding: 0.6rem 2rem;
  width: auto;
}
.top-header i,
.top-header a,
.top-header label {
  color: #3b5c41;
  font-size: 1.8rem;
  text-decoration: none;
}
.top-header a:hover {
  color: #f0bc2f;
}
.top-header i {
  margin-right: 1rem;
}
.top-header label {
  margin: 0 2rem;
  font-weight: 600;
}
.top-header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.top-header__form {
  display: flex;
  align-items: center;
}
.top-header__form form {
  display: flex;
}
.top-header__form form input[type=number] {
  border: none;
  border-radius: 3px;
  outline: none;
}
.top-header__form form .btn {
  border-radius: 3px;
  width: auto;
  height: auto;
  font-size: 1.5rem !important;
  padding: 0.25rem 1.5rem;
  margin-left: 2rem;
}
.top-header {
  /*@media (max-width: 825px) {
        .wrapper {
            justify-content: center;

            div:last-child {
                display: none
            }
        }
    }
    @media (max-width: 620px) {
        display: none;
    }*/
}

/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px

* $breakpoint argument choices
- phone
- tablet-port
- tablet-landscape
- big-desktop
*/
.footer {
  position: relative;
  background: #385d3f;
  background: linear-gradient(174deg, #385d3f 10%, rgb(86, 67, 250) 75%, rgb(36, 27, 119) 100%);
  color: white;
  padding-top: 14em;
  padding-bottom: 5rem;
  font-size: 1.8rem;
  text-align: center;
  width: 100%;
  overflow: hidden;
}
.footer a,
.footer a:visited,
.footer a:active,
.footer a:focus,
.footer a:focus-visible {
  color: white !important;
  text-decoration: none;
  outline: none;
}
.footer .wrapper {
  display: flex;
  justify-content: space-between;
}
.footer__main {
  display: flex;
  justify-content: space-around;
}
.footer__main__newsletter {
  text-align: left;
}
.footer__main__newsletter input {
  display: block;
  width: 100%;
}
.footer__main__newsletter form input:first-child {
  margin: 1.5rem 0 2rem 0;
}
.footer__main__headline {
  flex: 2;
  margin: 0 4rem 0 4rem;
  text-align: left;
}
.footer__main__social {
  display: flex;
  flex-direction: column;
  text-align: right;
}
.footer__main__social a {
  text-decoration: none;
  color: white;
}
.footer__main__social a i.fab {
  color: white;
  font-size: 2.5rem;
  margin: 0 1rem 0 1rem;
}
.footer__main__social a i.fab:hover {
  color: #386c5f;
}
.footer__main__social div:last-child li {
  list-style: none;
  margin-top: 1.3rem;
}
.footer__main__social div:last-child a:hover {
  color: #386c5f;
}
.footer__main__social div:last-child .menu-footer-main-container ul {
  display: flex;
  flex-direction: column;
  border: none;
}
.footer__main__social div:last-child .menu-footer-main-container ul li a {
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-size: 1.5rem;
}
.footer__main__newsletter, .footer__main__social {
  flex: 1;
}
.footer__main h3 {
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .footer__main {
    /* tablet, landscape iPad, lo-res laptops ands desktops */
    flex-direction: column;
  }
  .footer__main__headline {
    margin: 4rem 0 3rem 0;
  }
  .footer__main__social {
    text-align: center;
  }
  .footer__main__social .menu-footer-main-container {
    margin-top: 2rem;
  }
  .footer__main__social .menu-footer-main-container ul li {
    margin-top: 2rem;
  }
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  border-top: solid 2px rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
}
.footer__bottom label {
  font-size: 1.5rem;
  opacity: 0.8;
}
.footer__bottom .nav-tabs {
  border: none;
}
.footer__bottom ul {
  display: flex;
}
.footer__bottom ul li {
  list-style: none;
  text-align: right;
  margin-left: 3rem;
}
.footer__bottom ul a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.1rem;
  font-size: 1.4rem;
  opacity: 0.8;
  letter-spacing: 0.2rem;
}
.footer__bottom ul a:hover {
  color: #386c5f;
}
@media (max-width: 768px) {
  .footer__bottom {
    /* tablet, landscape iPad, lo-res laptops ands desktops */
    flex-direction: column-reverse;
    justify-content: center;
  }
  .footer__bottom ul {
    justify-content: center;
  }
  .footer__bottom ul li {
    margin: 0 1.5rem 2rem 1.5rem;
  }
}

.push-down {
  top: 22rem;
}

/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px

* $breakpoint argument choices
- phone
- tablet-port
- tablet-landscape
- big-desktop
*/
.header {
  position: relative;
  padding: 10rem 10rem;
  height: 70rem;
  width: 100%;
  background-image: linear-gradient(to left bottom, rgba(59, 92, 65, 0.8), rgba(45, 90, 74, 0.8));
  background-size: cover;
  background-position: top;
  overflow: hidden;
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
}
@media (min-width: 1281px) {
  .header {
    /* hi-res laptops and desktops */
  }
  .header .header__img-wrapper img {
    max-width: 55rem;
  }
}
@media (min-width: 1025px) {
  .header {
    /* big landscape tablets, laptops, and desktops */
  }
  .header .wrapper {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  .header {
    /* iPad Pro 12.9" */
    height: auto;
  }
  .header .header__img-wrapper {
    display: flex !important;
  }
  .header .header__img-wrapper img {
    max-width: 38vw;
    width: 45rem;
  }
}
@media (max-width: 1024px) {
  .header {
    /* tablet, landscape iPad, lo-res laptops ands desktops */
    height: auto;
    padding: 10rem 10rem 20rem 10rem;
  }
  .header .header__img-wrapper {
    display: none;
  }
}
@media (max-width: 481px) {
  .header {
    /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
    height: auto;
    padding: 5rem 2rem 10rem 2rem;
  }
  .header .heading-primary--main {
    letter-spacing: 0.4rem !important;
  }
  .header .heading-primary--sub {
    font-size: 2rem;
  }
}
.header__logo-box {
  top: 0;
  left: 0;
}
.header__logo {
  height: 3.5rem;
}
.header__text-box {
  position: relative;
  top: 25%;
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 20rem;
  max-width: 45rem;
  flex: 1;
}
.header__text-box p {
  font-weight: 500;
  font-size: 2rem;
  color: white;
  word-wrap: break-word;
  padding-bottom: 0.8rem;
  max-width: 50rem;
}
.header__text-box .heading-primary {
  padding-bottom: 0.5rem;
}
.header__text-box .heading-primary span:first-child {
  padding-bottom: 0.3rem;
}
.header__text-box .heading-primary span:last-child {
  color: #f0bc2f;
}
.header__text-box .heading-primary--sub {
  max-width: 40rem;
}
.header__img-wrapper {
  flex: 1;
  display: flex;
  align-self: center;
  justify-content: center;
}
.header__heatmap-svg {
  position: relative;
  display: inline-block;
  top: 15%;
  left: 0;
  max-width: 30vw;
  width: 100%;
  height: auto;
  animation: scaleIn 1.25s ease;
}

/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px

* $breakpoint argument choices
- phone
- tablet-port
- tablet-landscape
- big-desktop
*/
/* ===============================
   Navbar (fixed for iPhone Safari)
   - Ensures dropdown appears above decorative layers
   - Fixes invalid padding rule
   - Avoids iOS stacking-context pitfalls
   =============================== */
.navbar {
  position: relative;
  z-index: 200;
  width: 100%;
  /* z-index only works with positioned elements */
}
.navbar .wrapper {
  position: relative;
  z-index: 100;
}
.navbar {
  /* Dropdown base */
}
.navbar .dropdown-menu {
  position: absolute;
  z-index: 2000;
  left: 0;
  width: 100%;
  outline: none;
  border: none;
  margin-top: 1rem !important;
  background-color: rgba(51, 51, 51, 0.6666666667);
  perspective: none;
  -webkit-transform: translateZ(0);
  will-change: transform;
}
.navbar .dropdown-menu.show {
  animation: growDown 300ms ease-in-out forwards;
  transform-origin: top center;
  text-align: right;
  margin: 0;
}
.navbar .dropdown-menu.show a.dropdown-item {
  padding: 1rem 2rem 1rem 0;
  color: white;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  background: none;
}
@keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(0.8);
  }
  100% {
    transform: scaleY(1);
  }
}
.navbar__themed {
  background-color: #fff !important;
}
.navbar__themed ul {
  font-size: medium;
}
.navbar__themed ul li {
  float: left;
  list-style-type: none;
  width: auto;
  margin: 2rem;
}
@media (max-width: 1024px) {
  .navbar__themed ul li {
    /* tablet, landscape iPad, lo-res laptops ands desktops */
    float: none !important;
    text-align: center;
  }
}
.navbar__themed .nav-link {
  text-transform: uppercase;
  /* FIX: previous rule was invalid and could be ignored by Safari */
  padding: 1rem 2rem; /* top/bottom 1rem, left/right 2rem */
  margin: 0 2rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease-out;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
}
.navbar__themed .nav-link:hover:active, .navbar__themed .nav-link:hover:link, .navbar__themed .nav-link:hover:visited, .navbar__themed .nav-link:hover:hover {
  color: #000;
}
.navbar__themed #primaryNav {
  padding: 0rem 0;
  margin: 0;
  flex-grow: 0 !important;
}
.navbar__themed #primaryNav #menu-top-menu {
  margin: 0;
}
.navbar__themed #primaryNav.show {
  background-color: #fff;
}
@media (max-width: 415px) {
  .navbar__themed {
    /* smartphones, iPhone, portrait 480x320 phones */
    position: relative;
  }
  .navbar__themed .nav-link {
    color: black;
  }
}
.navbar__bg {
  min-height: 20rem;
  z-index: 5;
  background-image: linear-gradient(to left bottom, rgba(59, 92, 65, 0.8), rgba(45, 90, 74, 0.8));
}
@media (max-width: 415px) {
  .navbar__bg {
    /* smartphones, iPhone, portrait 480x320 phones */
    min-height: 15rem;
  }
}
.navbar__relative {
  position: relative;
  z-index: 100;
  width: 100%;
}
.navbar__relative .navbar-brand {
  color: white !important;
}
.navbar__relative .nav-link {
  color: white;
}
.navbar__relative .nav-link:hover {
  color: #f0bc2f !important;
}
@media (max-width: 415px) {
  .navbar__relative {
    /* smartphones, iPhone, portrait 480x320 phones */
    min-height: 0;
  }
}
.navbar-brand {
  font-weight: 400;
  text-decoration: none;
  font-size: 2rem;
}
.navbar .navbar-brand {
  margin: 0 0 0 2rem;
  width: 10rem;
  height: auto;
}
@media (max-width: 1024px) {
  .navbar {
    /* tablet, landscape iPad, lo-res laptops ands desktops */
  }
  .navbar .wrapper {
    margin: 1rem 2rem;
  }
}
.navbar {
  /* Mobile: render dropdown as an overlay so it can't be hidden */
}
@media (max-width: 415px) {
  .navbar {
    /* smartphones, iPhone, portrait 480x320 phones */
  }
  .navbar .dropdown-menu {
    position: fixed;
    top: var(--nav-height, 60px);
    left: 0;
    right: 0;
    width: 100%;
    height: 30rem;
    max-height: calc(100vh - var(--nav-height, 60px));
    overflow-y: auto;
    z-index: 9999;
  }
  .navbar .navbar {
    min-height: 4rem !important;
  }
}
@media (max-width: 415px) and (max-width: 850px) {
  .navbar .navbar-toggler {
    outline: 2px dashed red !important;
  }
}
@media (max-width: 415px) {
  .navbar .navbar .navbar-collapse.collapse {
    display: none !important;
  }
  .navbar .navbar .navbar-collapse.collapse.show {
    display: block !important;
  }
  .navbar__bg {
    z-index: 0;
  }
}

/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px

* $breakpoint argument choices
- phone
- tablet-port
- tablet-landscape
- big-desktop
*/
html {
  font-family: "IBM Plex Sans", sans-serif;
}

.video-story {
  position: relative;
  width: 100%;
  height: 60vh;
}

.wave-color {
  background-image: linear-gradient(174deg, #3b5c41 10%, #2d5a4a 100%);
}

.wave-mask {
  background-image: linear-gradient(174deg, #3b5c41, #2d5a4a);
  /* Use the SVG as a mask so the gradient shows only where the SVG is opaque */
  -webkit-mask-image: var(--mask);
  mask-image: var(--mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center;
  mask-position: center;
  /* Size it like your old img */
  width: 100%;
  aspect-ratio: 1200/120;
  display: block;
}

.wave-mask-2 {
  background-image: linear-gradient(174deg, #3b5c41, #1c5b71);
  /* Use the SVG as a mask so the gradient shows only where the SVG is opaque */
  -webkit-mask-image: var(--mask);
  mask-image: var(--mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center;
  mask-position: center;
  /* Size it like your old img */
  width: 100%;
  aspect-ratio: 1200/120;
  display: block;
}

.wave-divider-top {
  position: relative;
  bottom: 15rem;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}
@media (max-width: 768px) {
  .wave-divider-top {
    /* tablet, landscape iPad, lo-res laptops ands desktops */
  }
  .wave-divider-top svg {
    width: 100rem !important;
  }
}
@media (max-width: 481px) {
  .wave-divider-top {
    /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
  }
  .wave-divider-top svg {
    width: 100rem;
  }
}
@media (max-width: 415px) {
  .wave-divider-top {
    /* smartphones, iPhone, portrait 480x320 phones */
    bottom: 10rem;
  }
}
@media (max-width: 560px) {
  .wave-divider-top svg {
    width: 100rem;
  }
}
.wave-divider-top svg {
  position: relative;
  display: block;
  width: calc(116% + 1.3px);
  height: 20.8em;
  transform: rotateY(180deg);
}
@media (max-width: 415px) {
  .wave-divider-top svg {
    /* smartphones, iPhone, portrait 480x320 phones */
    height: 108px;
  }
}
.wave-divider-top .shape-fill {
  fill: #ffffff;
}

.wave-divider-top-2 {
  position: relative;
  bottom: 20rem;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}
@media (max-width: 415px) {
  .wave-divider-top-2 {
    /* smartphones, iPhone, portrait 480x320 phones */
    bottom: 10rem;
  }
}
.wave-divider-top-2 svg {
  position: relative;
  display: block;
  width: calc(116% + 1.3px);
  height: 208px;
  transform: rotateY(180deg);
}
@media (max-width: 415px) {
  .wave-divider-top-2 svg {
    /* smartphones, iPhone, portrait 480x320 phones */
    height: 108px;
  }
}
.wave-divider-top-2 .shape-fill {
  fill: white;
}

.wave-divider-top-3 {
  position: relative;
  bottom: 0rem;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
  margin-top: -17rem;
}
@media (max-width: 768px) {
  .wave-divider-top-3 {
    /* tablet, landscape iPad, lo-res laptops ands desktops */
  }
  .wave-divider-top-3 svg {
    width: 100rem !important;
  }
}
@media (max-width: 415px) {
  .wave-divider-top-3 {
    /* smartphones, iPhone, portrait 480x320 phones */
    top: 20rem;
  }
}
.wave-divider-top-3 svg {
  position: relative;
  display: block;
  width: calc(116% + 1.3px);
  height: 208px;
  transform: rotateX(180deg);
}
@media (max-width: 415px) {
  .wave-divider-top-3 svg {
    /* smartphones, iPhone, portrait 480x320 phones */
    right: 15rem;
  }
}
.wave-divider-top-3 .shape-fill {
  fill: rgb(254, 254, 254);
}

.custom-shape-divider-bottom-1616631201 {
  position: relative;
  top: 15rem;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}
@media (max-width: 415px) {
  .custom-shape-divider-bottom-1616631201 {
    /* smartphones, iPhone, portrait 480x320 phones */
    top: 10.7rem;
  }
}

.custom-shape-divider-bottom-1616631201 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

.custom-shape-divider-bottom-1616631201 .shape-fill {
  fill: white;
}

/* Page content lists: bigger type, spacing, proper bullets */
.page .page-wrapper {
  /* Apply to classic + Gutenberg lists */
}
.page .page-wrapper ul,
.page .page-wrapper ol,
.page .page-wrapper .wp-block-list {
  margin: 1.2rem 0 1.6rem 0;
  padding-left: 5rem;
}
.page .page-wrapper li {
  font-size: 1.8rem;
  line-height: inherit;
  margin: 0.6rem 0;
}
.page .page-wrapper {
  /* Ensure bullets/numbers show even if a global reset nuked them */
}
.page .page-wrapper ul {
  list-style: disc outside;
}
.page .page-wrapper ol {
  list-style: decimal outside;
}
.page .page-wrapper {
  /* Nested lists slightly smaller and tighter */
}
.page .page-wrapper li > ul,
.page .page-wrapper li > ol {
  font-size: 1.6rem;
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
  padding-left: 2rem;
}

.heading-page {
  font-size: 3.5rem;
  font-weight: 500;
  text-transform: uppercase;
}

/*# sourceMappingURL=style.css.map */
