:root {
  --body: #333;
  --black: black;
  --bg: #d9e3db;
  --white: white;
  --primary: #0a0045;
  --secondary: #f4e486;
}

.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-previous, .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;
}

@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: 170%;
}

h1 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 120%;
}

h2 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 140%;
}

h3 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 150%;
}

h4 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 170%;
}

h5, h6 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 170%;
}

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

a:hover, a:focus {
  text-decoration: none;
}

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

li {
  padding-bottom: 15px;
}

blockquote {
  background-color: var(--bg);
  color: var(--black);
  text-align: center;
  border-left: 0 rgba(0, 0, 0, 0);
  margin-top: 40px;
  margin-bottom: 50px;
  padding: 44px 35px;
  font-size: 18px;
  line-height: 170%;
}

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

.container.wide {
  z-index: 10;
  max-width: 1500px;
  padding-left: 0;
  position: relative;
}

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

.nav-menu-two {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link {
  color: var(--black);
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 20px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
  transition: color .3s;
}

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

.nav-link:focus-visible {
  outline-color: var(--black);
  outline-offset: 0px;
  color: var(--body);
  border-radius: 4px;
  outline-width: 1px;
  outline-style: dotted;
}

.nav-link[data-wf-focus-visible] {
  outline-color: var(--black);
  outline-offset: 0px;
  color: var(--body);
  border-radius: 4px;
  outline-width: 1px;
  outline-style: dotted;
}

.nav-link.w--current {
  font-weight: 700;
}

.button-primary {
  grid-column-gap: 12px;
  border: 1px solid var(--black);
  color: var(--black);
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 48px;
  padding: 12px 34px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 170%;
  text-decoration: none;
  transition: background-color .3s, color .3s, border-color .3s;
  display: inline-block;
}

.button-primary:hover {
  background-color: var(--black);
  color: #fff;
}

.button-primary:active {
  background-color: var(--black);
}

.button-primary.arrow-button {
  background-image: url('../images/ic-arrow.svg');
  background-position: 85%;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  align-items: center;
  padding-right: 60px;
}

.button-primary.arrow-button:hover {
  background-image: url('../images/form-arrow.svg');
  background-position: 85%;
  background-repeat: no-repeat;
  background-size: 22px 22px;
}

.button-primary.arrow-button.white-button {
  border-color: var(--white);
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/form-arrow.svg');
  background-position: 85%;
  background-repeat: no-repeat;
  background-size: 22px 22px;
}

.button-primary.arrow-button.white-button:hover {
  background-color: var(--white);
  color: var(--black);
  background-image: url('../images/ic-arrow.svg');
  background-position: 85%;
  background-repeat: no-repeat;
  background-size: 22px 22px;
}

.button-primary.arrow-button.full-size-button {
  width: 100%;
  margin-top: 30px;
  font-family: Montserrat, sans-serif;
}

.button-primary.full-size {
  grid-column-gap: 0px;
  font-family: Montserrat, sans-serif;
  display: inline-block;
}

.button-primary.button-back-arrow {
  background-image: url('../images/ic-back-arrow.svg');
  background-position: 15%;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  padding-left: 60px;
}

.button-primary.button-back-arrow:hover {
  background-image: url('../images/ic-back-arrow-hover.svg');
  background-position: 15%;
  background-repeat: no-repeat;
  background-size: 22px 22px;
}

.button-primary.newsletter-btn {
  width: 100%;
}

.navbar {
  border-bottom: 1px solid var(--black);
  background-color: var(--white);
  padding-top: 15px;
  padding-bottom: 15px;
}

.contact-button {
  margin-left: 35px;
  padding-bottom: 0;
}

.nav-link-wrap {
  padding-bottom: 0;
}

.hero-wrap {
  z-index: 10;
  min-height: 800px;
  background-color: var(--bg);
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.hero-buttons {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  align-items: center;
  margin-top: 60px;
  display: flex;
}

.button-secondary {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  border-radius: 48px;
  padding: 12px 34px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .3s, color .3s, border-color .3s;
  display: inline-block;
}

.button-secondary:hover, .button-secondary:focus {
  color: var(--primary);
  background-color: rgba(0, 0, 0, 0);
}

.button-secondary.arrow-button {
  background-image: url('../images/form-arrow.svg');
  background-position: 85%;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  padding-right: 60px;
}

.button-link {
  color: var(--primary);
  background-image: url('../images/link-arrow.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  padding-right: 30px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.button-link:hover {
  background-image: url('../images/link-arrow-hover.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

.button-link.learn-more {
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.button-link.blog-link {
  margin-top: 30px;
  display: inline-block;
}

.hero-data {
  width: 100%;
  max-width: 50%;
  padding: 60px 30px;
}

.hero-image-wrap {
  z-index: 0;
  width: 35%;
  height: 100%;
  max-width: 45%;
  min-width: 20%;
  background-color: var(--primary);
  background-image: url('../images/geometric-facades-residential-building-1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
}

.yellow-square {
  width: 100px;
  height: 100px;
  background-color: #f4e486;
  position: absolute;
  bottom: 0;
  right: 0;
}

.sub-heading-text {
  color: var(--body);
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

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

.hero-title {
  color: var(--primary);
  margin-bottom: 12px;
  font-family: Helveticaneue, sans-serif;
  font-size: 80px;
  line-height: 106%;
}

.hero-text {
  width: 100%;
  max-width: 72%;
  color: var(--primary);
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 28px;
}

.about-wrap {
  grid-column-gap: 84px;
  justify-content: space-between;
  display: flex;
}

.about-column {
  width: 33%;
}

.about-text {
  color: var(--body);
  margin-top: 10px;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 150%;
}

.sub-heading {
  color: var(--white);
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.sub-heading.black {
  color: var(--body);
  margin-bottom: 0;
}

.sub-title-square {
  width: 20px;
  height: 20px;
  background-color: var(--secondary);
  margin-right: 10px;
}

.color-main {
  width: 120px;
  height: 120px;
  border: 4px solid #fff;
  border-radius: 50%;
}

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

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

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

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

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

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

.heading-text {
  color: #000;
  font-family: Helveticaneue, sans-serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 100%;
}

.text-font {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}

.style-guide-title {
  padding-top: 0;
  padding-bottom: 150px;
}

.font-title {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}

.main-heading-alphabet {
  margin-bottom: 5px;
}

.button-wrap {
  grid-column-gap: 20px;
  margin-top: 40px;
  display: flex;
}

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

.style-guide-section {
  padding-top: 0;
  padding-bottom: 150px;
}

.main-heading-numbers {
  margin-bottom: 0;
}

.body-text {
  color: var(--body);
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
}

.style-guide-inner.grid {
  grid-column-gap: 20px;
  display: flex;
}

.hading-item-block {
  grid-column-gap: 180px;
  grid-row-gap: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  grid-template-rows: auto;
  grid-template-columns: 1fr 100px 100px;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 25px;
  display: grid;
}

.color-name {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 150%;
}

.primary-font {
  color: #000;
  font-size: 120px;
  font-weight: 100;
  line-height: 100%;
}

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

.body-small.uppercase {
  color: var(--body);
  font-family: Montserrat, sans-serif;
  line-height: 170%;
}

.font-inner {
  grid-column-gap: 358px;
  display: flex;
}

.color-wrap {
  grid-column-gap: 20px;
  margin-top: 40px;
  display: flex;
}

.font-section {
  padding-top: 0;
  padding-bottom: 150px;
}

.color-block {
  width: 100%;
  max-width: 120px;
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.color-block.left-move {
  margin-left: -40px;
}

.heading-block {
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.hading-inner-block {
  grid-column-gap: 180px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 100px 100px;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.font-block {
  width: 300px;
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.heading-white {
  color: var(--white);
  margin-bottom: 0;
  font-family: Helveticaneue, sans-serif;
}

.project-list {
  grid-column-gap: 60px;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 60px;
  display: flex;
}

.project-list.similar-list {
  margin-bottom: 0;
}

.project-link {
  height: 100%;
  border: 3px solid rgba(255, 255, 252, .41);
  border-radius: 6px;
  padding: 40px 30px;
  text-decoration: none;
  display: block;
}

.project-image-box {
  background-color: var(--bg);
  margin-bottom: 15px;
  position: relative;
  overflow: visible;
}

.project-info {
  width: 100%;
  grid-column-gap: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.project-order {
  grid-column-gap: 4px;
  color: var(--white);
  font-size: 22px;
  display: flex;
}

.vision-left {
  width: 100%;
  max-width: 50%;
}

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

.vision-right {
  width: 100%;
  max-width: 50%;
}

.vision-list-wrap {
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 0;
}

.about-section {
  padding-top: 150px;
  padding-bottom: 150px;
}

.project-section {
  background-color: var(--primary);
  padding-top: 120px;
  padding-bottom: 120px;
}

.vision-section {
  padding-top: 150px;
  padding-bottom: 150px;
}

.single-text {
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
}

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

.utility-page-content {
  width: 100%;
  max-width: 500px;
  background-color: var(--white);
  text-align: center;
  flex-direction: column;
  margin-bottom: 0;
  padding: 60px 50px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

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

.project-box-title {
  color: var(--white);
  margin-bottom: 0;
  font-family: Helveticaneue, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.project-items {
  width: 100%;
  max-width: 33.33%;
}

.empty-state {
  background-color: var(--bg);
  color: var(--primary);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
  font-size: 16px;
  line-height: 150%;
}

.section-title {
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Helveticaneue, sans-serif;
  font-size: 50px;
  line-height: 140%;
}

.section-title-wrap {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.checklist-item {
  background-image: url('../images/checklist-tick.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 26px 26px;
  margin-bottom: 20px;
  padding-bottom: 0;
  padding-left: 35px;
  font-family: Montserrat, sans-serif;
}

.checklist-item.last-checklist {
  margin-bottom: 0;
}

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

.stats-section {
  background-color: var(--bg);
  padding-top: 120px;
  padding-bottom: 120px;
}

.stats-section.hide {
  display: none;
}

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

.stats-left, .stats-right {
  width: 100%;
  max-width: 50%;
}

.stats-count {
  color: var(--black);
  padding-bottom: 5px;
  font-family: Manrope, sans-serif;
  font-size: 40px;
  line-height: 150%;
}

.stats-text {
  font-size: 18px;
  line-height: 150%;
}

.stats-number-wrap {
  grid-column-gap: 50px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.stats-border {
  border-bottom: 1px solid #000;
  margin-top: 50px;
  margin-bottom: 50px;
}

.stats-number-box {
  width: 100%;
  max-width: 100%;
}

.service-section {
  padding-top: 150px;
  padding-bottom: 150px;
}

.service-section.hide {
  display: none;
}

.right-button-wrap {
  justify-content: flex-end;
  padding-top: 70px;
  display: flex;
}

.button-text {
  font-family: Montserrat, sans-serif;
}

.service-link {
  width: 100%;
  color: var(--body);
  text-decoration: none;
}

.service-items {
  width: 100%;
}

.service-list {
  grid-column-gap: 60px;
  grid-row-gap: 0px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  margin-top: 40px;
  margin-bottom: 60px;
  display: grid;
}

.service-image-box {
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
}

.service-info {
  margin-top: 15px;
}

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

.service-title {
  margin-bottom: 0;
}

.service-order {
  font-size: 14px;
  font-weight: 500;
}

.cta-section {
  padding-bottom: 150px;
}

.blue-cta-wrap {
  background-color: var(--primary);
  justify-content: space-between;
  align-items: center;
  padding: 100px;
  display: flex;
  position: relative;
}

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

.cta-title {
  width: 100%;
  max-width: 65%;
  color: var(--white);
  margin-bottom: 0;
  font-family: Helveticaneue, sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 140%;
}

.cta-link {
  color: var(--white);
  background-image: url('../images/ic-white-link.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  padding-right: 35px;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
}

.cta-link:hover {
  background-image: url('../images/ic-white-link-hover.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 22px 22px;
}

.green-square {
  width: 100px;
  height: 100px;
  background-color: var(--secondary);
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.team-section {
  background-color: var(--bg);
  margin-bottom: 150px;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.team-section.hide {
  display: none;
}

.right-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-right: 0;
  transition: opacity .3s;
  display: flex;
  top: -104px;
  right: 0;
}

.right-arrow:hover {
  opacity: .5;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-right-width: 1px;
}

.right-arrow.right-review-arrow {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}

.left-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-right: 0;
  transition: opacity .3s;
  display: flex;
  top: -104px;
  right: 50px;
}

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

.left-arrow.left-review-arrow {
  top: auto;
  bottom: 0;
  left: auto;
  right: 50px;
}

.person-image {
  width: 100%;
  max-height: 352px;
  max-width: 100%;
  min-height: 352px;
  object-fit: cover;
  object-position: top;
  overflow: hidden;
}

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

.team-wrap {
  width: 100%;
  height: auto;
  display: flex;
  gap: 2rem;
}

.member-details {
  grid-row-gap: 7px;
  background-color: var(--white);
  text-align: center;
  flex-direction: column;
  padding: 20px 24px;
}

.d-none {
  display: none;
}

.team-slider {
  height: auto;
  text-align: left;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.team-name {
  margin-bottom: 4px;
}

.member-box {
  width: 100%;
}

.slider-arrow {
  width: 14px;
  height: 14px;
}

.blog-section {
  background-color: var(--bg);
  margin-bottom: 150px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.blog-list {
  grid-column-gap: 50px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  margin-bottom: 60px;
  display: grid;
}

.latest-blog-wrap {
  align-items: center;
  display: flex;
}

.lb-thumb {
  width: 100%;
  max-width: 287px;
  min-width: 287px;
  background-color: var(--bg);
  overflow: hidden;
}

.lb-text {
  padding-left: 30px;
}

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

.blog-link {
  text-decoration: none;
}

.blog-date {
  font-size: 14px;
}

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

.blog-short-info {
  max-height: 3.4em;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  overflow: hidden;
}

.review-section {
  background-color: var(--bg);
  margin-bottom: 150px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.review-slider {
  height: auto;
  background-color: rgba(0, 0, 0, 0);
}

.review-box {
  grid-column-gap: 50px;
  align-items: flex-start;
  display: flex;
}

.review-img-box {
  background-color: #ced9d0;
}

.review-img {
  width: 100%;
  max-height: 540px;
  max-width: 460%;
  min-height: 540px;
  min-width: 460px;
  object-fit: cover;
}

.review-quote {
  text-align: left;
  background-image: url('../images/ic-quote.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  margin-bottom: 20px;
  margin-left: 0;
  padding: 35px 0 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 170%;
}

.faq-section {
  margin-bottom: 150px;
}

.arrow-icon {
  width: 30px;
  height: 30px;
  border: 1px solid #000;
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.faq-wrapper-block {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.faq-dropdown {
  border-bottom: 1px solid #e6e6e6;
  transition: border .3s;
  display: block;
}

.faq-dropdown:focus {
  border-color: rgba(0, 0, 0, .2);
}

.faq-title {
  color: var(--black);
  white-space: pre-line;
  font-family: Manrope, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.faq-answer-block {
  padding: 25px;
}

.faq-answer-block.w--open {
  background-color: rgba(0, 0, 0, 0);
  padding-top: 5px;
  padding-left: 0;
  padding-right: 0;
  position: static;
}

.faq-d-button {
  color: #000;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 170%;
  display: flex;
}

.faq-d-button.top {
  padding-top: 20px;
  padding-bottom: 20px;
}

.faq-data {
  width: 100%;
  max-width: 75%;
  margin-bottom: 0;
}

.contact-cta-section {
  background-color: var(--bg);
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.footer-section {
  background-color: var(--primary);
  color: var(--white);
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-top-wrap {
  grid-column-gap: 17px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 2fr .75fr .75fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: 50px;
  padding-bottom: 50px;
  display: grid;
}

.footer-bottom-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.green-cta-title {
  margin-bottom: 15px;
  font-size: 42px;
  font-weight: 700;
  line-height: 170%;
}

.green-cta-text {
  width: 100%;
  max-width: 40%;
  margin: 0 auto 50px;
  font-size: 20px;
  line-height: 170%;
}

.footer-newsletter {
  width: 100%;
  max-width: 350px;
}

.footer-title {
  color: var(--white);
  margin-bottom: 20px;
  font-family: Helveticaneue, sans-serif;
}

.newsletter-field-wrap {
  grid-column-gap: 0px;
  align-items: center;
  display: flex;
  position: relative;
}

.newsletter-input {
  border-style: none none solid;
  border-width: 0 0 1px;
  border-color: black black var(--white);
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: 0;
  padding: 20px 25px 20px 0;
}

.newsletter-input:focus {
  border-bottom-color: var(--bg);
  background-color: rgba(0, 0, 0, 0);
}

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

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

.submit-button {
  width: 25px;
  height: 25px;
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/form-arrow.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  padding: 0;
  font-size: 0;
  position: absolute;
  right: 0;
}

.success-message {
  background-color: var(--bg);
  color: var(--primary);
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
}

.error-message {
  background-color: var(--secondary);
  color: var(--black);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
}

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

.links-wrap {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.link-item {
  padding-top: 0;
  padding-bottom: 0;
}

.footer-link {
  width: 100%;
  color: var(--white);
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Montserrat, sans-serif;
  text-decoration: underline;
  transition: color .3s;
  display: block;
}

.footer-link:hover {
  color: var(--bg);
}

.footer-address-text {
  font-family: Montserrat, sans-serif;
  font-size: 17px;
}

.footer-link-box {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.copyright-link {
  color: var(--white);
  text-decoration: none;
  transition: color .3s;
}

.copyright-link:hover {
  color: var(--bg);
}

.copyright-text {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 150%;
}

.about-hero-section {
  padding-bottom: 150px;
}

.page-hero-wrap {
  padding-top: 100px;
}

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

.who-we-are-img {
  width: 100%;
  max-width: 50%;
  background-color: var(--bg);
}

.who-we-are-text {
  width: 100%;
  max-width: 50%;
}

.about-hero-image {
  width: 700px;
  height: 500px;
  object-fit: cover;
}

.who-we-are-data {
  margin-top: 40px;
  margin-bottom: 100px;
}

.mission-section {
  background-color: var(--bg);
  padding-top: 120px;
  padding-bottom: 120px;
}

.mission-data-wrap {
  grid-column-gap: 50px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: start;
  padding-top: 40px;
  display: grid;
}

.innovation-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.innovation-section.green {
  object-position: 50% 50%;
  background-color: #d9e3db;
  padding-top: 80px;
  padding-bottom: 80px;
}

.work-process-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-top: 80px;
  margin-bottom: 40px;
  display: grid;
}

.work-process-wrap.no-padding-top {
  margin-top: 0;
  margin-bottom: 80px;
}

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

.innovation-checklist {
  margin-top: 30px;
  margin-bottom: 50px;
  padding-left: 0;
}

.innovation-left {
  width: 100%;
  max-width: 50%;
}

.innovation-right {
  width: 100%;
  max-width: 50%;
  background-color: var(--bg);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.innovation-img {
  width: 700px;
  height: 500px;
  object-fit: cover;
  object-position: 50% 24%;
}

.process-box {
  grid-column-gap: 30px;
  align-items: flex-start;
  display: flex;
}

.process-number-round {
  width: 45px;
  height: 45px;
  border: 1px solid #e6e6e6;
  border-radius: 45px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.process-title {
  color: #0a0045;
  margin-bottom: 15px;
  font-family: Helveticaneue, sans-serif;
  font-size: 23px;
  font-weight: 700;
}

.service-list-section {
  padding-bottom: 150px;
}

.service-list-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
}

.service-arrow {
  width: 38px;
  height: 38px;
  opacity: 0;
}

.service-list-link {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  text-decoration: none;
  display: flex;
}

.service-list-item {
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
}

.service-list-collection {
  width: 100%;
}

.service-list-number, .service-list-title {
  color: var(--black);
  font-size: 26px;
  line-height: 150%;
}

.service-list-text {
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
}

.service-lists {
  grid-column-gap: 100px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.awards-section {
  padding-bottom: 150px;
}

.awards-list-wrap {
  grid-column-gap: 70px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.awards-wrap {
  grid-column-gap: 100px;
  align-items: flex-start;
  display: flex;
}

.awards-lists {
  margin-bottom: 0;
  padding-left: 0;
}

.page-title {
  padding-bottom: 40px;
}

.projects-grid-wrap {
  padding-bottom: 150px;
}

.project-grid-box-wrap {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.project-grid-img-wrap {
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
}

.project-grid-img {
  width: 100%;
  max-height: 410px;
  object-fit: cover;
}

.project-grid-info {
  width: 100%;
  max-width: 35%;
  grid-column-gap: 0px;
  grid-row-gap: 2px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: end;
  align-items: center;
  justify-items: end;
  padding-left: 10px;
  line-height: 150%;
  display: grid;
}

.project-label-wrap {
  grid-column-gap: 4px;
  font-size: 14px;
  display: flex;
}

.project-grid-text {
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.project-grid-title {
  width: 100%;
  max-width: 65%;
  margin-bottom: 0;
}

.pagination {
  justify-content: flex-end;
  margin-top: 60px;
}

.project-grid-label {
  text-align: right;
}

.project-list-wrap {
  padding-bottom: 150px;
}

.project-list-link {
  grid-column-gap: 30px;
  border-bottom: 1px solid #d9d9d9;
  align-items: stretch;
  margin-bottom: 40px;
  padding-bottom: 40px;
  text-decoration: none;
  display: flex;
}

.project-list-img-wrap {
  width: 100%;
  max-width: 438px;
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
}

.project-list-img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

.project-list-right {
  width: 100%;
  max-width: 100%;
  position: relative;
}

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

.project-list-title {
  margin-bottom: 10px;
}

.project-title-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.related-project-section {
  background-color: var(--primary);
  margin-bottom: 150px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.project-hero-wrap {
  min-height: 580px;
  background-color: var(--bg);
}

.project-hero {
  width: 100%;
  object-fit: cover;
}

.project-overview {
  padding-top: 60px;
  padding-bottom: 150px;
}

.project-gallery {
  padding-bottom: 150px;
}

.overview-wrap {
  grid-column-gap: 80px;
  align-items: flex-start;
  display: flex;
}

.overview-left {
  width: 100%;
  max-width: 100%;
}

.overview-right {
  width: 100%;
  max-width: 360px;
  background-color: var(--secondary);
  padding: 30px;
}

.information-list {
  grid-column-gap: 15px;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: flex;
}

.information-list.last-info {
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-icon {
  width: 30px;
  height: 30px;
}

.p-info-label {
  color: var(--black);
}

.information-title {
  margin-bottom: 40px;
}

.gallery-plus {
  width: 54px;
  height: 54px;
  background-color: var(--white);
  opacity: 0;
  background-image: url('../images/gallery-plus.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.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);
  position: relative;
  overflow: hidden;
}

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

.hover-icon {
  z-index: 1;
  width: 54px;
  height: 54px;
  background-color: var(--white);
  background-image: url('../images/gallery-plus.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.our-service-section {
  padding-bottom: 150px;
}

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

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

.service-details-wrap {
  padding-top: 80px;
  padding-bottom: 150px;
}

.service-cta-wrap {
  padding-bottom: 150px;
}

.service-overview-wrap {
  grid-column-gap: 60px;
  display: flex;
}

.service-overview {
  width: 100%;
  max-width: 100%;
}

.service-newsletter {
  width: 100%;
  max-width: 360px;
}

.service-main-img {
  object-fit: cover;
  overflow: hidden;
}

.newsletter-box {
  background-color: var(--bg);
  padding: 40px;
  position: relative;
}

.newsletter-form {
  padding-top: 30px;
}

.service-newsletter-field {
  background-color: rgba(0, 0, 0, 0);
  border: 0 solid #000;
  border-bottom-width: 1px;
  margin-bottom: 20px;
  padding: 10px 0;
}

.service-newsletter-field:active {
  border-bottom-color: var(--black);
}

.service-newsletter-field::-ms-input-placeholder {
  color: var(--black);
}

.service-newsletter-field::placeholder {
  color: var(--black);
}

.newsletter-text {
  font-size: 14px;
  line-height: 150%;
}

.newsletter-success {
  background-color: var(--primary);
  color: var(--bg);
  padding: 15px;
  font-size: 14px;
  line-height: 150%;
}

.newsletter-error {
  background-color: var(--black);
  color: var(--bg);
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  font-size: 14px;
  line-height: 150%;
}

.corner {
  width: 32px;
  height: 32px;
  background-image: linear-gradient(45deg, #e5ebe6 50%, #fff 50%, #fff);
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.brochure-title {
  width: 100%;
  max-width: 80%;
  color: var(--white);
  font-weight: 400;
}

.news-box-wrap {
  padding-top: 60px;
  padding-bottom: 150px;
}

.featured-link {
  grid-column-gap: 50px;
  border: 1px solid #e6e6e6;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.featured-left {
  padding: 50px 60px;
}

.featured-right {
  width: 100%;
  max-width: 600px;
  background-color: var(--bg);
  overflow: hidden;
}

.featured-img {
  width: 100%;
  min-height: 450px;
  object-fit: cover;
}

.featured-date {
  background-color: var(--secondary);
  align-items: flex-start;
  padding: 8px 18px;
  font-size: 14px;
  line-height: 150%;
  display: inline-block;
}

.featured-title {
  margin-top: 14px;
  margin-bottom: 20px;
}

.featured-text {
  width: 100%;
  max-width: 85%;
  margin-bottom: 0;
  overflow: hidden;
}

.blog-thumb {
  min-height: 270px;
  background-color: var(--bg);
  overflow: hidden;
}

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

.blog-data {
  padding: 30px;
}

.blog-read-more {
  padding: 30px;
}

.blog-box-link {
  height: 100%;
  border: 1px solid #e6e6e6;
  text-decoration: none;
}

.blog-box-list {
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
}

.blog-box-collection {
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-box-date {
  background-color: var(--bg);
  padding: 6px 18px;
  font-size: 14px;
  line-height: 150%;
  display: inline-block;
}

.blog-box-title {
  margin-top: 15px;
  margin-bottom: 15px;
}

.blog-box-text {
  max-height: 3.4em;
  overflow: hidden;
}

.blog-main-img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  object-position: 50% 50%;
}

.blog-main-img-wrap {
  background-color: var(--bg);
  margin-bottom: 80px;
}

.blog-overview {
  padding-bottom: 150px;
}

.blog-details {
  width: 100%;
}

.contact-wrap {
  grid-column-gap: 80px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 150px;
  display: flex;
}

.contact-left {
  width: 100%;
  max-width: 700px;
}

.contact-right {
  width: 100%;
  max-width: 45%;
  background-color: var(--bg);
}

.contact-form {
  margin-top: 50px;
  margin-bottom: 100px;
}

.field {
  margin-bottom: 35px;
}

.field.last-field {
  margin-bottom: 0;
}

.input {
  border: 0 solid #000;
  border-bottom: 1px solid #d9d9d9;
  padding: 10px 0;
}

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

.input.password-input {
  height: auto;
  border-bottom-color: var(--black);
  margin-bottom: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}

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

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

.field-label {
  color: var(--black);
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.textarea {
  min-height: 100px;
  border: 1px solid #d9d9d9;
  margin-bottom: 0;
  padding: 10px 0;
}

.textarea:active {
  border-bottom-color: var(--black);
}

.contact-img {
  height: 100%;
  object-fit: fill;
}

.contact-list {
  grid-column-gap: 15px;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.contact-list-icon {
  width: 30px;
  height: 30px;
}

.contact-list-wrap {
  margin-bottom: 20px;
}

.contact-list-wrap.last-contact-field {
  margin-bottom: 0;
}

.privacy-policy-wrap, .license-section {
  padding-bottom: 150px;
}

.info-block {
  grid-column-gap: 100px;
  grid-row-gap: 70px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.link {
  color: #000;
}

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

.disclamer-block {
  grid-row-gap: 10px;
  background-color: var(--bg);
  flex-direction: column;
  margin-bottom: 60px;
  padding: 30px;
}

.info-content {
  margin-bottom: 30px;
  font-size: 14px;
}

.info-content.padding {
  margin-bottom: 30px;
}

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

.text-block, .licensing-title {
  margin-bottom: 0;
}

.license-field {
  color: var(--black);
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.changelog-wrap {
  margin-bottom: 300px;
}

.version-info {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 90px 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.version-block {
  width: 90px;
  height: 90px;
  border: 1px solid #000;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.version-name {
  color: #000;
  margin-bottom: 0;
  font-size: 26px;
  line-height: 150%;
}

.version-title {
  margin-bottom: 0;
}

.error-text {
  margin-bottom: 40px;
}

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

._404-image {
  margin-bottom: 40px;
}

._404-section {
  padding-top: 150px;
  padding-bottom: 150px;
}

.middle-data-wrap {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
}

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

.password-field {
  text-align: left;
  padding-top: 60px;
  padding-bottom: 30px;
}

.password-title {
  margin-bottom: 20px;
}

.password-text {
  font-size: 14px;
  line-height: 170%;
}

.image {
  width: 100px;
  height: 100px;
  margin-top: 22px;
  margin-bottom: 22px;
}

.serviceparagraph {
  color: var(--white);
  font-family: Montserrat, sans-serif;
}

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

.div-block {
  display: flex;
}

.heading {
  padding-left: 15px;
}

.image-2 {
  width: 100%;
  height: 143px;
  object-fit: contain;
}

.serviceblock {
  min-height: 400px;
  background-color: #0a0045;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 40px 60px;
  display: flex;
}

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

.serviceblock.yellow {
  background-color: #f4e486;
}

.serviceicon {
  height: 100%;
}

.div-block-3 {
  width: 30%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.servicetitle {
  color: var(--white);
  font-size: 37px;
  font-weight: 700;
}

.servicetitle.black {
  color: var(--black);
  font-family: Helveticaneue, sans-serif;
}

.servicelist {
  padding-bottom: 0;
}

.list {
  color: var(--black);
  font-family: Montserrat, sans-serif;
  line-height: 130%;
  list-style-type: decimal;
}

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

.white {
  color: var(--white);
  font-family: Helveticaneue, sans-serif;
}

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

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

.bold-text-2, .bold-text-3, .heading-2, .heading-3, .heading-4, .heading-5 {
  font-family: Helveticaneue, sans-serif;
}

.heading-6 {
  font-family: Helveticaneue, sans-serif;
  font-weight: 500;
}

.heading-7 {
  font-family: Helveticaneue, sans-serif;
}

.heading-8 {
  font-family: Helveticaneue, sans-serif;
  font-size: 45px;
}

.navtext {
  margin-bottom: 0;
  font-family: Helveticaneue, sans-serif;
  font-size: 35px;
}

.div-block-4 {
  justify-content: flex-start;
  display: flex;
}

.paragraph-2, .paragraph-3 {
  font-family: Montserrat, sans-serif;
}

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

.paragraph-4 {
  font-family: Montserrat, sans-serif;
}

.bold-text-4 {
  font-family: Helveticaneue, sans-serif;
}

.text-block-2, .text-block-3, .text-block-4 {
  font-family: Montserrat, sans-serif;
}

.image-3 {
  width: 20px;
  height: 20px;
}

.link-block {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  align-items: center;
  display: flex;
}

.icon-link {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.icon-link:hover {
  opacity: .7;
}

.social-icon {
  width: 20px;
}

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

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

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  .container {
    max-width: 100%;
  }

  .nav-menu-wrapper {
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-menu-two {
    background-color: #fff;
    flex-flow: column wrap;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 1px;
    padding: 20px 10px;
    display: flex;
    box-shadow: 0 8px 50px rgba(0, 0, 0, .05);
  }

  .nav-link {
    margin-left: 0;
    margin-right: 0;
    padding: 10px;
    display: block;
  }

  .nav-link.w--current {
    width: 100%;
  }

  .button-primary {
    padding: 10px 30px;
  }

  .button-primary.full-size {
    width: 100%;
    max-width: 100%;
    text-align: center;
    justify-content: center;
  }

  .menu-button {
    padding: 10px 0 10px 10px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
  }

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

  .contact-button {
    width: 100%;
    max-width: 100%;
    margin-top: 15px;
    margin-left: 0;
  }

  .nav-link-wrap {
    width: 100%;
    text-align: left;
  }

  .hero-wrap {
    min-height: auto;
    display: block;
  }

  .hero-buttons {
    margin-top: 40px;
  }

  .button-link.blog-link {
    margin-top: 20px;
    font-size: 14px;
    line-height: 150%;
  }

  .hero-data {
    max-width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-image-wrap {
    height: auto;
    max-width: 100%;
    min-height: 500px;
    min-width: 100%;
    position: static;
  }

  .yellow-square {
    width: 70px;
    height: 70px;
  }

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

  .hero-text {
    max-width: 100%;
  }

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

  .about-text {
    font-size: 20px;
  }

  .style-guide-title {
    padding-bottom: 80px;
  }

  .button-wrap {
    margin-top: 20px;
    display: flex;
  }

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

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

  .hading-item-block {
    grid-column-gap: 20px;
  }

  .font-inner {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

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

  .hading-inner-block {
    grid-column-gap: 20px;
  }

  .project-list {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 0;
    margin-bottom: 30px;
    display: grid;
  }

  .project-order {
    grid-column-gap: 2px;
  }

  .vision-left {
    max-width: 100%;
  }

  .vision-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    flex-direction: column-reverse;
  }

  .vision-right {
    max-width: 100%;
  }

  .about-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .project-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .vision-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .project-number {
    font-size: 18px;
  }

  .utility-page-content {
    padding: 40px 30px;
  }

  .project-thumb {
    max-height: 400px;
    min-height: 400px;
  }

  .project-box-title {
    font-size: 18px;
  }

  .project-items {
    max-width: 100%;
  }

  .section-title {
    font-size: 42px;
  }

  .checklist-item {
    background-size: 22px 22px;
    margin-bottom: 15px;
    padding-left: 30px;
  }

  .stats-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

  .stats-count {
    font-size: 32px;
  }

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

  .stats-border {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .service-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .service-items {
    max-width: 100%;
  }

  .service-list {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    margin-top: 0;
    margin-bottom: 30px;
    display: grid;
  }

  .service-collection {
    margin-bottom: 30px;
  }

  .service-info {
    margin-top: 10px;
  }

  .service-thumb {
    max-height: 400px;
    min-height: 400px;
  }

  .cta-section {
    padding-bottom: 100px;
  }

  .blue-cta-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 50px;
  }

  .blue-cta-wrap.brochure-wrap {
    align-items: center;
  }

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

  .cta-title {
    max-width: 100%;
    font-size: 40px;
  }

  .cta-link {
    font-size: 18px;
  }

  .green-square {
    width: 70px;
    height: 70px;
  }

  .team-section {
    margin-bottom: 100px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .right-arrow {
    top: -80px;
  }

  .left-arrow {
    top: -80px;
  }

  .member-details {
    font-size: 16px;
  }

  .team-slider {
    grid-row-gap: 30px;
    margin-top: 20px;
  }

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

  .blog-list {
    grid-column-gap: 0px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
    margin-top: 0;
    margin-bottom: 30px;
  }

  .latest-blog-wrap {
    flex-wrap: wrap;
  }

  .lb-thumb {
    max-width: 100%;
  }

  .lb-text {
    padding-top: 15px;
    padding-left: 0;
  }

  .lb-thumb-img {
    max-height: 100%;
    min-height: 0;
  }

  .latest-blog-title {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .review-section {
    margin-bottom: 100px;
    padding-top: 80px;
    padding-bottom: 100px;
  }

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

  .review-img {
    max-height: 300px;
    max-width: 250%;
    min-height: 300px;
    min-width: 250px;
  }

  .review-quote {
    background-size: 25px 25px;
    margin-bottom: 10px;
    padding-top: 30px;
    font-size: 18px;
  }

  .faq-section {
    margin-bottom: 100px;
  }

  .question {
    width: 100%;
    max-width: 100%;
  }

  .faq-wrapper-block {
    grid-column-gap: 0px;
    flex-wrap: wrap;
    display: flex;
  }

  .faq-data {
    max-width: 100%;
  }

  .footer-top-wrap {
    grid-column-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .green-cta-title {
    margin-bottom: 20px;
    font-size: 34px;
    line-height: 150%;
  }

  .green-cta-text {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .footer-title {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .success-message, .error-message {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 15px;
    font-size: 14px;
  }

  .footer-link, .footer-address-text {
    font-size: 14px;
    line-height: 150%;
  }

  .about-hero-section {
    padding-bottom: 100px;
  }

  .page-hero-wrap {
    padding-top: 80px;
  }

  .who-we-are-wrap {
    grid-column-gap: 30px;
    align-items: flex-start;
  }

  .who-we-are-data {
    margin-top: 20px;
    margin-bottom: 50px;
  }

  .mission-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .mission-data-wrap {
    grid-column-gap: 30px;
    padding-top: 20px;
  }

  .innovation-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .work-process-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
  }

  .innovation-wrap {
    grid-column-gap: 30px;
    align-items: flex-start;
  }

  .innovation-checklist {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .process-title {
    font-size: 18px;
  }

  .service-list-section {
    padding-bottom: 100px;
  }

  .service-arrow {
    width: 30px;
    height: 30px;
    opacity: 1;
  }

  .service-list-link {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .service-list-number, .service-list-title {
    font-size: 20px;
  }

  .service-lists {
    grid-column-gap: 30px;
  }

  .awards-section {
    padding-bottom: 100px;
  }

  .awards-list-wrap {
    width: 100%;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
  }

  .awards-wrap {
    grid-column-gap: 0px;
    flex-direction: column;
  }

  .awards-lists {
    padding-left: 35px;
  }

  .page-title {
    padding-bottom: 20px;
  }

  .projects-grid-wrap {
    padding-bottom: 100px;
  }

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

  .project-grid-info {
    max-width: 50%;
    grid-row-gap: 0px;
  }

  .project-label-wrap {
    grid-column-gap: 4px;
    text-align: right;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .project-grid-text {
    margin-top: 10px;
  }

  .project-grid-title {
    max-width: 50%;
    line-height: 150%;
  }

  .pagination {
    margin-top: 40px;
  }

  .project-list-wrap {
    padding-bottom: 100px;
  }

  .project-list-link {
    grid-column-gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .project-list-img-wrap {
    max-width: 40%;
  }

  .project-list-img {
    max-height: 300px;
  }

  .project-list-info {
    justify-items: start;
  }

  .project-list-title {
    font-size: 20px;
  }

  .related-project-section {
    margin-bottom: 100px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .project-hero-wrap {
    min-height: 0;
  }

  .project-overview {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .project-gallery {
    padding-bottom: 100px;
  }

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

  .overview-right {
    max-width: 280px;
    padding: 20px;
  }

  .information-list {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .information-title {
    margin-bottom: 30px;
    font-size: 20px;
  }

  .gallery-plus {
    width: 45px;
    height: 45px;
    background-size: 18px 18px;
  }

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

  .gallery-image {
    min-height: 0;
  }

  .our-service-section {
    padding-bottom: 100px;
  }

  .our-service-list {
    grid-column-gap: 40px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr 1fr;
  }

  .service-details-wrap {
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .service-cta-wrap {
    padding-bottom: 100px;
  }

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

  .service-newsletter {
    max-width: 280px;
  }

  .newsletter-box {
    padding: 25px;
  }

  .brochure-title {
    max-width: 100%;
    text-align: center;
  }

  .news-box-wrap {
    padding-top: 40px;
    padding-bottom: 100px;
  }

  .featured-link {
    grid-column-gap: 30px;
  }

  .featured-left {
    width: 100%;
    max-width: 50%;
    padding: 10px 20px;
  }

  .featured-right {
    width: 100%;
    max-width: 50%;
  }

  .featured-img {
    min-height: 400px;
  }

  .featured-date {
    padding: 6px 14px;
  }

  .featured-title {
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 26px;
  }

  .featured-text {
    max-width: 100%;
  }

  .blog-thumb {
    min-height: 0;
  }

  .blog-box-collection {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .blog-box-date {
    padding-left: 14px;
    padding-right: 14px;
  }

  .blog-main-img-wrap {
    margin-bottom: 60px;
  }

  .blog-overview {
    padding-bottom: 100px;
  }

  .contact-wrap {
    grid-column-gap: 40px;
    align-items: flex-start;
    padding-bottom: 100px;
  }

  .contact-left {
    max-width: 50%;
  }

  .contact-form {
    margin-top: 25px;
    margin-bottom: 50px;
  }

  .textarea {
    max-width: 100%;
  }

  .privacy-policy-wrap, .license-section {
    padding-bottom: 100px;
  }

  .info-block {
    flex-flow: column wrap;
  }

  .disclamer-block {
    margin-bottom: 40px;
  }

  .disclaimer-title {
    font-size: 18px;
  }

  .social-icon {
    height: 20px;
  }
}

@media screen and (max-width: 767px) {
  .team-wrap{
    flex-direction: column;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 25px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu-two {
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .menu-button {
    background-color: rgba(0, 0, 0, 0);
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .button-link {
    position: relative;
  }

  .button-link.learn-more {
    align-items: flex-start;
    display: inline-block;
    position: static;
  }

  .button-link.blog-link {
    margin-top: 30px;
  }

  .hero-image-wrap {
    min-height: 456px;
  }

  .yellow-square {
    width: 50px;
    height: 50px;
  }

  .sub-heading-text, .sub-heading-text.white {
    font-size: 14px;
  }

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

  .about-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 50px;
    flex-direction: column;
    justify-content: flex-start;
  }

  .about-column {
    width: 100%;
  }

  .sub-heading {
    margin-bottom: 5px;
  }

  .sub-title-square {
    margin-right: 5px;
  }

  .color-main {
    width: 80px;
    height: 80px;
  }

  .font-inner {
    flex-wrap: wrap;
  }

  .color-block {
    max-width: 80px;
  }

  .project-list {
    grid-column-gap: 0px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .vision-list-wrap {
    margin-top: 15px;
  }

  .about-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

  .vision-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .project-number {
    font-size: 16px;
  }

  .utility-page-content {
    max-width: 350px;
  }

  .project-thumb {
    max-height: 100%;
    min-height: 400px;
  }

  .project-box-title {
    font-size: 16px;
  }

  .section-title {
    font-size: 35px;
  }

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

  .stats-wrap {
    grid-column-gap: 0px;
    flex-direction: column;
  }

  .stats-left {
    max-width: 100%;
    padding-bottom: 30px;
  }

  .stats-right {
    max-width: 100%;
  }

  .stats-count {
    font-size: 30px;
  }

  .service-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .service-list {
    grid-column-gap: 0px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .service-thumb {
    max-height: 100%;
    min-height: 0;
  }

  .cta-section {
    padding-bottom: 80px;
  }

  .blue-cta-wrap {
    padding: 60px 20px;
  }

  .blue-cta-wrap.brochure-wrap {
    align-items: flex-start;
  }

  .cta-title {
    font-size: 30px;
  }

  .green-square {
    width: 50px;
    height: 50px;
  }

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

  .right-arrow.right-review-arrow {
    top: 98%;
  }

  .left-arrow.left-review-arrow {
    top: 98%;
  }

  .person-image, .member-image {
    min-height: 273px;
  }

  .team-slider {
    margin-top: 0;
  }

  .team-name {
    margin-bottom: 0;
    font-size: 18px;
  }

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

  .review-section {
    margin-bottom: 80px;
    padding-top: 60px;
    padding-bottom: 120px;
  }

  .review-box {
    grid-column-gap: 0px;
    grid-row-gap: 50px;
    flex-wrap: wrap;
  }

  .review-img {
    max-height: 100%;
    max-width: 100%;
    min-height: 100%;
    min-width: 100%;
  }

  .review-quote {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
  }

  .faq-section {
    margin-bottom: 80px;
  }

  .arrow-icon {
    min-height: 30px;
    min-width: 30px;
  }

  .faq-wrapper-block {
    margin-top: 20px;
  }

  .faq-title {
    white-space: pre-line;
    font-size: 18px;
  }

  .faq-answer-block.w--open {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .faq-d-button {
    padding-left: 0;
    padding-right: 0;
  }

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

  .footer-top-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .footer-bottom-wrap {
    display: block;
  }

  .footer-newsletter {
    max-width: 100%;
  }

  .footer-title {
    font-size: 20px;
  }

  .success-message, .error-message {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
  }

  .copyright-text {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .about-hero-section {
    padding-bottom: 80px;
  }

  .page-hero-wrap {
    padding-top: 50px;
  }

  .who-we-are-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    flex-direction: column-reverse;
  }

  .who-we-are-img, .who-we-are-text {
    max-width: 100%;
  }

  .who-we-are-data {
    margin-bottom: 40px;
  }

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

  .mission-data-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .innovation-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .work-process-wrap {
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .innovation-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .innovation-left, .innovation-right {
    max-width: 100%;
  }

  .process-box {
    grid-column-gap: 15px;
  }

  .process-number-round {
    width: 40px;
    height: 40px;
    border-radius: 40px;
  }

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

  .service-list-section {
    padding-bottom: 80px;
  }

  .service-lists {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .awards-section {
    padding-bottom: 80px;
  }

  .awards-list-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .page-title {
    padding-bottom: 10px;
  }

  .projects-grid-wrap {
    padding-bottom: 80px;
  }

  .project-grid-box-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .project-label-wrap {
    line-height: 150%;
  }

  .pagination {
    margin-top: 30px;
  }

  .project-list-wrap {
    padding-bottom: 80px;
  }

  .project-list-link {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    flex-direction: column;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .project-list-img-wrap {
    max-width: 100%;
  }

  .project-list-info {
    grid-row-gap: 10px;
    padding-bottom: 20px;
  }

  .related-project-section {
    margin-bottom: 80px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .project-hero {
    min-height: 220px;
  }

  .project-overview {
    padding-bottom: 60px;
  }

  .project-gallery {
    padding-bottom: 80px;
  }

  .overview-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    flex-direction: column-reverse;
  }

  .overview-right {
    max-width: 100%;
  }

  .information-list {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .info-icon {
    width: 35px;
    height: 35px;
  }

  .p-info-text {
    font-size: 14px;
  }

  .information-title {
    margin-bottom: 20px;
  }

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

  .our-service-section {
    padding-bottom: 80px;
  }

  .our-service-list {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .service-details-wrap {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .service-cta-wrap {
    padding-bottom: 80px;
  }

  .service-overview-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .service-newsletter {
    max-width: 100%;
  }

  .news-box-wrap {
    padding-bottom: 80px;
  }

  .featured-link {
    grid-column-gap: 0px;
    flex-direction: column-reverse;
  }

  .featured-left {
    max-width: 100%;
    padding: 30px;
  }

  .featured-right {
    max-width: 100%;
  }

  .featured-img {
    min-height: 220px;
  }

  .featured-date {
    padding: 4px 12px;
  }

  .featured-title {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 20px;
  }

  .blog-box-collection {
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
  }

  .blog-box-date {
    padding: 4px 12px;
  }

  .blog-box-title {
    margin-top: 10px;
    font-size: 20px;
    line-height: 150%;
  }

  .blog-main-img-wrap {
    margin-bottom: 40px;
  }

  .blog-overview {
    padding-bottom: 80px;
  }

  .contact-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    flex-direction: column;
    padding-bottom: 80px;
  }

  .contact-left, .contact-right {
    max-width: 100%;
  }

  .contact-form {
    margin-top: 40px;
  }

  .contact-list {
    grid-column-gap: 8px;
  }

  .contact-list-icon {
    width: 26px;
    height: 26px;
  }

  .contact-list-wrap {
    margin-bottom: 16px;
  }

  .privacy-policy-wrap, .license-section {
    padding-bottom: 80px;
  }

  .disclamer-block {
    margin-bottom: 40px;
    padding: 30px;
  }

  .version-info {
    grid-column-gap: 15px;
    grid-template-columns: 60px 1fr;
  }

  .version-block {
    width: 60px;
    height: 60px;
  }

  .version-name {
    font-size: 14px;
  }

  .password-field {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 479px) {
  .about-hero-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
  }

  .container {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-menu-two {
    flex-direction: column;
  }

  .hero-buttons {
    grid-column-gap: 10px;
    justify-content: space-between;
    margin-top: 30px;
  }

  .hero-data {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-column {
    width: 100%;
  }

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

  .hading-item-block {
    grid-row-gap: 0px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .color-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hading-inner-block {
    display: none;
  }

  .project-list {
    grid-row-gap: 40px;
  }

  .project-image-box {
    margin-bottom: 8px;
  }

  .project-info {
    width: 100%;
  }

  .utility-page-content {
    padding: 30px 20px;
  }

  .project-box-title {
    font-size: 20px;
    font-weight: 700;
  }

  .right-button-wrap {
    padding-top: 60px;
  }

  .service-list {
    grid-row-gap: 40px;
  }

  .service-info {
    margin-top: 8px;
  }

  .service-thumb {
    min-height: 360px;
  }

  .service-order {
    line-height: 150%;
  }

  .team-section {
    padding-bottom: 120px;
  }

  .right-arrow {
    margin-left: auto;
    margin-right: auto;
    top: auto;
    left: 50px;
    transform: translate(0, 70px);
  }

  .left-arrow {
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: auto;
    right: 50px;
    transform: translate(0, 70px);
  }

  .person-image, .member-image {
    min-height: 274px;
  }

  .arrow-icon {
    flex: none;
  }

  .faq-title {
    white-space: pre-line;
    flex: 0 auto;
    font-size: 18px;
    display: block;
  }

  .faq-answer-block.w--open {
    font-size: 16px;
  }

  .faq-d-button {
    grid-column-gap: 35px;
    justify-content: space-between;
  }

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

  .footer-top-wrap {
    grid-column-gap: 18px;
    grid-row-gap: 19px;
    grid-template: "Area Area"
                   ". ."
                   ". ."
                   / 1fr 1fr;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .footer-title {
    font-size: 16px;
  }

  .copyright-text {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .project-title-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-title-right {
    margin-top: 10px;
  }

  .service-main-img {
    min-height: 220px;
  }

  .brochure-title {
    text-align: left;
  }

  .blog-main-img {
    min-height: 240px;
  }

  .info-block {
    grid-row-gap: 60px;
    flex-wrap: nowrap;
    display: flex;
    overflow: hidden;
  }

  .version-info {
    align-items: start;
  }

  .error-title {
    font-size: 30px;
  }

  ._404-image {
    margin-bottom: 40px;
  }

  .serviceparagraph {
    font-size: 14px;
  }

  .serviceblock {
    flex-direction: column;
    padding: 20px 10px;
  }

  .servicetitle {
    font-size: 30px;
    line-height: 100%;
  }

  .servicetitle.black {
    margin-top: 10px;
    line-height: 107%;
  }

  .servicelist {
    font-size: 12px;
  }

  .list {
    padding-left: 15px;
    font-size: 14px;
  }

  .list.bluelist {
    font-size: 14px;
  }

  .white {
    line-height: 107%;
  }

  .bold-text {
    font-size: 25px;
    line-height: 100%;
  }

  .bold-text-2 {
    font-size: 30px;
    line-height: 100%;
  }

  .bold-text-3 {
    font-size: 30px;
  }

  .paragraph-4, .paragraph-5 {
    font-size: 12px;
  }
}

#w-node-b0ffc79d-f3de-5e88-d1fe-a1c7314fb8d0-314fb8bf, #w-node-b0ffc79d-f3de-5e88-d1fe-a1c7314fb8f7-314fb8bf, #w-node-dbe72220-1633-2fc1-b800-5fc4c6f0097a-44d206be, #w-node-_0a3c0bef-3da0-fad7-dfd3-f911d214ecc8-44d206c0, #w-node-_0a3c0bef-3da0-fad7-dfd3-f911d214eccb-44d206c0, #w-node-_0a3c0bef-3da0-fad7-dfd3-f911d214eccc-44d206c0, #w-node-_0a3c0bef-3da0-fad7-dfd3-f911d214ecce-44d206c0, #w-node-_25422b2b-b777-5e25-009a-61510f6c77ce-0f6c77c4, #w-node-_25422b2b-b777-5e25-009a-61510f6c77cf-0f6c77c4, #w-node-_25422b2b-b777-5e25-009a-61510f6c77d8-0f6c77c4, #w-node-_25422b2b-b777-5e25-009a-61510f6c77d9-0f6c77c4, #w-node-_25422b2b-b777-5e25-009a-61510f6c77e2-0f6c77c4, #w-node-_25422b2b-b777-5e25-009a-61510f6c77e3-0f6c77c4, #w-node-_25422b2b-b777-5e25-009a-61510f6c77ec-0f6c77c4, #w-node-_25422b2b-b777-5e25-009a-61510f6c77ed-0f6c77c4, #w-node-_25422b2b-b777-5e25-009a-61510f6c77f6-0f6c77c4, #w-node-_25422b2b-b777-5e25-009a-61510f6c77f7-0f6c77c4, #w-node-_71f1cb1d-e4a4-a682-d1a0-f740f6dd1a12-44d206c5, #w-node-_71f1cb1d-e4a4-a682-d1a0-f740f6dd1a1e-44d206c5, #w-node-_71f1cb1d-e4a4-a682-d1a0-f740f6dd1a32-44d206c5, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd71da-44d206ca {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd71e1-44d206ca {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd71e7-44d206ca {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd71ee-44d206ca {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd71f6-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd71f8-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd71fb-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7200-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7205-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7208-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd720c-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7211-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7214-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7218-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd721d-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7220-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7224-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7229-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd722c-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7230-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7235-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7238-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd723c-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7241-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7244-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7248-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd724d-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7250-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7254-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7259-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd725c-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7260-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7265-44d206ca, #w-node-_5a23b8f1-0a7a-8beb-7fd2-4e5100cd7268-44d206ca {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 479px) {
  #w-node-b0ffc79d-f3de-5e88-d1fe-a1c7314fb8c2-314fb8bf {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-b0ffc79d-f3de-5e88-d1fe-a1c7314fb8f7-314fb8bf {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Helveticaneue';
  src: url('../fonts/HelveticaNeueBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helveticaneue';
  src: url('../fonts/HelveticaNeueMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helveticaneue';
  src: url('../fonts/HelveticaNeue-Heavy.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helveticaneue';
  src: url('../fonts/HelveticaNeue-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}