:root {
  --text-color: #5f708f;
  --dark: #1f2d48;
  --primary: #b0d129;
  --grey: #f8f8f8;
  --white: white;
}

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

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

@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(--text-color);
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8em;
}

h1 {
  color: var(--dark);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Space Grotesk, sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.3em;
}

h2 {
  color: var(--dark);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Space Grotesk, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3em;
}

h3 {
  color: var(--dark);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Space Grotesk, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.3em;
}

h4 {
  color: var(--dark);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Space Grotesk, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3em;
}

h5 {
  color: var(--dark);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Space Grotesk, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3em;
}

h6 {
  color: var(--dark);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Space Grotesk, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3em;
}

a {
  color: var(--dark);
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

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

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

li {
  padding-bottom: 10px;
}

blockquote {
  background-color: var(--grey);
  color: var(--dark);
  text-align: center;
  border-left-style: none;
  margin-bottom: 25px;
  padding: 30px 10%;
  font-family: Space Grotesk, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 2;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
}

.column {
  min-height: 32px;
  flex-flow: column;
  flex: 0 auto;
  align-items: stretch;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column.desk-4 {
  min-height: auto;
  flex: 0 auto;
  padding-bottom: 20px;
  display: block;
}

.text-white {
  color: #fff;
}

._12-columns {
  flex-flow: wrap;
  align-content: stretch;
  justify-content: center;
  align-items: center;
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
}

._12-columns.align-left {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}

.style-guide-label-title {
  border-bottom: 1px solid #021527;
  padding-bottom: 10px;
  font-size: 18px;
}

.style-guide-label-title.last {
  margin-bottom: 30px;
}

.style-guide-nav {
  width: 240px;
  height: 0;
  border-right: 1px solid #ced5db;
  position: fixed;
  top: 0%;
  bottom: 0;
  left: 0;
  right: auto;
}

.menu-link {
  width: 100%;
  text-transform: uppercase;
  border-left: 4px solid rgba(0, 0, 0, 0);
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 27px;
  transition: background-color .2s, color .2s;
}

.menu-link:hover {
  color: #021527;
  text-decoration: none;
}

.menu-link.w--current {
  border-left-style: solid;
  border-left-color: var(--dark);
  background-color: var(--primary);
  color: #fff;
  padding-right: 0;
}

.style-guide-body {
  background-color: #fff;
}

.style-guide-label {
  font-size: 20px;
  line-height: 28px;
}

.style-guide-label.text-grey, .style-guide-label.text-primary, .style-guide-label.text-dark {
  margin-top: 0;
}

.horizontal-line {
  width: 100%;
  height: 1px;
  opacity: .2;
  background-color: #1d1916;
  margin-bottom: 36px;
}

.horizontal-line.design-system {
  opacity: 1;
  background-color: #021527;
  position: relative;
  bottom: -80px;
}

.paragraph {
  margin-bottom: 10px;
}

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

.paragraph.small {
  opacity: .75;
  font-size: 14px;
}

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

.header-logo {
  width: 200px;
}

.color-block {
  height: 130px;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 0;
  margin-bottom: 10px;
}

.style-guide-menu {
  width: 100%;
}

.silde-bar-nav {
  width: 240px;
  height: 100vh;
  background-color: var(--grey);
}

.style-guide-content {
  max-width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 240px;
  display: flex;
}

.style-guide-menu-brand {
  margin-top: 40px;
  margin-bottom: 50px;
  margin-left: 20px;
  padding-left: 0;
}

.style-guide-section {
  z-index: 0;
  padding: 60px 80px 60px 60px;
}

.text-box._500px {
  max-width: 500px;
  min-height: 64px;
}

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

.white-link {
  color: var(--primary);
  text-transform: capitalize;
  font-weight: 400;
  text-decoration: none;
}

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

.style-guide-block {
  margin-bottom: 32px;
}

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

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

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

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

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

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

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

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

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

.button-wrapper {
  align-items: center;
  display: inline-block;
}

.button-wrapper.margin-top-30.hero-button {
  margin-left: 100px;
}

.button-wrapper.hero-v2-button {
  margin-top: 10px;
}

.button-primary {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--primary);
  color: var(--white);
  text-transform: uppercase;
  border-radius: 900px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 35px;
  font-weight: 500;
  display: flex;
}

.button-primary:hover {
  color: var(--white);
  text-decoration: none;
}

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

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

.arrow-icon {
  width: 20px;
  height: 20px;
}

.arrow-icon-block {
  line-height: 0;
}

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

.section.hero-section {
  background-color: var(--dark);
  position: relative;
}

.section.service-section {
  background-color: var(--grey);
  position: relative;
}

.section.counter-section {
  padding-bottom: 20px;
}

.section.project-section {
  background-color: var(--dark);
  overflow: hidden;
}

.section.testimonial-section {
  background-color: var(--grey);
  padding-bottom: 0;
  display: none;
  position: relative;
}

.section.breadcrumb-section {
  background-image: url('../images/breadcrumb.png');
  background-position: 50%;
  background-size: cover;
  padding-top: 180px;
  padding-bottom: 180px;
}

.section.about-v2-section {
  background-color: var(--dark);
  position: relative;
}

.section.testimonial-v2-section {
  background-color: var(--grey);
}

.section.about-v4-section {
  font-size: 16px;
}

.section.about-full-section {
  padding-top: 0;
  padding-bottom: 0;
}

.section.team-v2-section {
  background-color: var(--grey);
}

.container-fluid {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.hero-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  align-items: center;
  justify-items: start;
  margin-left: 30px;
  margin-right: 30px;
}

.hero-left-side {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.hero-title-section {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: flex-start;
  display: flex;
}

.section-sub-title {
  color: var(--primary);
  text-transform: uppercase;
  font-family: Space Grotesk, sans-serif;
  font-weight: 500;
}

.section-sub-title-line {
  width: 45px;
  height: 2px;
  background-color: var(--primary);
}

.section-sub-title-block {
  margin-top: 30px;
}

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

.hero-paragraph {
  color: var(--grey);
  padding-left: 100px;
}

.hero-right-side {
  z-index: 9;
  position: relative;
}

.hero-right-image {
  width: 750px;
  opacity: .05;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.margin-top-30 {
  margin-top: 30px;
}

.hero-left-image {
  width: 280px;
  opacity: .05;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.hero-heading-section-block {
  z-index: 9;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.hero-heading-vector {
  z-index: -1;
  width: 380px;
  position: absolute;
  top: 35%;
  bottom: auto;
  left: auto;
  right: 22%;
}

.container {
  max-width: 1400px;
  padding-left: 15px;
  padding-right: 15px;
}

.about-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
}

.section-title-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: flex-start;
  display: flex;
}

.section-heading-block {
  z-index: 9;
  position: relative;
}

.about-heading-vector {
  z-index: -1;
  width: 340px;
  position: absolute;
  top: 17%;
  bottom: auto;
  left: auto;
  right: 8%;
}

.about-left-image-block {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.about-left-image {
  z-index: -1;
  margin-top: -60px;
  position: relative;
}

.about-left-bottom-image {
  width: 280px;
  margin-top: 60px;
}

.about-left-bottom-image-block {
  text-align: center;
}

.about-paragraph {
  margin-top: 40px;
}

.mrquree-main-section {
  background-color: var(--primary);
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  overflow: hidden;
}

.mrquree {
  align-items: center;
  display: flex;
  overflow: hidden;
}

.inner-mrquree-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex: none;
  align-items: center;
  display: flex;
}

.inner-mrquree-wrapper.two, .inner-mrquree-wrapper.three {
  margin-left: 30px;
}

.mrquree-title {
  color: var(--white);
  margin-bottom: 0;
  font-size: 52px;
}

.mrquree-image {
  width: 140px;
}

.service-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  justify-items: start;
}

.service-heading-vector {
  z-index: -1;
  width: 440px;
  position: absolute;
  top: 23%;
  bottom: auto;
  left: auto;
  right: 17%;
}

.service-tabs {
  align-items: center;
  display: flex;
}

.service-tabs-menu {
  width: 50%;
  margin-right: 50px;
}

.service-link {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: rgba(0, 0, 0, 0);
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.service-link.w--current {
  background-color: var(--primary);
  color: var(--white);
}

.service-icon {
  width: 45px;
}

.service-icon-wrap {
  width: 80px;
  height: 80px;
  background-color: var(--dark);
  text-align: center;
  border-radius: 100%;
  flex: none;
  line-height: 80px;
}

.service-title {
  margin-bottom: 0;
  font-size: 28px;
}

.service-tabs-content {
  width: 50%;
  flex: none;
}

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

.counter-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
}

.counter-heading-vector {
  z-index: -1;
  width: 380px;
  position: absolute;
  top: auto;
  bottom: 5%;
  left: auto;
  right: 20%;
}

.counter-main-block {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.counter-heading {
  color: var(--primary);
  margin-bottom: 0;
  font-size: 54px;
}

.counter-sub-title {
  color: var(--dark);
  text-transform: uppercase;
  font-family: Space Grotesk, sans-serif;
  font-weight: 500;
}

.map-image {
  margin-top: 40px;
}

.project-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
}

.project-heading-vector {
  z-index: -1;
  width: 280px;
  position: absolute;
  top: auto;
  bottom: 10%;
  left: auto;
  right: 25%;
}

.project-slider {
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 40px;
  position: static;
}

.project-mask {
  width: 496px;
  position: static;
  overflow: visible;
}

.project-slide {
  margin-right: 30px;
}

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

.project-image-link {
  overflow: hidden;
}

.project-image {
  width: 533px;
}

.project-info-block {
  margin-top: 30px;
}

.project-heading {
  margin-bottom: 0;
  font-size: 34px;
}

.project-sub-title {
  color: var(--primary);
  text-transform: uppercase;
  font-family: Space Grotesk, sans-serif;
  font-weight: 500;
}

.project-block {
  position: relative;
}

.project-left-arrow {
  width: 58px;
  height: 58px;
  background-color: var(--white);
  color: var(--dark);
  border-radius: 100%;
  line-height: 58px;
  transition: all .2s;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 6%;
}

.project-left-arrow:hover {
  background-color: var(--primary);
  color: var(--white);
}

.project-right-arrow {
  width: 58px;
  height: 58px;
  background-color: var(--white);
  color: var(--dark);
  border-radius: 100%;
  line-height: 58px;
  transition: all .2s;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.project-right-arrow:hover {
  background-color: var(--primary);
  color: var(--white);
}

.project-icon {
  font-size: 20px;
}

.project-slide-nav {
  display: none;
}

.team-heading-vector {
  z-index: -1;
  width: 330px;
  position: absolute;
  top: 25%;
  bottom: auto;
  left: auto;
  right: 13%;
}

.team-collection-list-wrapper {
  margin-top: 40px;
}

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

.team-image-block {
  overflow: hidden;
}

.team-info-block {
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  display: flex;
}

.team-title {
  margin-bottom: 0;
  font-size: 32px;
}

.team-social-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  align-items: center;
  display: flex;
}

.team-details-social-link {
  width: 50px;
  height: 50px;
  background-color: var(--dark);
  color: #fff;
  text-align: center;
  border-radius: 100%;
  font-family: "Fa Brands 400", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 50px;
  transition: background-color .3s;
  display: inline-block;
}

.team-details-social-link:hover {
  background-color: var(--primary);
  color: #f4f4f4;
  text-decoration: none;
}

.team-position {
  color: var(--primary);
  text-transform: uppercase;
  font-family: Space Grotesk, sans-serif;
  font-weight: 500;
}

.team-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
}

.testimonial-top-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 2.5fr 1fr;
}

