:root {
  --midnight-blue: #262e36;
  --orange-red: #b26834;
  --white-smoke: #f7f7f8;
  --lavender: #ddd;
  --peach-puff: #ffe1cd;
}

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

h1 {
  color: var(--midnight-blue);
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: Satoshi, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
}

h2 {
  color: var(--midnight-blue);
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
}

h3 {
  color: var(--midnight-blue);
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
}

h4 {
  color: var(--midnight-blue);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
}

h5 {
  color: var(--midnight-blue);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

h6 {
  color: var(--midnight-blue);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

p {
  color: var(--midnight-blue);
  margin-bottom: 10px;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

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

ul {
  color: var(--midnight-blue);
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 40px;
}

ol {
  color: var(--midnight-blue);
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 40px;
  font-size: 16px;
  line-height: 26px;
}

li {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

img {
  max-width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  display: inline-block;
}

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

blockquote {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--orange-red);
  background-color: var(--white-smoke);
  color: var(--midnight-blue);
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 4%;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

figcaption {
  color: var(--midnight-blue);
  text-align: center;
  margin-top: 5px;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 24px;
}

.hero-containner {
  max-width: 1200px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 30%;
}

.button {
  width: auto;
  border: 1px solid var(--orange-red);
  background-color: var(--orange-red);
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  padding: 14px 30px;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-decoration: none;
  transition: background-color .5s, border-color .5s;
  display: inline-block;
}

.button:hover {
  border-color: var(--midnight-blue);
  background-color: var(--midnight-blue);
}

.button.side-padding {
  border-style: solid;
  border-color: var(--orange-red);
  background-color: var(--orange-red);
  letter-spacing: 0;
  text-transform: none;
  margin-right: 10px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

.button.side-padding:hover {
  border-color: var(--midnight-blue);
  background-color: var(--midnight-blue);
}

.button.line {
  border-style: solid;
  border-color: var(--orange-red);
  color: var(--orange-red);
  background-color: rgba(0, 0, 0, 0);
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
}

.button.line:hover {
  background-color: var(--orange-red);
  color: #fff;
}

.button.line.categories {
  width: 100%;
}

.button.line.categories.w--current {
  width: 100%;
  background-color: var(--orange-red);
  color: #fff;
}

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

.brand {
  width: auto;
  border-right: 1px solid rgba(255, 255, 255, .21);
  margin-top: 0;
  margin-right: 10px;
  padding: 22px 20px 22px 10px;
}

.brand.w--current {
  width: 160px;
  border-right: 1px solid rgba(255, 255, 255, .21);
  margin-right: 0;
  padding: 22px 20px 22px 10px;
}

.brand.footer {
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: auto;
  padding: 0;
}

.nav-menu {
  width: auto;
  float: right;
  border-bottom-width: 1px;
  border-bottom-color: #000;
  border-left: 1px rgba(255, 255, 255, .21);
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.image-service-div {
  width: auto;
  height: 300px;
  background-image: var(--image-7b40fadb);
  background-position: 50%;
  background-size: cover;
  border: 0 solid #fff;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
}

.service-title {
  color: #000;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 0;
  font-family: Satoshi, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

.container {
  max-width: 1200px;
}

.container.footer {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.container.project {
  max-width: 1000px;
}

.white-paragraph {
  color: #fff;
  margin-top: 0;
}

.about-us-div {
  height: 480px;
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  grid-template-rows: auto;
  grid-template-columns: 1fr 2.25fr;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.about-us-div.first {
  height: 100%;
  text-align: left;
  background-color: #000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 60px;
  display: flex;
}

.about-us {
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 2%;
}

.color-example {
  width: 80px;
  height: 80px;
  background-color: var(--midnight-blue);
  border-radius: 300px;
  margin-bottom: 20px;
}

.color-example.sixth {
  border: 1px solid var(--lavender);
  background-color: var(--white-smoke);
}

.color-example.fourth {
  background-color: var(--lavender);
}

.color-example.third {
  background-color: var(--peach-puff);
}

.color-example.second {
  background-color: var(--orange-red);
}

.colors {
  width: 100%;
  height: 200px;
  border: 1px none var(--lavender);
  background-color: var(--white-smoke);
  color: #24336b;
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.small-title {
  color: #020224;
}

.small-title.padding {
  color: var(--midnight-blue);
  margin-bottom: 60px;
}

.padding-paragraph {
  margin-bottom: 60px;
}

.section {
  color: #151e66;
  background-color: rgba(0, 0, 0, 0);
  padding: 180px 20px;
  font-family: Satoshi, sans-serif;
  font-weight: 500;
  position: relative;
}

.section.gray {
  background-color: var(--white-smoke);
  margin-top: 2%;
}

.section.gray.less-padding-top {
  margin-top: 0%;
}

.section.gray.hidden {
  display: none;
}

.section.portfolio {
  background-color: #fff;
  padding-top: 180px;
  padding-bottom: 60px;
}

.section.portfolio.hidden {
  display: none;
  overflow: visible;
}

.section.no-padding {
  padding-top: 0;
}

.section.no-padding.gray {
  margin-top: 2%;
}

.section.blog {
  padding-bottom: 0;
  position: relative;
}

.section.blog.hidden {
  display: none;
}

.color-text {
  color: #000;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  padding: 5px 20px;
  font-family: Satoshi, sans-serif;
  font-weight: 400;
}

.rich-text {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.rich-text.project {
  width: auto;
  margin-top: 0;
}

.paragraph-wrapper {
  margin-bottom: 30px;
}

.gray-space {
  background-color: var(--white-smoke);
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.gray-space.dark {
  background-color: var(--midnight-blue);
  color: #020224;
  margin-bottom: 0;
}

.big-paragraph {
  color: var(--midnight-blue);
  margin-top: 10px;
  margin-bottom: 20px;
  padding-right: 0;
  font-family: Satoshi, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.big-paragraph.white {
  font-weight: 500;
}

.big-paragraph.white.hidden {
  display: none;
}

.big-headline {
  color: var(--midnight-blue);
  letter-spacing: -.5px;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Satoshi, sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
}

.big-headline.page-header {
  z-index: 2;
  color: var(--midnight-blue);
  background-color: rgba(0, 0, 0, 0);
  align-items: center;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

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

.white {
  color: #fff;
  font-family: Satoshi, sans-serif;
  font-weight: 700;
}

.tab-pane {
  text-align: center;
  padding-top: 0;
  padding-bottom: 100px;
  padding-left: 0;
}

.tabs-menu {
  z-index: 2;
  width: 100%;
  float: none;
  text-align: center;
  border: 0 rgba(222, 222, 222, .85);
  justify-content: center;
  margin-bottom: -40px;
  display: flex;
}

.tab-link {
  color: #000;
  background-color: #fff;
  border: 1px #000;
  border-top: 1px solid #fff;
  margin-bottom: 0;
  margin-right: 10px;
  padding: 20px 40px;
  display: inline-block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
}

.tab-link:hover {
  border-color: var(--orange-red) #ececec #f29100 var(--orange-red);
  text-align: left;
  border-bottom-style: none;
  border-bottom-width: 1px;
  border-left-style: none;
  border-right-width: 1px;
}

.tab-link.w--current {
  border-style: solid none none;
  border-width: 1px;
  border-color: var(--orange-red) black black;
  color: #000;
  background-color: #fff;
  margin-bottom: 0;
  margin-right: 10px;
  padding: 20px 40px;
  font-family: Satoshi, sans-serif;
  display: inline-block;
}

.tab-link.w--current:hover {
  border-style: solid none none;
  border-width: 1px;
  border-color: var(--orange-red) black black;
}

.icon-div {
  width: 70px;
  height: 70px;
  border: 1px rgba(255, 255, 255, .45);
  padding: 17px 10px;
  transition: background-color .5s, border-color .5s, opacity .5s;
  display: inline-block;
}

.icon-div:hover {
  background-color: rgba(0, 0, 0, 0);
  border: 0 #f29100;
}

.icon-div.font {
  background-color: var(--orange-red);
  color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
}

.title-section {
  z-index: 2;
  color: var(--midnight-blue);
  text-align: center;
  text-transform: none;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  position: relative;
}

.title-section.white {
  color: #fff;
}

.achivement-container {
  text-align: center;
  background-color: #fff;
  border: 1px #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.achivement-container.project {
  border-top-style: none;
  border-bottom-style: none;
  margin-top: 0;
  padding-left: 60px;
  padding-right: 60px;
}

.achivements-grid {
  width: 100%;
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 0;
  display: grid;
}

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

.achivement-block.lines {
  border-left: 1px solid #d8eeff;
  border-right: 1px solid #d8eeff;
  padding-left: 20px;
  padding-right: 20px;
}

.title-section-wrapper {
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
  display: flex;
}

.title-section-wrapper.services {
  height: auto;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: row;
  margin-bottom: 60px;
  padding-top: 0;
  display: flex;
}

.title-section-wrapper.page-header {
  margin-bottom: 0;
}

.title-section-wrapper.page-header.blog {
  width: 70%;
  text-align: center;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}

.experience-steps {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  display: flex;
}

.full-div {
  width: 100%;
  font-family: Satoshi, sans-serif;
}

.about-me-grid {
  grid-column-gap: 100px;
  grid-row-gap: 0px;
  background-color: var(--orange-red);
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  justify-items: start;
  margin-bottom: 0;
  padding: 60px 60px 0;
}

.info-div {
  flex: 1;
}

.button-wrapper {
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  font-family: Satoshi, sans-serif;
  display: flex;
}

.experience-title {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-weight: 700;
}

.skills-values {
  color: #f5f6ff;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.icon-2 {
  width: 24px;
  height: 24px;
  color: #d8eeff;
  background-color: rgba(2, 3, 73, .14);
  background-image: var(--image-i6815e34a);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  border-radius: 100px;
  margin-left: 0;
  margin-right: 20px;
  display: flex;
  position: relative;
}

.icon-2.smaller {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, .4);
  background-image: none;
  border-radius: 0;
  margin-top: 10px;
}

.skills-containner {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, .25);
}

.skills-containner.dark {
  height: 4px;
  height: 4px;
  background-color: #e9e9e9;
  border-radius: 0;
  overflow: hidden;
}

.skills-progress-line {
  width: 85%;
  height: 100%;
  background-color: #fff;
  border-radius: 100px;
}

.skills-progress-line._2 {
  width: 90%;
  background-color: #fff;
}

.skills-progress-line._3 {
  width: 80%;
  background-color: #fff;
}

.skills-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.skills-title {
  color: #fff;
  text-align: left;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
}

.signature {
  margin-top: 0;
  margin-bottom: 0;
}

.dropdown {
  border-left: 1px solid #f5f6ff;
  margin-left: -1px;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-weight: 700;
  display: block;
}

.dropdown.w--open:hover {
  background-color: rgba(255, 255, 255, .09);
}

.body {
  background-color: #fff;
  padding: 0 2% 2%;
}

.navbar-white {
  z-index: 999;
  width: auto;
  height: auto;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  align-items: center;
  margin-bottom: 0;
  padding: 2% 0;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.text {
  color: var(--midnight-blue);
  flex: 0 auto;
  font-size: 16px;
  font-weight: 500;
}

.nav-column.left {
  border: 1px none var(--lavender);
  flex: 1;
}

.drop-list-div {
  width: 200px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 20px;
}

.drop-list-div.landing {
  width: 200px;
  border: 1px solid var(--lavender);
  color: var(--midnight-blue);
  background-color: #fff;
  border-radius: 0;
}

.dropdown-link {
  color: var(--midnight-blue);
  border-left: 1px solid #fff;
  border-radius: 0;
  align-items: center;
  padding: 10px 10px 10px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-decoration: none;
  display: flex;
}

.dropdown-link:hover {
  border-left: 1px solid var(--orange-red);
  background-color: var(--white-smoke);
  border-radius: 0;
}

.dropdown-link.w--current {
  color: #839bff;
  background-color: rgba(106, 78, 225, .1);
  border-radius: 0;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.nav-link-line {
  height: 68px;
  border-style: none none none solid;
  border-width: 1px;
  border-color: var(--lavender);
  color: var(--midnight-blue);
  margin-left: -1px;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  transition: color .2s;
}

.nav-link-line:hover {
  border-bottom-color: var(--lavender);
  background-color: var(--white-smoke);
  color: var(--orange-red);
}

.nav-link-line.w--current {
  width: auto;
  color: var(--orange-red);
  padding-left: 20px;
  padding-right: 20px;
}

.nav-link-line.down {
  border-right-style: solid;
  padding-right: 40px;
}

.nav-link-line.down:hover {
  border-right-style: solid;
}

.nav-link-line.gray {
  background-color: var(--white-smoke);
  border: 0 solid rgba(0, 0, 0, 0);
  transition: background-color .4s, color .4s;
}

.nav-link-line.gray:hover {
  border-style: solid none solid solid;
  border-color: var(--orange-red);
  background-color: var(--orange-red);
  color: #fff;
}

.arrow-icon {
  color: var(--orange-red);
  font-size: 12px;
}

.top {
  flex-direction: column;
  display: flex;
}

.container-nav {
  z-index: 2;
  width: 100%;
  max-width: none;
  border: 1px solid var(--lavender);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
  display: flex;
  position: relative;
}

.heading {
  color: #202020;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  text-decoration: none;
}

.heading.white {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 500;
  text-decoration: none;
}

.image-testimonials {
  width: 100%;
  height: 600px;
  background-image: var(--image-i5432d413);
  background-position: 50%;
  background-size: auto;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.image-testimonials.second {
  background-image: var(--image-i68a5bf75);
}

.image-testimonials.third {
  background-image: var(--image-i57b8b453);
  background-size: cover;
}

.testimonials-wrapper {
  align-items: center;
  display: flex;
}

.info-testimonials {
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0;
  display: flex;
}

.left-hero-content {
  max-width: 500px;
  padding-right: 40px;
}

.left-hero-content.left {
  width: 100%;
  height: auto;
  max-width: 700px;
  border-style: none none none solid;
  border-width: 0 0 0 2px;
  border-bottom-color: var(--orange-red);
  border-left-color: var(--orange-red);
  filter: none;
  background-color: rgba(255, 255, 255, .8);
  background-image: none;
  margin-top: -100px;
  margin-bottom: 0;
  padding: 60px;
}

.hero-flex {
  justify-content: space-between;
  display: flex;
}

.logo-brand {
  width: auto;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  border: 1px rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  overflow: hidden;
}

.logo-brand.w--current {
  flex-direction: column;
  display: block;
  overflow: hidden;
}

.rate-div-wrapper {
  width: 100%;
  background-color: var(--orange-red);
  border-radius: 0;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  display: flex;
}

.avatar-testimonial {
  width: 80px;
  height: 80px;
  color: #00cca7;
  text-transform: uppercase;
  background-image: var(--image-7b40fadb);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #a2e9fc;
  border-radius: 50%;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 10px;
  font-weight: 500;
  display: flex;
}

.avatar-testimonial.first {
  width: 60px;
  height: 60px;
  background-color: var(--peach-puff);
  background-image: var(--image-759814b7);
  border: 1px rgba(0, 0, 0, 0);
  border-radius: 100%;
}

.avatar-testimonial.second {
  width: 60px;
  height: 60px;
  background-color: var(--peach-puff);
  background-image: var(--image-7589fd36);
  border: 0 rgba(0, 0, 0, 0);
}

.avatar-testimonial.third {
  width: 60px;
  height: 60px;
  background-color: var(--peach-puff);
  background-image: var(--image-75a62c38);
  border: 0 rgba(0, 0, 0, 0);
}

.avatar {
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.star {
  width: 18px;
  height: 18px;
  margin-top: 0;
  margin-bottom: 0;
}

.review-paragraph {
  color: #fff;
  text-align: left;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 23px;
}

.review-paragraph.orange {
  color: var(--orange-red);
}

.name-testimonials {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-weight: 700;
}

.name-testimonials.dark {
  color: var(--midnight-blue);
}

.logo {
  margin-top: 20px;
}

.testimonial {
  z-index: 2;
  width: 500px;
  height: auto;
  color: #333;
  text-transform: lowercase;
  background-color: #fff;
  border: 1px #a2e9fc;
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0;
  margin-left: 140px;
  padding: 40px;
  font-family: Satoshi, sans-serif;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 40px;
  left: 0;
  right: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
}

.rate-block {
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 10px;
  display: flex;
}

.rate-block.padding {
  margin-top: 0;
}

.avatar-wrapper {
  text-transform: none;
  flex: 1;
}

.testimonials-copy {
  text-align: left;
}

.title-testimonilas {
  text-align: left;
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 40px;
}

.work-post-link {
  z-index: 1;
  width: 100%;
  color: #333;
  text-transform: capitalize;
  background-color: rgba(0, 0, 0, 0);
  border: 1px #e9e9e9;
  flex-direction: column;
  align-items: center;
  margin-bottom: 180px;
  padding: 0;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: visible;
}

.work-post-link.w--current {
  margin-bottom: 20px;
}

.work-post-link.blog, .work-post-link.no-padding {
  margin-bottom: 0;
}

.work-image-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.work-post {
  width: 100%;
  min-height: 650px;
  background-image: var(--image-7b40fadb);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  padding: 12px;
  display: flex;
  position: relative;
}

.work-post.big {
  min-height: 1000px;
}

.work-post.post {
  min-height: 400px;
}

.info-wrapper {
  z-index: 20;
  width: 90%;
  height: auto;
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--orange-red);
  text-align: left;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: -155px;
  margin-left: auto;
  margin-right: -30px;
  padding: 40px;
  display: flex;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
}

.info-wrapper.team {
  height: 240px;
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--orange-red);
  justify-content: flex-start;
  margin-top: -100px;
  margin-right: -20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.info-wrapper.project {
  padding-top: 100px;
  padding-left: 100px;
  padding-right: 100px;
}

.info-wrapper.post {
  border: 1px #000;
  margin-right: auto;
}

.text-block-new {
  color: var(--orange-red);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
}

.view-more {
  color: var(--orange-red);
  margin-top: 20px;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-decoration: none;
}

.view-more:hover {
  color: var(--midnight-blue);
  text-decoration: underline;
}

.title-facts {
  color: var(--orange-red);
  margin-top: 0;
  font-weight: 700;
}

.square {
  width: 100px;
  height: 120px;
  border: 10px solid #f60;
  margin-top: 0;
  position: absolute;
  top: auto;
}

.square.page-header {
  width: 140px;
  height: auto;
  border: 0px none var(--orange-red);
  margin-top: 0;
  margin-bottom: 0;
  top: 120px;
}

.square.page-header.blog {
  top: 120px;
}

.section-hero {
  background-color: #fff;
  padding-top: 160px;
  padding-bottom: 160px;
}

.section-hero.hero-page-section {
  height: 400px;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px 0;
  display: flex;
  position: relative;
}

.section-hero.services {
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.footer-social-icon {
  width: 70px;
  height: 70px;
  border-left: 1px solid #d7d5ff;
  border-right: 1px solid #d7d5ff;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.footer-social-icon.dark {
  width: 50px;
  height: 50px;
  border: 1px #000;
  border-radius: 100%;
  margin-right: 4px;
}

.footer-social-icon._2 {
  border-left-style: none;
}

.footer-social-icon._2.dark {
  width: 50px;
  border-style: none;
  border-width: 1px;
}

.footer-link-bottom {
  color: #343e52;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-left: 0;
  margin-right: 20px;
  font-size: 13px;
  font-weight: 700;
  line-height: 23px;
  text-decoration: none;
  transition: color .4s;
}

.footer-link-bottom:hover {
  color: #4760fc;
}

.footer-link-bottom.white {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  transition: color .4s;
}

.footer-link-bottom.white:hover {
  color: rgba(255, 255, 255, .7);
}

.footer-link-bottom.white {
  color: #fff;
  letter-spacing: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  transition: color .4s;
}

.footer-link-bottom.white:hover {
  color: var(--orange-red);
}

.section-footer {
  padding-top: 50px;
  padding-bottom: 90px;
  position: relative;
}

.section-footer.black {
  height: auto;
  background-color: var(--midnight-blue);
  border: 1px solid rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: space-between;
  margin-top: 2%;
  padding: 60px 0 0 0%;
  display: block;
}

.social-link {
  background-color: rgba(218, 223, 252, .1);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 0%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.social-link:hover {
  border-bottom-color: var(--orange-red);
}

.footer-social {
  width: auto;
  justify-content: center;
  margin: 0 0 0 auto;
  display: flex;
}

.copyright {
  color: #aaa;
  justify-content: flex-end;
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 12px;
  line-height: 22px;
  display: flex;
}

.copyright.center {
  justify-content: center;
}

.footer-notes {
  color: #0f0e16;
  background-color: rgba(218, 223, 252, .1);
  border-top: 1px #f5f5f5;
  padding-top: 30px;
  padding-bottom: 30px;
}

.lighter-link {
  color: var(--orange-red);
  text-decoration: none;
}

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

.copyright-copy {
  color: #fff;
  text-align: left;
  font-family: Satoshi, sans-serif;
  font-size: .6rem;
  font-weight: 500;
  line-height: 24px;
  display: inline-block;
}

.bottom-footer {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  padding-left: 15px;
  padding-right: 15px;
}

.footer-bottom {
  margin-top: 0;
  padding-top: 0;
}

.call {
  margin: -100px auto 0;
}

.section-cta {
  height: 400px;
  background-color: var(--orange-red);
  align-items: center;
  margin-top: 2%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: relative;
}

.grid-cta {
  width: 90%;
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.form-block {
  width: 100%;
  background-color: rgba(255, 255, 255, .3);
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px;
  display: flex;
}

.success-message {
  color: #fff;
  background-color: #0dcc43;
  border-radius: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.wrapper-second {
  margin-top: 0;
}

.input {
  height: 48px;
  color: #3b3b3b;
  background-color: #fff;
  border: 1px solid #dbe6b4;
  border-radius: 4px;
  flex: 0 auto;
  margin-bottom: 10px;
  font-family: Bitter, serif;
  font-size: 12px;
  line-height: 22px;
}

.input.newsletter {
  height: 60px;
  color: var(--midnight-blue);
  border: 0 rgba(0, 0, 0, 0);
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.error-message {
  color: #fff;
  text-align: center;
  background-color: red;
  border-radius: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.button-form {
  width: 180px;
  height: 60px;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  background-color: #e5980a;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-decoration: none;
  transition: all .4s;
  display: flex;
}

.button-form:hover {
  background-color: #536b7e;
  box-shadow: inset 0 200px 200px 200px rgba(2, 2, 2, .11);
}

.button-form.full-subscribe {
  background-color: var(--midnight-blue);
  border-radius: 0;
  font-family: Satoshi, sans-serif;
  font-weight: 400;
}

.button-form.full-subscribe:hover {
  background-color: var(--orange-red);
}

.form-subscribe {
  color: #3b3b3b;
  background-color: #fff;
  border: 1px rgba(0, 0, 0, 0);
  border-radius: 0;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 5px;
  font-family: Bitter, serif;
  display: flex;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, .03);
}

.orange-stripe {
  width: 100%;
  height: auto;
  min-height: 50%;
  background-color: var(--orange-red);
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.orange-stripe.top {
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.team-new-image {
  z-index: 5;
  width: auto;
  height: 400px;
  background-color: rgba(0, 0, 0, .05);
  background-image: var(--image-759814b7);
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: auto 400px;
  border-radius: 0;
  transition: box-shadow .3s;
  position: relative;
}

.team-new-image.second {
  background-color: rgba(0, 0, 0, .05);
  background-image: var(--image-7589fd36);
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: auto 400px;
}

.team-new-image.third {
  background-color: rgba(0, 0, 0, .05);
  background-image: var(--image-75a62c38);
  background-repeat: no-repeat;
  background-size: auto 400px;
  border-radius: 0;
}

.team-wrapper {
  height: auto;
  border-radius: 0;
}

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

.icon-div-new {
  width: 60px;
  height: 60px;
  background-color: #f60;
  justify-content: center;
  align-items: center;
  display: flex;
}

.icon-div-new.two {
  background-image: var(--image-41a34e3);
  background-position: 50%;
  background-size: cover;
}

.icon-div-new.darker {
  background-color: #140501;
}

.icon-div-new.darker.one {
  background-image: var(--image-i46ccf1bc);
}

.icon-div-new.darker.two {
  background-image: var(--image-165d4c72);
}

.icon-div-new.darker.three {
  background-image: var(--image-i97644a5);
}

.icon-div-new.darker.four {
  background-image: var(--image-i5432d413);
}

.icon-div-new.three {
  background-image: var(--image-i4a4f2faa);
  background-position: 50%;
  background-size: cover;
}

.icon-div-new.four {
  background-image: var(--image-6f7b2a53);
  background-position: 50%;
  background-size: cover;
}

.icon-div-new.one {
  background-image: var(--image-i4a3300a8);
  background-position: 50%;
  background-size: cover;
}

.icon-div-new.icon8 {
  background-image: var(--image-759814b7);
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-div-new.icon8.second {
  background-image: var(--image-75a62c38);
}

.icon-div-new.icon8.three {
  background-image: var(--image-7589fd36);
}

.licence-links-wrapper {
  color: #717177;
  flex: 1;
  justify-content: space-between;
  padding-left: 64px;
  padding-right: 64px;
  display: flex;
}

.licence-item-wrapper {
  width: 80%;
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--orange-red);
  background-color: #fff;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  font-weight: 500;
  display: flex;
}

.licence-item-wrapper.orange {
  background-color: var(--orange-red);
  color: #fff;
  margin-bottom: 0;
  font-weight: 500;
}

.licence-item-wrapper.changelog {
  width: 60%;
  justify-content: space-between;
  padding-left: 100px;
  padding-right: 100px;
}

.font {
  color: #fff;
  margin-bottom: 0;
}

.licens-image {
  width: 100px;
  height: 100px;
}

.licens-image.icons {
  width: auto;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-top-navigation {
  width: 100%;
}

.footer-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  margin-bottom: 60px;
  padding-left: 56px;
}

.logo-footer {
  border: 1px #000;
  margin-top: 0;
  margin-bottom: 0;
}

.column-navigation {
  width: auto;
  text-align: left;
  justify-content: flex-end;
  margin-bottom: 10px;
  font-family: Oswald, sans-serif;
  font-weight: 400;
  display: flex;
}

.footer-bottom-div {
  align-items: center;
  font-weight: 400;
  display: flex;
}

.divider-vertical {
  width: 1px;
  height: 10px;
  background-color: rgba(218, 223, 252, .45);
  margin-left: 5px;
  margin-right: 5px;
}

.grid-contact {
  grid-template-rows: auto auto auto auto;
}

.section-page {
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}

.section-page.submit-section {
  background-color: var(--orange-red);
  margin-top: 2%;
  margin-bottom: 20px;
  padding: 140px 20px;
}

.left-form {
  width: 100%;
  text-align: left;
}

.text-field {
  height: 60px;
  min-width: 100%;
  float: left;
  border: 1px none var(--lavender);
  background-color: var(--white-smoke);
  color: var(--midnight-blue);
  border-radius: 0;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  font-family: Satoshi, sans-serif;
  font-weight: 500;
  line-height: 24px;
}

.text-field:hover {
  border-color: var(--orange-red);
}

.text-field.message {
  height: auto;
  min-height: 140px;
  background-color: var(--white-smoke);
  color: #290d04;
  border-style: none;
  border-color: #290d04;
  border-radius: 0;
}

.text-field.message:hover {
  border-color: #6a1040;
}

.center-button-block {
  width: 100%;
  text-align: left;
}

.page-title {
  width: 100%;
  max-width: none;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.page-title.right {
  max-width: 500px;
  text-align: left;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: 0;
  margin-right: auto;
  position: -webkit-sticky;
  position: sticky;
}

.promo-block {
  grid-column-gap: 80px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1.5fr;
}

.field-label-alternative {
  color: #fff;
  text-align: left;
  text-transform: none;
  margin-bottom: 8px;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.grid-contact-detail {
  width: 100%;
  grid-template-rows: auto;
  margin-top: 20px;
}

.date-time {
  color: #fff;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.date-wrapper {
  align-items: center;
  display: flex;
}

.date-wrapper.contact {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
  border-color: rgba(0, 0, 0, 0);
  align-items: flex-start;
  padding: 0;
}

.white-link {
  color: #fff;
  font-weight: 400;
}

.white-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, .2);
  margin-top: 40px;
  margin-bottom: 40px;
}

.top-square {
  height: 60px;
  border-style: solid solid none;
  border-width: 16px;
  border-color: var(--orange-red);
  margin-bottom: 0;
}

.top-square.smaller {
  height: 40px;
}

.top-square.single {
  margin-bottom: 200px;
}

.service-image {
  width: auto;
  height: 800px;
  background-image: var(--image-7b40fadb);
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.line-wrapper {
  width: 1000px;
  border: 1px solid var(--lavender);
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 100px;
}

.line-wrapper.top {
  background-color: #fff;
  border-style: none;
  margin-top: -180px;
  padding: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
}

.line-wrapper.top.blog {
  z-index: 2;
  padding: 10%;
  position: relative;
}

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

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

.link-block {
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  margin-bottom: 0;
  padding: 0;
  text-decoration: none;
  position: relative;
}

.link-block:hover {
  border: 0px none var(--orange-red);
}

.info-team-copy {
  margin-top: 40px;
  margin-bottom: 0;
}

.page-heading {
  width: 600px;
  margin-bottom: 0;
}

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

.collection-list-blog {
  z-index: 10;
  grid-column-gap: 60px;
  grid-row-gap: 120px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.image-blog {
  height: 700px;
  background-image: var(--image-7b40fadb);
  background-position: 50%;
  background-size: cover;
  margin-top: 0;
}

.hero-section {
  height: 75vh;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(rgba(0, 0, 0, .05), rgba(0, 0, 0, .05)), var(--image-4346b546);
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.color {
  color: var(--orange-red);
}

.blog-title-page {
  width: 80%;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.logo-head {
  width: 100px;
  height: 68px;
  background-color: var(--midnight-blue);
  background-image: var(--image-30b1a950);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 40px;
}

.logo-head.second {
  background-color: var(--orange-red);
}

.logo-name {
  width: 100%;
  height: 68px;
  background-color: var(--orange-red);
  color: #fff;
  text-transform: none;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Satoshi, sans-serif;
  font-size: 30px;
  line-height: 30px;
  display: flex;
}

.logo-name.div {
  justify-content: center;
  padding-left: 0;
  padding-right: 4px;
}

.logo-name.div.second, .logo-name.second {
  background-color: var(--midnight-blue);
}

.grid-section-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  margin-right: 0;
  position: relative;
}

.grid-section-block.about {
  z-index: 2;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.image-div-content {
  height: 280px;
  min-width: auto;
  background-color: #fff;
  background-image: var(--image-22cfe40);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0;
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: auto;
}

.image-div-content.taller {
  height: 600px;
  min-width: auto;
  box-shadow: none;
  background-color: #ff7300;
  background-image: var(--image-4346b546);
  background-position: 50%;
  background-size: cover;
  border-radius: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding-top: 20px;
}

.image-div-content-second {
  height: 280px;
  min-width: auto;
  background-color: #fff;
  background-image: var(--image-712e63b9);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0;
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: auto;
}

.image-div-content-second.about {
  margin-bottom: 40px;
}

.grid-column-wrapper.top-margin {
  margin-top: 40px;
}

.image-div-content-third {
  height: 280px;
  min-width: auto;
  background-color: #fff;
  background-image: var(--image-22cfe40);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0;
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: auto;
}

.image-div-content-third.less-padding {
  background-image: none;
  margin-bottom: 0;
}

.image-div-content-third.less-padding.bottom {
  box-shadow: none;
  background-image: var(--image-7f1195e);
  background-size: cover;
}

.video-button-div {
  z-index: 10;
  width: 200px;
  background-color: #fff;
  border-radius: 0;
  align-items: center;
  margin-left: 20px;
  padding: 5px 20px 5px 5px;
  text-decoration: none;
  transition: transform .4s;
  display: none;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.video-button-div:hover {
  transform: translate(0, -10px);
}

.lightbox-link {
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.video-icon {
  width: 50px;
  height: 50px;
  background-color: var(--orange-red);
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  transition: background-color .4s;
  display: flex;
}

.video-icon:hover {
  background-color: #202020;
  background-image: none;
}

.video-text {
  color: #000;
  font-family: Lato, sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.ropdown-list.w--open {
  background-color: var(--midnight-blue);
}

.categories {
  width: 600px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

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

.info-card-wrapper {
  width: 100%;
  border-bottom: 1px solid var(--orange-red);
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 40px 40px;
}

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

.utility-page-content {
  width: 460px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--orange-red) var(--lavender) var(--lavender);
  color: var(--midnight-blue);
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  padding: 60px;
  font-family: Satoshi, sans-serif;
  font-weight: 400;
  display: flex;
}

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

.block-wrapper {
  background-color: #fff;
  margin-bottom: 0;
  padding: 40px;
}

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

.block-wrapper.color {
  background-color: var(--orange-red);
  margin-top: 0;
  padding: 100px;
}

.block-wrapper.color.hidden {
  display: none;
}

.block-wrapper.services {
  padding: 100px;
}

.block-wrapper.services.hidden {
  display: none;
}

.hero-headline {
  color: var(--midnight-blue);
  text-transform: capitalize;
}

.div-info-license {
  flex-direction: column;
  display: flex;
}

.image-info-wrapper {
  display: flex;
}

.hero-section-div, .image-testimonial-div {
  overflow: hidden;
}

.invisible {
  z-index: 2;
  height: 300px;
  margin-bottom: -60px;
  margin-left: 40px;
  margin-right: 40px;
  position: relative;
  overflow: hidden;
}

.logo-div {
  display: flex;
}

.invisible-image-div {
  overflow: hidden;
}

.image-blog-div {
  margin-top: 100px;
  overflow: hidden;
}

.image {
  width: 100%;
}

.link {
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .hero-containner {
    top: auto;
  }

  .button, .button.side-padding, .button.line {
    width: auto;
  }

  .brand {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brand.w--current {
    text-align: left;
    margin-right: 0;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 10px;
  }

  .brand.footer {
    margin-bottom: 4%;
    margin-left: auto;
  }

  .nav-menu {
    height: auto;
    float: none;
    border: 1px solid var(--lavender);
    background-color: #fff;
    flex: none;
    align-items: center;
    margin-top: 0;
    padding-right: 0;
    position: absolute;
  }

  .image-service-div {
    height: 340px;
    background-size: cover;
  }

  .about-us-div {
    height: auto;
    grid-row-gap: 40px;
    grid-template-columns: 2.25fr;
  }

  .about-us-div.first {
    height: auto;
  }

  .about-us {
    margin-top: 4%;
  }

  .color-example {
    background-color: #e9f6ff;
  }

  .color-example.sixth {
    background-color: #555c96;
  }

  .color-example.fourth {
    background-color: #4157ff;
  }

  .color-example.third {
    background-color: #2ea4ff;
  }

  .color-example.second {
    background-color: #d8eeff;
  }

  .section.gray {
    margin-top: 4%;
  }

  .rich-text {
    width: 80%;
  }

  .gray-space {
    padding-left: 20px;
    padding-right: 20px;
  }

  .big-headline {
    text-align: left;
  }

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

  .tabs-menu {
    width: 60%;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }

  .tab-link, .tab-link.w--current {
    margin-bottom: 10px;
    display: block;
  }

  .icon-div.font {
    margin-bottom: 20px;
  }

  .achivement-container {
    margin-top: 60px;
  }

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

  .achivement-block.lines {
    border: 1px solid #e9f6ff;
    border-left: 1px #000;
    border-right: 1px #000;
    padding: 20px 0;
  }

  .title-section-wrapper.page-header.blog {
    width: 100%;
  }

  .about-me-grid {
    height: auto;
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
    padding: 6%;
  }

  .dropdown {
    margin-left: 0;
    padding-left: 0;
  }

  .dropdown:hover {
    background-color: rgba(255, 255, 255, .09);
  }

  .body {
    padding-bottom: 4%;
    padding-left: 4%;
    padding-right: 4%;
  }

  .navbar-white {
    flex-direction: row;
    padding-top: 4%;
    padding-bottom: 4%;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
  }

  .drop-list-div.landing {
    width: auto;
    border-style: none;
    border-top-left-radius: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
  }

  .dropdown-link {
    padding-right: 20px;
  }

  .nav-link-line {
    color: #151f47;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-link-line.down {
    width: 100%;
    background-color: #fff;
    border-style: none;
    border-width: 1px;
    margin-left: 0;
    padding-left: 20px;
  }

  .nav-link-line.down:hover {
    border-style: none;
  }

  .nav-link-line.gray {
    border-style: none;
    margin-left: 0;
  }

  .container-nav {
    justify-content: space-between;
    padding-right: 0;
  }

  .menu-button {
    width: 68px;
    height: 68px;
    background-color: var(--midnight-blue);
    color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
  }

  .menu-button.w--open {
    background-color: var(--orange-red);
    color: #fff;
  }

  .image-testimonials {
    background-repeat: no-repeat;
    background-size: cover;
  }

  .left-hero-content {
    max-width: none;
    padding-right: 0;
  }

  .left-hero-content.left {
    margin-top: 0;
    margin-left: 20px;
    margin-right: 20px;
    padding-right: 60px;
  }

  .hero-flex {
    height: auto;
    margin-top: 0;
  }

  .testimonial {
    width: auto;
    height: auto;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    left: auto;
  }

  .work-post-link {
    margin-bottom: 120px;
    padding-right: 0;
  }

  .work-post-link.blog {
    margin-bottom: 120px;
  }

  .info-wrapper {
    z-index: 2;
  }

  .info-wrapper.team {
    z-index: 10;
  }

  .service-div {
    margin-bottom: 40px;
  }

  .section-footer.black {
    margin-top: 4%;
  }

  .footer-social {
    margin-top: 4%;
    margin-right: auto;
  }

  .copyright {
    text-align: center;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
  }

  .copyright.center {
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer-notes {
    padding-bottom: 30px;
    padding-left: 4%;
    padding-right: 4%;
  }

  .bottom-footer {
    flex-direction: column;
    grid-template-columns: 1fr;
    align-items: center;
    display: flex;
  }

  .call {
    margin-top: 60px;
  }

  .section-cta {
    height: auto;
    margin-top: 4%;
    padding: 6% 6% 0;
  }

  .grid-cta {
    width: 100%;
    flex-direction: column-reverse;
    grid-template-columns: 1.5fr;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .input {
    margin-bottom: 10px;
  }

  .form-subscribe {
    flex-direction: row;
    padding-left: 5px;
  }

  .orange-stripe {
    min-height: 25%;
    padding-bottom: 0;
  }

  .team-new-image {
    width: auto;
  }

  .team-new-image.third {
    z-index: 2;
  }

  .team-wrapper {
    width: 70%;
    flex-direction: column;
    margin-bottom: 4%;
    display: flex;
  }

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

  .licence-links-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .licence-item-wrapper {
    width: 80%;
    flex-direction: column;
    align-items: flex-start;
  }

  .licens-image.icons {
    margin-bottom: 20px;
  }

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

  .column-navigation {
    text-align: center;
    justify-content: center;
  }

  .page-title.right {
    max-width: none;
    margin-bottom: 60px;
  }

  .promo-block {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .field-label-alternative {
    font-size: 12px;
    line-height: 22px;
  }

  .grid-contact-detail {
    width: 100.123%;
  }

  .line-wrapper.top {
    width: auto;
  }

  .line-wrapper.top.blog {
    width: 100%;
  }

  .collection-list-projects, .collection-list-services {
    grid-template-columns: 1fr;
  }

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

  .hero-section {
    height: 700px;
    align-items: center;
    display: flex;
  }

  .icon {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .grid-section-block.about {
    width: 80%;
    grid-template-columns: 1fr;
  }

  .image-div-content-third.less-padding.bottom {
    background-image: var(--image-i4a4f2faa);
    background-position: 50%;
    background-size: cover;
  }

  .video-button-div {
    bottom: -20px;
  }

  .ropdown-list.w--open {
    width: 100%;
    position: relative;
  }

  .image-info-wrapper {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .hero-containner {
    top: 0%;
  }

  .service-title, .white-paragraph {
    text-align: left;
  }

  .about-us-div.first {
    height: auto;
  }

  .rich-text {
    width: 100%;
  }

  .big-headline {
    font-size: 50px;
    line-height: 60px;
  }

  .big-headline.page-header {
    font-size: 48px;
    line-height: 58px;
  }

  .grid-scales {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
  }

  .tab-pane {
    padding-left: 0;
  }

  .tabs-menu {
    width: 100%;
  }

  .tab-link {
    float: none;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    display: block;
  }

  .tab-link.w--current {
    margin-right: 0;
    display: block;
  }

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

  .achivement-block {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .achivement-block.lines {
    border-style: solid none;
    border-top-width: 1px;
    border-top-color: #e9f6ff;
    border-bottom-width: 1px;
    border-bottom-color: #e9f6ff;
    padding: 20px 0;
  }

  .dropdown {
    width: 100%;
    max-width: 1500px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar-white {
    z-index: 999;
    padding-left: 0;
    padding-right: 0;
  }

  .drop-list-div.landing {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-button.w--open {
    background-color: var(--midnight-blue);
    color: #fff;
  }

  .left-hero-content.left {
    margin-top: 0;
    margin-bottom: 0;
    padding: 40px;
  }

  .hero-flex {
    margin-top: 0;
  }

  .testimonial {
    width: auto;
  }

  .info-wrapper {
    margin-right: -20px;
  }

  .info-wrapper.project {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .square.page-header {
    width: 120px;
    top: 130px;
  }

  .section-footer.black {
    flex-direction: column;
    justify-content: center;
    display: flex;
  }

  .footer-social {
    width: auto;
  }

  .copyright {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-notes {
    justify-content: center;
    display: flex;
  }

  .call {
    margin-top: 60px;
  }

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

  .form-block {
    width: auto;
  }

  .input {
    margin-bottom: 10px;
  }

  .team-wrapper {
    width: 80%;
    margin-bottom: 40px;
  }

  .licence-item-wrapper {
    width: 100%;
  }

  .licence-item-wrapper.changelog {
    width: 80%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .column-navigation {
    text-align: center;
    justify-content: center;
  }

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

  .text-field {
    min-width: auto;
  }

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

  .top-square {
    height: 50px;
  }

  .service-image {
    height: 600px;
  }

  .blog-title-page {
    width: 100%;
  }

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

  .grid-section-block.about {
    width: 100%;
  }

  .grid-column-wrapper.top-margin {
    margin-top: 0;
  }

  .categories {
    width: auto;
  }

  .grid-categories {
    width: 100%;
  }

  .block-wrapper.color, .block-wrapper.services {
    padding: 60px;
  }
}

@media screen and (max-width: 479px) {
  .hero-containner {
    max-width: 100%;
    top: 25%;
  }

  .button.side-padding {
    margin-bottom: 10px;
  }

  .button.line.categories {
    margin-bottom: 0;
  }

  .nav-menu {
    float: none;
    text-align: center;
    display: block;
  }

  .image-service-div {
    height: 240px;
    margin-left: 0;
    margin-right: 0;
  }

  .container.footer {
    margin-left: 0;
    margin-right: 0;
  }

  .about-us-div.first {
    height: auto;
    padding: 40px;
  }

  .section.gray {
    padding-left: 0;
    padding-right: 0;
  }

  .rich-text {
    width: 100%;
  }

  .gray-space {
    padding-left: 20px;
    padding-right: 20px;
  }

  .big-paragraph.white {
    font-size: 20px;
    line-height: 30px;
  }

  .big-headline {
    width: 100%;
    font-size: 30px;
    line-height: 40px;
  }

  .big-headline.page-header {
    text-align: center;
    justify-content: center;
    font-size: 38px;
    line-height: 48px;
  }

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

  .white {
    font-size: 30px;
    line-height: 40px;
  }

  .tabs-menu {
    width: 100%;
    align-items: center;
  }

  .tab-link {
    width: 100%;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .tab-link.w--current {
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .title-section {
    font-size: 30px;
    line-height: 40px;
  }

  .achivement-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .achivement-container.project {
    padding-left: 20px;
    padding-right: 20px;
  }

  .title-section-wrapper {
    margin-bottom: 60px;
  }

  .about-me-grid {
    padding: 40px;
  }

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

  .icon-2 {
    margin-right: 20px;
  }

  .dropdown {
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar-white {
    padding-left: 0;
    padding-right: 0;
    position: -webkit-sticky;
    position: sticky;
  }

  .menu-button {
    margin-right: 1vw;
  }

  .heading.white {
    font-size: 40px;
    line-height: 50px;
  }

  .testimonials-wrapper {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .info-testimonials {
    margin-left: 10px;
  }

  .left-hero-content {
    max-width: none;
  }

  .left-hero-content.left {
    width: auto;
    max-width: 100%;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, .47);
    margin: 20px 0;
    padding: 20px;
  }

  .hero-flex {
    justify-content: center;
    margin-top: 0;
  }

  .logo-brand, .logo-brand.w--current {
    padding-left: 1vw;
  }

  .rate-div-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .avatar-testimonial.first {
    flex: 0 auto;
    margin-bottom: 0;
    margin-right: 20px;
  }

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

  .testimonial {
    width: 100%;
    height: auto;
    padding: 20px;
    bottom: 0;
  }

  .rate-block.padding {
    margin-top: 10px;
    margin-left: 0;
  }

  .work-post-link {
    flex-direction: column;
    padding-right: 0;
  }

  .work-post-link.blog {
    margin-bottom: 0;
  }

  .work-post {
    width: 100%;
    min-height: 400px;
  }

  .work-post.big {
    min-height: 600px;
  }

  .info-wrapper {
    width: 100%;
    margin-right: auto;
    padding: 20px;
  }

  .info-wrapper.team {
    height: auto;
  }

  .info-wrapper.project {
    padding-left: 20px;
    padding-right: 20px;
  }

  .square.page-header {
    width: 100px;
    top: 130px;
  }

  .footer-social-icon {
    border-top: 1px solid #d7d5ff;
    border-bottom: 1px solid #d7d5ff;
  }

  .footer-social-icon.dark {
    border-top: 0 rgba(240, 242, 250, .33);
    border-bottom-color: rgba(240, 242, 250, .33);
    border-radius: 0%;
  }

  .footer-social-icon._2.dark {
    border-bottom-color: rgba(240, 242, 250, .33);
  }

  .footer-link-bottom, .footer-link-bottom.white, .footer-link-bottom.white {
    margin-left: 6px;
    margin-right: 6px;
  }

  .section-footer {
    padding-bottom: 200px;
  }

  .section-footer.black {
    height: auto;
    padding-bottom: 0;
  }

  .footer-social {
    margin-top: 0;
  }

  .copyright {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }

  .copyright-copy {
    margin-left: auto;
    margin-right: auto;
  }

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

  .call {
    height: auto;
    margin-top: 0;
  }

  .input {
    text-align: center;
    border: 1px solid #dbe6b4;
    border-radius: 10px;
    flex: 1;
    margin-bottom: 10px;
    padding: 15px 0;
  }

  .button-form {
    margin-bottom: 10px;
  }

  .button-form.full-subscribe {
    width: 100%;
    margin-bottom: 0;
  }

  .form-subscribe {
    border-radius: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  .team-new-image, .team-new-image.second, .team-new-image.third {
    background-size: auto 350px;
  }

  .team-wrapper {
    width: 100%;
    margin-bottom: 40px;
  }

  .licence-links-wrapper {
    flex-direction: column;
    flex: 1;
    padding-left: 0;
    padding-right: 0;
  }

  .licence-item-wrapper {
    width: 100%;
    justify-content: space-between;
    padding: 15px 15px 14px;
  }

  .licence-item-wrapper.changelog {
    width: 100%;
  }

  .licens-image {
    width: 100px;
    flex: 0 auto;
  }

  .footer-grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .column-navigation {
    width: 100%;
    flex-flow: column;
  }

  .footer-bottom-div {
    text-align: left;
    justify-content: flex-start;
    margin-left: auto;
    margin-right: auto;
  }

  .grid-contact {
    width: 100%;
  }

  .text-field {
    min-width: 100%;
  }

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

  .date-wrapper {
    align-items: flex-start;
  }

  .service-image {
    height: 400px;
  }

  .page-heading.center {
    font-size: 38px;
    line-height: 48px;
  }

  .hero-section {
    height: auto;
  }

  .blog-title-page {
    font-size: 38px;
    line-height: 48px;
  }

  .logo-head {
    width: 68px;
  }

  .logo-name.div {
    display: none;
  }

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

  .image-div-content.taller {
    height: 400px;
  }

  .grid-column-wrapper.top-margin {
    width: 100%;
    margin-top: 0;
  }

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

  .info-card-wrapper {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .block-wrapper.color, .block-wrapper.services {
    padding: 40px 20px;
  }

  .hero-headline {
    font-size: 38px;
    line-height: 48px;
  }

  .project-name, .heading-3 {
    font-size: 24px;
    line-height: 34px;
  }

  .invisible {
    height: 240px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

#w-node-e286501e-4218-ec91-1604-95d80bdb87cd-0bdb87ba {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-e286501e-4218-ec91-1604-95d80bdb87e2-0bdb87ba {
  justify-self: end;
}

#w-node-b642abe7-024a-2d57-6a6c-28ef462a6f9f-a3d48bee {
  align-self: center;
}

#w-node-_63098d59-8b39-ee6e-5119-e31b3e7e3bc3-64d48bf1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_63098d59-8b39-ee6e-5119-e31b3e7e3bed-64d48bf1, #w-node-_63098d59-8b39-ee6e-5119-e31b3e7e3bf1-64d48bf1, #w-node-_63098d59-8b39-ee6e-5119-e31b3e7e3bf5-64d48bf1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_6c777244-6dbb-a9b2-fb8b-fb5fc98e9111-fad48bf2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_6c777244-6dbb-a9b2-fb8b-fb5fc98e913b-fad48bf2, #w-node-_6c777244-6dbb-a9b2-fb8b-fb5fc98e913f-fad48bf2, #w-node-_6c777244-6dbb-a9b2-fb8b-fb5fc98e9143-fad48bf2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c0c5f8c6-3797-1c63-cecb-7cb7cf97a4e8-5fd48bf4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-c0c5f8c6-3797-1c63-cecb-7cb7cf97a512-5fd48bf4, #w-node-c0c5f8c6-3797-1c63-cecb-7cb7cf97a516-5fd48bf4, #w-node-c0c5f8c6-3797-1c63-cecb-7cb7cf97a51a-5fd48bf4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c83ceee2-c909-a5ce-8990-22650e0e0375-ddd48bfc, #w-node-c83ceee2-c909-a5ce-8990-22650e0e037b-ddd48bfc, #w-node-c83ceee2-c909-a5ce-8990-22650e0e0381-ddd48bfc, #w-node-c83ceee2-c909-a5ce-8990-22650e0e0387-ddd48bfc, #w-node-c83ceee2-c909-a5ce-8990-22650e0e038d-ddd48bfc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

@media screen and (max-width: 991px) {
  #w-node-_63098d59-8b39-ee6e-5119-e31b3e7e3bc3-64d48bf1, #w-node-_6c777244-6dbb-a9b2-fb8b-fb5fc98e9111-fad48bf2, #w-node-c0c5f8c6-3797-1c63-cecb-7cb7cf97a4e8-5fd48bf4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c83ceee2-c909-a5ce-8990-22650e0e0375-ddd48bfc, #w-node-c83ceee2-c909-a5ce-8990-22650e0e037b-ddd48bfc, #w-node-c83ceee2-c909-a5ce-8990-22650e0e0381-ddd48bfc, #w-node-c83ceee2-c909-a5ce-8990-22650e0e0387-ddd48bfc, #w-node-c83ceee2-c909-a5ce-8990-22650e0e038d-ddd48bfc {
    grid-column: span 4 / span 4;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_63098d59-8b39-ee6e-5119-e31b3e7e3bed-64d48bf1, #w-node-_63098d59-8b39-ee6e-5119-e31b3e7e3bf1-64d48bf1, #w-node-_63098d59-8b39-ee6e-5119-e31b3e7e3bf5-64d48bf1, #w-node-_6c777244-6dbb-a9b2-fb8b-fb5fc98e913b-fad48bf2, #w-node-_6c777244-6dbb-a9b2-fb8b-fb5fc98e913f-fad48bf2, #w-node-_6c777244-6dbb-a9b2-fb8b-fb5fc98e9143-fad48bf2, #w-node-c0c5f8c6-3797-1c63-cecb-7cb7cf97a512-5fd48bf4, #w-node-c0c5f8c6-3797-1c63-cecb-7cb7cf97a516-5fd48bf4, #w-node-c0c5f8c6-3797-1c63-cecb-7cb7cf97a51a-5fd48bf4 {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-e286501e-4218-ec91-1604-95d80bdb87cd-0bdb87ba {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e286501e-4218-ec91-1604-95d80bdb87e2-0bdb87ba {
    justify-self: auto;
  }

  #w-node-_63098d59-8b39-ee6e-5119-e31b3e7e3bc3-64d48bf1, #w-node-_6c777244-6dbb-a9b2-fb8b-fb5fc98e9111-fad48bf2, #w-node-c0c5f8c6-3797-1c63-cecb-7cb7cf97a4e8-5fd48bf4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Satoshi';
  src: url("/assets/fonts/satoshi-italic.ttf") format('truetype'), url("/assets/fonts/satoshi-variableitalic.ttf") format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url("/assets/fonts/satoshi-blackitalic.ttf") format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url("/assets/fonts/satoshi-mediumitalic.ttf") format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url("/assets/fonts/satoshi-medium.ttf") format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url("/assets/fonts/satoshi-light.ttf") format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url("/assets/fonts/satoshi-bold.ttf") format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url("/assets/fonts/satoshi-regular.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url("/assets/fonts/satoshi-bolditalic.ttf") format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url("/assets/fonts/satoshi-lightitalic.ttf") format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url("/assets/fonts/satoshi-black.ttf") format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi variable';
  src: url("/assets/fonts/satoshi-variable.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}