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

body {
  background-color: #fff;
  font-family: Manrope, sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.7em;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 65px;
  line-height: 1.3em;
  font-weight: 500;
}

h2 {
  margin-top: 20px;
  margin-bottom: 0px;
  font-family: Manrope, sans-serif;
  font-size: 40px;
  line-height: 1.3em;
  font-weight: 500;
}

h3 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 30px;
  line-height: 1.3em;
  font-weight: 500;
}

h4 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 25px;
  line-height: 1.3em;
  font-weight: 500;
}

p {
  margin-bottom: 50px;
  font-family: Inter, sans-serif;
  color: #6e6e6e;
}

a {
  border-bottom: 1px none #000;
  color: #222;
  font-size: 20px;
  text-decoration: none;
}

.s-hero {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 100vh;
  padding-right: 50px;
  padding-left: 50px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  color: #fff;
}

.hero-bg-img {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  background-image: url('../images/architecture-hero-bg-img.jpg');
  background-position: 50% 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-bg-img.about-us {
  background-image: url('../images/about-us.jpg');
}

.hero-bg-img.figueras {
  background-image: url('../images/figuerus.jpg');
}

.hero-bg-img.conti {
  background-image: url('../images/conti-banner.jpg');
}

.hero-bg-img.corian-bathroom {
  background-image: url('../images/corian-bathroom.jpg');
}

.hero-bg-img.corian-kitchen {
  background-image: url('../images/corian-kicthen.jpg');
}

.hero-bg-img.corian-collection {
  background-image: url('../images/corian-collection.jpg');
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 0px;
}

.subheader {
  opacity: 0.75;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.subheader.full-opacity {
  opacity: 1;
}

.subheader.hide {
  display: none;
}

.h1 {
  margin-top: 15px;
  margin-bottom: 15px;
  font-family: Manrope, sans-serif;
  font-size: 70px;
  line-height: 1em;
}

.body {
  font-family: Inter, sans-serif;
  font-size: 18px;
}

.social-icon {
  padding-top: 25px;
  padding-bottom: 25px;
  -webkit-transition: -webkit-transform 400ms cubic-bezier(.165, .84, .44, 1);
  transition: -webkit-transform 400ms cubic-bezier(.165, .84, .44, 1);
  transition: transform 400ms cubic-bezier(.165, .84, .44, 1);
  transition: transform 400ms cubic-bezier(.165, .84, .44, 1), -webkit-transform 400ms cubic-bezier(.165, .84, .44, 1);
  cursor: pointer;
}

.social-icon:hover {
  -webkit-transform: translate(0px, -10%);
  -ms-transform: translate(0px, -10%);
  transform: translate(0px, -10%);
}

.social-icon.footer {
  width: 15px;
  margin-left: 37px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.social-icon.footer.special {
  width: 34%;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 26px;
  padding-left: 26px;
}

.logo-grid {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-row-gap: 30px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.section {
  padding: 100px 0px;
}

.section.grey {
  display: block;
  padding-right: 0px;
  padding-left: 0px;
  background-color: #f6f6f6;
}

.section.grey.nobottom {
  padding-top: 37px;
  padding-bottom: 0px;
}

.section.footer {
  padding-top: 66px;
  padding-bottom: 34px;
  background-color: #000;
  color: #fff;
}

.section.special {
  padding-top: 0px;
}

.section.notop {
  padding-top: 0px;
}

.top-header-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 0px;
  padding-left: 0px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-header-wrapper.with-padding {
  padding-right: 50px;
  padding-left: 50px;
}

.top-header-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.top-header-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.fullsize-img-wrapper {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f6f6f6;
  color: #fff;
  text-align: center;
}

.fullsize-img-wrapper.corian {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.11)), to(rgba(0, 0, 0, 0.11))), url('../images/corian-banner.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.11), rgba(0, 0, 0, 0.11)), url('../images/corian-banner.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
}

.fullsize-img-wrapper.figueras {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.15)), to(rgba(0, 0, 0, 0.15))), url('../images/figures-banner.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url('../images/figures-banner.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
}

