:root {
  --background: #f1f6f6;
  --paragraphs: #4e415c;
  --heading: #0d0126;
  --main: #2d5291;
  --main-hover: #b2c9e8;
  --border: #e3e5e5;
  --white: white;
  --shadow-purple: #7425f44d;
  --shadow-dark: #011d2612;
  --dark-hover: #110b16;
}

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

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

body {
  background-color: var(--background);
  color: var(--paragraphs);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
}

h1 {
  color: var(--heading);
  margin-top: 35px;
  margin-bottom: 35px;
  font-family: Inter, sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.25em;
}

h2 {
  color: var(--heading);
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: Inter, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25em;
}

h3 {
  color: var(--heading);
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25em;
}

h4 {
  color: var(--heading);
  margin-top: 15px;
  margin-bottom: 15px;
  font-family: Inter, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25em;
}

h5 {
  color: var(--heading);
  margin-top: 15px;
  margin-bottom: 15px;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35em;
}

h6 {
  color: var(--heading);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35em;
}

p {
  margin-top: 20px;
  margin-bottom: 20px;
}

a {
  color: var(--main);
  text-decoration: none;
  transition: color .15s ease-out;
}

a:hover {
  color: var(--main-hover);
}

ul, ol {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 30px;
}

li {
  color: var(--main);
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 5px;
  font-weight: 500;
}

img {
  max-width: 100%;
  display: inline-block;
}

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

blockquote {
  border-left: 3px solid var(--border);
  color: var(--main);
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 7px 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6em;
}

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

figcaption {
  text-align: center;
  margin-top: 5px;
}

.section-top-info {
  background-color: var(--heading);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 23px;
  padding-right: 23px;
  display: flex;
}

.block-top-info {
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 1282px;
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
}

.top-info {
  color: var(--white);
  justify-content: center;
  align-items: center;
  display: flex;
}

.link-top-info {
  opacity: .8;
  flex-direction: row;
  align-items: center;
  margin-left: 15px;
  margin-right: 15px;
  text-decoration: none;
  transition-property: none;
  display: flex;
}

.link-top-info:hover {
  opacity: 1;
}

.link-top-info.phone {
  align-self: stretch;
  align-items: center;
}

.link-top-info.phone.hide {
  display: none;
}

.text-top-info {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2em;
}

.icon-top-info {
  filter: brightness(0%);
  flex: none;
  margin-right: 8px;
}

.icon-top-info.phone {
  align-self: auto;
  width: 25px;
  max-width: none;
  height: auto;
}

.navbar {
  z-index: 20;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 18px;
  padding-left: 38px;
  padding-right: 38px;
  display: flex;
  position: sticky;
  top: 0;
}

.block-navbar {
  z-index: 20;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1252px;
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  position: relative;
}

.brand {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: transform .15s ease-out;
  display: flex;
}

.brand:hover {
  transform: scale(1.05);
}

.logo {
  height: 45px;
}

.logo.nav {
  height: auto;
}

.logo.nav._2 {
  width: auto;
  height: 70px;
}

.nav-link {
  color: var(--heading);
  padding: 11px 18px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2em;
}

.nav-link:hover {
  color: var(--main-hover);
}

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

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

.nav-link.end {
  padding-right: 0;
}

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

.button-small {
  background-color: var(--main);
  box-shadow: 0 1px 2px 0 var(--shadow-purple);
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  padding: 11px 26px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2em;
  transition: box-shadow .15s ease-out, transform .15s ease-out, background-color .15s ease-out;
}

.button-small:hover {
  background-color: var(--main-hover);
  box-shadow: 0 10px 20px 0 var(--main-hover);
  color: var(--white);
  transform: scale(1.05);
}

.button-small.dark {
  background-color: var(--heading);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
}

.button-small.dark:hover {
  background-color: var(--dark-hover);
  box-shadow: 0 10px 20px 0 var(--shadow-dark);
}

.button-small.white {
  background-color: var(--white);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  color: var(--heading);
}

.button-small.white:hover {
  box-shadow: 0 10px 20px 0 var(--shadow-dark);
}

.button-small.tabs {
  background-color: var(--paragraphs);
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

.button-small.tabs.w--current {
  background-color: var(--main);
}

.nav-menu {
  margin-right: 18px;
}

.dropdown-toggle {
  color: var(--heading);
  padding: 11px 36px 11px 18px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2em;
  transition: color .15s ease-out;
}

.dropdown-toggle:hover, .dropdown-toggle.w--open {
  color: var(--main-hover);
}

.dropdown-link {
  color: var(--heading);
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2em;
}

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

.dropdown-link.w--current:hover {
  color: var(--main-hover);
}

.icon-dropdown {
  margin-right: 18px;
  font-size: 13px;
}

.dropdown-list {
  background-color: var(--white);
}

.dropdown-list.w--open {
  box-shadow: 0 10px 20px 0 var(--shadow-dark);
  border-radius: 8px;
  margin-bottom: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.section-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 38px 90px;
  display: flex;
}

.section-hero.homepage {
  padding-top: 0;
  padding-bottom: 60px;
}

.content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 1252px;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  position: relative;
}

.content.hide {
  display: block;
}

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

.grid-2-columns.margin-top {
  margin-top: 10px;
}

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

.grid-2-columns.trustpilot {
  place-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 30px;
  display: flex;
}

.grid-2-columns.trustpilot.home {
  padding-top: 0;
}

.hero-title {
  max-width: 940px;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 60px;
  line-height: 1.2em;
}

.hero-title.small {
  max-width: 500px;
  margin-bottom: 20px;
  font-size: 42px;
  line-height: 1.25em;
}

.hero-title.white {
  color: var(--white);
  text-align: center;
}

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

.hero-title.home {
  font-size: 55px;
}

.paragraph-large {
  color: var(--paragraphs);
  max-width: 520px;
  margin-top: 0;
  margin-bottom: 45px;
  font-size: 20px;
  line-height: 1.5em;
}

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

.paragraph-large.white.reducedbottompadding {
  margin-bottom: 27px;
}

.paragraph-large.center {
  text-align: center;
  max-width: 670px;
}

.paragraph-large.center.hide {
  display: none;
  overflow: visible;
}

.paragraph-large.reducedbottompadding {
  align-self: center;
  max-width: none;
  margin-bottom: 10px;
}

.paragraph-large.reducedbottompadding.plus {
  margin-bottom: 30px;
}

.button {
  background-color: var(--main);
  box-shadow: 0 1px 2px 0 var(--shadow-purple);
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  align-self: center;
  padding: 19px 36px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
  transition: box-shadow .15s ease-out, transform .15s ease-out, background-color .15s ease-out;
}

.button:hover {
  background-color: var(--main-hover);
  box-shadow: 0 10px 20px 0 var(--main-hover);
  color: var(--white);
  transform: scale(1.05);
}

.button.white {
  background-color: var(--white);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  color: var(--heading);
}

.button.white:hover {
  box-shadow: 0 10px 20px 0 var(--shadow-dark);
}

.button.dark {
  background-color: var(--heading);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
}

.button.dark:hover {
  background-color: var(--dark-hover);
  box-shadow: 0 10px 20px 0 var(--shadow-dark);
}

.button.left {
  align-self: flex-start;
}

.image-hero-grid {
  grid-column-gap: 38px;
  grid-row-gap: 38px;
  grid-template-rows: 1.3fr;
  grid-template-columns: 1fr;
  min-height: 560px;
}

.block-right {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 9%;
  display: flex;
}

.section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 90px 38px;
  display: flex;
}

.section.reduced-bottom-padding {
  padding-bottom: 50px;
}

.block-image {
  justify-content: center;
  align-items: stretch;
  width: 100%;
  min-height: 560px;
  display: flex;
  position: relative;
}

