:root {
  --body: #12135e;
  --title: black;
  --black: #12135e;
  --transparent: transparent;
  --white: white;
  --dimgrey: dimgrey;
  --footer-link: #999;
  --light-gray: #999;
  --desktop-space: 150px;
  --tablet-space: 100px;
  --landscape-mobile-space: 80px;
  --portrait-mobile-space: 60px;
  --background: #d1d1d1;
  --placeholder: #666;
  --bg-dark: #d9d9d9;
  --bg-image: #f2f2f2;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

.w-pagination-next, .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;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--body);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

h1 {
  color: var(--title);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Bebas Neue, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 100%;
}

h2 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Bebas Neue, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
}

h3 {
  color: var(--title);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 120%;
}

h4 {
  color: var(--title);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 150%;
}

h5 {
  color: var(--title);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

h6 {
  color: var(--title);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

label {
  margin-bottom: 0;
  font-weight: 700;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin-bottom: 10px;
}

.navbar-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar {
  border-bottom: 1px solid var(--black);
  background-color: #0000;
  height: auto;
  padding-top: 13px;
  padding-bottom: 13px;
  line-height: 150%;
}

.nav-link {
  color: var(--black);
  padding: 0;
  font-size: 12px;
  line-height: 150%;
}

.nav-link.w--current {
  border-bottom: 1px solid var(--black);
  color: var(--black);
}

.nav-menu {
  flex: 1;
  align-items: center;
  width: 100%;
  display: flex;
}

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

.nav-right {
  grid-column-gap: 25px;
  align-items: center;
  display: flex;
}

.nav-inner {
  grid-column-gap: 36px;
  text-align: left;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.brand {
  z-index: 1;
  flex: 0 0 220px;
  align-items: center;
  display: flex;
}

.primary-btn {
  border: 1px solid var(--black);
  background-color: var(--transparent);
  color: var(--black);
  padding: 13px 23px;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
  transition: color .3s, background-color .3s;
}

.primary-btn:hover {
  background-color: var(--black);
  color: var(--white);
}

.nav-contact {
  grid-column-gap: 10px;
  color: var(--black);
  background-image: url('../images/call-icon.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  align-items: center;
  padding-left: 36px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.nav-contact:hover {
  background-image: url('../images/call-icon-black.svg');
}

.contact-nav {
  grid-row-gap: 4px;
  flex-direction: column;
  display: flex;
}

.contact-text {
  font-size: 12px;
  line-height: 120%;
}

.nav-links {
  display: flex;
  position: relative;
}

.nav-line {
  background-color: var(--black);
  width: 0%;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.footer {
  background-color: var(--black);
  color: var(--white);
  padding-top: 60px;
  padding-bottom: 20px;
}

.footer-block {
  grid-row-gap: 60px;
  flex-direction: column;
  display: flex;
}

.cta-wrap {
  border-bottom: 1px solid #fff3;
  justify-content: space-between;
  padding-bottom: 60px;
  display: flex;
}

.cta-content {
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 45%;
  display: flex;
}

.cta-img {
  background-color: var(--dimgrey);
  width: 100%;
  max-width: 380px;
  height: 100%;
  min-height: 205px;
  max-height: 205px;
}

.cta-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 205px;
  max-height: 205px;
}

.cta-btn {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--black);
  padding: 13px 23px;
  font-size: 12px;
  line-height: 120%;
  transition: color .3s, background-color .3s;
}

.cta-btn:hover {
  background-color: var(--black);
  color: var(--white);
}

.cta-btns {
  grid-column-gap: 15px;
  display: flex;
}

.secondary-btn {
  border: 1px solid var(--white);
  background-color: var(--transparent);
  padding: 13px 23px;
  font-size: 12px;
  line-height: 120%;
  transition: background-color .3s, border-color .3s;
}

.secondary-btn:hover {
  background-color: var(--white);
  color: var(--black);
}

.cta-title {
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 400;
  line-height: 150%;
}

.cta-paragraph {
  max-width: 500px;
}

.body-small {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.footer-top {
  grid-column-gap: 50px;
  border-bottom: 1px solid #fff3;
  justify-content: space-between;
  padding-bottom: 60px;
  display: flex;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

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

.footer-right {
  grid-column-gap: 105.5px;
  display: flex;
}

.footer-logo.w--current {
  background-image: url('../images/compass.png');
  background-position: 0 0;
}

.links-block {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.footer-link {
  color: var(--footer-link);
  font-size: 14px;
  line-height: 150%;
  text-decoration: none;
  transition: color .3s;
}

.footer-link:hover, .footer-link.w--current {
  color: var(--white);
}

.footer-info {
  grid-row-gap: 25px;
  flex-direction: column;
  display: flex;
}

.footer-info.left-align {
  align-items: flex-start;
}

.footer-contact {
  color: var(--light-gray);
  font-size: 14px;
  line-height: 150%;
}

.footer-contact:hover {
  text-decoration: none;
}

.social-wrap {
  grid-column-gap: 10px;
  display: flex;
}

.social-block {
  border: 1px solid #ffffff1a;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  transition: background-color .3s;
  display: flex;
}

.social-block:hover {
  background-color: #f1f1f133;
  border-color: #0000;
}

.style-guide-head {
  color: #000;
  border-bottom: 1px solid #e9e2da;
  padding-top: 20px;
  padding-bottom: 20px;
}

.style-guide-wrap {
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.page-subtitle {
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
}

.page-wrap {
  padding-bottom: var(--desktop-space);
}

.rich-text {
  width: 100%;
  max-width: 900px;
}

.rich-text h3 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.rich-text p {
  margin-bottom: 20px;
}

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

.rich-text ol {
  grid-row-gap: 15px;
  flex-direction: column;
  padding-left: 26px;
  display: flex;
}

.rich-text blockquote {
  border: 1px solid var(--black);
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 39px 39px 38px;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.rich-text h4 {
  margin-top: 30px;
  margin-bottom: 20px;
}

.rich-text ul {
  grid-row-gap: 15px;
  flex-direction: column;
  padding-left: 26px;
  display: flex;
}

.rich-text h5, .rich-text h6 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.body-large {
  font-size: 18px;
  line-height: 150%;
}

.button-outer {
  grid-row-gap: 20px;
  flex-direction: column;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.color-detail {
  grid-column-gap: 10px;
  display: flex;
}

.title-wrapper {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.btn-inner {
  grid-row-gap: 10px;
  color: #000;
  flex-direction: column;
  display: flex;
}

.titles-block {
  grid-row-gap: 20px;
  color: #000;
  flex-direction: column;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.btn-link {
  color: var(--black);
  font-size: 12px;
  line-height: 119%;
  text-decoration: none;
}

.btn-link:hover {
  text-decoration: underline;
}

.btn-link.with-icon {
  background-image: url('../images/btn-link-arrow.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  flex: none;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-right: 26px;
}

.details-block {
  grid-column-gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.btn-block {
  grid-column-gap: 20px;
  display: flex;
}

.color-box {
  border: 1px solid #000;
  border-radius: 4px;
  width: 32px;
  height: 32px;
}

.color-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
}

.color {
  grid-column-gap: 10px;
  align-items: center;
  display: flex;
}

.title-section {
  padding-top: 60px;
  padding-bottom: 60px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}

.footer-links {
  grid-row-gap: 4px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-newsletter {
  grid-row-gap: 10px;
  flex-direction: column;
  width: 100%;
  max-width: 368px;
  display: flex;
}

.contact-info {
  grid-row-gap: 10px;
  flex-direction: column;
  width: 100%;
  max-width: 160px;
  display: flex;
}

.footer-form {
  margin-bottom: 0;
}

.footer-field {
  background-color: #ffffff0d;
  background-image: url('../images/ic-mail.svg');
  background-position: 12px;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid #ffffff26;
  height: auto;
  margin-bottom: 0;
  padding: 11px 42px;
  font-size: 12px;
  line-height: 150%;
}

.footer-field:focus {
  border: 1px solid var(--dimgrey);
  color: var(--white);
}

.footer-field::placeholder {
  color: var(--dimgrey);
}

.bottom-left {
  grid-column-gap: 10px;
  display: flex;
}

.policy {
  grid-column-gap: 28px;
  display: flex;
}

.bottom-link {
  color: var(--footer-link);
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
  transition: color .3s;
}

.bottom-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-contect {
  color: #999;
  font-size: 14px;
  line-height: 150%;
  text-decoration: none;
  transition: color .3s;
}

.footer-news {
  color: #999;
  font-size: 14px;
  line-height: 150%;
  text-decoration: none;
}

.bottom-text {
  color: #999;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}

.bg-black {
  background-color: var(--black);
}

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

.bg-title {
  background-color: var(--title);
}

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

.bg-body {
  background-color: var(--body);
}

.nav-btn {
  border: 1px solid var(--black);
  background-color: var(--transparent);
  color: var(--black);
  padding: 13px 25px;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
  transition: color .3s, background-color .3s;
}

.nav-btn:hover {
  background-color: var(--black);
  color: var(--white);
}

.footer-submit {
  background-color: var(--white);
  background-image: url('../images/arrow-crros.svg');
  background-position: 0 0;
  background-size: auto;
  width: 30px;
  height: 30px;
  padding: 0;
  position: absolute;
  inset: 6px 6px 6px auto;
}

.form {
  position: relative;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.utility-page-form {
  border: 1px solid #000;
  flex-direction: column;
  width: 100%;
  max-width: 452px;
  padding: 59px 49px;
  display: flex;
}

.pas-field {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 80px;
  margin-bottom: 20px;
  display: flex;
}

.field-label {
  margin-bottom: 8px;
}

.input {
  color: var(--black);
  border: 1px #000;
  border-bottom-style: solid;
  height: auto;
  margin-bottom: 0;
  padding: 0 0 12px;
  font-size: 14px;
  line-height: 150%;
}

.input:focus {
  border-bottom: 1px solid var(--black);
}

.input::placeholder {
  color: var(--placeholder);
}

.password-submit {
  background-color: var(--white);
  color: var(--black);
  border: 1px solid #000;
  padding: 13px 23px;
  font-size: 12px;
  line-height: 120%;
  transition: color .3s, background-color .3s;
}

.password-submit:hover {
  background-color: var(--black);
  color: var(--white);
}

.protection-title {
  margin-bottom: 10px;
}

.error-wrapper {
  grid-row-gap: 10px;
  flex-direction: column;
  margin-bottom: 40px;
  display: flex;
}

._404 {
  margin-bottom: 40px;
}

.coming-section {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.coming-wrapper {
  grid-row-gap: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.coming-heading {
  grid-row-gap: 15px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 490px;
  display: flex;
}

.coming-soon {
  color: var(--black);
  font-size: 74px;
  font-weight: 800;
  line-height: 150%;
}

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

.coming-link {
  color: var(--body);
  line-height: 150%;
  text-decoration: none;
}

.coming-link:hover {
  text-decoration: underline;
}

.coming-title {
  width: 100%;
  max-width: 468px;
}

.info-wrap {
  grid-row-gap: 60px;
  flex-direction: column;
  display: flex;
}

.info-block {
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.main-heading {
  margin-bottom: 15px;
}

.policy-list {
  grid-row-gap: 21px;
  flex-direction: column;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.policy-list-item {
  background-image: url('../images/ic-check.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-left: 35px;
}

.utility-content {
  grid-row-gap: 20px;
  color: #000;
  flex-direction: column;
  display: flex;
}

.disclaimer-block {
  grid-row-gap: 15px;
  border: 1px solid #0003;
  flex-direction: column;
  padding: 29px;
  display: flex;
}

.disclaimer-info {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.hero-section {
  background-color: var(--bg-dark);
  color: var(--white);
  background-image: linear-gradient(#0006, #0006), url('../images/ottawa-airport.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero-wrap {
  grid-row-gap: 174px;
  flex-direction: column;
  display: flex;
}

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

.hero-content {
  grid-row-gap: 10px;
  flex-direction: column;
  width: 100%;
  max-width: 699px;
  display: flex;
}

.hero-paragraph {
  width: 100%;
  max-width: 550px;
}

.hero-btns {
  grid-column-gap: 25px;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.text-link {
  color: var(--white);
  background-image: url('../images/ic-arrow-white.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-right: 26px;
  font-size: 12px;
  line-height: 120%;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.hero-capsule {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  max-width: 431px;
  margin-left: auto;
  display: flex;
}

.capsule {
  grid-column-gap: 8px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #ffffff0a;
  border: 1px solid #ffffff4d;
  border-radius: 50px;
  padding: 5px 15px;
  font-size: 12px;
  line-height: 150%;
  display: flex;
}

.section {
  padding-top: var(--desktop-space);
  padding-bottom: var(--desktop-space);
  background-color: var(--white);
  position: relative;
}

.section.last {
  padding-bottom: 0;
}

.about-wrap {
  grid-column-gap: 60px;
  align-items: center;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  display: flex;
}

.about-img {
  width: 100%;
  position: relative;
}

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

.about-main-image {
  background-color: var(--bg-dark);
  width: 100%;
  max-width: 580px;
  height: 100%;
  min-height: 670px;
  max-height: 670px;
}

.about-inner-image {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  opacity: 1;
  object-fit: fill;
  border-top: 10px #fff;
  border-left: 0 #fff;
  border-radius: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 310px;
  height: 100%;
  min-height: 190px;
  max-height: 190px;
  padding-top: 0;
  display: block;
  position: absolute;
  inset: auto 0% 0% auto;
}

.about-main-img {
  object-fit: scale-down;
  background-color: #fff;
  width: 100%;
  height: 100%;
  min-height: 670px;
  max-height: 670px;
  overflow: visible;
}

.about-inner-img {
  background-color: var(--transparent);
  opacity: 1;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border: 1px #000;
  width: 100%;
  height: 100%;
  min-height: 180px;
  max-height: 180px;
  overflow: visible;
}

.about-title {
  grid-row-gap: 10px;
  flex-direction: column;
  margin-bottom: 15px;
  display: flex;
}

.about-bottom {
  grid-row-gap: 40px;
  flex-direction: column;
  margin-top: 60px;
  display: flex;
}

.about-topic {
  grid-column-gap: 15px;
  border-bottom: 1px solid #0003;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
}

.about-topic.top {
  padding-top: 0;
}

.project-wrap {
  flex-direction: column;
}

.title-block {
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  display: flex;
}

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

.empty-state {
  background-color: var(--black);
  color: var(--white);
  text-align: center;
}

.empty-state.black {
  border: 1px solid var(--white);
}

.our-values {
  padding-top: var(--portrait-mobile-space);
  padding-bottom: var(--portrait-mobile-space);
  background-color: var(--black);
}

.project-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 440px;
  max-height: 440px;
}

.project-img {
  background-color: var(--bg-dark);
  color: var(--white);
  object-fit: cover;
  width: 100%;
  max-width: 628px;
  height: 100%;
  min-height: 440px;
  max-height: 440px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-title {
  color: var(--white);
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 64px;
}

.section-inner {
  grid-row-gap: var(--desktop-space);
  flex-direction: column;
  display: flex;
}

.project-data {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: absolute;
  inset: auto 25px 25px;
}

.project-subtext {
  background-color: var(--white);
  justify-content: space-between;
  width: 100%;
  padding: 15px;
  display: flex;
}

.project-content {
  grid-column-gap: 8px;
  background-color: var(--black);
  padding: 10px 15px;
  font-size: 12px;
  line-height: 150%;
  display: flex;
}

.values-wrap {
  grid-row-gap: 100px;
  flex-direction: column;
  display: flex;
}

.values-top {
  grid-column-gap: 60px;
  align-items: center;
  display: flex;
}

.values-facts {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.values-data {
  grid-row-gap: 15px;
  flex-direction: column;
  width: 100%;
  max-width: 392px;
  display: flex;
}

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

.values-text {
  grid-row-gap: 25px;
  color: var(--white);
  flex-direction: column;
  display: flex;
}

.facts-block {
  color: var(--white);
  flex: 1;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  display: flex;
  position: relative;
}

.facts-img {
  color: var(--transparent);
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff3d;
  width: 100%;
  font-size: 100px;
  font-weight: 700;
  line-height: 80%;
  position: absolute;
}

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

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

.link-block {
  grid-row-gap: 100px;
  color: var(--body);
  border: 1px solid #0000001a;
  flex-direction: column;
  width: 100%;
  padding: 29px;
  text-decoration: none;
  transition: border-color .3s;
  display: flex;
}

.link-block:hover {
  border-color: #000;
}

.project-item {
  display: flex;
}

.service-top {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.service-bottom {
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text-link-black {
  background-image: url('../images/ic-black-arrow.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-right: 26px;
  font-size: 12px;
  line-height: 120%;
  text-decoration: none;
}

.text-link-black:hover {
  text-decoration: underline;
}

.service-title {
  margin-bottom: 4px;
}

.service-thumb-img, .service-thumb {
  width: 100px;
  height: 100px;
}

.flex {
  display: flex;
}

.anchor-block {
  z-index: -1;
  width: 100%;
  position: absolute;
  inset: 0% 0% auto auto;
  overflow: hidden;
}

.anchor-image {
  transform: translate(42px);
}

.anchor-wrap {
  justify-content: flex-end;
  display: flex;
}

.discuss-section {
  background-color: var(--black);
  color: var(--bg-dark);
  object-position: right;
  object-fit: cover;
  position: relative;
}

.discuss-img {
  width: 100%;
  max-width: 43%;
  height: 100%;
  position: absolute;
}

.discuss-image {
  float: left;
  clear: left;
  text-align: left;
  object-position: left;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.discuss-content {
  width: 100%;
  max-width: 57.8%;
  margin-left: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 60px;
}

.discuss-title {
  grid-row-gap: 8px;
  flex-direction: column;
  margin-bottom: 40px;
  display: flex;
}

.quote-form {
  margin-bottom: 0;
}

.black-input {
  background-color: #ffffff0d;
  height: auto;
  margin-bottom: 0;
  padding: 9px 10px 10px;
  font-size: 14px;
  line-height: 150%;
}

.black-input:focus {
  border-bottom-color: var(--black);
}

.black-input::placeholder {
  color: var(--white);
}

.field-name {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.black-input {
  color: var(--white);
  border-color: #ffffff26;
}

.black-input:focus {
  border: 1px solid var(--dimgrey);
}

.black-textarea {
  color: var(--white);
  background-color: #ffffff0d;
  border: 1px solid #ffffff26;
  height: auto;
  min-height: 160px;
  margin-bottom: 0;
  padding: 10px;
  font-size: 12px;
  line-height: 150%;
}

.black-textarea:focus {
  border: 1px solid var(--dimgrey);
}

.discuss-form {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  display: grid;
}

.submit-btn-wrap {
  justify-content: flex-end;
  display: flex;
}

.checkbox {
  margin-top: 0;
  margin-left: -10px;
}

.checkbox-field {
  grid-column-gap: 10px;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.body-x-small {
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}

.privacy-link {
  color: var(--bg-dark);
  text-decoration: none;
  transition: color .3s;
}

.privacy-link:hover {
  color: var(--white);
}

.testimonials-wrap {
  position: relative;
  overflow: hidden;
}

.faq-wrap {
  grid-column-gap: 60px;
  align-items: center;
  display: flex;
}

.member-list {
  grid-column-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.member-block {
  width: 100%;
  max-width: 302px;
}

.member-img {
  background-color: var(--bg-image);
  width: 100%;
  max-width: 302px;
  height: 100%;
  min-height: 320px;
  max-height: 320px;
}

.member-content {
  border: 1px solid #0000001a;
  border-top: 1px #0000;
  padding: 11px;
}

.members-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 320px;
}

.review-cards {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.review-card {
  border: 1px solid #0000001a;
  width: 100%;
  max-width: 628px;
  margin-right: 40px;
  padding: 34px;
}

.review-img {
  border-radius: 40px;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.review-image {
  object-fit: cover;
  border-radius: 40px;
  width: 60px;
  height: 60px;
}

.review-name {
  grid-row-gap: 2px;
  flex-direction: column;
  margin-top: 40px;
  display: flex;
}

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

.news-data {
  grid-column-gap: 8px;
  align-items: flex-start;
  display: flex;
}

.news-info {
  grid-row-gap: 12px;
  flex-direction: column;
  margin-top: 8px;
  display: flex;
}

.news-img {
  background-color: var(--bg-dark);
  width: 100%;
  max-width: 412px;
  height: 100%;
  min-height: 300px;
  max-height: 300px;
  overflow: hidden;
}

.blog-thumb {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 300px;
}

.faq-img {
  background-color: var(--bg-dark);
  width: 100%;
  max-width: 618px;
  height: 100%;
  min-height: 664px;
  max-height: 664px;
}

.faq-content {
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.faq-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 664px;
  max-height: 664px;
}

.faq-inner {
  grid-row-gap: 25px;
  flex-direction: column;
  margin-bottom: 40px;
  display: flex;
}

.faq {
  border-top: 1px solid #0000001a;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.question-block {
  grid-column-gap: 20px;
  white-space: pre-wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 25px 0 0;
  display: flex;
}

.answer-block {
  background-color: #0000;
  display: block;
  position: relative;
  overflow: hidden;
}

.faq-answer {
  padding-top: 14px;
  padding-bottom: 0;
  padding-left: 44px;
}

.faq-answer.last {
  padding-bottom: 0;
}

.link-black {
  color: var(--body);
  background-image: url('../images/ic-black-arrow.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-right: 26px;
  font-size: 12px;
  line-height: 120%;
  text-decoration: none;
}

.link-black:hover {
  text-decoration: underline;
}

.link-black.invert {
  filter: invert();
}

.pagination {
  grid-column-gap: 20px;
  justify-content: flex-end;
  margin-top: 40px;
}

.next {
  border: 1px solid var(--black);
  background-color: var(--transparent);
  border-radius: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 13px 23px;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
  transition: color .3s, background-color .3s;
}

.next:hover {
  background-color: var(--black);
  color: var(--white);
}

.previous {
  border: 1px solid var(--black);
  background-color: var(--transparent);
  border-radius: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 13px 23px;
  font-size: 12px;
  line-height: 120%;
  transition: color .3s, background-color .3s;
}

.previous:hover {
  background-color: var(--black);
  color: var(--white);
}

.service-section {
  padding-bottom: var(--desktop-space);
}

.featured-section {
  padding-bottom: var(--landscape-mobile-space);
}

.blog-feature {
  grid-column-gap: 60px;
  color: var(--body);
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.blog-img {
  background-color: var(--bg-dark);
  width: 100%;
  max-width: 640px;
  height: 100%;
  min-height: 400px;
  max-height: 400px;
  overflow: hidden;
}

.blog-content {
  grid-row-gap: 144px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 569px;
  display: flex;
}

.blog-thumb-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 400px;
}

.blog-context {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.blog {
  color: var(--body);
  text-decoration: none;
}

.image-wrap {
  width: 100%;
}

.about-big-image {
  background-color: var(--bg-dark);
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 580px;
  max-height: 580px;
}

.about-big-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 580px;
  max-height: 580px;
}

.story-img-block {
  grid-column-gap: 30px;
  display: flex;
}

.about-small-image {
  background-color: var(--bg-dark);
  width: 100%;
  max-width: 410px;
  height: 100%;
  min-height: 580px;
  max-height: 580px;
}

.about-small-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 580px;
  max-height: 580px;
  line-height: 150%;
}

.story-text {
  grid-row-gap: 15px;
  flex-direction: column;
  width: 100%;
  max-width: 928px;
  margin-top: 25px;
  display: flex;
}

.project-info {
  grid-column-gap: 110px;
  justify-content: space-between;
  display: flex;
}

.why-choose {
  grid-column-gap: 80px;
  align-items: center;
  display: flex;
}

.project-inner {
  grid-row-gap: 25px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 542px;
  display: flex;
}

.project-img-block {
  background-color: var(--bg-dark);
  width: 100%;
  max-width: 644px;
  height: 100%;
  min-height: 640px;
  max-height: 640px;
}

.inner-image {
  background-color: var(--bg-image);
  width: 100%;
  max-width: 280px;
  height: 100%;
  min-height: 320px;
  max-height: 320px;
}

.inner-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 320px;
}

.project-images {
  object-fit: cover;
  object-position: right;
  width: 100%;
  height: 100%;
  min-height: 640px;
  max-height: 640px;
}

.inner-info {
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.choose-image {
  background-color: var(--bg-dark);
  width: 100%;
  max-width: 596px;
  height: 100%;
  min-height: 520px;
  max-height: 520px;
}

.choose-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: 520px;
}

.tab-link {
  background-color: var(--transparent);
  margin-bottom: -1px;
  padding: 0 0 15px;
}

.tab-link.w--current {
  background-color: var(--transparent);
  border-bottom: 1px solid #000;
}

.tabs-menu {
  grid-column-gap: 60px;
  border-bottom: 1px solid #0003;
  display: flex;
}

.tabs-content {
  margin-top: 25px;
}

.choose-content {
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 620px;
  display: flex;
}

.tab-content {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.services {
  padding-top: var(--landscape-mobile-space);
  padding-bottom: var(--landscape-mobile-space);
  background-color: var(--black);
}

.services-wrap {
  grid-column-gap: 50px;
  color: var(--white);
  justify-content: space-between;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  display: flex;
}

.service-content {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 460px;
  display: flex;
}

.service-faq {
  grid-row-gap: 20px;
  flex-direction: column;
  width: 100%;
  max-width: 620px;
  display: flex;
}

.service-info-title {
  color: var(--white);
  margin-bottom: 10px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}

.faq-line {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

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

.vertical-line {
  background-color: var(--white);
  width: 1px;
  height: 14px;
  position: absolute;
  inset: auto;
}

.story-wrap {
  grid-column-gap: 60px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.story-info {
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 596px;
  height: 100%;
  min-height: 440px;
  max-height: 440px;
  display: flex;
}

.story-image {
  background-color: var(--white);
  width: 100%;
  max-width: 640px;
  height: 100%;
  min-height: 480px;
  max-height: 480px;
  position: relative;
}

.story-img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-height: 480px;
}

.story-bottom {
  grid-row-gap: 25px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.contact {
  grid-column-gap: 80px;
  display: flex;
}

.contect-form {
  width: 100%;
  max-width: 688px;
}

.contect-info {
  grid-row-gap: 40px;
  flex-direction: column;
  width: 100%;
  max-width: 528px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  display: flex;
}

.contect-bottom {
  grid-column-gap: 30px;
  display: flex;
}

.contect-image {
  background-color: var(--bg-dark);
  width: 100%;
  max-width: 280px;
  height: 100%;
  min-height: 340px;
  max-height: 340px;
}

.contect-img {
  object-fit: cover;
  object-position: right;
  width: 100%;
  height: 100%;
  min-height: 340px;
  max-height: 340px;
}

.privacy-links {
  color: var(--body);
  text-decoration: none;
}

.privacy-links:hover {
  text-decoration: underline;
}

.submit-btn {
  justify-content: flex-end;
  display: flex;
}

.contect-info-block {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.contect-right {
  grid-row-gap: 20px;
  flex-direction: column;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.contect-link {
  color: var(--body);
  font-size: 14px;
  line-height: 150%;
}

.contect-links {
  color: var(--body);
  font-size: 14px;
  line-height: 150%;
  text-decoration: none;
}

.contect-social {
  grid-column-gap: 10px;
  display: flex;
}

.social-icon {
  border: 1px solid #00000026;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: background-color .3s;
  display: flex;
}

.social-icon:hover {
  background-color: #f1f1f133;
  border-color: #0000;
}

.social-inner {
  grid-row-gap: 8px;
  flex-direction: column;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.input-block {
  color: var(--black);
  border: 1px solid #0000001a;
  margin-bottom: 0;
  padding: 10px;
}

.input-block:focus {
  border: 1px solid var(--black);
}

.input-block::placeholder {
  color: var(--black);
}

.textarea-block {
  color: var(--black);
  border: 1px solid #0000001a;
  height: 100%;
  min-height: 160px;
  margin-bottom: 0;
}

.textarea-block:focus {
  border-color: var(--black);
}

.faq-black {
  border-bottom: 1px solid #fff3;
  flex-direction: column;
  width: 100%;
  padding-bottom: 20px;
  display: flex;
}

.blog-detail {
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.blog-title {
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
  display: flex;
}

.blog-name {
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
}

.blog-main-img {
  background-color: var(--bg-dark);
  width: 100%;
  max-width: 1296px;
  height: 100%;
  min-height: 600px;
  max-height: 600px;
}

.blog-main {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 600px;
  max-height: 600px;
}

.rich-section {
  padding-bottom: var(--desktop-space);
}

.rich-wrap {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.detail-wrap {
  padding-bottom: var(--portrait-mobile-space);
  grid-column-gap: 56px;
  display: flex;
}

.sevice-main-image {
  background-color: var(--bg-dark);
  width: 100%;
  max-width: 900px;
  height: 100%;
  min-height: 500px;
  max-height: 500px;
}

.service-main-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 500px;
  max-height: 500px;
}

.our-services {
  grid-row-gap: 25px;
  flex-direction: column;
  width: 100%;
  max-width: 340px;
  display: flex;
}

.sevice-link {
  color: var(--body);
  border-bottom: 1px solid #0003;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  text-decoration: none;
  transition: border-color .3s;
}

.sevice-link:hover {
  background-image: url('../images/ic-arrow-croos.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  border-bottom-color: #000;
}

.service-list {
  flex-direction: column;
  display: flex;
}

.download-btn {
  border: 1px solid var(--black);
  background-color: var(--transparent);
  color: var(--black);
  text-align: center;
  background-image: url('../images/btn-icon.svg');
  background-position: 223px;
  background-repeat: no-repeat;
  background-size: auto;
  margin-top: 15px;
  padding: 16px 40px 16px 23px;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
  transition: color .3s, background-color .3s;
}

.download-btn:hover {
  background-color: var(--black);
  color: var(--white);
  background-image: url('../images/btn-white.svg');
}

.service-rich {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 900px;
  display: flex;
}

.gallery-section {
  background-color: var(--black);
  padding-top: 80px;
  padding-bottom: 80px;
}

.gallery-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.white-block {
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

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

.gallery-lightbox {
  background-color: var(--bg-dark);
  width: 100%;
  max-width: 412px;
  height: 100%;
  min-height: 340px;
  max-height: 340px;
}

.gallery-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 340px;
  max-height: 340px;
}

.title-wrap {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.title-content {
  grid-column-gap: 80px;
  display: flex;
}

.title-info {
  grid-row-gap: 4px;
  flex-direction: column;
  display: flex;
}

.project-main-image {
  background-color: var(--bg-dark);
  width: 100%;
  max-width: 1296px;
  height: 100%;
  min-height: 600px;
  max-height: 600px;
}

.project-main-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 600px;
  max-height: 600px;
}

.color-black {
  color: var(--black);
}

.story-light-box {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: #ffffff0a;
  border: 1px solid #fff3;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
  position: absolute;
  inset: auto 20px 20px auto;
}

.play-inner {
  margin-left: 5.6px;
}

.footer-link-block {
  grid-column-gap: 27px;
  grid-template: ". Area"
                 "Area-3 Area-2"
                 / auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.brand-wrap {
  flex: none;
  display: flex;
}

.left-shadow {
  background-image: linear-gradient(to right, var(--white), #fff0);
  width: 100%;
  max-width: 15%;
  height: 80%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.right-shadow {
  background-image: linear-gradient(270deg, var(--white), #fff0);
  width: 100%;
  max-width: 15%;
  height: 80%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.success-footer {
  border: 1px solid var(--white);
  background-color: var(--black);
  padding: 15px;
}

.error-messege {
  color: var(--black);
  text-align: center;
}

.success-messege {
  background-color: var(--black);
  color: var(--white);
  padding: 15px;
}

.team-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  align-items: center;
  display: flex;
}

.tems-info {
  width: 100%;
  max-width: 700px;
}

.team-main {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 320px;
}

.team-img {
  background-color: var(--bg-image);
  width: 100%;
  max-width: 302px;
  height: 100%;
  min-height: 320px;
  max-height: 320px;
}

.form-btn {
  justify-content: space-between;
  margin-top: 5px;
  display: flex;
}

.version-head {
  border-bottom: 1px solid #0000001a;
  padding-top: 20px;
  padding-bottom: 20px;
}

.version-info {
  padding-top: 20px;
  padding-bottom: 20px;
}

.info-policy {
  grid-row-gap: 50px;
  flex-direction: column;
  display: flex;
}

.que-block {
  grid-column-gap: 10px;
  color: var(--bg-dark);
  white-space: pre-wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: 0;
  padding: 0;
  display: flex;
}

.ans-block {
  background-color: #0000;
  display: block;
  position: relative;
  overflow: hidden;
}

.faq-ans {
  padding-top: 16px;
}

.bottom-border {
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto 0% -20px;
}

.faq-block {
  grid-row-gap: 60px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.rich-wrapper {
  grid-row-gap: 25px;
  flex-direction: column;
  width: 100%;
  max-width: 900px;
  display: flex;
}

.license-wrap {
  grid-column-gap: 5px;
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.default-img {
  display: block;
}

.download-template {
  z-index: 999;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: #fff;
  border: 1px solid #0000001a;
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  padding: 6px;
  display: flex;
  position: fixed;
  bottom: 12px;
  right: 12px;
  box-shadow: 0 1px 6px #00000026;
}

.body {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}

.heading {
  background-color: #12135e00;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}

.text-block {
  color: var(--body);
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
}

.image {
  margin-right: 10px;
  padding-right: 0;
}

.paragraph, .heading-2 {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}

.collection-list-wrapper {
  font-family: Inter, sans-serif;
}

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

  h2 {
    font-size: 34px;
  }

  .menu-button {
    padding: 8px;
  }

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

  .navbar-wrapper {
    position: static;
  }

  .nav-bottom-line {
    background-color: #000;
    width: 28px;
    height: 2px;
    margin-top: 8px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .nav-link {
    color: var(--black);
    text-align: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 20px;
  }

  .nav-link.w--current {
    border-bottom-style: none;
    font-weight: 500;
    text-decoration: underline;
  }

  .nav-menu {
    border-bottom: 1px solid var(--black);
    background-color: #fff;
    margin-top: 1px;
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .nav-middle-line {
    background-color: #000;
    width: 28px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .nav-top-line {
    background-color: #000;
    width: 28px;
    height: 2px;
    margin-bottom: 8px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .nav-right {
    justify-content: center;
    padding-top: 20px;
  }

  .nav-inner {
    flex-direction: column;
    padding-left: 0;
  }

  .brand {
    position: relative;
  }

  .nav-line {
    display: none;
  }

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

  .footer-right {
    grid-column-gap: 80px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .page-wrap {
    padding-bottom: var(--tablet-space);
  }

  .style-guide-section {
    padding-bottom: 60px;
  }

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

  .contact-info {
    max-width: 160px;
  }

  .policy {
    grid-column-gap: 15px;
  }

  .utility-page-form {
    padding: 40px;
  }

  .password-submit {
    transition: color .3s, background-color .3s;
  }

  .coming-wrapper {
    grid-row-gap: 80px;
  }

  .coming-heading {
    grid-row-gap: 10px;
  }

  .coming-soon {
    font-size: 60px;
  }

  .info-wrap {
    grid-row-gap: 50px;
  }

  .hero-section {
    padding-top: 100px;
  }

  .hero-wrap {
    grid-row-gap: 100px;
  }

  .section {
    padding-top: var(--tablet-space);
    padding-bottom: var(--tablet-space);
  }

  .about-main-image {
    min-height: 600px;
    max-height: 600px;
  }

  .about-inner-image {
    max-width: 250px;
    min-height: 150px;
    max-height: 150px;
    right: -11%;
  }

  .about-main-img {
    min-height: 600px;
    max-height: 600px;
  }

  .about-inner-img {
    min-height: 140px;
    max-height: 140px;
  }

  .projects-data {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .project-image, .project-img {
    min-height: 350px;
    max-height: 350px;
  }

  .section-inner {
    grid-row-gap: var(--tablet-space);
  }

  .project-subtext {
    padding: 10px;
  }

  .values-wrap {
    grid-row-gap: 80px;
  }

  .values-facts {
    grid-column-gap: 0px;
    grid-row-gap: 100px;
    flex-wrap: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .facts-block {
    flex: 0 50%;
    max-width: 50%;
  }

  .facts-img {
    width: auto;
    font-size: 100px;
  }

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

  .link-block {
    grid-row-gap: 60px;
    padding: 20px;
  }

  .service-bottom {
    grid-row-gap: 30px;
  }

  .service-thumb-img, .service-thumb {
    width: 80px;
    height: 80px;
  }

  .anchor-image {
    width: 82px;
    transform: translate(20px);
  }

  .discuss-img {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 20px;
  }

  .discuss-content {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 40px;
  }

  .faq-wrap {
    grid-column-gap: 30px;
  }

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

  .member-block {
    max-width: none;
  }

  .member-img {
    max-width: 100%;
    min-height: 380px;
    max-height: 380px;
  }

  .members-image {
    min-height: 380px;
    max-height: 380px;
  }

  .review-cards {
    grid-column-gap: 30px;
  }

  .review-card {
    margin-right: 30px;
  }

  .news-list {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .news-img, .blog-thumb {
    min-height: 250px;
    max-height: 250px;
  }

  .faq-img {
    min-height: 500px;
    max-height: 500px;
  }

  .faq-content {
    grid-row-gap: 30px;
  }

  .faq-image {
    min-height: 500px;
    max-height: 500px;
  }

  .faq-inner {
    grid-row-gap: 20px;
    margin-bottom: 30px;
  }

  .question-block {
    padding-top: 20px;
  }

  .service-section {
    padding-bottom: var(--tablet-space);
  }

  .blog-feature {
    grid-column-gap: 40px;
  }

  .blog-img {
    min-height: 350px;
    max-height: 350px;
  }

  .blog-content {
    max-width: 469px;
  }

  .blog-thumb-img {
    min-height: 350px;
    max-height: 350px;
  }

  .about-big-image {
    max-width: 500px;
    min-height: 400px;
    max-height: 400px;
  }

  .about-big-img {
    object-position: 0% 50%;
    min-height: 400px;
    max-height: 400px;
  }

  .story-img-block {
    grid-column-gap: 20px;
  }

  .about-small-image {
    max-width: 40%;
    min-height: 400px;
    max-height: 400px;
  }

  .about-small-img {
    min-height: 400px;
    max-height: 400px;
  }

  .project-info {
    grid-column-gap: 60px;
  }

  .why-choose {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .project-inner {
    max-width: 542px;
  }

  .project-img-block, .project-images {
    min-height: 580px;
    max-height: 580px;
  }

  .choose-image {
    max-width: 100%;
    min-height: 350px;
    max-height: 350px;
  }

  .choose-img {
    min-height: 350px;
    max-height: 350px;
  }

  .tabs-menu {
    grid-column-gap: 30px;
  }

  .choose-content {
    max-width: none;
  }

  .service-content {
    max-width: 350px;
  }

  .story-wrap {
    grid-column-gap: 40px;
  }

  .story-image, .story-img {
    min-height: 400px;
    max-height: 400px;
  }

  .contact {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
  }

  .contect-form, .contect-info {
    max-width: 100%;
  }

  .contect-bottom {
    grid-column-gap: 20px;
  }

  .contect-image, .contect-img {
    min-height: 280px;
    max-height: 280px;
  }

  .blog-name {
    font-size: 32px;
  }

  .blog-main-img, .blog-main {
    min-height: 500px;
    max-height: 500px;
  }

  .rich-section {
    padding-bottom: var(--tablet-space);
  }

  .detail-wrap {
    grid-column-gap: 35px;
  }

  .sevice-main-image, .service-main-img {
    min-height: 400px;
    max-height: 400px;
  }

  .gallery-list {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .gallery-lightbox, .gallery-image {
    min-height: 200px;
    max-height: 200px;
  }

  .title-content {
    grid-column-gap: 40px;
  }

  .project-main-image, .project-main-img {
    min-height: 500px;
    max-height: 500px;
  }

  .team-main {
    min-height: 380px;
    max-height: 380px;
  }

  .team-img {
    max-width: 100%;
    min-height: 380px;
    max-height: 380px;
  }

  .info-policy {
    grid-row-gap: 40px;
  }

  .faq-block {
    grid-row-gap: 50px;
  }
}

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

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  .brand, .brand.w--current {
    padding-left: 0;
  }

  .footer {
    padding-top: 40px;
  }

  .footer-block {
    grid-row-gap: 40px;
  }

  .cta-wrap {
    grid-row-gap: 30px;
    flex-direction: column-reverse;
    padding-bottom: 40px;
  }

  .cta-content {
    grid-row-gap: 30px;
    max-width: 100%;
  }

  .cta-img {
    max-width: none;
    min-height: 250px;
    max-height: 250px;
  }

  .cta-image {
    min-height: 250px;
    max-height: 250px;
  }

  .footer-top {
    grid-row-gap: 30px;
    flex-direction: column;
    padding-bottom: 40px;
  }

  .footer-bottom {
    grid-row-gap: 15px;
    flex-direction: column;
    padding-top: 15px;
  }

  .footer-left {
    grid-row-gap: 30px;
    flex-direction: row;
  }

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

  .style-guide-head {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .page-wrap {
    padding-bottom: var(--landscape-mobile-space);
  }

  .rich-text {
    grid-row-gap: 10px;
  }

  .button-outer, .titles-block, .details-block {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .color-block {
    grid-template-columns: 1fr 1fr;
    padding-top: 10px;
    padding-bottom: 10px;
  }

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

  .utility-page-content {
    align-items: center;
  }

  .utility-page-form {
    width: 100%;
    max-width: 90%;
    padding: 30px;
  }

  .pas-field {
    margin-top: 60px;
  }

  .coming-wrapper {
    grid-row-gap: 60px;
  }

  .coming-soon {
    font-size: 50px;
  }

  .info-wrap {
    grid-row-gap: 40px;
  }

  .utility-content {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .disclaimer-block {
    padding: 19px;
  }

  .hero-section {
    padding-top: 80px;
  }

  .hero-wrap {
    grid-row-gap: 80px;
  }

  .section {
    padding-top: var(--landscape-mobile-space);
    padding-bottom: var(--landscape-mobile-space);
  }

  .about-wrap {
    grid-row-gap: 60px;
    flex-direction: column;
  }

  .about-content {
    max-width: none;
  }

  .about-main-image {
    max-width: 100%;
  }

  .about-inner-image {
    border-top-width: 5px;
    border-left-width: 5px;
    border-right-width: 5px;
    inset: auto -5px -5px auto;
  }

  .projects-data {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .project-image, .project-img {
    min-height: 400px;
    max-height: 400px;
  }

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

  .section-inner {
    grid-row-gap: var(--landscape-mobile-space);
  }

  .values-wrap {
    grid-row-gap: 60px;
  }

  .values-top {
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .values-facts {
    grid-template-columns: 1fr 1fr;
  }

  .values-data {
    max-width: none;
  }

  .values-text {
    grid-row-gap: 15px;
  }

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

  .link-block {
    grid-row-gap: 40px;
    padding: 20px;
  }

  .service-bottom {
    grid-row-gap: 20px;
  }

  .service-thumb-img, .service-thumb {
    width: 60px;
    height: 60px;
  }

  .anchor-image {
    width: 72px;
  }

  .discuss-section {
    padding-bottom: 40px;
  }

  .discuss-img {
    max-width: none;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    position: relative;
  }

  .discuss-content {
    max-width: none;
    padding-top: 30px;
    padding-bottom: 0;
    padding-left: 0;
  }

  .discuss-form {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .checkbox-field {
    align-self: flex-end;
  }

  .faq-wrap {
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .member-img, .members-image {
    min-height: 340px;
    max-height: 340px;
  }

  .review-cards {
    grid-column-gap: 20px;
  }

  .review-card {
    max-width: 360px;
    padding: 22px;
  }

  .review-img, .review-image {
    width: 40px;
    height: 40px;
  }

  .review-name {
    margin-top: 20px;
  }

  .news-list {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .faq-img {
    min-height: 600px;
    max-height: 600px;
  }

  .faq-content {
    grid-row-gap: 20px;
  }

  .faq-image {
    min-height: 600px;
    max-height: 600px;
  }

  .faq-inner {
    grid-row-gap: 15px;
    margin-bottom: 10px;
  }

  .question-block {
    padding-top: 15px;
  }

  .link-black {
    margin-top: 20px;
  }

  .service-section {
    padding-bottom: var(--landscape-mobile-space);
  }

  .blog-feature {
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .blog-content {
    grid-row-gap: 30px;
    max-width: 100%;
  }

  .about-big-image {
    min-height: 350px;
    max-height: 350px;
  }

  .about-big-img {
    object-position: 15% 50%;
    min-height: 350px;
    max-height: 350px;
  }

  .about-small-image, .about-small-img {
    min-height: 350px;
    max-height: 350px;
  }

  .story-text {
    max-width: none;
    margin-top: 20px;
  }

  .project-info {
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .why-choose {
    grid-row-gap: 30px;
  }

  .project-img-block, .project-images {
    min-height: 320px;
    max-height: 320px;
  }

  .inner-info {
    grid-row-gap: 20px;
  }

  .choose-image {
    max-width: 100%;
    min-height: 350px;
    max-height: 350px;
  }

  .choose-img {
    min-height: 350px;
    max-height: 350px;
  }

  .choose-content {
    grid-row-gap: 30px;
    max-width: 100%;
  }

  .services-wrap {
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .service-content {
    grid-row-gap: 20px;
    max-width: 100%;
  }

  .story-wrap {
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .story-info {
    justify-content: flex-start;
    max-width: 596px;
    min-height: auto;
    max-height: none;
  }

  .story-image, .story-img {
    min-height: 300px;
    max-height: 300px;
  }

  .blog-detail {
    grid-row-gap: 30px;
  }

  .blog-name {
    font-size: 28px;
  }

  .blog-main-img, .blog-main {
    min-height: 400px;
    max-height: 400px;
  }

  .rich-section {
    padding-bottom: var(--landscape-mobile-space);
  }

  .detail-wrap {
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .our-services {
    max-width: 100%;
  }

  .download-btn {
    background-position: 65%;
  }

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

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

  .title-wrap {
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .title-content {
    grid-column-gap: 60px;
  }

  .project-main-image, .project-main-img {
    min-height: 400px;
    max-height: 400px;
  }

  .team-wrap {
    flex-direction: column;
  }

  .team-main {
    min-height: 450px;
    max-height: 450px;
  }

  .team-img {
    max-width: 80%;
    min-height: 450px;
    max-height: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .form-btn {
    margin-top: 0;
  }

  .info-policy, .faq-block {
    grid-row-gap: 30px;
  }
}

@media screen and (max-width: 479px) {
  .container.overflow-hide {
    overflow: hidden;
  }

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

  .footer-right {
    grid-column-gap: 30px;
    grid-row-gap: 40px;
    flex-direction: column;
    display: flex;
  }

  .links-block {
    max-width: none;
  }

  .footer-info {
    grid-row-gap: 20px;
  }

  .page-wrap {
    padding-bottom: var(--portrait-mobile-space);
  }

  .rich-text h3 {
    margin-top: 30px;
  }

  .rich-text blockquote {
    padding: 20px;
  }

  .body-large {
    font-size: 16px;
  }

  .color-detail {
    grid-column-gap: 5px;
  }

  .style-guide-section {
    padding-bottom: 40px;
  }

  .btn-block {
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .footer-links {
    grid-column-gap: 16px;
    grid-row-gap: 4px;
    grid-template-rows: auto auto;
    grid-template-columns: auto auto;
    grid-auto-columns: 1fr;
  }

  .contact-info {
    max-width: none;
  }

  .bottom-left {
    grid-column-gap: 5px;
    flex-direction: column;
    align-items: center;
  }

  .policy {
    grid-row-gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .coming-soon {
    font-size: 40px;
  }

  .info-wrap {
    grid-row-gap: 30px;
  }

  .hero-section {
    background-image: linear-gradient(#000000b3, #000000b3), url('../images/hero-main.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .hero-wrap {
    grid-row-gap: 60px;
  }

  .section {
    padding-top: var(--portrait-mobile-space);
    padding-bottom: var(--portrait-mobile-space);
  }

  .about-wrap {
    grid-row-gap: 40px;
  }

  .about-main-image, .about-main-img {
    min-height: 400px;
    max-height: 400px;
  }

  .about-bottom {
    margin-top: 28px;
  }

  .project-image, .project-img {
    min-height: 300px;
    max-height: 300px;
  }

  .section-inner {
    grid-row-gap: var(--portrait-mobile-space);
  }

  .project-data {
    bottom: 15px;
    left: 15px;
    right: 15px;
  }

  .project-content {
    padding-left: 6px;
    padding-right: 6px;
  }

  .values-facts {
    grid-row-gap: 40px;
    flex-direction: column;
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-bottom: 0;
  }

  .facts-block {
    grid-column-gap: 10px;
    justify-content: space-between;
    width: 100%;
    max-width: none;
  }

  .facts-img {
    color: var(--white);
    -webkit-text-stroke-width: 0px;
    font-size: 20px;
    line-height: 100%;
    position: static;
  }

  .facts-text {
    position: relative;
  }

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

  .link-block {
    grid-row-gap: 30px;
  }

  .service-thumb-img, .service-thumb {
    width: 50px;
    height: 50px;
  }

  .anchor-image {
    width: 63px;
  }

  .discuss-form {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .submit-btn-wrap {
    justify-content: flex-start;
  }

  .checkbox-field {
    align-self: auto;
  }

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

  .review-cards {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .review-card {
    max-width: 300px;
    margin-right: 20px;
    padding: 16px;
  }

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

  .faq-img, .faq-image {
    min-height: 350px;
    max-height: 350px;
  }

  .pagination {
    margin-top: 30px;
  }

  .service-section, .featured-section {
    padding-bottom: var(--portrait-mobile-space);
  }

  .blog-feature {
    grid-row-gap: 20px;
  }

  .blog-img {
    min-height: 250px;
    max-height: 250px;
  }

  .blog-content {
    grid-row-gap: 30px;
  }

  .blog-thumb-img, .about-big-image, .about-big-img {
    min-height: 250px;
    max-height: 250px;
  }

  .story-img-block {
    grid-row-gap: 10px;
    flex-direction: column;
  }

  .about-small-image {
    max-width: none;
    min-height: 250px;
    max-height: 250px;
  }

  .about-small-img {
    object-position: 50% 0%;
    min-height: 250px;
    max-height: 250px;
  }

  .tab-link {
    flex: none;
    display: block;
  }

  .tabs-menu {
    grid-column-gap: 20px;
    margin-right: -20px;
    padding-bottom: 1px;
    padding-right: 20px;
    overflow: auto;
  }

  .services-wrap {
    grid-row-gap: 20px;
  }

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

  .story-wrap, .story-info {
    grid-row-gap: 20px;
  }

  .story-bottom {
    grid-row-gap: 10px;
  }

  .submit-btn {
    justify-content: flex-start;
  }

  .blog-name {
    font-size: 22px;
  }

  .blog-main-img, .blog-main {
    min-height: 300px;
    max-height: 300px;
  }

  .rich-section {
    padding-bottom: var(--portrait-mobile-space);
  }

  .sevice-main-image, .service-main-img {
    min-height: 300px;
    max-height: 300px;
  }

  .our-services {
    grid-row-gap: 15px;
  }

  .download-btn {
    background-position: 75%;
    margin-top: 10px;
  }

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

  .gallery-lightbox, .gallery-image {
    min-height: 116px;
    max-height: 116px;
  }

  .title-content {
    grid-row-gap: 20px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: auto auto;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
  }

  .project-main-image, .project-main-img {
    min-height: 300px;
    max-height: 300px;
  }

  .team-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .team-main {
    min-height: 300px;
    max-height: 300px;
  }

  .team-img {
    max-width: none;
    min-height: 300px;
    max-height: 300px;
  }

  .form-btn {
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

#w-node-_2f5e2f5e-6fd7-c738-e1b0-ffb4f3bad1ee-028b0c04 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b8439a21-87bc-a932-36ae-042fafa52512-afa524f6, #w-node-dc290c1a-1ad5-a61f-5b18-a8ab57304d54-afa524f6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_640346c2-638c-25e9-c706-459469fc9ca8-028b0c06, #w-node-_640346c2-638c-25e9-c706-459469fc9cb1-028b0c06, #w-node-a7a474bc-6951-1d4b-ec8e-6a541ee3e51a-028b0c06, #w-node-_398e41ca-dfd5-45c4-066e-8ba61d3c571c-028b0c06, #w-node-bba866cc-7f04-f73d-ec85-0bd45fe333ad-028b0c06, #w-node-_74fc0764-eb04-282e-141b-f451d1192316-028b0c0f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_69d09c0e-3ee4-bdf8-7ed0-1a9e990235e8-028b0c18 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 479px) {
  #w-node-b8439a21-87bc-a932-36ae-042fafa52502-afa524f6, #w-node-b8439a21-87bc-a932-36ae-042fafa52506-afa524f6, #w-node-b8439a21-87bc-a932-36ae-042fafa5250a-afa524f6, #w-node-b8439a21-87bc-a932-36ae-042fafa5250e-afa524f6, #w-node-b8439a21-87bc-a932-36ae-042fafa52512-afa524f6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-dc290c1a-1ad5-a61f-5b18-a8ab57304d54-afa524f6 {
    justify-self: start;
  }

  #w-node-_69d09c0e-3ee4-bdf8-7ed0-1a9e990235e8-028b0c18 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


