:root {
  --text-color: #001f3f;
  --dark: black;
  --primary: #f47e20;
  --grey: #f7f7f7;
  --white: white;
  --green: #06c755;
  --main-font: "Noto Sans JP", sans-serif;
  --darkblue: #001f3f;
  --spark-library--foreground-secondary: rgba(0, 0, 0, .76);
  --spark-library--background--interactive: #f0ecfd;
  --spark-library--black: black;
  --spark-library--light-steel-purple: #a695fb;
  --spark-library--foreground-interactive: #5532fa;
  --elements-webflow-library--neutral--300: #eff0f6;
  --elements-webflow-library--neutral--100: white;
  --elements-webflow-library--neutral--800: #211f54;
  --elements-webflow-library--accent--primary-1: #4a3aff;
  --elements-webflow-library--secondary--color-2: #f2f1ff;
  --elements-webflow-library--secondary--color-1: #281ca5;
  --sub-font: "Roboto Condensed", sans-serif;
  --elements-webflow-library--neutral--600: #6e7191;
  --elements-webflow-library--general--shadow-02: rgba(20, 20, 43, .08);
  --elements-webflow-library--general--shadow-03: rgba(20, 20, 43, .1);
}

.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: Sarabun, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8em;
}

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

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

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

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

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

h6 {
  color: var(--dark);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3em;
}

p {
  margin-bottom: 10px;
}

a {
  color: var(--dark);
  text-transform: uppercase;
  font-family: Oxanium, sans-serif;
  font-weight: 600;
  text-decoration: none;
}

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

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

blockquote {
  border-left: 5px solid var(--primary);
  background-color: var(--grey);
  margin-bottom: 10px;
  padding: 30px;
  font-size: 20px;
  font-style: italic;
  line-height: 2em;
}

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

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

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

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

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

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

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

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

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

@media (hover:hover){
  .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-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-left: 240px;
  display: flex;
}

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

.paragraph {
  margin-bottom: 10px;
}

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

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

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

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

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

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

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

.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-section-header {
  margin-bottom: 40px;
}

.text-white {
  color: #fff;
}

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

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

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

.header-logo {
  width: 300px;
}

._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-menu {
  width: 100%;
}

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

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

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

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

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

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

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

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

.button-primary {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--green);
  color: var(--white);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  width: 256px;
  height: 70px;
  padding: 15px 10px;
  font-weight: 500;
  transition: all .3s;
  display: flex;
  transform: skew(-25deg);
}

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

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

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

.button-primary.margin-top-30.pricing {
  margin-left: 15px;
}

@media (hover:hover){
  .button-primary.primary-white:hover {
    background-color: var(--white);
    color: var(--primary);
  }
}

.button-primary.flow {
	margin-top: 40px;
	margin-left: 20px;
}

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

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

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

.section.gallary-section {
  background-color: var(--dark);
  display: none;
  position: relative;
  overflow: hidden;
}

.section.counter-section {
  display: none;
}

.section.pricing-section {
  background-color: var(--grey);
  display: none;
}

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

.section.testimonial-section {
  padding-top: 0;
  padding-bottom: 0;
  display: none;
  position: relative;
  overflow: hidden;
}

.section.hero-v2-section {
  background-color: var(--dark);
  padding-top: 160px;
  padding-bottom: 160px;
  position: relative;
}

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

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

.section.video-section {
  position: relative;
}

.section.about-v3-grid {
  background-color: rgba(0, 0, 0, 0);
  padding-bottom: 150px;
  position: relative;
}

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

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

.section.about-v4-section {
  position: relative;
}

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

.section.contact-list-section {
  position: relative;
}

.section.contact-form-section {
  margin-top: -100px;
  padding-top: 0;
  position: relative;
}

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

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

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

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

.hero-heading-section-block {
  white-space: nowrap;
  position: relative;
}

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

.hero-heading-span {
  font-family: var(--main-font);
  color: var(--primary);
  font-size: 64px;
  line-height: 109px;
}

@media screen and (max-width:1100px){
  .hero-heading-span{
    font-size:56px;
    line-height:98px;
  }
}

.button-text {
  font-family: var(--main-font);
  letter-spacing: 1.8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4em;
  transform: skew(25deg);
}

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

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