.block-left {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

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

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

.title {
  max-width: 650px;
  margin-top: 0;
  margin-bottom: 35px;
}

.title.center {
  text-align: center;
  text-transform: capitalize;
}

.title.center.calendly {
  padding-top: 0;
}

.title.camel {
  text-transform: capitalize;
}

.subtitle {
  color: var(--main);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 7px;
  padding-left: 3px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
  display: inline-block;
}

.subtitle.calend-ly {
  padding-top: 90px;
}

.subtitle.hero {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.icon-bg {
  background-color: var(--white);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  border-radius: 8px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
}

.icon {
  object-fit: contain;
  width: 20px;
  height: 20px;
}

.text-function {
  color: var(--heading);
  margin-left: 22px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2em;
}

.function {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.grid-functions {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  width: 100%;
}

.grid-3-columns {
  grid-column-gap: 38px;
  grid-row-gap: 38px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-content: stretch;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
}

.grid-3-columns.margin-top {
  margin-top: 38px;
}

.grid-3-columns.celdnly {
  grid-template-columns: 1fr;
  margin-top: 1px;
}

.service-image {
  z-index: 10;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 248px;
  transition: transform .2s ease-out, filter .2s ease-out;
  display: flex;
  position: relative;
}

.service-image:hover {
  filter: brightness(110%);
  transform: translate(0, 5px);
}

.icon-bg-absolute {
  background-color: var(--white);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  border-radius: 8px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
  position: absolute;
  bottom: -22px;
  left: 42px;
}

.block-text-service {
  background-color: var(--white);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  border-radius: 20px;
  margin-top: 15px;
  padding: 20px 42px 17px;
  transition: box-shadow .15s ease-out;
}

.block-text-service:hover {
  box-shadow: 0 10px 20px 0 var(--shadow-dark);
}

.link-block-service {
  text-decoration: none;
}

.title-service {
  margin-top: 22px;
}

.paragraph-service {
  color: var(--paragraphs);
  margin-top: 15px;
  margin-bottom: 25px;
}

.paragraph-service.center {
  text-align: center;
}

.grid-questions {
  grid-column-gap: 18px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
}

.block-question {
  background-color: var(--white);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  cursor: pointer;
  border-radius: 8px;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 18px;
  padding: 22px 32px;
  transition: box-shadow .15s ease-out;
  display: flex;
  transform: perspective(1000px);
}

.block-question:hover {
  box-shadow: 0 10px 20px 0 var(--shadow-dark);
}

.paragraph-question {
  margin-top: 10px;
  margin-bottom: 4px;
}

.block-title-question {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.icon-arrow {
  margin-left: 24px;
}

.title-question {
  margin-top: 0;
  margin-bottom: 0;
}

.content-question {
  overflow: hidden;
}

.grid-request {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  width: 100%;
}

.block-request {
  background-color: var(--heading);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 38px;
  margin-bottom: 38px;
  padding: 80px 12%;
  display: flex;
}

.block-request.newsletter {
  border-radius: 20px 0 0 20px;
}

.submit-button {
  background-color: var(--main);
  box-shadow: 0 1px 2px 0 var(--shadow-purple);
  color: var(--white);
  border-radius: 8px;
  padding: 19px 36px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
  transition: background-color .15s ease-out, transform .15s ease-out, box-shadow .15s ease-out;
}

.submit-button:hover {
  background-color: var(--main-hover);
  box-shadow: 0 10px 20px 0 var(--shadow-purple);
  transform: scale(1.05);
}

.submit-button.newsletter {
  margin-left: 50px;
  margin-right: 50px;
}

.text-field {
  border: 1px solid var(--border);
  background-color: var(--white);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  color: #0d012680;
  border-radius: 8px;
  height: 57px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 16px 22px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2em;
  transition: border .15s ease-out, box-shadow .15s ease-out;
}

.text-field:hover {
  box-shadow: 0 0 6px 5px #7425f426;
}

.text-field:focus {
  box-shadow: 0 10px 20px 0 var(--shadow-dark);
  border-color: #41565c66;
}

.text-field::placeholder {
  color: #011d2680;
}

.form-request {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 3fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

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

.form-block {
  width: 100%;
  max-width: 500px;
  margin-bottom: 10px;
}

.success-message {
  background-color: #0000;
  border: 2px solid #3edb50;
  border-radius: 8px;
  padding: 18px;
}

.success-message.newsletter {
  border-color: #3edb50;
}

.success-text {
  color: #3edb50;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
}

.success-text.newsletter {
  color: #3edb50;
}

.error-message {
  border: 2px solid var(--main);
  background-color: #0000;
  border-radius: 8px;
  padding: 18px;
}

.error-text {
  color: var(--main);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
}

.error-text.newsletter {
  text-align: center;
}

.title-request {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 35px;
}

.block-testimonial {
  background-color: var(--white);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  border-radius: 20px;
  margin-bottom: 18px;
  padding: 36px 40px 24px;
}

.client {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.info {
  color: var(--heading);
  text-align: center;
  font-size: 14px;
  line-height: 1.2em;
}

.client-text {
  margin-left: 20px;
}

.name {
  text-align: center;
  margin-top: 0;
  margin-bottom: 3px;
  line-height: 1.2em;
}

.client-avatar {
  box-shadow: 0 10px 20px 0 var(--shadow-dark);
  border-radius: 100px;
  width: 80px;
  height: 80px;
}

.image-clear {
  object-fit: cover;
  object-position: 20% 50%;
  border-radius: 20px;
  width: 100%;
  max-width: none;
  height: 100%;
}

.image-clear.left {
  object-position: 60% 50%;
}

.image-clear.corporate {
  object-position: 50% 10%;
}

.image-clear.trustpilot-blob-image {
  object-position: 50% 50%;
  width: 75%;
  max-width: 340px;
  padding: 42px 0;
}

.image-clear.center {
  object-position: 50% 50%;
}

.image-blur {
  z-index: -10;
  filter: blur(30px);
  transform-origin: 50% 100%;
  object-fit: cover;
  object-position: 20% 50%;
  border-radius: 20px;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 15px 0% 0%;
  transform: perspective(1000px)scale(.85);
}

.image-blur.center {
  object-position: 50% 50%;
}

.image-blur-shadow {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  position: absolute;
  inset: 0%;
}

.image-blur-shadow.about {
  min-height: 400px;
}

.grid-sticky {
  grid-column-gap: 38px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2.1fr;
  align-items: start;
  width: 100%;
}

.block-text-blog {
  background-color: var(--white);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 150px;
  padding: 40px 44px;
  transition: box-shadow .15s ease-out;
}

.block-text-blog:hover {
  box-shadow: 0 10px 20px 0 var(--shadow-dark);
}

.collection-list {
  grid-column-gap: 0px;
  grid-row-gap: 38px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-list-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
}

.title-blog {
  margin-top: 8px;
  margin-bottom: 0;
}

.category {
  color: var(--white);
  background-color: #00a0131a;
  border-radius: 6px;
  margin-right: 14px;
  padding: 5px 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2em;
  display: inline-block;
}

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

.post-date {
  color: var(--paragraphs);
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
  line-height: 1.2em;
  display: inline-block;
}

.link-block-blog {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  text-decoration: none;
  display: flex;
}

.image-blog-clear {
  object-fit: cover;
  border-radius: 20px;
  width: 300px;
  max-width: none;
  height: 100%;
  margin-right: 15px;
}

.image-blog {
  z-index: 10;
  transition: filter .2s ease-out, transform .2s ease-out;
  position: relative;
}

.image-blog:hover {
  filter: brightness(110%);
  transform: translate(5px);
}

.image-blog-blur {
  z-index: -10;
  filter: blur(30px);
  transform-origin: 50% 100%;
  object-fit: cover;
  border-radius: 20px;
  width: 300px;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 15px 0% 0%;
  transform: perspective(1000px)scale(.85);
}

.block-sticky {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 30px;
  position: sticky;
  top: 100px;
}

.grid-team {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-top: 10px;
}

.grid-team.homepage {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.image-member {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  max-width: none;
  height: 490px;
}

.image-member.bottomalign {
  object-position: 50% 50%;
}

.block-info-member {
  background-color: var(--white);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 28px 25px;
  transition: box-shadow .15s ease-out;
  position: absolute;
  inset: auto 0% -50px;
}

.block-info-member:hover {
  box-shadow: 0 10px 20px 0 var(--shadow-dark);
}

.team-member {
  margin-bottom: 50px;
  position: relative;
}

.team-member.homepage.text {
  margin-bottom: 0;
}

.icon-link-member {
  width: 15px;
  height: 15px;
  margin: 10px;
}

.icon-link-member.accreditation {
  width: auto;
  max-width: none;
  height: 85px;
}

.link-member {
  background-color: var(--background);
  border: 2px solid #0000;
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  margin-left: 4px;
  margin-right: 4px;
  transition: transform .15s ease-out, border-color .15s ease-out, background-color .15s ease-out;
  display: inline-block;
}

.link-member:hover {
  border-color: var(--border);
  background-color: #0000;
  transform: scale(1.05);
}

.link-member.accreditation {
  max-width: none;
  margin: 20px;
  overflow: visible;
}

.hover-member {
  margin-left: -4px;
  margin-right: -4px;
  overflow: hidden;
}

.block-link-member {
  text-align: center;
  padding-top: 10px;
}

.block-link-member.accreditation {
  box-shadow: 1px 1px 2px 0 var(--shadow-dark);
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 0;
  display: flex;
}

.block-link-member.accreditation.text {
  flex-flow: column;
  padding: 20px;
}

.form-request-contact {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.textarea {
  border: 1px solid var(--border);
  background-color: var(--white);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  color: var(--heading);
  border-radius: 8px;
  min-width: 100%;
  max-width: 100%;
  min-height: 110px;
  max-height: 250px;
  margin-bottom: 0;
  padding: 16px 22px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
  transition: border .15s ease-out, box-shadow .15s ease-out;
}

.textarea:focus {
  box-shadow: 0 10px 20px 0 var(--shadow-dark);
  border-color: #41565c66;
}

.textarea::placeholder {
  color: #011d2680;
}

.section-footer {
  background-color: var(--heading);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 90px;
  padding: 90px 38px 32px;
  display: flex;
}

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

.brand-footer {
  width: 80%;
  transition: transform .15s ease-out;
}

.brand-footer:hover {
  transform: scale(1.05);
}

.title-footer {
  color: var(--white);
  margin-top: 7px;
  margin-bottom: 22px;
  font-size: 16px;
  font-weight: 600;
}

.link-footer {
  opacity: .5;
  color: var(--white);
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 16px;
  line-height: 1.2em;
  text-decoration: none;
  transition: opacity .15s ease-out;
  display: block;
}

.link-footer:hover {
  opacity: 1;
  color: var(--white);
}

.footer-down {
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-top: 80px;
  display: flex;
}

.block-footer-down {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.link-footer-down {
  opacity: .5;
  color: var(--white);
  margin-right: 20px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 16px;
  line-height: 1.2em;
  text-decoration: none;
  transition: opacity .15s ease-out;
  display: inline-block;
}

.link-footer-down:hover {
  opacity: 1;
  color: var(--white);
}

.link-social {
  background-color: #ffffff0d;
  border: 2px solid #0000;
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: 4px;
  margin-right: 4px;
  transition: transform .15s ease-out, border-color .15s ease-out, background-color .15s ease-out;
  display: inline-block;
}

.link-social:hover {
  background-color: #0000;
  border-color: #fff3;
  transform: scale(1.05);
}

.link-social.alertbar {
  background-color: #ffffff1a;
}

.icon-link-social {
  width: 15px;
  height: 15px;
  margin: 10px;
}

.icon-link-social.alertbarimg {
  width: 12px;
  height: 12px;
}

.icon-link-social.white {
  filter: saturate(0%) brightness(1000%);
}

.icon-link-social.white.wide {
  width: 18px;
  height: 18px;
  margin: 8px;
}

.navbar-bg {
  background-color: var(--white);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  opacity: 0;
  position: absolute;
  inset: 0%;
}

.grid-hero-half {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr minmax(auto, 626px) minmax(auto, 626px) 1fr;
  width: 100%;
}

.grid-buttons {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  align-items: center;
}

.hero-half {
  justify-content: flex-start;
  min-height: 560px;
  display: flex;
  position: relative;
}

.lightbox-link {
  z-index: 10;
  width: 100%;
  height: 100%;
  transition: filter .2s ease-out, transform .2s ease-out;
  display: flex;
}

.lightbox-link:hover {
  filter: brightness(110%);
  transform: translate(5px);
}

.play {
  z-index: 10;
  background-color: var(--white);
  box-shadow: 0 10px 20px 0 var(--shadow-dark);
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin: auto;
  display: flex;
  position: absolute;
  inset: 0%;
}

.icon-play {
  width: 15px;
  height: 15px;
  margin-left: 2px;
}

.block-border {
  border: 3px solid var(--white);
  background-color: var(--background);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  border-radius: 20px;
  padding: 38px;
  text-decoration: none;
  transition: background-color .15s ease-out, box-shadow .15s ease-out;
  position: relative;
}

.link-service-image-large {
  z-index: 10;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 340px;
  transition: transform .2s ease-out, filter .2s ease-out;
  display: flex;
  position: relative;
}

.link-service-image-large:hover {
  filter: brightness(110%);
  transform: translate(0, 5px);
}

.block-service-large {
  text-decoration: none;
}

.block-text-service-large {
  background-color: var(--white);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  padding: 20px 42px 42px;
  transition: box-shadow .15s ease-out;
  display: flex;
}

.title-service-large {
  text-align: center;
  margin-top: 22px;
  margin-bottom: 0;
}

.grid-clients-6-logo {
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  justify-content: center;
  width: 100%;
  margin-bottom: 18px;
  display: flex;
}

.grid-clients-6-logo.homepage {
  margin-bottom: 50px;
}

.grid-clients-5-logo {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-bottom: 38px;
  padding-left: 8%;
  padding-right: 8%;
}

.client-logo-bg {
  background-color: var(--white);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  color: var(--main);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 25px;
  transition: all .2s, color .15s ease-out;
  display: flex;
}

.client-logo-bg:hover {
  box-shadow: 0 1px 17px 5px var(--shadow-dark);
  transform: scale(1.1);
}

.client-logo {
  width: 100px;
  height: 50px;
}

.block-pricing {
  border: 3px solid var(--white);
  background-color: var(--background);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px;
  text-decoration: none;
  transition: background-color .15s ease-out, box-shadow .15s ease-out;
  position: relative;
}

.pricing-tag {
  color: #00a013;
  background-color: #00a0131a;
  border-radius: 6px;
  margin-right: 0;
  padding: 5px 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2em;
  display: inline-block;
}

.pricing-tag.blue {
  color: #256df4;
  background-color: #256df41a;
}

.pricing-tag.orange {
  color: #e59600;
  background-color: #e596001a;
}

.price {
  color: var(--heading);
  margin-right: 8px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25em;
  display: inline-block;
}

.price-info {
  color: var(--paragraphs);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2em;
}

.block-price {
  align-items: center;
  margin-top: 12px;
  display: flex;
}

.paragraph-pricing {
  color: var(--paragraphs);
  margin-top: 15px;
  margin-bottom: 25px;
}

.icon-check {
  object-fit: contain;
  width: 11px;
  height: 11px;
}

.icon-bg-check {
  background-color: #e3e5e580;
  border-radius: 8px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  display: flex;
}

.check {
  align-items: center;
  margin-top: 8px;
  margin-bottom: 8px;
  display: flex;
}

.text-check {
  color: var(--heading);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2em;
}

.block-check {
  margin-bottom: 30px;
}

.collection-list-large {
  grid-column-gap: 38px;
  grid-row-gap: 38px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-list-wrapper-large {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 38px;
}

.link-block-blog-large {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  text-decoration: none;
  display: flex;
}

.image-blog-large {
  z-index: 10;
  margin-bottom: 15px;
  transition: filter .2s ease-out, transform .2s ease-out;
  position: relative;
}

.image-blog-large:hover {
  filter: brightness(110%);
  transform: translate(0, 5px);
}

.image-blog-large-clear {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  max-width: none;
  height: 350px;
}

.image-blog-large-blur {
  z-index: -10;
  filter: blur(30px);
  transform-origin: 50% 100%;
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  max-width: none;
  height: 350px;
  position: absolute;
  inset: 15px 0% 0%;
  transform: perspective(1000px)scale(.85);
}

.empty-text {
  color: var(--main);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
}

.empty-state {
  border: 2px solid var(--main);
  background-color: #0000;
  border-radius: 8px;
  padding: 18px;
}

.section-hero-full {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 90px;
  padding-left: 38px;
  padding-right: 38px;
  display: flex;
}

.section-hero-full.specialties {
  padding-top: 70px;
  padding-bottom: 0;
}

.grid-hero-full {
  grid-column-gap: 38px;
  grid-row-gap: 38px;
  grid-template-rows: 260px 60px auto;
  grid-template-columns: 1fr minmax(auto, 607px) minmax(auto, 607px) 1fr;
  width: 100%;
  max-width: 1400px;
  min-height: 620px;
  margin-top: 28px;
}

.img-hero {
  aspect-ratio: 1 / 1.5;
  justify-content: center;
  align-items: stretch;
  min-width: 150px;
  display: flex;
  position: relative;
}

.img-hero.front {
  z-index: 5;
}

.img-hero.front.trustpilot {
  min-width: auto;
  margin-left: 0%;
  margin-right: 0%;
  display: flex;
}

.img-hero.trustpilot {
  min-width: 300px;
}

.block-hero-bg {
  background-color: var(--white);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
  display: flex;
}

.collection-list-wrapper-middle {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10px;
  margin-bottom: 38px;
}

.collection-list-middle {
  grid-column-gap: 38px;
  grid-row-gap: 38px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.link-block-blog-middle {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  text-decoration: none;
  display: flex;
}

.image-blog-middle {
  z-index: 10;
  margin-bottom: 15px;
  transition: filter .2s ease-out, transform .2s ease-out;
  position: relative;
}

.image-blog-middle:hover {
  filter: brightness(110%);
  transform: translate(0, 5px);
}

.image-blog-middle-clear {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  max-width: none;
  height: 250px;
}

.image-blog-middle-blur {
  z-index: -10;
  filter: blur(30px);
  transform-origin: 50% 100%;
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  max-width: none;
  height: 250px;
  position: absolute;
  inset: 15px 0% 0%;
  transform: perspective(1000px)scale(.85);
}

.hero-full-content {
  z-index: 10;
  background-color: #011d26b3;
  border-radius: 20px;
  flex-direction: column;
  place-content: space-between center;
  align-items: center;
  width: 100%;
  min-height: 730px;
  display: flex;
  position: relative;
}

.block-text-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 110px;
  padding: 80px 38px;
  display: flex;
}

.paragraph-large-hero-full {
  color: var(--white);
  text-align: center;
  max-width: 670px;
  margin-top: 0;
  margin-bottom: 45px;
  font-size: 20px;
  line-height: 1.5em;
}

.block-clients-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 60px;
  padding-left: 38px;
  padding-right: 38px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.grid-clients-hero {
  grid-column-gap: 38px;
  grid-row-gap: 38px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  place-items: center;
  width: 100%;
  max-width: 1252px;
}

.client-logo-hero {
  width: 100px;
  height: 50px;
}

.hero-full {
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}

.grid-services-hero {
  grid-column-gap: 18px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  margin-top: 25px;
}

.img-hero-margin-top {
  z-index: 5;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 400px;
  margin-top: -28px;
  display: flex;
  position: relative;
}

.block-hero-front {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.title-page-top {
  text-align: center;
  max-width: 940px;
  margin-top: 0;
  margin-bottom: 25px;
}

.paragraph-page-top {
  color: var(--paragraphs);
  text-align: center;
  max-width: 670px;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 20px;
  line-height: 1.5em;
}

.section-page-top {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 38px 0;
  display: flex;
}

.block-page-top {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.grid-services {
  grid-column-gap: 0px;
  grid-row-gap: 76px;
  grid-template-columns: 1fr;
  width: 100%;
}

.grid-service-page {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
}

.block-text-service-page {
  background-color: var(--white);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 70px;
  transition: box-shadow .15s ease-out;
  display: flex;
}

.link-service-image-page {
  z-index: 10;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  transition: transform .2s ease-out, filter .2s ease-out;
  display: flex;
  position: relative;
}

.link-service-image-page:hover {
  filter: brightness(110%);
  transform: translate(5px);
}

.link-service-image-page.hover-left:hover {
  transform: translate(-5px);
}

.icon-bg-service-page {
  background-color: var(--background);
  border-radius: 8px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
}

.title-service-page {
  text-align: left;
  margin-top: 22px;
  margin-bottom: 25px;
}

.paragraph-service-page-large {
  color: var(--heading);
  text-align: left;
  max-width: 670px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
}

.paragraph-service-page {
  color: var(--paragraphs);
  margin-top: 10px;
  margin-bottom: 40px;
}

.grid-clients {
  grid-column-gap: 38px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-bottom: -38px;
}

.block-client {
  margin-bottom: 38px;
}

.block-client.container {
  margin-bottom: 0;
}

.client-image {
  z-index: 10;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 260px;
  transition: filter .2s ease-out, transform .2s ease-out;
  display: flex;
  position: relative;
}

.client-image:hover {
  filter: brightness(110%);
  transform: translate(0, 5px);
}

.block-text-client {
  background-color: var(--white);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  padding: 42px;
  display: flex;
}

.paragraph-client {
  color: var(--paragraphs);
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
  text-decoration: none;
}

.form-block-contact {
  width: 100%;
  margin-bottom: 10px;
}

.subtitle-contact {
  color: var(--heading);
  margin-top: 25px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
}

.title-contact {
  margin-top: 8px;
  margin-bottom: 18px;
}

.paragraph-contact {
  color: var(--paragraphs);
  margin-top: 15px;
  margin-bottom: 25px;
}

.page-bg {
  background-color: var(--white);
  box-shadow: 0 1px 2px 0 var(--shadow-dark);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 50px 38px 80px;
  display: flex;
}

.page-bg.specialties {
  width: 100%;
}

.page-content {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 800px;
}

.image-about {
  z-index: 10;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 550px;
  margin-bottom: 15px;
  display: flex;
  position: relative;
}

.image-page {
  border-radius: 20px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.collection-list-wrapper-page {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
}

.section-blog {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 90px;
  padding-left: 38px;
  padding-right: 38px;
  display: flex;
}

.image-single-blog {
  z-index: 10;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 550px;
  margin-bottom: 15px;
  display: flex;
  position: relative;
}

.title-single-blog {
  margin-top: 5px;
  margin-bottom: 20px;
}

.post-info-single {
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 8px;
  display: block;
}

.rich-text-block img {
  border-radius: 20px;
}

.rich-text-block figcaption {
  font-size: 14px;
}

.rich-text-block figure {
  margin-top: 30px;
  margin-bottom: 30px;
}

.rich-text-block blockquote {
  border-left-color: #662d91cc;
}

.rich-text-block strong {
  font-weight: 600;
}

.rich-text-block a {
  font-weight: 600;
  text-decoration: underline;
}

.utility-page-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 140px 20px 20px;
  display: flex;
  position: absolute;
  inset: 0%;
}

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

.utility-page-form {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: center stretch;
  display: grid;
}

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

.grid-style-colors {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.style-color {
  background-color: var(--heading);
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

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

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

.style-color.white {
  border: 1px solid var(--border);
  background-color: var(--white);
}

.style-color.main {
  background-color: var(--main);
}

.style-color.main-hover {
  background-color: var(--main-hover);
}

.style-color.dark-hover {
  background-color: var(--dark-hover);
}

.text-style-color {
  color: var(--white);
  text-align: center;
  margin: 30px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
}

.text-style-color.dark {
  color: var(--heading);
}

.style-buttons {
  background-color: var(--background);
  border-radius: 8px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px;
  display: flex;
}

.lightbox {
  z-index: 10;
  width: 386px;
  height: 230px;
  display: flex;
  position: absolute;
  inset: auto auto -38px -38px;
}

.bold-text {
  text-align: center;
  font-size: 26px;
  text-decoration: none;
}

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

.link {
  color: var(--main-hover);
  font-weight: 500;
  text-decoration: underline;
}

.image {
  max-width: 40%;
}

.image.rating {
  max-width: 50%;
  padding-bottom: 31px;
}

.specialties-text {
  color: var(--heading);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  font-size: 25px;
  font-weight: 600;
  text-decoration: none;
}

.tabs-menu {
  flex-wrap: wrap;
  justify-content: center;
  width: 60%;
  padding-bottom: 40px;
  display: flex;
}

.tabs-2 {
  flex-direction: column;
  align-self: center;
  align-items: center;
  display: flex;
}

.div-block {
  background-color: var(--white);
  border-radius: 20px;
}

.div-block-2 {
  background-color: var(--white);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 40px 80px 25px;
  display: flex;
}

.div-block-2.reviewshome {
  padding-bottom: 40px;
}

.text-span-2 {
  text-transform: uppercase;
  font-style: normal;
}

.contact-anchor {
  position: absolute;
  inset: -140px 0% auto;
}

.trustpilot-top-blob {
  background-color: var(--heading);
  text-align: center;
  border-radius: 20px;
  align-self: center;
}

.calendly {
  height: 100%;
}

.pagination {
  padding-top: 54px;
}

.checkbox-label {
  opacity: .7;
  color: var(--border);
  padding-left: 20px;
}

.slider-2 {
  background-color: #0000;
  width: auto;
  max-width: 907px;
  height: 100%;
}

.tp-slide {
  border-bottom: 1px solid var(--border);
  background-color: #f6f7f8;
  width: 31.5%;
  margin-right: 19px;
}

.tp-slide.reviewhome {
  border-radius: 10px;
}

.tp-embed-stars {
  width: 100%;
  max-width: none;
}

.tp-date {
  color: #8d8d8d;
  text-align: center;
  width: 100%;
  font-size: 12px;
}

.trustpilot-embed {
  grid-column-gap: 16px;
  grid-row-gap: 10px;
  color: var(--heading);
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  align-content: space-between;
  height: 100%;
  padding: 15px;
  display: grid;
}

.left-arrow-2 {
  justify-content: center;
  align-items: center;
  display: flex;
  left: -79px;
}

.tp-test-heading {
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3em;
}

.mask-2 {
  max-width: 907px;
}

.tp-review-body {
  font-size: 13px;
  line-height: 1.1em;
}

.tp-review-name {
  color: #8d8d8d;
  font-size: 12px;
  font-weight: 400;
}

.trustpilot-section {
  width: 100vw;
}

.image-2 {
  opacity: .5;
  width: 30%;
  transform: rotate(0);
}

.image-2.right {
  transform: rotate(180deg);
}

.right-arrow-2 {
  justify-content: center;
  display: flex;
  right: -79px;
}

.div-block-19 {
  flex-direction: column;
  align-self: center;
  align-items: center;
  padding-top: 10px;
  display: flex;
}

.text-block-4 {
  color: #0f0f0f;
  padding-right: 5px;
  font-size: 12px;
}

.text-block-4._2 {
  padding-right: 0;
  font-weight: 600;
  text-decoration: underline;
}

.text-block-4._3 {
  font-weight: 700;
}

.image-3 {
  padding-top: 0;
}

.tp-footer-lionk {
  text-align: center;
  align-self: center;
  width: 35%;
}

.slide-nav-2 {
  opacity: 0;
  overflow: hidden;
}

.div-block-20 {
  display: flex;
}

.div-block-21 {
  justify-content: center;
  width: auto;
  display: flex;
}

.list-item {
  color: var(--heading);
  font-weight: 600;
}

.block-quote {
  border-left-color: var(--main);
}

.bold-text-2 {
  color: var(--heading);
}

.list-item-2, .list-item-3, .list-item-4 {
  font-weight: 600;
}

.cf-hide {
  display: none;
}

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

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 26px;
  }

  h5 {
    font-size: 22px;
  }

  .section-top-info {
    padding-left: 12px;
    padding-right: 12px;
  }

  .navbar {
    padding-left: 25px;
    padding-right: 25px;
    position: sticky;
  }

  .nav-menu {
    background-color: var(--white);
    box-shadow: 0 10px 20px 0 var(--shadow-dark);
    border-radius: 8px;
    margin-left: 25px;
    margin-right: 25px;
    padding: 10px 7px;
  }

  .menu-button {
    background-color: var(--white);
    box-shadow: 0 1px 2px 0 var(--shadow-dark);
    border-radius: 8px;
    margin-left: 10px;
    padding: 8px;
    transition: color .15s ease-out, transform .15s ease-out, box-shadow .15s ease-out;
  }

  .menu-button:hover {
    box-shadow: 0 10px 20px 0 var(--shadow-dark);
    transform: scale(1.05);
  }

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

  .icon-menu-button {
    font-size: 24px;
  }

  .section-hero {
    padding: 40px 25px 70px;
  }

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

  .hero-title {
    font-size: 52px;
  }

  .hero-title.small {
    font-size: 40px;
  }

  .paragraph-large {
    margin-bottom: 40px;
  }

  .image-hero-grid {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .block-right {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 3%;
  }

  .section {
    padding: 70px 25px;
  }

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

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

  .title {
    margin-bottom: 30px;
  }

  .text-function {
    margin-left: 14px;
  }

  .grid-3-columns {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-columns: 1fr 1fr;
  }

  .grid-3-columns.margin-top {
    margin-top: 25px;
  }

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

  .block-testimonial {
    padding: 26px 30px 14px;
  }

  .client {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-text {
    margin-top: 15px;
    margin-left: 0;
  }

  .image-clear.trustpilot-blob-image {
    object-fit: contain;
    max-width: none;
    padding: 9px;
  }

  .image-clear.center.homepagehero {
    width: 100%;
  }

  .image-clear.topalign, .image-blur.topalign {
    object-position: 20% 30%;
  }

  .grid-sticky {
    grid-column-gap: 25px;
    grid-template-columns: 1fr;
  }

  .block-text-blog {
    padding: 25px 28px;
  }

  .collection-list {
    grid-row-gap: 25px;
  }

  .block-sticky {
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin: 0 5% 60px;
    position: relative;
    top: 0;
  }

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

  .icon-link-member.accreditation {
    object-fit: contain;
    max-width: 100%;
    height: auto;
    margin: 0;
  }

  .link-member.accreditation {
    align-self: center;
    width: 30%;
    padding: 5px;
  }

  .block-link-member.accreditation {
    flex-wrap: nowrap;
  }

  .section-footer {
    margin-top: 70px;
    padding-top: 70px;
  }

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

  .grid-hero-half {
    grid-column-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .grid-clients-6-logo {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: 10px;
  }

  .grid-clients-5-logo {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .client-logo-bg {
    padding: 22px 16px;
  }

  .collection-list-large {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .section-hero-full {
    padding-bottom: 70px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .grid-hero-full {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-rows: minmax(200px, auto) minmax(200px, auto) minmax(200px, auto) minmax(200px, auto);
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(200px, auto);
  }

  .grid-hero-full.specialties {
    grid-template-rows: minmax(200px, auto) minmax(200px, auto);
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .img-hero {
    aspect-ratio: auto;
    align-items: stretch;
    overflow: hidden;
  }

  .block-hero-bg {
    padding: 48px;
  }

  .collection-list-middle {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-columns: 1fr 1fr;
  }

  .block-clients-hero {
    padding-left: 60px;
    padding-right: 60px;
  }

  .grid-services-hero {
    grid-template-columns: 1fr 1fr;
  }

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

  .grid-services {
    grid-row-gap: 50px;
  }

  .block-text-service-page {
    padding: 50px;
  }

  .grid-clients {
    grid-column-gap: 25px;
    grid-template-columns: 1fr;
  }

  .block-client {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: flex-start;
    margin-bottom: 30px;
    display: grid;
  }

  .client-image {
    height: 100%;
  }

  .client-image:hover {
    transform: translate(5px);
  }

  .block-text-client {
    margin-top: 0;
  }

  .page-bg {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .section-blog {
    padding-bottom: 70px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .space {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .lightbox {
    width: 320px;
    height: 190px;
    bottom: -25px;
    left: -25px;
  }

  .div-block-2 {
    text-align: center;
    max-width: 95vw;
    padding-left: 80px;
  }

  .tp-slide.reviewhome {
    width: 47.5%;
  }

  .left-arrow-2 {
    justify-content: flex-end;
    margin-left: -10px;
  }

  .mask-2 {
    max-width: 677px;
  }

  .right-arrow-2 {
    justify-content: flex-start;
    margin-right: -10px;
  }
}

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

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 23px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 17px;
  }

  .block-top-info {
    flex-direction: column;
  }

  .top-info {
    justify-content: space-between;
  }

  .link-top-info {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .brand {
    padding-left: 0;
  }

  .logo.nav._2 {
    height: 60px;
  }

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

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

  .hero-title {
    font-size: 46px;
  }

  .hero-title.small {
    font-size: 37px;
  }

  .paragraph-large {
    font-size: 18px;
  }

  .image-hero-grid {
    min-height: 420px;
  }

  .block-right {
    padding: 20px 3%;
  }

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

  .block-image {
    min-height: 420px;
  }

  .block-left {
    padding: 20px 3%;
  }

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

  .block-left.padding-right.right {
    align-items: center;
    padding-left: 0;
  }

  .grid-functions, .grid-3-columns, .grid-questions {
    grid-template-columns: 1fr;
  }

  .grid-request {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-columns: 1fr;
  }

  .block-request {
    border-radius: 20px;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .block-request.newsletter {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .block-testimonial {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 3fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .client {
    flex-direction: row;
    align-items: center;
  }

  .client-text {
    margin-top: 0;
    margin-left: 20px;
  }

  .image-clear.trustpilot-blob-image {
    object-fit: cover;
    overflow: hidden;
  }

  .image-clear.center.homepagehero, .image-blur.center.homepagehero {
    object-position: 50% 30%;
  }

  .image-blur-shadow.about {
    min-height: 300px;
  }

  .link-block-blog {
    flex-direction: column;
  }

  .image-blog-clear {
    width: 100%;
    height: 250px;
    margin-right: 0;
  }

  .image-blog {
    margin-bottom: 15px;
  }

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

  .image-blog-blur {
    width: 100%;
    height: 250px;
  }

  .block-sticky {
    margin-bottom: 50px;
  }

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

  .image-member.bottomalign {
    object-position: 50% 50%;
  }

  .section-footer {
    margin-top: 60px;
    padding-top: 60px;
  }

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

  .footer-down {
    margin-top: 60px;
  }

  .grid-hero-half {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-columns: 1fr;
  }

  .grid-buttons {
    align-self: center;
  }

  .hero-half {
    min-height: 420px;
  }

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

  .grid-clients-5-logo {
    grid-template-columns: 1fr 1fr 1fr;
    padding-left: 0%;
    padding-right: 0%;
  }

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

  .image-blog-large-clear, .image-blog-large-blur {
    height: 250px;
  }

  .section-hero-full {
    padding-bottom: 60px;
  }

  .grid-hero-full {
    width: auto;
    margin-top: 0;
    overflow: visible;
  }

  .collection-list-middle {
    grid-template-columns: 1fr;
  }

  .hero-full-content {
    min-height: 500px;
  }

  .block-text-hero {
    margin-bottom: 190px;
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .paragraph-large-hero-full {
    font-size: 18px;
  }

  .block-clients-hero {
    padding-bottom: 55px;
  }

  .grid-clients-hero {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-services-hero {
    grid-row-gap: 18px;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .img-hero-margin-top {
    height: 280px;
  }

  .title-page-top {
    margin-bottom: 18px;
  }

  .paragraph-page-top {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .section-page-top {
    padding-top: 20px;
  }

  .grid-services {
    grid-row-gap: 40px;
  }

  .grid-service-page {
    grid-template-columns: 1fr;
  }

  .link-service-image-page {
    min-height: 300px;
  }

  .link-service-image-page:hover, .link-service-image-page.hover-left:hover {
    transform: translate(0, 5px);
  }

  .block-client {
    grid-template-columns: 1fr;
  }

  .client-image {
    height: 200px;
  }

  .client-image:hover {
    transform: translate(0, 5px);
  }

  .page-bg {
    padding-top: 20px;
    padding-bottom: 50px;
  }

  .image-about {
    height: 300px;
  }

  .section-blog {
    padding-bottom: 60px;
  }

  .image-single-blog {
    height: 370px;
  }

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

  .lightbox {
    left: 25px;
  }

  .specialties-text {
    font-size: 22px;
  }

  .div-block-2.reviewshome {
    padding-left: 40px;
    padding-right: 40px;
  }

  .mask-2 {
    max-width: 445px;
  }
}

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

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 25px;
  }

  h4 {
    font-size: 21px;
  }

  h5 {
    font-size: 19px;
  }

  h6 {
    font-size: 16px;
  }

  .section-top-info {
    padding-left: 5px;
    padding-right: 5px;
  }

  .block-top-info {
    flex-direction: row;
  }

  .top-info {
    flex-direction: row;
    align-items: center;
  }

  .text-top-info {
    display: none;
  }

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

  .logo.nav._2 {
    object-fit: contain;
    width: auto;
    height: 45px;
  }

  .button-small {
    padding-left: 18px;
    padding-right: 18px;
  }

  .button-small.tabs {
    margin-left: 5px;
    margin-right: 5px;
  }

  .nav-menu {
    margin-left: 15px;
    margin-right: 15px;
  }

  .section-hero {
    padding: 0 15px 55px;
  }

  .content {
    position: relative;
  }

  .content.specialties {
    padding-left: 15px;
  }

  .content.nooverflow {
    overflow: hidden;
  }

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

  .grid-2-columns.trustpilot {
    padding-top: 10px;
  }

  .hero-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 38px;
  }

  .hero-title.small {
    font-size: 34px;
  }

  .hero-title.home {
    font-size: 45px;
  }

  .paragraph-large {
    text-align: center;
    margin-bottom: 30px;
  }

  .paragraph-large.reducedbottompadding, .paragraph-large.left {
    text-align: left;
  }

  .button {
    padding: 16px 22px;
  }

  .button.left {
    align-self: center;
  }

  .image-hero-grid {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    min-height: 360px;
  }

  .block-right {
    align-items: center;
    padding: 10px 0;
  }

  .section {
    padding: 55px 15px;
  }

  .block-image {
    min-height: 380px;
  }

  .block-left {
    align-items: center;
    padding: 10px 0;
  }

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

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

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

  .grid-3-columns {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .grid-3-columns.margin-top {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-top: 15px;
  }

  .icon-bg-absolute {
    left: 25px;
  }

  .block-text-service {
    margin-top: 10px;
    padding: 10px 25px;
  }

  .grid-questions {
    grid-column-gap: 10px;
  }

  .block-question {
    margin-bottom: 10px;
    padding: 16px 20px;
  }

  .grid-request {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .block-request {
    padding: 40px 10%;
  }

  .form-request {
    grid-template-rows: auto auto auto;
    max-width: 350px;
  }

  .form-block {
    max-width: 350px;
  }

  .title-request {
    margin-bottom: 25px;
  }

  .block-testimonial {
    margin-bottom: 10px;
    padding: 20px 22px 8px;
  }

  .client-avatar {
    width: 60px;
    height: 60px;
  }

  .image-clear.trustpilot-blob-image {
    object-fit: contain;
    padding: 0;
  }

  .image-blur-shadow.about {
    min-height: 200px;
  }

  .block-text-blog {
    padding-left: 25px;
    padding-right: 25px;
  }

  .image-blog {
    margin-bottom: 10px;
  }

  .block-sticky {
    text-align: center;
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: 0;
  }

  .grid-team {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
  }

  .grid-team.homepage {
    grid-template-columns: 1fr;
  }

  .image-member.bottomalign {
    object-position: 45% 50%;
    height: 400px;
  }

  .image-member.bottomalign._2 {
    margin-top: -50px;
    margin-left: auto;
    margin-right: auto;
  }

  .block-info-member {
    padding: 17px 25px 20px;
  }

  .link-member.accreditation {
    width: 40%;
    margin-bottom: 0;
    margin-left: 0;
  }

  .block-link-member.accreditation {
    flex-wrap: wrap;
    padding: 10px;
  }

  .form-request-contact {
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .section-footer {
    margin-top: 55px;
    padding-top: 55px;
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  .link-footer {
    text-align: center;
  }

  .footer-down {
    flex-direction: column;
  }

  .block-footer-down {
    flex-direction: row;
    order: -1;
    justify-content: center;
    margin-bottom: 0;
  }

  .block-footer-down.last {
    order: 1;
  }

  .link-footer-down {
    margin-right: 0;
    padding-top: 17px;
  }

  .grid-hero-half {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .grid-buttons {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    align-self: center;
  }

  .hero-half {
    min-height: 380px;
  }

  .block-border {
    padding: 25px;
  }

  .link-service-image-large {
    height: 260px;
  }

  .block-text-service-large {
    margin-top: 10px;
    padding: 10px 25px 30px;
  }

  .grid-clients-6-logo, .grid-clients-5-logo {
    grid-template-columns: 1fr 1fr;
  }

  .client-logo-bg {
    padding: 15px 10px;
    transition: all .2s, color .15s ease-out;
  }

  .block-pricing {
    padding: 25px;
  }

  .image-blog-large {
    margin-bottom: 10px;
  }

  .image-blog-large-clear, .image-blog-large-blur {
    height: 220px;
  }

  .section-hero-full {
    padding-bottom: 55px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .grid-hero-full {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-rows: minmax(100px, auto) minmax(100px, auto) minmax(100px, auto) minmax(100px, auto);
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(100px, auto);
  }

  .grid-hero-full.specialties {
    grid-template-rows: minmax(100px, auto) minmax(100px, auto);
    margin-top: 25px;
    margin-bottom: -55px;
  }

  .img-hero {
    min-width: auto;
  }

  .img-hero.hide {
    display: none;
  }

  .block-hero-bg {
    padding: 30px;
  }

  .image-blog-middle {
    margin-bottom: 10px;
  }

  .block-text-hero {
    margin-bottom: 160px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .paragraph-large-hero-full {
    margin-bottom: 35px;
  }

  .block-clients-hero {
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .grid-clients-hero {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .grid-services-hero {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-top: 15px;
  }

  .title-page-top, .paragraph-page-top {
    margin-bottom: 10px;
  }

  .section-page-top {
    padding-left: 15px;
    padding-right: 15px;
  }

  .grid-service-page {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .block-text-service-page {
    padding: 28px;
  }

  .link-service-image-page {
    min-height: 250px;
  }

  .title-service-page {
    margin-bottom: 15px;
  }

  .paragraph-service-page {
    margin-bottom: 30px;
  }

  .block-client {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .client-image {
    height: 180px;
  }

  .block-text-client {
    padding: 28px;
  }

  .page-bg {
    padding: 10px 20px 40px;
  }

  .image-about {
    height: 200px;
  }

  .section-blog {
    padding-bottom: 55px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .image-single-blog {
    height: 300px;
    margin-bottom: 10px;
  }

  .post-info-single {
    margin-top: 25px;
  }

  .grid-style-colors {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
  }

  .text-style-color {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .style-buttons {
    margin-bottom: 10px;
    padding: 5px;
  }

  .lightbox {
    width: 80%;
    left: -7px;
  }

  .specialties-text {
    font-size: 16px;
    line-height: 1.3em;
  }

  .tabs-menu {
    width: 100%;
  }

  .div-block-2.reviewshome {
    padding-left: 15px;
    padding-right: 15px;
  }

  .tp-slide.reviewhome {
    width: 100%;
  }

  .mask-2 {
    max-width: 80vw;
  }

  .trustpilot-section {
    overflow: hidden;
  }

  .text-block-4 {
    white-space: nowrap;
  }

  .heading {
    align-self: flex-start;
  }

  .div-block-22 {
    border-radius: 20px;
    height: 350px;
    overflow: hidden;
  }
}

#w-node-_829118c2-828a-2bfa-a36c-b5007e080dea-29d39017 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_829118c2-828a-2bfa-a36c-b5007e080dee-29d39017 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-f697f6e1-f1b0-f10f-74c1-a78ae533afec-e533afe9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f697f6e1-f1b0-f10f-74c1-a78ae533aff7-e533afe9, #w-node-f697f6e1-f1b0-f10f-74c1-a78ae533b005-e533afe9, #w-node-f697f6e1-f1b0-f10f-74c1-a78ae533afef-e533afe9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#Message-2.w-node-_99f3e516-6ea2-9ebc-9a72-10f296fd77bf-96fd77ad, #w-node-_99f3e516-6ea2-9ebc-9a72-10f296fd77c1-96fd77ad {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b5cea697-63bf-876d-6caa-4a4d98ae59ab-98ae59a8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center;
}

#w-node-b5cea697-63bf-876d-6caa-4a4d98ae59b1-98ae59a8 {
  align-self: center;
}

#w-node-b5cea697-63bf-876d-6caa-4a4d98ae59b3-98ae59a8, #w-node-b5cea697-63bf-876d-6caa-4a4d98ae59b6-98ae59a8, #w-node-b5cea697-63bf-876d-6caa-4a4d98ae59bc-98ae59a8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b5cea697-63bf-876d-6caa-4a4d98ae59c1-98ae59a8 {
  align-self: center;
}

#w-node-b5cea697-63bf-876d-6caa-4a4d98ae59c3-98ae59a8, #w-node-b5cea697-63bf-876d-6caa-4a4d98ae59c6-98ae59a8, #w-node-b5cea697-63bf-876d-6caa-4a4d98ae59cc-98ae59a8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b5cea697-63bf-876d-6caa-4a4d98ae59d1-98ae59a8 {
  align-self: center;
}

#w-node-b5cea697-63bf-876d-6caa-4a4d98ae59d3-98ae59a8, #w-node-b5cea697-63bf-876d-6caa-4a4d98ae59d6-98ae59a8, #w-node-b5cea697-63bf-876d-6caa-4a4d98ae59dc-98ae59a8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b5cea697-63bf-876d-6caa-4a4d98ae59e1-98ae59a8 {
  align-self: center;
}

#w-node-b5cea697-63bf-876d-6caa-4a4d98ae59e3-98ae59a8, #w-node-b5cea697-63bf-876d-6caa-4a4d98ae59e6-98ae59a8, #w-node-b5cea697-63bf-876d-6caa-4a4d98ae59ec-98ae59a8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b5cea697-63bf-876d-6caa-4a4d98ae59f1-98ae59a8 {
  align-self: center;
}

#w-node-b5cea697-63bf-876d-6caa-4a4d98ae59f3-98ae59a8, #w-node-b5cea697-63bf-876d-6caa-4a4d98ae59f6-98ae59a8, #w-node-b5cea697-63bf-876d-6caa-4a4d98ae59fc-98ae59a8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_90a996a9-4b2f-b1ef-20bc-1217e45b20b6-98ae59a8 {
  align-self: center;
}

#w-node-_90a996a9-4b2f-b1ef-20bc-1217e45b20b8-98ae59a8, #w-node-_90a996a9-4b2f-b1ef-20bc-1217e45b20ba-98ae59a8, #w-node-_90a996a9-4b2f-b1ef-20bc-1217e45b20c0-98ae59a8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e36a87cf-07e1-d79b-ae43-66e489b63996-89b6398f {
  grid-area: 1 / 2 / 2 / 8;
  align-self: center;
}

#w-node-e36a87cf-07e1-d79b-ae43-66e489b639a7-89b6398f {
  grid-area: 2 / 2 / 3 / 8;
  align-self: center;
}

#w-node-e36a87cf-07e1-d79b-ae43-66e489b639b4-89b6398f {
  grid-area: 3 / 2 / 4 / 8;
  align-self: center;
}

#First-Name-2.w-node-_6af461b9-2721-9727-b9a6-23e45a05cd05-5a05ccf1, #Surname.w-node-_6af461b9-2721-9727-b9a6-23e45a05cd06-5a05ccf1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#Email-Address-2.w-node-_6af461b9-2721-9727-b9a6-23e45a05cd07-5a05ccf1, #w-node-_6af461b9-2721-9727-b9a6-23e45a05cd08-5a05ccf1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3003d850-cf68-bb53-0179-a8d20d98f79e-5a05ccf1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-_6af461b9-2721-9727-b9a6-23e45a05cd0f-5a05ccf1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: auto;
}

#w-node-_47fef16e-585d-4215-187f-19d4087c10d8-29d3901e {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_2766e995-4123-7dcd-f795-1540b8376cc8-29d3901e {
  grid-area: 1 / 3 / 2 / 5;
}

#Email.w-node-_076b28e4-8150-c481-8194-5dd18ddc9cec-29d3901e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_12bd7dbf-8b4e-ab77-9628-508ab2921a84-29d3901f, #w-node-ba8963e3-b02e-1f5c-e88e-bd1d527687e9-29d3901f, #w-node-_122293dc-7ee1-c9f0-dd93-e601255d6042-29d3901f, #w-node-_5c8bccd6-888e-6825-578b-10b71b690343-29d3901f {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_81293463-ab8e-0b68-bebc-e7e5ba878adc-29d3901f, #w-node-_0c4d661c-5cf3-21b5-f0a3-3a04ec5905d2-29d3901f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#Message.w-node-_9f1c1444-5652-0d94-d9ed-5e606a4bee0f-29d39021, #field-2.w-node-_1d9ae9a1-b9a9-030d-38af-9d1cb9890365-b989034f, #Message-2.w-node-_1d9ae9a1-b9a9-030d-38af-9d1cb9890366-b989034f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_44266c03-b3b2-2ff5-760d-71532340f7aa-b989034f {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-_1d9ae9a1-b9a9-030d-38af-9d1cb9890367-b989034f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#Email-3.w-node-ea352cdd-754e-649c-de56-736bcc052b1d-cc052b0c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_991c0800-8b99-97af-61ab-6f6bc5a5b3d0-cc052b0c {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779bcc-fe779bc9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center;
}

#w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779bd2-fe779bc9 {
  align-self: center;
}

#w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779bd4-fe779bc9, #w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779bd6-fe779bc9, #w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779bd8-fe779bc9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779bdd-fe779bc9 {
  align-self: center;
}

#w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779bdf-fe779bc9, #w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779be1-fe779bc9, #w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779be3-fe779bc9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779be8-fe779bc9 {
  align-self: center;
}

#w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779bea-fe779bc9, #w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779bec-fe779bc9, #w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779bee-fe779bc9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779bf3-fe779bc9 {
  align-self: center;
}

#w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779bf5-fe779bc9, #w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779bf7-fe779bc9, #w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779bf9-fe779bc9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779bfe-fe779bc9 {
  align-self: center;
}

#w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779c00-fe779bc9, #w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779c02-fe779bc9, #w-node-e082fcf2-cd02-1ee6-2b68-2fdbfe779c04-fe779bc9, #field-2.w-node-fa3a907d-5594-71a8-c140-e1c8420d3dc4-29d39024, #Message-2.w-node-fa3a907d-5594-71a8-c140-e1c8420d3dc5-29d39024 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5934a30e-65a9-a05e-a25b-e033834eeaf1-29d39024 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-fa3a907d-5594-71a8-c140-e1c8420d3dc6-29d39024 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-cf2d1f25-a0a2-4af1-cba8-787d2bfac050-29d39026 {
  order: 9999;
}

#field-2.w-node-cf2d1f25-a0a2-4af1-cba8-787d2bfac062-29d39026, #Message-2.w-node-cf2d1f25-a0a2-4af1-cba8-787d2bfac063-29d39026 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3799ab5f-a649-ddcd-ab52-79e5086af8ca-29d39026 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-cf2d1f25-a0a2-4af1-cba8-787d2bfac064-29d39026 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_12bd7dbf-8b4e-ab77-9628-508ab2921a84-29d3902b, #w-node-_3c4308a5-ea4e-7843-ec10-045169823bdb-29d3902b, #w-node-_122293dc-7ee1-c9f0-dd93-e601255d6042-29d3902b, #w-node-_5c8bccd6-888e-6825-578b-10b71b690343-29d3902b {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_81293463-ab8e-0b68-bebc-e7e5ba878adc-29d3902b, #w-node-_0c4d661c-5cf3-21b5-f0a3-3a04ec5905d2-29d3902b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#field.w-node-_0e0f5d6d-3081-c0af-27b9-5f1aaa7427e2-29d3902b, #Message-2.w-node-_0e0f5d6d-3081-c0af-27b9-5f1aaa7427e3-29d3902b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_59428316-cf29-cfab-ea7d-3a0394cde30b-29d3902b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-_0e0f5d6d-3081-c0af-27b9-5f1aaa7427e4-29d3902b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_12bd7dbf-8b4e-ab77-9628-508ab2921a84-29d3902c, #w-node-ba8963e3-b02e-1f5c-e88e-bd1d527687e9-29d3902c, #w-node-_122293dc-7ee1-c9f0-dd93-e601255d6042-29d3902c, #w-node-_5c8bccd6-888e-6825-578b-10b71b690343-29d3902c {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_81293463-ab8e-0b68-bebc-e7e5ba878adc-29d3902c, #w-node-_0c4d661c-5cf3-21b5-f0a3-3a04ec5905d2-29d3902c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_753b04ec-7848-0668-b1ce-71213254a8de-29d3902c, #w-node-_142dc5d3-3096-2663-01b9-29e804dc0196-29d3902c, #w-node-_4981cb16-5a8a-5cd5-fd17-0d9c83ec165f-29d3902c, #field.w-node-_0e0f5d6d-3081-c0af-27b9-5f1aaa7427e2-29d3902c, #Message-2.w-node-_0e0f5d6d-3081-c0af-27b9-5f1aaa7427e3-29d3902c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ba8963e3-b02e-1f5c-e88e-bd1d527687e9-29d3902d {
  grid-area: 4 / 1 / 6 / 5;
}

#w-node-_12bd7dbf-8b4e-ab77-9628-508ab2921a84-29d3902d {
  grid-area: 1 / 1 / 5 / 5;
}

#w-node-_496230b6-e358-97af-e801-633563ae09ee-63ae09e8 {
  align-self: center;
}

#w-node-_496230b6-e358-97af-e801-633563ae09f0-63ae09e8, #w-node-_496230b6-e358-97af-e801-633563ae09f2-63ae09e8, #w-node-_496230b6-e358-97af-e801-633563ae09f4-63ae09e8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_496230b6-e358-97af-e801-633563ae09f9-63ae09e8 {
  align-self: center;
}

#w-node-_496230b6-e358-97af-e801-633563ae09fb-63ae09e8, #w-node-_496230b6-e358-97af-e801-633563ae09fd-63ae09e8, #w-node-_496230b6-e358-97af-e801-633563ae09ff-63ae09e8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_496230b6-e358-97af-e801-633563ae0a04-63ae09e8 {
  align-self: center;
}

#w-node-_496230b6-e358-97af-e801-633563ae0a06-63ae09e8, #w-node-_496230b6-e358-97af-e801-633563ae0a08-63ae09e8, #w-node-_496230b6-e358-97af-e801-633563ae0a0a-63ae09e8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_496230b6-e358-97af-e801-633563ae0a0f-63ae09e8 {
  align-self: center;
}

#w-node-_496230b6-e358-97af-e801-633563ae0a11-63ae09e8, #w-node-_496230b6-e358-97af-e801-633563ae0a13-63ae09e8, #w-node-_496230b6-e358-97af-e801-633563ae0a15-63ae09e8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_496230b6-e358-97af-e801-633563ae0a1a-63ae09e8 {
  align-self: center;
}

#w-node-_496230b6-e358-97af-e801-633563ae0a1c-63ae09e8, #w-node-_496230b6-e358-97af-e801-633563ae0a1e-63ae09e8, #w-node-_496230b6-e358-97af-e801-633563ae0a20-63ae09e8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_12bd7dbf-8b4e-ab77-9628-508ab2921a84-29d39030, #w-node-ba8963e3-b02e-1f5c-e88e-bd1d527687e9-29d39030, #w-node-_122293dc-7ee1-c9f0-dd93-e601255d6042-29d39030, #w-node-_5c8bccd6-888e-6825-578b-10b71b690343-29d39030 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_81293463-ab8e-0b68-bebc-e7e5ba878adc-29d39030, #w-node-_0c4d661c-5cf3-21b5-f0a3-3a04ec5905d2-29d39030 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#field.w-node-_0e0f5d6d-3081-c0af-27b9-5f1aaa7427e2-29d39030, #Message-2.w-node-_0e0f5d6d-3081-c0af-27b9-5f1aaa7427e3-29d39030 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1f598a70-1e54-bb9f-fd1e-0ecb31cc6a18-29d39030 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-_0e0f5d6d-3081-c0af-27b9-5f1aaa7427e4-29d39030 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_12bd7dbf-8b4e-ab77-9628-508ab2921a84-29d39031, #w-node-_953971e0-eb4c-31e3-cd09-7b5651024638-29d39031, #w-node-_122293dc-7ee1-c9f0-dd93-e601255d6042-29d39031, #w-node-_5c8bccd6-888e-6825-578b-10b71b690343-29d39031 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_81293463-ab8e-0b68-bebc-e7e5ba878adc-29d39031, #w-node-_0c4d661c-5cf3-21b5-f0a3-3a04ec5905d2-29d39031 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_12bd7dbf-8b4e-ab77-9628-508ab2921a84-29d39032, #w-node-ba8963e3-b02e-1f5c-e88e-bd1d527687e9-29d39032, #w-node-_122293dc-7ee1-c9f0-dd93-e601255d6042-29d39032, #w-node-_5c8bccd6-888e-6825-578b-10b71b690343-29d39032 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_81293463-ab8e-0b68-bebc-e7e5ba878adc-29d39032, #w-node-_0c4d661c-5cf3-21b5-f0a3-3a04ec5905d2-29d39032 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#field.w-node-_0e0f5d6d-3081-c0af-27b9-5f1aaa7427e2-29d39032, #Message-2.w-node-_0e0f5d6d-3081-c0af-27b9-5f1aaa7427e3-29d39032 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_887071fd-269a-43aa-bcd1-70fb71e6abb7-29d39033 {
  grid-area: 4 / 1 / 6 / 5;
}

#w-node-_887071fd-269a-43aa-bcd1-70fb71e6abbb-29d39033 {
  grid-area: 1 / 1 / 5 / 5;
}

#w-node-_8690b3f0-4175-bf2d-c1b2-b55019038940-29d39034 {
  grid-area: 4 / 1 / 6 / 5;
}

#w-node-_8690b3f0-4175-bf2d-c1b2-b55019038944-29d39034 {
  grid-area: 1 / 1 / 5 / 5;
}

#w-node-c02458df-6b7f-7e28-b934-7291f7ee0718-29d39035 {
  grid-area: 4 / 1 / 6 / 5;
}

#w-node-c02458df-6b7f-7e28-b934-7291f7ee071c-29d39035 {
  grid-area: 1 / 1 / 5 / 5;
}

#w-node-_3d0ccfb5-e243-346a-d2ea-52fba447ae28-29d39036 {
  grid-area: 4 / 1 / 6 / 5;
}

#w-node-_3d0ccfb5-e243-346a-d2ea-52fba447ae2c-29d39036 {
  grid-area: 1 / 1 / 5 / 5;
}

#w-node-_2422c46a-827b-97f4-dcdd-690f3a3cd518-29d39037 {
  grid-area: 4 / 1 / 6 / 5;
}

#w-node-_2422c46a-827b-97f4-dcdd-690f3a3cd51c-29d39037 {
  grid-area: 1 / 1 / 5 / 5;
}

@media screen and (max-width: 991px) {
  #w-node-f697f6e1-f1b0-f10f-74c1-a78ae533afec-e533afe9 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a89d9e22-c0ba-feef-c592-e5cdd5d714fb-d5d714be {
    justify-self: center;
  }

  #w-node-_225e87cd-1ae7-ba53-60e8-62af834c0889-834c0877 {
    align-self: stretch;
  }

  #w-node-_47fef16e-585d-4215-187f-19d4087c10d8-29d3901e, #w-node-_2766e995-4123-7dcd-f795-1540b8376cc8-29d3901e, #w-node-_12bd7dbf-8b4e-ab77-9628-508ab2921a84-29d3901f, #w-node-_14b5ba55-c432-8ac2-ae31-efdb53d4e64f-29d3901f, #w-node-ba8963e3-b02e-1f5c-e88e-bd1d527687e9-29d3901f, #w-node-b59739e4-4d00-17e3-95d2-f42d7d156830-29d3901f, #w-node-_122293dc-7ee1-c9f0-dd93-e601255d6042-29d3901f, #w-node-_5c8bccd6-888e-6825-578b-10b71b690343-29d3901f, #w-node-_12bd7dbf-8b4e-ab77-9628-508ab2921a84-29d3902b, #w-node-_14b5ba55-c432-8ac2-ae31-efdb53d4e64f-29d3902b, #w-node-_3c4308a5-ea4e-7843-ec10-045169823bdb-29d3902b, #w-node-b59739e4-4d00-17e3-95d2-f42d7d156830-29d3902b, #w-node-_122293dc-7ee1-c9f0-dd93-e601255d6042-29d3902b, #w-node-_5c8bccd6-888e-6825-578b-10b71b690343-29d3902b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_14f13939-78d1-4ecf-a517-5e866694e847-29d3902b {
    justify-self: center;
  }

  #w-node-_12bd7dbf-8b4e-ab77-9628-508ab2921a84-29d3902c, #w-node-_14b5ba55-c432-8ac2-ae31-efdb53d4e64f-29d3902c, #w-node-ba8963e3-b02e-1f5c-e88e-bd1d527687e9-29d3902c, #w-node-b59739e4-4d00-17e3-95d2-f42d7d156830-29d3902c, #w-node-_122293dc-7ee1-c9f0-dd93-e601255d6042-29d3902c, #w-node-_5c8bccd6-888e-6825-578b-10b71b690343-29d3902c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ba8963e3-b02e-1f5c-e88e-bd1d527687e9-29d3902d {
    order: 9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_12bd7dbf-8b4e-ab77-9628-508ab2921a84-29d3902d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_14f13939-78d1-4ecf-a517-5e866694e847-29d3902d {
    justify-self: center;
  }

  #w-node-_12bd7dbf-8b4e-ab77-9628-508ab2921a84-29d39030, #w-node-_14b5ba55-c432-8ac2-ae31-efdb53d4e64f-29d39030, #w-node-ba8963e3-b02e-1f5c-e88e-bd1d527687e9-29d39030, #w-node-b59739e4-4d00-17e3-95d2-f42d7d156830-29d39030, #w-node-_122293dc-7ee1-c9f0-dd93-e601255d6042-29d39030, #w-node-_5c8bccd6-888e-6825-578b-10b71b690343-29d39030, #w-node-_12bd7dbf-8b4e-ab77-9628-508ab2921a84-29d39031, #w-node-_14b5ba55-c432-8ac2-ae31-efdb53d4e64f-29d39031, #w-node-_953971e0-eb4c-31e3-cd09-7b5651024638-29d39031, #w-node-b59739e4-4d00-17e3-95d2-f42d7d156830-29d39031, #w-node-_122293dc-7ee1-c9f0-dd93-e601255d6042-29d39031, #w-node-_5c8bccd6-888e-6825-578b-10b71b690343-29d39031 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_14f13939-78d1-4ecf-a517-5e866694e847-29d39031 {
    justify-self: center;
  }

  #w-node-_12bd7dbf-8b4e-ab77-9628-508ab2921a84-29d39032, #w-node-_14b5ba55-c432-8ac2-ae31-efdb53d4e64f-29d39032, #w-node-ba8963e3-b02e-1f5c-e88e-bd1d527687e9-29d39032, #w-node-b59739e4-4d00-17e3-95d2-f42d7d156830-29d39032, #w-node-_122293dc-7ee1-c9f0-dd93-e601255d6042-29d39032, #w-node-_5c8bccd6-888e-6825-578b-10b71b690343-29d39032 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_887071fd-269a-43aa-bcd1-70fb71e6abb7-29d39033 {
    order: 9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_887071fd-269a-43aa-bcd1-70fb71e6abbb-29d39033 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_14f13939-78d1-4ecf-a517-5e866694e847-29d39033 {
    justify-self: center;
  }

  #w-node-_8690b3f0-4175-bf2d-c1b2-b55019038940-29d39034 {
    order: 9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_8690b3f0-4175-bf2d-c1b2-b55019038944-29d39034 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_14f13939-78d1-4ecf-a517-5e866694e847-29d39034 {
    justify-self: center;
  }

  #w-node-c02458df-6b7f-7e28-b934-7291f7ee0718-29d39035 {
    order: 9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c02458df-6b7f-7e28-b934-7291f7ee071c-29d39035 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_14f13939-78d1-4ecf-a517-5e866694e847-29d39035 {
    justify-self: center;
  }

  #w-node-_3d0ccfb5-e243-346a-d2ea-52fba447ae28-29d39036 {
    order: 9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_3d0ccfb5-e243-346a-d2ea-52fba447ae2c-29d39036 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_14f13939-78d1-4ecf-a517-5e866694e847-29d39036 {
    justify-self: center;
  }

  #w-node-_2422c46a-827b-97f4-dcdd-690f3a3cd518-29d39037 {
    order: 9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_2422c46a-827b-97f4-dcdd-690f3a3cd51c-29d39037 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_14f13939-78d1-4ecf-a517-5e866694e847-29d39037 {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_829118c2-828a-2bfa-a36c-b5007e080dea-29d39017, #w-node-_829118c2-828a-2bfa-a36c-b5007e080df4-29d39017 {
    order: -9999;
  }

  #w-node-a89d9e22-c0ba-feef-c592-e5cdd5d714fb-d5d714be {
    justify-self: auto;
  }

  #w-node-_122293dc-7ee1-c9f0-dd93-e601255d6042-29d3901f {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_81293463-ab8e-0b68-bebc-e7e5ba878adc-29d3901f {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_8be8ec7e-8065-6a18-2395-7abc96863f4c-29d39022 {
    order: -9999;
  }

  #w-node-cf2d1f25-a0a2-4af1-cba8-787d2bfac050-29d39026 {
    justify-self: center;
  }

  #w-node-cf2d1f25-a0a2-4af1-cba8-787d2bfac064-29d39026, #w-node-_122293dc-7ee1-c9f0-dd93-e601255d6042-29d3902b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_81293463-ab8e-0b68-bebc-e7e5ba878adc-29d3902b {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_122293dc-7ee1-c9f0-dd93-e601255d6042-29d3902c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_81293463-ab8e-0b68-bebc-e7e5ba878adc-29d3902c {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_122293dc-7ee1-c9f0-dd93-e601255d6042-29d39030 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_81293463-ab8e-0b68-bebc-e7e5ba878adc-29d39030 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_122293dc-7ee1-c9f0-dd93-e601255d6042-29d39031 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_81293463-ab8e-0b68-bebc-e7e5ba878adc-29d39031 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_122293dc-7ee1-c9f0-dd93-e601255d6042-29d39032 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_81293463-ab8e-0b68-bebc-e7e5ba878adc-29d39032 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_829118c2-828a-2bfa-a36c-b5007e080df4-29d39017 {
    order: -9999;
  }

  #Message-2.w-node-_99f3e516-6ea2-9ebc-9a72-10f296fd77bf-96fd77ad, #w-node-_99f3e516-6ea2-9ebc-9a72-10f296fd77c1-96fd77ad {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a89d9e22-c0ba-feef-c592-e5cdd5d714fb-d5d714be {
    grid-column: span 1 / span 1;
  }

  #w-node-e36a87cf-07e1-d79b-ae43-66e489b63996-89b6398f {
    grid-area: 1 / 1 / 2 / 2;
    align-self: center;
  }

  #w-node-e36a87cf-07e1-d79b-ae43-66e489b639a7-89b6398f {
    grid-area: 2 / 1 / 3 / 2;
    align-self: center;
  }

  #w-node-e36a87cf-07e1-d79b-ae43-66e489b639b4-89b6398f {
    grid-area: 3 / 1 / 4 / 2;
    align-self: center;
  }

  #Message.w-node-_9f1c1444-5652-0d94-d9ed-5e606a4bee0f-29d39021 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #Message-2.w-node-_1d9ae9a1-b9a9-030d-38af-9d1cb9890366-b989034f, #w-node-_1d9ae9a1-b9a9-030d-38af-9d1cb9890367-b989034f, #Email-3.w-node-ea352cdd-754e-649c-de56-736bcc052b1d-cc052b0c, #w-node-ea352cdd-754e-649c-de56-736bcc052b1e-cc052b0c, #Message-2.w-node-fa3a907d-5594-71a8-c140-e1c8420d3dc5-29d39024, #w-node-fa3a907d-5594-71a8-c140-e1c8420d3dc6-29d39024 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-cf2d1f25-a0a2-4af1-cba8-787d2bfac050-29d39026 {
    justify-self: center;
  }

  #Message-2.w-node-cf2d1f25-a0a2-4af1-cba8-787d2bfac063-29d39026, #w-node-cf2d1f25-a0a2-4af1-cba8-787d2bfac064-29d39026 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_12bd7dbf-8b4e-ab77-9628-508ab2921a84-29d3902b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_3c4308a5-ea4e-7843-ec10-045169823bdb-29d3902b {
    grid-area: 2 / 1 / 3 / 3;
  }

  #Message-2.w-node-_0e0f5d6d-3081-c0af-27b9-5f1aaa7427e3-29d3902b, #w-node-_0e0f5d6d-3081-c0af-27b9-5f1aaa7427e4-29d3902b, #Message-2.w-node-_0e0f5d6d-3081-c0af-27b9-5f1aaa7427e3-29d3902c, #w-node-_0e0f5d6d-3081-c0af-27b9-5f1aaa7427e4-29d3902c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ba8963e3-b02e-1f5c-e88e-bd1d527687e9-29d39030 {
    grid-area: 2 / 1 / 2 / 3;
  }

  #Message-2.w-node-_0e0f5d6d-3081-c0af-27b9-5f1aaa7427e3-29d39030, #w-node-_0e0f5d6d-3081-c0af-27b9-5f1aaa7427e4-29d39030 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_12bd7dbf-8b4e-ab77-9628-508ab2921a84-29d39031 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_953971e0-eb4c-31e3-cd09-7b5651024638-29d39031 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #Message-2.w-node-_0e0f5d6d-3081-c0af-27b9-5f1aaa7427e3-29d39032, #w-node-_0e0f5d6d-3081-c0af-27b9-5f1aaa7427e4-29d39032 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