.fullsize-img-wrapper.conti {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.24)), to(rgba(0, 0, 0, 0.24))), url('../images/conti-banner.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.24)), url('../images/conti-banner.jpg');
  background-position: 0px 0px, 0px 0px;
  background-size: auto, cover;
}

.content-center-wrapper {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.full-width-slider-wrapper {
  overflow: hidden;
}

.footer-grid {
  grid-column-gap: 75px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.footer-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 35px;
  padding-top: 30px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid hsla(0, 0%, 100%, 0.3);
}

.footer-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-link {
  opacity: 0.75;
  -webkit-transition: opacity 400ms cubic-bezier(.165, .84, .44, 1);
  transition: opacity 400ms cubic-bezier(.165, .84, .44, 1);
  color: #fff;
  font-size: 16px;
}

.footer-link:hover {
  opacity: 1;
}

.logo-grid-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo-grey {
  opacity: 1;
}

.h3 {
  max-width: 80%;
  margin-bottom: 20px;
  font-family: Manrope, sans-serif;
  font-size: 30px;
}

.h3.small {
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 600;
}

.h4 {
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 25px;
  font-weight: 600;
}

.btn-secondary {
  padding: 20px 50px;
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
  border-radius: 2px;
  background-color: rgba(56, 152, 236, 0);
  -webkit-transition: color 500ms cubic-bezier(.165, .84, .44, 1), background-color 500ms cubic-bezier(.165, .84, .44, 1);
  transition: color 500ms cubic-bezier(.165, .84, .44, 1), background-color 500ms cubic-bezier(.165, .84, .44, 1);
  font-size: 20px;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #000;
}

.btn-secondary.extraspacing {
  margin-right: 30px;
}

.object-list {
  display: -ms-grid;
  display: grid;
  height: 100%;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  cursor: -webkit-grab;
  cursor: grab;
}

.object-card-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
}

.object-list-wrapper {
  display: block;
  height: 100%;
  margin-top: 100px;
  padding-right: 50px;
  padding-left: 50px;
}

.object-card-content-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.object-item {
  height: 100%;
  margin-right: 25px;
}