.testimonial-heading-vector {
  z-index: -1;
  width: 350px;
  position: absolute;
  top: auto;
  bottom: 10%;
  left: auto;
  right: -1%;
}

.testimonial-bottom-section {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  margin-top: 40px;
}

.testimonial-left-side {
  position: relative;
}

.testimonial-bottom-image {
  width: 100px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: -30%;
  right: 0%;
}

.testimonial-top-image {
  z-index: 9;
  width: 530px;
  height: 530px;
}

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

.testimonial-block {
  border-left: 1px solid rgba(41, 54, 78, .1);
  padding: 45px;
}

.testimonial-block.last {
  margin-bottom: 40px;
}

.testimonial-rate-icon-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  display: flex;
}

.testimonial-rate-icon {
  color: #eeca28;
  font-family: "Fa Solid 900", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.testimonial-paragraph {
  margin-top: 10px;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-member-name {
  margin-bottom: 0;
  font-size: 28px;
}

.testimonial-position {
  color: var(--primary);
  text-transform: uppercase;
  font-family: Space Grotesk, sans-serif;
  font-weight: 500;
}

.testimonial-image {
  width: 100px;
  border-radius: 100%;
}

.testimonial-info-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
}

.blog-heading-vector {
  z-index: -1;
  width: 420px;
  position: absolute;
  top: auto;
  bottom: 20%;
  left: auto;
  right: -2%;
}

.blog-top-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 2.5fr 1fr;
}

.blog-bottom-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  margin-top: 40px;
}

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

.blog-info-block {
  margin-top: 30px;
}

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

.blog-paragraph {
  margin-bottom: 0;
}

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

.blog-right-main-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-bottom: 1px solid rgba(41, 54, 78, .1);
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-bottom: 40px;
  display: grid;
}

.blog-right-title {
  font-size: 24px;
}

