@font-face {
  font-family: "Fa solid 900";
  src: url('../fonts/fa-solid-900.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa 400";
  src: url('../fonts/fa-regular-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa Brands 400 (6.4.2)";
  src: url('../fonts/fa-brands-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-dark: #0a0f12;
  --blue-gray-dark: #141a20;
  --primary: #15d5fe;
  --blue-gray: #28313a;
  --gray: #e9e9e9;
  --black: black;
  --light-gray: #f9f9fa;
  --primary-light: #cbf6ff;
  --white: white;
  --dark-gray-50: #afafaf80;
  --dark-gray: #afafaf;
  --white-50: #ffffff80;
}

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

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

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

.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(--primary-dark);
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1em;
}

h1 {
  color: var(--primary-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2em;
}

h2 {
  color: var(--primary-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2em;
}

h3 {
  color: var(--primary-dark);
  margin-top: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2em;
}

h4 {
  color: var(--primary-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2em;
}

h5 {
  color: var(--primary-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2em;
}

h6 {
  color: var(--primary-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
}

p {
  color: var(--blue-gray-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.5em;
}

a {
  color: var(--primary);
  align-items: center;
  font-size: 16px;
  line-height: 1.2em;
  text-decoration: none;
  transition: all .35s;
}

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

ul {
  grid-row-gap: 15px;
  background-color: var(--blue-gray-dark);
  color: var(--primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 20px;
  display: flex;
}

li {
  align-items: center;
  line-height: 1.4em;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: 10px;
  font-weight: 300;
  display: block;
}

blockquote {
  text-align: center;
  background-image: url('../images/quote.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  border-left: 1px #000;
  margin-top: 0;
  margin-bottom: 0;
  padding: 30px 20px 20px;
  font-family: Montserrat, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}

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

.section.licensing-fonts {
  padding-top: 0;
  padding-bottom: 0;
}

.section.without-bottom-spacing {
  padding-bottom: 0;
}

.section.color-section {
  background-color: var(--blue-gray);
  margin-bottom: -1px;
}

.section.blue-gray-dark-bg-no-bottom {
  background-color: var(--blue-gray-dark);
  margin-bottom: -2px;
  padding-bottom: 2px;
}

.section.cta-with-image-background {
  background-image: linear-gradient(20deg, #15d5fe80, #28313a80 55%, #28313a00), linear-gradient(24deg, #0009 26%, #fff0 67%), url('../images/priscilla-du-preez-KdefJOQdjx4-unsplash.jpg');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, auto, cover;
}

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

.section.logos-style {
  padding-bottom: 0;
}

.section.video-cta {
  padding-top: 130px;
  padding-bottom: 130px;
}

.base-container {
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.base-container.align-left {
  align-items: flex-start;
}

.base-container.full-width {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.grid-system-wrapper {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.grid-system {
  border-top: 1px solid #7c7c7c;
  justify-content: space-between;
  width: 80%;
  display: flex;
}

.grid-description {
  border-bottom: 1px solid #a7a7a7;
  border-right: 1px solid #a7a7a7;
  justify-content: center;
  align-items: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-description.first-description {
  border-bottom: 1px solid #a7a7a7;
  border-left: 1px solid #a7a7a7;
  border-right: 1px solid #a7a7a7;
  width: 24%;
}

.grid-description.last-description {
  border-right-style: solid;
  border-right-width: 1px;
}

.spacing-wrapper-mobile {
  width: 70%;
  margin-top: 30px;
  position: relative;
}

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

.spacing-columns {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.bottom-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  inset: auto 0% 10% auto;
}

.top-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  top: 8%;
  bottom: auto;
  right: 0;
}

.spacing-wrapper {
  width: 100%;
  margin-top: 30px;
  position: relative;
}

.middle-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  inset: 33% 0% auto auto;
}

.primary-style-guide {
  background-color: var(--primary);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.gray-style-guide {
  background-color: var(--gray);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.color-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

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

.primary-dark-style-guide {
  background-color: var(--primary-dark);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.black-style-guide {
  background-color: var(--black);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.colors-container {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: flex-start;
  display: flex;
}

.light-gray-style-guide {
  background-color: var(--light-gray);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.color-container {
  grid-column-gap: 30px;
  grid-row-gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
  display: flex;
}

.primary-light-style-guide {
  background-color: var(--primary-light);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.white-style-guide {
  background-color: var(--white);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.headings-typography-wrapper {
  flex-flow: wrap;
  width: 47%;
  display: flex;
}

.headings-typography-wrapper.last-child {
  margin-bottom: 0;
  margin-right: 0;
}

.headers-wrapper {
  width: 100%;
  margin-top: 10px;
}

.h1-tablet {
  font-size: 48px;
}

.h2-tablet {
  font-size: 42px;
}

.h1-mobile {
  font-size: 40px;
}

.h2-mobile {
  font-size: 36px;
}

.h3-mobile {
  font-size: 32px;
}

.primary-button {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--blue-gray-dark);
  text-align: center;
  letter-spacing: .5px;
  text-transform: none;
  border-radius: 50px;
  justify-content: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  transition: all .35s;
  display: flex;
}

.primary-button:hover {
  border-color: var(--primary);
  opacity: 1;
  color: var(--primary);
  background-color: #141a2000;
}

.primary-button.full-width-mobile {
  display: block;
}

.primary-button.search-button:hover {
  border-color: var(--primary);
  background-color: #141a2000;
}

.primary-button.pagination {
  margin-top: 40px;
}

.primary-button.pagination-light {
  background-color: #15d5fe00;
  margin-top: 40px;
}

.primary-button.pagination-light:hover {
  background-color: var(--blue-gray-dark);
}

.primary-button.full-width {
  flex: 1;
}

.primary-button.outline {
  background-color: #15d5fe00;
}

.primary-button.outline:hover {
  background-color: var(--blue-gray-dark);
}

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

.top-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 5%;
  right: 0;
}

.middlr-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 29%;
  right: 0;
}

.bottom-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  bottom: 7%;
  right: 0;
}

.link-wrapper {
  width: 50%;
  margin-top: 10px;
  margin-bottom: 0;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.nav-menu {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
}

.nav-link {
  padding: 20px;
  font-size: 15px;
}

.nav-link:hover {
  opacity: 1;
}

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

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

.nav-link.white-style:hover {
  color: var(--primary);
}

.nav-dropdown-toggle {
  margin-left: 0;
  margin-right: 0;
  padding: 20px 34px 20px 20px;
}

.nav-dropdown-toggle.white-style {
  color: var(--white);
  transition: color .35s;
}

.nav-dropdown-toggle.white-style:hover {
  color: var(--primary);
}

.nav-dropdown-icon {
  font-size: 8px;
}

.nav-dropdown-list {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #28313acc;
  border: 1px solid #0000002e;
  border-radius: 20px;
  width: 200px;
  padding: 15px 20px;
}

.nav-dropdown-list.w--open {
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 0 10px #0000000a;
}

.nav-dropdown-list.megamenu {
  width: 360px;
}

.nav-dropdown-list.megamenu.w--open {
  width: 540px;
  display: flex;
  right: -220px;
}

.nav-dropdown-link-wrapper {
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-dropdown-link {
  color: var(--white);
  text-transform: lowercase;
  width: 100%;
  margin-left: -20px;
  padding: 8px 8px 8px 0;
  font-size: 16px;
  transition: all .3s;
  display: flex;
}

.nav-dropdown-link:hover {
  color: var(--primary);
  margin-left: 0;
  font-weight: 600;
}

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

.nav-item-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 20px;
}

.licensing-title-wrapper {
  border-bottom: 1px #5e5e5e80;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.licensing-images-wrapper {
  border-top: 1px solid #5e5e5e80;
  width: 100%;
  padding-top: 40px;
}

.licensing-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-bottom: 1px #5e5e5e80;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  padding-bottom: 60px;
}

.licensing-grid.last-child {
  border-bottom-style: none;
  padding-bottom: 0;
}

.licensing-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 320px;
}

.licensing-title {
  width: 100%;
  padding-bottom: 30px;
}

.licensing-image-link {
  width: 100%;
  height: 100%;
}

.licensing-image-link:hover {
  opacity: 1;
}

.license-link {
  color: var(--primary-dark);
  letter-spacing: normal;
  margin-right: 50px;
  font-weight: 600;
}

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

.license-link.last-child {
  margin-right: 0;
}

.banner-title {
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.banner-title.contact-style-one {
  text-align: left;
  margin-bottom: 20px;
}

.licensing-heading {
  margin-bottom: 20px;
}

.licensing-icon-link-wrapper {
  margin-right: 25px;
}

.icon-style-guide {
  color: var(--primary);
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 24px;
}

.icon-style-guide.dribble {
  font-family: "Fa solid 900", sans-serif;
}

.licensing-fonts-wrapper {
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.licensing-icon-link {
  margin-bottom: 20px;
}

.licensing-paragraph {
  width: 50%;
  margin-right: 40px;
}

.licensing-paragraph.last-item {
  margin-right: 0;
}

.licensing-font-title {
  color: #5e5e5e80;
  text-transform: uppercase;
  font-weight: 400;
}

.licensing-icons-wrapper {
  margin-top: 30px;
  margin-bottom: 20px;
}

.utility-page-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

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

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

.password-image {
  width: 140px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.password-input {
  border: 1px solid var(--dark-gray-50);
  color: var(--primary-dark);
  background-color: #fff0;
  border-radius: 50px;
  min-width: 280px;
  height: auto;
  margin-bottom: 10px;
  padding: 12px 22px;
  font-size: 16px;
  line-height: 1.2em;
}

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

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

.password-title-wrapper {
  margin-bottom: 40px;
}

._404-paragraph {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

._404-logo-wrapper {
  justify-content: center;
  display: flex;
  position: absolute;
  inset: 40px 0% auto;
}

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

._404-content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  display: flex;
}

.coming-soon-wrapper {
  flex-direction: column;
  align-items: flex-start;
  max-width: 690px;
  margin-left: 0;
  margin-right: 40px;
  display: flex;
}

.changelog-heading {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
}

.coming-soon-form {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.coming-soon-input {
  border: 1px solid var(--dark-gray-50);
  color: var(--primary-dark);
  background-color: #fff0;
  border-radius: 50px;
  min-width: 300px;
  height: auto;
  margin-bottom: 0;
  padding: 12px 22px;
}

.coming-soon-input:focus {
  border: 1px solid var(--primary);
  color: var(--primary-dark);
  font-size: 16px;
  line-height: 1em;
}

.coming-soon-input::placeholder {
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 1em;
}

.coming-soon-paragraph {
  margin-top: 20px;
  margin-bottom: 40px;
}

.coming-soon-page-wrap {
  text-align: left;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.coming-soon-heading {
  margin-top: 60px;
}

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

.blog-sidebar-post-category {
  background-color: var(--blue-gray);
  color: var(--primary);
  text-transform: lowercase;
  border-radius: 50px;
  padding: 14px 22px;
  transition: all .3s;
  display: inline-block;
}

.blog-sidebar-post-category:hover {
  background-color: var(--primary);
  color: var(--primary-dark);
}

.blog-template-wrapper {
  z-index: 1;
  width: 100%;
  margin-top: -100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.blog-template-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 460px;
  margin-bottom: 40px;
}

.blog-template-date {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}

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

.prev-post-arrow {
  color: var(--dark-gray-50);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 25px;
  font-family: "Fa solid 900", sans-serif;
}

.blog-template-pagination-icon {
  width: 40px;
  height: 40px;
}

.next-post-arrow {
  color: var(--dark-gray-50);
  margin-bottom: 0;
  margin-left: 25px;
  font-family: "Fa solid 900", sans-serif;
}

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

.blog-template-next-button {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

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

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

.footer {
  background-color: var(--primary-dark);
  background-image: url('../images/BG-Footer_Two.svg'), url('../images/BG-Footer-One.svg');
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: 14%, 14%;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-bottom-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 5px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer-rights {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #ffffffb3;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 14px;
  line-height: 1.2em;
  display: flex;
}

.footer-copyright {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  color: #ffffffb3;
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1.2em;
  display: flex;
}

.footer-copyright-link {
  color: #fff;
  letter-spacing: .2px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
}

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

.section-title-wrapper {
  text-align: center;
  max-width: 740px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  border-bottom: 2px solid var(--primary);
  padding-bottom: 6px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-style: italic;
}

.style-guide-button-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

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

.career-customer-image {
  transition: all .3s;
}

.career-customer-image:hover {
  opacity: .5;
}

.banner-title-wrapper {
  z-index: 999;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  display: flex;
  position: relative;
}

.banner-title-wrapper.blog-style {
  max-width: 800px;
}

.banner-title-wrapper.search-style {
  flex-flow: wrap;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

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

.banner-description {
  text-align: center;
  max-width: 560px;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 18px;
}

.banner-description.services-details-style {
  color: var(--white);
  max-width: none;
}

.pricing-plans-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pricing-plan-item {
  border: 1px solid var(--primary);
  background-color: var(--primary-light);
  border-radius: 20px;
  padding: 40px 30px;
}

.pricing-plan-item-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.pricing-plan-price-wrapper {
  align-items: flex-start;
  margin-top: 30px;
  display: flex;
}

.pricing-plan-price {
  font-size: 56px;
}

.pricing-plan-currency-icon {
  margin-right: 2px;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.section-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.accordion-toggle {
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 10px 0;
  display: flex;
}

.accordion-list {
  background-color: #0000;
  width: 100%;
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.accordion-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  width: 100%;
  display: flex;
}

.accordion-item {
  background-color: var(--blue-gray);
  border-radius: 20px;
  width: 100%;
  padding: 20px 30px;
  position: static;
  box-shadow: 0 0 20px #0000000f;
}

.accordion-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  width: 50%;
  display: flex;
}

.accordion-list-content {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}

.accordion-title {
  color: var(--primary);
}

.mb-30 {
  margin-bottom: 30px;
}

.coming-soon-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  max-height: 440px;
}

.contacts-detail {
  padding-left: 4px;
  display: flex;
}

.contacts-icon {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  font-family: "Fa solid 900", sans-serif;
}

.paragraph-no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.contacts-textarea {
  border: 1px solid var(--white);
  color: var(--primary-dark);
  border-radius: 20px;
  min-width: 100%;
  max-width: 100%;
  min-height: 140px;
  max-height: 100%;
  margin-bottom: 30px;
  padding: 14px 26px;
  font-size: 16px;
  line-height: 1em;
}

.contacts-textarea:focus {
  border: 1px solid var(--primary);
  background-color: var(--white-50);
  color: var(--primary-dark);
}

.contacts-textarea::placeholder {
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 1em;
}

.contacts-input {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--primary-dark);
  border-radius: 50px;
  height: auto;
  margin-bottom: 15px;
  padding: 14px 26px;
  font-size: 16px;
  line-height: 1em;
  transition: all .2s;
}

.contacts-input:focus {
  border: 1px solid var(--primary);
  background-color: var(--white-50);
  color: var(--primary-dark);
}

.contacts-input::placeholder {
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 1em;
}

.contacts-2-form-wrapper {
  border: 1px solid var(--primary);
  background-color: var(--primary-light);
  border-radius: 20px;
  padding: 40px;
}

.contacts-3-form-wrapper {
  z-index: 1;
  background-color: var(--blue-gray);
  border-radius: 20px;
  width: 100%;
  margin-bottom: 0;
  padding: 40px;
  position: relative;
}

.footer-link {
  color: var(--dark-gray);
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all .3s;
}

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

.footer-social-icons-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-wrapper {
  justify-content: space-between;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.white-text {
  color: #fff;
}

.footer-brand-wrapper {
  flex-direction: row;
  width: 70%;
  display: flex;
}

.footer-brand {
  color: #fff;
  margin-bottom: 15px;
}

.footer-brand.w--current {
  color: #fff;
  padding-left: 0;
  font-family: Poppins;
}

.footer-social-icon {
  color: var(--primary);
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 18px;
  text-decoration: none;
  transition: all .3s;
}

.footer-social-icon:hover {
  color: var(--white);
}

.footer-links-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-logo {
  height: 40px;
}

.nav-cta-wrapper {
  align-items: center;
  margin-left: 20px;
  display: flex;
}

.without-top-spacing {
  padding-top: 0;
}

.search-link {
  margin-bottom: 10px;
  font-size: 18px;
  transition: all .3s;
  display: inline-block;
}

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

.search-input {
  color: var(--white);
  background-color: #ffffff1a;
  border: 1px solid #fff0;
  border-radius: 50px;
  height: auto;
  margin-bottom: 0;
  padding: 12px 22px;
  font-size: 16px;
  line-height: 1em;
  transition: all .3s;
}

.search-input:focus {
  border: 1px solid var(--primary);
  color: var(--white);
  background-color: #ffffff4d;
}

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

.search-result-wrapper {
  width: 100%;
}

.footer-brand-description {
  color: var(--dark-gray);
  text-align: left;
  margin-bottom: 0;
}

.service-details-content-wrapper {
  width: 70%;
  margin-right: 40px;
}

.accordion-wrap-one-column {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.service-details-sidebar-wrapper {
  border: 1px solid var(--primary);
  background-color: var(--primary-light);
  border-radius: 20px;
  width: 30%;
  padding: 20px 40px 30px;
  position: sticky;
  top: 120px;
}

.service-details-content {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.service-details-sidebar-contacts {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
  display: flex;
}

.dark-gray-style-guide {
  background-color: var(--dark-gray);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

.headings-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

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

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

.service-list-2-item-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 250px;
}

.service-list-2-item-content {
  margin-top: 20px;
  margin-bottom: 10px;
}

.service-list-2-title-wrapper {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.style-guide-content-wrapper {
  display: flex;
}

.slide-3 {
  max-height: 580px;
}

.about-3-tab-link {
  color: var(--white);
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  margin-bottom: -12px;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 19px;
  line-height: 32px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.about-3-tab-link.w--current {
  color: var(--white);
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 24px;
}

.portfolio-grid-collection-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px #00000014;
}

.portfolio-masonry-image-wrapper {
  position: relative;
}

.landing-inner-page-image-wrapper {
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.landing-inner-page-overlay {
  z-index: 1;
  background-color: #fff3;
  border-radius: 20px;
  position: absolute;
  inset: 0%;
}

.nav-dropdown-column {
  width: 33%;
}

.navbar-fixed {
  background-color: #fff0;
  align-items: center;
  width: 100%;
  height: 80px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.testimonials {
  padding-top: 80px;
  padding-bottom: 80px;
}

.blog-section-title {
  text-align: center;
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.map-wrapper {
  position: relative;
}

.map-wrapper.home-page {
  width: 100%;
  margin-bottom: 60px;
}

.contacts-wrapper-grid {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-left: 30px;
  padding-right: 30px;
}

.section-title-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 780px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.courses-collection {
  width: 100%;
}

.home-4-testimonials-wrapper, .testimonials-wrapper-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.top-banner-button-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-top: 38px;
  display: flex;
  position: relative;
}

.about-img {
  object-fit: cover;
  position: absolute;
}

.about-img._1 {
  z-index: 2;
  width: 350px;
  inset: 0% 0% auto 12%;
}

.about-img._5 {
  z-index: 4;
  width: 350px;
  inset: 60% 0% auto 24%;
}

.about-img._3 {
  z-index: 1;
  width: 300px;
  inset: 19% 4% 0% auto;
}

.about-img._4 {
  z-index: 5;
  width: 220px;
  inset: 47% 30% 0% 50%;
}

.about-img._2 {
  z-index: 3;
  width: 300px;
  inset: 31% auto 0% 2%;
}

.subtitle {
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.our-services-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  display: flex;
}

.team-grid-item {
  border-radius: 20px;
  width: 100%;
  height: 340px;
  position: relative;
  overflow: hidden;
}

.home-6-team-text {
  flex-direction: column;
  display: flex;
}

.home-6-team-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.team-primary-overlay {
  grid-row-gap: 40px;
  opacity: 0;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  text-align: center;
  background-color: #15d5fecc;
  background-image: linear-gradient(200deg, #28313ab3, #fff0 40%, #59606700 70%, #28313a80);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  transition: all .3s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.team-primary-overlay:hover {
  opacity: 1;
}

.home-6-team-social {
  color: var(--primary-dark);
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 18px;
  transition: all .3s;
}

.home-6-team-social:hover {
  color: var(--white);
}

.home-6-team-links {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: flex;
}

.team-grid-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.central-alignment-heaading {
  text-align: center;
  margin-bottom: 75px;
}

.heading-wrapper {
  margin-top: 40px;
  margin-bottom: 30px;
}

.content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 190px;
  display: flex;
}

.content {
  border-radius: 5px;
  margin-bottom: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.industries-block-wrapper {
  background-color: #0000;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  max-width: 35vw;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.industries-block-wrapper:hover {
  box-shadow: 0 10px 20px #14173326;
}

.blog-details-link-title {
  margin-bottom: 0;
}

.home-9-team-item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 31%;
  position: relative;
}

.home-11-customers-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  place-items: center;
  width: 100%;
}

.about-4-team-slide {
  width: 23%;
  margin-right: 30px;
}

.about-6-projects-item {
  text-align: center;
  object-fit: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 370px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-with-blue-bg {
  background-color: var(--primary);
  justify-content: center;
  display: flex;
}

.nav-dropdown-link-line {
  background-color: var(--primary);
  border-radius: 100px;
  width: 6px;
  height: 6px;
  margin-right: 15px;
  display: inline-block;
}

.search {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: row;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  min-width: 100%;
  margin-top: 40px;
  margin-bottom: 0;
  display: flex;
}

.subtitle-2 {
  color: #fc8e44;
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.dropdown-nav-link {
  color: #999;
  margin-left: -20px;
  padding: 5px 0;
  font-family: Poppins;
  transition: color .2s;
  display: flex;
}

.dropdown-nav-link:hover, .dropdown-nav-link.w--current {
  color: #004ae2;
}

.gallery-image-link {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-19-gallery-img-link {
  justify-content: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.rich-text-style h2 {
  margin-bottom: 15px;
}

.rich-text-style h3 {
  margin-top: 25px;
  margin-bottom: 15px;
}

.rich-text-style h4 {
  margin-top: 25px;
}

.rich-text-style h5, .rich-text-style h6 {
  margin-top: 20px;
}

.rich-text-style ul {
  margin-top: 20px;
  margin-bottom: 20px;
}

.rich-text-style img {
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.rich-text-style.negative-15-top-bottom {
  margin-top: -15px;
  margin-bottom: -15px;
}

.home-banner-left-arrow {
  align-items: center;
  height: 40px;
  display: flex;
  inset: 0% auto 0% 2%;
}

.home-23-team-item {
  width: 33%;
}

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

.brand-tablet {
  display: none;
}

.form {
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
}

.style-guide-tab-content-wrapper {
  grid-row-gap: 60px;
  flex-direction: column;
  display: flex;
}

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

.spacing-system-image-2 {
  filter: grayscale();
  max-width: 80%;
}

.main-style-guide-body-wrapper {
  width: 47%;
  margin-right: 40px;
}

.style-guide-tab-link {
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background-color: var(--white);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  display: flex;
}

.style-guide-tab-link.w--current {
  background-color: var(--blue-gray);
  color: #fff;
}

.style-guide-tabs-menu {
  border-left: 1px solid var(--black);
  margin-bottom: 80px;
  display: flex;
}

.spacing-title {
  margin-top: 0;
  margin-bottom: 0;
}

.grid-title {
  background-color: var(--blue-gray);
  color: #fff;
  border-left: 1px #a7a7a7;
  border-right: 1px solid #7c7c7c;
  justify-content: center;
  align-items: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-title.first-grid {
  border-left-style: solid;
  border-left-color: #7c7c7c;
  width: 24%;
  height: 100%;
  margin-top: 0;
}

.spasing-system-image-mobile-2 {
  filter: grayscale();
  max-width: 70%;
}

.landing-inner-page-image {
  border: 1px solid var(--primary);
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 20px;
  width: 100%;
}

.landing-inner-page-image.banner {
  border-style: none;
  box-shadow: 0 6px 20px #16d5fe14;
}

.landing-banner-content {
  z-index: 999;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 860px;
  margin-bottom: 60px;
  display: flex;
  position: relative;
  inset: auto;
}

.banner-description-landing {
  color: var(--white);
  text-align: center;
  max-width: 560px;
  margin-top: 20px;
  margin-bottom: 0;
}

.landing-banner-title {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}

.landing-home-pages-wrapper-banner {
  grid-column-gap: 40px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.landing-banner-screens {
  z-index: 999;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.landing-inner-page-item {
  text-align: center;
  background-color: #0000;
  border-radius: 20px;
  width: 100%;
  padding: 6px;
}

.landing-paragraph-style {
  color: #fff;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 0;
}

.section-landing-customers {
  background-color: var(--blue-gray-dark);
  padding-top: 60px;
  padding-bottom: 80px;
  overflow: hidden;
}

.landing-customers-content-left {
  grid-row-gap: 30px;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 46%;
  padding-right: 60px;
  display: flex;
}

.landing-customers-content-right {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 54%;
  display: grid;
}

.landing-section-heading-white {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}

.landing-customers-icon-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  display: flex;
}

.landing-icon-style {
  opacity: 1;
  max-height: 60px;
}

.paragraph-benefits-lp {
  color: #fff;
  width: 90%;
}

.landing-customers-layout {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.landing-section-title {
  max-width: 600px;
  margin: 0 auto;
}

.landing-inner-page-icon {
  z-index: 10;
  background-color: var(--blue-gray);
  color: var(--primary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 28px;
  display: flex;
  position: absolute;
  transform: rotate(-30deg);
}

.section-ttile-description {
  text-align: center;
  margin-top: 20px;
}

.landing-home-pages-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.landing-inner-page-title {
  text-transform: none;
}

.landing-inner-pages-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.free-trial-wrapper-landing {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.free-trial-wrapper-landing.landing {
  flex-direction: column;
  align-items: center;
  max-width: 690px;
  display: flex;
}

.free-trial-title-landing {
  color: #fff;
  margin-top: 0;
  margin-bottom: 40px;
}

.pages-banner {
  background-color: var(--blue-gray-dark);
  justify-content: center;
  align-items: center;
  min-height: 360px;
  padding-top: 150px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.pages-banner.blog-details {
  padding-bottom: 180px;
}

.pages-banner.search-style {
  display: block;
}

.pages-banner.landing-style {
  flex-flow: column;
  padding-bottom: 0;
}

.services-tabs {
  width: 100%;
}

.services-tab-link {
  border: 1px solid var(--primary);
  background-color: var(--primary-light);
  color: var(--primary-dark);
  text-transform: lowercase;
  border-radius: 50px;
  padding: 12px 22px;
  font-weight: 600;
}

.services-tab-link.w--current {
  border-color: var(--blue-gray);
  background-color: var(--blue-gray);
  color: var(--white);
}

.services-category-tabs-content {
  overflow: visible;
}

.services-category-tabs {
  width: 100%;
}

.services-tabs-menu {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 60px;
  display: flex;
}

.paragraph-gray-style-guide {
  background-color: var(--blue-gray-dark);
  width: 75px;
  height: 75px;
}

.footer-rights-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  flex-wrap: wrap;
  display: flex;
}

.position-relative {
  position: relative;
}

.coming-soon-form-main {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: wrap;
  display: flex;
}

.success-message {
  color: var(--primary);
  background-color: #ddd0;
}

.error-message {
  color: var(--primary);
  text-align: center;
  background-color: #0000;
  padding: 0;
}

.form-block-contacts {
  width: 100%;
  margin-bottom: 0;
}

.h2-style-guide-title {
  margin-top: 0;
  margin-bottom: 0;
}

.spacing-flex-wrap {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column;
  display: flex;
}

.sg-title {
  margin-top: 0;
  margin-bottom: 0;
}

.sg-title.mb-15 {
  margin-bottom: 15px;
}

.sg-title.mb-30 {
  margin-bottom: 30px;
}

.flex-small-sg-con {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.color-sg-par {
  margin-top: 0;
  margin-bottom: 0;
}

.flex-body-wrap {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

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

.btn-flex-wrap {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: wrap;
  display: flex;
}

.licensing-footer-link {
  color: #ffffffb3;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1.2em;
  display: flex;
}

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

.paragraph-gray-style-guide-copy {
  background-color: var(--blue-gray);
  width: 75px;
  height: 75px;
}

.button-wrapper-main {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.button-wrapper-main.banner-home-1-style {
  justify-content: center;
}

.button-wrapper-main.smaller-spacing {
  margin-top: 20px;
}

.numbers-text {
  color: var(--white);
  font-size: 16px;
  line-height: 1.2em;
}

.numeric {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 42px;
  font-weight: 500;
  line-height: 1em;
}

.banner-home-description {
  color: var(--white);
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}

.banner-home-description.home-two, .banner-home-description.home-three {
  text-align: left;
  margin-left: 0;
}

.button-arrow-element {
  border: 1px solid var(--dark-gray-50);
  background-color: #15d5fe00;
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  display: flex;
}

.arrow-button {
  color: var(--primary-dark);
  text-align: center;
  text-transform: lowercase;
  margin-right: 12px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  display: inline-block;
}

.arrow-button.white-style {
  color: var(--white);
}

.numbers-banner {
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  text-align: center;
  background-color: #28313a99;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  justify-items: center;
  width: auto;
  margin-top: 60px;
  padding: 20px 30px;
  display: flex;
  position: relative;
}

.button-arrow {
  font-weight: 600;
  display: flex;
}

.banner-home-title {
  color: var(--white);
  text-align: center;
  max-width: 660px;
  margin: 0 auto 20px;
}

.banner-home-title.home-two {
  text-align: left;
  margin-left: 0;
}

.banner-home-title.home-three {
  text-align: left;
}

.banner-home-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 730px;
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.banner-content-container {
  z-index: 999;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.banner-content-container.home-two {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-flow: row;
  justify-content: center;
  align-items: flex-end;
}

.logo {
  z-index: 0;
  height: 26px;
  position: relative;
}

.footer-info-wrapper {
  border-right: 1px solid var(--blue-gray);
  border-left: 1px solid var(--blue-gray);
  flex-direction: column;
  align-items: flex-start;
  width: 49%;
  margin-left: 60px;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.footer-about {
  flex-direction: column;
  align-items: flex-start;
  width: 51%;
  display: flex;
}

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

.info-company-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.info-company {
  color: var(--dark-gray);
  transition: color .3s;
}

.info-company:hover {
  color: var(--primary);
}

.footer-title {
  color: var(--white);
  margin-top: 0;
}

.gear-collection-links {
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.gear-collection-links.style-two {
  justify-content: center;
  align-items: flex-start;
}

.dot {
  background-color: var(--primary);
  border-radius: 100px;
  width: 8px;
  height: 8px;
}

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

.equipment-tag {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border: 1px solid var(--primary-dark);
  background-color: var(--blue-gray);
  color: var(--white);
  text-transform: uppercase;
  border-radius: 50px;
  flex-direction: row;
  align-items: center;
  padding: 14px 28px;
  display: flex;
}

.equipment-tag.light {
  border-color: var(--primary);
  background-color: var(--primary-light);
}

.equipment-tag.outline {
  border-color: var(--primary);
  background-color: #28313a00;
}

.gear-title {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.4em;
}

.section-two-side-title-wrapp {
  z-index: 999;
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  position: relative;
}

.two-side-title-wrapper {
  width: 700px;
}

.in-section-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.in-section-title.no-spacing {
  margin-bottom: 0;
}

.in-section-title.text-white-no-spacing {
  color: #fff;
  margin-bottom: 15px;
}

.no-margin {
  color: var(--blue-gray-dark);
  margin-top: 0;
  margin-bottom: 0;
}

.no-margin.text-white {
  color: #fff;
}

.underline-text-span {
  border-bottom: 5px solid var(--primary);
  padding-bottom: 4px;
  font-style: italic;
  font-weight: 300;
  display: inline-block;
}

.features {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.icon-features {
  width: 48px;
  height: 48px;
}

.icon-features.small {
  width: 30px;
  height: 30px;
}

.main-features-wrapper {
  z-index: 1;
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  grid-template: "Area-2 Area"
  / 1fr 1fr 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.main-features-wrapper.three-columns {
  grid-template-columns: 1fr 1fr 1fr;
}

.icon-features-wrapper {
  background-color: var(--blue-gray);
  border-radius: 100%;
  margin-bottom: 15px;
  padding: 28px;
  position: relative;
}

.play-icon {
  z-index: 7;
  margin-left: 4px;
  font-family: "Fa solid 900", sans-serif;
  position: relative;
}

.play-button-hover-home {
  z-index: 10;
  background-color: var(--white);
  color: var(--primary-dark);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  font-size: 16px;
  transition: all .3s;
  display: flex;
  position: absolute;
  inset: 30px 30px auto auto;
  transform: scale(.85);
}

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

.play-button-hover-home.bottom-style {
  top: auto;
  bottom: 30px;
}

.video-overlay {
  background-color: #0000004d;
  background-image: linear-gradient(#16d5fe66, #fff0);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 130px 30px 30px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.video-overlay.bottom-style {
  justify-content: flex-end;
}

.video-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.video-wrapper-bigger {
  z-index: 1;
  border-radius: 20px;
  width: 100%;
  height: 480px;
  position: relative;
  overflow: hidden;
}

.video-lightbox-link {
  width: 100%;
  height: 100%;
}

.column-two {
  width: 50%;
}

.column-two.assymetric-services {
  width: 80%;
}

.column-two.home-three-banner-style, .column-two.our-team-style {
  width: 45%;
}

.column-one {
  width: 50%;
}

.column-one.assymetric-services {
  flex-direction: column;
  align-items: flex-start;
  width: 20%;
  display: flex;
}

.column-one.home-three-banner-style, .column-one.our-team-style {
  width: 55%;
}

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

.two-column-wrapper {
  z-index: 999;
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.two-column-wrapper.centered {
  align-items: center;
}

.two-column-wrapper.our-team-style, .two-column-wrapper.pricing-style {
  margin-bottom: 60px;
}

.avatars-wrapper {
  flex-direction: row;
  margin-bottom: 10px;
  display: flex;
}

.avatars-wrapper.banner-two-spacing {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
}

.accordion-item-2 {
  border: 1px solid #afafaf80;
  border-radius: 20px;
  width: 100%;
  padding: 20px 30px;
  position: static;
}

.video-info {
  max-width: 800px;
}

.blue-gray-dark-half-bg-bottom {
  background-color: var(--blue-gray-dark);
  height: 200px;
  margin-bottom: -2px;
  position: absolute;
  inset: auto 0% 0%;
}

.carts-wrap {
  z-index: 999;
  grid-row-gap: 30px;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
}

.image-cover {
  object-fit: cover;
  object-position: 50% 46%;
  width: 100%;
  height: 100%;
}

.image-carts {
  border-radius: 20px;
  flex: none;
  width: 40%;
  height: auto;
  overflow: hidden;
}

.cart-block {
  background-color: var(--blue-gray);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 40px;
  display: flex;
}

.white-half-bg-bottom {
  background-color: var(--white);
  height: 200px;
  margin-bottom: -2px;
  position: absolute;
  inset: auto 0% 0%;
}

.bg-element-blue-one {
  z-index: 1;
  height: 320px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.bg-element-blue-two {
  z-index: 1;
  height: 320px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.image-in-column {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 480px;
}

.button-arrow-icon.white-style {
  filter: invert();
}

.banner-bg-image-one {
  z-index: 1;
  width: 18%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.banner-bg-image-two {
  z-index: 1;
  width: 28%;
  margin-bottom: -40px;
  margin-right: -31px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.team-name {
  margin-top: 0;
  margin-bottom: 5px;
}

.nav-cta-wrapper-tablet {
  align-items: center;
  margin-top: 40px;
  display: none;
}

.cta-left-text {
  z-index: 1;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
  display: flex;
  position: relative;
}

.reviews-wrap {
  z-index: 999;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  width: 100%;
  display: flex;
  position: relative;
}

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

.block-with-bg-testimonials {
  grid-row-gap: 30px;
  background-color: var(--blue-gray);
  background-image: linear-gradient(#28313af0, #28313af0), url('../images/BG-Element-02-full.svg');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto;
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 40px;
  display: flex;
}

.block-with-bg-testimonials.style-light {
  background-color: var(--primary-light);
  background-image: linear-gradient(#cbf6ffb3, #cbf6ffb3), url('../images/BG-Element-02-full.svg');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto;
}

.quote-text-content {
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.author-quote {
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.autor-name {
  border-bottom: 2px solid var(--primary);
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 3px;
}

.autor-name.dark {
  color: var(--primary-dark);
}

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

.blog-item-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 300px;
}

.button-arrow-element-solo {
  background-color: var(--primary);
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
}

.empty-state-2 {
  background-color: #ddd0;
  padding: 0;
}

.three-cards {
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.blog-title {
  color: var(--primary-dark);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2em;
  transition: color .3s;
  display: inline-block;
}

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

.three-cards-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.blog-category {
  border: 1px solid var(--white);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--primary-dark);
  text-transform: lowercase;
  background-color: #fffc;
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 600;
  line-height: 1em;
  transition: border .2s, background-color .2s, color .2s;
}

.blog-category:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--primary-dark);
}

.collection-list-wrapper-blog {
  width: 100%;
}

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

.image-in-gallery {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 340px;
}

.quote-icon-testimonial {
  width: 34px;
}

.services-home-title {
  color: var(--white);
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2em;
}

.services-home-title:hover {
  color: var(--primary);
}

.collection-list-wrapper-services {
  z-index: 1;
  width: 100%;
  position: relative;
}

.collection-list-wrapper-nav {
  width: 100%;
}

.carts-row-services {
  grid-column-gap: 30px;
  display: flex;
}

.solution-item-bottom {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: -65px;
  margin-bottom: 45px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.background-video {
  background-image: linear-gradient(45deg, #0006, #fff0 65%), linear-gradient(#00000026, #00000026);
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  min-height: 640px;
  padding-top: 170px;
  padding-bottom: 80px;
  display: flex;
  overflow: hidden;
}

.home-video-banner {
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
  position: relative;
}

.avatars-image-banner {
  object-fit: cover;
  border-radius: 100px;
  width: 50px;
  height: 50px;
  margin-right: -12px;
}

.avatars-image-banner.last-item {
  margin-right: 0;
}

.avatars {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.home-2-banner-info {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #28313a99;
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  width: 40%;
  padding: 30px;
  display: flex;
}

.banner-two-info-wrapper {
  width: 60%;
}

.cta-loop {
  z-index: 999;
  margin-bottom: -2px;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.gallery-three-items {
  z-index: 1;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.background-video-cta {
  background-image: linear-gradient(#0a0f1266, #0a0f1266);
  height: auto;
  position: absolute;
  inset: 0%;
}

.services-title-smaller {
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4em;
}

.services-title-smaller:hover {
  color: var(--primary);
}

.banner-home-image {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.banner-home-overlay {
  z-index: 0;
  background-color: #0009;
  background-image: linear-gradient(#0000 62%, #15d5fe80);
  position: absolute;
  inset: 0%;
}

.banner-section-three {
  background-color: var(--blue-gray-dark);
  background-image: linear-gradient(174deg, var(--blue-gray), #fff0 50%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-banner-image {
  z-index: 999;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 20px;
  width: 100%;
  height: 460px;
  position: relative;
}

.bg-element-color {
  background-color: var(--blue-gray-dark);
  width: 100%;
  height: 50%;
  margin-top: -1px;
  position: absolute;
  inset: 0% 0% auto;
}

.banner-three-image-wrapper {
  z-index: 999;
  position: relative;
}

.banner-three-overlay {
  z-index: 999;
  background-image: linear-gradient(173deg, #0000 60%, #16d5fe4d), radial-gradient(circle at 0%, #16d5fe, #fff0 34%);
  border-radius: 20px;
  position: absolute;
  inset: 0%;
}

.home-three-bg-image-one {
  object-fit: contain;
  width: 24%;
  min-width: 200px;
  max-width: 340px;
  position: absolute;
  inset: -70% auto auto 0%;
}

.home-three-bg-image-two {
  object-fit: contain;
  width: 20%;
  min-width: 166px;
  max-width: 280px;
  position: absolute;
  inset: -70% 0 auto auto;
}

.accordion-arrow-wrapper {
  border: 1px solid var(--dark-gray-50);
  border-radius: 100px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-left: 20px;
  display: flex;
}

.bg-element-blue-one-copy {
  z-index: 0;
  opacity: .06;
  height: 320px;
  position: absolute;
  inset: auto auto 200px 0%;
}

.bg-element-blue-two-copy {
  z-index: 0;
  opacity: .06;
  height: 320px;
  position: absolute;
  inset: auto 0% 200px auto;
}

.services-title-medium-dark {
  color: var(--primary-dark);
  margin-top: 10px;
  margin-bottom: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4em;
}

.services-title-medium-dark:hover {
  color: var(--primary);
}

.pages-banner-overlay {
  z-index: 1;
  background-color: #141a2080;
  background-image: linear-gradient(16deg, #16d5fecc, #fff0 39%);
  position: absolute;
  inset: 0%;
}

.pages-banner-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.pages-banner-image.faq-style {
  object-position: 50% 12%;
}

.bg-element-color-top-gallery {
  background-color: var(--blue-gray-dark);
  width: 100%;
  height: 200px;
  margin-top: -1px;
  position: absolute;
  inset: 0% 0% auto;
}

.gallery-bg-image-one {
  z-index: 1;
  object-fit: contain;
  width: 24%;
  min-width: 200px;
  max-width: 340px;
  position: absolute;
  inset: 100px auto 0% 0%;
}

.gallery-bg-image-two {
  z-index: 1;
  object-fit: contain;
  width: 20%;
  min-width: 166px;
  max-width: 280px;
  position: absolute;
  inset: 100px 0% 0% auto;
}

.services-icon-wrapp {
  margin-right: 15px;
}

.services-title-small-dark {
  color: var(--primary-dark);
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2em;
}

.services-title-small-dark:hover {
  color: var(--primary);
}

.collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  display: flex;
}

.services-details-banner-image {
  z-index: 999;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 20px;
  width: 100%;
  height: 460px;
  position: relative;
}

.banner-services-details-overlay {
  z-index: 999;
  background-image: linear-gradient(173deg, #0000 60%, #16d5fe4d), radial-gradient(circle at 0%, #16d5fe, #fff0 34%);
  border-radius: 20px;
  position: absolute;
  inset: 0%;
}

.banner-services-details-image-wrapper {
  z-index: 999;
  position: relative;
}

.contact-us-link {
  color: var(--primary-dark);
  margin-top: 0;
  margin-bottom: 0;
}

.contact-us-link:hover {
  color: var(--primary);
}

.services-category-link {
  background-color: var(--blue-gray);
  text-transform: lowercase;
  border-radius: 50px;
  margin-bottom: 30px;
  padding: 14px 22px;
  font-weight: 600;
}

.services-category-link:hover {
  background-color: var(--primary);
  color: var(--primary-dark);
}

.studio-cards-item {
  background-color: var(--blue-gray);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  display: flex;
}

.studio-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.studio-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.studio-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-radius: 20px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: grid;
  overflow: hidden;
}

.pricing-plan-currency-icon-2 {
  margin-right: 2px;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.inputs-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  display: flex;
}

.form-right {
  z-index: 2;
  background-color: var(--blue-gray);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  padding: 30px;
  position: relative;
  inset: auto 0% 0% auto;
}

.field-label {
  color: var(--white);
  margin-bottom: 0;
  font-weight: 300;
}

.form-banner {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  display: flex;
}

.contacts-text {
  color: var(--white);
  background-color: #ffffff1a;
  border: 1px solid #0000;
  border-radius: 20px;
  min-width: 100%;
  max-width: 100%;
  min-height: 120px;
  max-height: 100%;
  margin-bottom: 0;
  padding: 14px 26px;
  font-size: 16px;
}

.contacts-text:focus {
  border: 1px solid var(--primary);
  background-color: #fff3;
}

.contacts-text::placeholder {
  color: var(--white);
  font-size: 16px;
}

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

.input-white {
  color: var(--white);
  background-color: #ffffff1a;
  border: 1px solid #fff0;
  border-radius: 50px;
  flex: none;
  height: auto;
  margin-bottom: 0;
  padding: 14px 26px;
  font-size: 16px;
}

.input-white:focus {
  border-color: var(--primary);
  color: var(--white);
  background-color: #fff3;
}

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

.input-white.select-field {
  color: var(--white);
  height: 52px;
}

.width-full {
  grid-row-gap: 15px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.form-banner-content {
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.contact-customer-wrapper {
  grid-column-gap: 30px;
  border-top: 1px solid var(--dark-gray-50);
  width: 100%;
  margin-top: 40px;
  padding-top: 40px;
  display: flex;
}

.info-contacts-one {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-top: 1px solid var(--dark-gray-50);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 40px;
  padding-top: 40px;
  display: flex;
}

.contact-us-link-white {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}

.contact-us-link-white:hover {
  color: var(--primary);
}

.customers-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-items: center;
  width: 100%;
}

.tab-pane-locations {
  border-radius: 20px;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.rich-text-block-map {
  flex-flow: column wrap;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.base-container-2 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.location-tab-pane-content-wrapper {
  z-index: 10;
  background-color: var(--white);
  border-radius: 20px;
  flex-direction: column;
  width: 40%;
  padding: 30px;
  display: flex;
  position: absolute;
  inset: auto 30px 30px auto;
  box-shadow: 0 30px 30px #00000014;
}

.location-tabs-menu {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 30px;
  display: flex;
}

.figure-map {
  margin-bottom: 0;
}

.location-tabs {
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
}

.location-tab {
  border: 1px solid var(--dark-gray-50);
  color: #afafaf80;
  text-align: center;
  background-color: #0000;
  border-radius: 20px;
  justify-content: center;
  width: 100%;
  padding: 25px 15px;
  transition: all .3s;
  display: flex;
}

.location-tab.w--current {
  border-color: var(--primary);
  background-color: var(--primary-light);
  color: #f59b90;
}

.small-text {
  letter-spacing: .2px;
  margin-bottom: 0;
  line-height: 1.6em;
  text-decoration: none;
}

.location-map-wrapper {
  border-radius: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.location-tabs-content {
  width: 100%;
  height: 100%;
}

.location-tab-pane-info {
  grid-row-gap: 10px;
  flex-direction: column;
  margin-top: 20px;
  display: flex;
}

.location-tab-pane-info.first-item {
  grid-row-gap: 6px;
  margin-top: 20px;
}

.location-title-wrapper {
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.location-icon {
  margin-right: 15px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 24px;
}

.location-icon.tab-pane {
  color: var(--primary);
  margin-top: 0;
  font-size: 20px;
}

.location-tab-pane-title {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 30px;
}

.location-tab-title {
  margin-top: 0;
  margin-bottom: 15px;
}

.blog-date-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 15px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.search-result-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  display: flex;
}

._404-title {
  text-align: center;
  font-size: 100px;
}

.changelog-info {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.text-span-landind {
  color: var(--primary);
  font-style: italic;
  font-weight: 300;
}

.hire-popup {
  z-index: 1000;
  background-color: #1c276d;
  border-radius: 4px;
  width: 100%;
  max-width: 290px;
  position: fixed;
  inset: auto auto 5px 5px;
}

.hire-popup-wrap {
  grid-row-gap: 10px;
  flex-direction: column;
  padding: 15px;
  display: flex;
  position: relative;
}

.hire-popup-wrap:hover {
  color: #fff;
}

.hire-paragraph {
  color: var(--white);
  max-width: 93%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3em;
}

.hire-link {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2em;
  text-decoration: underline;
  transition-property: none;
}

.hire-link:hover {
  opacity: 1;
  color: #fff;
  text-transform: none;
}

.hire-buttons-wrap {
  grid-column-gap: 20px;
  display: flex;
}

.hire-buttons {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 5px 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3em;
  text-decoration: none;
  transition-property: none;
}

.hire-buttons:hover {
  opacity: 1;
  color: #ffffffb3;
}

.hire-popup-close {
  cursor: pointer;
  padding: 10px 20px;
  position: absolute;
  top: -7px;
  right: -14px;
}

.close-popup-image {
  width: 12px;
  height: 12px;
}

.buy-this-template {
  z-index: 1000;
  opacity: 1;
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  background-color: #4353ff;
  border: 1px solid #4353ff;
  border-radius: 4px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  text-decoration: none;
  transition-property: none;
  display: flex;
  position: fixed;
  inset: auto 12px 48px auto;
}

.buy-this-template:hover {
  opacity: 1;
  color: #fff;
}

.btn-icon {
  margin-right: 8px;
}

.all-templates {
  z-index: 1000;
  color: #4353ff;
  letter-spacing: 0;
  text-transform: none;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  width: 140px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  text-decoration: none;
  display: flex;
  position: fixed;
  inset: auto 12px 12px auto;
}

.all-templates:hover {
  opacity: 1;
  color: #4353ff;
}

.text-orange {
  color: #f69c20;
}

.team-primary-overlay-copy {
  grid-row-gap: 40px;
  opacity: 0;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  text-align: center;
  background-color: #15d5fecc;
  background-image: linear-gradient(200deg, #28313ab3, #fff0 40%, #59606700 70%, #28313a80);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  transition: all .3s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.team-primary-overlay-copy:hover {
  opacity: 1;
}

.team-grid-wrapper-copy {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.no-margin-2 {
  color: #f9f9fa;
  margin-top: 0;
  margin-bottom: 0;
}

.no-margin-copy {
  color: var(--light-gray);
  margin-top: 0;
  margin-bottom: 0;
}

.no-margin-copy.text-white {
  color: #fff;
}

@media screen and (min-width: 1280px) {
  .section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

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

  .section.logos-style {
    padding-top: 80px;
  }

  .spacing-columns {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .headings-typography-wrapper {
    width: 48%;
  }

  .nav-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .blog-template-wrapper {
    margin-top: -130px;
  }

  .footer {
    padding-top: 80px;
  }

  .footer-bottom-wrapper {
    margin-top: 30px;
  }

  .banner-description.services-details-style {
    color: var(--white);
  }

  .pricing-plan-item {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-wrapper {
    margin-bottom: 80px;
  }

  .without-top-spacing {
    padding-top: 0;
  }

  .navbar-fixed {
    height: 100px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .testimonials {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .blog-section-title {
    margin-bottom: 70px;
  }

  .map-wrapper {
    padding-right: 70px;
  }

  .section-title-center {
    margin-bottom: 70px;
  }

  .about-img._3 {
    width: 340px;
  }

  .about-img._4 {
    width: 280px;
  }

  .about-img._2 {
    width: 340px;
  }

  .industries-block-wrapper {
    position: relative;
  }

  .section-with-blue-bg {
    padding-left: 40px;
    padding-right: 40px;
  }

  .center-title {
    padding-right: 140px;
  }

  .main-style-guide-body-wrapper {
    margin-right: 60px;
  }

  .landing-inner-page-item.home-screen-banner, .landing-inner-page-item.home-screen {
    max-width: none;
  }

  .section-landing-customers {
    padding-top: 100px;
    padding-bottom: 130px;
  }

  .landing-customers-content-left {
    padding-right: 100px;
  }

  .paragraph-benefits-lp {
    width: 80%;
  }

  .landing-inner-pages-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 30px;
  }

  .pages-banner {
    padding-top: 190px;
    padding-bottom: 130px;
  }

  .pages-banner.blog-details {
    padding-bottom: 260px;
  }

  .style-guide-body-wrap {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .banner-home-description {
    text-align: left;
    margin-left: 0;
  }

  .numbers-banner {
    text-align: left;
    justify-content: flex-start;
    justify-items: start;
  }

  .banner-home-title {
    text-align: left;
    margin-left: 0;
  }

  .banner-home-section {
    padding-top: 170px;
    padding-bottom: 130px;
  }

  .banner-content-container {
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }

  .features {
    padding-left: 15px;
    padding-right: 15px;
  }

  .column-two.assymetric-services {
    width: 80%;
  }

  .column-one.assymetric-services {
    width: 20%;
  }

  .two-column-wrapper {
    grid-column-gap: 100px;
  }

  .two-column-wrapper.banner-home-three-spacings {
    grid-column-gap: 60px;
  }

  .image-carts {
    width: 540px;
  }

  .bg-element-blue-one, .bg-element-blue-two {
    height: 540px;
    bottom: -10%;
  }

  .image-in-column {
    height: 420px;
  }

  .banner-bg-image-one {
    width: 10%;
  }

  .banner-bg-image-two {
    width: 32%;
    margin-bottom: -50px;
    margin-right: -36px;
  }

  .cta-left-text {
    max-width: 700px;
  }

  .background-video {
    min-height: 730px;
    padding-top: 210px;
  }

  .banner-section-three {
    padding-top: 170px;
    padding-bottom: 130px;
  }

  .home-banner-image {
    height: 480px;
  }

  .bg-element-blue-one-copy {
    height: 380px;
  }

  .bg-element-blue-two-copy {
    height: 400px;
  }

  .services-title-medium-dark {
    font-size: 28px;
  }

  .services-details-banner-image {
    height: 480px;
  }

  .studio-cards-item {
    padding-left: 30px;
    padding-right: 30px;
  }

  .form-right {
    max-width: 600px;
  }

  .contact-customer-wrapper {
    justify-content: space-between;
  }
}

@media screen and (min-width: 1440px) {
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
  }

  .about-img._1 {
    width: 380px;
  }

  .about-img._3 {
    width: 400px;
  }

  .about-img._4 {
    width: 300px;
  }

  .about-img._2 {
    width: 390px;
  }

  .our-services-wrap {
    align-items: center;
  }

  .home-6-team-image {
    width: 100%;
    height: 100%;
  }

  .section-with-blue-bg {
    padding-left: 100px;
    padding-right: 100px;
  }

  .banner-home-section {
    min-height: 100vh;
  }

  .logo {
    max-width: 120%;
    height: 45px;
  }

  .banner-bg-image-two {
    margin-bottom: -57px;
    margin-right: -41px;
  }

  .background-video {
    min-height: 100vh;
  }
}

@media screen and (min-width: 1920px) {
  .section {
    align-items: center;
  }

  .base-container {
    max-width: 1400px;
  }

  .nav-container {
    padding-left: 80px;
    padding-right: 80px;
  }

  .blog-template-image {
    height: 520px;
  }

  .banner-title-wrapper.search-style {
    max-width: 1400px;
  }

  .about-img._1 {
    width: 420px;
    left: 16%;
  }

  .about-img._3 {
    width: 430px;
    top: 20%;
    left: 54%;
  }

  .about-img._4 {
    left: 48%;
  }

  .team-grid-item {
    height: 360px;
  }

  .section-with-blue-bg {
    padding-left: 180px;
    padding-right: 180px;
  }

  .landing-banner-content {
    max-width: 1100px;
    margin-bottom: 130px;
  }

  .landing-banner-title {
    font-size: 74px;
  }

  .section-landing-customers {
    padding-top: 130px;
  }

  .landing-customers-content-right {
    grid-row-gap: 50px;
  }

  .banner-home-title {
    max-width: 900px;
    margin-bottom: 30px;
    font-size: 90px;
  }

  .banner-home-title.home-three {
    font-size: 60px;
  }

  .banner-content-container {
    max-width: 1400px;
  }

  .banner-content-container.home-two {
    max-width: 1600px;
  }

  .footer-info-wrapper {
    width: 47%;
  }

  .footer-about {
    width: 53%;
  }

  .features {
    padding-left: 40px;
    padding-right: 40px;
  }

  .video-overlay {
    padding-right: 150px;
  }

  .column-two.our-team-style, .column-one.our-team-style {
    width: 50%;
  }

  .bg-element-blue-one, .bg-element-blue-two {
    height: 640px;
    bottom: -44%;
  }

  .image-in-column {
    height: 440px;
  }

  .banner-bg-image-two {
    margin-bottom: -75px;
    margin-right: -53px;
  }

  .image-in-gallery {
    height: 360px;
  }

  .background-video {
    padding-bottom: 100px;
  }

  .home-2-banner-info {
    width: 34%;
  }

  .banner-two-info-wrapper {
    width: 66%;
  }

  .home-banner-image {
    height: 500px;
  }

  .bg-element-blue-one-copy, .bg-element-blue-two-copy {
    height: 540px;
  }

  .services-details-banner-image {
    height: 500px;
  }

  .form-right {
    max-width: 750px;
  }

  .base-container-2 {
    max-width: 1400px;
  }
}

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

  h2 {
    font-size: 42px;
  }

  .grid-system {
    width: 100%;
  }

  .grid-description.first-description {
    text-align: center;
  }

  .spacing-wrapper-mobile {
    width: 70%;
  }

  .spacing-columns {
    flex-flow: wrap;
    display: flex;
  }

  .bottom-style-spacing-desktop {
    bottom: 6%;
  }

  .top-style-spacing-desktop {
    top: 4%;
  }

  .middle-style-spacing-desktop {
    top: 30%;
  }

  .colors-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .colors-container {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .headings-typography-wrapper.last-child {
    margin-bottom: 30px;
  }

  .top-style-spacing-mobile {
    top: 3%;
  }

  .middlr-style-spacing-mobile {
    top: 26%;
  }

  .bottom-style-spacing-mobile {
    bottom: 6%;
  }

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

  .nav-menu {
    background-color: var(--primary-dark);
    flex-direction: column;
    width: 320px;
    inset: 0% auto 0% 0%;
  }

  .menu-button {
    text-align: right;
    background-color: #0000;
    padding: 0;
  }

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

  .nav-link {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
    display: flex;
  }

  .nav-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    transition: opacity .5s;
    display: flex;
    overflow: hidden;
  }

  .nav-dropdown-toggle {
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    display: flex;
  }

  .nav-dropdown-icon {
    margin-right: 5px;
    font-size: 10px;
    font-weight: 800;
    display: block;
    inset: 0% 0 0% auto;
  }

  .nav-dropdown-list {
    background-color: #28313a00;
    border-style: none;
    border-radius: 0;
    flex-direction: column;
    width: auto;
    padding: 0 40px 0 20px;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.w--open {
    box-shadow: none;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.megamenu {
    width: auto;
    height: 270px;
    padding-left: 20px;
    padding-right: 40px;
    overflow: scroll;
  }

  .nav-dropdown-link-wrapper {
    flex-flow: wrap;
    padding-right: 0;
  }

  .nav-dropdown-link-wrapper:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-dropdown-link {
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
  }

  .close-menu-button {
    padding: 0 20px 0 0;
  }

  .close-menu-button.w--open {
    background-color: #0000;
    padding: 0 20px 0 0;
  }

  .nav-close-icon {
    z-index: 15;
    align-self: stretch;
    margin-bottom: 1px;
  }

  .licensing-grid, .licensing-grid.last-child {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .licensing-paragraph {
    width: 100%;
  }

  .coming-soon-wrapper {
    align-items: center;
    margin-right: 0;
  }

  .coming-soon-paragraph {
    text-align: center;
    margin-bottom: 30px;
  }

  .coming-soon-heading {
    text-align: center;
    font-size: 56px;
  }

  .blog-template-pagination {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 60px;
  }

  .footer {
    background-size: auto 22%, auto 12%;
  }

  .section-title-wrapper {
    max-width: 560px;
  }

  .style-guide-button-wrapper {
    width: 45%;
  }

  .banner-description.services-details-style {
    max-width: 600px;
  }

  .pricing-plans-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .pricing-plan-item {
    max-width: 360px;
  }

  .coming-soon-image {
    display: none;
  }

  .footer-social-icons-wrapper {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-wrapper {
    grid-column-gap: 100px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-brand-wrapper {
    grid-row-gap: 40px;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-links-wrapper {
    text-align: center;
    align-items: center;
  }

  .nav-cta-wrapper {
    display: none;
  }

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

  .footer-brand-description {
    text-align: center;
  }

  .service-details-content-wrapper {
    width: 60%;
    margin-right: 20px;
  }

  .service-details-sidebar-wrapper {
    width: 40%;
    padding-left: 30px;
    padding-right: 30px;
    top: 80px;
  }

  .headings-container {
    grid-row-gap: 30px;
    flex-wrap: wrap;
  }

  .style-guide-content-wrapper {
    flex-wrap: wrap;
  }

  .nav-dropdown-column {
    justify-content: center;
    width: 180px;
  }

  .navbar-fixed {
    height: 60px;
  }

  .testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

  .contacts-wrapper-grid {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .home-4-testimonials-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .testimonials-wrapper-2 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .about-img._1 {
    top: 7%;
    left: 15px;
  }

  .about-img._5 {
    top: 58%;
    bottom: 0;
    left: 60px;
  }

  .about-img._3 {
    width: 360px;
    top: 0%;
    right: 15px;
  }

  .about-img._4 {
    width: 240px;
    top: 57%;
    left: auto;
    right: 15px;
  }

  .about-img._2 {
    z-index: 5;
    top: 30%;
    left: 35%;
  }

  .subtitle {
    margin-bottom: 30px;
  }

  .team-grid-item {
    height: 440px;
  }

  .team-primary-overlay {
    grid-row-gap: 20px;
    opacity: 1;
    background-image: none;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 30px;
    inset: auto 0% 0%;
  }

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

  .content {
    margin-bottom: 0;
  }

  .industries-block-wrapper {
    max-width: 45vw;
  }

  .home-11-customers-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .about-4-team-slide {
    width: 100%;
  }

  .nav-dropdown-link-line {
    display: none;
  }

  .subtitle-2 {
    margin-bottom: 30px;
  }

  .dropdown-nav-link {
    color: #222;
    padding-top: 12px;
    padding-bottom: 12px;
    font-family: Lato, sans-serif;
    font-weight: 700;
  }

  .dropdown-nav-link.w--current {
    color: #004ae2;
  }

  .menu-wrap {
    background-color: var(--primary-dark);
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .home-banner-left-arrow {
    inset: 20% auto auto 4%;
  }

  .tablet-menu {
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    display: flex;
  }

  .image-burger {
    margin-bottom: 2px;
  }

  .brand-tablet {
    display: block;
  }

  .spacing-system-image-2 {
    width: 75%;
  }

  .main-style-guide-body-wrapper {
    width: 100%;
    margin-right: 0;
  }

  .style-guide-tab-link {
    padding-left: 10px;
    padding-right: 10px;
  }

  .spacing-title {
    font-size: 25px;
  }

  .spasing-system-image-mobile-2 {
    width: 70%;
  }

  .landing-banner-content {
    max-width: 720px;
    margin-bottom: 70px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    left: 0%;
    right: 0%;
  }

  .landing-home-pages-wrapper-banner {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .landing-inner-page-item.home-screen-banner, .landing-inner-page-item.home-screen {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-customers-content-left {
    grid-row-gap: 10px;
    text-align: center;
    align-items: center;
    width: 70%;
    max-width: 640px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .landing-customers-content-right {
    grid-row-gap: 30px;
    width: 100%;
  }

  .landing-customers-icon-wrapper {
    width: 100%;
  }

  .landing-customers-layout {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
    align-items: center;
  }

  .landing-section-title {
    width: 80%;
  }

  .landing-home-pages-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .landing-inner-pages-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .pages-banner {
    padding-top: 110px;
  }

  .coming-soon-form-main {
    justify-content: center;
  }

  .sg-title.mb-30 {
    margin-bottom: 20px;
  }

  .flex-body-wrap {
    width: 100%;
  }

  .style-guide-body-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .style-guide-body-wrap.rows-30 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .numeric {
    font-size: 42px;
  }

  .banner-home-description {
    max-width: 520px;
  }

  .arrow-button {
    display: block;
  }

  .numbers-banner {
    grid-column-gap: 40px;
  }

  .banner-home-title {
    max-width: 520px;
  }

  .banner-home-title.home-three {
    margin-left: 0;
  }

  .banner-home-section {
    min-height: 560px;
    padding-top: 110px;
  }

  .banner-content-container.home-two {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
  }

  .footer-info-wrapper {
    border-style: solid none;
    border-top-width: 1px;
    border-top-color: var(--blue-gray);
    border-bottom-width: 1px;
    border-bottom-color: var(--blue-gray);
    align-items: center;
    width: auto;
    margin-bottom: 40px;
    margin-left: 0;
    padding: 40px;
  }

  .footer-about {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .links-footer-wrapper {
    grid-row-gap: 40px;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .info-company-wrapper {
    justify-content: center;
    align-items: center;
  }

  .section-two-side-title-wrapp {
    margin-bottom: 40px;
  }

  .two-side-title-wrapper {
    width: auto;
  }

  .main-features-wrapper, .main-features-wrapper.three-columns {
    grid-template-columns: 1fr 1fr;
  }

  .video-wrapper-bigger {
    height: 400px;
  }

  .column-two, .column-two.assymetric-services, .column-two.home-three-banner-style, .column-two.our-team-style, .column-one, .column-one.assymetric-services, .column-one.home-three-banner-style {
    width: 100%;
  }

  .column-one.our-team-style {
    width: 100%;
    max-width: 520px;
  }

  .two-column-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    display: flex;
  }

  .two-column-wrapper.banner-home-three-spacings {
    grid-row-gap: 0px;
  }

  .cart-block {
    padding: 30px 20px;
  }

  .bg-element-blue-one {
    inset: 0% auto auto 0%;
  }

  .bg-element-blue-two {
    top: 0%;
    bottom: auto;
  }

  .image-in-column {
    height: 380px;
  }

  .banner-bg-image-one {
    width: 140px;
  }

  .banner-bg-image-two {
    width: 200px;
    margin-bottom: -23px;
    margin-right: -18px;
  }

  .nav-cta-wrapper-tablet {
    display: flex;
  }

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

  .blog-collection-item {
    width: 47.9%;
  }

  .three-cards-wrapper {
    flex-flow: wrap;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    display: flex;
  }

  .three-cards-wrapper.blog-main {
    justify-content: flex-start;
    align-items: flex-start;
  }

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

  .carts-row-services {
    grid-row-gap: 30px;
    flex-direction: row-reverse;
  }

  .background-video {
    min-height: 900px;
    padding-top: 150px;
  }

  .home-video-banner {
    justify-content: flex-end;
  }

  .home-2-banner-info {
    width: 80%;
    margin-right: auto;
  }

  .banner-two-info-wrapper {
    width: 100%;
  }

  .gallery-three-items {
    flex-flow: column;
    display: flex;
  }

  .banner-section-three {
    min-height: 560px;
    padding-top: 110px;
  }

  .bg-element-color {
    height: 63%;
  }

  .bg-element-blue-one-copy {
    inset: 0% auto auto 0%;
  }

  .bg-element-blue-two-copy {
    top: 0%;
    bottom: auto;
  }

  .gallery-bg-image-one {
    min-width: 180px;
  }

  .gallery-bg-image-two {
    min-width: 140px;
  }

  .studio-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .studio-item {
    grid-template-rows: 300px auto;
    grid-template-columns: 1fr;
  }

  .inputs-wrapper.contact-us-three {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .form-right {
    max-width: none;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-customer-wrapper {
    grid-column-gap: 50px;
    justify-content: space-between;
  }

  .customers-wrapper {
    flex-wrap: wrap;
  }

  .tab-pane-locations {
    height: auto;
  }

  .location-tab-pane-content-wrapper {
    width: 50%;
    padding-top: 20px;
    padding-bottom: 20px;
    bottom: 15px;
    right: 15px;
  }

  .location-tabs {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
  }

  .location-tab {
    justify-content: center;
    padding: 15px;
  }

  .small-text.hidden-tablet {
    display: none;
  }

  .location-tabs-content {
    width: 100%;
  }

  .location-icon {
    margin-right: 10px;
  }

  .location-tab-title {
    margin-bottom: 0;
    font-size: 18px;
  }

  .hire-popup-wrap {
    display: none;
  }

  .team-primary-overlay-copy {
    grid-row-gap: 20px;
    opacity: 1;
    background-image: none;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 30px;
    inset: auto 0% 0%;
  }

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

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

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  blockquote {
    font-size: 24px;
  }

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

  .section.without-top-spacing {
    padding-top: 0;
  }

  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    border-left: 1px solid #7c7c7c;
    flex-direction: column;
  }

  .grid-description {
    border-top: 1px solid #a7a7a7;
    border-bottom-style: none;
    border-right-width: 1px;
    width: 100%;
  }

  .grid-description.first-description {
    border-width: 1px 1px .5px 0;
    border-top-style: none;
    border-top-color: #a7a7a7;
    border-bottom-style: none;
    border-left-style: none;
    width: 100%;
  }

  .grid-description.last-description {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-right-width: 1px;
  }

  .spacing-wrapper-mobile {
    margin-top: 30px;
  }

  .typography-wrapper {
    margin-top: 20px;
  }

  .spacing-columns {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .bottom-style-spacing-desktop {
    bottom: 10%;
  }

  .top-style-spacing-desktop {
    top: 10%;
  }

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

  .middle-style-spacing-desktop {
    top: 34%;
  }

  .colors-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .colors-container {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 0;
  }

  .headings-typography-wrapper {
    width: 100%;
  }

  .headers-wrapper {
    width: 100%;
    margin-top: 10px;
  }

  .primary-button.full-width-mobile, .primary-button.search-button {
    width: 100%;
  }

  .primary-button.pagination, .primary-button.pagination-light, .primary-button.outline {
    margin-top: 30px;
  }

  .top-style-spacing-mobile {
    top: 7%;
  }

  .middlr-style-spacing-mobile {
    top: 31%;
  }

  .bottom-style-spacing-mobile {
    bottom: 9%;
  }

  .link-wrapper {
    width: 100%;
  }

  .nav-link {
    margin-left: 0;
  }

  .licensing-title-wrapper {
    margin-bottom: 20px;
  }

  .licensing-images-wrapper {
    padding-top: 10px;
  }

  .licensing-grid {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 40px;
  }

  .licensing-grid.last-child {
    grid-template-columns: 1fr 1fr;
  }

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

  .licensing-fonts-wrapper {
    flex-wrap: wrap;
  }

  .licensing-paragraph {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .licensing-paragraph.last-item {
    margin-bottom: 0;
  }

  .licensing-font-title {
    margin-bottom: 10px;
  }

  .licensing-icons-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .utility-page-content {
    width: 70%;
  }

  .password-image {
    width: 100px;
  }

  .password-input {
    min-width: auto;
  }

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

  .coming-soon-wrapper {
    margin-left: 0%;
  }

  .coming-soon-input {
    min-width: 240px;
  }

  .coming-soon-heading {
    font-size: 44px;
  }

  .blog-template-image {
    height: 380px;
    margin-bottom: 30px;
  }

  .blog-template-pagination {
    grid-row-gap: 20px;
    flex-flow: column;
    align-items: stretch;
  }

  .blog-template-pagination-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .blog-template-prev-button {
    border-bottom: 1px solid var(--dark-gray-50);
    padding-bottom: 20px;
  }

  .blog-template-next-button {
    border-top: 1px solid var(--dark-gray-50);
    padding-top: 20px;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
  }

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

  .style-guide-button-wrapper {
    width: 100%;
  }

  .pricing-plans-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .pricing-plan-item {
    max-width: none;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .accordion-wrapper {
    flex-wrap: wrap;
  }

  .accordion-wrap {
    width: 100%;
    margin-right: 0;
  }

  .contacts-2-form-wrapper, .contacts-3-form-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-social-icons-wrapper {
    width: 100%;
  }

  .footer-wrapper {
    grid-column-gap: 50px;
    justify-content: center;
  }

  .footer-brand-wrapper {
    flex-wrap: wrap;
  }

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

  .search-result-item {
    margin-bottom: 20px;
  }

  .footer-brand-description {
    text-align: center;
  }

  .service-details-content-wrapper {
    width: 100%;
    margin-right: 0;
  }

  .service-details-sidebar-wrapper {
    width: 100%;
    margin-top: 40px;
    position: static;
  }

  .service-details-content {
    flex-wrap: wrap;
  }

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

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

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

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

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

  .home-4-testimonials-wrapper {
    grid-row-gap: 30px;
    width: 100%;
  }

  .testimonials-wrapper-2 {
    width: 100%;
  }

  .about-img {
    width: 100%;
    max-height: 420px;
  }

  .about-img._1, .about-img._5, .about-img._3, .about-img._4, .about-img._2 {
    width: 100%;
    position: static;
  }

  .subtitle {
    line-height: 16px;
  }

  .our-services-wrap {
    grid-row-gap: 10px;
    width: 100%;
  }

  .team-grid-item {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-6-team-image {
    width: 100%;
    height: 100%;
  }

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

  .content-wrapper {
    flex-wrap: wrap;
    width: auto;
  }

  .industries-block-wrapper {
    max-width: none;
  }

  .home-9-team-item {
    width: 48%;
  }

  .search {
    flex-direction: column;
    margin-top: 30px;
  }

  .subtitle-2 {
    line-height: 16px;
  }

  .home-banner-left-arrow {
    top: 6%;
  }

  .home-23-team-item {
    width: 70%;
  }

  .brand-tablet {
    justify-content: flex-start;
    padding-left: 0;
  }

  .brand {
    padding-left: 0;
  }

  .style-guide-tab-content-wrapper {
    grid-row-gap: 40px;
  }

  .grid-header {
    width: 100%;
  }

  .main-style-guide-body-wrapper {
    width: 100%;
    margin-top: 10px;
  }

  .style-guide-tab-link {
    border-bottom: 1px solid var(--black);
    border-top-style: none;
  }

  .style-guide-tabs-menu {
    border-top: 1px solid var(--black);
    flex-direction: column;
    margin-bottom: 40px;
  }

  .grid-title {
    border-bottom: 1px solid #7c7c7c;
    border-right-style: none;
    width: 100%;
  }

  .grid-title.first-grid {
    border-left-style: none;
    border-right-style: none;
    flex: 1;
    width: 100%;
  }

  .landing-banner-content {
    justify-content: center;
    align-items: center;
  }

  .landing-home-pages-wrapper-banner {
    grid-column-gap: 5px;
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .landing-customers-content-left {
    text-align: center;
    align-items: center;
    width: 70%;
  }

  .landing-customers-icon-wrapper {
    width: 90%;
  }

  .paragraph-benefits-lp {
    width: 100%;
  }

  .landing-customers-layout {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .landing-section-title {
    width: 70%;
  }

  .landing-home-pages-wrapper {
    grid-row-gap: 40px;
  }

  .landing-inner-pages-wrapper {
    grid-template-columns: 1fr;
  }

  .free-trial-title-landing {
    margin-bottom: 30px;
  }

  .pages-banner {
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .pages-banner.blog-details {
    padding-bottom: 160px;
  }

  .services-tabs-menu {
    flex-wrap: wrap;
    padding-bottom: 40px;
  }

  .spacing-flex-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .sg-title.mb-15 {
    margin-bottom: 10px;
  }

  .sg-title.mb-30 {
    margin-bottom: 20px;
  }

  .flex-body-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
  }

  .btn-flex-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .button-wrapper-main {
    margin-top: 30px;
  }

  .numbers-banner {
    margin-top: 40px;
  }

  .banner-home-title {
    max-width: 440px;
  }

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

  .banner-content-container {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .footer-about {
    width: 100%;
    max-width: 460px;
  }

  .gear-collection-links {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .equipment-tag {
    padding: 12px 24px;
  }

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

  .section-two-side-title-wrapp {
    grid-row-gap: 30px;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .main-features-wrapper.three-columns {
    grid-template-columns: 1fr;
  }

  .icon-features-wrapper {
    margin-bottom: 5px;
  }

  .video-wrapper-bigger {
    height: 360px;
  }

  .two-column-wrapper {
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .two-column-wrapper.our-team-style, .two-column-wrapper.pricing-style {
    text-align: center;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 40px;
  }

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

  .image-carts {
    width: 100%;
    height: 280px;
  }

  .banner-bg-image-one {
    width: 110px;
  }

  .banner-bg-image-two {
    width: 160px;
  }

  .cta-left-text {
    max-width: 450px;
  }

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

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

  .three-cards-wrapper {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

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

  .services-home-title {
    font-size: 32px;
  }

  .carts-row-services {
    grid-row-gap: 15px;
    flex-direction: column-reverse;
  }

  .carts-row-services.reverse {
    flex-flow: column;
  }

  .background-video {
    min-height: 800px;
    padding-top: 130px;
    padding-bottom: 60px;
  }

  .home-video-banner {
    min-height: 560px;
  }

  .home-2-banner-info {
    text-align: left;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .home-banner-image, .services-details-banner-image {
    height: 400px;
  }

  .studio-cards-item {
    max-width: none;
    padding-top: 30px;
    padding-bottom: 30px;
  }

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

  .contact-customer-wrapper, .info-contacts-one {
    margin-top: 30px;
    padding-top: 30px;
  }

  .location-tab-pane-content-wrapper {
    box-shadow: none;
    text-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: auto;
    bottom: 0;
    right: 0;
  }

  .location-tabs-menu {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
  }

  .location-tab-pane-info {
    align-items: center;
  }

  .location-title-wrapper {
    justify-content: center;
  }

  .blog-date-wrapper {
    margin-bottom: 30px;
  }

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

  .hire-popup {
    display: none;
  }

  .hire-buttons-wrap {
    grid-row-gap: 20px;
    flex-flow: column wrap;
    align-items: stretch;
  }

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

@media screen and (max-width: 479px) {
  .base-container.full-width {
    padding-left: 15px;
    padding-right: 15px;
  }

  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    flex-direction: column;
    width: 50%;
  }

  .grid-description {
    border-bottom-width: 1px;
    border-bottom-color: #fff3;
  }

  .grid-description.first-description {
    border-bottom: 1px #fff3;
    border-left-style: none;
    border-right-style: solid;
  }

  .grid-description.last-description {
    border-bottom-color: #a7a7a7;
  }

  .bottom-style-spacing-desktop {
    bottom: 8%;
  }

  .top-style-spacing-desktop {
    top: 7%;
  }

  .middle-style-spacing-desktop {
    top: 32%;
  }

  .color-container {
    flex-wrap: wrap;
  }

  .primary-button.full-width-mobile {
    width: 100%;
  }

  .top-style-spacing-mobile {
    top: 5%;
  }

  .middlr-style-spacing-mobile {
    top: 28%;
  }

  .bottom-style-spacing-mobile {
    bottom: 8%;
  }

  .nav-link {
    width: 99%;
  }

  .nav-dropdown-list.megamenu {
    padding-right: 0;
  }

  .licensing-title-wrapper {
    grid-column-gap: 20px;
    flex-wrap: wrap;
  }

  .licensing-grid, .licensing-grid.last-child {
    grid-template-columns: 1fr;
  }

  .license-link {
    margin-right: 15px;
  }

  .utility-page-content {
    width: 100%;
  }

  ._404-content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .coming-soon-form {
    flex-wrap: wrap;
    justify-content: center;
  }

  .coming-soon-input {
    min-width: auto;
  }

  .coming-soon-paragraph {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .coming-soon-heading {
    font-size: 32px;
  }

  .blog-template-pagination {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .blog-template-prev-button, .blog-template-next-button {
    flex: none;
    width: 100%;
  }

  .footer {
    text-align: left;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .footer-copyright {
    text-align: center;
    flex-wrap: wrap;
    width: 100%;
    line-height: 1.6em;
  }

  .pricing-plan-item {
    padding-left: 30px;
    padding-right: 30px;
  }

  .accordion-item {
    padding: 10px 20px;
  }

  .contacts-2-form-wrapper {
    padding: 20px;
  }

  .footer-social-icons-wrapper {
    justify-content: center;
  }

  .footer-brand-wrapper {
    flex-direction: column;
  }

  .footer-links-wrapper {
    align-items: center;
  }

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

  .section-title-center {
    margin-bottom: 20px;
  }

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

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

  .home-9-team-item {
    width: 100%;
  }

  .home-11-customers-wrapper {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .home-23-team-item {
    width: 100%;
  }

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

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

  .grid-title.first-grid {
    text-align: center;
    width: 100%;
  }

  .landing-banner-content {
    flex-direction: column;
    max-width: none;
    margin-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    inset: auto 0% 28%;
  }

  .landing-home-pages-wrapper-banner {
    grid-column-gap: 0px;
  }

  .landing-customers-content-left {
    width: 100%;
  }

  .landing-customers-content-right {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .landing-customers-icon-wrapper {
    width: 100%;
  }

  .landing-customers-layout {
    text-align: center;
  }

  .landing-section-title {
    width: 100%;
  }

  .landing-home-pages-wrapper, .landing-inner-pages-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .services-tab-link {
    text-align: center;
  }

  .footer-rights-wrapper {
    grid-row-gap: 5px;
    justify-content: center;
  }

  .position-relative {
    padding-left: 0;
    padding-right: 0;
  }

  .coming-soon-form-main {
    flex-wrap: wrap;
    justify-content: center;
  }

  .licensing-footer-link {
    text-align: center;
    line-height: 1.6em;
  }

  .numbers-banner {
    flex-direction: column;
    display: flex;
  }

  .banner-home-title {
    margin-bottom: 15px;
  }

  .banner-content-container {
    text-align: center;
  }

  .footer-info-wrapper {
    flex-direction: column;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-two-side-title-wrapp {
    text-align: center;
  }

  .main-features-wrapper {
    grid-template-columns: 1fr;
  }

  .play-button-hover-home {
    width: 70px;
    height: 70px;
    top: auto;
    bottom: 30px;
    right: 20px;
  }

  .play-button-hover-home.bottom-style {
    top: 20px;
    bottom: auto;
  }

  .video-overlay {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .avatars-wrapper.banner-two-spacing {
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }

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

  .block-with-bg-testimonials {
    padding: 30px 20px;
  }

  .three-cards-wrapper {
    grid-template-columns: 1fr;
  }

  .avatars-image-banner {
    max-width: 90%;
  }

  .home-2-banner-info {
    text-align: left;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 1.2em;
  }

  .home-banner-image {
    height: 280px;
  }

  .bg-element-color {
    height: 60%;
  }

  .accordion-arrow-wrapper {
    width: 44px;
    height: 44px;
    margin-top: 10px;
    margin-left: 15px;
  }

  .gallery-bg-image-one {
    min-width: 140px;
    top: 160px;
  }

  .gallery-bg-image-two {
    min-width: 100px;
    top: 160px;
  }

  .services-details-banner-image {
    height: 280px;
  }

  .inputs-wrapper {
    flex-direction: column;
  }

  .inputs-wrapper.contact-us-three {
    grid-template-columns: 1fr;
  }

  .form-right {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-customer-wrapper {
    grid-row-gap: 30px;
    flex-direction: column;
    align-items: center;
  }

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

  .location-tab-pane-content-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

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

#w-node-_0afadd79-147c-19ee-3bb3-85db7029a9f4-de3d68d1, #w-node-_57b5b232-b5b3-4a15-99c9-9cb889fcb8ad-de3d68d3, #w-node-_57b5b232-b5b3-4a15-99c9-9cb889fcb8ae-de3d68d3, #w-node-_57b5b232-b5b3-4a15-99c9-9cb889fcb8b3-de3d68d3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_73515c69-4d87-cf2d-494c-6115bc936c19-de3d68d3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3a9-de3d68ef, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3ab-de3d68ef, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3ad-de3d68ef, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3af-de3d68ef, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3b1-de3d68ef, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3b4-de3d68ef, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3b6-de3d68ef, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3b8-de3d68ef, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3ba-de3d68ef, #w-node-e7d4dd82-0188-3986-fb6e-4f07c833a3bc-de3d68ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_73515c69-4d87-cf2d-494c-6115bc936c19-de3d68d3 {
    grid-column: span 1 / span 1;
  }
}


@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Brands 400 (6.4.2)';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}