.hero-heading-beside {
  color: rgba(0, 0, 0, .03);
  white-space: normal;
  font-size: 160px;
  position: absolute;
  top: -15%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.hero-heading-beside.fv {
  top: -20%;
}

.about-grid {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  align-items: center;
  position: relative;
}

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

.about-vector {
  z-index: 9;
  width: 260px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: -5%;
  right: auto;
}

.about-left-image-one {
  transform: skew(-10deg);
}

.about-left-image-two {
  width: 320px;
  position: absolute;
  top: auto;
  bottom: -10%;
  left: auto;
  right: 25%;
  transform: skew(-10deg);
}

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

.section-heading-block {
  position: relative;
}

.section-heading-block.center {
  margin-bottom: 40px;
  padding-left: 10%;
  padding-right: 10%;
}

.section-heading {
  font-family: var(--main-font);
  color: var(--text-color);
  letter-spacing: .1em;
  text-transform: capitalize;
  font-size: 56px;
  line-height: 88px;
}

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

.section-heading.flow {
  padding-top: 20px;
}

.section-heading-span {
  color: var(--primary);
  letter-spacing: .1em;
}

.section-heading-beside {
  z-index: 1;
  color: rgba(0, 0, 0, .06);
  font-size: 120px;
  position: absolute;
  top: -15%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.section-heading-beside.grey {
  color: rgba(0, 0, 0, .03);
}

.section-heading-beside.grey.commit {
  top: -25%;
}

.section-heading-beside.dark {
  color: rgba(255, 255, 255, .1);
}

.section-heading-beside.dark.center {
  top: -40%;
}

.section-heading-beside.center {
  top: -100%;
}

.section-heading-beside.center.dark {
  color: rgba(255, 255, 255, .1);
}

.section-heading-beside.center.service {
  top: -60%;
}

.section-heading-beside.team {
  top: -40%;
}

.section-heading-beside.center {
  display: block;
  top: -40%;
}

.section-heading-beside.feature {
  top: -11%;
}

.about-paragraph {
  font-family: var(--main-font);
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}

.about-paragraph.cp, .about-paragraph.sp {
  display: none;
}

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

.service-background-image {
  opacity: .1;
  width: 480px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.gallary-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: .75fr .5fr 1fr .5fr .75fr;
  align-items: center;
}

.lightbox-image {
  transform: skew(-10deg);
}

.lightbox-image.four {
  margin-left: -5px;
}

.lightbox-image.nine {
  margin-left: 60px;
}

.lightbox-image.ten {
  width: 220px;
  margin-left: 140px;
}

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

.counter-block.bottom {
  margin-top: 60px;
}

.counter-image {
  width: 80px;
}

.counter-number {
  margin-top: 10px;
  margin-bottom: 0;
}

.counter-title {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
}

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

.pricing-main-block {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: center;
  padding: 45px 90px;
  display: grid;
}

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

.pricing-number {
  font-size: 52px;
}

.superscript {
  color: var(--primary);
  font-family: Sarabun, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

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

.pricing-list-item {
  position: relative;
}

.pricing-list-item-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  padding-bottom: 10px;
  display: flex;
}

.pricing-list-item-block.last {
  padding-bottom: 0;
}

.pricing-icon {
  color: var(--primary);
  font-family: "Fa 400", sans-serif;
  font-size: 28px;
}

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

.pricing-feature {
  font-size: 20px;
}

.pricing-vector {
  opacity: .15;
  width: 160px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: -95%;
}

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

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

.team-vector {
  opacity: .15;
  width: 260px;
  position: absolute;
  top: 65%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.gallary-vector {
  width: 260px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.testimonial-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
}

.testimonial-left-block {
  background-color: var(--grey);
  margin-left: -280px;
  padding: 120px 60px 120px 280px;
  position: relative;
}

.testimonial-name-position {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
}

.left-arrow {
  display: none;
  top: 0%;
  bottom: 0%;
  left: -10%;
  right: auto;
}

.testimonial-member-info {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.right-arrow {
  display: none;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: -10%;
}

.testimonial-box {
  padding: 0;
}

.mask {
  margin-bottom: -90px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-name {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
}

.testimonial-detail {
  margin-bottom: 0;
  font-size: 20px;
}

.testimonial-slide-nav {
  top: auto;
  bottom: 20%;
  left: auto;
  right: 10%;
}

.testimonial-image {
  width: 90px;
}

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

.testimonial-block-detail {
  background-color: var(--white);
  padding: 40px;
}

.testimonial-right-block {
  background-color: var(--primary);
  margin-right: -280px;
  padding-top: 120px;
  padding-left: 45px;
  position: relative;
}

.testimonial-right-top {
  align-items: center;
  display: flex;
}

.testimonial-number-text {
  color: var(--white);
  text-transform: uppercase;
  flex-direction: column;
  font-weight: 600;
  transform: translate(-50px)rotate(-90deg);
}

.testimonial-number {
  color: var(--white);
  margin-bottom: 0;
  font-size: 72px;
  transform: translate(-90px);
}

.testimonial-vector {
  width: 260px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.testimonial-right-image {
  margin-left: -200px;
}

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

.empty-state {
  text-align: center;
  background-color: #08ac10;
  padding: 30px;
  font-family: Montserrat, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.team-block {
  text-align: center;
  position: relative;
}

.team-social-link-block {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: absolute;
  top: 5%;
  bottom: auto;
  left: auto;
  right: 7%;
}

.team-social-link {
  background-color: var(--grey);
  width: 60px;
  height: 60px;
  font-family: "Fa Brands 400", sans-serif;
  font-weight: 400;
  line-height: 60px;
  transition: all .2s;
  display: block;
}

@media (hover:hover){
  .team-social-link:hover {
    background-color: var(--primary);
    color: var(--white);
  }
}

.team-info-block {
  text-align: left;
  margin-top: 20px;
}

.team-info-block.center {
  text-align: center;
}

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

.team-position {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
}

.team-details-social-link {
  background-color: var(--dark);
  color: #fff;
  text-align: center;
  width: 50px;
  height: 50px;
  margin-left: 0;
  margin-right: 12px;
  font-family: "Fa Brands 400", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 50px;
  transition: background-color .3s;
  display: inline-block;
}

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

.sticky-detail {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
}

.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);
  width: 100%;
}

.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: 40px;
}

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

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

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

.service-list-item-link {
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  justify-content: space-around;
  padding-top: 45px;
  padding-bottom: 45px;
  transition: all .2s;
  display: flex;
  position: relative;
}

.service-image-block {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -50px;
  right: -60%;
}

.service-image-inner-block {
  width: 40vh;
  height: 30vh;
}

.service-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: skew(-10deg);
}

.service-detail-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 2.75fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  justify-items: stretch;
  width: 100%;
  display: flex;
}

.service-number {
  font-family: var(--main-font);
  font-size: 50px;
  font-weight: 700;
}

.service-title {
  font-family: var(--main-font);
  color: var(--text-color);
  letter-spacing: .1em;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1em;
}

.service-subtitle {
  font-family: var(--main-font);
  color: var(--primary);
  font-size: 16px;
  line-height: 32px;
}

.blog-list {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.blog-main-box {
  position: relative;
}

.blog-date {
  color: var(--primary);
  text-transform: uppercase;
  font-family: Sarabun, sans-serif;
}

.blog-main-block {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1.75fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}

.blog-button-blog {
  margin-top: 20px;
}

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

.blog-title {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 28px;
}

.blog-meta-box {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
}

.blog-image-inner-block {
  overflow: hidden;
}

.blog-link-button {
  color: var(--primary);
  transition: all .2s;
}

@media (hover:hover){
  .blog-link-button:hover {
    color: var(--dark);
  }
}

.testimonial-background-image {
  opacity: .7;
  width: 360px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

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

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

.dropdown {
  font-weight: 500;
}

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

.dropdown-list {
  background-color: #f8f8f8;
  width: 200px;
  box-shadow: 0 0 20px rgba(41, 54, 78, .05);
}

.nav-link {
  color: var(--dark);
  text-transform: capitalize;
  padding-right: 20px;
  font-family: Oxanium, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

@media (hover:hover){
  .nav-link:hover {
    color: var(--primary);
  }
}

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

.dropdown-link {
  text-transform: capitalize;
  font-size: 16px;
}

.dropdown-link.w--current {
  color: var(--primary);
  text-decoration: underline;
}

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

.footer {
  background-color: var(--dark);
  padding-top: 90px;
  padding-bottom: 0;
  position: relative;
}

.footer-top {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr .75fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-bottom: 60px;
  display: grid;
}

.footer-top-text {
  color: var(--white);
  font-size: 38px;
}

.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 {
  background-color: var(--white);
  border: 1px solid #fff;
  height: 56px;
  padding: 20px 0 20px 16px;
  font-family: Oxanium, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8px;
}

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

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

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

@media (hover:hover){
  .text-input.newslatter:hover {
    border-color: var(--primary);
    color: #fff;
  }
}

.text-input.newslatter:focus {
  border-color: var(--primary);
  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;
  color: #2b2b2e;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  border: 1px #2b2b2e;
  width: 40px;
  height: auto;
  padding: 14px 40px 14px 20px;
  transition: all .3s;
  display: inline-block;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

@media (hover:hover){
  .newslatter-button:hover {
    color: #fff;
    text-decoration: none;
  }
}

.footer-submit-button-with-icon {
  color: #fff;
  width: 40px;
  height: auto;
  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-center {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 60px;
  display: grid;
}

.footer-title {
  color: #fff;
  margin-bottom: 20px;
  font-size: 32px;
}

.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-list-item {
  padding-bottom: 5px;
}

.footer-link {
  color: #fff;
}

@media (hover:hover){
  .footer-link:hover {
    text-decoration: none;
  }
}

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

.footer-paragraph {
  color: var(--grey);
}

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

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

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

.footer-social-link {
  color: #fff;
  font-family: "Fa Brands 400", sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-copyright {
  color: #fff;
}

.footer-cpoyright-link {
  color: #fff;
  text-transform: capitalize;
  font-weight: 400;
}

.hero-v2-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  align-items: center;
}

.hero-v2-left {
  z-index: 1;
  position: relative;
}

.hero-v2-right {
  position: relative;
}

.hero-v2-image {
  transform: skew(-10deg);
}

.hero-v2-vector-image {
  z-index: 9;
  width: 260px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: -10%;
  right: auto;
}

.hero-v2-vector-left-image {
  opacity: .4;
  width: 420px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.navbar-wrap {
  grid-column-gap: 20px;
  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;
}

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

.about-v2-left-detail {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
}

.about-v2-icon {
  background-color: var(--white);
  width: 100px;
  padding: 10px;
}

.about-v2-detail-title {
  margin-bottom: 0;
  font-size: 24px;
}

.about-v2-paragraph {
  margin-bottom: 0;
}

.about-v2-vector {
  width: 260px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.service-grid-list {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  justify-items: center;
  display: flex;
}

.service-collection-item {
  width: 30%;
}

.service-grid-main-block {
  background-color: var(--grey);
  padding: 30px;
}

.service-icon-image {
  text-align: center;
  width: 80px;
  font-family: "Fa Solid 900", sans-serif;
  font-weight: 400;
  line-height: 40px;
}

.service-number-v2 {
  font-family: var(--main-font);
  color: var(--text-color);
  margin-bottom: 0;
}

.service-top-block {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.service-heading-link {
  display: block;
}

.service-image-link-block {
  margin-top: 40px;
  overflow: hidden;
  transform: skew(-4deg);
}

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

.process-left-side.commit {
  margin-top: 40px;
}

.process-paragraph {
  font-family: var(--main-font);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 32px;
}

.process-paragraph.sp {
  display: none;
}

.process-main-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.process-main-block.center {
  margin-top: 30px;
  margin-bottom: 30px;
}

.process-number-block {
  background-color: var(--primary);
  text-align: center;
  border-radius: 100%;
  width: 80px;
  height: 80px;
}

.process-number-block.center {
  background-color: var(--darkblue);
}

.process-number {
  font-family: var(--main-font);
  color: var(--white);
  margin-bottom: 0;
  font-size: 40px;
  line-height: 80px;
}

.process-title {
  font-family: var(--main-font);
  color: var(--text-color);
  letter-spacing: .1em;
  font-size: 20px;
  line-height: 1em;
}

.video-main-block {
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.video-image {
  position: relative;
}

.video-button {
  z-index: 9;
  background-color: var(--primary);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  top: 40%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

@media (hover:hover){
  .video-button:hover {
    text-decoration: none;
  }
}

.video-button-icon {
  color: var(--white);
  font-family: "Fa Solid 900", sans-serif;
  font-size: 40px;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s;
}

@media (hover:hover){
  .video-button-icon:hover {
    color: var(--white);
    text-decoration: none;
  }
}

.video-vactor-image {
  width: 260px;
  position: absolute;
  top: auto;
  bottom: -5%;
  left: 0%;
  right: auto;
}

.video-info-block {
  width: 30%;
  position: absolute;
  top: 30%;
  bottom: auto;
  left: auto;
  right: 1%;
}

.video-title {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 40px;
}

.video-info {
  background-color: var(--dark);
  padding: 30px;
  display: inline-block;
}

.video-paragraph {
  color: var(--white);
  margin-bottom: 20px;
}

.time-list {
  margin-bottom: 0;
  padding-left: 20px;
}

.time-list-item {
  color: var(--white);
  padding-bottom: 16px;
}

.about-v3-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  align-items: center;
}

.about-v3-left-side {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.about-v3-info {
  background-color: var(--primary);
  text-align: center;
  border-radius: 100%;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 260px;
  padding: 20px;
  display: flex;
}

.about-v3-info.white {
  background-color: var(--white);
}

.about-v3-heading {
  color: var(--white);
  margin-bottom: 0;
  font-size: 80px;
}

.about-v3-heading.primary {
  color: var(--primary);
}

.about-v3-sub-title {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
}

.about-v3-sub-title.dark {
  color: var(--dark);
}

.about-v3-image {
  transform: skew(-5deg);
}

.about-v3-paragraph {
  font-family: var(--main-font);
  color: var(--text-color);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 32px;
}

.about-v3-info-block {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.about-v3-info-block.last {
  margin-bottom: 60px;
}

.about-v3-icon-block {
  background-color: var(--primary);
  text-align: center;
  border-radius: 100%;
  width: 80px;
  height: 80px;
  line-height: 80px;
}

.about-v3-icon {
  width: 35px;
  height: 35px;
}

.about-v3-side-heading {
  font-family: var(--main-font);
  color: var(--text-color);
  letter-spacing: .1em;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1em;
}

.about-v3-vector {
  width: 260px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.contact-detail-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
}

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

.contact-left-info {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 30px;
  display: grid;
}

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

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

.contact-address {
  color: var(--dark);
}

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

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

.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;
  grid-auto-columns: 1fr;
  display: grid;
}

.field-block {
  color: var(--dark);
  font-weight: 600;
}

.button {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--primary);
  color: #fff;
  text-transform: uppercase;
  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;
}

@media (hover:hover){
  .button:hover {
    background-color: var(--dark);
    color: #fff;
    text-decoration: none;
  }
}

.testimonial-tabs-menu {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  display: flex;
}

.testimonial-tabs-content {
  margin-top: 40px;
}

.testimonial-tab-link {
  background-color: var(--white);
  padding: 10px;
}

.testimonial-tab-link.w--current {
  background-color: var(--primary);
}

.testimonial-tab-image {
  width: 80px;
}

.testimonial-v2-block {
  z-index: 9;
  background-color: var(--white);
  text-align: center;
  padding: 60px 90px;
  position: relative;
}

.testimonial-v2-rate-icon-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: center;
  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-size: 20px;
  font-style: italic;
  line-height: 2;
}

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

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

.testimonial-position {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
}

.testimonial-v2-vector-image {
  z-index: -1;
  opacity: .07;
  width: 260px;
  position: absolute;
  top: auto;
  bottom: 20%;
  left: 40%;
  right: 0%;
}

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

.pricing-main-v2-block {
  background-color: var(--grey);
  padding: 30px;
}

.pricing-paragraph {
  margin-bottom: 20px;
}

.pricing-list-v2-item-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  padding-bottom: 15px;
  display: flex;
}

.pricing-list-v2-item-block.last {
  padding-bottom: 0;
}

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

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

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

.breadcrumb-link {
  text-transform: capitalize;
}

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

.team-single-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr .75fr;
}

.blog-detail-single-title {
  font-size: 56px;
  line-height: 64px;
}

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

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

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

.blog-details-link-title {
  color: var(--white);
  font-size: 18px;
  line-height: 32px;
  display: block;
  position: relative;
}

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

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

.blog-template-label {
  color: #fff;
  margin-bottom: 0;
}

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

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

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

@media (hover:hover){
  .blog-template-pagination-link:hover {
    color: #d6fb00;
    text-decoration: none;
  }
}

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

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

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

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

._404-title {
  font-family: var(--main-font);
  color: var(--text-color);
}

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

.about-v4-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  align-items: center;
}

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

.about-v4-image {
  width: 100%;
  height: 100%;
  transform: skew(-3deg);
}

.about-v4-image-info-block {
  background-color: var(--primary);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  transform: skew(-3deg);
}

.about-v4-left-side-title {
  color: var(--white);
  margin-bottom: 0;
}

.about-v4-left-side-sub-title {
  color: var(--white);
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600;
}

.about-v4-vector {
  width: 260px;
  position: absolute;
  top: -10%;
  bottom: auto;
  left: auto;
  right: 0%;
}

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

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

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

.service-v2-heading {
  margin-bottom: 0;
  font-size: 24px;
}

.service-v2-arrow {
  color: var(--dark);
  font-family: "Fa Solid 900", sans-serif;
  font-size: 28px;
  font-weight: 400;
}

.service-v2-vector {
  width: 260px;
  position: absolute;
  top: auto;
  bottom: -15%;
  left: 0%;
  right: auto;
}

.counter-v2-vector {
  width: 260px;
  position: absolute;
  top: auto;
  bottom: -10%;
  left: auto;
  right: 0%;
}

.testimonial-v3-block {
  z-index: 9;
  background-color: var(--grey);
  text-align: center;
  padding: 60px 90px;
  position: relative;
}

.licenses-content-wrapper {
  background-color: #f8f8f8;
  margin-bottom: 40px;
  padding: 32px 20px;
}

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

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

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

.footer-vector {
  opacity: .1;
  width: 260px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 15%;
  right: auto;
}

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

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

.contact-detail-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 40px;
  display: grid;
}

.contact-detail-icon-block {
  background-color: var(--primary);
  text-align: center;
  border-radius: 100%;
  width: 80px;
  height: 80px;
}

.contact-detail-icon {
  width: 80px;
  height: 80px;
  padding: 20px;
}

.contact-detail-heading {
  margin-bottom: 0;
  font-size: 24px;
}

.contact-detail-link {
  text-transform: lowercase;
}

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

.map {
  border-radius: 5px;
}

.contact-form-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--grey);
  grid-template-rows: auto;
  grid-template-columns: 2.5fr 1fr;
  align-items: center;
}

.contact-form-detail {
  padding-left: 40px;
  padding-right: 40px;
}

.contact-vector {
  width: 260px;
  position: absolute;
  top: -10%;
  bottom: auto;
  left: auto;
  right: 0%;
}

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

.changelog-number-wrap {
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  width: 80px;
  height: 50px;
  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;
}

.service-v2-title {
  font-family: var(--main-font);
  color: var(--text-color);
  font-size: 26px;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.about-v4-paragraph {
  margin-bottom: 0;
}

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

.blog-template {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

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

.blog-template-label-icon {
  color: var(--white);
  font-family: "Fa Solid 900", sans-serif;
  font-size: 22px;
  font-weight: 400;
}

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

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

.banner-contect-title {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 500;
}

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

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

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

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

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

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

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

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

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

.contect-link-block {
  color: #fff;
  font-size: 28px;
}

@media (hover:hover){
  .contect-link-block:hover {
    color: #fff;
    text-decoration: underline;
  }
}

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

.banner-title {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
}

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

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

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

.sidebar-service-link-block {
  background-color: #fff;
  justify-content: space-between;
  padding: 12px 20px;
  display: flex;
}

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

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

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

.accordion-title {
  font-family: var(--main-font);
  color: var(--text-color);
  margin-bottom: 0;
  font-size: 20px;
}

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

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

.accordion-main-block {
  width: 80%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.accordion-paragraph {
  font-family: var(--main-font);
  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;
}

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

.breadcrumb-paragraph {
  color: var(--dark);
}

.spark-small-sub-paragraph {
  color: var(--spark-library--foreground-secondary);
  margin-bottom: 0;
  font-size: .8rem;
  line-height: 1.3;
}

.spark-bold-heading {
  margin-bottom: .5rem;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
}

.spark-bold-heading.spark-card-title {
  font-size: 1.2rem;
}

.spark-card-details {
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 590px;
  padding-bottom: 32px;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
}

.spark-square-image-card {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: auto;
  display: block;
}

.spark-wrapped-card {
  grid-column-gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.spark-wrapped-card.spark-stacked {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  transition: border-color .15s;
}

.spark-two-column-grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.spark-side-tabs-content {
  width: 60%;
  display: block;
}

.spark-side-flat-tab {
  border-bottom: 3px solid var(--spark-library--background--interactive);
  color: var(--spark-library--black);
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  padding: 48px 24px;
  transition: border-color .3s, color .15s;
}

@media (hover:hover){
  .spark-side-flat-tab:hover {
    border-bottom-color: var(--spark-library--light-steel-purple);
    opacity: 1;
    color: var(--spark-library--foreground-interactive);
  }
}

.spark-side-flat-tab.w--current {
  border-bottom-color: var(--spark-library--foreground-interactive);
  color: var(--spark-library--foreground-interactive);
  background-color: rgba(0, 0, 0, 0);
}

.spark-stacked-flat-tabs-menu {
  float: left;
  grid-column-gap: 0px;
  flex-direction: column;
  justify-content: center;
  width: 30%;
  margin-right: 10%;
  display: inline-block;
}

.spark-side-flat-tab-parent {
  width: 100%;
  display: block;
}

.spark-secondary-paragraph {
  color: var(--spark-library--foreground-secondary);
  margin-bottom: 64px;
}

.spark-secondary-paragraph.qa {
  font-family: var(--main-font);
  color: var(--text-color);
  font-size: 16px;
  line-height: 32px;
}

.spark-centered-900 {
  text-align: left;
  width: 80%;
  max-width: 1400px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.spark-container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.spark-section {
  width: 100%;
  padding: 120px 64px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  position: relative;
}

.spark-section h5 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.spark-section h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.spark-section h1 {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.1;
}

.spark-section h2 {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.spark-section h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

.spark-section h6 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.5;
}

.spark-section ul {
  margin-top: 2rem;
  margin-bottom: 3rem;
  padding-left: 14px;
}

.spark-section li {
  margin-bottom: .5rem;
}

.brix---cta-v2-floating-item-02 {
  position: absolute;
  top: auto;
  bottom: 15%;
  left: auto;
  right: -1%;
}

.brix---cta-v2-floating-item-01 {
  z-index: 0;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.brix---btn-secondary-white {
  border: 1px solid var(--elements-webflow-library--neutral--300);
  color: var(--elements-webflow-library--neutral--100);
  text-align: center;
  transform-style: preserve-3d;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 48px;
  padding: 26px 38px;
  font-size: 18px;
  line-height: 20px;
  transition: border-color .3s, transform .3s, background-color .3s, color .3s;
  box-shadow: 0 4px 10px rgba(20, 20, 43, .04);
}

@media (hover:hover){
  .brix---btn-secondary-white:hover {
    border-color: var(--elements-webflow-library--neutral--100);
    background-color: var(--elements-webflow-library--neutral--100);
    color: var(--elements-webflow-library--neutral--800);
    transform: translate3d(0, -3px, .01px);
  }
}

.brix---btn-primary-white {
  background-color: var(--elements-webflow-library--neutral--100);
  color: var(--elements-webflow-library--accent--primary-1);
  text-align: center;
  transform-style: preserve-3d;
  border-radius: 48px;
  justify-content: center;
  padding: 26px 38px;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .3s, transform .3s, color .3s;
}

@media (hover:hover){
  .brix---btn-primary-white:hover {
    background-color: var(--elements-webflow-library--secondary--color-2);
    color: var(--elements-webflow-library--accent--primary-1);
    transform: translate3d(0, -3px, .01px);
  }
}

.brix---button-row-left {
  margin-right: 40px;
}

.brix---buttons-row-center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.brix---buttons-row-center.ft {
  justify-content: flex-end;
  align-items: center;
  margin-right: 20px;
}

.brix---heading-h2-size {
  font-family: var(--main-font);
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 64px;
}

.brix---heading-h2-size.sp {
  display: none;
}

.brix---color-neutral-100 {
  color: var(--elements-webflow-library--neutral--100);
}

.brix---mg-bottom-40px {
  margin-bottom: 40px;
}

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

.brix---inner-container-600px---center {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.brix---container-default {
  max-width: 1400px;
  padding-left: 24px;
  padding-right: 24px;
}

.brix---z-index-1 {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.brix---cta-section {
  background-color: var(--primary);
  padding-top: 85px;
  padding-bottom: 85px;
  position: relative;
  overflow: hidden;
}

.brix---cta-v1-floating-item-02 {
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: -2%;
}

.brix---cta-v1-floating-item-01 {
  z-index: 0;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: -1%;
  right: auto;
}

.brix---cta-card {
  background-color: var(--elements-webflow-library--accent--primary-1);
  border-radius: 30px;
  padding: 110px 60px;
  position: relative;
}

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

.brix---icon-square-36px {
  background-color: var(--elements-webflow-library--secondary--color-2);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 36px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
  text-decoration: none;
  transition: transform .3s, background-color .3s, color .3s;
  display: flex;
  overflow: hidden;
}

@media (hover:hover){
  .brix---icon-square-36px:hover {
    transform: scale(.92);
  }
}

.brix---social-media-grid-right---t-center {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, 36px);
  justify-content: end;
  align-self: center;
  justify-items: end;
}

.brix---paragraph-link {
  color: var(--elements-webflow-library--accent--primary-1);
  text-decoration: underline;
  transition: color .3s;
}
@media (hover:hover){
  .brix---paragraph-link:hover {
    color: var(--elements-webflow-library--secondary--color-1);
  }
}

.brix---mg-bottom-0 {
  margin-bottom: 0;
}

.brix---mg-bottom-0.ft {
  font-family: var(--sub-font);
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  line-height: 1em;
}

.brix---mg-bottom-0.ft.link {
  font-family: var(--main-font);
  text-align: right;
  letter-spacing: .1em;
  font-size: 12px;
}

.brix---grid-footer-bottom-v2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr .4fr;
  align-items: center;
}

.brix---footer-bottom-v2 {
  border-top: 1px solid var(--elements-webflow-library--neutral--300);
  color: var(--elements-webflow-library--neutral--600);
  text-align: left;
  padding-top: 32px;
  padding-bottom: 32px;
  font-size: 18px;
}

.brix---footer-bottom-v2.ft {
  border-top-style: none;
}

.brix---error-message {
  color: #ff5a65;
  text-align: center;
  background-color: #ffeff0;
  border-radius: 16px;
  margin-top: 20px;
  padding: 20px 24px;
  font-size: 18px;
  line-height: 30px;
}

.brix---icon-success-message {
  margin-bottom: 10px;
}

.brix---success-message {
  background-color: var(--elements-webflow-library--accent--primary-1);
  color: var(--elements-webflow-library--neutral--100);
  border-radius: 24px;
  padding: 28px 28px 32px;
  font-size: 18px;
  line-height: 30px;
}

.brix---btn-primary-small {
  background-color: var(--elements-webflow-library--accent--primary-1);
  color: var(--elements-webflow-library--neutral--100);
  text-align: center;
  transform-style: preserve-3d;
  border-radius: 48px;
  justify-content: center;
  padding: 18px 24px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-decoration: none;
  transition: background-color .3s, transform .3s, color .3s;
}

@media (hover:hover){
  .brix---btn-primary-small:hover {
    background-color: var(--elements-webflow-library--secondary--color-1);
    color: var(--elements-webflow-library--neutral--100);
    transform: translate3d(0, -3px, .01px);
  }
}

.brix---input-small {
  border: 1px solid var(--elements-webflow-library--neutral--300);
  background-color: var(--elements-webflow-library--neutral--100);
  box-shadow: 0 2px 7px 0 var(--elements-webflow-library--general--shadow-02);
  border-radius: 100px;
  min-height: 60px;
  margin-bottom: 0;
  padding: 16px 24px;
  font-size: 16px;
  line-height: 18px;
  transition: box-shadow .3s, color .3s, border-color .3s;
}

@media (hover:hover){
  .brix---input-small:hover {
    border-color: var(--elements-webflow-library--accent--primary-1);
    box-shadow: 0 2px 12px 0 var(--elements-webflow-library--general--shadow-03);
  }
}

.brix---input-small:focus {
  border-color: var(--elements-webflow-library--accent--primary-1);
  color: var(--elements-webflow-library--neutral--800);
}

.brix---input-small::placeholder {
  color: var(--elements-webflow-library--neutral--600);
  font-size: 16px;
}

.brix---grid-footer-subscribe-1-col {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.brix---paragraph-default {
  color: var(--white);
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.brix---paragraph-default.ft {
  font-family: var(--main-font);
  margin-top: 40px;
  font-size: 16px;
  line-height: 32px;
}

.brix---color-neutral-600 {
  color: var(--elements-webflow-library--neutral--600);
}

.brix---mg-bottom-32px {
  margin-bottom: 32px;
}

.brix---footer-col-title {
  color: var(--elements-webflow-library--neutral--800);
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
}

.brix---footer-link {
  color: var(--elements-webflow-library--neutral--600);
  font-size: 18px;
  line-height: 20px;
  text-decoration: none;
  transition: color .3s;
}

@media (hover:hover){
  .brix---footer-link:hover {
    color: var(--elements-webflow-library--accent--primary-1);
  }
}

.brix---footer-list-item {
  margin-bottom: 18px;
  padding-left: 0;
}

.brix---footer-list-wrapper {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.brix---grid-footer-v8 {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 2fr;
}

.brix---footer-middle {
  padding-top: 120px;
  padding-bottom: 120px;
}

.brix---btn-secondary {
  border: 1px solid var(--elements-webflow-library--neutral--300);
  background-color: var(--elements-webflow-library--neutral--100);
  color: var(--elements-webflow-library--neutral--800);
  text-align: center;
  transform-style: preserve-3d;
  border-radius: 48px;
  padding: 26px 38px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 18px;
  line-height: 20px;
  transition: border-color .3s, transform .3s, background-color .3s, color .3s;
  box-shadow: 0 4px 10px rgba(20, 20, 43, .04);
}

@media (hover:hover){
  .brix---btn-secondary:hover {
    border-color: var(--elements-webflow-library--accent--primary-1);
    background-color: var(--elements-webflow-library--accent--primary-1);
    color: var(--elements-webflow-library--neutral--100);
    transform: translate3d(0, -3px, .01px);
  }
}

.brix---btn-primary {
  background-color: var(--elements-webflow-library--accent--primary-1);
  color: var(--elements-webflow-library--neutral--100);
  text-align: center;
  transform-style: preserve-3d;
  border-radius: 48px;
  justify-content: center;
  padding: 26px 38px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .3s, transform .3s, color .3s;
}

@media (hover:hover){
  .brix---btn-primary:hover {
    background-color: var(--elements-webflow-library--secondary--color-1);
    color: var(--elements-webflow-library--neutral--100);
    transform: translate3d(0, -3px, .01px);
  }
}

.brix---buttons-row-right---t-left {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.brix---footer-logo {
  transform-style: preserve-3d;
  transition: transform .3s;
}

@media (hover:hover){
  .brix---footer-logo:hover {
    transform: scale3d(.97, .97, 1.01);
  }
}

.brix---mg-bottom-16px {
  margin-bottom: 16px;
}

.brix---grid-footer-logo-and-form {
  grid-column-gap: 210px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.8fr;
  align-items: center;
}

.brix---footer-small---border-bottom {
  border-bottom: 1px solid var(--elements-webflow-library--neutral--300);
  padding-top: 72px;
  padding-bottom: 72px;
}

.brix---footer-wrapper {
  border-top: 1px solid var(--elements-webflow-library--neutral--300);
  background-color: #344a63;
}

.image {
  width: 40px;
  transform: skew(25deg);
}

.image.tel {
  width: 20px;
  height: 30px;
}

.text-span {
  font-family: var(--sub-font);
  color: var(--text-color);
  letter-spacing: 5px;
  text-transform: capitalize;
  font-size: 72px;
  line-height: 72px;
}

.button-primary-tell {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--white);
  color: var(--white);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  width: 256px;
  height: 70px;
  padding: 15px 10px;
  font-weight: 500;
  transition: all .3s;
  display: flex;
  transform: skew(-25deg);
}

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

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

@media (hover:hover){
  .button-primary-tell.white:hover {
    background-color: var(--dark);
    color: var(--white);
  }
}

.button-primary-tell.margin-top-30.pricing {
  margin-left: 15px;
}

@media (hover:hover){
  .button-primary-tell.primary-white:hover {
    background-color: var(--white);
    color: var(--primary);
  }
}

.section-heading-span-2 {
  color: #f47e20;
}

.section-heading-2 {
  font-family: var(--main-font);
  color: var(--text-color);
  letter-spacing: .1em;
  font-size: 56px;
  line-height: 88px;
}

.qa-title {
  font-family: var(--main-font);
  color: var(--text-color);
  letter-spacing: .1em;
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 1em;
}

.text-block {
  font-family: var(--main-font);
}

.ft-last-text {
  font-family: var(--main-font);
  color: #dee6ed;
  letter-spacing: .1em;
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
}

.tell-link {
  font-family: var(--main-font);
  color: var(--white);
  font-weight: 400;
  text-decoration: underline;
}

.ft-link {
  font-family: var(--main-font);
  color: var(--white);
  font-weight: 400;
}

@media screen and (min-width: 1280px) {
  .style-guide-content {
    margin-left: 280px;
  }

  .silde-bar-nav, .style-guide-nav {
    width: 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: 1440px) {
  .section-heading-beside.grey.commit {
    top: -30%;
  }

  .process-left-side.commit {
    margin-top: 20px;
  }

  .brix---z-index-1 {
    margin-left: auto;
    margin-right: auto;
  }

  .brix---grid-footer-v8 {
    grid-column-gap: 70px;
    grid-template-columns: 1fr 1fr 1fr 1fr minmax(360px, 2fr);
  }

  .brix---grid-footer-logo-and-form {
    grid-column-gap: 250px;
    grid-template-columns: 1.2fr 2fr;
  }
}

@media screen and (min-width: 1920px) {
  .hero-heading-beside {
/*     font-size: 230px; */
    top: -45%;
  }

  .section-heading-beside {
    top: -25%;
  }

  @media (hover:hover){
    .video-button-icon:hover {
      text-decoration: none;
    }  
  }

  .video-info-block {
    width: 20%;
    right: 10%;
  }
}

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

  h2 {
    font-size: 54px;
  }

  h3 {
    font-size: 48px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 20px;
  }

  .column {
    width: 50%;
  }

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

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

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

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

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

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

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

  .header-logo {
    width: 180px;
  }

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

  .style-guide-menu {
    z-index: 500;
    background-color: #f8f8f8;
    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);
  }

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

  .button-primary.fv {
	  margin-left: 20px;
  }

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

  .section.contact-form-section {
    margin-top: 0;
    padding-top: 90px;
    padding-bottom: 90px;
  }

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

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

  .hero-heading-beside {
    font-size: 110px;
  }

  .hero-heading-beside.fv {
    top: -8%;
  }

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

  .about-vector {
    width: 220px;
    left: 0%;
  }

  .about-left-image-one {
    transform: skew(-2deg);
  }

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

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

  .section-heading-beside {
    font-size: 100px;
  }

  .section-heading-beside.grey {
    top: -10%;
  }

  .section-heading-beside.grey.service, .section-heading-beside.grey.commit {
    top: -15%;
  }

  .section-heading-beside.center.dark {
    top: -25%;
  }

  .section-heading-beside.center.service {
    top: -50%;
  }

  .section-heading-beside.team {
    top: -80%;
  }

  .section-heading-beside.feature {
    top: -5%;
  }

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

  .gallary-block {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .lightbox-image {
    transform: skew(-5deg);
  }

  .lightbox-image.four, .lightbox-image.nine, .lightbox-image.ten {
    margin-left: 0;
  }

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

  .pricing-main-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .pricing-number {
    font-size: 38px;
  }

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

  .pricing-feature {
    font-size: 18px;
  }

  .pricing-vector {
    display: none;
  }

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

  .team-vector {
    display: none;
  }

  .gallary-vector {
    width: 220px;
  }

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

  .testimonial-left-block {
    margin-left: 0;
    padding-top: 90px;
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-slide-nav {
    right: 3%;
  }

  .testimonial-image {
    width: 90px;
  }

  .testimonial-right-block {
    margin-right: 0;
  }

  .testimonial-vector {
    width: 220px;
  }

  .testimonial-right-image {
    margin-left: 0;
  }

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

  .team-social-link {
    font-size: 22px;
  }

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

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

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

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

  .service-image-inner-block {
    width: 30vh;
    height: 25vh;
  }

  .service-number {
    font-size: 40px;
  }

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

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

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

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

  .dropdown {
    display: block;
  }

  .nav-menu {
    background-color: #f8f8f8;
  }

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

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

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

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

  .footer-logo {
    height: 80px;
  }

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

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

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

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

  .hero-v2-image {
    transform: skew(-2deg);
  }

  .hero-v2-vector-image {
    width: 220px;
    left: 0%;
  }

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

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

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

  .about-v2-vector {
    width: 220px;
  }

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

  .service-collection-item {
    width: 45%;
  }

  .service-icon-image {
    width: 60px;
  }

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

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

  .video-button {
    top: 36%;
  }

  .video-vactor-image {
    width: 220px;
  }

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

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

  .about-v3-image {
    transform: skew(-3deg);
  }

  .about-v3-vector {
    width: 220px;
  }

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

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

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

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

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

  .testimonial-v2-vector-image {
    left: 33%;
  }

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

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

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

  .blog-template-pagination {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

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

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

  .about-v4-vector {
    width: 220px;
  }

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

  .service-v2-arrow {
    font-size: 22px;
  }

  .service-v2-vector, .counter-v2-vector {
    width: 220px;
  }

  .testimonial-v3-block {
    padding: 40px;
  }

  .footer-vector {
    width: 220px;
  }

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

  .contact-form-detail {
    padding: 40px 20px;
  }

  .contact-vector {
    width: 220px;
  }

  .service-v2-title {
    font-size: 28px;
  }

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

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

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

  .accordion-title {
    width: 100%;
  }

  .spark-wrapped-card {
    width: 45%;
  }

  .spark-two-column-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: wrap;
    justify-content: space-between;
    display: flex;
  }

  .spark-side-flat-tab {
    width: 100%;
  }

  .spark-stacked-flat-tabs-menu {
    width: 35%;
    margin-bottom: 64px;
    margin-right: 5%;
  }

  .spark-section {
    padding-top: 104px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .brix---cta-v2-floating-item-02 {
    width: 32%;
    bottom: -9%;
    right: -8%;
  }

  .brix---cta-v2-floating-item-01 {
    width: 40%;
    top: 0%;
    left: -7%;
  }

  .brix---btn-primary-white {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .brix---buttons-row-center.ft {
    justify-content: center;
    align-items: center;
  }

  .brix---heading-h2-size {
    font-size: 30px;
    line-height: 46px;
  }

  .brix---cta-section {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .brix---cta-v1-floating-item-02 {
    width: 38%;
    bottom: -3%;
  }

  .brix---cta-v1-floating-item-01 {
    width: 35%;
    top: -4%;
    left: -5%;
  }

  .brix---cta-card {
    padding: 72px 54px;
  }

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

  .brix---social-media-grid-right---t-center {
    grid-column-gap: 10px;
    justify-content: center;
    justify-items: center;
  }

  .brix---mg-bottom-0.ft.link {
    text-align: center;
  }

  .brix---grid-footer-bottom-v2 {
    grid-row-gap: 14px;
    grid-template-columns: 1fr;
  }

  .brix---footer-bottom-v2 {
    text-align: center;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .brix---mg-bottom-32px, .brix---footer-col-title {
    margin-bottom: 24px;
  }

  .brix---grid-footer-v8 {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .brix---footer-middle {
    padding-top: 94px;
    padding-bottom: 94px;
  }

  .brix---btn-primary {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .brix---buttons-row-right---t-left {
    justify-content: flex-start;
  }

  .brix---footer-logo {
    width: 300px;
  }

  .brix---grid-footer-logo-and-form {
    grid-row-gap: 34px;
    grid-template-columns: 1fr;
  }

  .brix---footer-small---border-bottom {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .image.header {
    transform: none;
  }

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

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

  h2 {
    font-size: 48px;
  }

  h3 {
    font-size: 42px;
  }

  .column.desk-4 {
    width: 100%;
  }

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

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

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

  .paragraph {
    font-size: 15px;
  }

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

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

  .header-logo {
    width: 160px;
  }

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

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

  .section.hero-v2-section, .section.contact-form-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-heading {
    font-size: 40px;
    line-height: 1.3em;
  }

  .hero-heading-span {
    font-size: 32px;
    line-height: 32px;
  }

  .hero-heading-beside {
    font-size: 100px;
    line-height: 1em;
  }

  .about-left-image-two {
    width: 260px;
  }

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

  .section-heading-beside, .section-heading-beside.grey {
    font-size: 80px;
  }

  .section-heading-beside.grey.service {
    top: -5%;
  }

  .section-heading-beside.center.service {
    top: -15%;
  }

  .section-heading-beside.team {
    top: -40%;
  }

  .section-heading-beside.center {
    top: -30%;
  }

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

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

  .gallary-vector {
    width: 180px;
  }

  .testimonial-left-block {
    padding-top: 60px;
  }

  .testimonial-name {
    margin-top: 10px;
  }

  .testimonial-vector {
    width: 180px;
  }

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

  .team-social-link-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: center;
  }

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

  .service-list-wrapper {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-image {
    display: none;
  }

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

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

  .menu-button {
    padding: 8px;
  }

  .footer {
    padding-top: 60px;
  }

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

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

  .service-grid-list {
    flex-flow: column;
    grid-template-columns: 1fr;
  }

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

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

  .video-button {
    top: 34%;
  }

  .video-vactor-image {
    width: 180px;
  }

  .about-v3-info {
    width: 240px;
    height: 240px;
  }

  .about-v3-vector {
    width: 180px;
  }

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

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

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

  .testimonial-tabs-menu {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

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

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

  .blog-detail-single-title {
    font-size: 48px;
    line-height: 56px;
  }

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

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

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

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

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

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

  .about-v4-vector {
    width: 180px;
  }

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

  .service-v2-vector, .counter-v2-vector {
    width: 180px;
  }

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

  .footer-vector {
    width: 180px;
  }

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

  .contact-vector {
    width: 180px;
  }

  .contact-form-image {
    width: 100%;
  }

  .service-v2-title {
    font-size: 24px;
  }

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

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

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

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

  .accordion-paragraph {
    width: 100%;
  }

  .spark-small-sub-paragraph {
    line-height: 1.3;
  }

  .spark-wrapped-card {
    width: 100%;
  }

  .spark-wrapped-card.spark-stacked {
    grid-row-gap: 16px;
    width: 100%;
  }

  .spark-two-column-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .spark-side-tabs-content {
    width: 100%;
  }

  .spark-side-flat-tab {
    padding-left: 32px;
    padding-right: 32px;
  }

  .spark-stacked-flat-tabs-menu {
    width: 100%;
  }

  .spark-secondary-paragraph {
    margin-bottom: 32px;
  }

  .spark-container {
    width: 100%;
  }

  .spark-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .brix---btn-secondary-white {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .brix---btn-primary-white {
    padding: 20px 32px;
  }

  .brix---button-row-left {
    margin-right: 16px;
  }

  .brix---buttons-row-center {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
  }

  .brix---heading-h2-size {
    font-size: 24px;
    line-height: 48px;
  }

  .brix---mg-bottom-40px {
    margin-bottom: 24px;
  }

  .brix---cta-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .brix---cta-v1-floating-item-02 {
    width: 34%;
    bottom: -5%;
    right: -4%;
  }

  .brix---cta-v1-floating-item-01 {
    width: 34%;
  }

  .brix---cta-card {
    padding: 56px 40px;
  }

  .brix---section-small {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .brix---social-media-grid-right---t-center {
    justify-content: center;
    justify-items: center;
  }

  .brix---grid-footer-bottom-v2 {
    grid-row-gap: 14px;
  }

  .brix---btn-primary-small {
    padding: 20px 32px;
  }

  .brix---input-small {
    min-height: 60px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .brix---footer-col-title {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 20px;
  }

  .brix---footer-list-item {
    margin-bottom: 10px;
  }

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

  .brix---footer-middle {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .brix---btn-secondary {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .brix---btn-primary {
    padding: 20px 32px;
  }

  .brix---footer-logo-wrapper {
    width: 239px;
  }

  .brix---mg-bottom-16px {
    margin-bottom: 8px;
  }

  .brix---footer-small---border-bottom {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .text-span {
    font-size: 40px;
    line-height: 80px;
  }

  .section-heading-2 {
    font-size: 46px;
  }
}

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

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 38px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 22px;
  }

  h6 {
    font-size: 18px;
  }

  .column {
    margin-bottom: 0;
  }

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

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

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

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

  .header-logo {
    width: 250px;
  }

  .button-primary.flow {
    margin-left: auto;
    margin-right: auto;
	margin-top: 40px;
  }

  .button-primary.cta {
    margin-left: auto;
    margin-right: auto;
  }

  .button-primary.fv {
	  margin-left: auto;
	  margin-right: auto;
  }

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

  .section.about-v3-grid {
    padding-bottom: 60px;
  }

  .hero-heading {
    font-size: 54px;
    line-height: .8em;
  }

  .hero-heading-span {
    letter-spacing: .1em;
    font-size: 26px;
    line-height: 26px;
  }

  .hero-heading-beside {
    font-size: 64px;
    line-height: 1.3em;
    top: -5%;
  }

  .about-vector {
    display: none;
  }

  .about-left-image-two {
    margin-top: 20px;
    position: static;
    transform: skew(-5deg);
  }

  .section-heading {
    padding-top: 10px;
    font-size: 38px;
    line-height: 1.3em;
  }

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

  .section-heading-beside.grey {
    font-size: 50px;
  }

  .section-heading-beside.grey.service {
    top: -3%;
  }

  .section-heading-beside.center, .section-heading-beside.center.dark {
    top: -15%;
  }

  .section-heading-beside.team {
    top: -20%;
  }

  .section-heading-beside.center {
    top: -5%;
  }

  .section-heading-beside.feature {
    top: -3%;
  }

  .about-paragraph {
    word-break: normal;
  }

  .about-paragraph.pc {
    display: none;
  }

  .about-paragraph.cp, .about-paragraph.sp {
    display: block;
  }

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

  .counter-image {
    width: 65px;
  }

  .counter-number {
    font-size: 38px;
  }

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

  .pricing-number {
    font-size: 28px;
  }

  .gallary-vector {
    display: none;
  }

  .testimonial-name {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 19px;
  }

  .testimonial-detail {
    padding-right: 0%;
    font-size: 17px;
  }

  .testimonial-slide-nav {
    bottom: 0%;
  }

  .testimonial-image {
    width: 75px;
  }

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

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

  .testimonial-number {
    font-size: 44px;
  }

  .testimonial-vector {
    width: 140px;
  }

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

  .team-social-link-block {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .team-social-link {
    font-size: 20px;
  }

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

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

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

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

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

  .service-list-item-link {
    padding: 30px 20px;
  }

  .service-detail-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

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

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

  .footer-logo {
    height: 60px;
  }

  .footer-top-text {
    font-size: 28px;
  }

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

  .text-input {
    width: 100%;
  }

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

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

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

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

  .hero-v2-vector-image {
    display: none;
  }

  .about-v2-left-detail {
    display: block;
  }

  .about-v2-icon {
    margin-bottom: 30px;
  }

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

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

  .process-paragraph.pc {
    display: none;
  }

  .process-paragraph.sp {
    display: block;
  }

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

  .video-button {
    width: 60px;
    height: 60px;
    top: 24%;
  }

  .video-button-icon {
    font-size: 22px;
  }

  .video-vactor-image {
    display: none;
  }

  .video-title {
    font-size: 30px;
    line-height: 38px;
  }

  .video-info {
    padding-left: 20px;
    padding-right: 20px;
  }

  .time-list-item {
    font-size: 16px;
  }

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

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

  .about-v3-info-block.last {
    margin-bottom: 40px;
  }

  .about-v3-side-heading {
    margin-top: 20px;
  }

  .about-v3-vector {
    display: none;
  }

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

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

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

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

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

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

  .testimonial-v2-vector-image {
    width: 180px;
    bottom: 40%;
    left: 20%;
  }

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

  .blog-detail-single-title {
    font-size: 34px;
    line-height: 42px;
  }

  .blog-template-next-button {
    text-align: left;
  }

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

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

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

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

  .about-v4-vector, .service-v2-vector, .counter-v2-vector {
    display: none;
  }

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

  .contact-detail-block {
    display: block;
  }

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

  .contact-vector {
    display: none;
  }

  .service-v2-title {
    font-size: 24px;
  }

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

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

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

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

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

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

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

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

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

  .spark-bold-heading {
    line-height: 1.3;
  }

  .spark-wrapped-card.spark-stacked {
    width: 100%;
  }

  .spark-side-flat-tab {
    padding: 16px;
  }

  .spark-stacked-flat-tabs-menu {
    flex-flow: column wrap;
    justify-content: flex-start;
  }

  .spark-centered-900 {
    margin-bottom: 64px;
  }

  .spark-section {
    padding: 64px 20px;
  }

  .spark-section h1 {
    font-size: 3rem;
  }

  .spark-section h2 {
    font-size: 2.5rem;
  }

  .brix---cta-v2-floating-item-02 {
    width: 40%;
  }

  .brix---cta-v2-floating-item-01 {
    width: 50%;
  }

  .brix---btn-secondary-white, .brix---btn-primary-white {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 16px;
    line-height: 18px;
  }

  .brix---button-row-left {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .brix---buttons-row-center {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .brix---heading-h2-size {
    font-size: 22px;
    line-height: 34px;
  }

  .brix---heading-h2-size.pc {
    display: none;
  }

  .brix---heading-h2-size.sp {
    display: block;
  }

  .brix---container-default {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brix---cta-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .brix---cta-v1-floating-item-02 {
    width: 44%;
  }

  .brix---cta-v1-floating-item-01 {
    width: 39%;
  }

  .brix---cta-card {
    padding-left: 24px;
    padding-right: 24px;
  }

  .brix---section-small {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .brix---icon-square-36px {
    border-radius: 6px;
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
    font-size: 14px;
  }

  .brix---social-media-grid-right---t-center {
    grid-template-columns: repeat(auto-fit, 30px);
  }

  .brix---btn-primary-small {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brix---input-small {
    min-height: 50px;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 18px;
  }

  .brix---input-small::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

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

  .brix---paragraph-default {
    font-size: 17px;
    line-height: 28px;
  }

  .brix---footer-col-title {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 18px;
  }

  .brix---footer-link {
    font-size: 16px;
    line-height: 19px;
  }

  .brix---footer-list-item {
    margin-bottom: 8px;
  }

  .brix---grid-footer-v8 {
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .brix---btn-secondary, .brix---btn-primary {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 17px;
    line-height: 19px;
  }

  .brix---buttons-row-right---t-left {
    flex-direction: column;
    align-items: stretch;
  }

  .brix---footer-logo {
    width: 100%;
    max-width: 240px;
  }

  .brix---mg-bottom-16px {
    margin-bottom: 15px;
  }

  .brix---footer-small---border-bottom {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .image.header {
    transform: none;
  }

  .text-span {
    letter-spacing: .1em;
    font-size: 34px;
  }

  .section-heading-2 {
    font-size: 38px;
  }
}

#header-logo.w-node-_4a701ab7-1413-e40d-dccc-7f0a2ab6bede-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_4a701ab7-1413-e40d-dccc-7f0a2ab6bf00-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-d50d065c-d7bb-553a-0f69-79c150a631ab-158d0be1, #w-node-_3ec10b11-ad41-47ac-58f5-a5b36deca1f8-158d0be1, #w-node-_317d3920-3c60-8de6-fec5-d8b4bd697246-158d0be1, #w-node-a5568b4c-f702-ab90-b74a-c69c1851414a-158d0be1, #w-node-_35d6b13a-57ea-3994-2f25-c8e7a4261626-158d0be1, #w-node-_882c31ff-9991-889e-16ce-3b4b8f4ddb1d-158d0be1, #w-node-_882c31ff-9991-889e-16ce-3b4b8f4ddb33-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_276124d8-5569-a0a1-2598-e187b8838376-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_276124d8-5569-a0a1-2598-e187b8838386-158d0be1, #w-node-_276124d8-5569-a0a1-2598-e187b8838388-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cbc05494-26c6-70b9-2539-5afb44cfe9c0-158d0be1 {
  align-self: center;
}

#w-node-a445d12e-38a7-e48d-46b4-d106f0e33319-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a445d12e-38a7-e48d-46b4-d106f0e3331c-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c3a3945a-cef8-08d3-839d-d41e41d99dc6-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-c3a3945a-cef8-08d3-839d-d41e41d99dc9-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5e9379d5-2972-b7c0-245a-c3495bdd7fcc-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_5e9379d5-2972-b7c0-245a-c3495bdd7fcf-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2ca399b9-06b9-da3d-e518-90940a8ee024-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_2ca399b9-06b9-da3d-e518-90940a8ee027-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9b64e3c2-9128-4446-8921-d5a358d01fbf-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9b64e3c2-9128-4446-8921-d5a358d01fc2-158d0be1, #w-node-d5af79be-3e75-8553-405b-99dca30e1fba-158d0be1, #w-node-d5af79be-3e75-8553-405b-99dca30e1fc0-158d0be1, #w-node-d5af79be-3e75-8553-405b-99dca30e1fc2-158d0be1, #w-node-_682a82be-175f-feec-a2bd-302e57b4057a-158d0be1, #w-node-d7991aaf-d6ed-8516-0fdf-74e90d47eb29-158d0be1, #w-node-d5af79be-3e75-8553-405b-99dca30e1fc9-158d0be1, #w-node-_5b736e97-ab3a-bc2b-aa34-66a13cffd8b4-158d0be1, #w-node-b9ea5b7a-a5b2-be7b-2669-1ca62c38622c-158d0be1, #w-node-d57006a5-ed2f-112f-fc16-e12003e5a30f-158d0be1, #w-node-_19eac035-a796-4068-fbea-c485f9eb1150-158d0be1, #w-node-d20718c7-f41f-e473-c355-ccfd0996a3f0-158d0be1, #w-node-bcabe78f-b2f7-8996-f806-d7ccad629527-158d0be1, #w-node-_02d612a7-c282-8527-a231-46815d10f555-158d0be1, #w-node-ae3d6f75-e988-2f6c-f5ac-019dc5d15216-158d0be1, #w-node-_74fd1d70-08e3-9530-31a2-07ff9af616b3-158d0be1, #w-node-ba0b5642-9343-c7be-37ad-5e152cf4a371-158d0be1, #w-node-_0f2af0b2-6388-1aa4-9685-0c08e3771653-158d0be1, #w-node-f820c935-c9b5-6cfc-cabe-90f41953062d-158d0be1, #w-node-_756945ef-02e0-1ca6-5a3a-f1a1546f3312-158d0be1, #w-node-_61ab8509-83cf-249b-ecda-ed0d1b89a8fc-158d0be1, #w-node-edca6ed7-e98b-de67-da02-f3cb5319032b-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_27e464d5-7175-c406-792e-d2cbf435cefd-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_9cf10533-0d28-709f-0aa2-a63f89075839-158d0be1, #w-node-_9cf10533-0d28-709f-0aa2-a63f8907583a-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9cf10533-0d28-709f-0aa2-a63f89075851-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_9ee4c4af-1410-fc20-42ab-2f1e0ce2f6ff-158d0be1, #w-node-_9ee4c4af-1410-fc20-42ab-2f1e0ce2f700-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9ee4c4af-1410-fc20-42ab-2f1e0ce2f717-158d0be1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-a565c95c-9e26-7acd-bf14-0f397d91a5f1-158d0be1, #w-node-_5d673a6e-1fa4-601c-3923-601bcbb37b21-158d0be1, #w-node-efec0e3f-4a46-2a54-3212-add3fd28e66b-158d0be1, #w-node-d057eb6c-3918-1f70-b135-67ccde4e2fb0-158d0be1, #w-node-_82aee70f-f886-983f-8d6e-c1136d18ac20-158d0be1, #w-node-_81f0db17-b9c4-5906-f3e8-e8152e4d5b69-158d0be4, #w-node-_8f2ceec9-d5ed-1425-9260-df1dbe9d73b6-158d0be4, #w-node-_25fd3c6f-02bc-834f-9da4-870cc04d293e-158d0be4, #w-node-_840dfa04-400e-fe4e-0cc6-8327bcdfab31-158d0be4, #w-node-_9cc55233-e66b-8072-04b2-09c32c19bd74-158d0be4, #w-node-_2631dabc-cd4e-1cad-0e69-beaf54b38816-158d0be4, #w-node-_4d521c1a-9a2a-85d9-e364-91fdd4775848-158d0be4, #w-node-d350cd54-fda9-a160-3527-59a175ff27bd-158d0be4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fa8a7cf7-b36a-c96d-8d3b-aa1dcbd68e77-158d0be4, #w-node-_5d2a204b-dd60-34aa-6b3a-d0a253a79219-158d0be4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-a819f1b6-48aa-fcef-93ff-d7b068149efc-158d0be4, #w-node-a819f1b6-48aa-fcef-93ff-d7b068149f08-158d0be4, #w-node-a819f1b6-48aa-fcef-93ff-d7b068149f0b-158d0be4, #w-node-_316bdf41-e36a-7350-6305-15ba6f85d344-6f85d33f, #w-node-_316bdf41-e36a-7350-6305-15ba6f85d347-6f85d33f, #w-node-_316bdf41-e36a-7350-6305-15ba6f85d34b-6f85d33f, #w-node-_316bdf41-e36a-7350-6305-15ba6f85d34c-6f85d33f, #w-node-_316bdf41-e36a-7350-6305-15ba6f85d342-6f85d33f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1f986cc3-d0fa-b768-d70b-38bc9f1abab0-9f1abaad {
  justify-self: start;
}

#w-node-_1f986cc3-d0fa-b768-d70b-38bc9f1abad2-9f1abaad {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-f12cd7ff-9241-cd80-eb12-60f119b27a3a-158d0be8, #w-node-d72e6145-30a6-0dc0-e755-2bc7d2a4296d-158d0be8, #w-node-_50971770-b2c9-d328-3484-fb15dcae7cd7-158d0be8, #w-node-_4d1c2e7b-c5f2-f9c5-5cb7-5a315aec59c6-158d0be8, #w-node-_4d1c2e7b-c5f2-f9c5-5cb7-5a315aec59c8-158d0be8, #w-node-_4eb3f398-1224-d623-5567-f891e474e358-158d0be8, #w-node-aca3f3f0-e34e-1dc2-7bbd-9f127372c41f-158d0be8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4d1c2e7b-c5f2-f9c5-5cb7-5a315aec59ca-158d0be8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4d1c2e7b-c5f2-f9c5-5cb7-5a315aec59cc-158d0be8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_2769e05a-7e27-4ea8-1724-fa9c8835808c-158d0be8, #w-node-_403edce0-a998-ce80-71df-cd5a915024f0-158d0bea, #w-node-_403edce0-a998-ce80-71df-cd5a915024f1-158d0bea, #w-node-_062480cd-1d91-fa5b-40de-b263d9972259-158d0beb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_062480cd-1d91-fa5b-40de-b263d997228e-158d0beb {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-c4adc05a-78fe-6131-ebc5-1332f51d2156-158d0bec, #w-node-d0f35ca9-8d39-32fc-36b7-da690d9b518a-158d0bec, #w-node-_79e4ee3d-d487-53d1-92cd-cc34f1a91999-158d0bec, #w-node-e36093f7-cd44-2690-82e0-c63bd52ff2f1-158d0bec, #w-node-_80062534-3b3f-5a3d-1363-8224f4cfdc48-158d0bec, #w-node-_761fcf68-91ff-87b0-6a62-4fdc579e369e-158d0bec, #w-node-c164ed09-5d9b-c4cd-c1c1-132f66550e64-158d0bec, #w-node-cbd9add6-87cf-cb61-22e5-3af4c3aac848-158d0bec {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8a01a1d0-9a70-e6fa-dccd-d7efd5dd66e5-158d0bec {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_00b2a82c-7b55-4d63-0e7a-9b326db1d2f0-158d0bec, #w-node-_453d6671-918f-419f-a2b3-0f330a227b70-158d0bec {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_779dd75a-0f7c-ee6f-8e9b-74d44e8800f7-158d0bec {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-f4e05e3e-e6e5-c425-68de-501a574bc493-158d0bec, #w-node-_24425c99-2d96-a287-96af-731b23bf9529-158d0bec, #w-node-c1d6576f-9498-6ec5-dfe8-f9b616a0fa9a-158d0bec, #w-node-_290f2b05-29d0-8650-37ab-44b617901993-158d0bec, #w-node-c86689c3-5492-5e60-3d23-ebb73b34ff8c-158d0bec {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c86689c3-5492-5e60-3d23-ebb73b34ff93-158d0bec, #w-node-c86689c3-5492-5e60-3d23-ebb73b34ff95-158d0bec, #w-node-c86689c3-5492-5e60-3d23-ebb73b34ff9b-158d0bec {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c86689c3-5492-5e60-3d23-ebb73b34ff9d-158d0bec {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_41e79808-4dbf-567d-ee84-187a9bf9a01d-158d0bec, #w-node-_4b9d1060-e3f8-777e-04a6-480a424ca95c-158d0bec, #w-node-_6263ce78-d1e9-3da3-b7f9-7a6ad47795b8-158d0bec, #w-node-bef97d51-4479-7f4e-ccf0-d9a81e1e25bb-158d0bef, #w-node-bef97d51-4479-7f4e-ccf0-d9a81e1e25bf-158d0bef, #w-node-bef97d51-4479-7f4e-ccf0-d9a81e1e25c3-158d0bef, #w-node-bef97d51-4479-7f4e-ccf0-d9a81e1e25c7-158d0bef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1920px) {
  #w-node-d4525447-4609-4eb8-e206-d22d87e75b5a-158d0be1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a445d12e-38a7-e48d-46b4-d106f0e33319-158d0be1, #w-node-c3a3945a-cef8-08d3-839d-d41e41d99dc6-158d0be1, #w-node-_5e9379d5-2972-b7c0-245a-c3495bdd7fcc-158d0be1, #w-node-_2ca399b9-06b9-da3d-e518-90940a8ee024-158d0be1, #w-node-_9b64e3c2-9128-4446-8921-d5a358d01fbf-158d0be1 {
    justify-self: start;
  }

  #w-node-_9ee4c4af-1410-fc20-42ab-2f1e0ce2f6ff-158d0be1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_4a701ab7-1413-e40d-dccc-7f0a2ab6bf07-158d0be1 {
    justify-self: end;
  }

  #w-node-d5af79be-3e75-8553-405b-99dca30e1fc9-158d0be1 {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_3e3808de-4433-02dc-1d79-953bace91d02-158d0be1 {
    order: -9999;
  }

  #w-node-_1f986cc3-d0fa-b768-d70b-38bc9f1abad7-9f1abaad {
    justify-self: end;
  }

  #w-node-_062480cd-1d91-fa5b-40de-b263d997228e-158d0beb {
    order: -9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_276124d8-5569-a0a1-2598-e187b8838376-158d0be1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_276124d8-5569-a0a1-2598-e187b8838386-158d0be1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }

  #w-node-_27e464d5-7175-c406-792e-d2cbf435cefd-158d0be1 {
    justify-self: auto;
  }
}

@media screen and (max-width: 479px) {
  #header-logo.w-node-_4a701ab7-1413-e40d-dccc-7f0a2ab6bede-158d0be1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_4a701ab7-1413-e40d-dccc-7f0a2ab6bf07-158d0be1 {
    justify-self: end;
  }

  #w-node-d5af79be-3e75-8553-405b-99dca30e1fba-158d0be1, #w-node-d5af79be-3e75-8553-405b-99dca30e1fc0-158d0be1, #w-node-d5af79be-3e75-8553-405b-99dca30e1fc9-158d0be1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_47d49daf-f35e-3b39-5c75-73d5c09e6d34-158d0be1, #w-node-_27e464d5-7175-c406-792e-d2cbf435cefd-158d0be1, #w-node-_9cf10533-0d28-709f-0aa2-a63f89075841-158d0be1, #w-node-_9cf10533-0d28-709f-0aa2-a63f89075851-158d0be1, #w-node-_9ee4c4af-1410-fc20-42ab-2f1e0ce2f707-158d0be1, #w-node-_9ee4c4af-1410-fc20-42ab-2f1e0ce2f717-158d0be1 {
    justify-self: start;
  }

}


@font-face {
  font-family: 'Fa V 4 Compatibility';
  src: url('../fonts/fa-v4compatibility.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Brands 400';
  src: url('../fonts/fa-brands-400.woff2') format('woff2');
  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');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}