.footer {
  background-color: var(--dark);
  background-image: linear-gradient(rgba(41, 54, 78, .98), rgba(41, 54, 78, .98)), url('../images/3.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 90px;
  padding-bottom: 0;
}

.footer-top {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 60px;
  padding-right: 0;
  display: grid;
}

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

.footer-call-link {
  color: #fff;
  margin-top: 15px;
  margin-bottom: 15px;
  font-family: Space Grotesk, sans-serif;
  font-size: 28px;
  font-weight: 700;
  display: block;
}

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

.footer-email-link {
  color: #fff;
  text-transform: lowercase;
}

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

.footer-image {
  width: 240px;
  margin-bottom: 40px;
}

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

.footer-link-block {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  display: flex;
}

.footer-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.footer-link {
  color: #fff;
}

.footer-link:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-link.w--current {
  color: var(--primary);
}

.footer-title {
  color: var(--white);
  margin-bottom: 30px;
  font-size: 32px;
}

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

.subscribe-submit-box {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 5fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.text-input {
  height: 56px;
  border: 1px solid var(--white);
  padding: 20px 0 20px 16px;
  font-size: 16px;
  line-height: 1.8px;
}

.text-input:hover {
  border-style: solid;
  border-color: var(--primary);
}

.text-input:focus {
  border: 1px solid var(--primary);
}

.text-input.newslatter {
  width: 100%;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border-style: none none solid;
  border-color: #fff #fff rgba(255, 255, 255, .1);
  margin-bottom: 0;
  padding-left: 0;
  transition: all .2s;
  position: relative;
}

.text-input.newslatter:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.text-input.newslatter:focus {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
}

.text-input.newslatter::-ms-input-placeholder {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
}

.text-input.newslatter::placeholder {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
}

.text-input.form {
  min-height: 160px;
}

.newslatter-button {
  z-index: 2;
  width: 40px;
  height: auto;
  color: #2b2b2e;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  border: 1px #2b2b2e;
  padding: 14px 40px 14px 20px;
  transition: all .3s;
  display: inline-block;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.newslatter-button:hover {
  color: #fff;
  text-decoration: none;
}

.footer-submit-button-with-icon {
  width: 40px;
  height: auto;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  font-family: "Fa Solid 900", sans-serif;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 2%;
}

.success-message {
  color: #fff;
  background-color: #4bb543;
}

.footer-social-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-top: 25px;
  display: flex;
}

.footer-social-link {
  color: var(--white);
  font-family: "Fa Brands 400", sans-serif;
  font-size: 24px;
  font-weight: 400;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 20px;
  padding-bottom: 20px;
}

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

.footer-cpoyright-link {
  color: var(--white);
  text-transform: capitalize;
  font-weight: 400;
}

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

.service-vector-image {
  width: 280px;
  opacity: .05;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.testimonial-top-wrpp {
  z-index: 9;
  position: absolute;
  top: 12%;
  bottom: auto;
  left: -138%;
  right: auto;
}

.dropdown-link {
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  display: block;
  overflow: visible;
}

.dropdown-link.w--current {
  color: var(--primary);
  display: block;
  overflow: visible;
}

.nav-link {
  text-transform: capitalize;
  padding-right: 20px;
  font-size: 20px;
  display: inline-block;
}

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

.nav-link.first {
  padding-left: 0;
}

.dropdown {
  font-weight: 500;
  display: inline-block;
}

.dropdown-list {
  width: 200px;
  background-color: var(--grey);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  overflow: visible;
  box-shadow: 0 0 20px rgba(41, 54, 78, .05);
}

.dropdown-list:hover {
  display: none;
  overflow: visible;
}

.dropdown-list.w--open {
  display: block;
}

.brand {
  flex-direction: column;
  padding-top: 0;
  padding-left: 0;
  display: flex;
}

.navbar {
  background-color: var(--white);
  padding-top: 10px;
  padding-bottom: 10px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  box-shadow: 0 0 20px rgba(41, 54, 78, .2);
}

.breadcrumb-info-block {
  padding-right: 30%;
}

.breadcrumb-title {
  color: #fff;
  margin-bottom: 0;
  font-size: 64px;
}

.blog-detail-single-image {
  margin-bottom: 32px;
}

.blog-single-rich-text {
  padding-left: 140px;
  padding-right: 140px;
}

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

.blog-single-collection-list-wrapper {
  margin-top: 40px;
}

.breadcrumb-bottom-info {
  grid-column-gap: 5px;
  display: flex;
}

.breadcrumb-link {
  color: #fff;
  text-transform: capitalize;
}

.breadcrumb-link:hover, .breadcrumb-link.w--current {
  color: var(--primary);
}

.team-details-post-image {
  text-align: right;
}

.team-details-contact-info-link {
  color: var(--dark);
  text-transform: lowercase;
  margin-left: 12px;
}

.team-single-main-image {
  background-color: rgba(244, 244, 244, .05);
}

.team-details-contact-info {
  align-items: center;
}

.team-details-contact-info-list {
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.team-details-social {
  margin-top: 30px;
}

.team-details-contact-title {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 36px;
}

.team-details-title {
  margin-bottom: 0;
  font-size: 58px;
  line-height: 72px;
}

.team-details-contact-info-title {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.team-single-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  align-items: start;
}

.service-details-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: flex;
}

.service-sidebar {
  width: 100%;
  max-width: 340px;
  flex-direction: column;
  display: flex;
}

.sidebar-box {
  grid-row-gap: 0px;
  background-color: var(--grey);
  flex-direction: column;
  flex: 0 auto;
  padding: 30px;
  display: flex;
}

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

.sidebar-title {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-size: 34px;
  display: flex;
}

.sidebar-service-wrapper {
  margin-top: 40px;
}

.sidebar-service-list {
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.sidebar-service-link-block {
  background-color: var(--white);
  justify-content: space-between;
  padding: 12px 20px;
  display: flex;
}

.sidebar-service-link-block:hover, .sidebar-service-link-block.w--current {
  background-color: var(--primary);
  color: var(--white);
}

.service-text {
  text-transform: capitalize;
}

.sidebar-icon {
  font-family: "Fa Solid 900", sans-serif;
  font-weight: 400;
}

.sidebar-banner-block {
  margin-top: 30px;
  overflow: hidden;
}

.sidebar-banner-image {
  width: 100%;
}

.sidebar-banner-content {
  background-color: var(--primary);
  flex-direction: column;
  align-items: center;
  padding: 30px;
  display: flex;
}

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

.sidebar-icon-block {
  width: 80px;
  height: 80px;
  background-color: var(--white);
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.sidebar-icon-image {
  width: 40px;
}

.banner-title {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Space Grotesk, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.banner-contect-title {
  color: var(--white);
  margin-bottom: 20px;
  font-family: Space Grotesk, sans-serif;
  font-weight: 500;
}

.contect-link-block {
  color: var(--white);
  font-size: 28px;
}

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

.service-details-content {
  width: 100%;
}

.project-summary {
  margin-top: 30px;
}

.service-detail-images-block {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 30px;
  margin-bottom: 40px;
  display: grid;
}

.project-detail-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.project-detail-top-block {
  grid-column-gap: 30px;
  display: flex;
}

.project-detail-image-block {
  width: 100%;
  max-width: 70%;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

.project-detail-image {
  width: 100%;
}

.project-detail-content {
  width: 100%;
  max-width: 30%;
}

.project-single-detail {
  border-bottom: 1px solid rgba(41, 54, 78, .1);
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.project-single-detail.last {
  margin-bottom: 20px;
}

.project-paramiter {
  color: var(--dark);
  font-family: Space Grotesk, sans-serif;
  font-weight: 700;
}

.project-social-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  align-items: center;
  display: flex;
}

.project-details-social-link {
  width: 50px;
  height: 50px;
  background-color: var(--dark);
  color: #fff;
  text-align: center;
  border-radius: 100%;
  font-family: "Fa Brands 400", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 50px;
  transition: background-color .3s;
  display: inline-block;
}

.project-details-social-link:hover {
  background-color: var(--primary);
  color: #f4f4f4;
  text-decoration: none;
}

.project-deatil-title-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 30px;
  display: flex;
}

.project-details-image-block {
  grid-column-gap: 7px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  margin-top: 30px;
  display: grid;
}

.project-detail-page-image {
  width: 100%;
}

.project-details-block {
  margin-top: 30px;
}

.navbar-wrap-full {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 2.25fr 1.25fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  justify-items: center;
  padding-left: 40px;
  padding-right: 40px;
  display: grid;
}

.navbar-wrap {
  grid-column-gap: 17px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  justify-items: center;
  display: grid;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  background-color: var(--grey);
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.not-found-404 {
  color: var(--primary);
  margin-bottom: 40px;
  font-size: 17rem;
  line-height: 14rem;
}

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

.button {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--primary);
  color: var(--white);
  text-transform: uppercase;
  border-radius: 900px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding: 12px 35px;
  font-weight: 500;
  transition: all .2s;
}

.button:hover {
  background-color: var(--dark);
  color: var(--white);
  text-decoration: none;
}

.container-small {
  padding-left: 15px;
  padding-right: 15px;
}

.changelog-content-wrapper {
  background-color: var(--grey);
  text-align: center;
  border-radius: 5px;
  padding-top: 35px;
  padding-bottom: 35px;
}

.changelog-number-wrap {
  width: 80px;
  height: 50px;
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 50px;
  display: inline-block;
}

.changelog-date-text {
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 400;
}

.changelog-title {
  margin-bottom: 10px;
  font-size: 32px;
}

.changelog-paragraph {
  text-transform: capitalize;
  margin-bottom: 0;
}

.licenses-content-wrapper {
  background-color: var(--grey);
  margin-bottom: 40px;
  padding: 32px 20px;
}

.licenses-title {
  font-size: 40px;
}

.dark-link {
  text-transform: capitalize;
  display: inline-block;
}

.pexels-images-block {
  margin-top: 20px;
}

.image-title {
  font-size: 24px;
}

.pexel-wapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  justify-items: center;
  margin-top: 20px;
  display: grid;
}

.licenses-content-wrapper.last-child {
  margin-bottom: 0;
}

.contact-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
}

.contact-heading-vector {
  z-index: -1;
  width: 260px;
  position: absolute;
  top: auto;
  bottom: 10%;
  left: auto;
  right: 25%;
}

.contact-detail-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  margin-top: 40px;
}

.contact-title {
  margin-bottom: 30px;
  font-size: 38px;
}

.contact-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border-bottom: 1px solid rgba(41, 54, 78, .1);
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  display: flex;
}

.contact-image {
  width: 80px;
}

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

.contact-info-title {
  font-size: 28px;
}

.contact-address {
  padding-right: 25%;
}

.contact-link {
  text-transform: lowercase;
  display: block;
}

.contact-social-block {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  margin-top: 25px;
  display: flex;
}

.contact-social-link {
  font-family: "Fa Brands 400", sans-serif;
  font-size: 28px;
  font-weight: 400;
}

.google-map {
  border-radius: 5px;
  flex: 1;
  line-height: 0;
}

.map {
  border-radius: 5px;
}

.contact-right-detail {
  background-color: var(--grey);
  padding: 40px;
}

.contact-form-block {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
}

.contact-form {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-form-title {
  font-size: 38px;
}

.hero-v2-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1.75fr 1fr 1.75fr;
  align-items: center;
  justify-items: start;
  margin-left: 30px;
  margin-right: 30px;
}

.hero-v2-center-side {
  position: relative;
}

.hero-v2-title-section {
  width: 60%;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--white);
  padding-top: 20px;
  padding-bottom: 40px;
  display: flex;
  position: absolute;
  top: 38%;
  bottom: auto;
  left: 20%;
  right: 0%;
}

.hero-v2-heading-section-block {
  z-index: 9;
  text-align: center;
}

.hero-v2-heading-vector {
  z-index: -1;
  width: 360px;
  position: absolute;
  top: 20%;
  bottom: auto;
  left: auto;
  right: 3%;
}

.navbar-wrap-full-center {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 2.5fr .75fr 1.75fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  justify-items: start;
  padding-left: 40px;
  padding-right: 40px;
  display: grid;
}

.service-collection-list-wrapper {
  margin-top: 20px;
}

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

.service-main-block {
  position: relative;
}

.service-heading-link {
  margin-top: 20px;
}

.service-heading {
  margin-bottom: 0;
  font-size: 28px;
  display: inline;
}

.service-icon-box {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  text-align: center;
  border-radius: 100%;
  line-height: 80px;
  display: inline-block;
  position: absolute;
  top: auto;
  bottom: 5%;
  left: auto;
  right: -7%;
}

.service-v2-icon {
  width: 45px;
}

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

.service-single-collection-list-wrapper {
  display: inline;
}

.about-v2-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  align-items: center;
}

