@font-face {
  font-family: Barlow;
  src: url('../font/Barlow-BlackItalic.ttf') format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../font/Barlow-Black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../font/Barlow-ExtraBoldItalic.ttf') format("truetype"), url('../font/Barlow-BoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../font/Barlow-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../font/Barlow-SemiBoldItalic.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../font/Barlow-MediumItalic.ttf') format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../font/Barlow-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../font/Barlow-ExtraBold.ttf') format("truetype"), url('../font/Barlow-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../font/Barlow-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../font/Barlow-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../font/Barlow-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../font/Barlow-LightItalic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

:root {
  --paragraphs: #535c62;
  --heading: #101b22;
  --accent: #fdc23e;
  --background: #f0f6f8;
  --white: white;
  --honeydew: #d5f2dd;
  --border: #101b2233;
  --paragraphs-dark: #95a3b2;
  --info-text: #778697;
  --dark-slate-blue: #0d4466;
}

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

body {
  color: var(--paragraphs);
  letter-spacing: .13px;
  flex-direction: column;
  align-items: center;
  padding: 14px;
  font-family: Barlow, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
  display: flex;
}

h1 {
  color: var(--heading);
  letter-spacing: -1.4px;
  margin-top: 0;
  margin-bottom: 28px;
  font-size: 70px;
  font-weight: 500;
  line-height: 100%;
}

h2 {
  color: var(--heading);
  letter-spacing: -1.4px;
  margin-top: 0;
  margin-bottom: 26px;
  font-size: 58px;
  font-weight: 500;
  line-height: 107%;
}

h3 {
  color: var(--heading);
  letter-spacing: -1.4px;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 46px;
  font-weight: 500;
  line-height: 110%;
}

h4 {
  color: var(--heading);
  letter-spacing: -1.2px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 500;
  line-height: 115%;
}

h5 {
  color: var(--heading);
  letter-spacing: -.8px;
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 26px;
  font-weight: 500;
  line-height: 120%;
}

h6 {
  color: var(--heading);
  letter-spacing: -.2px;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}

p {
  margin-bottom: 28px;
}

a {
  color: var(--heading);
  text-decoration: underline;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 28px;
  padding-left: 34px;
}

li {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 7px;
}

strong {
  color: var(--heading);
  font-weight: 500;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 1px solid var(--accent);
  margin-bottom: 28px;
  margin-left: 15px;
  padding: 2px 24px;
  font-size: 20px;
  font-style: italic;
  line-height: 165%;
}

figure {
  margin-top: 36px;
  margin-bottom: 36px;
}

figcaption {
  text-align: center;
  letter-spacing: .08px;
  margin-top: 12px;
  font-size: 16px;
  line-height: 160%;
}

.link-text {
  box-shadow: inset 0 -1px 0 0 var(--heading);
  color: var(--heading);
  text-decoration: none;
  transition: box-shadow .25s cubic-bezier(.215, .61, .355, 1);
  display: inline-block;
}

.link-text:hover {
  box-shadow: inset 0 -30px 0 0 var(--accent);
}

.rich-text-block a {
  box-shadow: inset 0 -1px 0 0 var(--heading);
  color: var(--heading);
  text-decoration: none;
  transition: box-shadow .25s cubic-bezier(.215, .61, .355, 1);
  display: inline-block;
}

.rich-text-block a:hover {
  box-shadow: inset 0 -30px 0 0 var(--accent);
}

.section-hero-a {
  z-index: 10;
  background-color: var(--background);
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-height: 85vh;
  margin-bottom: 14px;
  display: flex;
  position: relative;
}

.navbar {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: fixed;
  top: 28px;
  left: 28px;
  right: 28px;
  box-shadow: 0 10px 70px #101b2214;
}

.nav-block {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

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

.brand {
  justify-content: center;
  align-items: center;
  margin-left: 18px;
  margin-right: 18px;
  padding: 10px;
  display: flex;
}

.nav-menu {
  align-items: center;
  display: flex;
}

.nav-link {
  opacity: 1;
  color: var(--heading);
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 27px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  transition: opacity .25s cubic-bezier(.215, .61, .355, 1);
  display: flex;
}

.nav-link:hover {
  opacity: .65;
}

.nav-link.w--current {
  color: var(--heading);
}

.nav-button {
  background-color: var(--heading);
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  padding: 27px 35px;
  text-decoration: none;
  display: flex;
}

.text-button {
  color: var(--white);
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
}

.text-button.white {
  color: var(--white);
}

.icon-button {
  filter: invert();
  object-fit: contain;
  width: 4px;
  max-width: none;
  height: 8px;
  margin-left: 8px;
}

.icon-button.noinvert {
  filter: none;
}

.hero-a {
  z-index: 20;
  width: 100%;
  max-width: 1200px;
}

.background-video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.heading-hero {
  max-width: 730px;
  color: var(--white);
}

.link-hero-service {
  width: 100%;
  text-decoration: none;
  position: relative;
}

.line-block {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3px;
  display: flex;
  position: relative;
}

.line-1px {
  background-color: var(--white);
  width: 100%;
  height: 1px;
}

.line-1px.opacity {
  background-color: var(--white);
  opacity: .2;
}

.line-full {
  background-color: var(--honeydew);
  width: 100%;
  position: absolute;
  inset: 0%;
}

.icon-arrow-a {
  filter: invert();
  width: 10px;
  max-width: none;
  height: 10px;
}

.icon-arrow {
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 10px;
  margin-left: 12px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.icon-arrow-b {
  filter: invert();
  width: 10px;
  max-width: none;
  height: 10px;
  position: absolute;
  transform: translate(-120%, 120%);
}

.section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 14px;
  padding: 110px 50px;
  display: flex;
}

.section.padding {
  padding-top: 60px;
  padding-bottom: 70px;
}

.content {
  width: 100%;
  max-width: 1200px;
}

.content.slim {
  max-width: 770px;
}

.grid-2-columns {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  width: 100%;
}

.button {
  background-color: var(--accent);
  justify-content: center;
  align-items: center;
  padding: 23px 35px;
  text-decoration: none;
  display: flex;
}

.button.dark {
  background-color: var(--heading);
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
}

.button.dark:hover {
  background-color: var(--honeydew);
  color: var(--heading);
}

.button.accent {
  background-color: var(--white);
}

.paragraph {
  max-width: 500px;
  margin-bottom: 36px;
}

.paragraph.white {
  color: var(--white);
}

.subtitle {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

.line-subtitle {
  background-color: var(--heading);
  width: 27px;
  height: 1px;
}

.line-subtitle.white {
  background-color: var(--white);
}

.text-subtitle {
  color: var(--heading);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-left: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
}

.text-subtitle.white {
  color: var(--white);
}

.heading {
  max-width: 700px;
}

.heading.white {
  color: var(--white);
}

.icon {
  object-fit: contain;
  width: 24px;
  height: 24px;
  display: block;
}

.block-left {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 45px 10% 45px 0%;
  display: flex;
}

.image-block {
  width: 100%;
  position: relative;
}

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

.image-absolute {
  object-fit: cover;
  border: 1px #000;
  border-radius: 250px;
  width: 225px;
  height: 225px;
  position: absolute;
  inset: auto -3% -10% auto;
  box-shadow: 0 35px 120px #101b2240;
}

.section-full {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 14px;
  display: flex;
}

.grid-full {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--heading);
  grid-template-rows: auto;
  width: 100%;
}

.block-full {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 160px 17%;
  display: flex;
}

.block {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 550px;
  display: flex;
}

.block-heading-text {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.grid-4-columns {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.block-heading {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  display: flex;
}

.expertise {
  background-color: var(--white);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 15px;
  display: flex;
  box-shadow: 47px 47px 72px #00000008;
}

.heading-expertise {
  letter-spacing: -.8px;
  max-width: 210px;
  font-size: 26px;
  line-height: 120%;
}

.icon-expertise-block {
  background-color: var(--honeydew);
  margin-bottom: 22px;
  padding: 14px;
}

.paragraph-expertise {
  max-width: 270px;
  margin-bottom: 0;
}

.image-bg-testimonials {
  background-image: linear-gradient(270deg, var(--heading), transparent 30%), url('../assets/sophie-dale-djycgkec2p0-unsplash.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  min-height: 670px;
}

.paragraph-testimonials {
  max-width: 500px;
  color: var(--white);
  margin-bottom: 15px;
  font-size: 20px;
  font-style: italic;
  line-height: 170%;
}

.testimonials {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.logo-testimonials {
  object-fit: contain;
  height: 40px;
  margin-right: 28px;
}

.info-testimonials {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.name-testimonials {
  color: var(--white);
  letter-spacing: -.2px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 130%;
}

.text-message {
  color: var(--heading);
  font-size: 16px;
  line-height: 130%;
}

.grid-2-columns-full {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  grid-template-rows: auto;
  width: 100%;
}

.section-footer {
  background-color: var(--heading);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding: 60px 50px;
  display: flex;
}

.grid-footer {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  width: 100%;
}

.footer-down-block {
  border-top: 2px solid var(--honeydew);
  flex-direction: row;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 26px;
  display: flex;
}

.footer-down {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.block-footer {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.paragraph-footer {
  color: #fff;
  max-width: none;
  margin-bottom: 0;
}

.text-footer-down {
  color: #fff;
  font-size: 16px;
  line-height: 130%;
}

.block-hero-a {
  z-index: 20;
  background-image: linear-gradient(#0000, #000c);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 140px 50px 50px;
  display: flex;
  position: relative;
}

.block-accent {
  background-color: var(--heading);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 160px 17%;
  display: flex;
}

.text-field {
  border: 1px solid var(--border);
  background-color: var(--white);
  height: 52px;
  color: var(--heading);
  margin-bottom: 0;
  padding: 12px 20px;
  font-size: 18px;
  line-height: 130%;
  transition: border-color .35s cubic-bezier(.215, .61, .355, 1);
  box-shadow: 47px 47px 72px #00000014;
}

.text-field:focus {
  border-bottom-color: var(--accent);
}

.text-field::placeholder {
  color: #101b2280;
}

.form {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.form-block {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
}

.textarea {
  border: 1px solid var(--border);
  background-color: var(--white);
  min-width: 100%;
  max-width: 100%;
  min-height: 150px;
  max-height: 350px;
  color: var(--heading);
  margin-bottom: 14px;
  padding: 12px 20px;
  font-size: 18px;
  line-height: 130%;
  transition: border-color .35s cubic-bezier(.215, .61, .355, 1);
}

.textarea:focus {
  border-bottom-color: var(--accent);
}

.textarea::placeholder {
  color: #101b2280;
}

.submit-button {
  background-color: var(--heading);
  color: var(--white);
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 23px 35px;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  transition: color .35s cubic-bezier(.215, .61, .355, 1), background-color .35s cubic-bezier(.215, .61, .355, 1);
}

.submit-button:hover {
  background-color: var(--honeydew);
  color: var(--heading);
}

.success-message {
  background-color: #95daaa;
  padding: 24px;
}

.error-message {
  text-align: center;
  background-color: #ffaeae;
  margin-top: 16px;
  padding: 22px;
}

.link-contact {
  width: 100%;
  text-decoration: none;
}

.contact {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.text-contact {
  text-align: right;
  margin-left: auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}

.text-contact.white {
  color: #fff;
}

.icon-contact {
  filter: invert();
  width: 18px;
  max-width: none;
  height: 18px;
  margin-right: 8px;
}

.info-contact {
  align-items: center;
  margin-right: 20px;
  display: flex;
}

.grid-contacts {
  grid-column-gap: 0px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
}

.section-top-img {
  z-index: 10;
  background-color: var(--background);
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-height: 70vh;
  margin-bottom: 14px;
  display: flex;
  position: relative;
}

.block-top-img {
  z-index: 20;
  background-image: linear-gradient(#0000, #000c);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 140px 50px 50px;
  display: flex;
  position: relative;
}

.background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

.grid-image-about {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  height: 740px;
}

.image-bg-about-a1 {
  background-image: url('../assets/james-balensiefen-lzotaqhlnw8-unsplash.webp');
  background-position: 50%;
  background-size: cover;
}

.image-bg-about-a2 {
  background-image: url('../assets/phil-5i0gnottjse-unsplash.webp');
  background-position: 50%;
  background-size: cover;
}

.image-bg-about-a3 {
  background-image: url('../assets/shaylyn-znnfdr3dpm-unsplash.webp');
  background-position: 50%;
  background-size: cover;
}

.image-bg-about-a4 {
  background-image: url('../assets/francesca-tosolini-xcvm8mn7num-unsplash.webp');
  background-position: 50%;
  background-size: cover;
}

.utility-page-wrap {
  background-color: var(--background);
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 60vh;
  margin-bottom: 14px;
  padding: 300px 50px 110px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 310px;
  display: flex;
}

.utility-page-form {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  width: 100%;
  display: grid;
}

.space {
  background-color: var(--border);
  width: 100%;
  height: 1px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.grid-colors {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.block-color {
  border: 1px solid var(--border);
  background-color: var(--white);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 110px;
  padding: 18px;
  display: flex;
}

.block-color.background {
  background-color: var(--background);
}

.block-color.border {
  background-color: var(--border);
}

.block-color.heading {
  background-color: var(--heading);
}

.block-color.paragraphs {
  background-color: var(--paragraphs);
}

.block-color.accent {
  background-color: var(--accent);
}

.block-color.paragraphs-dark {
  background-color: var(--paragraphs-dark);
}

.block-color.info-text {
  background-color: var(--info-text);
}

.text-color {
  color: var(--heading);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.text-color.white {
  color: var(--white);
}

.hex-color {
  opacity: .5;
  color: var(--heading);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 140%;
}

.hex-color.white {
  color: var(--white);
}

.template-info {
  background-color: var(--background);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 20px 30px;
  display: flex;
}

.grid-button {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  place-items: center;
}

.logo-text {
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 600;
}

.logo-text.invert {
  color: #fff;
}

.block-banner-white {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 17%;
  display: flex;
}

.slider {
  background-color: #0000;
  height: 100%;
}

.slide-nav {
  display: none;
}

.right-arrow {
  z-index: 20;
  height: 50px;
  inset: auto 0% -25% auto;
}

.left-arrow {
  height: 50px;
  inset: auto auto -25% 0%;
}

.stars-holder {
  margin-bottom: 15px;
}

.star {
  max-height: 30px;
}

.paragraph-large {
  max-width: 750px;
  margin-bottom: 36px;
}

.footer-logo-holder {
  margin-bottom: 15px;
}

.white-link {
  color: #fff;
}

.section_privacy {
  min-height: 70vh;
  padding-top: 3rem;
  position: relative;
}

.padding-global {
  z-index: 5;
  padding-left: 5%;
  padding-right: 5%;
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.padding-section-large {
  z-index: 2;
  padding-top: 7rem;
  padding-bottom: 7rem;
  position: relative;
}

@media screen and (max-width: 991px) {
  body {
    padding: 10px;
  }

  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 48px;
  }

  h3 {
    font-size: 38px;
  }

  h4 {
    font-size: 30px;
  }

  h5 {
    font-size: 24px;
  }

  .section-hero-a {
    margin-bottom: 10px;
  }

  .brand {
    margin-left: 10px;
    margin-right: 10px;
  }

  .nav-menu {
    background-color: var(--background);
  }

  .nav-link {
    padding: 20px 10px;
  }

  .nav-button {
    margin-left: 0;
    padding: 20px 10px;
  }

  .menu-button {
    background-color: var(--honeydew);
    color: var(--heading);
    padding: 20px;
    font-size: 22px;
    line-height: 100%;
    transition: color .25s cubic-bezier(.215, .61, .355, 1), background-color .25s cubic-bezier(.215, .61, .355, 1);
  }

  .menu-button.w--open {
    background-color: var(--heading);
    color: var(--white);
  }

  .section {
    margin-bottom: 10px;
    padding: 90px 30px;
  }

  .section.padding {
    padding-top: 40px;
    padding-bottom: 50px;
  }

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

  .image {
    max-height: 400px;
  }

  .section-full {
    margin-bottom: 10px;
  }

  .grid-full {
    grid-template-columns: .5fr 1.25fr;
  }

  .block-full {
    padding: 100px 10%;
  }

  .grid-4-columns {
    grid-column-gap: 20px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr 1fr;
  }

  .paragraph-testimonials {
    max-width: none;
  }

  .grid-2-columns-full {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    display: flex;
  }

  .section-footer {
    padding-top: 90px;
    padding-bottom: 62px;
  }

  .block-hero-a {
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .block-accent {
    padding: 120px 14%;
  }

  .section-top-img {
    min-height: 50vh;
    margin-bottom: 10px;
  }

  .block-top-img {
    padding-bottom: 15px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .grid-image-about {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr 1fr;
    height: 900px;
  }

  .utility-page-wrap {
    min-height: 70vh;
    margin-bottom: 10px;
    padding: 180px 30px 90px;
  }

  .block-banner-white {
    padding: 70px 14%;
  }

  .right-arrow, .left-arrow {
    bottom: 0%;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

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

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 26px;
  }

  h5 {
    font-size: 22px;
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section.padding {
    padding-top: 30px;
    padding-bottom: 30px;
  }

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

  .block-left {
    padding: 0 0%;
  }

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

  .block-full {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .block-heading {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .image-bg-testimonials {
    background-image: linear-gradient(to top, var(--heading), transparent 30%), url('../assets/sophie-dale-djycgkec2p0-unsplash.webp');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    min-height: 400px;
  }

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

  .section-footer {
    padding: 70px 14% 50px;
  }

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

  .footer-down-block {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-down {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .block-accent {
    padding: 80px 10%;
  }

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

  .grid-contacts {
    grid-row-gap: 30px;
  }

  .grid-image-about {
    height: 700px;
  }

  .utility-page-wrap {
    padding-top: 170px;
    padding-bottom: 70px;
  }

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

  .grid-button {
    grid-auto-flow: row;
  }

  .block-banner-white {
    padding: 50px 10%;
  }

  .right-arrow, .left-arrow {
    bottom: -15%;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media screen and (max-width: 479px) {
  body {
    padding: 6px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 23px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 17px;
  }

  .section-hero-a {
    margin-bottom: 6px;
  }

  .navbar {
    top: 24px;
    left: 22px;
    right: 22px;
  }

  .section {
    margin-bottom: 6px;
    padding: 55px 5%;
  }

  .section.padding {
    padding-top: 25px;
    padding-bottom: 25px;
  }

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

  .block-left {
    padding-left: 0%;
    padding-right: 0%;
  }

  .image-absolute {
    width: 150px;
    height: 150px;
    bottom: -15%;
  }

  .section-full {
    width: 95vw;
    margin-bottom: 6px;
    overflow: hidden;
  }

  .grid-full {
    flex-direction: column;
    grid-template-columns: auto;
    width: 100%;
    display: flex;
  }

  .block-full {
    padding: 65px 5%;
  }

  .grid-4-columns {
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .expertise {
    padding-left: 0;
  }

  .heading-expertise, .paragraph-expertise {
    max-width: none;
  }

  .image-bg-testimonials {
    width: auto;
    min-height: 300px;
  }

  .paragraph-testimonials {
    max-width: 90vw;
  }

  .testimonials {
    flex-wrap: wrap;
  }

  .grid-2-columns-full {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }

  .section-footer {
    padding: 55px 10% 30px;
  }

  .footer-down-block {
    margin-top: 50px;
  }

  .paragraph-footer {
    margin-bottom: 10px;
  }

  .block-accent {
    padding: 65px 5%;
  }

  .text-contact {
    font-size: 16px;
  }

  .text-contact.white {
    white-space: nowrap;
  }

  .section-top-img {
    margin-bottom: 6px;
  }

  .block-top-img {
    padding-bottom: 6px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .grid-image-about {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }

  .utility-page-wrap {
    margin-bottom: 6px;
    padding: 150px 16px 55px;
  }

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

  .logo-text {
    font-size: 1.75rem;
  }

  .block-banner-white {
    padding-left: 5%;
    padding-right: 5%;
  }

  .slider {
    width: 90%;
  }

  .right-arrow, .left-arrow {
    display: none;
  }

  .slide-content {
    max-width: 95vw;
  }

  .slide {
    width: 100%;
  }
}

#w-node-_34a98056-b6c2-b519-9800-68efd42058dc-60142ced {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_9122e2b0-1560-b3a1-06df-76fa8f30147c-60142ced, #Name.w-node-_26bac896-cfcd-6ed7-c95c-5ba36bea5212-60142ced, #email.w-node-_26bac896-cfcd-6ed7-c95c-5ba36bea5215-60142ced, #Phone.w-node-_26bac896-cfcd-6ed7-c95c-5ba36bea5214-60142ced, #Address.w-node-_26bac896-cfcd-6ed7-c95c-5ba36bea5213-60142ced, #Message.w-node-_26bac896-cfcd-6ed7-c95c-5ba36bea5216-60142ced, #w-node-_26bac896-cfcd-6ed7-c95c-5ba36bea5217-60142ced {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 767px) {
  #w-node-_0b18dde9-c8b2-7350-59ea-0f9af824e03e-60142ced {
    order: -9999;
  }

  #Message.w-node-_26bac896-cfcd-6ed7-c95c-5ba36bea5216-60142ced, #w-node-_26bac896-cfcd-6ed7-c95c-5ba36bea5217-60142ced {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_69b23f58-712a-7c45-ac2d-fa464eafff79-60142ced {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #Message.w-node-_26bac896-cfcd-6ed7-c95c-5ba36bea5216-60142ced, #w-node-_26bac896-cfcd-6ed7-c95c-5ba36bea5217-60142ced {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Barlow';
  src: url('../font/Barlow-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../font/Barlow-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../font/Barlow-ExtraBoldItalic.ttf') format('truetype'), url('../font/Barlow-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../font/Barlow-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../font/Barlow-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../font/Barlow-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../font/Barlow-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../font/Barlow-ExtraBold.ttf') format('truetype'), url('../font/Barlow-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../font/Barlow-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../font/Barlow-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../font/Barlow-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../font/Barlow-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}


/* ===== Migration fixes (Refresh) ===== */
/* global horizontal-overflow guard — clip (not hidden) preserves position:sticky */
html, body { overflow-x: clip; max-width: 100%; }
* { min-width: 0; }
img, video { max-width: 100%; height: auto; }

/* footer: consistent side padding + container width matching page on mobile */
@media screen and (max-width: 767px) {
  .section-footer { overflow-x: clip; }
  .section-footer .container,
  .grid-footer,
  .footer-down-block { max-width: 100%; box-sizing: border-box; padding-left: 5%; padding-right: 5%; }
  .footer-down { padding-left: 0; padding-right: 0; }
}

@media screen and (max-width: 479px) {
  /* stop long labels forcing horizontal scroll */
  .white { white-space: normal; }
  /* 95vw + padding overflow fix */
  .section-full { width: 100%; box-sizing: border-box; }
  .paragraph-testimonials { max-width: 100%; }
  /* headings: restore top padding lost on mobile */
  h1, h2, h3, .heading, [class*="heading"] { padding-top: 0.25em; }
}


/* Footer bottom row: flex space-between desktop, vertical stack on mobile */
.footer-down {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer-down {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
}

/* ===== Cookie-Script report table — constrained horizontal scroll (mobile) ===== */
/* Injected table is <table class="_CookieScriptReportPageTable"> with a very long
   Description column. Let the Description cell WRAP (no nowrap) so the table stays a
   sane width; keep the table min-width modest so it scrolls only slightly on mobile. */
.cookiescript_embed { max-width: 100%; overflow-wrap: anywhere; }
.cookiescript_embed img { max-width: 100%; }

.cookie-report-container {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cookie-report-container table,
._CookieScriptReportPageTable,
[data-cookiescriptreport] table {
  width: 100%;
  min-width: 560px;          /* modest scroll on mobile, readable on desktop */
  max-width: 100%;
  table-layout: fixed;       /* enforce column widths so Description wraps */
  border-collapse: collapse;
}
.cookie-report-container th,
.cookie-report-container td,
._CookieScriptReportPageTableTh,
._CookieScriptReportPageTableTd {
  white-space: normal;        /* allow wrapping — kills the 3000px cell */
  overflow-wrap: anywhere;
  word-break: break-word;
  padding: 8px 10px;
  vertical-align: top;
  text-align: left;
}
/* column proportions: Name | Provider | Expiration | Description */
._CookieScriptReportPageTable th:nth-child(1),
._CookieScriptReportPageTable td:nth-child(1) { width: 16%; }
._CookieScriptReportPageTable th:nth-child(2),
._CookieScriptReportPageTable td:nth-child(2) { width: 22%; }
._CookieScriptReportPageTable th:nth-child(3),
._CookieScriptReportPageTable td:nth-child(3) { width: 16%; }
._CookieScriptReportPageTable th:nth-child(4),
._CookieScriptReportPageTable td:nth-child(4) { width: 46%; }
