:root {
  --shell-max-width: 1133px;
  --shell-gutter-mobile: 16px;
  --shell-gutter-tablet: 42px;
  --shell-gutter: 101px;
  --shell-gutter-large: 154px;
  --c-charcoal: #544f4a;
  --c-charcoal-decimal: 84, 79, 74;
  --c-red-hex: #d9201e;
  --c-red-decimal: 217, 32, 30;
  --c-lightgray: #efefef;
  --c-darkred-hex: #991c1f;
  --c-beige-hex: #f9f2e6;
  --c-base: #4a4541;
  --ff-montserrat: "Montserrat", sans-serif;
  --ff-play-fair: "Playfair Display", "playfair display", serif;
  --ff-nunito-sans: "Nunito Sans", sans-serif;
  --theme-transition-duration: 0.4s;
}
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/PlayfairDisplay-Regular.woff2) format("woff2"),
    url(../fonts/PlayfairDisplay-Regular.woff) format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  src: url(../fonts/PlayfairDisplay-Italic.woff2) format("woff2"),
    url(../fonts/PlayfairDisplay-Italic.woff) format("woff");
}




body {
  margin: 0 !important;
}
.background-red {
  background-color: var(--c-darkred-hex);
  color: #fff;
}
.background-red + .background-red {
  padding-top: 0;
}
.background-white {
  background-color: #fff;
}
.background-white + .background-white,
.background-white + .background-white-gray {
  padding-top: 0;
}
.background-light-gray {
  background-color: var(--c-lightgray);
}
.background-light-gray + .background-gray-white,
.background-light-gray + .background-light-gray {
  padding-top: 0;
}
.background-light-gray + .background-gray-white.padding-block-small:before {
  top: calc(50% - (clamp(32px, 5vw, 76px) / 2));
}
.background-white-gray {
  background-color: #fff;
  position: relative;
}
.background-white-gray > * {
  position: relative;
  z-index: 2;
}
.background-white-gray:before {
  background-color: var(--c-lightgray);
  bottom: 0;
  content: " ";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
}
.background-white-gray + .background-gray {
  padding-top: 0;
}
.background-gray-white {
  position: relative;
}
.background-gray-white + .background-white {
  padding-top: 0;
}
.background-gray-white > * {
  position: relative;
  z-index: 2;
}
.background-gray-white:before {
  background-color: #fff;
  bottom: 0;
  content: " ";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
}
.padding-block-normal {
  padding-block: clamp(60px, 7vw, 50px);
}
.padding-block-small {
  padding-block: clamp(32px, 5vw, 50px);
}
.shell {
  margin: 0 auto;
  max-width: calc(var(--shell-max-width) + (2 * var(--shell-gutter)));
  padding: 0 var(--shell-gutter);
}
.shell--max {
  --shell-max-width: 1440px;
  --shell-gutter: 36px;
  width: 100%;
}
.header {
  position: relative;
  z-index: 99;
}
.header .header__actions ul {
  align-items: center;
  display: flex;
  gap: 24px;
}
.header .header__actions a {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
  line-height: 1.4;
}
.header a {
  color: var(--c-charcoal) !important;
}
.header .header__actions-mobile {
  align-items: center;
  display: flex;
  flex: 0 1 112px;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.header .header__actions-mobile a:first-child {
  color: var(--c-red-hex, red) !important;
  flex: 0 0 100%;
  font-size: 13px;
  font-weight: 700;
  text-align: right !important;
}
.section--gallery {
  padding-top: clamp(32px, 5vw, 40px);
}
.slider-images-alt {
  display: flex;
  height: auto;
  width: 100%;
}
.slider-images-alt .slider__clip {
  width: 100%;
}
.slider-images-alt .slider__slide {
  aspect-ratio: 805/488;
  height: 100%;
  position: relative;
  width: 100% !important;
}
.slider-images-alt .slider__slide img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.title-two-colors > * {
  line-height: 1.5;
}
.title-two-colors .title__charcoal-normal {
  color: var(--c-charcoal);
  font-family: var(--ff-montserrat, "sans-serif");
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.title-two-colors .title__red-italic {
  color: var(--c-red-hex, red);
  font-family: var(--ff-play-fair, "sans-serif");
  font-size: 36px;
  font-style: italic;
  line-height: 1.43;
  text-transform: capitalize;
}
.btn-alt {
  background-color: transparent !important;
  border: 1px solid var(--c-red-hex, red);
  border-radius: 4px;
  color: var(--c-red-hex, red) !important;
  display: block;
  font-family: var(--ff-nunito-sans, "sans-serif");
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.38;
  padding: 16px 25px;
  text-align: center;
  text-align: center !important;
  text-decoration: none;
  text-transform: uppercase;
  transition: color, background-color;
  transition-duration: 0.3s !important;
}
.btn-alt:hover {
  background-color: var(--c-red-hex, red) !important;
  color: #fff !important;
  text-decoration: none;
}
.btn-alt--red {
  background-color: var(--c-red-hex, red) !important;
  color: #fff !important;
  transition: background-color, color;
  transition-duration: 0.3s;
}
.btn-alt--red:hover {
  background-color: #fff !important;
  color: var(--c-red-hex, red) !important;
}
.btn-alt--white {
  background-color: #fff !important;
  border-color: #fff;
  color: var(--c-red-hex, red) !important;
  padding: 16px clamp(17px, 2vw, 23px);
  transition: color, background-color, border-color;
  transition-duration: 0.3s;
}
.btn-alt--white:hover {
  background-color: inherit !important;
  border-color: #fff;
  color: #fff !important;
}
.btn-alt--inline {
  display: inline-block;
}
.btn-mobile {
  border: 1px solid #979797;
  border-radius: 2px;
  display: grid;
  height: 48px;
  place-content: center;
  width: 48px;
}
.btn-mobile.active {
  border-color: var(--c-red-hex, red);
}
.link-arrow {
  color: var(--c-red-hex, red) !important;
  display: inline-block;
  font-family: var(--ff-nunito-sans, "sans-serif");
  font-size: 18px;
  font-weight: 600;
  line-height: 1.67;
  padding-right: 23px;
  position: relative;
  text-decoration: none;
  text-transform: capitalize;
}
.link-arrow:before {
  background-color: currentColor;
  content: "";
  height: 1px;
  position: absolute;
  right: 0;
  top: 15px;
  transition: transform 0.3s;
  width: 11px;
}
.link-arrow:after {
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  height: 5px;
  position: absolute;
  right: 0;
  top: 13px;
  transform: rotate(-45deg);
  transition: transform 0.3s;
  width: 5px;
}
.link-arrow:hover {
  text-decoration: none;
}
.link-arrow:hover::before {
  transform: translateX(5px);
}
.link-arrow:hover::after {
  transform: translateX(5px) rotate(-45deg);
}
.tile-img-text {
  align-items: flex-end;
  aspect-ratio: 361/340;
  display: flex;
  padding: 22px 32px;
  position: relative;
  width: 100%;
}
.tile-img-text:after {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0,
    rgba(0, 0, 0, 0.6) 100%
  );
  content: "";
  height: 100%;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  transition: opacity 0.3s linear;
  width: 100%;
  z-index: 2;
}
.tile-img-text:before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.3s linear;
  width: 100%;
  z-index: 3;
}
.tile-img-text a {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5;
}
.tile-img-text img {
  position: absolute;
  z-index: 1;
}
.tile-img-text .tile-title {
  color: #fff;
  font-family: var(--ff-montserrat, "sans-serif");
  font-size: 18px;
  font-weight: 700;
  line-height: 1.22;
  position: relative;
  text-transform: uppercase;
  z-index: 4;
}
.tile-img-text:hover::after {
  opacity: 0;
  transition: opacity 0.3s;
}
.tile-img-text:hover::before {
  opacity: 1;
  transition: opacity 0.3s;
}
.section-cols-3 {
  position: relative;
}
.section-cols-3:not([class*="padding"]) {
  margin-bottom: 49px;
  padding: 42px 0 0;
}
.section-cols-3:not([class*="background"]):before {
  background-color: #fff;
  content: "";
  height: 348px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.section__inner {
  position: relative;
  z-index: 2;
}
.section-cols-3 .section__head h2 {
  color: var(--c-red-hex, red);
  font-family: var(--ff-play-fair, "sans-serif");
  font-size: 36px;
  font-style: italic;
  text-align: center !important;
}
.section-cols-3 .section__head + .section__cols {
  margin-top: 39px;
}
.section-cols-3 .section__cols {
  display: grid;
  gap: 40px 25px;
  grid-template-columns: repeat(3, 1fr);
}
.section-cols-3 .section__col {
  display: flex;
  height: auto;
}
.section-cols-3--alt {
  background-color: #fff;
  margin: 0;
  padding: clamp(32px, 9vw, 120px) 0;
}
.section-cols-3--alt:before {
  display: none;
}
.tile-ico-text-centered {
  background-color: #fff !important;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  min-height: 424px;
  padding: 35px 32px 40px;
  text-align: center;
}
.tile-ico-text-centered * {
  text-align: center !important;
}
.tile-ico-text-centered .tile__ico-wrapper {
  align-items: center;
  display: flex;
  height: 108px;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  width: 108px;
}
.tile-ico-text-centered .tile__ico-bg {
  border-radius: 50%;
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}
.tile-ico-text-centered .tile__ico {
  align-items: center;
  display: flex;
  justify-content: center;
  max-width: 41px;
  position: relative;
  width: 100%;
  z-index: 3;
}
.tile-ico-text-centered .tile__ico img {
  height: auto;
  width: 100%;
}
.tile-ico-text-centered .tile__ico-wrapper + .tile__content {
  margin-top: 24px;
}
.tile-ico-text-centered .tile__head h3 {
  font-family: var(--ff-nunito-sans, "sans-serif");
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.67;
}
.tile-ico-text-centered .tile__head:not(:last-child) {
  margin-bottom: 16px;
}
.tile-ico-text-centered .tile__content {
  flex-grow: 1;
}
.tile-ico-text-centered .tile__content:not(:last-child) {
  margin-bottom: 23px;
}
.tile-ico-text-centered .tile__actions {
  margin-top: auto;
}
.tile-ico-text-centered .link-arrow {
  font-size: 16px;
}
.section-testimonials * {
  text-align: center !important;
}
.section-testimonials .section__head h2 {
  margin-bottom: clamp(24px, 3vw, 32px);
}
.section-testimonials .section__head > :last-child {
  margin-bottom: 0;
}
.section-testimonials .section__body {
  width: 100%;
}
.section-testimonials .section__body:not(:last-child) {
  margin-bottom: 40px;
}
.section-testimonials .section__head:not(:last-child) {
  margin-bottom: clamp(22px, 2vw, 31px);
}
.section-testimonials .section__head-bottom,
.section-testimonials .section__head-top {
  display: block;
}
.section-testimonials .section__head-top + br {
  display: none;
}
.slider-testimonials {
  padding-inline: clamp(60px, 8vw, 120px);
  position: relative;
}
.slider-testimonials .slider__slide {
  display: flex;
  flex-direction: column;
  height: auto;
}
.slider-testimonials .slider__slide > * {
  height: 100%;
}
.slider-testimonials .slider__actions {
  align-items: center;
  display: flex;
  height: 50px;
  justify-content: space-between;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 49.1%;
  transform: translateY(-50%);
  z-index: 1;
}
.slider-testimonials .slider__prev {
  left: 0;
}
.slider-testimonials .slider__next {
  right: 0;
}
.slider-testimonials .slider__next,
.slider-testimonials .slider__prev {
  border: 1px solid var(--c-charcoal);
  border-radius: 50%;
  height: 50px;
  pointer-events: all;
  width: 50px;
}
.slider-testimonials .slider__next:after,
.slider-testimonials .slider__prev:after {
  display: none;
}
.slider-testimonials .slider__next:before,
.slider-testimonials .slider__prev:before {
  border-bottom: 1px solid var(--c-charcoal);
  border-left: 1px solid var(--c-charcoal);
  content: "";
  height: 10px;
  left: 57%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color;
  width: 10px;
}
.slider-testimonials .slider__next:before {
  left: 43.5%;
  transform: translate(-50%, -50%) rotate(-135deg);
}
.tile-testimonial {
  background-color: #fff !important;
  padding: 32px 32px 32px;
}
.tile-testimonial * {
  text-align: center !important;
}
.tile-testimonial .tile__content {
  margin: 0 auto;
  max-width: 361px;
  width: 100%;
}
.tile-testimonial .tile__rate ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  justify-content: center;
  list-style-type: none;
}
.tile-testimonial .tile__rate li {
  align-items: center;
  background-color: #00b67a !important;
  display: flex;
  height: 20px;
  justify-content: center;
  width: 20px;
}
.tile-testimonial .tile__rate img {
  height: auto;
  max-width: 14px;
  width: 100%;
}
.tile-testimonial .tile__rate:not(:last-child) {
  margin-bottom: 20px;
}
.tile-testimonial .tile__head {
  font-weight: 700;
  letter-spacing: 0.01em;
}
.tile-testimonial .tile__head:not(:last-child) {
  margin-bottom: 16px;
}
.tile-testimonial .tile__entry:not(:last-child) {
  margin-bottom: 24px;
}
.tile-testimonial .tile__meta {
  font-size: 14px;
  line-height: normal;
}
.tile-testimonial .tile__entry,
.tile-testimonial .tile__head {
  font-size: 16px;
}
.section__content {
  flex: 0 0 669px;
  padding: 0 24px;
}
.section-title {
  background-color: #fff !important;
  padding-block: 17px 216px;
}
.section-title .section__content {
  margin-top: 10px;
}
.section-title .section__content > * {
  text-align: center !important;
}
.section-title .section__content span {
  color: var(--c-charcoal);
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  text-transform: uppercase;
}
.section-title .section__content h1 {
  color: #d9201e;
  font-family: "Playfair Display", sans-serif;
  font-size: 46px;
  line-height: 1.17;
  margin-bottom: 18px;
}
.section-title .section__content h1:last-child {
  margin-bottom: 0;
}
.section-products {
  margin-top: -159px;
  padding-bottom: 64px;
}
.section-products .section__inner {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.section-products-grid {
  background-color: #fff !important;
  padding-block: 80px 57px;
}
.section-products-grid .section__head {
  margin-bottom: 32px;
}
.section-products-grid .section__head h2 span {
  color: var(--c-charcoal);
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 2;
  text-transform: uppercase;
}
.section-products-grid .section__head h2 {
  color: #d9201e;
  font-family: "Playfair Display", sans-serif;
  font-size: 36px;
  font-style: italic;
  line-height: 1.11;
}
.section-products-grid .section__btn {
  padding-right: 21px;
}
.section-products-grid .section__entry {
  align-items: end;
  display: grid;
  grid-template-columns: 66% auto;
  margin-bottom: 46px;
}
.section-products-grid .section__entry span {
  color: #d9201e;
}
.section-products-grid .section__entry .section__btn {
  justify-self: end;
}
.section-products-grid .section__grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.section-message {
  padding-block: 72px;
  position: relative;
}
.section-message:not([class*="background"]) {
  background-color: #991c1f !important;
  color: #fff;
}
.section-message:before {
  background: url(../media/images/circles-bg-1.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  height: 139.6%;
  position: absolute;
  right: 69.7%;
  top: 19%;
  width: 45.6%;
}
.section-message:after {
  background: url(../media/images/circles-bg-2.png) no-repeat 0 0;
  background-size: contain;
  bottom: 19%;
  content: "";
  height: 139.6%;
  left: 84.5%;
  position: absolute;
  width: 45.6%;
}
.section-message * {
  text-align: center !important;
}
.section-message h2 {
  font-family: "Playfair Display", sans-serif;
  font-size: 36px;
  font-style: italic;
  margin-bottom: clamp(24px, 2vw, 25px);
}
.section-message p {
  margin-inline: auto;
  max-width: 748px;
}
.section-message .section__actions {
  margin-top: 39px;
}
.section-message--alt {
  padding-block: clamp(48px, 5vw, 50px);
}
.section-message--alt:after,
.section-message--alt:before {
  display: none;
}
.section-message--alt p {
  max-width: 760px;
}
.section-message--alt.background-light-gray h2 {
  color: var(--c-red-hex);
}
.section-testimonials.section-testimonials--alt
  h2
  span.section__head-bottom.title__red-italic {
  font-size: 36px;
  line-height: 1.3;
}
.section-testimonials.section-testimonials--alt .section__head {
  margin-bottom: 25px;
}
.section-testimonials.section-testimonials--alt .section__body {
  margin-inline: auto;
  max-width: 750px;
}
.tile-testimonial.tile-testimonial--alt .tile__head {
  font-size: 16px;
  margin-bottom: 15px;
}
.tile-testimonial.tile-testimonial--alt .tile__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 360px;
}
.tile-testimonial.tile-testimonial--alt .tile__entry {
  flex: 1;
  font-size: 16px;
  line-height: 1.375;
  margin-bottom: 16px;
}
.tile-testimonial.tile-testimonial--alt .tile__meta {
  font-size: 14px;
  line-height: 1.36;
  margin-top: auto;
}
section.section-cols-media {
  padding-bottom: clamp(30px, 7vw, 96px);
}
.section-form {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.section-form .section__head {
  font-size: 16px;
  line-height: 1.625;
  text-align: center;
  width: 100%;
}
.section-form .section__head:not(:last-child) {
  margin-bottom: 24px;
}
.section-form .section__form {
  background-color: #fff;
  padding: clamp(20px, 7vw, 96px);
}
.section-content-and-images {
  background-color: #fff;
  padding-block: 80px;
  position: relative;
  width: 100%;
}
.section-content-and-images:first-child {
  padding-top: 40px;
}
.section-content-and-images > * {
  align-items: center;
  display: flex;
}
.section-content-and-images .section__content {
  display: flex;
  flex: none;
  flex-direction: column;
  gap: 24px;
  padding-inline: 0 60px;
  position: relative;
  width: calc(50% + 32px);
  z-index: 10;
}
.section-content-and-images .section__content-entry {
  color: var(--c-charcoal);
  font-size: 18px;
  line-height: 1.66;
}
.section-content-and-images .section__content-entry h1 {
  color: var(--c-red-hex, red);
  font-family: var(--ff-play-fair, "sans-serif");
  font-size: clamp(32px, 4vw, 46px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.17;
  margin-bottom: 16px;
  max-width: 530px;
}
.section-content-and-images .section__content-entry p {
  margin-bottom: 16px;
}
.section-content-and-images .section__content-entry > :last-child {
  margin-bottom: 0;
}
.section-content-and-images .section__images {
  font-size: 0;
  line-height: 0;
  pointer-events: none;
  position: relative;
  width: calc(50% - 32px);
}
.section-content-and-images .section__images:before {
  aspect-ratio: 1/1;
  background-color: #efefef;
  border-radius: 50%;
  content: " ";
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section-content-and-form {
  padding-block: 50px 102px;
  position: relative;
  width: 100%;
}
.section-content-and-form:before {
  background-color: #fff;
  bottom: 0;
  content: " ";
  left: 0;
  position: absolute;
  right: 0;
  top: 60%;
}
.section-content-and-form .section__inner {
  display: flex;
  flex-wrap: wrap;
  padding: clamp(20px, 10vw, 80px);
}
.section-content-and-form .section__inner-content {
  font-size: 18px;
  line-height: 1.66;
  padding-right: clamp(20px, 10vw, 80px);
  width: 50%;
}
.section-content-and-form .section__inner-content h1,
.section-content-and-form .section__inner-content h2 {
  color: var(--c-red-hex, red);
  font-family: var(--ff-play-fair, "sans-serif");
  font-size: clamp(32px, 8vw, 46px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.17;
  margin-bottom: 16px;
}
.section-content-and-form .section__inner-content p {
  margin-bottom: 10px;
}
.section-content-and-form .section__inner-content > :last-child {
  margin-bottom: 0;
}
.section-content-and-form .section__inner-form {
  width: 50%;
}
.shell.shell--small {
  --shell-max-width: 1145px;
  --shell-gutter-large: 36px;
}
.btn-alt--small {
  font-weight: 700;
  padding: 13px 25px;
}
.section-cols-media {
  background-color: #fff;
  padding: 48px 0;
}
.section-cols-media h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.31;
}
.section-cols-media .section__head {
  margin: 0 auto 32px;
  max-width: 660px;
  text-align: center;
}
.section-cols-media .section__head:last-child {
  margin-bottom: 0;
}
.section-cols-media .section__cols {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
.section-cols-media .section__col-media {
  margin-bottom: 24px;
  position: relative;
}
.section-cols-media .section__col-media:last-child {
  margin-bottom: 0;
}
.section-cols-media .section__col-media img {
  aspect-ratio: 586/329;
  display: block;
  object-fit: cover;
  width: 100%;
}
.section-cols-media .section__col-entry {
  text-align: center;
}
@-moz-document url-prefix() {
  .product-specs .product__row {
    min-width: 100%;
  }
}
@supports (-moz-appearance: none) {
  .has-max-height {
    scrollbar-color: var(--c-charcoal) transparent;
    scrollbar-width: thin;
  }
}
@supports (-moz-appearance: none) {
  .slider-product-popup .slider__pagination {
    scrollbar-color: var(--c-charcoal) transparent;
    scrollbar-width: thin;
  }
}
.ico-grid {
  background-image: url(../../assets/images/ico-grid.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  height: 14px;
  width: 14px;
}
.ico-list {
  background-image: url(../../assets/images/ico-list.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  height: 12px;
  width: 16px;
}
.section-list-products {
  background: #fff;
  padding-block: 80px;
  width: 100%;
}
.section-list-products .shell {
  display: flex;
}
.section-list-products .section__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section-list-products .section__list:not(:first-child) {
  width: calc(100% - 370px);
}
.section-list-products .section__list-products {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.section-list-products .section__list-products > ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.section-list-products .section__list-products > ul > li {
  width: 100%;
}
.section-list-products .section__list-products.grid > ul {
  margin: -30px -12px;
}
.section-list-products .section__list-products.grid > ul > li {
  padding: 30px 12px;
  width: calc(100% / 3);
}
.section-list-products .section__list-products.list > ul {
  margin: -20px 0;
}
.section-list-products .section__list-products.list > ul > li {
  padding: 20px 0;
}
.section {
  position: relative;
  width: 100%;
}
.section .section__head {
  text-align: center;
  width: 100%;
}
.section .section__head:not(:last-child) {
  margin-bottom: clamp(24px, 3vw, 40px);
}
.section .section__head h6 {
  color: var(--c-charcoal);
  font-family: var(--ff-montserrat);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
}
.section .section__head h2 {
  color: var(--c-red-hex);
  font-family: var(--ff-play-fair);
  font-size: clamp(28px, 3vw, 36px);
  font-style: italic;
  font-weight: 400;
}
.section .section__head h1 {
  color: var(--c-red-hex);
  font-family: var(--ff-play-fair);
  font-size: clamp(28px, 3vw, 36px);
  font-style: italic;
  font-weight: 400;
}
.section .section__head > :last-child {
  margin-bottom: 0;
}
.section .section__cols {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  width: 100%;
}
.section .section__cols[data-cols="4"] {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.section .section__cols[data-cols="3"] {
  grid-template-columns: 1fr 1fr 1fr;
}
.section .section__cols[data-cols="2"] {
  grid-template-columns: 1fr 1fr;
}
.section .section__cols .tile-ico-text-centered {
  min-height: 100%;
}
.section--gallery {
  overflow: hidden;
  position: relative;
}
.section--gallery .section__head:not(:last-child) {
  margin-bottom: clamp(32px, 4vw, 60px);
}
.section--gallery .section__head h2 {
  font-size: clamp(32px, 4vw, 46px);
}
.section--gallery .section__head h1 {
  font-size: clamp(32px, 4vw, 46px);
}
.section--gallery .section__body {
  position: relative;
}
.section--gallery .section__body.background-white-gray:before {
  bottom: -300px;
  left: -900px;
  right: -900px;
}
.section--gallery-has-half-gray
  + section.section--gallery.background-light-gray {
  padding-top: 0;
}
.block-gallery {
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.12);
  display: flex;
  padding: clamp(24px, 3vw, 32px);
  width: 100%;
}
.block-gallery__content {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 48px);
  justify-content: center;
  padding: clamp(24px, 2vw, 28px);
  padding-right: clamp(24px, 4vw, 60px);
  width: 430px;
}
.block-gallery__content-entry h3 {
  color: var(--c-red-hex);
  font-family: var(--ff-play-fair);
  font-size: clamp(28px, 3vw, 36px);
  font-style: italic;
  font-weight: 400;
  margin-bottom: clamp(16px, 2vw, 24px);
}
.block-gallery__content-entry h2 {
  color: var(--c-red-hex);
  font-family: var(--ff-play-fair);
  font-size: clamp(28px, 3vw, 36px);
  font-style: italic;
  font-weight: 400;
  margin-bottom: clamp(16px, 2vw, 24px);
}
.block-gallery__content-entry p {
  font-size: clamp(16px, 2vw, 18px);
  margin-bottom: clamp(10px, 2vw, 17px);
}
.block-gallery__content-entry > :last-child {
  margin-bottom: 0;
}
.block-gallery__images {
  display: grid;
  gap: clamp(8px, 2vw, 16px);
  grid-template-columns: repeat(3, 1fr);
  width: calc(100% - 430px);
}
.block-gallery__images a {
  aspect-ratio: 1/0.8;
  display: block;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  width: 100%;
  z-index: 10;
}
.block-gallery__images a[data-title]:before {
  background-color: rgba(255, 255, 255, 0.8);
  bottom: 0;
  color: var(--c-charcoal);
  content: attr(data-title);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  left: 0;
  line-height: 1.57;
  min-width: clamp(67px, 7vw, 95px);
  padding-block: clamp(4px, 2vw, 8px);
  padding-inline: clamp(12px, 2vw, 20px);
  position: absolute;
  text-align: center;
  z-index: 20;
}
.block-gallery__images img {
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  transition: transform var(--theme-transition-duration);
  width: 100%;
}
.block-gallery__images--1of2 {
  grid-template-columns: repeat(2, 1fr);
}
.block-gallery__images--1of2 a {
  aspect-ratio: 1/1.112;
}
.block-gallery--reverse {
  flex-direction: row-reverse;
}
.block-gallery--reverse .block-gallery__content {
  padding-left: clamp(24px, 4vw, 60px);
  padding-right: clamp(24px, 2vw, 28px);
}
.ico-arrow {
  display: inline-block;
  height: 7px;
  position: relative;
  width: 12px;
}
.ico-arrow:before {
  background-image: url(../images/ico-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: " ";
  display: block;
  height: inherit;
  transition: transform var(--theme-transition-duration);
  width: inherit;
}
.ico-arrow--right:before {
  transform: rotate(180deg);
}
.link {
  align-items: center;
  color: var(--c-red-hex);
  display: inline-flex;
  font-size: 0;
  gap: 8px;
  line-height: 0;
}
.link > span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.link > i {
  transition: transform var(--theme-transition-duration);
}
.section-entry {
  padding-block: clamp(60px, 6vw, 96px);
}
.section-entry__body {
  width: 100%;
}
.section-entry__body h2 {
  font-family: var(--ff-montserrat);
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-entry__body h3 {
  font-family: var(--ff-montserrat);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-entry__body h4 {
  font-family: var(--ff-montserrat);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-entry__body h1:not(:first-child),
.section-entry__body h2:not(:first-child),
.section-entry__body h3:not(:first-child),
.section-entry__body h4:not(:first-child),
.section-entry__body h5:not(:first-child),
.section-entry__body h6:not(:first-child) {
  margin-top: 24px;
}
.section-entry__body p,
.section-entry__body ul {
  font-size: 16px;
  line-height: 1.62;
  margin-bottom: 16px;
}
.section-entry__body ul:not([class]) {
  margin-left: 22px;
}
.section-entry__body ul:not([class]) li:not(:last-child) {
  margin-bottom: 10px;
}
.section-entry__body ul:not([class]) {
  list-style: disc;
}
.section-entry__body p a:not([class]) {
  text-decoration: underline;
}
.section-entry__body > :last-child {
  margin-bottom: 0;
}
.section-list-services {
  padding-block: 60px;
  position: relative;
  width: 100%;
}
.section-list-services .shell {
  display: grid;
  gap: clamp(24px, 4vw, 55px);
  grid-template-columns: repeat(3, auto);
}
.section-list-services__col {
  align-items: center;
  display: flex;
  gap: 16px;
}
.section-list-services__content {
  width: 100%;
}
.section-list-services__content h6 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.66;
  margin-bottom: 0;
}
.section-list-services__content p {
  font-size: 16px;
  line-height: 1.62;
}
.section-list-services__content p a {
  color: var(--c-red-hex);
  text-decoration: underline;
}
.section-list-services__content > :last-child {
  margin-bottom: 0;
}
.section-title-alt {
  text-align: center;
  width: 100%;
}
.section-title-alt h1 {
  color: var(--c-red-hex);
  font-family: var(--ff-play-fair);
  font-size: clamp(32px, 4vw, 46px);
  font-style: italic;
  font-weight: 400;
}
.section-title-alt > * > :last-child {
  margin-bottom: 0;
}
.section-content-and-images {
  background-color: #fff;
  margin-bottom: 75px;
  padding-block: 80px;
  position: relative;
  width: 100%;
}
.section-content-and-images > * {
  align-items: center;
  display: flex;
}
.shell--max {
  --shell-max-width: 1388px;
  --shell-gutter: 26px;
  width: 100%;
}
.shell {
  margin: 0 auto;
  max-width: calc(var(--shell-max-width) + (2 * var(--shell-gutter)));
  padding: 0 var(--shell-gutter);
}
.section-content-and-images .section__content {
  display: flex;
  flex: none;
  flex-direction: column;
  gap: 24px;
  padding-inline: 0 60px;
  position: relative;
  width: calc(50% + 32px);
  z-index: 10;
}
.section__content {
  padding: 0 24px;
}
.section-content-and-images .section__content-entry {
  color: #544f4a;
  font-size: 18px;
  line-height: 1.66;
}
.section-content-and-images .section__images::before {
  aspect-ratio: 1/1;
  background-color: #efefef;
  border-radius: 50%;
  content: " ";
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section-content-and-images .section__content-entry h1 {
  color: #d9201e;
  font-family: var(--ff-play-fair, "sans-serif");
  font-size: clamp(32px, 4vw, 46px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.17;
  margin-bottom: 16px;
  max-width: 530px;
}
.section-content-and-images .section__content-entry p {
  margin-bottom: 16px;
}
.section-content-and-images .section__images {
  font-size: 0;
  line-height: 0;
  pointer-events: none;
  position: relative;
  width: calc(50% - 32px);
}
.section__content-entry > ul {
  list-style: disc;
  margin-left: 25px;
}
.section__head:not(:last-child) {
  margin-bottom: 24px;
}
.section__head {
  font-size: 16px;
  line-height: 1.625;
  text-align: center;
  width: 100%;
}
.form-list label {
  font-family: Nunito;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  min-width: calc(100% + 6px);
  width: 100%;
}
h6 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.11;
  margin-bottom: 0;
}
.tile__entry p {
  color: var(--c-charcoal);
  font-family: var(--ff-nunito-sans, "sans-serif");
  font-size: 18px;
  font-weight: 400;
  line-height: 1.67;
  text-align: initial;
}


.background-white { background-color: white; }
.background-light-gray { background-color: var(--c-lightgray); }
.background-white-gray { background-color: white; position: relative; }
.background-white-gray > * { position: relative; z-index: 2; }
.padding-block-normal { padding-block: clamp(60px, 7vw, 50px); }
.padding-block-small { padding-block: clamp(32px, 5vw, 50px); }
.shell { margin: 0px auto; max-width: calc(var(--shell-max-width) + (2 * var(--shell-gutter))); padding: 0 var(--shell-gutter); }
.shell--max { --shell-max-width: 1440px; --shell-gutter: 36px; width: 100%; }
.section--gallery { padding-top: clamp(32px, 5vw, 40px); }
.title-two-colors > * { line-height: 1.5; }
.title-two-colors .title__charcoal-normal { color: var(--c-charcoal); font-family: var(--ff-montserrat, 'sans-serif'); font-size: 20px; font-style: normal; font-weight: 700; text-transform: uppercase; }
.title-two-colors .title__red-italic { color: var(--c-red-hex, red); font-family: var(--ff-play-fair, 'sans-serif'); font-size: 36px; font-style: italic; line-height: 1.43; text-transform: capitalize; }
.btn-alt { background-color: transparent !important; border: 1px solid var(--c-red-hex, red); border-radius: 4px; color: var(--c-red-hex, red) !important; display: block; font-family: var(--ff-nunito-sans, 'sans-serif'); font-size: 16px; font-weight: 600; letter-spacing: 2px; line-height: 1.38; padding: 16px 25px; text-align: center !important; text-decoration: none; text-transform: uppercase; transition-behavior: normal, normal; transition-delay: 0s, 0s; transition-duration: 0.3s !important; transition-property: color, background-color; transition-timing-function: ease, ease; }
.btn-alt--red { background-color: var(--c-red-hex, red) !important; color: rgb(255, 255, 255) !important; transition: background-color 0.3s, color; }
.btn-alt--white { background-color: rgb(255, 255, 255) !important; border-color: rgb(255, 255, 255); color: var(--c-red-hex, red) !important; padding: 16px clamp(17px, 2vw, 23px); transition: color 0.3s, background-color, border-color; }
.btn-alt--inline { display: inline-block; }
.link-arrow { color: var(--c-red-hex, red) !important; display: inline-block; font-family: var(--ff-nunito-sans, 'sans-serif'); font-size: 18px; font-weight: 600; line-height: 1.67; padding-right: 23px; position: relative; text-decoration: none; text-transform: capitalize; }
.section__inner { position: relative; z-index: 2; }
.tile-ico-text-centered { background-color: rgb(255, 255, 255) !important; box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 15px 5px; display: flex; flex-direction: column; min-height: 424px; padding: 35px 32px 40px; text-align: center; }
.tile-ico-text-centered * { text-align: center !important; }
.tile-ico-text-centered .tile__ico-wrapper { align-items: center; display: flex; height: 108px; justify-content: center; margin: 0px auto; position: relative; width: 108px; }
.tile-ico-text-centered .tile__ico-bg { border-radius: 50%; height: 100%; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100%; z-index: 2; }
.tile-ico-text-centered .tile__ico { align-items: center; display: flex; justify-content: center; max-width: 41px; position: relative; width: 100%; z-index: 3; }
.tile-ico-text-centered .tile__ico img { height: auto; width: 100%; }
.tile-ico-text-centered .tile__ico-wrapper + .tile__content { margin-top: 24px; }
.tile-ico-text-centered .tile__head h3 { font-family: var(--ff-nunito-sans, 'sans-serif'); font-size: 18px; font-weight: 700; letter-spacing: 0.01em; line-height: 1.67; }
.tile-ico-text-centered .tile__head:not(:last-child) { margin-bottom: 16px; }
.tile-ico-text-centered .tile__content { flex-grow: 1; }
.tile-ico-text-centered .tile__content:not(:last-child) { margin-bottom: 23px; }
.tile-ico-text-centered .tile__actions { margin-top: auto; }
.tile-ico-text-centered .link-arrow { font-size: 16px; }

.section-testimonials * { text-align: center !important; }
.section-testimonials .section__head h2 { margin-bottom: clamp(24px, 3vw, 32px); }
.section-testimonials .section__head > :last-child { margin-bottom: 0px; }
.section-testimonials .section__body { width: 100%; }
.section-testimonials .section__body:not(:last-child) { margin-bottom: 40px; }
.section-testimonials .section__head:not(:last-child) { margin-bottom: clamp(22px, 2vw, 31px); }
.section-testimonials .section__head-bottom, .section-testimonials .section__head-top { display: block; }
.section-testimonials .section__head-top + br { display: none; }
.slider-testimonials { padding-inline: clamp(60px, 8vw, 120px); position: relative; }
.slider-testimonials .slider__slide { display: flex; flex-direction: column; height: auto; }
.slider-testimonials .slider__slide > * { height: 100%; }
.slider-testimonials .slider__actions { align-items: center; display: flex; height: 50px; justify-content: space-between; left: 0px; pointer-events: none; position: absolute; right: 0px; top: 49.1%; transform: translateY(-50%); z-index: 1; }
.slider-testimonials .slider__prev { left: 0px; }
.slider-testimonials .slider__next { right: 0px; }
.slider-testimonials .slider__prev, .slider-testimonials .slider__next { border: 1px solid var(--c-charcoal); border-radius: 50%; height: 50px; pointer-events: all; width: 50px; }
.tile-testimonial { background-color: rgb(255, 255, 255) !important; padding: 32px; }
.tile-testimonial * { text-align: center !important; }
.tile-testimonial .tile__content { margin: 0px auto; max-width: 361px; width: 100%; }
.tile-testimonial .tile__rate ul { align-items: center; display: flex; flex-wrap: wrap; gap: 2px; justify-content: center; list-style-type: none; }
.tile-testimonial .tile__rate li { align-items: center; background-color: rgb(0, 182, 122) !important; display: flex; height: 20px; justify-content: center; width: 20px; }
.tile-testimonial .tile__rate img { height: auto; max-width: 14px; width: 100%; }
.tile-testimonial .tile__rate:not(:last-child) { margin-bottom: 20px; }
.tile-testimonial .tile__head { font-weight: 700; letter-spacing: 0.01em; }
.tile-testimonial .tile__head:not(:last-child) { margin-bottom: 16px; }
.tile-testimonial .tile__entry:not(:last-child) { margin-bottom: 24px; }
.tile-testimonial .tile__meta { font-size: 14px; line-height: normal; }
.tile-testimonial .tile__entry, .tile-testimonial .tile__head { font-size: 16px; }
.section-message { padding-block: 72px; position: relative; }
.section-message:not([class*="background"]) { background-color: rgb(153, 28, 31) !important; color: rgb(255, 255, 255); }
.section-message * { text-align: center !important; }
.section-message h2 { font-family: "Playfair Display", sans-serif; font-size: 36px; font-style: italic; margin-bottom: clamp(24px, 2vw, 25px); }
.section-message p { margin-inline: auto; max-width: 748px; }
.section-message .section__actions { margin-top: 39px; }
.section-message--alt { padding-block: clamp(48px, 5vw, 50px); }
.section-message--alt p { max-width: 760px; }
.section { position: relative; width: 100%; }
.section .section__head { text-align: center; width: 100%; }
.section .section__head:not(:last-child) { margin-bottom: clamp(24px, 3vw, 40px); }
.section .section__head h2 { color: var(--c-red-hex); font-family: var(--ff-play-fair); font-size: clamp(28px, 3vw, 36px); font-style: italic; font-weight: 400; }
.section .section__head h1 { color: var(--c-red-hex); font-family: var(--ff-play-fair); font-size: clamp(28px, 3vw, 36px); font-style: italic; font-weight: 400; }
.section .section__head > :last-child { margin-bottom: 0px; }
.section .section__cols { display: grid; gap: 24px; grid-template-columns: 1fr; width: 100%; }
.section .section__cols[data-cols="4"] { grid-template-columns: 1fr 1fr 1fr 1fr; }
.section .section__cols .tile-ico-text-centered { min-height: 100%; }
.section--gallery { overflow: hidden; position: relative; }
.section--gallery .section__head:not(:last-child) { margin-bottom: clamp(32px, 4vw, 60px); }
.section--gallery .section__head h1 { font-size: clamp(32px, 4vw, 46px); }
.section--gallery .section__body { position: relative; }
.section--gallery-has-half-gray + section.section--gallery.background-light-gray { padding-top: 0px; }
.block-gallery { align-items: center; background-color: white; box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 24px; display: flex; padding: clamp(24px, 3vw, 32px); width: 100%; }
.block-gallery__content { display: flex; flex-direction: column; gap: clamp(24px, 4vw, 48px); justify-content: center; padding: clamp(24px, 2vw, 28px) clamp(24px, 4vw, 60px) clamp(24px, 2vw, 28px) clamp(24px, 2vw, 28px); width: 430px; }
.block-gallery__content-entry h2 { color: var(--c-red-hex); font-family: var(--ff-play-fair); font-size: clamp(28px, 3vw, 36px); font-style: italic; font-weight: 400; margin-bottom: clamp(16px, 2vw, 24px); }
.block-gallery__content-entry p { font-size: clamp(16px, 2vw, 18px); margin-bottom: clamp(10px, 2vw, 17px); }
.block-gallery__content-entry > :last-child { margin-bottom: 0px; }
.block-gallery__images { display: grid; gap: clamp(8px, 2vw, 16px); grid-template-columns: repeat(3, 1fr); width: calc(100% - 430px); }
.block-gallery__images a { aspect-ratio: 1 / 0.8; display: block; font-size: 0px; line-height: 0; overflow: hidden; position: relative; text-decoration: none; width: 100%; z-index: 10; }
.block-gallery__images img { height: 100%; left: 0px; object-fit: cover; object-position: center center; position: absolute; top: 0px; transition: transform var(--theme-transition-duration); width: 100%; }
.block-gallery__images--1of2 { grid-template-columns: repeat(2, 1fr); }
.block-gallery__images--1of2 a { aspect-ratio: 1 / 1.112; }
.block-gallery--reverse { flex-direction: row-reverse; }
.block-gallery--reverse .block-gallery__content { padding-left: clamp(24px, 4vw, 60px); padding-right: clamp(24px, 2vw, 28px); }
.shell--max { --shell-max-width: 1388px; --shell-gutter: 26px; width: 100%; }
.section__head:not(:last-child) { margin-bottom: 24px; }
.section__head { font-size: 16px; line-height: 1.625; text-align: center; width: 100%; }
.tile__entry p { color: var(--c-charcoal); font-family: var(--ff-nunito-sans, 'sans-serif'); font-size: 18px; font-weight: 400; line-height: 1.67; text-align: initial; }
.title__charcoal-normal { color: var(--c-charcoal); font-family: var(--ff-montserrat, 'sans-serif'); font-size: 20px; font-style: normal; font-weight: 700; line-height: 1.1666em; text-transform: uppercase; }
h1 { display: inline-flex; flex-direction: column; }
.section__head-top, .section__head-bottom { display: block; }
.section-testimonials { background-color: rgb(239, 239, 239); }
.section__body.background-white-gray > .block-gallery { padding-bottom: 0px; padding-top: 0px; }
.section__body.background-white-gray > .block-gallery > .block-gallery__content { align-self: flex-start; }
.block-gallery__images img { transition: none; }
.background-light-gray.padding-block-normal > .section__inner .shell .section__body .block-gallery--reverse .block-gallery__content { align-self: flex-start; padding-top: 0px; }
.col-main p { color: var(--c-charcoal); font-family: var(--ff-nunito-sans, 'sans-serif'); font-size: 18px; font-weight: 400; line-height: 1.67; text-align: initial; }
.section-message.section-message--alt > div > p { color: rgb(255, 255, 255); }
.section-testimonials { padding: 0px; }
.section__body.background-white-gray > .block-gallery > .block-gallery__images { display: block; gap: 0px; grid-template-columns: none; width: calc(100% - 430px); }
.section__body.background-white-gray > .block-gallery > .block-gallery__images > a { aspect-ratio: auto; display: block; font-size: 0px; line-height: 0; overflow: hidden; position: relative; text-decoration: none; width: 100%; z-index: 10; }
.section__body.background-white-gray > .block-gallery > .block-gallery__images > a { aspect-ratio: auto; display: block; font-size: 0px; line-height: 0; overflow: hidden; position: relative; text-decoration: none; width: 100%; }
.section__body.background-white-gray > .block-gallery > .block-gallery__images > a picture, .section__body.background-white-gray > .block-gallery > .block-gallery__images > a picture img { display: block; height: auto; object-fit: cover; object-position: center center; transform: none !important; transition: none !important; width: 100%; }
.section__body.background-white-gray > .block-gallery > .block-gallery__images > a > picture > img { position: static !important; }
@media (max-width: 1279px) {
  .section-cols-media {
    padding: 50px 0;
  }
}
@media (max-width: 1200px) {
  .shell {
    --shell-gutter: var(--shell-gutter-tablet);
  }
  .shell--max {
    --shell-gutter: var(--shell-gutter-tablet);
  }
  .slider-testimonials {
    padding-inline: 30px;
  }
  .section .section__cols[data-cols="4"] {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1100px) {
  .section-list-products .section__list:not(:first-child) {
    width: calc(100% - 300px);
  }
  .section-list-products .section__list-products.grid > ul > li {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .shell.shell--small {
    --shell-gutter-large: 42px;
  }
  .btn-alt--small {
    padding: 10px 25px;
  }
  .section-cols-media {
    padding: 40px 0;
  }
  .section-cols-media h2 {
    font-size: 30px;
  }
  .section .section__cols[data-cols="3"],
  .section .section__cols[data-cols="4"] {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1023px) {
  .header {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
  }
  .header + section {
    margin-top: 143px;
  }
  .section-cols-3 .section__cols {
    gap: 40px 15px;
  }
  .tile-ico-text-centered {
    padding: 20px;
  }
}
@media (max-width: 985px) {
  .section-form {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 48px 0;
  }
  .section-form .section__head {
    display: none;
  }
  .section-form .section__form {
    padding: 0;
  }
  .section-content-and-form {
    background-color: #fff;
    padding-block: 40px 48px;
  }
  .section-content-and-form:before {
    display: none;
  }
  .section-content-and-form .section__inner {
    flex-direction: column;
    padding: 0;
  }
  .section-content-and-form .section__inner-content {
    padding: 40px 0;
    width: 100%;
  }
  .section-content-and-form .section__inner-form {
    width: 100%;
  }
  .section-list-products .section__list:not(:first-child) {
    width: 100%;
  }
  .block-gallery {
    flex-direction: column-reverse;
    padding: 0;
  }
  .block-gallery__content {
    padding-right: clamp(24px, 2vw, 28px);
    width: 100%;
  }
  .block-gallery__images {
    width: 100%;
  }
  .block-gallery--reverse {
    flex-direction: column-reverse;
  }
  .section-list-services .shell {
    grid-template-columns: repeat(2, auto);
  }
}
@media (max-width: 767px) {
  .section__body.background-white-gray > .block-gallery > .block-gallery__images {display: block;gap: 0;grid-template-columns: none;width: 100% !important;}
  .shell {
    --shell-gutter: var(--shell-gutter-mobile);
  }
  .shell--max {
    --shell-gutter: var(--shell-gutter-mobile);
  }
  .header + section {
    margin-top: 230px;
  }
  .title-two-colors .title__charcoal-normal {
    font-size: 16px;
    line-height: 1.1875;
  }
  .title-two-colors .title__red-italic {
    font-size: 28px;
  }
  .tile-img-text {
    padding: 10px 15px;
  }
  .tile-img-text .tile-title {
    font-size: 16px;
  }
  .section-cols-3:not([class*="padding"]) {
    padding-block: 65px 0;
  }
  .section-cols-3:before {
    content: none;
  }
  .section-cols-3 .section__head h2 {
    font-size: 28px;
    line-height: 1.43;
  }
  .section-cols-3 .section__cols {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .section-cols-3 .section__col {
    display: block;
  }
  .section-cols-3--alt .section__head {
    padding-inline: 10px;
  }
  .tile-ico-text-centered {
    padding: 40px 25px 38px;
  }
  .tile-ico-text-centered .tile__ico-wrapper + .tile__content {
    margin-top: 28px;
  }
  .tile-ico-text-centered .tile__content {
    font-size: 16px;
    line-height: 1.75;
  }
  .tile-ico-text-centered .tile__content:not(:last-child) {
    margin-bottom: 16px;
  }
  .section-testimonials .section__body:not(:last-child) {
    margin-bottom: 39px;
  }
  .section-testimonials .section__head-top {
    margin-bottom: 10px;
  }
  .slider-testimonials {
    margin-right: calc(-1 * var(--shell-gutter-mobile));
    padding-inline: 0;
  }
  .slider-testimonials .slider__actions {
    gap: 16px;
    inset: unset;
    justify-content: flex-start;
    margin-top: 32px;
    position: relative;
    transform: none;
  }
  .slider-testimonials .slider__next,
  .slider-testimonials .slider__prev {
    inset: unset;
    margin: 0;
    position: relative;
  }
  .tile-testimonial {
    padding-inline: 20px;
  }
  .tile-testimonial .tile__content {
    font-size: 16px;
    line-height: 1.625;
  }
  .tile-testimonial .tile__rate:not(:last-child) {
    margin-bottom: 24px;
  }
  .tile-testimonial .tile__head:not(:last-child) {
    margin-bottom: 18px;
  }
  .tile-testimonial .tile__entry:not(:last-child) {
    margin-bottom: 32px;
  }
  .section-title {
    padding-block: 42px 252px;
  }
  .section-title .section__content {
    margin-top: 32px;
  }
  .section-title .section__content span {
    font-size: 16px;
    line-height: 1.18;
    margin-bottom: 3px;
  }
  .section-title .section__content h1 {
    font-size: 32px;
    line-height: 1.375;
    margin-bottom: 11px;
  }
  .section-products {
    padding-bottom: 65px;
  }
  .section-products .section__inner {
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .section-products-grid {
    padding-block: 58px;
  }
  .section-products-grid .section__head {
    margin-bottom: 23px;
  }
  .section-products-grid .section__head h2 span {
    font-size: 16px;
    line-height: 1.18;
    margin-bottom: 4px;
  }
  .section-products-grid .section__head h2 {
    font-size: 28px;
    line-height: 1.42;
  }
  .section-products-grid .section__entry {
    gap: 23px;
    grid-template-columns: 1fr;
    margin-bottom: 33px;
  }
  .section-products-grid .section__entry p {
    font-size: 16px;
    line-height: 1.5;
  }
  .section-products-grid .section__entry .section__btn {
    justify-self: start;
  }
  .section-products-grid .section__grid {
    gap: 17px 18px;
    grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  }
  .section-message {
    padding-block: 81px 25px;
  }
  .section-message h2 {
    font-size: 28px;
    line-height: 1.42;
    text-indent: 6px;
  }
  .section-message p {
    font-size: 16px;
    line-height: 1.625;
    padding-inline: 5px;
  }
  .section-message .section__actions {
    padding-inline: 8px;
  }
  .section-message .section__btn {
    width: 100%;
  }
  .section-message--alt :not(.btn-alt) {
    text-align: left !important;
  }
  .section-message--alt .btn-alt {
    padding-inline: 15px;
  }
  .section-testimonials.section-testimonials--alt {
    margin-block: 49px 88px;
  }
  .section-testimonials.section-testimonials--alt
    h2
    span.section__head-bottom.title__red-italic {
    font-size: 28px;
    line-height: 1.42;
  }
  .section-testimonials.section-testimonials--alt .section__head {
    margin-bottom: 22px;
  }
  .tile-testimonial.tile-testimonial--alt .tile__head {
    margin-bottom: 17px;
  }
  .tile-testimonial.tile-testimonial--alt .tile__entry p {
    line-height: 1.75;
  }
  .tile-testimonial.tile-testimonial--alt {
    padding-inline: 30px;
  }
  .tile-testimonial.tile-testimonial--alt .tile__meta {
    font-size: 16px;
    line-height: 1.375;
  }
  .section-content-and-images {
    padding-block: 32px;
  }
  .section-content-and-images:first-child {
    padding-top: 38px;
  }
  .section-content-and-images > * {
    flex-direction: column-reverse;
    gap: 32px;
  }
  .section-content-and-images .section__content {
    padding-right: 0;
    width: 100%;
  }
  .section-content-and-images .section__images {
    margin-inline: 20px;
    width: auto;
  }
  .shell.shell--small {
    --shell-gutter-large: 16px;
  }
  .btn-alt--small {
    padding: 13px 25px;
  }
  .section-cols-media {
    padding: 30px 0;
  }
  .section-cols-media h2 {
    font-size: 28px;
    line-height: 1.428;
  }
  .section-cols-media .section__head {
    margin: 0 auto 25px;
  }
  .section-cols-media .section__cols {
    grid-template-columns: 1fr;
  }
  .section-cols-media .section__col-media {
    margin-bottom: 16px;
  }
  .section-list-products .section__list-products.grid > ul > li {
    width: 100%;
  }
  .section .section__cols[data-cols="2"],
  .section .section__cols[data-cols="3"],
  .section .section__cols[data-cols="4"] {
    grid-template-columns: 1fr;
  }
  .section--grid .section__head h2 {
    line-height: 1.428;
  }
  .block-gallery__images {
    grid-template-columns: repeat(2, 1fr);
  }
  .block-gallery__images a {
    aspect-ratio: 1/0.72;
  }
  .block-gallery__content-action a.btn-alt {
    display: block;
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .section-list-services .shell {
    grid-template-columns: repeat(1, auto);
  }
  .section__content-entry {
    margin: 20px;
  }
  .section__content-actions {
    text-align: center;
  }
}
@media (max-width: 374px) {
  .btn-alt--small {
    padding: 13px 15px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header a:hover {
    color: var(--c-red-hex, red) !important;
  }
}
@media (hover) and (pointer: fine) {
  .block-gallery__images a:hover img {
    transform: scale(1.1);
  }
  .link:hover {
    text-underline-offset: 2px;
  }
  .link:hover > i {
    transform: translateX(5px);
  }
  .section-entry__body p a:not([class]):hover {
    text-decoration: none;
  }
  .section-list-services__content p a:hover {
    text-decoration: none;
  }
}



.title__charcoal-normal {color: var(--c-charcoal);font-family: var(--ff-montserrat, 'sans-serif');font-size: 20px;font-style: normal;font-weight: 700;line-height: 1.1666em;text-transform: uppercase;}
h1 {display: inline-flex;flex-direction: column;/*  gap: .25em;*/}
.container.full-width {max-width:none !important;}
.section__head-top,.section__head-bottom {display: block;}
.section-testimonials {background-color: #EFEFEF;padding:50px 0 50px 0;}
 .section__body.background-white-gray > .block-gallery {padding-bottom:0;padding-top:0;}
.section__body.background-white-gray > .block-gallery > .block-gallery__content {align-self:flex-start;}
.block-gallery__images img {transition: none;}
.block-gallery__images:hover img {transform: none;}
.block-gallery__images a:hover img {transform: none;}
.background-light-gray.padding-block-normal > .section__inner .shell .section__body .block-gallery--reverse .block-gallery__content {align-self:flex-start;padding-top:0;}
.col-main p {color: var(--c-charcoal);font-family: var(--ff-nunito-sans, 'sans-serif');font-size: 18px;font-weight: 400;line-height: 1.67;text-align: initial;}
.section-message.section-message--alt > div > p {color:#fff;}

.section__body.background-white-gray > .block-gallery > .block-gallery__images {display: block;gap: 0;grid-template-columns: none;width: calc(100% - 430px);}
.section__body.background-white-gray > .block-gallery > .block-gallery__images > a {aspect-ratio: auto;display: block;font-size: 0;line-height: 0;overflow: hidden;position: relative;text-decoration: none;width: 100%;z-index: 10;}
.section__body.background-white-gray > .block-gallery > .block-gallery__images > a {aspect-ratio: auto;display: block;font-size: 0; line-height: 0;overflow: hidden;position: relative;text-decoration:none;width: 100%;}

.section__body.background-white-gray > .block-gallery > .block-gallery__images > a picture, .section__body.background-white-gray > .block-gallery > .block-gallery__images > a picture  img {display: block;height: auto;object-fit: cover;object-position: center;transform: none !important;transition: none !important; width: 100%;}
.section__body.background-white-gray > .block-gallery > .block-gallery__images > a > img {display: block;height: auto;object-fit: cover;object-position:center;position: static;transform: none !important;transition: none !important;width: 100%;}
.section__body.background-white-gray > .block-gallery > .block-gallery__images > a > picture > img {position: static !important;}