.about-v2-heading-vector {
  z-index: -1;
  width: 380px;
  position: absolute;
  top: 25%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.about-v2-inner {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1.35fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 20px;
  display: grid;
}

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

.about-v2-vactor {
  width: 30%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.about-top-v3-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  justify-items: start;
}

.about-v3-heading-vector {
  z-index: -1;
  width: 330px;
  position: absolute;
  top: auto;
  bottom: 10%;
  left: auto;
  right: 15%;
}

.about-v3-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: baseline;
  margin-top: 20px;
}

.about-v3-left-side {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.about-v3-right-side {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.about-v3-paragraph {
  margin-bottom: 30px;
}

.about-v3-info-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: row;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: baseline;
  display: flex;
}

.about-v3-info-block.center {
  margin-top: 30px;
  margin-bottom: 30px;
}

.about-v3-info-left {
  width: 15%;
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.about-v3-info-number {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  border-radius: 100%;
  font-family: Space Grotesk, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 80px;
}

.about-v3-info-number.center {
  background-color: var(--dark);
}

.about-v3-info-right {
  width: 85%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.about-v3-title {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 28px;
  display: flex;
}

.about-v3-inner-paragraph {
  margin-bottom: 0;
}

.info-video-block-image {
  width: 100%;
}

.background-video {
  height: 550px;
}

.faq-heading-vector {
  z-index: -1;
  width: 410px;
  position: absolute;
  top: 25%;
  bottom: auto;
  left: auto;
  right: 33%;
}

.faq-top-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 2.75fr 1fr;
  align-items: center;
  justify-items: start;
}

.faq-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  margin-top: 20px;
}

.accordion-icon {
  width: 15px;
  line-height: 15px;
}

.accordion-title {
  margin-bottom: 0;
  font-size: 20px;
}

.accordion-content {
  padding-top: 10px;
  overflow: hidden;
}

.accordion-icon-block {
  background-color: #fff;
  padding: 8px 10px;
  line-height: 15px;
}

.accordion-paragraph {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.accordion-wrapper {
  margin-bottom: 20px;
}

.accordion-wrapper.last {
  margin-bottom: 0;
}

.accordion-heading {
  background-color: var(--grey);
  cursor: pointer;
  border-bottom: 1px rgba(4, 26, 23, .11);
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  display: flex;
}

.accodion-detail {
  margin-bottom: 0;
}

.accordion-right-title {
  margin-top: 25px;
  font-size: 32px;
}

.testimonial-top-v2-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 2.75fr 1fr;
  align-items: center;
  justify-items: start;
}

.testimonial-v2-heading-vector {
  z-index: -1;
  width: 380px;
  position: absolute;
  top: auto;
  bottom: 10%;
  left: auto;
  right: 0%;
}

.testimonial-v2-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr .5fr;
  margin-top: 30px;
}

