@font-face {
  font-family: "Bf 68 Bfa 40294322";
  src: url('../fonts/carlasansregular-BF68bfa40294322.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bf 68 Bfa 40288 Ba 0";
  src: url('../fonts/carlasanslight-BF68bfa40288ba0.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bf 68 Bfa 4027 B 1 D 1";
  src: url('../fonts/carlasanssemibold-BF68bfa4027b1d1.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bf 68 Bfa 40208569";
  src: url('../fonts/carlasansbold-BF68bfa40208569.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Optibakerdanmarkone;
  src: url('../fonts/OPTIBakerDanmarkOne.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --floral-white: #f9f6ef;
  --secondry: #18284a;
  --dark-orange-text: #df7258;
  --primary: #fb6f4e;
  --primary-shade1: #fd976e;
  --drop-shadow: #f9dbcf;
  --white: white;
  --drop-shaodow2: #ffe8df;
  --text-grey: #2e2e2ed1;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

body {
  background-color: var(--floral-white);
  color: var(--secondry);
  font-family: Lato, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 70px;
  font-weight: 900;
  line-height: 1.1;
}

h2 {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

p {
  letter-spacing: .5px;
  margin-bottom: 10px;
}

a {
  color: var(--dark-orange-text);
  font-weight: 400;
  text-decoration: none;
}

strong {
  font-weight: bold;
}

.page-wrapper {
  overflow: hidden;
}

.home-hero {
  padding-bottom: 60px;
}

.home-hero_master-wrapper {
  align-items: center;
}

.container {
  width: 100%;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

.page-padding {
  background-color: #ffebe100;
  padding-left: 40px;
  padding-right: 40px;
}

.navbar_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar_component {
  background-color: #0000;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar_logo-link {
  color: var(--secondry);
  padding-left: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.brand-logo-span {
  background-image: linear-gradient(to bottom, var(--primary), var(--primary-shade1));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.navbar_link {
  letter-spacing: .2px;
  transform-style: preserve-3d;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 16px;
  font-weight: 600;
  transition: all .2s;
}

.navbar_link:hover {
  transform: translate(0, -1px);
}

.navbar_link:active {
  transform: translate3d(0, 0, -10px);
}

.navbar_menu {
  perspective: 1000px;
  align-items: center;
  display: flex;
}

.button {
  letter-spacing: 1px;
  transform-style: preserve-3d;
  background-image: linear-gradient(118deg, #d6938b, #deaaa1);
  border-radius: 12px;
  padding: 1em 2.5em;
  font-family: "Bf 68 Bfa 40208569", Arial, sans-serif;
  font-weight: 600;
  transition: all .2s;
  box-shadow: 0 8px 20px -8px #fb6f4ea8;
}

.button:hover {
  transform: translate3d(0, 0, 10px);
  box-shadow: 0 11px 40px -8px #fb6f4e6e;
}

.button:active {
  transform: translate(0);
}

.button.small {
  padding: .8em 1.5em;
  font-size: 15px;
}

.button.link-type {
  box-shadow: none;
  color: #dda79e;
  background-color: #0000;
  background-image: none;
  padding-left: 2em;
  padding-right: 2em;
}

.button.outlined {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: #0000;
  background-image: none;
}

.button.newb {
  padding-top: .8em;
  padding-bottom: .8em;
}

.home-hero_content-grid {
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin: 5%;
  display: grid;
}

.home-hero_content-wrapper {
  max-width: 580px;
  padding-top: 60px;
  padding-bottom: 0;
  position: relative;
}

.button-wrapper {
  perspective: 1000px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 50px;
  display: flex;
}

.button-wrapper.flex-vertical {
  flex-direction: column;
  align-items: flex-start;
}

.button-watch-video {
  color: var(--secondry);
  letter-spacing: 1px;
  justify-content: center;
  align-items: center;
  font-family: Exo, sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.button-watch-video_text {
  color: #fff;
  margin-left: 15px;
}

.home-hero_watch-video-wrapper {
  margin-left: 36px;
}

.button-watch-video_icon {
  border-radius: 50%;
  transition: all .2s;
  box-shadow: 0 3px 5px -2px #fb6f4e63;
}

.button-watch-video_icon:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px -10px #fb6f4e66;
}

.button-watch-video_icon:active {
  transform: scale(1);
}

.text-grey {
  color: #000000d1;
  font-weight: 400;
}

.margin-right-xsmall {
  margin-right: 10px;
}

.home-hero_image-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.home-hero_deco-layer1 {
  z-index: -1;
  opacity: .2;
  position: absolute;
  inset: -3% auto auto 0%;
}

.home-hero_deco-layer2 {
  z-index: -1;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 0% 0% 0;
}

.home-hero_deco-layer3 {
  z-index: -1;
  opacity: .6;
  position: absolute;
  inset: auto auto 0% 0%;
}

.home-hero_deco-layer4 {
  z-index: -1;
  opacity: .6;
  position: absolute;
  inset: auto 0% 32% auto;
}

.home-hero_deco-layer5 {
  z-index: -1;
  opacity: .6;
  position: absolute;
  inset: 10vh auto auto 5%;
}

.home-about.background-white {
  position: relative;
}

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

.padding-vertical-large {
  padding-top: 96px;
  padding-bottom: 96px;
}

.grid-2-col {
  grid-column-gap: 64px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.home-about_image-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: max-content auto;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.home-about_image1, .home-about_image2 {
  box-shadow: 9px 9px 0 0 var(--drop-shadow);
  border-radius: 25px;
}

.align-right-pc-only {
  margin-left: auto;
}

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

.home-about_image-grid {
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.home-about_image3 {
  box-shadow: 9px 9px 0 0 var(--drop-shadow);
  border-radius: 25px;
}

.section-title {
  text-transform: none;
  border-bottom: 2px solid #dea8a0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
}

.home-about_deco-layer {
  z-index: -1;
  opacity: .4;
  position: absolute;
  inset: auto auto 0% 0%;
}

.home-about_deco-layer.newj1 {
  opacity: .1;
}

.pad-top-zero {
  padding-top: 0;
}

.home-programs.background-white {
  background-color: #fff0;
}

.section-heading-wrapepr {
  z-index: 0;
  margin-bottom: 80px;
  position: relative;
}

.section-heading-wrapepr.align-center-pc-only {
  margin-bottom: 140px;
}

.align-center-pc-only {
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.max-small {
  max-width: 768px;
}

.max-small.text-grey {
  font-size: 18px;
  line-height: 1.4;
}

.grid-3-col {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.program-card {
  z-index: 1;
  background-color: #dca49c;
  background-image: linear-gradient(#dca49c, #ac807a);
  border-radius: 20px;
  padding: 2em;
  position: relative;
}

.program-card.newcard1 {
  margin-top: -60px;
}

.program-card_icon {
  border-radius: 15px;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.text-size-small {
  color: #fff8f5;
  font-size: 16px;
  font-weight: 300;
}

.text-size-small.margin-top-xsmall {
  color: #dba39a;
}

.button-outlined {
  border: 2px solid var(--primary);
  color: var(--primary);
  letter-spacing: 1px;
  transform-style: preserve-3d;
  background-color: #0000;
  border-radius: 12px;
  padding: 1em 2.5em;
  font-family: Exo, sans-serif;
  font-weight: 600;
  transition: all .2s;
  box-shadow: 0 10px 40px -13px #fb6f4e61;
}

.button-outlined:hover {
  transform: translate3d(0, 0, 10px);
  box-shadow: 0 15px 40px -7px #fb6f4e59;
}

.button-outlined:active {
  transform: translate(0);
}

.button-outlined.small {
  padding: .8em 1.5em;
  font-size: 15px;
}

.button-outlined.link-type {
  box-shadow: none;
  color: var(--dark-orange-text);
  background-color: #0000;
  background-image: none;
  padding-left: 2em;
  padding-right: 2em;
}

.program-card_deco-layer {
  z-index: -1;
  opacity: .05;
  width: 30%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.home-testimonial.background-pattern1 {
  background-image: linear-gradient(#fff8f5, #fff8f5), url('../images/19.svg');
  background-position: 0 0, 0 0;
  border-top-style: none;
  border-bottom-style: none;
}

.home-testimonial-grid {
  grid-column-gap: 64px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.testimonial-slider {
  perspective: 1000px;
  background-color: #fff;
  border-radius: 20px;
  height: auto;
  padding: 64px;
  box-shadow: 1px 1px 80px -20px #fb6f4e17;
}

.testimonial-slider_icon {
  border: 1px solid var(--drop-shadow);
  color: #fff;
  transform-style: preserve-3d;
  background-color: #fff;
  background-image: linear-gradient(#dca49c, #dda79e);
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: all .2s;
  display: flex;
  box-shadow: 0 4px #f9dbcf;
}

.testimonial-slider_icon:hover {
  transform: translate3d(0, 0, 20px);
}

.testimonial-slider_icon:active {
  transform: translate(0);
}

.testmonial-slider_left-arrow {
  perspective: 1000px;
  inset: 0% auto 0% -40px;
}

.testmonial-slider_right-arrow {
  perspective: 1000px;
  inset: 0% -40px 0% auto;
}

.testimonial-slider_client-wrapper {
  align-items: center;
  margin-top: 60px;
  display: flex;
}

.testimonial-slider_headshot {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.testimonial-slider_client-name-wrapper {
  margin-left: 20px;
}

.text-bold {
  font-weight: 700;
}

.testimonial-slider_text {
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.testimonial_deco-image {
  opacity: .4;
  position: absolute;
  inset: -50px 0% auto auto;
}

.home-testimonial_deco-layer {
  opacity: .05;
  position: absolute;
  inset: 0% 0% auto auto;
}

.position-relative {
  position: relative;
}

.home-blog.background-white {
  background-color: #fff8f5;
}

.testimonial-slider_hidden-nav {
  display: none;
}

.blog-card-list {
  grid-column-gap: 30px;
  grid-row-gap: 35px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-card_component {
  color: var(--secondry);
  flex-direction: column;
  height: 100%;
  display: flex;
}

.blog-card_thumbnail-warpper {
  width: 100%;
  font-size: 1vw;
  transition: all .2s;
}

.blog-card_thumbnail-warpper:hover {
  transform: translate(0, -5px);
}

.blog-card_thumbnail-warpper:active {
  transform: translate(0);
}

.blog-card_content-wrapper {
  background-color: var(--floral-white);
  box-shadow: 7px 7px 0 0 var(--drop-shaodow2);
  border: 2px solid #fb6f4e0d;
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-top: -9px;
  padding: 36px;
  display: flex;
  position: relative;
}

.text-size-medium {
  font-size: 22px;
  line-height: 1.6;
}

.text-size-medium.text-grey {
  color: #fff;
  margin-top: 25px;
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
}

.text-size-medium.margin-bottom-zero {
  color: #fff;
  font-family: Optibakerdanmarkone, Arial, sans-serif;
  font-size: 25px;
  font-weight: 400;
}

.blog-card_thumbnail {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
}

.section-heading-wrapper-2-col {
  grid-column-gap: 64px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-bottom: 80px;
  display: grid;
  position: relative;
}

.blog-card_deco-layer {
  opacity: .1;
  position: absolute;
  inset: auto 0% 0% auto;
}

.home-blog_deco-image {
  z-index: -1;
  opacity: .07;
  position: absolute;
  inset: auto 0% 0% auto;
}

.margin-top-zero {
  margin-top: 0;
}

.home-faq.background-white {
  background-color: #fff8f5;
}

.section-divider {
  background-color: var(--drop-shaodow2);
  height: 2px;
}

.padding-top-medium {
  padding-top: 43px;
}

.faq-card-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.faq-card {
  background-color: var(--floral-white);
  cursor: pointer;
  background-image: linear-gradient(#dca59d, #f1c1ba);
  border-radius: 15px;
  padding: 32px;
  box-shadow: 7px 7px #dca59d87;
}

.faq-card_question-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.faq-card_answer-wrapper {
  overflow: hidden;
}

.faq-card_icon {
  margin-left: 10px;
}

.margin-bottom-zero {
  margin-bottom: 0;
}

.faq-card_answer {
  margin-top: 20px;
}

.faq-card-master-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.margin-top-large {
  margin-top: 94px;
}

.blog-subscribe-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-image: linear-gradient(#f9f6eff2, #f9f6eff2), url('../images/86.svg');
  background-position: 0 0, 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 50%;
  border: 2px solid #fb6f4e12;
  border-radius: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding: 54px;
  display: grid;
}

.blog-subscribe-form_field-input {
  color: var(--secondry);
  border: 0 solid #000;
  border-radius: 5px;
  min-height: 60px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 77px;
  box-shadow: 0 0 40px 2px #fb6f4e1a;
}

.blog-subscribe-form_field-input::placeholder {
  color: #18284a66;
  letter-spacing: 1px;
  font-family: Exo, sans-serif;
  font-weight: 600;
}

.blog-subscribe-form_submit-button {
  background-image: linear-gradient(to bottom, var(--primary), var(--primary-shade1));
  color: #fff;
  letter-spacing: 1px;
  border-radius: 5px;
  font-family: Exo, sans-serif;
  font-weight: 500;
  transition: all .2s;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.blog-subscribe-form_submit-button:hover {
  transform: translate(3px);
}

.blog-subscribe-form_submit-button:active {
  transform: translate(0);
}

.blog-subscribe-form_wrapper {
  position: relative;
}

.form-success-message {
  background-color: var(--dark-orange-text);
  color: var(--white);
  letter-spacing: .2px;
  border-radius: 5px;
  font-family: Exo, sans-serif;
  font-size: 16px;
}

.form-error-message {
  letter-spacing: .2px;
  background-color: #ffc7c7;
  font-family: Exo, sans-serif;
  font-size: 15px;
}

.blog-subscribe-form_component {
  margin-bottom: 0;
}

.grid-2-col_single-image {
  box-shadow: 9px 9px 0 0 var(--drop-shadow);
  border-radius: 25px;
  width: 100%;
}

.max-xsmall {
  max-width: 550px;
}

.home-contact.background-pattern1 {
  background-color: #fff8f5;
  background-image: linear-gradient(#fff8f5, #fff8f5), url('../images/19.svg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: auto, auto;
  border-top-style: none;
  border-bottom-style: none;
}

.contact-form-wrapper {
  box-shadow: 7px 7px 0 0 var(--drop-shadow);
  background-color: #fff;
  border-radius: 20px;
  padding: 48px;
  position: relative;
}

.form-field {
  color: var(--secondry);
  background-color: #fff;
  border: 1px solid #df725866;
  border-radius: 7px;
  min-height: 60px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.form-field:focus {
  border-color: #df7258b3;
}

.form-field::placeholder {
  color: #18284a80;
  letter-spacing: 1px;
  font-family: Exo, sans-serif;
  font-weight: 600;
}

.form-field.area-large {
  min-height: 150px;
  padding-top: 20px;
}

.padding-bottom-large {
  padding-bottom: 94px;
}

.margin-top-xsmall {
  margin-top: 15px;
}

.contact-form_deco-image {
  opacity: .4;
  position: absolute;
  inset: 0% 0% auto auto;
}

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

.contact-link_icon {
  margin-right: 10px;
}

.footer {
  background-color: #fff;
  background-image: linear-gradient(#dca59d, #c79c95);
  padding: 10% 5% 10px;
}

.footer_logo-link {
  color: var(--secondry);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.footer_social-media-grid {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer_content-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer_content-wrapper.bottom {
  border-top: 2px solid #fb6f4e33;
  margin-top: 32px;
  padding-top: 32px;
  padding-bottom: 0;
}

.footer_link {
  color: var(--secondry);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
}

.footer_link:hover {
  color: var(--dark-orange-text);
}

.footer_link.legals {
  font-size: 14px;
}

.social-media-link {
  background-color: var(--drop-shaodow2);
  box-shadow: 3px 3px 0 0 var(--drop-shadow);
  cursor: pointer;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .2s;
  display: flex;
}

.social-media-link:hover {
  transform: translate(0, -1px);
}

.social-media-link:active {
  transform: translate(0);
}

.social-media-link_icon {
  object-fit: contain;
  width: 20px;
  height: 20px;
}

.home-mission.background-white {
  position: relative;
}

.margin-top-xxsmall {
  margin-top: 10px;
}

.social-media-link_descriptive-text {
  font-size: 14px;
  display: none;
}

.navbar_link-divider {
  padding-left: 10px;
  padding-right: 10px;
}

.home-testimonial_content-wrapper {
  max-width: 500px;
  position: relative;
}

.text-size-xsmall {
  font-size: 14px;
}

.home-faq_deco-layer {
  opacity: .2;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 25% 0% auto -52%;
}

.background-pattern1 {
  background-image: linear-gradient(#f9f6eff7, #f9f6eff7), url('../images/19.svg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: auto, auto;
  border-top: 2px solid #fb6f4e1a;
  border-bottom: 2px solid #fb6f4e1a;
}

.body {
  background-color: #ffebe157;
}

.brix---button-row-left-2 {
  margin-right: 24px;
}

.nav-main__menu {
  justify-content: center;
  display: flex;
}

.nav-menu-list {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.button-link-box {
  position: relative;
  overflow: hidden;
}

.f-icon-regular {
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  transition: color .2s;
  display: flex;
}

.f-icon-regular.newicon {
  color: #fff;
  width: 24px;
  height: 24px;
}

.text-block-52 {
  font-size: 18px;
}

.brix---color-neutral-101 {
  color: #fff;
}

.logo-2 {
  margin-top: -75px;
  margin-bottom: -92px;
  margin-right: -20px;
}

.navigation-link-03 {
  color: #fff;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
  text-decoration: none;
  transition: all .45s;
  display: flex;
}

.navigation-link-03:hover {
  color: #fff;
  transform: translate(4px, -4px);
}

.text-block-53 {
  color: #fff;
  margin-left: 0;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
}

.text-block-53.newph {
  font-size: 20px;
}

.nav-menu-item {
  justify-content: center;
  align-items: center;
  font-weight: 500;
  list-style-type: none;
  display: flex;
}

.navbar-open {
  display: none;
}

.menu-button {
  z-index: 999;
}

.nav__component {
  z-index: 99;
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-main__container {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 84rem;
  height: 6rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  position: relative;
}

.brix---buttons-row-2 {
  align-items: center;
  display: flex;
}

.footer-grid-2 {
  grid-column-gap: 42px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  margin-top: 100px;
}

.container-5 {
  z-index: 10;
  width: 100%;
  max-width: 1180px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.brix---btn-secondary {
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 1px #0003;
  transform-style: preserve-3d;
  background-color: #fff0;
  background-image: url('../images/untitled-1.svg'), url('../images/untitled-3.svg');
  background-position: 50%, 50%;
  background-size: cover, cover;
  border: 1px #bb9853;
  border-radius: 8px;
  padding: 20px 30px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  transition: all .45s;
  box-shadow: 0 4px 10px #14142b0a;
}

.brix---btn-secondary:hover {
  color: #fff;
  background-color: #e8bab6;
  background-image: url('../images/Blue-And-White-Modern-HVAC-Services-Poster-9.svg'), linear-gradient(358deg, #e8bab6, #dc886a);
  background-position: 50%, 0 0;
  background-size: cover, auto;
  border-style: none;
  border-color: #4a3aff;
  transform: translate3d(0, -4px, .01px);
  box-shadow: 0 4px 10px #e8bab6;
}

.button-link-text-absolute {
  position: absolute;
}

.nav-main__background {
  z-index: 0;
  opacity: 0;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background-color: #ffffff52;
  position: absolute;
  inset: 0%;
}

.icon-right-4 {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-left: 0;
  margin-right: 12px;
  display: flex;
}

.icon-right-4.g24 {
  width: 20px;
  height: 20px;
}

.footer-paragraph-2 {
  color: #fff;
  font-size: 16px;
  line-height: 28px;
}

.navigation-content {
  z-index: 5;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 20px 24px;
  display: flex;
  position: relative;
}

.navigation-list-2 {
  min-width: 290px;
}

.navigation-list-2.w--open {
  background-color: #0000;
  min-width: 290px;
  max-height: 100vh;
  padding-top: 30px;
  left: -80px;
}

.nav-link {
  color: #fff;
  letter-spacing: 1px;
  white-space: nowrap;
  cursor: pointer;
  padding: 12px 8px;
  font-family: Lato, sans-serif;
  font-size: 18px;
  line-height: 162%;
  text-decoration: none;
}

.navigation-dropdown-1 {
  margin-left: 0;
  margin-right: 0;
  position: relative;
}

.nav-logo__wrapper {
  height: 2rem;
}

.nav-logo-tablet {
  max-width: 180px;
}

.navmenu-tablet-only {
  display: none;
}

.text-block-51 {
  letter-spacing: normal;
  text-transform: capitalize;
  margin-right: 9px;
  font-size: 18px;
  font-weight: 500;
}

.brix---mg-bottom-40px {
  margin-bottom: 40px;
}

.brix---paragraph-default {
  text-shadow: 0 1px 1px #0003;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.nav-logo__image {
  height: 2rem;
}

.menu-link-2 {
  font-size: 16px;
  font-weight: 500;
}

.button-right-icon-9 {
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #d6938b;
  background-image: linear-gradient(#d6938b, #deaaa1);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 16px 32px;
  font-size: 21px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  position: relative;
}

.button-right-icon-9:hover {
  background-color: #008102;
  transform: translate(6px, -6px);
  box-shadow: 0 2px 5px #008102;
}

.button-right-icon-9:active {
  background-color: #160042;
}

.button-right-icon-9:focus {
  outline-offset: 0px;
  outline: 2px solid #b6b9ce;
}

.brix---grid-2-col---1-col-t-2 {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.navigation-toggle-2 {
  color: #fff;
  letter-spacing: 1px;
  margin-left: 0;
  padding: 16px;
  font-family: Lato, sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: all .2s;
}

.navigation-toggle-2:hover {
  color: #fff;
}

.chevron-2 {
  margin-top: 23.5px;
  margin-right: 5px;
}

.navigation-list-wrapper-3 {
  background-color: #dda89f;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
  overflow: visible;
  box-shadow: 8px 39px 65px -10px #0000001a;
}

.navigation-list-wrapper-3.w--open {
  background-color: #fff;
  border-radius: 15px;
  min-width: 300px;
  max-height: 100vh;
  left: -97px;
  box-shadow: 0 50px 25px -50px #20355a26, 8px 18px 60px 4px #00000021;
}

.button-small {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #43b97f;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  min-width: 11.25rem;
  min-height: 3rem;
  max-height: 3rem;
  padding: 0;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.25;
  transition: background-color .4s;
  display: flex;
  box-shadow: 0 16px 48px #43b97f3d;
}

.button-small:hover {
  background-color: #44db91;
}

.footer-link-2 {
  color: #fff;
  letter-spacing: -.02em;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
  display: block;
}

.footer-link-2:hover {
  color: #ffb7ea;
}

.brix---hero-bg-image-dark-header-top-2 {
  background-image: linear-gradient(#0009, #0009), url('../images/Untitled-design-1.png');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  padding-top: 234px;
  padding-bottom: 200px;
  position: relative;
  overflow: hidden;
}

.navbar-brand {
  height: 100%;
}

.brix---position-relative {
  position: relative;
}

.footer-link-column-2 {
  color: #fff;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.brix---heading-h1-size-2 {
  text-transform: capitalize;
  text-shadow: 0 1px 1px #0003;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Montserrat, sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 60px;
}

.footer-social-link-2 {
  flex: none;
  margin-right: 24px;
  transition: opacity .2s;
}

.footer-social-link-2:hover {
  opacity: .6;
}

.footer-link-title {
  color: #fff;
  white-space: nowrap;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.footer-social-links {
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.nav-menu-wrapper {
  background-color: #0000;
  border: 1px #000;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.nav-mobile__background {
  z-index: 998;
  background-color: #43b97f;
  display: none;
  position: fixed;
  inset: 0%;
}

.brix---container-default {
  max-width: 1218px;
  padding-left: 24px;
  padding-right: 24px;
}

.icon-regular-23 {
  color: #d12120;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  display: flex;
}

.icon-regular-23.new14 {
  color: #d12120;
  width: 20px;
  height: 20px;
  margin-right: 0;
}

.icon-regular-23.new14.neq {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.navbar {
  z-index: 999;
  background-color: #0000;
  border-bottom: 1px #fff3;
  margin-top: -18px;
  margin-left: 3%;
  margin-right: 3%;
  padding-top: 0;
  padding-bottom: 15px;
  padding-left: 0%;
  position: absolute;
  top: 30px;
  left: 0%;
  right: 0%;
}

.heading {
  color: #fff;
  line-height: .7;
}

.mg-bottom-24px {
  margin-bottom: 24px;
}

.bold-text {
  text-transform: capitalize;
  font-family: Optibakerdanmarkone, Arial, sans-serif;
  font-size: 55px;
  font-weight: 400;
  line-height: .8;
}

.icon-regular-12 {
  color: #d68c8c;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 5px;
  display: flex;
}

.h5-heading-2 {
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 1px 1px #0003;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Optibakerdanmarkone, Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
}

.paragraph-regular {
  color: #fff;
  text-shadow: 0 1px 1px #0003;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
}

.wrap-v-x-small-2 {
  z-index: 5;
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  display: flex;
  position: relative;
}

.text-block-2 {
  color: #fff;
  text-shadow: 0 1px 1px #0003;
}

.icon-small {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.feature-outline-r {
  grid-column-gap: 24px;
  grid-row-gap: 140px;
  background-color: #fff;
  background-image: linear-gradient(#0006 100%, #fff), url('../images/img0.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border: 1px solid #f5f5f5;
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding: 32px;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.feature-outline-r:hover {
  box-shadow: 0 24px 64px #d9d9d97a;
}

.feature-outline-r.img5 {
  background-image: linear-gradient(#0006 100%, #fff), url('../images/img4.jpg');
  display: flex;
}

.feature-outline-r.img3 {
  background-image: linear-gradient(#0006 100%, #fff), url('../images/shutterstock_2080362571-scaled-1.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.feature-outline-r.img6 {
  background-image: linear-gradient(#0006 100%, #fff), url('../images/img6.jpg');
  background-position: 0 0, 100%;
  background-size: auto, cover;
  display: block;
}

.feature-outline-r.ca1 {
  background-image: linear-gradient(#0006 100%, #fff), url('../images/53453.webp');
}

.feature-outline-r.ca2 {
  background-image: linear-gradient(#0006 100%, #fff), url('../images/1140-iv-drip-therapy.jpg');
}

.feature-outline-r.ca3 {
  background-image: linear-gradient(#0006 100%, #fff), url('../images/shutterstock_196052363511-640w.webp');
}

.feature-outline-r.ca4 {
  background-image: linear-gradient(#0006 100%, #fff), url('../images/iStock-1215178650-1.jpg');
}

.feature-outline-r.ca5 {
  background-image: linear-gradient(#0006 100%, #fff), url('../images/unnamed-58.jpg');
}

.feature-outline-r.ca6 {
  background-image: linear-gradient(#0006 100%, #fff), url('../images/ImageForArticle_25923_17431540856726400.webp');
}

.bold-text-3 {
  color: #fff;
}

.wrap-v-large {
  z-index: 5;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
  position: relative;
}

.button-link-large {
  grid-column-gap: 16px;
  color: #000;
  letter-spacing: -.02em;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  text-decoration: none;
  display: flex;
}

.grid-three-column {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.icon-link {
  color: #141414;
  border: 1px solid #e0e0e0;
  border-radius: 99px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
}

.bold-text-4 {
  color: #dca49c;
}

.bold-text-5 {
  color: #dca59c;
  font-family: Lato, sans-serif;
}

.text-block-54 {
  color: #dca59c;
}

.bold-text-6 {
  color: #000;
  font-family: Optibakerdanmarkone, Arial, sans-serif;
  font-size: 38px;
  font-weight: 400;
}

.bold-text-7, .bold-text-8, .bold-text-9 {
  color: #fff8f5;
  font-family: Optibakerdanmarkone, Arial, sans-serif;
  font-weight: 400;
}

.code-embed {
  background-image: linear-gradient(#ecb6ae, #996961);
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  padding: 5%;
  display: flex;
}

.heading-2 {
  color: #d9a19a;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#d9a19a, #aa7b75);
  -webkit-background-clip: text;
  background-clip: text;
}

.heading-3 {
  color: #000;
}

.heading-4 {
  color: #000;
  font-family: Optibakerdanmarkone, Arial, sans-serif;
  font-weight: 400;
}

.half-bg-image-bottom {
  z-index: -1;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 60%;
  position: absolute;
  inset: auto 0% 0%;
}

.half-bg-image-bottom.height-430px {
  height: 430px;
}

.half-bg-image-bottom.height-430px.contact-v7 {
  z-index: -2;
  background-image: none;
  height: auto;
  margin-top: -332px;
  position: relative;
}

.html-embed-2 {
  margin-bottom: 0;
}

.field-label-3 {
  color: #000;
  text-shadow: 0 1px 1px #0003;
  font-size: 16px;
}

.grid-2-columns {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.success-message {
  color: #4a3aff;
  background-color: #f3f2ff;
  border-radius: 24px;
  padding: 28px 28px 32px;
}

.color-neutral-300 {
  color: #eff0f6;
}

.error-message {
  color: #ff5a65;
  text-align: center;
  background-color: #ffeff0;
  border-radius: 16px;
  margin-top: 20px;
  padding: 20px 24px;
}

.text-area {
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 8px;
  min-height: 144px;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 28px;
  transition: box-shadow .3s, color .3s, border-color .3s;
  box-shadow: 0 2px 7px #14142b14;
}

.text-area:hover {
  border-color: #4a3aff;
  box-shadow: 0 2px 12px #14142b1a;
}

.text-area:focus {
  color: #211f54;
  border-color: #4a3aff;
}

.text-area::placeholder {
  color: #6e7191;
  font-size: 18px;
}

.btn-primary {
  color: #fff;
  text-align: center;
  transform-style: preserve-3d;
  background-color: #dd866a;
  background-image: url('../images/untitled-1.svg'), linear-gradient(#e8bab6, #dc886a);
  background-position: 50%, 0 0;
  background-size: cover, auto;
  border-radius: 8px;
  justify-content: center;
  width: 100%;
  padding: 15px 38px;
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .3s, transform .3s, color .3s;
}

.btn-primary:hover {
  color: #fff;
  background-color: #3324d5;
  transform: translate3d(0, -3px, .01px);
}

.card {
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 24px;
  box-shadow: 0 2px 7px #14142b0f;
}

.card.form {
  border-radius: 8px;
  min-height: 620px;
  margin-bottom: 0;
  padding: 40px;
  box-shadow: 0 2px 5px #0003;
}

.input {
  color: #000;
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 8px;
  min-height: 55px;
  margin-bottom: 0;
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  transition: box-shadow .3s, color .3s, border-color .3s;
  box-shadow: 0 2px 7px #14142b14;
}

.input:hover {
  border-color: #f0beb6;
  box-shadow: 0 2px 12px #14142b1a;
}

.input:focus {
  color: #211f54;
  border-color: #4a3aff;
}

.input::placeholder {
  color: #000;
  font-size: 17px;
  font-weight: 400;
}

.line-rounded-icon.success-message-check {
  margin-bottom: 6px;
  font-size: 22px;
}

.line-rounded-icon.success-message-check.large {
  margin-bottom: 16px;
  font-size: 80px;
  line-height: 88px;
}

.heading-5, .heading-6 {
  color: #000;
  font-family: Optibakerdanmarkone, Arial, sans-serif;
}

.bold-text-10 {
  color: #000;
  font-family: Optibakerdanmarkone, Arial, sans-serif;
  font-size: 55px;
  font-weight: 400;
  line-height: .9;
}

.brix---header-logo-2 {
  max-width: 350px;
  margin-bottom: -96px;
}

.paragraph-regular-4 {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
}

.paragraph-regular-4.text-gray-300 {
  color: #fff;
  text-shadow: 0 1px 1px #0003;
}

.footer-side {
  border-right: 1px solid #fff;
  margin-top: 25px;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 32px;
}

.footer-grid-large {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border-bottom: 1px solid #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.75fr;
  padding-bottom: 31px;
}

.sub-heading-small {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.sub-heading-small.text-white {
  color: #fff;
  text-shadow: 0 1px 1px #0003;
  font-family: Optibakerdanmarkone, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
}

.label-regular {
  color: #000;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.label-regular.text-white {
  color: #fff;
  text-shadow: 0 1px 1px #0003;
  font-size: 16px;
  font-weight: 700;
}

.container-x-large {
  width: 100%;
  max-width: 1344px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.footer-link {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #fff;
  text-shadow: 0 1px 1px #0003;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.footer-link:hover {
  color: #fff;
}

.footer-category {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  flex: 1;
  display: flex;
}

.footer-main {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  padding-top: 40px;
  padding-bottom: 10px;
  display: flex;
}

.footer-logo {
  height: 32px;
}

.text-block-5 {
  color: #fff;
}

.footer-links-column {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #fff;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-side-content {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-direction: column;
  margin-top: 108px;
  display: flex;
}

.footer-links-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: .5fr .75fr .75fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  display: grid;
}

.wrap-v-xsmall {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.footer-legal-wrap-3 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: #666;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.paragraph-small-9 {
  color: #fff;
  text-shadow: 0 1px 1px #0003;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.link-3 {
  text-decoration: none;
}

.bold-text-11 {
  color: #fff;
  text-decoration: none;
}

.footer-legal-links-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  color: #fff;
  align-items: center;
  display: flex;
}

.footer-legal-link-2 {
  color: #fff;
  text-shadow: 0 1px 1px #0003;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}

.footer-legal-link-2:hover {
  color: #fff;
}

.code-embed-2 {
  width: 30px;
  height: 30px;
}

.column-small-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.paragraph-regular-17 {
  color: #fff;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 28px;
}

.paragraph-regular-17.text-color-gray-500 {
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
}

.row-small {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-icon-button {
  color: #030711;
  background-color: #fff;
  border: 1px #e5e7eb;
  border-radius: 4px;
  padding: 8px;
  transition: all .45s;
}

.footer-icon-button:hover {
  background-color: #fff;
  transform: translate(3px, -3px);
}

.icon-regular-16 {
  color: #daa49c;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.code-embed-6 {
  border-radius: 6px;
  width: 100%;
  height: 100%;
  box-shadow: 0 2px 5px #0003;
}

.code-embed-6.new41 {
  width: 275px;
  height: 400px;
}

.flex-block {
  margin-bottom: 10px;
}

.image-waves {
  z-index: 3;
  background-color: #f7f8fb;
  width: 100%;
  height: 15vh;
  margin-bottom: -150px;
  position: static;
  inset: auto 0% 0%;
}

.image-waves.w4 {
  background-color: #fff8f5;
  position: relative;
}

.image-waves.newav4 {
  margin-bottom: -145px;
}

.waves {
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  height: 100%;
  margin-top: -145px;
}

.waves.nl6 {
  position: relative;
}

.waves.waves1 {
  margin-top: -13px;
  transform: rotate(180deg);
}

.waves.waves1.new4 {
  transform-style: preserve-3d;
  margin-top: -44px;
  transform: rotateX(0)rotateY(180deg)rotateZ(0)rotate(180deg);
}

.bold-text-12 {
  font-family: Optibakerdanmarkone, Arial, sans-serif;
}

.heading-7 {
  line-height: .8;
}

.bold-text-13 {
  font-family: Lato, sans-serif;
  font-weight: 700;
}

.text-span {
  color: #dda69d;
}

.text-span-2 {
  color: #6d88c2;
}

.voice-visualiser-border {
  background-image: linear-gradient(52deg, #368cfb, #90cbff 57%, #ffeb85);
  border-radius: 62.4375rem;
  max-width: 4rem;
  height: 1.875rem;
  padding: .1875rem;
  overflow: hidden;
  box-shadow: 0 6.875rem 1.875rem #0000, 0 4.375rem 1.75rem #00000003, 0 2.5rem 1.5rem #0000000a, 0 1.0625rem 1.0625rem #00000012, 0 .25rem .5625rem #00000014;
}

.icon-small-2 {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

.column-large {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

.about_lightbulb {
  background-color: #ffeb85;
  border-radius: 62.4375rem;
  padding: .375rem;
}

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

.circular-visualiser {
  z-index: 99;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.container-small {
  z-index: 1;
  width: 100%;
  max-width: 48.75rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.hero_animations {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(#000 40%, #0000 60%);
  mask-image: linear-gradient(#000 40%, #0000 60%);
}

.heading-style-h3 {
  color: #000;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h6 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.35;
}

.about_images {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.section-medium {
  padding: 4rem 5%;
  position: relative;
}

.section-medium.background-gradient-fade-out {
  background-color: #fff8f4;
  padding-top: 0;
}

.about_image {
  aspect-ratio: 1;
  border: .25rem solid #dea9a0;
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 6.25rem 1.875rem #0000, 0 4.375rem 1.6875rem #00000003, 0 2.5rem 1.5rem #0000000a, 0 1.0625rem 1.0625rem #00000012, 0 .25rem .5625rem #00000014;
}

.grid-two {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.text-size-xlarge {
  color: #000;
  margin-bottom: -45px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.text-size-xlarge.text-underline {
  font-size: 16px;
  text-decoration: none;
}

.about_graphic {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  padding-top: 7.5rem;
  display: grid;
  position: relative;
}

.text-color-gradient {
  -webkit-text-fill-color: transparent;
  background-image: radial-gradient(circle at 0%, #368cfb, #5caefe 27%, #ffeb85);
  -webkit-background-clip: text;
  background-clip: text;
}

.column-small {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  display: flex;
}

.column-small.column-left {
  justify-content: center;
  align-items: flex-start;
}

.image-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.badge {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  color: #18181b;
  background-color: #fafafa;
  border: 1px solid #fff;
  border-radius: 2rem;
  justify-content: center;
  align-items: center;
  padding: .375rem .75rem;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  display: flex;
}

.column-2x-large {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: column;
  display: flex;
}

.voice-visualiser {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  border-radius: inherit;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: .5rem;
  padding-right: .5rem;
  display: flex;
}

.voice-waveform {
  background-color: #368cfb;
  border-radius: 62.4375rem;
  width: 2px;
  animation: 1.5s ease-in-out infinite bounce;
}

.italic-text {
  letter-spacing: 0;
  font-family: Optibakerdanmarkone, Arial, sans-serif;
  font-style: normal;
  line-height: .8;
}

.bold-text-14 {
  color: #d9a19a;
  text-align: left;
}

.bold-text-15 {
  color: #000;
}

.bold-text-16, .bold-text-17, .bold-text-18, .bold-text-19, .bold-text-20, .bold-text-21 {
  color: #d9a19a;
}

.nav-logo-tablet-2 {
  max-width: 180px;
}

.navigation-toggle-3 {
  color: #fff;
  margin-left: 0;
  padding: 16px;
  font-size: 15px;
  font-weight: 500;
  transition: all .2s;
}

.navigation-toggle-3:hover {
  color: #fff;
}

.logo {
  margin-bottom: 0;
  margin-right: -20px;
}

.navmenu-tablet-only-2 {
  display: none;
}

.icon-regular-22 {
  color: #d12120;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  display: flex;
}

.icon-regular-22.new14 {
  color: #d12120;
  width: 20px;
  height: 20px;
  margin-right: 0;
}

.icon-regular-22.new14.neq {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.text-block-50 {
  font-size: 18px;
}

.text-block-49 {
  color: #fff;
  margin-left: 0;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
}

.text-block-49.newph {
  font-size: 20px;
}

.chevron-3 {
  margin-top: 25px;
  margin-bottom: 0;
  margin-right: 5px;
}

.nav-menu-wrapper-2 {
  background-color: #0000;
  border: 1px #000;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.nav-link-2 {
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  padding: 12px 8px;
  font-size: 18px;
  line-height: 162%;
  text-decoration: none;
}

.navigation-list-wrapper-4 {
  background-color: #dda79e;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
  overflow: visible;
  box-shadow: 8px 39px 65px -10px #0000001a;
}

.navigation-list-wrapper-4.w--open {
  background-color: #fff;
  border-radius: 15px;
  min-width: 300px;
  max-height: 100vh;
  left: -97px;
  box-shadow: 0 50px 25px -50px #20355a26, 8px 18px 60px 4px #00000021;
}

.navbar-2 {
  z-index: 999;
  background-color: #0000;
  border-bottom: 1px solid #fff3;
  margin-left: 3%;
  margin-right: 3%;
  padding-top: 0;
  padding-bottom: 15px;
  padding-left: 0%;
  position: absolute;
  top: 30px;
  left: 0%;
  right: 0%;
}

@media screen and (min-width: 1280px) {
  .brix---btn-secondary {
    border-radius: 8px;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 600;
  }

  .mg-bottom-24px {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 1440px) {
  .grid-2-columns.form {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .image-waves.w4 {
    height: 15vh;
    margin-bottom: 1px;
    position: relative;
  }

  .waves.nl6 {
    margin-top: -154px;
    position: relative;
  }
}

@media screen and (min-width: 1920px) {
  .blog-card_thumbnail-warpper {
    font-size: 15px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 65px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 20px;
  }

  .page-padding {
    padding-left: 30px;
    padding-right: 30px;
  }

  .navbar_logo-link {
    font-size: 35px;
  }

  .navbar_link {
    text-align: center;
    border-bottom: 2px solid #fb6f4e0d;
  }

  .navbar_menu {
    background-color: var(--floral-white);
    border-top: 2px solid #fb6f4e0d;
    padding-bottom: 20px;
    box-shadow: 0 14px 20px -20px #0003;
  }

  .home-hero_content-grid {
    grid-column-gap: 0px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .home-hero_image-wrapper {
    margin-left: auto;
    margin-right: auto;
  }

  .padding-vertical-large {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .grid-2-col {
    grid-column-gap: 0px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
  }

  .align-right-pc-only {
    margin-left: 0;
  }

  .section-heading-wrapepr {
    margin-bottom: 60px;
  }

  .align-center-pc-only {
    text-align: left;
    align-items: flex-start;
  }

  .grid-3-col {
    grid-template-columns: 1fr;
  }

  .program-card {
    padding: 40px;
  }

  .home-testimonial-grid {
    grid-row-gap: 64px;
    grid-template-columns: 1fr;
  }

  .testimonial-slider {
    padding: 60px;
  }

  .testmonial-slider_left-arrow {
    width: 60px;
    left: -20px;
  }

  .testmonial-slider_right-arrow {
    width: 60px;
    right: -20px;
  }

  .testimonial_deco-image {
    width: 100px;
  }

  .blog-card-list {
    grid-template-columns: 1fr 1fr;
  }

  .blog-card_content-wrapper {
    padding: 28px;
  }

  .text-size-medium {
    font-size: 20px;
  }

  .section-heading-wrapper-2-col {
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
    justify-items: start;
    margin-bottom: 60px;
  }

  .margin-top-zero {
    margin-top: 0;
  }

  .faq-card {
    padding: 28px;
  }

  .blog-subscribe-grid {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .grid-2-col_single-image {
    width: auto;
  }

  .contact-form-wrapper {
    padding: 40px;
  }

  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer_links-wrapper {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .footer_content-wrapper {
    flex-direction: column;
  }

  .footer_content-wrapper.bottom {
    text-align: center;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    margin-top: 40px;
    padding-top: 28px;
  }

  .footer_link {
    padding-left: 10px;
    padding-right: 10px;
  }

  .navbar_menu-button {
    color: var(--secondry);
  }

  .navbar_menu-button.w--open {
    color: var(--primary);
    background-color: #0000;
  }

  .navbar_link-divider {
    padding: 10px 0;
  }

  .tablet-max-full {
    max-width: none;
  }

  .home-testimonial_content-wrapper {
    max-width: 450px;
  }

  .home-faq_deco-layer {
    width: 80px;
    inset: 0% 0% auto auto;
  }

  .nav-main__menu {
    z-index: 998;
    color: #eee;
    background-color: #0000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-top: 2rem;
    display: none;
    position: fixed;
    inset: 4rem 0% 0%;
    overflow: hidden;
  }

  .nav-menu-list {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .menu-icon__wrapper-2 {
    z-index: 1000;
    grid-row-gap: .25rem;
    border-radius: 1px;
    flex-direction: column;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: .5rem;
    display: inline-block;
    position: relative;
  }

  .logo-2 {
    object-fit: cover;
  }

  .navbar-open {
    background-color: #ffffff0a;
    border: 2px solid #ffffff1a;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    display: flex;
  }

  .menu-button {
    z-index: 999;
    background-color: #0000;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 4rem;
    padding: .5rem 0 0;
    display: flex;
    position: static;
    inset: 0% 2rem 0% auto;
  }

  .menu-button.w--open {
    z-index: 1000;
    background-color: #0000;
  }

  .nav__component {
    z-index: 100;
  }

  .nav-main__container {
    z-index: 1;
    height: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer-grid-2 {
    grid-template-columns: 1fr;
  }

  .navbar-extra {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .navigation-content {
    width: 100%;
  }

  .menu-icon__line {
    background-color: #242424;
    border-radius: 1px;
    width: 100%;
    height: 2px;
    margin-bottom: .5rem;
    padding: 0;
  }

  .menu-icon__line.right {
    float: right;
    width: 1rem;
    margin-bottom: 0;
  }

  .menu-icon__line.left {
    width: 1rem;
  }

  .navigation-list-2.w--open {
    width: 100%;
    padding-top: 0;
    position: relative;
    left: auto;
  }

  .nav-link {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 24px;
  }

  .navigation-dropdown-1 {
    margin-left: 0;
    margin-right: 0;
  }

  .nav-logo__wrapper {
    z-index: 997;
    height: 1.5rem;
  }

  .navmenu-tablet-only {
    justify-content: space-between;
    margin-bottom: 36px;
    display: flex;
  }

  .nav-logo__image {
    height: 1.5rem;
  }

  .navbar-close {
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    display: flex;
  }

  .brix---grid-2-col---1-col-t-2 {
    grid-template-columns: 1fr;
  }

  .navigation-toggle-2 {
    width: 100%;
    padding-left: 16px;
  }

  .navigation-toggle-2.w--open {
    width: 100%;
  }

  .chevron-2 {
    margin-right: 20px;
  }

  .navigation-list-wrapper-3 {
    box-shadow: none;
  }

  .button-small.login {
    display: none;
  }

  .brix---hero-bg-image-dark-header-top-2 {
    padding-top: 200px;
    padding-bottom: 160px;
  }

  .brix---heading-h1-size-2 {
    font-size: 48px;
    line-height: 60px;
  }

  .nav-menu-wrapper {
    z-index: 10;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: #220b13;
    border-radius: 0;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 20px 24px;
    display: none;
    position: fixed;
    inset: 0%;
    overflow-y: auto;
  }

  .nav-mobile__background {
    z-index: 997;
    background-color: #43b97f;
    width: 100vw;
    height: 100vh;
    padding: 1rem 0 0 2rem;
    display: block;
    position: fixed;
    inset: 0;
  }

  .navbar {
    top: 24px;
  }

  .grid-three-column {
    grid-template-columns: 1fr 1fr;
  }

  .btn-primary {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .card.form {
    padding: 54px 32px;
  }

  .brix---header-logo-2 {
    max-width: 232px;
  }

  .footer-side {
    flex-direction: column;
    justify-content: space-between;
    display: flex;
  }

  .footer-grid-large {
    grid-template-columns: 1fr 1.5fr;
  }

  .footer-links-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .footer-legal-wrap-3 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    align-items: center;
  }

  .navigation-toggle-3 {
    width: 100%;
    padding-left: 16px;
  }

  .navigation-toggle-3.w--open {
    width: 100%;
  }

  .logo {
    object-fit: cover;
  }

  .navmenu-tablet-only-2 {
    justify-content: space-between;
    margin-bottom: 36px;
    display: flex;
  }

  .chevron-3 {
    margin-right: 20px;
  }

  .nav-menu-wrapper-2 {
    z-index: 10;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: #220b13;
    border-radius: 0;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 20px 24px;
    display: none;
    position: fixed;
    inset: 0%;
    overflow-y: auto;
  }

  .nav-link-2 {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 24px;
  }

  .navigation-list-wrapper-4 {
    box-shadow: none;
  }

  .navbar-2 {
    top: 24px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 55px;
  }

  h2 {
    font-size: 35px;
  }

  .page-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar_logo-link {
    font-size: 35px;
  }

  .navbar_link {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navbar_menu {
    padding-bottom: 15px;
  }

  .button-wrapper {
    margin-top: 45px;
  }

  .home-hero_watch-video-wrapper {
    margin-left: 28px;
  }

  .grid-2-col {
    grid-row-gap: 45px;
  }

  .home-about_image-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    max-width: 100%;
  }

  .home-about_image-grid {
    grid-row-gap: 24px;
  }

  .home-about_deco-layer {
    width: 120px;
  }

  .section-heading-wrapepr {
    margin-bottom: 45px;
  }

  .program-card {
    padding: 36px;
  }

  .testimonial-slider {
    margin-bottom: 80px;
    padding: 36px;
  }

  .testimonial-slider_icon {
    background-color: var(--white);
  }

  .testmonial-slider_left-arrow {
    height: 60px;
    inset: auto auto -80px 0%;
  }

  .testmonial-slider_right-arrow {
    height: 60px;
    inset: auto auto -80px 70px;
  }

  .testimonial-slider_headshot {
    width: 65px;
    height: 65px;
  }

  .testimonial-slider_text {
    font-size: 20px;
  }

  .testimonial_deco-image {
    width: 80px;
  }

  .text-size-medium {
    font-size: 18px;
  }

  .section-heading-wrapper-2-col {
    grid-row-gap: 45px;
    margin-bottom: 45px;
  }

  .margin-top-zero {
    margin-top: 0;
  }

  .faq-card-master-grid {
    grid-template-columns: 1fr;
  }

  .blog-subscribe-grid {
    padding: 36px;
  }

  .contact-form-wrapper {
    border-radius: 15px;
    padding: 36px;
  }

  .footer_links-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .footer_content-wrapper.bottom {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .footer_link {
    padding-left: 10px;
    padding-right: 10px;
  }

  .navbar_link-divider {
    padding-top: 7.5px;
    padding-bottom: 7.5px;
  }

  .home-testimonial_content-wrapper {
    max-width: none;
  }

  .home-faq_deco-layer {
    width: 80px;
  }

  .brix---button-row-left-2 {
    margin-right: 16px;
  }

  .nav-main__menu {
    margin-top: 2rem;
    top: 3rem;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .nav-main__container {
    height: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar-button-primary {
    display: none;
  }

  .brix---btn-secondary {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-link {
    font-size: 18px;
  }

  .nav-logo__wrapper {
    justify-content: flex-start;
    height: 1.5rem;
  }

  .nav-logo-tablet {
    max-width: 145px;
  }

  .brix---mg-bottom-40px {
    margin-bottom: 24px;
  }

  .nav-logo__image {
    height: 1.5rem;
  }

  .brix---grid-2-col---1-col-t-2 {
    grid-template-columns: 1fr;
  }

  .brix---hero-bg-image-dark-header-top-2 {
    padding-top: 155px;
    padding-bottom: 120px;
  }

  .brix---heading-h1-size-2 {
    margin-bottom: 12px;
    font-size: 38px;
    line-height: 46px;
  }

  .nav-mobile__background {
    padding-top: 1.2rem;
    padding-left: 1rem;
    display: none;
  }

  .grid-three-column, .grid-2-columns {
    grid-template-columns: 1fr;
  }

  .grid-2-columns.form {
    grid-row-gap: 20px;
  }

  .text-area {
    border-radius: 18px;
  }

  .btn-primary {
    padding: 20px 32px;
  }

  .card.form {
    padding: 56px 32px;
  }

  .input {
    min-height: 60px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .line-rounded-icon.success-message-check.large {
    font-size: 68px;
    line-height: 73px;
  }

  .brix---header-logo-2 {
    max-width: 90%;
  }

  .footer-side {
    border-bottom: 1px solid #292929;
    border-right-style: none;
    padding-right: 0;
  }

  .footer-grid-large {
    grid-template-columns: 1fr;
  }

  .footer-main {
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer-side-content {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    margin-top: 32px;
  }

  .grid-two {
    grid-template-columns: 1fr;
  }

  .text-size-xlarge {
    font-size: 18px;
  }

  .nav-logo-tablet-2 {
    max-width: 145px;
  }

  .nav-link-2 {
    font-size: 18px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 30px;
    line-height: 1.4;
  }

  .home-hero_master-wrapper {
    margin-bottom: 150px;
  }

  .page-padding {
    z-index: 4;
    margin-top: -68px;
    position: relative;
  }

  .page-padding.newpa {
    margin-top: 0;
  }

  .button {
    border-radius: 10px;
    font-size: 15px;
  }

  .home-hero_content-grid {
    grid-row-gap: 40px;
  }

  .home-hero_content-wrapper {
    padding-top: 80px;
  }

  .button-wrapper {
    margin-top: 20px;
  }

  .button-watch-video_text {
    display: none;
  }

  .home-hero_watch-video-wrapper {
    margin-left: 20px;
  }

  .home-hero_deco-layer4 {
    width: 50px;
  }

  .home-hero_deco-layer5 {
    width: 40px;
  }

  .padding-vertical-large {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .home-about_image-wrapper {
    grid-template-columns: auto auto;
  }

  .home-about_image1, .home-about_image2, .home-about_image3 {
    box-shadow: 7px 7px 0 0 var(--drop-shadow);
    border-radius: 15px;
  }

  .home-about_deco-layer {
    bottom: -40px;
  }

  .program-card {
    border-radius: 15px;
    padding: 28px;
  }

  .program-card.newcard1 {
    margin-top: 0;
  }

  .button-outlined {
    border-radius: 10px;
  }

  .testimonial-slider {
    max-width: 90vw;
    margin-bottom: 80px;
    padding: 28px;
  }

  .testimonial-slider_slide {
    max-width: 100%;
  }

  .testimonial-slider_client-name-wrapper {
    margin-left: 16px;
  }

  .testimonial-slider_text {
    font-size: 18px;
  }

  .testimonial_deco-image {
    width: 80px;
  }

  .blog-card-list {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .text-size-medium.text-grey {
    margin-top: 10px;
    margin-bottom: 0;
  }

  .margin-top-zero {
    margin-top: 0;
  }

  .faq-card-master-grid {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .blog-subscribe-grid {
    padding: 28px;
  }

  .blog-subscribe-form_field-input {
    min-height: 55px;
  }

  .blog-subscribe-form_submit-button {
    border-radius: 5px;
    width: 100%;
    min-height: 55px;
    margin-top: 15px;
    position: static;
  }

  .blog-subscribe-form_submit-button:hover {
    transform: none;
  }

  .grid-2-col_single-image {
    box-shadow: 7px 7px 0 0 var(--drop-shadow);
    border-radius: 15px;
  }

  .contact-form-wrapper {
    padding: 28px;
  }

  .form-field {
    min-height: 55px;
  }

  .footer {
    margin-top: 21px;
  }

  .footer_links-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .footer_content-wrapper {
    align-items: flex-start;
  }

  .footer_content-wrapper.bottom {
    text-align: left;
    justify-items: start;
  }

  .footer_link {
    padding: 7.5px 0;
  }

  .footer_link.legals {
    padding-right: 12px;
  }

  .home-faq_deco-layer {
    width: 60px;
    top: -14%;
  }

  .brix---button-row-left-2 {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .nav-main__menu {
    margin-top: 3rem;
    top: 3rem;
  }

  .f-icon-regular {
    color: #000;
    transition-property: none;
  }

  .menu-icon__wrapper-2 {
    color: #ffffff17;
    margin-top: 25px;
  }

  .text-block-52 {
    letter-spacing: 1px;
    font-size: 18px;
  }

  .logo-2 {
    flex: none;
    margin: 0 0 0 -35px;
  }

  .text-block-53 {
    font-size: 16px;
  }

  .nav-menu-item {
    text-transform: uppercase;
    border-bottom: 1px solid #ffffff5c;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .navbar-open {
    width: 55px;
    height: 55px;
  }

  .menu-button {
    color: #fff;
    right: 1rem;
  }

  .menu-button.w--open {
    background-color: #0000;
    right: 1rem;
  }

  .nav__component {
    display: block;
    position: absolute;
  }

  .nav-main__container {
    height: 4rem;
    padding-left: .5rem;
    padding-right: .5rem;
    font-family: Varela Round, sans-serif;
    position: relative;
  }

  .brix---buttons-row-2 {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-grid-2.newgrid {
    margin-left: 15px;
  }

  .container-5 {
    margin-top: -15px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .brix---btn-secondary {
    box-shadow: none;
    color: #fff;
    text-shadow: 0 1px 1px #0003;
    background-color: #ecc5c0;
    background-image: url('../images/untitled-1.svg'), linear-gradient(356deg, #dd866a, #ecc5c0 100%, #a59390);
    background-position: 50%, 0 0;
    background-size: cover, auto;
    border-style: none;
    border-color: #bb9853;
    border-radius: 8px;
    width: 100%;
    margin-top: 0;
    padding-top: 18px;
    padding-bottom: 18px;
    font-family: Montserrat, sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 19px;
    transition: all .45s;
  }

  .brix---btn-secondary:hover {
    background-color: #da947e;
    background-image: url('../images/Blue-And-White-Modern-HVAC-Services-Poster-9.svg');
    background-position: 50%;
    background-size: cover;
    border-style: none;
    border-color: #fff0;
    transform: translate(0, -4px);
    box-shadow: 0 2px 5px #bb9853;
  }

  .icon-right-4 {
    width: 28px;
    height: 28px;
  }

  .navigation-content {
    padding-left: 0;
  }

  .menu-icon__line {
    background-color: #fff;
  }

  .menu-icon__line.right {
    height: 2px;
    padding-top: 0;
  }

  .menu-icon__line.left {
    color: #fff;
    background-color: #fff;
  }

  .nav-link {
    letter-spacing: 1px;
  }

  .navigation-dropdown-1 {
    width: 100%;
  }

  .nav-logo__wrapper {
    height: 5rem;
    margin-top: 40px;
  }

  .nav-logo-tablet {
    max-width: 250px;
    margin-left: -20px;
  }

  .navmenu-tablet-only {
    justify-content: space-between;
    align-items: center;
    margin-top: -40px;
  }

  .text-block-51 {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 18px;
  }

  .brix---paragraph-default {
    text-shadow: 0 1px 1px #0003;
    font-family: Montserrat, sans-serif;
    font-size: 17px;
    line-height: 28px;
  }

  .nav-logo__image {
    max-width: none;
    height: 6rem;
    margin-left: -19px;
  }

  .navbar-close {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: #ffffff2b;
    border: 2px solid #ffffff1a;
    border-radius: 100%;
  }

  .button-right-icon-9 {
    background-color: #a8252e;
    border-radius: 2px;
    width: 100%;
    margin-top: 20px;
    font-size: 18px;
    transform: skew(-4deg);
  }

  .button-right-icon-9:hover {
    background-color: #a8252e;
    transform: translate(6px, -6px)skew(-4deg);
    box-shadow: 0 2px 5px #a8252e;
  }

  .navigation-toggle-2 {
    padding-left: 8px;
  }

  .navigation-list-wrapper-3 {
    background-color: #0c6c0d00;
  }

  .brix---hero-bg-image-dark-header-top-2 {
    background-image: none;
    padding-top: 130px;
    padding-bottom: 100px;
  }

  .brix---position-relative {
    background-image: linear-gradient(#0006 100%, #fff), linear-gradient(#dd866a33 100%, #fff), url('../images/istockphoto-1481741724-612x612.jpg');
    background-position: 0 0, 0 0, 0 0;
    background-size: auto, auto, cover;
  }

  .brix---heading-h1-size-2 {
    text-shadow: 0 1px 1px #0003;
    margin-bottom: 10px;
    font-family: Montserrat, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
  }

  .div-block {
    margin-top: 80px;
  }

  .footer-social-links.mrw {
    justify-content: center;
    align-items: center;
  }

  .nav-menu-wrapper {
    background-color: #d9a29a;
    background-image: linear-gradient(318deg, #d9a29a, #a57e79);
    margin-right: 75px;
    display: none;
  }

  .nav-mobile__background {
    background-color: #29bcc8;
    background-image: linear-gradient(333deg, #29bcc8, #ed509d);
    padding-left: .5rem;
  }

  .brix---container-default {
    padding-left: 20px;
    padding-right: 20px;
  }

  .icon-regular-23 {
    color: #d12120;
    margin-right: 5px;
  }

  .navbar {
    border-bottom-style: none;
    margin-top: 0;
  }

  .footer-link-column.newcolum {
    text-align: center;
    margin-top: -60px;
  }

  .heading {
    margin-bottom: 0;
    line-height: 0;
  }

  .mg-bottom-24px {
    margin-bottom: 15px;
  }

  .bold-text {
    font-size: 45px;
    line-height: 1.2;
  }

  .icon-regular-12 {
    color: #d7948a;
    margin-right: 5px;
  }

  .h5-heading-2 {
    color: #fff;
    text-shadow: 0 1px 1px #0003;
  }

  .paragraph-regular {
    color: #fff;
    text-shadow: 0 1px 1px #0003;
    line-height: 20px;
  }

  .text-block-2 {
    color: #fff;
    letter-spacing: normal;
    font-size: 16px;
    font-weight: 400;
  }

  .icon-small {
    color: #fff;
  }

  .feature-outline-r {
    background-image: linear-gradient(#0000004d 100%, #fff), url('../images/img0.jpg');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    transition: opacity .45s;
  }

  .feature-outline-r:hover {
    box-shadow: none;
    background-image: linear-gradient(#0000004d 100%, #fff), url('../images/img0.jpg');
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .feature-outline-r.img5 {
    background-image: linear-gradient(#0000004d 100%, #fff), url('../images/img4.jpg');
    display: flex;
  }

  .feature-outline-r.img3 {
    background-image: linear-gradient(#0000004d 100%, #fff), url('../images/img3.jpg');
  }

  .feature-outline-r.img6 {
    background-image: linear-gradient(#0000004d 100%, #fff), url('../images/img6.jpg');
    background-position: 0 0, 100%;
  }

  .half-bg-image-bottom.height-430px.contact-v7 {
    margin-top: -450px;
  }

  .html-embed-2 {
    position: relative;
  }

  .text-area::placeholder {
    color: #000;
  }

  .btn-primary {
    text-shadow: 0 1px 1px #0003;
    background-image: url('../images/untitled-1.svg'), linear-gradient(#dd866a, #eecdc7);
    background-position: 50%, 0 0;
    background-size: cover, auto;
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .card.form {
    padding-left: 23px;
    padding-right: 23px;
    box-shadow: 0 2px 5px #dd866a33;
  }

  .input {
    font-size: 16px;
    line-height: 18px;
  }

  .input::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .div-block-3 {
    flex-flow: column;
    width: auto;
    display: flex;
  }

  .line-rounded-icon.success-message-check.large {
    font-size: 58px;
    line-height: 64px;
  }

  .brix---header-logo-2 {
    max-width: 84%;
  }

  .paragraph-regular-4.text-gray-300 {
    color: #fff;
    text-shadow: 0 1px 1px #0003;
  }

  .footer-side {
    border-bottom-color: #fff;
    padding-bottom: 25px;
  }

  .sub-heading-small.text-white {
    text-shadow: 0 1px 1px #0003;
    font-size: 22px;
    font-weight: 700;
  }

  .label-regular.text-white {
    font-size: 16px;
    font-weight: 800;
  }

  .footer-link, .text-block-6 {
    color: #fff;
    text-shadow: 0 1px 1px #0003;
    font-size: 16px;
  }

  .footer-logo {
    height: auto;
  }

  .text-block-5 {
    color: #fff;
    text-shadow: 0 1px 1px #0003;
    font-size: 16px;
    font-weight: 400;
  }

  .text-block-7 {
    color: #fff;
    text-shadow: 0 1px 1px #0003;
    font-size: 16px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .text-block-8 {
    color: #fff;
    text-shadow: 0 1px 1px #0003;
    font-size: 16px;
  }

  .footer-legal-wrap-3 {
    align-items: center;
  }

  .paragraph-small-9 {
    text-align: center;
  }

  .footer-legal-links-2 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    display: none;
  }

  .paragraph-regular-17 {
    text-align: left;
  }

  .code-embed-6 {
    width: 100%;
  }

  .code-embed-6.new41 {
    width: 100%;
    height: 300px;
  }

  .column-large {
    margin-top: 30px;
  }

  .hero_animations {
    padding-top: 4px;
  }

  .heading-style-h3 {
    line-height: .9;
  }

  .about_graphic {
    padding-top: 4rem;
  }

  .italic-text {
    font-size: 2rem;
    line-height: .3;
  }

  .bold-text-14 {
    color: #d9a19a;
  }

  .bold-text-16, .bold-text-17, .bold-text-18, .bold-text-19 {
    color: #d9a19a;
    font-size: 20px;
  }

  .text-span-3, .bold-text-20 {
    color: #d9a19a;
  }

  .nav-logo-tablet-2 {
    max-width: 180px;
  }

  .navigation-toggle-3 {
    padding-left: 8px;
  }

  .logo {
    flex: none;
    margin-bottom: 0;
  }

  .navmenu-tablet-only-2 {
    justify-content: space-between;
    align-items: center;
  }

  .icon-regular-22 {
    color: #d12120;
    margin-right: 5px;
  }

  .text-block-50 {
    letter-spacing: 1px;
    font-size: 18px;
  }

  .text-block-49 {
    font-size: 16px;
  }

  .nav-menu-wrapper-2 {
    background-color: #dca49c;
    margin-right: 75px;
    display: none;
  }

  .nav-link-2 {
    letter-spacing: 1px;
  }

  .navigation-list-wrapper-4 {
    background-color: #0c6c0d00;
  }

  .navbar-2 {
    padding-bottom: 0;
  }
}

#w-node-_6280ca29-0bac-7263-24f2-ba6e0e53491f-fc7dc30c, #w-node-_7ff9d93f-3518-8fed-3da6-30678024cad5-fc7dc30c, #w-node-e1b454cb-6123-eede-c468-0a12ec0a523a-fc7dc30c, #w-node-_208bf6ce-aa04-cb20-a0ae-7bf0ffa0d886-fc7dc30c, #w-node-_208bf6ce-aa04-cb20-a0ae-7bf0ffa0d892-fc7dc30c, #w-node-_208bf6ce-aa04-cb20-a0ae-7bf0ffa0d89e-fc7dc30c, #w-node-f73ff815-aea1-51f7-8ab1-3d810ed37398-fc7dc30c, #w-node-_0eb0b3c6-aad2-1b9f-a7eb-738eb5cf77d2-fc7dc30c, #w-node-_31a606e9-7b99-ed8a-6e8b-c6fd187992fd-fc7dc30c, #w-node-_9e2baa72-f176-be2b-00e0-5d996cb048c0-fc7dc30c, #w-node-df3d285c-915a-1892-4084-0e97112de385-fc7dc30c, #w-node-f6214fbd-c683-dd86-a36c-76963a18ca79-fc7dc30c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc299f-fc7dc30c, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a3-fc7dc30c, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a7-fc7dc30c, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-fc7dc30c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-fc7dc30c {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-bfd9753d-cdd4-941e-076b-0d4b609a9243-041646df {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bfd9753d-cdd4-941e-076b-0d4b609a924e-041646df {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_9ac70b7c-8695-039d-5d1a-9e8ded95d629-ed95d628 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc299f-bfddc52b, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a3-bfddc52b, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a7-bfddc52b, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-bfddc52b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-bfddc52b {
  justify-self: start;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc299f-63b8aabb, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a3-63b8aabb, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a7-63b8aabb, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-63b8aabb {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-63b8aabb {
  justify-self: start;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc299f-a8b67953, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a3-a8b67953, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a7-a8b67953, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-a8b67953 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-a8b67953 {
  justify-self: start;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc299f-dcd56589, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a3-dcd56589, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a7-dcd56589, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-dcd56589 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-dcd56589 {
  justify-self: start;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc299f-a9d97003, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a3-a9d97003, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a7-a9d97003, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-a9d97003 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-a9d97003 {
  justify-self: start;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc299f-e75617af, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a3-e75617af, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a7-e75617af, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-e75617af {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-e75617af {
  justify-self: start;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc299f-d0afffeb, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a3-d0afffeb, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a7-d0afffeb, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-d0afffeb {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-d0afffeb {
  justify-self: start;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc299f-dcc846ad, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a3-dcc846ad, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a7-dcc846ad, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-dcc846ad {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-dcc846ad {
  justify-self: start;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc299f-a37e42e5, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a3-a37e42e5, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a7-a37e42e5, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-a37e42e5 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-a37e42e5 {
  justify-self: start;
}

#w-node-_6280ca29-0bac-7263-24f2-ba6e0e53491f-da958b54, #w-node-_7ff9d93f-3518-8fed-3da6-30678024cad5-da958b54, #w-node-e1b454cb-6123-eede-c468-0a12ec0a523a-da958b54 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc299f-da958b54, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a3-da958b54, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a7-da958b54, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-da958b54 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-da958b54 {
  justify-self: start;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc299f-86c52174, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a3-86c52174, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29a7-86c52174, #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-86c52174 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-86c52174 {
  justify-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-c6519c27-5286-a49b-7111-c816f9c685d4-fc7dc30c, #w-node-c6519c27-5286-a49b-7111-c816f9c685d4-da958b54 {
    order: -9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_7ff9d93f-3518-8fed-3da6-30678024cad5-fc7dc30c, #w-node-_7ff9d93f-3518-8fed-3da6-30678024cad5-da958b54 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-fc7dc30c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-fc7dc30c {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-bfd9753d-cdd4-941e-076b-0d4b609a9243-041646df {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-bfddc52b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-bfddc52b {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-63b8aabb {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-63b8aabb {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-a8b67953 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-a8b67953 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-dcd56589 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-dcd56589 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-a9d97003 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-a9d97003 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-e75617af {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-e75617af {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-d0afffeb {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-d0afffeb {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-dcc846ad {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-dcc846ad {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-a37e42e5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-a37e42e5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-da958b54 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-da958b54 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29ab-86c52174 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_844c2a62-4003-35a5-0d22-f36a1ecc29af-86c52174 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }
}


@font-face {
  font-family: 'Bf 68 Bfa 40294322';
  src: url('../fonts/carlasansregular-BF68bfa40294322.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bf 68 Bfa 40288 Ba 0';
  src: url('../fonts/carlasanslight-BF68bfa40288ba0.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bf 68 Bfa 4027 B 1 D 1';
  src: url('../fonts/carlasanssemibold-BF68bfa4027b1d1.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bf 68 Bfa 40208569';
  src: url('../fonts/carlasansbold-BF68bfa40208569.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Optibakerdanmarkone';
  src: url('../fonts/OPTIBakerDanmarkOne.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}