.hero-bg-overlay {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  display: block;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(70%, hsla(0, 0%, 100%, 0)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(0deg, #000, hsla(0, 0%, 100%, 0) 70%, rgba(0, 0, 0, 0.5));
  opacity: 0.5;
}

.hero-content-left {
  max-width: 60%;
}

.arrow-right {
  width: 45px;
  margin-left: 25px;
  opacity: 0.25;
  -webkit-transition: opacity 500ms cubic-bezier(.165, .84, .44, 1);
  transition: opacity 500ms cubic-bezier(.165, .84, .44, 1);
  cursor: pointer;
}

.arrow-right:hover {
  opacity: 1;
}

.arrow-left {
  width: 45px;
  opacity: 0.25;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  cursor: pointer;
}

.arrow-left:hover {
  opacity: 1;
}

.footer-heading {
  margin-bottom: 25px;
}

.footer-list-item {
  margin-bottom: 10px;
  opacity: 0.75;
}

.read-more-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.hero-reveal-transition-box {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 999999;
  display: none;
  background-color: #000;
}

.fullsize-img-outer-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 80vh;
  margin-bottom: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

.hero-content-hidden-wrapper {
  overflow: hidden;
}

.footer-link-item {
  margin-bottom: 10px;
}

.text-block {
  opacity: 0.75;
}

.intro-wrapper {
  max-width: 70%;
  margin-right: auto;
  margin-bottom: 59px;
  margin-left: auto;
  text-align: center;
}

.h2 {
  margin-top: 15px;
  margin-bottom: 15px;
  font-family: Manrope, sans-serif;
  font-size: 35px;
}

.h2.big-title {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 50px;
  font-weight: 600;
}

.text-block-2 {
  font-size: 15px;
  font-weight: 500;
}

.div-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.each-certifies-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 23px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.certified-text {
  margin-bottom: 19px;
  color: #6e6e6e;
}

.cerified-logo-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 70%;
  margin-right: auto;
  margin-bottom: 105px;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.about-intro-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.about-intro-wrapper.nobottom {
  margin-bottom: 0px;
}

.about-intro-wrapper.extrabottom {
  margin-bottom: 70px;
}

.div-block-2 {
  display: -ms-grid;
  display: grid;
  margin-top: 50px;
  grid-auto-columns: 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.each-about-intro-text {
  text-align: left;
}

.div-block-3 {
  display: -ms-grid;
  display: grid;
  max-width: 80%;
  margin-right: auto;
  margin-left: auto;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.ce0-photo-holder {
  width: 100%;
}

.quotes-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.abt-exp-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.title-wrapper.special {
  width: 100%;
  max-width: 500px;
  padding-top: 31px;
  padding-bottom: 0px;
  border-bottom: 1px solid #d1d1d1;
  text-align: center;
}

.title-wrapper.special-2 {
  max-width: 500px;
  padding-top: 31px;
  padding-bottom: 31px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px none #d1d1d1;
  text-align: center;
}

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

.title-wrapper.left {
  margin-bottom: 15px;
  text-align: left;
}

.grid-col-2 {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 80px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.div-block-4 {
  text-align: left;
}

.quotes-text {
  margin-bottom: 26px;
  font-size: 25px;
  line-height: 1.7em;
  font-weight: 500;
}

.quotes-text.small {
  font-size: 18px;
}

.awards-holder {
  display: -ms-grid;
  display: grid;
  max-width: 50%;
  margin: 30px auto 0px;
  grid-auto-columns: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.each-awards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.bodyass-holder {
  display: -ms-grid;
  display: grid;
  width: 80%;
  margin-top: 30px;
  grid-auto-columns: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto auto auto;
  grid-template-rows: auto auto auto;
}

.each-bodyass {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.big-title {
  margin-bottom: 20px;
  font-family: Manrope, sans-serif;
  font-size: 35px;
  line-height: 1.3em;
  font-weight: 500;
}

.vision-text {
  font-size: 35px;
  line-height: 1.3em;
  font-weight: 500;
}

.para {
  max-width: 100ch;
  font-size: 18px;
}

.para._1000 {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

._2-col {
  display: block;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.seating-img-holder {
  margin-right: 0px;
}

.image-9 {
  width: 100%;
  height: 100%;
}

.div-block-11 {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.div-block-11-copy {
  display: -ms-grid;
  display: grid;
  margin-bottom: 55px;
  grid-auto-columns: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto auto;
  grid-template-rows: auto auto auto;
}

.div-block-12 {
  display: -ms-grid;
  display: grid;
  margin-top: 100px;
  grid-auto-columns: 1fr;
  grid-column-gap: 115px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.image-10 {
  width: 100%;
  height: 100%;
}

.text-span {
  font-size: 25px;
  font-weight: 400;
}

.div-block-13 {
  padding-right: 52px;
  padding-left: 52px;
}

.div-block-14 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.bath-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}

.div-block-15 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 46px;
}

.image-11 {
  width: 18px;
  height: 28px;
  margin-right: 15px;
}

.list-item {
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 600;
}

.list-item-2 {
  font-size: 18px;
}

.div-block-16 {
  display: -ms-grid;
  display: grid;
  margin-bottom: 71px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: center;
}

.div-block-17 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.image-12 {
  width: 100%;
  height: 100%;
}

.div-block-18 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.tabs {
  width: 100%;
}

.tabs-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tab-link-tab-1 {
  background-color: transparent;
}

.tab-link-tab-1.w--current {
  padding-right: 30px;
  padding-left: 30px;
  border-bottom-style: solid;
  background-color: transparent;
}

.tab-link-tab-2 {
  background-color: transparent;
}

.tab-link-tab-2.w--current {
  border-bottom-style: solid;
  background-color: transparent;
}

.basin-holder {
  display: -ms-grid;
  display: grid;
  margin-bottom: 80px;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.multiply {
  margin-bottom: 20px;
}

.text-block-3 {
  font-size: 20px;
  font-weight: 600;
}

.grey {
  background-color: #f6f6f6;
}

._810-overlay {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.div-block-20 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 38px;
  padding-right: 44px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.div-block-21 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.div-block-22 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 102px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.div-block-23 {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.overlay-img {
  width: auto;
  height: auto;
}

._820-overlay {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

._5510-overlay {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

._7220-overlay {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

._7310-overlay {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

._7410-overlay {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

._7520-overlay {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

._7710-overlay {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

._7730-overlay {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

._804-overlay {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

._850-overlay {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

._871-overlay {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

._881-overlay {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

._966-overlay {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.div-block-24 {
  width: 85%;
}

.div-block-25 {
  margin-bottom: 64px;
}

.div-block-26 {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.tabs-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.tabs-menu-2 {
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 30%;
  height: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.tabs-content {
  width: 100%;
}

.tab-link-tab-1-2 {
  padding-left: 15px;
  background-color: transparent;
}

.tab-link-tab-1-2.w--current {
  padding-left: 15px;
  border-left: 2px solid #000;
  background-color: transparent;
}

.tab-link-tab-2-2 {
  padding-left: 15px;
  background-color: transparent;
}

.tab-link-tab-2-2.w--current {
  border-left: 2px solid #000;
  background-color: transparent;
}

.div-block-27 {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.collection-img {
  width: 100%;
  height: auto;
}

.div-block-28 {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.benefit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.cerified-logo-holder2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 70%;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.certified-logo-2 {
  display: -ms-grid;
  display: grid;
  width: 70%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.button {
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: #000;
  font-size: 18px;
  text-align: center;
}

.container-2 {
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 60px;
  padding-left: 60px;
}

.button-2 {
  padding: 18px 27px;
  border-style: none;
  border-width: 0px;
  border-color: #fff;
  border-radius: 100px;
  background-color: #272e38;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  text-transform: none;
}

.button-2.whatsapp {
  background-color: #38d753;
}

.dontwait-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.title-main {
  margin-bottom: 21px;
  text-align: center;
}

.heading-2 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #000;
  font-size: 44px;
  line-height: 48px;
}

.heading-2.bottom-padding {
  margin-bottom: 30px;
}

.dontwait-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.btn-secondary-2 {
  padding: 16px 50px;
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
  border-radius: 2px;
  background-color: #000;
  color: #fff;
  font-size: 20px;
}

._3-col-grid {
  display: -ms-grid;
  display: grid;
  margin-bottom: 55px;
  grid-auto-columns: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto auto;
  grid-template-rows: auto auto auto;
}

._3-col-grid.nobottom {
  margin-bottom: 0px;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.award-logo {
  display: -ms-grid;
  display: grid;
  width: 50%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.div-block-29 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navigation-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 12px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: Manrope, sans-serif;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.navigation-link.w--current {
  color: #fff;
}

.navigation-link.black {
  color: #000;
}

.nav-content-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-left: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.dropdown-toggle {
  padding-right: 24px;
  padding-left: 12px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #fff;
}

.dropdown-toggle.black {
  color: #000;
}

.dropdown-pointer {
  position: relative;
}

.navigation-container-mob {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.brand {
  margin-right: 44px;
}

.navigation-mob {
  position: relative;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.navigation-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 1300px;
  min-height: 90px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.button-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 50px;
  padding-right: 25px;
  padding-left: 25px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
  border-radius: 2px;
  background-color: transparent;
  font-family: Manrope, sans-serif;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}

.navigation {
  position: relative;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 3%;
  padding-left: 3%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.navigation-dropdown {
  min-width: 140px;
}

.navigation-dropdown.w--open {
  left: -100px;
  max-height: 100vh;
  min-width: 320px;
  padding-top: 10px;
  background-color: transparent;
}

.navigation-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.dropdown-title {
  margin-bottom: 2px;
  font-size: 15px;
}

.navigation-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
}

.navigation-wrap {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
}

.navigation-wrap.static {
  position: static;
}

.dropdown-wrapper {
  overflow: hidden;
  min-width: 140px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 4px -19px 35px 0 rgba(32, 53, 90, 0.08), 11px 11px 30px -10px rgba(32, 53, 90, 0.15);
}

.dropdown-wrapper.w--open {
  left: -97px;
  max-height: 100vh;
  min-width: 300px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 50px 25px -50px rgba(32, 53, 90, 0.15), 8px 18px 60px 4px rgba(0, 0, 0, 0.13);
}

.icon-4 {
  margin-right: 5px;
}

.nav-menu {
  position: static;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #283338;
  font-size: 15px;
}

.dropdown-link-mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 20px 22px 16px;
  color: #283338;
  font-size: 16px;
  text-decoration: none;
}

.dropdown-link-mobile:hover {
  background-color: #f8faff;
}

.pointer {
  position: absolute;
  left: 0%;
  top: -3%;
  right: 4%;
  bottom: auto;
  z-index: 20;
  width: 20px;
  height: 20px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 2px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.login-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.dropdown-link {
  position: relative;
  z-index: 25;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #283338;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
}

.button-wrapper-2.bottom-padding {
  display: none;
  padding-bottom: 30px;
  border-bottom: 1px solid #cfcfcf;
}

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

.text-block-4 {
  font-size: 20px;
  line-height: 24px;
}

.text-block-4.bold {
  color: #000;
  font-weight: 700;
}

.text-block-4.bold.bottom-padding {
  margin-bottom: 20px;
}

.text-block-4.bold.bottom-padding.top-padding {
  margin-top: 20px;
}

.contact-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-link {
  margin-bottom: 15px;
  color: #000;
  font-size: 19px;
  text-decoration: none;
}

.contact-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.image-14 {
  width: 100%;
  height: 100%;
}

.link-block {
  color: #fff;
  font-size: 16px;
}

.link-block-2 {
  color: #fff;
  font-size: 16px;
}

.link-block-3 {
  color: #fff;
  font-size: 16px;
}

.each-basin-810 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 70px 39px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f6f6f6;
  text-align: center;
}

.each-basin-820 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 70px 39px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f6f6f6;
  text-align: center;
}

.each-basin-5510 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 70px 39px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f6f6f6;
  text-align: center;
}

.each-basin-7220 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 70px 39px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f6f6f6;
  text-align: center;
}

.each-basin-7310 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 70px 39px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f6f6f6;
  text-align: center;
}

.each-basin-7410 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 70px 39px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f6f6f6;
  text-align: center;
}

.each-basin-7520 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 70px 39px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f6f6f6;
  text-align: center;
}

.each-basin-7710 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 70px 39px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f6f6f6;
  text-align: center;
}

.each-basin-7730 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 70px 39px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f6f6f6;
  text-align: center;
}

.each-basin-804 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 70px 39px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f6f6f6;
  text-align: center;
}

.each-basin-850 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 70px 39px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f6f6f6;
  text-align: center;
}

.each-basin-871 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 70px 39px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f6f6f6;
  text-align: center;
}

.each-basin-881 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 70px 39px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f6f6f6;
  text-align: center;
}

.each-basin-966 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 70px 39px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f6f6f6;
  text-align: center;
}

.div-block-16-copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 71px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: center;
}

.text-block-5 {
  font-size: 18px;
  font-weight: 600;
}

.text-block-5-copy {
  font-size: 18px;
  font-weight: 600;
}

.image-15 {
  margin-right: 14px;
}

@media screen and (max-width: 991px) {
  .s-hero {
    height: 100vh;
  }

  .hero-bg-img.conti {
    background-position: 90% 50%;
  }

  .hero-content-wrapper {
    padding-top: 150px;
    padding-bottom: 61px;
  }

  .h1 {
    font-size: 45px;
  }

  .container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .logo-grid {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .section {
    padding: 60px 20px;
  }

  .section.notop {
    padding-bottom: 0px;
  }

  .top-header-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .top-header-left {
    width: 100%;
  }

  .top-header-right {
    width: 100%;
    margin-top: 25px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .fullsize-img-wrapper {
    height: auto;
  }

  .footer-grid {
    grid-row-gap: 75px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .logo-grid-left {
    margin-bottom: 25px;
  }

  .h3 {
    max-width: 100%;
    margin-bottom: 25px;
    text-align: center;
  }

  .btn-secondary.extraspacing {
    margin-right: 0px;
    margin-bottom: 19px;
  }

  .hero-content-left {
    max-width: none;
  }

  .fullsize-img-outer-wrapper {
    height: 40vh;
    margin-bottom: 20px;
    padding-right: 41px;
    padding-left: 41px;
  }

  .h2 {
    font-size: 32px;
  }

  .h2.big-title {
    text-align: center;
  }

  .div-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cerified-logo-holder {
    max-width: none;
  }

  .div-block-2 {
    margin-top: 25px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .div-block-3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .quotes-holder {
    margin-bottom: 50px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .image-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

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

  .image-4 {
    width: 100%;
  }

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

  .div-block-11 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .div-block-11-copy {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .div-block-12 {
    margin-top: 0px;
    margin-bottom: 50px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .div-block-12.nobottom {
    margin-bottom: 0px;
  }

  .div-block-13 {
    padding-right: 0px;
    padding-left: 0px;
  }

  .div-block-14 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bath-grid {
    width: auto;
  }

  .div-block-16 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .basin-holder {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .div-block-24 {
    width: auto;
  }

  .div-block-26 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .tabs-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .tabs-menu-2 {
    position: static;
    width: auto;
    height: auto;
    margin-bottom: 42px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    text-align: left;
  }

  .tab-link-tab-1-2 {
    text-align: center;
  }

  .tab-link-tab-1-2.w--current {
    border-bottom-style: solid;
    border-left-style: none;
  }

  .tab-link-tab-2-2 {
    text-align: center;
  }

  .tab-link-tab-2-2.w--current {
    border-bottom-style: solid;
    border-left-style: none;
  }

  .div-block-27 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .div-block-28 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .cerified-logo-holder2 {
    max-width: none;
  }

  .certified-logo-2 {
    width: auto;
  }

  .container-2 {
    padding-right: 15px;
    padding-left: 15px;
  }

  .button-2 {
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .title-main {
    margin-bottom: 30px;
  }

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

  .award-logo {
    width: 70%;
  }

  .nav-content-wrap {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .mobile-nav-link {
    width: 100%;
    font-family: Manrope, sans-serif;
    font-size: 18px;
  }

  .mobile-nav-link.w--current {
    color: #000;
  }

  .navigation-container-mob {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .navigation-mob {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 85px;
    padding-right: 3%;
    padding-left: 3%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 1px solid rgba(68, 85, 103, 0.11);
  }

  .menu-mob {
    border-radius: 100px;
    background-color: transparent;
    color: #000;
    font-size: 22px;
  }

  .menu-mob.w--open {
    background-color: transparent;
  }

  .navigation {
    display: none;
  }

  .navigation-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .mobile-nav {
    padding-top: 15px;
    background-color: #fff;
    box-shadow: 42px 42px 55px 0 rgba(32, 53, 90, 0.09);
  }

  .dropdown-link-mobile {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #fff;
  }

  .dropdown-list {
    background-color: #fff;
  }

  .mobile-toggle {
    width: 100%;
  }

  .button-wrapper-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .button-wrapper-2.bottom-padding {
    margin-top: 34px;
    padding-bottom: 0px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .contact-wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .icon-5 {
    color: #fff;
    font-size: 30px;
  }

  .icon-5.black {
    color: #000;
  }

  .div-block-16-copy {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .hero-bg-img.about-us {
    background-position: 54% 50%;
  }

  .hero-bg-img.conti {
    background-position: 85% 50%;
  }

  .hero-content-wrapper {
    padding-top: 150px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .h1 {
    font-size: 40px;
  }

  .social-icon {
    margin-right: 50px;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .social-icon.footer {
    margin-right: 0px;
    margin-left: 0px;
  }

  .container {
    width: auto;
    padding-right: 15px;
    padding-left: 15px;
  }

  .logo-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .section.grey {
    overflow: hidden;
    max-width: 100vw;
  }

  .top-header-right {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .content-center-wrapper {
    padding-right: 0px;
    padding-left: 0px;
  }

  .full-width-slider-wrapper {
    overflow: visible;
  }

  .footer-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .footer-block-wrapper {
    margin-bottom: 50px;
  }

  .footer-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer-right {
    margin-top: 25px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .hero-content-left {
    max-width: 100%;
  }

  .fullsize-img-outer-wrapper {
    height: auto;
    padding: 36px 25px;
  }

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

  .intro-wrapper {
    max-width: none;
  }

  .h2 {
    font-size: 30px;
  }

  .h2.big-title {
    font-size: 35px;
  }

  .title-wrapper.special {
    text-align: center;
  }

  .bodyass-holder {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .list-item {
    font-size: 20px;
  }

  .list-item-2 {
    font-size: 18px;
  }

  .basin-holder {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .div-block-23 {
    justify-items: center;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .tabs-menu-2 {
    width: auto;
  }

  .button-wrapper-2.bottom-padding {
    padding-bottom: 0px;
  }
}

@media screen and (max-width: 479px) {
  .s-hero {
    padding-right: 25px;
    padding-left: 25px;
  }

  .hero-bg-img.about-us {
    background-position: 63% 50%;
  }

  .hero-bg-img.conti {
    background-position: 93% 50%;
  }

  .hero-content-wrapper {
    padding-bottom: 120px;
  }

  .subheader.full-opacity {
    text-align: center;
  }

  .h1 {
    font-size: 40px;
    line-height: 1.1em;
    font-weight: 500;
  }

  .container {
    padding-right: 0px;
    padding-left: 0px;
  }

  .logo-grid {
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 15px;
  }

  .section.grey {
    overflow: hidden;
    padding: 40px 10px;
  }

  .section.grey.nobottom {
    padding-right: 10px;
    padding-left: 10px;
  }

  .footer-right {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .h3 {
    font-size: 28px;
  }

  .object-list-wrapper {
    padding-right: 0px;
    padding-left: 0px;
  }

  .object-card-content-wrapper {
    padding: 20px;
  }

  .fullsize-img-outer-wrapper {
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
  }

  .h2 {
    margin-bottom: 0px;
    font-size: 28px;
  }

  .h2.big-title {
    line-height: 1em;
  }

  .each-certifies-logo {
    margin-right: 0px;
  }

  .about-intro-wrapper {
    margin-bottom: 0px;
  }

  .div-block-2 {
    margin-top: 0px;
  }

  .div-block-3 {
    max-width: none;
    grid-column-gap: 0px;
  }

  .awards-holder {
    max-width: none;
  }

  .big-title {
    font-size: 32px;
    line-height: 1.2em;
  }

  .bath-grid {
    margin-top: 28px;
  }

  ._810-overlay {
    height: auto;
  }

  .tabs-menu-2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .certified-logo-2 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .award-logo {
    width: auto;
    justify-items: center;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .flowbase-logo {
    width: 80%;
  }

  .dropdown-link-mobile {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .contact-wrapper {
    width: 100%;
  }

  .contact-inner {
    padding: 50px 15px;
  }

  .bold-text {
    line-height: 0.75em;
  }
}

#w-node-f34eab2c-f063-5b36-bc43-695de24d8752-4593bdc2 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_3a8cc410-5429-ded2-9c67-37db546195b2-b400eff2 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-a0dde932-0b8d-025b-ae78-37d4d1d734a4-cd6041e0 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_44e9336b-738f-3466-3e0f-6fc183dbb780-cd6041e0 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_4f216c2c-45e8-9701-f1fc-38bb3587e000-cd6041e0 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-d35f5bb1-5bdc-ee2c-9b74-7767b0b3129a-cd6041e0 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-ae86b295-5403-f876-d339-3a83a2bb61b2-f69e246e {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-f841a8b8-a091-a87a-245d-9766b3456e8f-78896f5b {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

@media screen and (max-width: 991px) {
  #w-node-aa631fb3-37c7-15c6-a0a9-9e01323e4147-323e4117 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }

  #w-node-_3a8cc410-5429-ded2-9c67-37db546195b2-b400eff2 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-_44e9336b-738f-3466-3e0f-6fc183dbb77e-cd6041e0 {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }

  #w-node-d35f5bb1-5bdc-ee2c-9b74-7767b0b31298-cd6041e0 {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }

  #w-node-_44098628-62da-d209-a36a-675d92019480-f69e246e {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }

  #w-node-ae86b295-5403-f876-d339-3a83a2bb61b2-f69e246e {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #w-node-cf6539d5-e38d-afd9-80cf-de9f5860adde-78896f5b {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }

  #w-node-f841a8b8-a091-a87a-245d-9766b3456e8f-78896f5b {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }
}