.testimonial-v2-left, .testimonial-v2-right {
  position: relative;
}

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

.testimonial-slider {
  height: auto;
  background-color: var(--white);
}

.testimonial-v2-block {
  text-align: center;
  padding: 45px;
}

.testimonial-v2-info-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  margin-bottom: 10px;
}

.testimonial-v2-rate-icon-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: center;
  display: flex;
}

.contact-main-block {
  background-color: var(--grey);
  margin-top: 20px;
  padding: 45px;
}

.testimonial-v2-image {
  width: 120px;
  position: absolute;
}

.testimonial-v2-image.one {
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.testimonial-v2-image.two {
  width: 160px;
  top: 35%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.testimonial-v2-image.three {
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.testimonial-v2-image.five {
  width: 160px;
  top: 35%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.testimonial-v2-image.six {
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.about-v4-image-wrapper {
  overflow: hidden;
}

.about-v4-section-title.center {
  text-align: center;
}

.about-heading-block {
  z-index: 9;
  padding-left: 10%;
  padding-right: 10%;
  position: relative;
}

.about-heading {
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.abou-sub-title-block {
  margin-top: 40px;
}

.about-full-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr .25fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.about-full-right-side {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.about-full-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
}

.about-full-block.one {
  border-bottom: 1px solid rgba(41, 54, 78, .1);
  border-right: 1px solid rgba(41, 54, 78, .1);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.about-full-block.two {
  border-bottom: 1px solid rgba(41, 54, 78, .1);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.about-full-block.three {
  border-right: 1px solid rgba(41, 54, 78, .1);
}

.about-full-block.four {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.about-full-block-image {
  width: 120px;
}

.about-full-block-title {
  margin-bottom: 0;
  font-size: 28px;
}

.about-full-block-paragtaph {
  margin-bottom: 0;
}

.blog-details-link-title {
  margin-bottom: 0;
  font-size: 26px;
  line-height: 32px;
  transition: all .2s;
  display: block;
  position: relative;
}

.blog-details-link-title:hover {
  color: var(--primary);
}

.blog-pagination-section {
  background-color: var(--grey);
  padding-top: 60px;
  padding-bottom: 60px;
}

.blog-template-label {
  color: var(--dark);
  margin-bottom: 0;
}

.blog-template-prev-button {
  flex: 1;
}

.blog-template-pagination {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  align-items: center;
  display: flex;
}

.blog-template-prev {
  margin-left: 0;
}

.blog-template-next-button {
  text-align: right;
  flex: 1;
}

.blog-template-pagination-link {
  align-items: center;
  display: flex;
}

.blog-template-pagination-link:hover {
  color: var(--primary);
  text-decoration: none;
}

.blog-template-pagination-link.w--current {
  color: #191919;
  align-items: center;
  display: flex;
}

.blog-template-pagination-link.right {
  justify-content: flex-end;
}

.breadcrumb-paragraph {
  color: #f4f2ed;
}

.service-v3-heading-vector {
  z-index: -1;
  width: 440px;
  position: absolute;
  top: 23%;
  bottom: auto;
  left: auto;
  right: 17%;
}

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

.empty-state {
  background-color: #fff;
}

@media screen and (min-width: 1280px) {
  .style-guide-nav, .silde-bar-nav {
    width: 280px;
  }

  .style-guide-content {
    margin-left: 280px;
  }

  .text-input {
    border-style: solid;
    border-color: #fff5f2;
  }

  .text-input:focus-visible {
    border-width: 1px;
  }

  .text-input[data-wf-focus-visible] {
    border-width: 1px;
  }
}

@media screen and (min-width: 1920px) {
  .header-logo {
    width: 250px;
    max-width: 150%;
  }

  .hero-right-image {
    width: 820px;
  }

  .hero-heading-vector {
    top: 25%;
    right: 11%;
  }

  .about-heading-vector {
    right: 17%;
  }

  .service-heading-vector {
    right: 20%;
  }

  .project-heading-vector {
    right: 34%;
  }

  .team-heading-vector {
    right: 22%;
  }

  .testimonial-heading-vector {
    right: 11%;
  }

  .testimonial-top-image {
    top: 27.5%;
    left: -2.5%;
    overflow: hidden;
  }

  .testimonial-top-wrpp {
    top: 5%;
    left: -132%;
  }

  .contact-heading-vector {
    right: 35%;
  }

  .hero-v2-title-section {
    width: 50%;
    top: 47%;
    left: 25%;
  }

  .hero-v2-heading-vector {
    right: 22%;
  }

  .about-v2-heading-vector {
    right: 10%;
  }

  .about-v3-heading-vector {
    right: 25%;
  }

  .faq-heading-vector {
    right: 40%;
  }

  .testimonial-v2-heading-vector {
    right: 11%;
  }

  .about-heading {
    font-family: Montserrat, sans-serif;
    font-size: 20px;
  }

  .about-full-block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .service-v3-heading-vector {
    right: 20%;
  }
}

@media screen and (max-width: 991px) {
  .column {
    width: 50%;
  }

  ._12-columns {
    flex-flow: wrap;
  }

  .style-guide-nav {
    z-index: 10;
    width: 100%;
    height: 80px;
    background-color: var(--grey);
    border-right-style: none;
    padding-top: 10px;
    padding-bottom: 10px;
    position: -webkit-sticky;
    position: sticky;
    bottom: auto;
    left: 0;
    right: 0;
    overflow: visible;
  }

  .header-logo {
    width: 180px;
  }

  .style-guide-menu {
    z-index: 500;
    background-color: var(--grey);
    border-bottom: 1px solid #e1e5e7;
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
    position: absolute;
    top: 80px;
    bottom: auto;
    left: 0%;
    right: auto;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .05);
  }

  .silde-bar-nav {
    width: auto;
    height: auto;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .style-guide-content {
    width: 100%;
    border-left-style: none;
    margin-left: 0;
    position: static;
  }

  .style-guide-menu-brand {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 15px;
  }

  .style-guide-menu-button {
    background-color: var(--dark);
    color: #fff;
    margin-right: 15px;
    padding: 10px;
  }

  .style-guide-menu-button.w--open {
    background-color: var(--primary);
    color: #fff;
  }

  .style-guide-block {
    margin-bottom: 40px;
  }

  .style-guide-menu-icon {
    font-size: 32px;
  }

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

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

  .section.breadcrumb-section {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }

  .section-sub-title-block {
    margin-top: 20px;
  }

  .hero-heading {
    font-size: 64px;
  }

  .hero-heading-vector {
    top: 68%;
    right: 18%;
  }

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

  .section-heading {
    font-size: 54px;
  }

  .about-left-bottom-image {
    width: 100%;
    margin-top: 40px;
  }

  .mrquree-title {
    font-size: 38px;
  }

  .mrquree-image {
    width: 120px;
  }

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

  .service-heading-vector {
    width: 380px;
    top: 20%;
    right: 25%;
  }

  .service-tabs {
    display: block;
  }

  .service-tabs-menu, .service-tabs-content {
    width: 100%;
  }

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

  .counter-heading-vector {
    width: 320px;
    bottom: 8%;
    right: 20%;
  }

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

  .project-heading-vector {
    width: 260px;
    bottom: 53%;
  }

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

  .project-info-block {
    margin-top: 20px;
  }

  .project-heading {
    font-size: 28px;
  }

  .project-left-arrow {
    top: 10%;
    right: 10%;
  }

  .project-right-arrow {
    top: 10%;
  }

  .team-heading-vector {
    width: 280px;
    top: 23%;
    right: 20%;
  }

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

  .team-title {
    font-size: 28px;
  }

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

  .testimonial-heading-vector {
    bottom: 40%;
    right: 45%;
  }

  .testimonial-bottom-section {
    grid-template-columns: 1fr;
  }

  .testimonial-left-side {
    display: none;
  }

  .testimonial-member-name {
    font-size: 20px;
  }

  .testimonial-position {
    font-size: 16px;
  }

  .testimonial-image {
    width: 70px;
  }

  .blog-heading-vector {
    width: 380px;
    right: -5%;
  }

  .blog-top-grid, .blog-bottom-grid, .blog-collection-list.blog-page {
    grid-template-columns: 1fr;
  }

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

  .footer {
    padding-top: 60px;
  }

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

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

  .footer-list-item {
    font-size: 18px;
  }

  .service-vector-image {
    display: none;
  }

  .nav-link.first {
    padding-left: 20px;
  }

  .dropdown {
    display: block;
  }

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

  .navbar-right-side {
    display: none;
  }

  .menu-button {
    background-color: var(--dark);
    color: #fff;
    border-radius: 5px;
    padding: 12px;
  }

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

  .breadcrumb-title {
    font-size: 58px;
  }

  .blog-single-rich-text {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .team-single-main-image {
    width: 100%;
  }

  .team-details-contact-title {
    margin-top: 20px;
  }

  .team-details-title {
    font-size: 46px;
  }

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

  .service-details-wrapper {
    display: block;
  }

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

  .sidebar-title {
    font-size: 32px;
  }

  .project-detail-top-block {
    display: block;
  }

  .project-detail-image-block {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .project-detail-content {
    max-width: 100%;
  }

  .navbar-wrap-full {
    grid-template-columns: 1fr .5fr;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-wrap {
    grid-template-columns: 1fr .5fr;
  }

  .pexel-wapper {
    grid-template-columns: 1fr 1fr 1fr;
  }

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

  .contact-heading-vector {
    top: auto;
    bottom: 10%;
    left: -5%;
    right: auto;
  }

  .contact-detail-grid {
    grid-template-columns: 1fr;
  }

  .contact-social-block {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .hero-v2-grid {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-v2-center-side {
    display: none;
  }

  .hero-v2-heading {
    font-size: 64px;
  }

  .hero-v2-heading-vector {
    top: 48%;
    right: 12%;
  }

  .navbar-wrap-full-center {
    grid-template-columns: 1fr .5fr;
    padding-left: 0;
    padding-right: 0;
  }

  .service-collection-list, .service-single-collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .about-v2-grid {
    grid-template-columns: 1fr;
  }

  .about-v2-heading-vector {
    width: 320px;
    top: auto;
    bottom: 10%;
    left: auto;
    right: 2%;
  }

  .about-v2-vactor {
    display: none;
  }

  .about-top-v3-grid {
    grid-template-columns: 1fr;
  }

  .about-v3-heading-vector {
    right: 25%;
  }

  .about-v3-grid {
    grid-template-columns: 1fr;
  }

  .background-video {
    height: 450px;
  }

  .faq-heading-vector {
    width: 350px;
    top: 20%;
    right: 31%;
  }

  .faq-top-grid, .faq-grid, .testimonial-top-v2-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-v2-heading-vector {
    top: 45%;
    right: 45%;
  }

  .testimonial-v2-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-v2-left, .testimonial-v2-right {
    display: none;
  }

  .about-heading {
    font-size: 28px;
  }

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

  .service-v3-heading-vector {
    width: 380px;
    top: 20%;
    right: 25%;
  }
}

@media screen and (max-width: 767px) {
  .column.desk-4 {
    width: 100%;
  }

  ._12-columns {
    flex-wrap: wrap;
  }

  .paragraph {
    font-size: 15px;
  }

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

  .header-logo {
    width: 160px;
  }

  .style-guide-menu {
    background-color: #fff;
  }

  .style-guide-content {
    margin-left: 0;
  }

  .style-guide-menu-brand.w--current {
    margin-top: 14px;
  }

  .style-guide-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .style-guide-menu-button {
    padding: 8px;
  }

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

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

  .hero-heading {
    font-size: 54px;
  }

  .hero-heading-vector {
    top: 75%;
    right: 21%;
  }

  .section-heading {
    font-size: 40px;
  }

  .about-heading-vector {
    top: 42%;
    right: 7%;
  }

  .about-left-image-block {
    grid-template-columns: 1fr;
  }

  .about-paragraph {
    margin-top: 0;
  }

  .service-heading-vector {
    width: 330px;
    top: 57%;
    right: 30%;
  }

  .counter-heading-vector {
    width: 250px;
    top: 18%;
    right: -11%;
  }

  .counter-heading {
    font-size: 42px;
  }

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

  .project-heading-vector {
    top: 25%;
    right: 0%;
  }

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

  .project-left-arrow {
    width: 40px;
    height: 40px;
    line-height: 40px;
    right: 10%;
  }

  .project-right-arrow {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

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

  .team-heading-vector {
    top: 20%;
  }

  .team-collection-list, .testimonial-top-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-heading-vector {
    width: 280px;
    right: 35%;
  }

  .testimonial-block {
    padding: 20px;
  }

  .blog-heading-vector {
    width: 280px;
  }

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

  .blog-right-main-block {
    grid-template-columns: 1fr 1fr;
  }

  .blog-right-title {
    font-size: 20px;
  }

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

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

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

  .menu-button {
    padding: 8px;
  }

  .breadcrumb-title {
    font-size: 54px;
  }

  .blog-single-rich-text {
    padding-left: 0;
    padding-right: 0;
  }

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

  .team-details-contact-info-link {
    font-size: 16px;
  }

  .team-details-title {
    font-size: 42px;
    line-height: 54px;
  }

  .sidebar-title {
    font-size: 28px;
  }

  .not-found-404 {
    font-size: 14rem;
    line-height: 11rem;
  }

  ._404-title, .password-title {
    font-size: 54px;
  }

  .pexel-wapper {
    grid-template-columns: 1fr 1fr;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-info-title {
    font-size: 24px;
  }

  .contact-social-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

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

  .contact-form {
    grid-column-gap: 20px;
  }

  .contact-form-title {
    font-size: 28px;
  }

  .hero-v2-title-section {
    top: 24%;
  }

  .hero-v2-heading {
    font-size: 54px;
  }

  .hero-v2-heading-vector {
    top: 45%;
    right: 0%;
  }

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

  .service-icon-box {
    right: -3%;
  }

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

  .about-v2-heading-vector {
    top: 10%;
  }

  .about-v2-inner {
    grid-template-columns: 1fr;
  }

  .about-v3-heading-vector {
    top: 60%;
    right: 32%;
  }

  .about-v3-info-block {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .about-v3-title {
    font-size: 24px;
  }

  .background-video {
    height: 350px;
  }

  .faq-heading-vector {
    top: 65%;
    right: 30%;
  }

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

  .accordion-paragraph {
    width: 100%;
  }

  .accordion-right-title {
    font-size: 28px;
  }

  .testimonial-v2-heading-vector {
    right: 5%;
  }

  .testimonial-v2-block {
    padding: 20px;
  }

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

  .about-full-block {
    padding: 20px;
  }

  .about-full-block-image {
    width: 110px;
  }

  .about-full-block-title {
    font-size: 20px;
  }

  .blog-details-link-title {
    font-size: 22px;
    line-height: 26px;
  }

  .service-v3-heading-vector {
    width: 330px;
    top: 57%;
    right: 30%;
  }
}

@media screen and (max-width: 479px) {
  .column {
    margin-bottom: 0;
  }

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

  .header-logo {
    width: 140px;
  }

  .style-guide-menu-brand {
    margin-left: 16px;
  }

  .style-guide-section {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .button-wrapper.margin-top-30.hero-button {
    margin-left: 0;
  }

  .hero-title-section {
    display: block;
  }

  .section-sub-title-block {
    margin-top: 0;
  }

  .hero-paragraph {
    padding-left: 0;
  }

  .hero-left-image {
    display: none;
  }

  .hero-heading-vector {
    top: 62%;
    right: 5%;
  }

  .section-heading {
    font-size: 34px;
  }

  .section-title-block {
    display: block;
  }

  .mrquree-title {
    font-size: 32px;
  }

  .mrquree-image {
    width: 90px;
  }

  .service-heading-vector {
    width: 270px;
    top: 65%;
    right: 10%;
  }

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

  .service-icon {
    width: 35px;
  }

  .service-icon-wrap {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }

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

  .counter-heading-vector {
    width: 210px;
    top: 45%;
    right: 35%;
  }

  .project-left-arrow {
    top: 15%;
    right: 15%;
  }

  .project-right-arrow {
    top: 15%;
  }

  .team-heading-vector {
    top: 80%;
    right: 15%;
  }

  .team-title {
    font-size: 22px;
  }

  .team-details-social-link {
    width: 35px;
    height: 35px;
    font-size: 12px;
    line-height: 35px;
  }

  .testimonial-heading-vector {
    bottom: 35%;
    right: 10%;
  }

  .testimonial-paragraph {
    font-size: 16px;
  }

  .blog-heading-vector {
    width: 210px;
    bottom: 52%;
    right: 5%;
  }

  .blog-title {
    font-size: 24px;
  }

  .blog-right-main-block {
    grid-template-columns: 1fr;
  }

  .footer-call-link {
    font-size: 26px;
  }

  .footer-link-block {
    border-top-style: none;
    border-bottom-style: none;
    margin-top: 0;
    margin-bottom: 0;
  }

  .footer-list {
    display: block;
  }

  .footer-list-item {
    padding-top: 10px;
  }

  .subscribe-submit-box {
    grid-template-columns: 1.5fr;
    margin-left: 0;
    margin-right: 0;
  }

  .text-input {
    width: 100%;
  }

  .breadcrumb-title {
    font-size: 38px;
  }

  .team-details-contact-title {
    font-size: 24px;
    line-height: 34px;
  }

  .team-details-title {
    font-size: 34px;
    line-height: 48px;
  }

  .team-details-contact-info-title {
    line-height: 20px;
  }

  .sidebar-title {
    font-size: 24px;
  }

  .sidebar-service-link-block {
    padding-left: 10px;
    padding-right: 10px;
  }

  .service-text, .sidebar-icon {
    font-size: 16px;
  }

  .service-detail-images-block {
    grid-template-columns: 1fr;
  }

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

  .project-details-image-block {
    grid-template-columns: 1fr;
  }

  .utility-page-content {
    margin-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .not-found-404 {
    font-size: 9rem;
    line-height: 8rem;
  }

  ._404-title, .password-title {
    font-size: 38px;
  }

  .pexel-wapper {
    grid-template-columns: 1fr;
  }

  .contact-heading-vector {
    width: 200px;
    bottom: 0%;
    left: -12%;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-image {
    width: 60px;
  }

  .contact-right-detail {
    padding: 20px;
  }

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

  .contact-form-title {
    font-size: 26px;
  }

  .hero-v2-title-section {
    width: 100%;
    position: static;
  }

  .hero-v2-heading {
    font-size: 48px;
  }

  .hero-v2-heading-vector {
    width: 280px;
    display: none;
    top: auto;
    bottom: -20%;
    left: 0%;
    right: 0%;
  }

  .service-heading {
    font-size: 20px;
  }

  .service-single-collection-list {
    grid-column-gap: 40px;
  }

  .about-v3-heading-vector {
    top: 45%;
    right: 8%;
  }

  .about-v3-info-block {
    display: block;
  }

  .about-v3-info-number {
    margin-bottom: 15px;
  }

  .background-video {
    height: 140px;
  }

  .faq-heading-vector {
    top: 45%;
  }

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

  .accordion-right-side-block {
    margin-top: 20px;
  }

  .accordion-heading {
    padding-left: 20px;
    padding-right: 20px;
  }

  .accordion-left-side-block {
    margin-top: 40px;
  }

  .accordion-right-title {
    font-size: 24px;
  }

  .testimonial-v2-heading-vector {
    top: 47%;
  }

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

  .contact-main-block {
    padding: 20px;
  }

  .about-heading {
    font-size: 18px;
  }

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

  .about-full-block.one {
    border-right-style: none;
  }

  .about-full-block.three {
    border-bottom: 1px solid rgba(41, 54, 78, .1);
    border-right-style: none;
  }

  .blog-template-pagination {
    display: block;
  }

  .blog-template-next-button {
    text-align: left;
    margin-top: 30px;
  }

  .blog-template-pagination-link.right {
    justify-content: flex-start;
  }

  .service-v3-heading-vector {
    width: 270px;
    top: 45%;
    right: 15%;
  }
}

#w-node-ea779327-9e46-8d1b-0a0c-ca4e32a41c51-4eedff4f {
  justify-self: start;
}

#w-node-ea779327-9e46-8d1b-0a0c-ca4e32a41c73-4eedff4f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-aa1956cb-8b85-4b1b-8322-e55475639099-4eedff4f, #w-node-_7beb5721-c21f-9d70-e8a4-3aa60db62df6-4eedff4f, #w-node-_021f1504-0a76-0ca5-a96b-354e4c228801-4eedff4f, #w-node-aa4d15f7-6953-caf3-eb0e-20808c4ec1dd-4eedff4f, #w-node-ee4dfb0c-bc65-6c01-8402-333b272b615d-4eedff4f, #w-node-edea9478-12af-9075-b2da-994cc5f4a8bf-4eedff4f, #w-node-_759616f1-69c9-d285-0f4b-e73a270ca7eb-4eedff4f, #w-node-b005a43f-4ddf-f1ca-8570-f8d2bbf1cd44-bbf1cd41, #w-node-b005a43f-4ddf-f1ca-8570-f8d2bbf1cd6a-bbf1cd41, #w-node-b005a43f-4ddf-f1ca-8570-f8d2bbf1cd6b-bbf1cd41, #w-node-_99ddd356-b3d9-1d2e-6d92-70945f153353-4eedff52, #w-node-eb4771bf-6d64-4596-0591-a5092fd15126-4eedff52, #w-node-_2d2371b8-5022-7cdc-b357-1146edd4e047-4eedff52, #w-node-e1b9d455-cec9-fffe-fabd-e9fa617ab522-4eedff52, #w-node-_152cc223-7fd3-df88-d0a8-08315344e911-4eedff52, #w-node-_9dba2bd5-fb7b-3b71-d2a3-e1d422ce6f1d-4eedff52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2f094b58-e43f-ea40-fb50-d577a5d4f711-a5d4f70e {
  justify-self: start;
}

#w-node-_2f094b58-e43f-ea40-fb50-d577a5d4f713-a5d4f70e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2f094b58-e43f-ea40-fb50-d577a5d4f733-a5d4f70e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_7c695d13-cec6-3fea-ea62-8de545914cf0-4eedff56, #w-node-_0053dca3-bb69-b6ef-7c25-3cf4f82120ee-4eedff56 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_63ca9051-86e0-51f7-75d4-9f28ba70fb06-4eedff56 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_63ca9051-86e0-51f7-75d4-9f28ba70fb08-4eedff56 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-cc289eaf-71bb-67d1-0fe5-5a00ce6fe2da-4eedff58, #w-node-_50651c7f-d307-58f5-b211-28e7f4a8922f-4eedff59, #w-node-e47bff87-e7eb-4d43-1702-e26daae93a9c-4eedff59, #w-node-ecf96367-76b9-d6b6-b253-f740cd6d129b-4eedff5a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ecf96367-76b9-d6b6-b253-f740cd6d12d0-4eedff5a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-aa2de2bb-9020-1799-9d4a-6c45185ae1fc-4eedff5b {
  justify-self: start;
}

#w-node-aa2de2bb-9020-1799-9d4a-6c45185ae21e-4eedff5b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_8e624faf-51bf-92c2-0b20-982e68c57463-4eedff5b, #w-node-_200ee2a2-ee98-5b9e-2f61-3a6a08d83977-4eedff5b, #w-node-_4ca61a2e-ba15-cdf6-d7f8-5b2c25382a1b-4eedff5b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7c6056da-53cb-1b99-f7bb-9f241dcde56c-4eedff5b {
  justify-self: end;
}

#w-node-_79883759-a02d-1e86-b7a5-64a67acdabcb-4eedff5b, #w-node-aea6a0af-3322-8d90-c54b-caca0a0b82a0-4eedff5b, #w-node-_4e0f7072-6f5a-e916-c9c8-bd61036146cd-4eedff5b, #w-node-ad4098c3-07a3-e25b-10c6-81ca4cd1159b-4eedff5b, #w-node-_618f1530-16e1-f6b7-6e06-3e810ca4c524-4eedff5b, #w-node-_049a1313-5a4f-3f5b-f8c0-79bbb51af34b-4eedff5b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e34ab4b4-92f1-2890-b1d5-a989ca5e9d99-4eedff5b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e34ab4b4-92f1-2890-b1d5-a989ca5e9d9b-4eedff5b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-aa5c1142-cf32-5d18-1c0b-71a051d94699-4eedff5f, #w-node-aa5c1142-cf32-5d18-1c0b-71a051d9469d-4eedff5f, #w-node-aa5c1142-cf32-5d18-1c0b-71a051d946a1-4eedff5f, #w-node-aa5c1142-cf32-5d18-1c0b-71a051d946a5-4eedff5f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1920px) {
  #w-node-_759616f1-69c9-d285-0f4b-e73a270ca7eb-4eedff4f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-ea779327-9e46-8d1b-0a0c-ca4e32a41c76-4eedff4f, #w-node-_2f094b58-e43f-ea40-fb50-d577a5d4f73a-a5d4f70e {
    justify-self: end;
  }

  #w-node-ecf96367-76b9-d6b6-b253-f740cd6d12d0-4eedff5a {
    order: -9999;
  }

  #w-node-aa2de2bb-9020-1799-9d4a-6c45185ae225-4eedff5b {
    justify-self: end;
  }

  #w-node-_7c6056da-53cb-1b99-f7bb-9f241dcde56c-4eedff5b {
    justify-self: start;
  }
}

@media screen and (max-width: 767px) {
  #w-node-b005a43f-4ddf-f1ca-8570-f8d2bbf1cd4c-bbf1cd41 {
    justify-self: start;
  }
}


@font-face {
  font-family: 'Fa Brands 400';
  src: url('../fonts/fa-brands-400.woff2') format('woff2'), url('../fonts/fa-brands-400.eot') format('embedded-opentype'), url('../fonts/fa-brands-400.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Solid 900';
  src: url('../fonts/fa-solid-900.woff2') format('woff2'), url('../fonts/fa-solid-900.eot') format('embedded-opentype'), url('../fonts/fa-solid-900.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.woff2') format('woff2'), url('../fonts/fa-regular-400.eot') format('embedded-opentype'), url('../fonts/fa-regular-400.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}