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

@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: Mulataddis;
  src: url('../fonts/MulatAddis-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

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

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

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

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

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

:root {
  --dark: #0a1d31;
  --primary-dark: #1e344b;
  --primary: #093542;
  --primary-light: #f0f5ff;
  --white: #fff;
  --light: #fff1f0;
  --secondary-primary: #aa5002;
  --red: #c94147;
  --dark-gray-50: #afafaf80;
  --dark-gray: #afafaf;
  --grey: #7d7874;
  --white-50: #ffffff80;
  --green: #81978d;
  --off-white: #f7eee7;
}

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

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

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

@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(--dark);
  font-family: "Aspekta 300", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
}

h1 {
  color: var(--primary-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Mulataddis, sans-serif;
  font-size: 68px;
  font-weight: 400;
  line-height: 1em;
}

h2 {
  color: var(--primary-dark);
  text-transform: capitalize;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Mulataddis, sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1em;
}

h3 {
  color: var(--primary-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Mulataddis, sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1em;
}

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

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

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

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

a {
  color: var(--primary);
  align-items: center;
  font-size: 18px;
  line-height: 1.5em;
  text-decoration: none;
  transition: opacity .3s;
}

a:hover {
  opacity: .7;
}

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

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

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

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

blockquote {
  border-left: 4px solid var(--primary);
  color: var(--primary-dark);
  text-align: left;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 30px 0 30px 60px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3em;
}

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

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

.section.banner {
  background-color: var(--primary-light);
  flex-direction: row;
  align-items: center;
  padding-top: 160px;
  display: flex;
}

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

.section.changelog-banner {
  background-color: var(--primary-light);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 160px;
  display: flex;
}

.section.blog-grid-banner {
  background-color: var(--primary-light);
  justify-content: center;
  align-items: center;
  padding-top: 180px;
  padding-bottom: 60px;
  display: flex;
  overflow: hidden;
}

.section.banner-our-team {
  background-image: linear-gradient(#1e344bb3, #1e344bb3), url('../images/Team-Contact-1_1Team Contact (1).webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 200px;
  padding-bottom: 120px;
  display: flex;
}

.section.banner-career {
  background-color: var(--primary-light);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 200px;
  padding-bottom: 60px;
  display: flex;
  overflow: hidden;
}

.section.pricing-banner {
  background-image: linear-gradient(#1e344bb3, #1e344bb3), url('../images/pricing-Banner-1_1pricing Banner (1).webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 200px;
  padding-bottom: 120px;
  display: flex;
}

.section.banner-faq {
  background-image: url('../images/BG-Home-3.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 200px;
  padding-bottom: 140px;
  display: flex;
}

.section.banner-customers {
  background-color: var(--primary-light);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 180px;
  padding-bottom: 60px;
  display: flex;
  overflow: hidden;
}

.section.banner-testimonials {
  background-color: var(--primary-light);
  flex-direction: column;
  align-items: center;
  padding-top: 200px;
  padding-bottom: 120px;
  display: flex;
  overflow: hidden;
}

.section.about-us-banner {
  background-image: linear-gradient(#1e344bb3, #1e344bb3), url('../images/Untitled-design---2025-01-02T133306.859.png');
  background-position: 0 0, 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  padding-top: 220px;
  padding-bottom: 100px;
  display: flex;
}

.section.portfolio-grid-banner {
  background-color: var(--primary-light);
  background-image: url('../images/BG-Home-3.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  padding-top: 200px;
  padding-bottom: 120px;
  display: flex;
  overflow: hidden;
}

.section.without-top-spacing {
  padding-top: 60px;
}

.section.pt--30 {
  padding-bottom: 50px;
  overflow: hidden;
}

.section.gradient-section {
  background-image: linear-gradient(145deg, var(--primary), #0d49bd);
  overflow: hidden;
}

.section.details-banner {
  background-image: url('../images/BG-Home-3.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 100%;
  padding-top: 160px;
  overflow: visible;
}

.section.overflow {
  overflow: visible;
}

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

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

.base-container.homerhr {
  width: 100%;
}

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

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

.grid-title {
  background-color: var(--primary);
  color: var(--white);
  border-left: 1px #a7a7a7;
  border-right: 1px solid #7c7c7c;
  justify-content: 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;
}

.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-system-column {
  padding-right: 20px;
}

.spacing-system-image {
  max-width: 80%;
}

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

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

.spacing-columns {
  margin-top: 40px;
}

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

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

.primary-style-guide {
  background-color: var(--primary);
  width: 75px;
  height: 75px;
}

.primary-black-style-guide {
  background-color: var(--primary-dark);
  width: 75px;
  height: 75px;
}

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

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

.color-container {
  grid-column-gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 40px;
  display: flex;
}

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

.primary-white-style-guide {
  background-color: var(--white);
  width: 75px;
  height: 75px;
}

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

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

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

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

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

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

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

.h4-mobile {
  font-size: 26px;
}

.style-guide-body-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

.primary-button {
  border: 1px solid var(--secondary-primary);
  background-color: var(--red);
  color: var(--white);
  text-align: center;
  letter-spacing: .2px;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  border-radius: 100px;
  padding: 18px 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  transition: all .3s;
  display: inline-block;
}

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

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

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

.primary-button.full-width {
  width: 100%;
}

.primary-button.white-borders {
  background-color: var(--red);
  border-radius: 0;
  padding: 10px 20px;
}

.primary-button.white-borders:hover {
  border-color: var(--red);
  background-color: var(--white);
}

.primary-button.white-borders.w--current:hover {
  background-color: var(--white);
}

.primary-button.white-borders.cta {
  background-color: var(--white);
  color: var(--dark);
  font-weight: 400;
}

.style-guide-div {
  grid-row-gap: 60px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  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;
}

.grid-header {
  width: 100%;
  margin-top: 50px;
}

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

.navbar {
  background-color: #fff;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-container {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  display: flex;
  position: relative;
}

.nav-dropdown-icon {
  font-size: 16px;
  display: none;
}

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

.pages-banner {
  background-color: var(--primary-light);
  background-image: url('../images/BG-Home-3.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  padding-top: 200px;
  padding-bottom: 120px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.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;
  width: 100%;
  height: 320px;
}

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

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

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

.license-link {
  color: #0e0e0e;
  letter-spacing: normal;
  margin-right: 50px;
  font-weight: 700;
}

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

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

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

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

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

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

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

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

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

.utility-page-wrap {
  background-color: var(--primary-light);
  background-image: url('../images/BG-Home-3.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-bottom: 0;
  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-left: auto;
  margin-right: auto;
  display: block;
}

.password-input {
  color: var(--primary-dark);
  border: 1px solid #65687533;
  min-width: 280px;
  min-height: 65px;
  margin-bottom: 10px;
  padding: 16px 18px;
  font-size: 18px;
  line-height: 1.2em;
}

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

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

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

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

.coming-soon-input {
  background-color: var(--white);
  color: var(--primary-dark);
  border: 1px solid #fffc;
  min-width: 300px;
  height: auto;
  margin-bottom: 0;
  padding: 16px 18px;
  font-size: 18px;
}

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

.coming-soon-input::placeholder {
  color: var(--dark);
  line-height: 1em;
}

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

.coming-soon-page-wrap {
  background-color: var(--primary-light);
  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;
  font-size: 70px;
}

.blog-grid-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
}

.blog-grid-collection-list {
  grid-column-gap: 27px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
  display: flex;
}

.blog-grid-image-link {
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}

.blog-grid-image {
  object-fit: cover;
  width: 100%;
  height: 368.547px;
}

.blog-grid-content-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--white);
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  height: auto;
  min-height: 0;
  padding: 20px 30px 30px;
  display: flex;
}

.blog-grid-item {
  width: 31.5%;
  height: auto;
  display: inline-block;
  box-shadow: 0 24px 48px -12px #0000002e;
}

.blog-grid-item-title {
  color: #0e0e0e;
  font-size: 24px;
  font-weight: 700;
}

.blog-grid-item-title:hover {
  opacity: 1;
}

.blog-grid-item-description {
  margin-bottom: 40px;
}

.blog-grid-post-wrapper {
  height: 100%;
}

.blog-template-wrapper {
  width: 60%;
}

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

.team-card-image {
  border: 1px solid var(--light);
  color: var(--primary);
  object-fit: cover;
  width: 97%;
  height: 450px;
  transition: border-color .3s;
}

.team-card-image:hover {
  border: 1px solid var(--light);
}

.team-card-content-wrapper {
  text-align: left;
  padding-top: 30px;
  position: relative;
}

.team-social-links-wrapper {
  grid-column-gap: 20px;
  border: 1px solid var(--light);
  background-color: var(--white);
  justify-content: center;
  padding: 6px 10px;
  display: flex;
  position: absolute;
  inset: -40% 0% auto auto;
}

.team-social-icon {
  font-family: "Fa brands 400", sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.team-social-icon.big-icon {
  font-size: 26px;
}

.team-grid-large {
  grid-column-gap: 25px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.style-guide-buttons-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

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

.style-guide-button-wrapper.last-child {
  margin-right: 0;
}

.free-trial-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.paragraph-large {
  font-size: 18px;
  line-height: 1.5em;
}

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

.pricing-plans-wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 100%;
  display: grid;
}

.pricing-plan-item {
  border: 1px solid var(--primary-light);
  background-color: var(--white);
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 50px;
  display: flex;
}

.pricing-plan-item.light-background {
  background-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
  padding-left: 19px;
  padding-right: 19px;
}

.pricing-plan-list {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
  list-style-type: disc;
}

.pricing-plan-list.white-pricing {
  color: var(--white);
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-clip: border-box;
}

.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-item {
  background-color: var(--white);
  width: 100%;
  margin-bottom: 15px;
  padding: 20px 30px;
  position: static;
  box-shadow: 0 24px 48px -12px #1018282e;
}

.accordion-icon {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 17px;
  line-height: 24px;
}

.accordion-list-content {
  margin-top: 0;
  margin-bottom: 0;
}

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

.light-background {
  background-color: var(--light);
}

.coming-soon-image {
  max-width: 480px;
}

.contacts-form-wrapper {
  border: 1px solid var(--primary);
  background-color: var(--white);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  width: 80%;
  min-height: 550px;
  margin-left: 40px;
  padding: 40px;
  display: flex;
}

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

.hidden {
  display: none;
}

.contacts-textarea {
  border: 1px solid var(--primary);
  background-color: var(--white);
  color: var(--primary);
  min-width: 100%;
  max-width: 100%;
  min-height: 200px;
  max-height: 100%;
  margin-bottom: 30px;
  padding: 16px 18px;
  font-size: 18px;
}

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

.contacts-textarea::placeholder {
  color: var(--primary);
  font-size: 18px;
}

.contacts-input {
  border: 1px solid var(--primary);
  background-color: var(--white);
  color: var(--primary);
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  padding: 16px 18px;
  font-size: 18px;
  transition: all .2s;
}

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

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

.white-text {
  color: #fff;
  margin-bottom: 20px;
}

.white-text.paragraph-text.cta.codes {
  text-align: center;
  width: 75%;
  font-size: 28px;
  line-height: 1.5em;
}

.white-text.paragraph-text.cta.codes.clients {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.35em;
}

.white-text.paragraph-text.cta.s {
  font-size: 28px;
  line-height: 1.3em;
}

.white-text.quore.s {
  line-height: 1.3em;
}

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

.white-text.cta.clients {
  font-size: 42px;
}

.white-text.cta.about-2-counter-grid {
  text-align: center;
  font-size: 36px;
}

.white-text.cta._2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 36px;
}

.white-text.cta.c {
  font-size: 60px;
}

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

.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 {
  border: 1px solid var(--dark-gray-50);
  color: var(--primary-dark);
  height: auto;
  margin-bottom: 0;
  padding: 16px 18px;
  font-size: 18px;
  line-height: 1em;
}

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

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

.search-result-wrapper {
  width: 100%;
  margin-top: 40px;
}

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

.customers-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.customer-wrapper {
  text-align: center;
  border: 1px solid #6568754d;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 237px;
  padding: 0;
  transition: border-color .3s;
  display: flex;
}

.customer-wrapper:hover {
  border-color: var(--light);
}

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

.accordion-wrap-one-column {
  width: 60%;
}

.service-details-sidebar-wrapper {
  width: 30%;
  position: sticky;
  top: 110px;
}

.service-details-content {
  grid-column-gap: 40px;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.customer-image {
  margin-bottom: 20px;
}

.customer-image.tsa {
  width: 150px;
}

.accordion-wrapper-one-column {
  grid-column-gap: 40px;
  justify-content: center;
  width: 100%;
  display: flex;
}

.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 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

.service-list-banner {
  background-image: linear-gradient(#1e344bb3, #1e344bb3), url('../images/Untitled-design---2025-01-06T120325.566.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  padding-top: 200px;
  padding-bottom: 60px;
  display: flex;
}

.primary-button-white {
  border: 1px solid var(--white);
  background-color: var(--primary-light);
  color: var(--primary-dark);
  text-align: center;
  letter-spacing: .2px;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  border-radius: 100px;
  align-items: center;
  padding: 16px 28px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  transition: all .2s;
}

.primary-button-white:hover {
  border-color: var(--primary-light);
  opacity: 1;
  color: var(--primary-light);
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-image: none;
  background-clip: border-box;
}

.primary-button-white.full-width {
  justify-content: center;
  width: 100%;
}

.primary-button-white.shadow {
  border-color: var(--secondary-primary);
  background-color: var(--white);
  color: var(--secondary-primary);
  box-shadow: 0 2px 12px #0003;
}

.primary-button-white.service-button {
  background-color: var(--red);
  color: var(--white);
  margin-top: 0;
}

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

.style-guide-content-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: nowrap;
  margin-top: 20px;
  display: flex;
}

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

.about-2-progress-bar-item {
  margin-bottom: 30px;
}

.progressbar-gray-line {
  background-color: var(--dark-gray-50);
  width: 100%;
  height: 4px;
}

.about-2-progress-bar-active-element {
  background-color: var(--primary);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  display: flex;
  position: absolute;
  inset: auto -10px 15px auto;
}

.progress-bar-number {
  color: var(--white);
  font-size: 12px;
}

.progressbar-con {
  width: 100%;
}

.progress-bar-80 {
  background-color: var(--primary);
  width: 95%;
  height: 4px;
  margin-top: -4px;
  position: relative;
}

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

.template-empty-state {
  color: var(--primary);
  background-color: #0000;
  padding: 30px;
  font-family: Lato, sans-serif;
  font-size: 16px;
}

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

.project-template-content {
  width: 70%;
}

.project-template-info {
  width: 30%;
  padding-left: 80px;
}

.project-template-content-wrapper {
  width: 100%;
  display: flex;
}

.project-template-info-wrap {
  margin-bottom: 30px;
}

.project-template-info-wrap.last-child {
  margin-bottom: 0;
}

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

.project-template-social-icons {
  display: flex;
}

.project-template-social-link {
  border: 1px solid var(--primary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  font-family: "Fa brands 400", sans-serif;
  font-size: 15px;
  line-height: 15px;
  transition: all .3s;
  display: flex;
}

.project-template-social-link:hover {
  background-color: var(--primary);
  opacity: 1;
  color: var(--white);
}

.project-template-social-link.last-child {
  margin-right: 0;
}

.project-pagination-wrapper {
  border-top: 1px solid #0000004d;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 50px;
  padding-top: 40px;
  display: flex;
}

.progress-bar-98 {
  background-color: var(--primary);
  width: 98%;
  height: 4px;
  margin-top: -4px;
  position: relative;
}

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

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

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

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

.project-button-link {
  color: #0e0e0e;
  justify-content: flex-end;
  width: 50%;
  display: flex;
}

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

.project-button-link.left {
  justify-content: flex-start;
  width: 50%;
  padding-bottom: 0;
}

.project-prev-button-link-icon {
  margin-top: 2px;
  margin-right: 15px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 13px;
  line-height: 1;
}

.project-next-button-link-icon {
  margin-top: 2px;
  margin-left: 15px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 13px;
  line-height: 1;
}

.project-button-link-paragraph {
  font-size: 18px;
}

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

.circle-counter {
  grid-row-gap: 20px;
  background-color: var(--white);
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 33%;
  padding: 30px 10px;
  display: flex;
}

.counter-progressbar {
  width: 100px;
  height: 100px;
  padding: 2px;
  display: flex;
  position: relative;
}

.counter-static {
  background-color: var(--primary-light);
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.counter-number {
  z-index: 10;
  color: var(--primary-dark);
  -webkit-text-stroke-width: .5px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 26px;
  display: flex;
  position: relative;
}

.counter-left-block {
  width: 100px;
  height: 100px;
  position: absolute;
  inset: 0% auto 0% 0%;
  overflow: hidden;
}

.counter-right-block {
  width: 50px;
  height: 100px;
  position: absolute;
  inset: 0% 0% 0% auto;
  overflow: hidden;
}

.counter-title {
  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;
}

.search {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  width: 100%;
  margin-top: 20px;
  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;
}

.rich-text-style h2 {
  margin-bottom: 15px;
  font-size: 42px;
  font-weight: 600;
}

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

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

.rich-text-style li {
  list-style-type: square;
}

.rich-text-style ul {
  grid-row-gap: 5px;
  margin-top: 20px;
  margin-bottom: 20px;
  list-style-type: square;
}

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

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

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

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

.brand {
  display: flex;
}

.brand.absolute {
  opacity: 0;
  position: absolute;
  inset: auto auto auto 0%;
}

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

.style-guide-subtitle {
  margin-bottom: 20px;
}

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

.success-message {
  color: var(--primary);
  text-align: center;
  background-color: #0000;
  border-radius: 6px;
}

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

.typography-hero-wrapper {
  grid-row-gap: 60px;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 40px;
  display: flex;
}

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

.form-block-contacts {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
}

.secondary-primary-style-guide {
  background-color: var(--secondary-primary);
  width: 75px;
  height: 75px;
}

.subtitle-text {
  color: #000;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5em;
  display: inline-block;
}

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

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

.error-message-footer {
  background-color: var(--secondary-primary);
  color: var(--white);
  text-align: center;
}

.gradient-color {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.banner-home-1 {
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.img-banner-home.home-3 {
  object-position: 100% 50%;
  width: 95%;
  height: 500px;
  position: static;
}

.img-banner-home.project-img {
  width: 100%;
  height: 500px;
  position: static;
}

.background-banner-home-1 {
  background-image: linear-gradient(145deg, var(--dark), #000);
  width: 59%;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.banner-wrapper-content {
  z-index: 10;
  width: 53%;
  margin-right: auto;
  position: relative;
}

.banner-wrapper-content.home-3 {
  width: 50%;
  margin-right: 0;
}

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

.paragraph-banner-home-1 {
  color: var(--white);
  margin-top: 25px;
}

.title-center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin-bottom: 60px;
  display: flex;
}

.title-center.big-title-center {
  max-width: 540px;
  margin-bottom: 20px;
}

.collection-list-wrapper-services {
  width: 100%;
  margin-bottom: 20px;
}

.collection-list-services {
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  width: 100%;
  margin-top: 25px;
  display: flex;
}

.collection-item-services {
  background-color: var(--white);
  text-align: center;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 31%;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  box-shadow: 0 5px 12px #10182826;
}

.link-block {
  grid-column-gap: 10px;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  justify-content: space-between;
  display: flex;
}

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

.service-img {
  width: 100px;
  margin-top: -25px;
  margin-bottom: 15px;
  position: relative;
}

._2-column-content {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  width: 100%;
}

.left-content {
  flex-direction: column;
  display: flex;
}

.about-us-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  margin-top: 20px;
  margin-bottom: 20px;
}

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

._2-arrow-img {
  width: 25px;
  margin-right: 12px;
}

.woman {
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: 100%;
}

.icon-pricing {
  margin-bottom: 10px;
}

.price-text {
  color: var(--primary-dark);
  font-family: Kanit, sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1em;
}

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

.section-img-background {
  background-color: var(--dark);
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  background-attachment: scroll;
  margin-bottom: 0;
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-img-background.smallw {
  background-color: var(--red);
  padding-top: 20px;
  padding-bottom: 0;
}

.section-img-background.smallw.clients {
  padding-top: 0;
  padding-bottom: 0;
}

.section-img-background._2 {
  padding-top: 20px;
  padding-bottom: 0;
}

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

.info-wrapper.team {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.info-wrapper.code {
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr;
  display: flex;
}

.left-info-wrap {
  width: 90%;
}

.left-info-wrap.team-info {
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.left-info-wrap.code {
  width: 100%;
}

.left-info-wrap.sd {
  color: var(--white);
}

.right-info-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  display: flex;
}

.right-info-wrap.team-info {
  width: 100%;
}

.right-info-wrap.sd {
  color: var(--white);
}

.primary-dark {
  color: var(--primary-dark);
  font-size: 16px;
}

.primary-dark.big-font-size {
  font-size: 18px;
}

.info {
  grid-column-gap: 20px;
  width: 100%;
  display: flex;
}

.content-title {
  grid-column-gap: 40px;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 50px;
  display: flex;
}

.content-title.testimonials-home, .content-title.testimonials-about {
  margin-bottom: 0;
}

.content-title.alighn-cener {
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 0;
}

.title {
  width: 48%;
}

.right-content {
  width: 55%;
}

.right-content.testimonials-home {
  width: 52%;
}

.work-process-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.process {
  border-top: 1px solid #65687533;
  padding-top: 40px;
  padding-left: 10px;
  position: relative;
}

.process.first-block {
  padding-left: 0;
}

.absolute-line-process {
  background-color: var(--primary);
  opacity: 0;
  width: 100%;
  height: 3px;
  position: absolute;
  inset: -2px 0% auto;
}

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

.mt-0 {
  margin-top: 0;
}

.left-arrow-review {
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  width: 40px;
  height: 40px;
  font-size: 16px;
  transition: background-color .3s, color .3s;
  inset: 200px auto auto -100%;
}

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

.left-arrow-review.right-position {
  inset: 200px -72% auto auto;
}

.right-arrow-review {
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  width: 40px;
  height: 40px;
  font-size: 16px;
  transition: background-color .3s, color .3s;
  inset: 200px auto auto -83%;
}

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

.right-arrow-review.right-position {
  inset: 200px -82% auto auto;
}

.slider-review {
  background-color: #0000;
  height: auto;
}

.testimonials-review {
  border: 1px solid var(--red);
  background-color: var(--white);
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 10px 20px;
  display: flex;
}

.mask-review {
  overflow: visible;
}

.mask-review.left-mask {
  padding-left: 0;
  overflow: hidden;
}

.review-text {
  width: 85%;
}

.title-testimonials-review {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.slide-testimonials {
  margin-left: 2px;
  margin-right: 25px;
}

.support-services-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  width: 100%;
}

.support-service-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin-top: 50px;
}

.collection-item-support-services {
  border-bottom: 1px solid #65687533;
  padding-bottom: 30px;
}

.collection-list-support-services {
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.collection-list-wrapper-support-services {
  margin-top: 50px;
}

.left-support-services {
  flex-direction: column;
  display: flex;
}

.counter-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border: 1px none var(--primary-dark);
  border-radius: 0;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-top: 60px;
}

.counter-wrapper.mt-0 {
  margin-top: 0;
}

.counter-wrap {
  border: 1px solid var(--primary-dark);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 30px 20px 40px;
  display: flex;
}

.big-number {
  font-family: Kanit, sans-serif;
  font-size: 66px;
  font-weight: 700;
  line-height: 1.1em;
}

.big-number.primary-color {
  color: var(--red);
}

.advantages-wrap {
  border: 1px solid var(--primary-dark);
  background-color: var(--white);
  width: 90%;
  padding: 15px 20px;
}

.advantages-wrap.center {
  background-color: var(--red);
  background-image: none;
  border-style: none;
  margin-left: 30px;
  box-shadow: 0 24px 48px -12px #1018282e;
}

.heading-advantages {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.number {
  color: var(--primary-dark);
  font-size: 16px;
}

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

.left-advatages-content {
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

.advantages-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  align-items: center;
  display: grid;
}

.background-1 {
  z-index: 999;
  filter: blur(2px);
  width: 35%;
  height: 130.625%;
  position: absolute;
  inset: auto 0% -60% auto;
}

.img-bg-block {
  position: relative;
  overflow: hidden;
}

.info-text-wrapper {
  background-color: var(--red);
  padding: 10px 20px;
  position: absolute;
  inset: auto 0% 0%;
}

.circle {
  border: 1px solid #6568754d;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.circle.small-curcle {
  width: 32px;
  height: 32px;
}

.service-paragraph {
  width: 90%;
}

.background-2 {
  filter: blur(2px);
  width: 30%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto -2%;
}

.banner-home-2 {
  background-image: linear-gradient(#020c0fba, #020c0fba), url('../images/e05494_8a6f4b0cb7c74292bb2442015999d47a~mv2_d_2307_1500_s_2.avif');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding-top: 140px;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header-banner {
  color: var(--white);
  width: 85%;
  margin-bottom: 20px;
}

.banner-home-2-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.paragraph-banner-home-2 {
  color: var(--white);
  max-width: 600px;
  margin-bottom: 20px;
}

.logo-partners-banner {
  border-top: 1px solid #fff3;
  align-items: center;
  max-width: 1170px;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 40px;
  display: flex;
  position: absolute;
  inset: auto 0% 40px;
  overflow: hidden;
}

.logo-wrapper {
  grid-column-gap: 50px;
  flex: none;
  justify-content: space-between;
  align-items: center;
  width: auto;
  display: flex;
  overflow: hidden;
}

.loop-logo {
  grid-column-gap: 50px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.banner-home-3 {
  background-image: url('../images/BG-Home-3.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.paragraph-banner-home-3 {
  margin-top: 25px;
}

.banner-home-3-wrapper {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.banner-img-wrapper {
  z-index: 10;
  width: 50%;
  position: relative;
}

.banner-img-wrapper.project-details {
  justify-content: flex-end;
  display: flex;
}

.top-right-radius-background {
  z-index: -1;
  background-color: var(--white);
  border-top-right-radius: 50px;
  width: 99%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.botton-right-radius-backgrouns {
  z-index: -1;
  background-color: var(--primary-light);
  border-bottom-right-radius: 50px;
  width: 99%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.banner-title-small {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  display: flex;
}

.paragraph-banner {
  color: var(--white);
  text-align: center;
}

.paragraph-banner.dark-paragrap {
  color: var(--primary-dark);
}

.logo-loop {
  justify-content: flex-start;
  align-items: center;
  max-width: 1170px;
  margin-top: 30px;
  display: flex;
  overflow: hidden;
}

.section-background-image {
  background-image: linear-gradient(#1e344bb3, #1e344bb3), url('../images/about-bg-1_1about bg (1).webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  display: flex;
}

.info-video-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 80%;
  display: flex;
}

.about-us-wrap {
  grid-column-gap: 40px;
  flex-direction: row;
  align-items: center;
  width: 100%;
  display: flex;
}

.about-content-wrap {
  flex-direction: column;
  width: 60%;
  padding-right: 40px;
  display: flex;
}

.img-content-wrap {
  width: 40%;
}

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

.paragraph-about {
  color: #000;
  font-size: 20px;
}

.top-left-radius-background {
  z-index: -1;
  text-transform: lowercase;
  background-color: #0000;
  border-top-left-radius: 50px;
  width: 99%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.grey-background {
  z-index: -1;
  background-color: #0000;
  width: 99%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

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

.collection-list-services-about {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid #6568754d;
  border-bottom: 1px solid #6568754d;
  border-left: 1px solid #6568754d;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.collection-item-services-about {
  border-right-style: none;
  border-right-width: 1px;
  border-right-color: var(--red);
  border-left-style: none;
  border-left-width: 1px;
  border-left-color: var(--red);
  background-color: #0000;
}

.link-block-services-arrow {
  margin-top: 20px;
}

.team {
  object-fit: cover;
  width: 95%;
  height: 100%;
}

.absolute-title {
  background-color: var(--white);
  width: 95%;
  padding: 10px 20px;
  position: absolute;
  inset: auto 0% -20px 5%;
}

.how-work-wrapper {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  align-items: center;
}

.content-relative-img {
  margin-bottom: 20px;
  position: relative;
}

.service-wrapper {
  z-index: 10;
  border-style: solid none solid solid;
  border-width: 1px;
  border-color: var(--red);
  background-color: #0000;
  height: 269.219px;
  padding: 10px 20px 20px;
  position: relative;
}

.play-icon {
  padding-right: 7px;
  font-family: "Fa solid 900", sans-serif;
  font-weight: 400;
}

.about-users {
  z-index: 10;
  object-fit: cover;
  position: absolute;
  inset: auto 0 -11px auto;
  box-shadow: 0 24px 48px -12px #1018282e;
}

.slider-banner {
  background-color: #0000;
  height: auto;
}

.bg-block {
  z-index: -1;
  background-color: var(--primary-light);
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  width: 99%;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.quick-stack {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  width: 100%;
  padding: 0;
}

.cell-testimonails {
  background-color: var(--primary-light);
  border-radius: 6px;
  padding: 20px;
}

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

.testimonials-img {
  border-radius: 100px;
  width: 60px;
  height: 60px;
}

.testimonails-wrapper {
  grid-column-gap: 20px;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.contact-wrap {
  grid-column-gap: 30px;
  display: flex;
}

.success-message-2 {
  color: var(--white);
  background-color: #0000;
  border: 1px solid #ffffff4d;
  border-radius: 6px;
}

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

.info-contact-wrap {
  grid-row-gap: 10px;
  text-align: center;
  border: 1px solid #1e344b33;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.work-hours {
  font-weight: 600;
}

.work-hours.primary-text {
  font-size: 18px;
  font-weight: 400;
}

.details-blog-section {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding-top: 180px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.blog-details-heading {
  color: var(--primary-dark);
  font-size: 50px;
}

.title-details-banner {
  z-index: 10;
  text-align: center;
  flex-direction: column;
  max-width: 1000px;
  display: flex;
  position: relative;
}

.blog-details-img-banner {
  z-index: -1;
  object-fit: cover;
  object-position: 50% 10%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.blog-details-wrap {
  grid-column-gap: 40px;
  width: 100%;
  display: flex;
}

.recent-post-wrap {
  width: 38%;
  position: relative;
}

.sidebar-recent-posts {
  background-color: #fff;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 10px 20px 20px;
  position: sticky;
  top: 110px;
  box-shadow: 0 24px 48px -12px #1018282e;
}

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

.sidebar-recent-post-item {
  grid-column-gap: 20px;
  margin-bottom: 20px;
  display: flex;
}

.template-empty-state-2 {
  color: #0f5cfa;
  background-color: #0000;
  padding: 30px;
  font-family: Lato, sans-serif;
  font-size: 16px;
}

.background-details {
  background-color: var(--primary-light);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.recent-link-img {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 100%;
  height: 120px;
  display: flex;
}

.recent-img-post {
  object-fit: cover;
  width: 132px;
  height: 100%;
}

.link-recent-title:hover {
  opacity: 1;
}

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

.recent-title-wrap {
  width: 65%;
}

.collection-item-recen-service {
  border-bottom: 1px solid #65687533;
  margin-bottom: 10px;
  padding-bottom: 10px;
  transition: border-color .3s;
}

.collection-item-recen-service:hover {
  border-bottom-color: var(--primary);
}

.service-img-details {
  object-fit: cover;
  width: 100%;
  height: 450px;
  margin-bottom: 30px;
}

.about-service-wrap {
  justify-content: space-between;
  width: 100%;
  margin-top: 50px;
  display: flex;
}

.info-service-wrap {
  width: 50%;
}

.service-img-rich-text {
  background-image: url('../images/Img-About-2-1_1Img About 2 (1).webp');
  background-position: 50% 20%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
  width: 45%;
}

.quick-stack-portfolio {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  width: 100%;
  padding: 0;
}

.link-portfolio-img {
  width: 100%;
  height: 100%;
}

.portfolio-img {
  object-fit: cover;
  height: 100%;
}

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

.collection-item-portfolio {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.collection-list-portfolio {
  width: 100%;
  height: 100%;
}

.hover-name-portfolio {
  z-index: 1;
  background-color: var(--primary);
  cursor: pointer;
  flex-direction: row;
  width: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: none;
  position: absolute;
  inset: 0% auto auto 0%;
}

.link-portfolio {
  background-color: #fff0;
  padding-left: 10px;
  padding-right: 10px;
  transition-property: background-color;
  position: absolute;
  inset: auto auto 15px 15px;
}

.link-portfolio:hover {
  background-color: var(--primary);
  opacity: 1;
}

.project-details-banner {
  background-image: url('../images/BG-Home-3.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 200px;
  padding-bottom: 120px;
}

.details-wrapper {
  grid-column-gap: 40px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.link-block-3:hover {
  opacity: 1;
}

.collection-list-wrapper-category-grid, .tabs-shop {
  width: 100%;
}

.collection-item-grid-shop {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.collection-item-list-shop {
  grid-column-gap: 40px;
  background-color: var(--primary-light);
  justify-content: flex-start;
  display: flex;
}

.tab-link-shop {
  -webkit-text-fill-color: inherit;
  background-color: #115cef80;
  background-clip: border-box;
  border: 0 solid #0000;
  border-radius: 6px;
  padding: 16px;
  transition-property: background-color;
}

.tab-link-shop:hover {
  opacity: 1;
  background-color: #115cefb3;
}

.tab-link-shop.w--current {
  background-color: var(--primary);
  border-width: 0;
  border-color: #0000;
  transition-property: none;
}

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

.tabs-menu-shop {
  grid-column-gap: 10px;
  display: flex;
}

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

.collection-list-grid-shop {
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.link-block-product-img {
  overflow: hidden;
}

.link-block-product-img:hover {
  opacity: 1;
}

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

.content-product {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 250px;
  padding-top: 20px;
  display: flex;
}

.about-product {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

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

.add-to-cart {
  margin-top: 30px;
}

.default-state {
  margin-bottom: 0;
}

.link-block-product-img-list {
  width: 40%;
  transition-property: none;
  overflow: hidden;
}

.link-block-product-img-list:hover {
  opacity: 1;
}

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

.content-product-list {
  flex-direction: column;
  justify-content: space-between;
  width: 60%;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 40px;
  display: flex;
}

.tab-pane-shop {
  width: 100%;
}

.error-state-header {
  background-color: var(--light);
  color: var(--primary-dark);
  text-align: center;
  border-radius: 6px;
}

.checkout-form {
  background-color: #0000;
  min-height: auto;
  padding-top: 160px;
  padding-bottom: 80px;
}

.apple-pay {
  border-radius: 6px;
}

.email {
  color: var(--primary-dark);
  background-color: #0000;
  border-color: #65687533;
  border-radius: 0;
  height: auto;
  padding: 16px 18px;
  font-size: 18px;
}

.email:focus {
  border-color: var(--primary);
}

.full-name {
  color: var(--primary-dark);
  background-color: #0000;
  border-color: #65687533;
  border-radius: 0;
  height: auto;
  padding: 16px 18px;
  font-size: 18px;
}

.full-name:focus {
  border-color: var(--primary);
}

.street-address {
  color: var(--primary-dark);
  background-color: #0000;
  border-color: #65687533;
  border-radius: 0;
  height: auto;
  padding: 16px 18px;
  font-size: 18px;
}

.street-address:focus {
  border-color: var(--primary);
}

.street-address-2 {
  color: var(--primary-dark);
  background-color: #0000;
  border-color: #65687533;
  border-radius: 0;
  height: auto;
  padding: 16px 18px;
  font-size: 18px;
}

.street-address-2:focus {
  border-color: var(--primary);
}

.city {
  color: var(--primary-dark);
  background-color: #0000;
  border-color: #65687533;
  border-radius: 0;
  height: auto;
  padding: 16px 18px;
  font-size: 18px;
}

.city:focus {
  border-color: var(--primary);
}

.state-province {
  color: var(--primary-dark);
  background-color: #0000;
  border-color: #65687533;
  border-radius: 0;
  height: auto;
  padding: 16px 18px;
  font-size: 18px;
}

.state-province:focus {
  border-color: var(--primary);
}

.zip-postal-code {
  color: var(--primary-dark);
  background-color: #0000;
  border-color: #65687533;
  border-radius: 0;
  height: auto;
  padding: 16px 18px;
  font-size: 18px;
}

.zip-postal-code:focus {
  border-color: var(--primary);
}

.country {
  color: var(--primary-dark);
  background-color: #0000;
  border-color: #65687533;
  border-radius: 0;
  height: auto;
  padding: 16px 18px;
  font-size: 18px;
}

.country:focus {
  border-color: var(--primary);
}

.card-number-2 {
  color: var(--primary-dark);
  background-color: #0000;
  border-color: #65687533;
  border-radius: 0;
  height: 54px;
  padding: 16px 18px;
  font-size: 18px;
}

.card-number-2:focus {
  border-color: var(--primary);
}

.card-number-2::placeholder {
  color: var(--primary-dark);
  font-size: 18px;
}

.expiration-date {
  color: var(--primary-dark);
  background-color: #0000;
  border-color: #65687533;
  border-radius: 0;
  height: 54px;
  padding: 16px 18px;
  font-size: 18px;
}

.expiration-date:focus {
  border-color: var(--primary);
}

.expiration-date::placeholder {
  color: var(--primary-dark);
  font-size: 18px;
}

.security-code {
  color: var(--primary-dark);
  background-color: #0000;
  border-color: #65687533;
  border-radius: 0;
  height: 54px;
  padding: 16px 18px;
  font-size: 18px;
}

.security-code:focus {
  border-color: var(--primary);
}

.security-code::placeholder {
  color: var(--primary-dark);
  font-size: 18px;
}

.billing-address-toggle {
  align-items: center;
}

.checkbox {
  margin-top: 0;
}

.checkbox-label {
  margin-bottom: 0;
}

.paypal-checkout-form, .order-confirmation {
  background-color: #0000;
  min-height: auto;
  padding-top: 160px;
  padding-bottom: 80px;
}

.details-product-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  width: 100%;
}

.lightbox-link-product {
  width: 100%;
}

.price-wrap {
  grid-column-gap: 5px;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.add-to-cart-product {
  margin-top: 20px;
}

.default-state-details {
  align-items: flex-end;
  display: flex;
}

.cart-quantity-details {
  background-color: #fff;
  border-color: #65687533;
  height: 59px;
}

.cart-quantity-details:focus {
  border-color: var(--primary);
}

.cart-quantity-details.mb-0 {
  border-radius: 0;
  margin-bottom: 0;
  padding-top: 11px;
  padding-bottom: 11px;
}

.out-of-stock-state {
  background-image: linear-gradient(145deg, var(--primary), var(--secondary-primary));
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 11px 29px;
}

.details-wrap {
  margin-top: 40px;
}

.field-label-product {
  color: var(--primary-dark);
  font-family: Kanit, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
}

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

.right-content-product {
  position: relative;
}

.about-product-wrap {
  position: sticky;
  top: 110px;
}

.collection-item-photo {
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.category-product {
  grid-column-gap: 5px;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

._404-heading {
  color: var(--primary);
  font-size: 120px;
}

.items-wrapper {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.order-item {
  justify-content: space-between;
}

.big-section-title {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.fs-20 {
  font-size: 20px;
}

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

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

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

.footer-brand-wrapper-2 {
  flex-direction: column;
  align-items: flex-start;
  width: 32%;
  display: flex;
}

.footer-brand-3 {
  color: #fff;
}

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

.footer-link-4 {
  color: var(--white);
  letter-spacing: 1px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  transition: all .3s;
}

.footer-link-4:hover {
  opacity: 1;
  color: var(--grey);
}

.footer-link-4.w--current {
  letter-spacing: 1px;
}

.footer-link-4.w--current:hover {
  color: var(--grey);
}

.footer-social-icons-wrapper-2 {
  grid-row-gap: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  display: flex;
}

.footer-logo {
  height: 100px;
}

.footer-logo.foot {
  height: 90px;
}

.footer-copyright {
  color: #fffc;
  text-align: left;
  width: 50%;
  font-size: 16px;
  display: inline;
}

.right-footer-copyright {
  justify-content: flex-end;
  width: 50%;
  display: flex;
}

.mail-footer {
  color: var(--white);
  margin-top: 20px;
  font-weight: 400;
  line-height: 1.4em;
  text-decoration: none;
  transition-property: color;
}

.mail-footer:hover {
  opacity: 1;
  color: var(--grey);
}

.mail-footer:active, .mail-footer:focus, .mail-footer:lang(en) {
  color: var(--white);
}

.footer-social-icon {
  background-color: var(--primary);
  color: #fff;
  border-radius: 50px;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-family: "Fa brands 400", sans-serif;
  font-size: 16px;
  line-height: 1em;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.footer-social-icon:hover {
  background-color: var(--primary-light);
  opacity: 1;
  color: var(--primary);
}

.footer-brand-description-2 {
  color: var(--white);
  text-align: left;
}

.footer-rights-3 {
  color: #ffffffb3;
  font-size: 16px;
}

.footer-copyright-link {
  color: #fffc;
  letter-spacing: .2px;
  margin-right: 5px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s;
  display: inline;
}

.footer-copyright-link:hover {
  opacity: 1;
  color: var(--grey);
}

.footer-wrapper-3 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 80px;
  display: flex;
}

.footer-bottom-wrapper-3 {
  z-index: 10;
  grid-row-gap: 5px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
  position: relative;
}

.bottom-background-footer {
  border-top: 1px solid #f0f5ff1a;
  width: 100%;
  height: 75px;
  position: absolute;
  inset: auto 0% 0%;
}

.logo-wrapper-footer {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
  display: flex;
}

.nav-menu-wrap {
  z-index: 10;
  grid-column-gap: 15px;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.cart-item {
  align-items: center;
}

.nav-dropdown-link {
  color: var(--dark);
  text-transform: capitalize;
  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;
}

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

.cart-button-2 {
  background-color: #0000;
  padding: 0 10px;
  transition-property: color;
}

.cart-button-2:hover {
  color: var(--dark);
}

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

.cart-button-2.dark-cart:hover {
  color: var(--primary);
}

.error-message-2 {
  color: #e53838;
  text-align: center;
  background-color: #0000;
  padding: 0;
  font-size: 14px;
  line-height: 1.2em;
}

.total-price {
  color: var(--primary);
  font-weight: 400;
}

.cart-quantity-2 {
  background-color: var(--dark);
  color: var(--white);
  margin-top: -14px;
  margin-left: 0;
  font-weight: 400;
  position: absolute;
  inset: 0% 0% auto auto;
}

.button-header-wrap {
  grid-column-gap: 10px;
  align-items: center;
  display: flex;
}

.button-header-wrap.nav {
  margin-left: 20px;
}

.menu-wrap-2 {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.cart-footer {
  border-top-color: #9aea7233;
}

.image-product {
  object-fit: cover;
  flex: none;
  height: 90px;
}

.nav-link {
  letter-spacing: 1px;
  padding: 10px 15px;
  font-size: 16px;
}

.nav-link:hover {
  opacity: 1;
  color: var(--primary);
}

.nav-link.w--current {
  color: #0e0e0e;
}

.empty-state {
  text-align: center;
  background-color: #0000;
  font-weight: 500;
}

.price-2 {
  margin-top: 5px;
  font-size: 16px;
}

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

.brand-tablet-2 {
  display: none;
}

.cart-header-2 {
  border-bottom-color: #9aea7233;
}

.apple-pay-2 {
  border-radius: 70px;
}

.cart-container-2 {
  background-color: var(--white);
}

.nav-dropdown-toggle {
  margin-left: 0;
  margin-right: 0;
  padding: 12px 15px;
  transition: opacity .3s;
}

.nav-dropdown-toggle:hover {
  opacity: .7;
}

.nav-dropdown-toggle.w--open {
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav-dropdown-toggle.link {
  color: #000;
  transition-property: none;
}

.nav-dropdown-toggle.link:hover {
  opacity: 100;
  color: var(--white);
}

.nav-item-title-2 {
  color: #000;
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 1.2em;
  transition: none;
}

.nav-item-title-2:hover {
  color: var(--white);
}

.nav-item-title-2._2 {
  color: var(--primary-dark);
}

.nav-item-title-2._2:hover {
  color: var(--red);
}

.nav-dropdown-column-2 {
  width: 100%;
}

.button-header-tablet {
  display: none;
}

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

.nav-dropdown-list-2 {
  background-color: #fff;
  border: 1px solid #9aea72;
  border-radius: 10px;
  width: 200px;
  margin-top: -5px;
  padding: 15px 20px;
}

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

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

.nav-dropdown-list-2.megamenu.w--open {
  width: 500px;
  margin-top: 0;
  padding: 18px;
  display: flex;
  left: -130px;
}

.remove-button {
  color: var(--primary-dark);
  margin-top: 10px;
  font-size: 16px;
}

.logo {
  height: 90px;
}

.img-banner-home-1 {
  z-index: 2;
  background-image: linear-gradient(#1e344b99, #ffffff1a);
  width: 43%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.work-number {
  background-color: var(--white);
  color: var(--primary);
  -webkit-text-stroke-width: 1.5px;
  border: 1px solid #afafaf4d;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1em;
  display: flex;
  box-shadow: 0 1px 5px #0003;
}

.arrow {
  font-family: "Fa solid 900", sans-serif;
  font-size: 16px;
}

.arrow.small-arrow {
  font-size: 14px;
}

._w-95 {
  width: 95%;
}

.name-service {
  transition: color .3s;
}

.name-service:hover {
  color: var(--primary);
}

.name-service.s {
  font-size: 24px;
}

.bg-header {
  background-color: var(--white);
  opacity: 0;
  position: absolute;
  inset: 0%;
  box-shadow: 0 5px 12px #10182826;
}

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

.blog-name.s.a {
  font-size: 28px;
  line-height: 1.1em;
}

.blog-name.w {
  font-size: 20px;
  line-height: 1.3em;
}

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

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

.no-opacity:hover {
  opacity: 1;
}

.order-wrap {
  flex: 0 auto;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.sticky-order-block {
  top: 110px;
}

.name-product:hover {
  color: var(--primary);
}

.details-heading {
  font-size: 56px;
}

.cart-quantity-3 {
  border-color: var(--primary-light);
  background-color: var(--white);
  border-radius: 0;
}

.cart-quantity-3:focus {
  border-color: var(--primary);
}

.mt-20 {
  margin-top: 20px;
}

.position {
  color: var(--dark-gray);
  margin-top: 5px;
  margin-bottom: 5px;
}

.name-details {
  font-size: 56px;
}

.details-team-wrapper {
  grid-column-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
}

.contact {
  color: var(--primary);
  font-weight: 500;
}

.team-member-details-img {
  border: 1px solid var(--primary-light);
  object-fit: cover;
  object-position: 50% 10%;
  width: 100%;
  height: 500px;
}

.contact-link {
  color: var(--primary-dark);
  text-transform: none;
  font-size: 18px;
  line-height: 1em;
}

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

.contact-team-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.line-top-border-wrapper {
  grid-column-gap: 20px;
  border-top: 1px solid var(--primary);
  align-items: center;
  margin-top: 60px;
  padding-top: 40px;
  display: flex;
}

.primary-text {
  color: var(--primary-dark);
  font-size: 30px;
}

.primary-text.s.a {
  font-size: 30px;
  line-height: 1.3em;
}

.about-big-number {
  color: var(--primary);
  text-align: left;
  margin-bottom: 0;
  margin-right: 20px;
  font-size: 62px;
  line-height: 1;
}

.about-2-counter-grid {
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  place-items: center;
  margin-bottom: 10px;
}

.image-wrap {
  align-items: center;
  width: 100%;
  height: 520px;
  display: flex;
  position: relative;
}

.team-img {
  object-fit: cover;
  object-position: 50% 30%;
  width: 100%;
  height: 100%;
}

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

.grid-2-column.why-choose-us {
  grid-column-gap: 60px;
  grid-template-columns: .75fr .75fr;
  align-items: end;
}

.about-2-counter-item {
  grid-column-gap: 30px;
  grid-row-gap: 5px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: .3fr 1.7fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 10px;
  display: grid;
}

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

.flex-vertical.row-15 {
  grid-row-gap: 5px;
  align-items: flex-start;
}

.find-number-inner {
  background-color: var(--primary);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: flex;
}

.header-left {
  display: none;
}

.step {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.process-img {
  object-fit: cover;
  width: 100%;
  height: 400px;
  margin-top: 20px;
}

.process-img.mobile {
  display: none;
}

.find-number-wrapper {
  background-color: #fff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-left: -32px;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.right {
  border-left: 2px solid #6468744d;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  width: 52%;
  padding-bottom: 40px;
  padding-left: 80px;
  display: flex;
  position: relative;
}

.right.bot {
  border-left-style: none;
}

.number-process {
  color: #fff;
}

.process-wrapper {
  width: 100%;
  position: relative;
}

.content-left {
  display: none;
}

.left {
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  margin-right: 80px;
  padding-bottom: 40px;
  display: flex;
}

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

.collection-list-wrapper-product-mobile {
  display: none;
}

.hire-popup {
  z-index: 1000;
  color: #fff;
  text-transform: none;
  background-color: #1c276d;
  border-radius: 4px;
  width: 100%;
  max-width: 297px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2em;
  position: fixed;
  inset: auto auto 5px 5px;
}

.hire-popup-wrap {
  grid-row-gap: 10px;
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  flex-direction: column;
  padding: 15px;
  display: flex;
  position: relative;
}

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

.hire-paragraph {
  max-width: 93%;
  font-size: 12px;
}

.hire-link {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  border-bottom: 0 #0000;
  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;
  border-bottom-color: #0000;
}

.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: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2em;
}

.hire-buttons:hover {
  color: #fff;
  border-color: #fff;
}

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

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

.more-templates {
  z-index: 1000;
  color: #000;
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-color: #fff;
  background-image: none;
  background-clip: border-box;
  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;
  transition-property: none;
  display: flex;
  position: fixed;
  inset: auto 12px 48px auto;
}

.more-templates:hover {
  opacity: 1;
  color: #000;
  border-color: #e4e4e4;
}

.buy-now-webflow-icon {
  margin-right: 8px;
}

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

.buy-this-template:hover {
  opacity: 1;
  color: #000;
  border-color: #e4e4e4;
}

.paragraph, .paragraph-2 {
  color: var(--primary-dark);
}

.paragraph-3 {
  color: #000;
  margin-bottom: 40px;
}

.heading {
  color: #000;
  margin-bottom: 20px;
  font-size: 60px;
  font-weight: 400;
}

.text-span-2 {
  font-size: 25px;
  font-weight: 400;
}

.list-item {
  line-height: 1.6em;
}

.heading-2, .term {
  font-size: 30px;
}

.list-item-2 {
  color: #000;
  font-family: "Aspekta 300", sans-serif;
  font-size: 30px;
}

.paragraph-4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Aspekta 300", sans-serif;
  font-size: 20px;
  line-height: 1.6em;
}

.list, .list-2 {
  color: var(--primary-dark);
  margin-bottom: 0;
  padding-left: 30px;
  list-style-type: disc;
}

.list-3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
  padding-left: 30px;
  font-family: "Aspekta 300", sans-serif;
  font-size: 26px;
  list-style-type: decimal;
}

.heading-3 {
  color: #000;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Mulataddis, sans-serif;
  font-size: 60px;
}

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

.div-block._2 {
  margin-bottom: 20px;
}

.heading-4 {
  color: #000;
  margin-top: 0;
  font-size: 60px;
}

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

.heading-6 {
  width: 275px;
}

.link-2 {
  color: #fffc;
}

.link-2.w--current {
  font-size: 16px;
}

.paragraph-5 {
  font-size: 18px;
  font-weight: 400;
}

.heading-7 {
  font-size: 25px;
}

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

.paragraph-6 {
  color: var(--primary-dark);
  letter-spacing: 1px;
  line-height: 1.2em;
}

.paragraph-7, .paragraph-8, .paragraph-9 {
  color: var(--primary-dark);
  letter-spacing: 1px;
}

.paragraph-10 {
  clear: left;
  color: var(--primary-dark);
  letter-spacing: 1px;
}

.faq-section {
  padding-top: 100px;
  padding-bottom: 0;
  position: relative;
}

.container {
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
  display: block;
  position: relative;
}

.container.faq-container {
  background-color: #0000;
  border-radius: 5px;
  max-width: 1200px;
  padding-top: 0;
  padding-bottom: 60px;
}

.faq-plus {
  background-color: var(--red);
  border-radius: 3px;
  width: 100%;
  height: 5px;
}

.faq-answer {
  border-bottom: 1px solid #2d3e501f;
  padding-left: 45px;
  overflow: hidden;
}

.faq-answer.last-faq-answer {
  border-bottom-width: 0;
}

.faq-answer-text {
  color: var(--primary-dark);
  margin-bottom: 30px;
  font-size: 18px;
}

.faq-plus-wrap {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: 25px;
  display: flex;
  position: relative;
}

.link {
  color: #2aa8ff;
  font-weight: 600;
}

.faq-q-text {
  color: var(--primary-dark);
  font-family: Mulataddis, sans-serif;
  font-size: 25px;
  font-weight: 400;
}

.full-texture {
  z-index: 0;
  opacity: .2;
  background-image: url('../images/wavy.svg'), linear-gradient(to top, #0000, #fff), url('../images/bg-line.svg'), url('../images/Path-5.svg');
  background-position: 50% 101%, 0 0, 0 0, 100%;
  background-repeat: no-repeat, repeat, repeat, repeat;
  background-size: contain, auto, 10px, 6000px;
  position: absolute;
  inset: 0;
}

.faq-plus-l {
  background-color: var(--red);
  border-radius: 3px;
  width: 5px;
  height: 100%;
  position: absolute;
}

.faq-question {
  cursor: pointer;
  align-items: center;
  height: 90px;
  font-size: 22px;
  font-weight: 800;
  display: flex;
}

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

.pricing-h1.faq-h2 {
  margin-bottom: 20px;
}

.paragraph-11 {
  text-align: center;
  margin-bottom: 40px;
}

.text-span-3, .text-span-4 {
  font-size: 22px;
  line-height: 1.7em;
}

.div-block-6 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: center;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.div-block-6._2 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  margin-top: 60px;
  margin-bottom: 20px;
}

.image {
  width: 100%;
  height: 150px;
}

.image-2, .image-3 {
  width: auto;
  height: 100%;
}

.link-3 {
  text-decoration: underline;
}

.size {
  width: 220.406px;
  height: 220.406px;
}

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

.tooltip {
  background-color: #fff;
  border: 1px solid #fff0;
  border-radius: .25rem;
  flex-flow: column;
  padding: .3125rem .75rem;
  display: flex;
  position: relative;
}

.tooltip.long {
  width: 100%;
  max-width: 15rem;
}

.tooltip.long.brand-shadow-16._14 {
  max-width: 10rem;
  padding-left: .25rem;
  padding-right: .25rem;
  display: none;
  position: absolute;
  top: 54px;
  left: 609px;
}

.tooltip-arrow-svg {
  justify-content: center;
  align-items: center;
  width: .375rem;
  height: .75rem;
  display: flex;
  position: absolute;
  inset: .5rem auto auto -.4rem;
  transform: rotate(0);
}

.tooltip-arrow-svg.top-centered {
  top: -.5rem;
  left: 50%;
  right: 50%;
  transform: rotate(90deg);
}

.caption-1 {
  text-align: center;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.33;
}

.div-block-7 {
  flex-flow: column;
  display: flex;
}

.heading-9 {
  color: #000;
  font-size: 60px;
}

.s {
  font-size: 24px;
}

.s.v {
  font-size: 28px;
  line-height: 1.3em;
}

.div-block-8 {
  width: 50%;
}

.div-block-8.x {
  width: 100%;
}

.field-label, .heading-10 {
  color: #000;
}

.bold-text-8 {
  font-size: 22px;
}

.heading-11 {
  color: #1e344b;
}

.heading-12 {
  color: #000;
  font-size: 60px;
}

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

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 70px;
  }

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

  .section.banner, .section.changelog-banner {
    padding-top: 180px;
  }

  .section.banner-faq {
    padding-top: 240px;
    padding-bottom: 160px;
  }

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

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

  .section.pt--30 {
    padding-bottom: 90px;
  }

  .section.details-banner {
    padding-top: 180px;
  }

  .spacing-system-column {
    padding-right: 30px;
  }

  .light-gray-style-guide {
    background-color: var(--light);
  }

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

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

  .blog-grid-collection-list {
    grid-column-gap: 30px;
  }

  .blog-grid-image {
    height: 320px;
  }

  .blog-grid-item {
    width: 31.62%;
  }

  .blog-template-wrapper {
    width: 72%;
  }

  .team-card-image {
    border-color: var(--white);
    width: 95%;
  }

  .team-grid-large {
    grid-column-gap: 30px;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .style-guide-button-wrapper {
    width: auto;
  }

  .pricing-plans-wrapper {
    grid-column-gap: 30px;
  }

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

  .contacts-form-wrapper {
    min-height: 550px;
  }

  .white-text.paragraph-text {
    font-family: "Aspekta 300", sans-serif;
  }

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

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

  .accordion-wrap-one-column {
    width: 55%;
  }

  .service-details-content, .accordion-wrapper-one-column {
    grid-column-gap: 60px;
  }

  .about-2-progress-bar-active-element {
    margin-left: 20px;
  }

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

  .circle-counter {
    width: 33.33%;
    padding-left: 20px;
    padding-right: 20px;
  }

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

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

  .paragraph-gray-style-guide {
    background-color: var(--dark);
  }

  .banner-home-1 {
    padding-bottom: 120px;
  }

  .img-banner-home {
    width: 40%;
  }

  .background-banner-home-1 {
    width: 61%;
  }

  .banner-wrapper-content {
    width: 51%;
  }

  .banner-wrapper-content.home-3 {
    width: 46%;
  }

  .paragraph-banner-home-1 {
    width: 98%;
  }

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

  ._2-column-content {
    grid-column-gap: 60px;
  }

  .left-content {
    width: 93.5%;
  }

  .about-us-wrapper {
    grid-column-gap: 60px;
  }

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

  .info-wrapper {
    grid-column-gap: 60px;
    grid-template-rows: auto;
  }

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

  .left-info-wrap {
    width: 90%;
  }

  .left-info-wrap.team-info {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .right-info-wrap {
    width: 90%;
  }

  .primary-dark.big-font-size {
    font-size: 20px;
  }

  .info {
    grid-column-gap: 30px;
  }

  .content-title {
    grid-column-gap: 60px;
  }

  .right-content {
    width: 60%;
  }

  .right-content.testimonials-home {
    width: 65%;
  }

  .process {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .process.first-block {
    padding-right: 40px;
  }

  .left-arrow-review {
    left: -83%;
  }

  .left-arrow-review.right-position {
    right: -63%;
  }

  .right-arrow-review {
    left: -69%;
  }

  .right-arrow-review.right-position {
    right: -73%;
  }

  .slider-review {
    height: auto;
  }

  .review-text {
    width: 90%;
  }

  .support-services-wrapper {
    grid-column-gap: 60px;
  }

  .left-support-services {
    width: 90%;
  }

  .counter-wrap {
    padding-left: 60px;
  }

  .advantages-wrap {
    width: 80%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .advantages-wrap.center {
    min-height: 190px;
    margin-left: 5%;
  }

  .advantages-wrapper {
    grid-column-gap: 60px;
  }

  .background-1 {
    bottom: -68%;
  }

  .info-text-wrapper {
    padding: 20px 30px;
  }

  .service-paragraph {
    width: 85%;
  }

  .header-banner {
    width: 90%;
    font-size: 60px;
  }

  .banner-home-2-wrapper {
    width: 90%;
  }

  .logo-partners-banner {
    margin-left: auto;
    margin-right: auto;
  }

  .logo-5 {
    width: auto;
  }

  .paragraph-banner-home-3 {
    width: 98%;
  }

  .banner-home-3-wrapper {
    grid-column-gap: 60px;
  }

  .info-video-wrapper {
    width: 70%;
  }

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

  .about-content-wrap {
    width: 60%;
  }

  .paragraph-about {
    width: 90%;
  }

  .absolute-title {
    padding: 10px 30px;
    bottom: -20px;
  }

  .how-work-wrapper {
    grid-column-gap: 60px;
    grid-template-columns: 1fr 1fr;
  }

  .service-wrapper {
    padding: 30px 40px 40px;
  }

  .about-users {
    bottom: -30px;
  }

  .bg-block {
    width: 98%;
  }

  .cell-testimonails {
    padding: 20px 30px;
  }

  .testimonials-img {
    border-radius: 100px;
  }

  .testimonails-wrapper {
    align-items: center;
  }

  .blog-details-heading {
    font-size: 56px;
  }

  .blog-details-img-banner {
    object-position: 50% 10%;
  }

  .blog-details-wrap {
    grid-column-gap: 60px;
  }

  .recent-post-wrap {
    width: 36%;
  }

  .recent-link-img {
    width: 35%;
    height: 125px;
  }

  .link-portfolio {
    display: none;
  }

  .link-block-3 {
    -webkit-text-fill-color: inherit;
    background-image: none;
    background-clip: border-box;
  }

  .content-product {
    min-height: auto;
  }

  .link-block-product-img-list {
    overflow: hidden;
  }

  .checkout-form, .paypal-checkout-form, .order-confirmation {
    padding-top: 180px;
    padding-bottom: 120px;
  }

  .details-product-wrapper {
    grid-column-gap: 60px;
  }

  .footer-dark {
    padding-top: 80px;
    padding-bottom: 30px;
  }

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

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

  .bottom-background-footer {
    height: 90px;
  }

  .nav-menu-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .cart-button-2 {
    padding-right: 30px;
  }

  .cart-quantity-2 {
    margin-right: 20px;
  }

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

  .empty-state {
    text-align: center;
    background-color: #0000;
    font-size: 18px;
  }

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

  .nav-dropdown-toggle.w--open {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav-menu {
    justify-content: flex-end;
    margin-right: 10px;
    display: flex;
  }

  .nav-dropdown-list-2.w--open {
    border-color: var(--white);
    border-radius: 0;
  }

  .nav-dropdown-list-2.megamenu.w--open {
    padding: 18px 18px 15px;
  }

  .img-banner-home-1 {
    width: 40%;
  }

  ._w-95 {
    width: 90%;
  }

  .details-heading {
    font-size: 60px;
  }

  .details-team-wrapper {
    grid-column-gap: 80px;
  }

  .team-member-details-img {
    height: 550px;
  }

  .grid-2-column {
    grid-template-columns: 750px 1fr;
  }

  .grid-2-column.why-choose-us {
    grid-template-columns: 1fr .75fr;
  }

  .about-2-counter-item {
    grid-template-columns: .25fr 1fr;
  }

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

  .right, .left {
    padding-bottom: 40px;
  }
}

@media screen and (min-width: 1440px) {
  h1 {
    margin-bottom: 10px;
    font-size: 76px;
  }

  h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
  }

  .about-2-progress-bar-active-element {
    margin-left: 70px;
  }

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

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

  .img-banner-home {
    width: 41%;
  }

  .background-banner-home-1 {
    width: 60%;
  }

  .banner-wrapper-content {
    width: 52%;
  }

  .background-1 {
    bottom: -72%;
  }

  .top-right-radius-background, .botton-right-radius-backgrouns, .top-left-radius-background, .grey-background {
    width: 98%;
  }

  .img-banner-home-1 {
    width: 41%;
  }

  .about-big-number {
    font-size: 64px;
  }

  .grid-2-column {
    grid-template-columns: 2.7fr 1fr;
  }

  .faq-answer-text {
    font-size: 18px;
  }

  .pricing-h1.faq-h2 {
    font-size: 56px;
  }

  .bold-text, .bold-text-2, .bold-text-3, .bold-text-4, .bold-text-5, .bold-text-6, .bold-text-7 {
    font-size: 26px;
  }
}

@media screen and (min-width: 1920px) {
  .primary-button.white-borders.w--current {
    font-size: 22px;
  }

  .about-2-progress-bar-wrapper {
    max-width: 360px;
  }

  .about-2-progress-bar-active-element {
    margin-left: 80px;
  }

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

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

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

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

  .rich-text-style {
    font-size: 22px;
  }

  .img-banner-home {
    width: 43%;
  }

  .img-banner-home.home-3 {
    height: 540px;
  }

  .background-banner-home-1 {
    width: 58%;
  }

  .banner-wrapper-content.home-3 {
    width: 47%;
  }

  .info-wrapper {
    grid-column-gap: 65px;
  }

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

  .background-2 {
    left: -3%;
  }

  .banner-home-2 {
    height: 70vh;
    min-height: 0;
    padding-top: 140px;
  }

  .header-banner {
    font-size: 70px;
  }

  .banner-home-2-wrapper {
    width: 95%;
  }

  .banner-img-wrapper {
    width: 50%;
  }

  .paragraph-banner.dark-paragrap {
    font-size: 22px;
  }

  .paragraph-about {
    width: 100%;
  }

  .absolute-title {
    bottom: -55px;
  }

  .blog-details-heading {
    font-size: 58px;
  }

  .footer-link-4 {
    font-size: 22px;
  }

  .footer-copyright {
    font-size: 18px;
  }

  .mail-footer {
    font-size: 22px;
  }

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

  .footer-rights-3, .footer-copyright-link {
    font-size: 18px;
  }

  .nav-item-title-2 {
    font-size: 22px;
  }

  .nav-item-title-2._2:hover {
    color: var(--red);
  }

  .logo {
    height: 110px;
  }

  .img-banner-home-1 {
    width: 43%;
  }

  .name-service {
    font-size: 30px;
  }

  .name-details {
    font-size: 60px;
  }

  .team-member-details-img {
    height: 570px;
  }

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

  .grid-2-column.why-choose-us {
    grid-template-columns: 1fr .75fr;
  }

  .about-2-counter-item {
    grid-template-columns: .5fr 1fr;
  }

  .heading-6 {
    font-size: 24px;
  }

  .faq-answer-text {
    font-size: 18px;
  }

  .tooltip.long.brand-shadow-16._14 {
    top: 68px;
    left: 549px;
  }
}

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

  h2 {
    font-size: 46px;
  }

  h3 {
    font-size: 32px;
  }

  blockquote {
    font-size: 28px;
  }

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

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

  .section.changelog-banner {
    padding-top: 140px;
  }

  .section.blog-grid-banner {
    padding-top: 140px;
    padding-bottom: 40px;
  }

  .section.banner-our-team {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .section.banner-career {
    padding-top: 140px;
    padding-bottom: 40px;
  }

  .section.pricing-banner, .section.banner-faq, .section.banner-customers, .section.banner-testimonials {
    padding-top: 140px;
    padding-bottom: 80px;
  }

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

  .section.portfolio-grid-banner {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .section.details-banner {
    padding-top: 140px;
  }

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

  .section.blog {
    padding-left: 100px;
    padding-right: 100px;
  }

  .base-container {
    max-width: 100%;
  }

  .grid-system {
    width: 100%;
  }

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

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

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

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

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

  .headings-typography-wrapper, .style-guide-body-wrapper {
    width: 100%;
  }

  .primary-button {
    display: block;
  }

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

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

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

  .nav-container {
    flex-direction: row;
    padding: 15px;
  }

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

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

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

  .nav-dropdown-icon {
    margin-right: 1.5px;
    display: block;
    inset: 0% 0 0% auto;
  }

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

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

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

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

  .pages-banner {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .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-grid-collection-list {
    column-count: 2;
  }

  .blog-grid-image {
    height: 450px;
  }

  .blog-grid-content-wrapper {
    height: auto;
  }

  .blog-grid-item, .blog-template-wrapper {
    width: 100%;
  }

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

  .team-card {
    width: 47%;
  }

  .team-grid-large {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

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

  .free-trial-wrapper {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

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

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

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

  .contacts-form-wrapper {
    width: 90%;
    margin-left: 0;
    padding: 30px;
  }

  .white-text, .white-text.paragraph-text {
    margin-bottom: 20px;
  }

  .white-text.paragraph-text.cta {
    text-align: center;
    margin-bottom: 40px;
  }

  .white-text.cta {
    text-align: center;
    margin-bottom: 20px;
  }

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

  .search-section {
    padding-top: 140px;
  }

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

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

  .accordion-wrap-one-column, .service-details-sidebar-wrapper {
    width: 100%;
  }

  .service-details-content {
    flex-flow: column-reverse;
  }

  .accordion-wrapper-one-column {
    grid-row-gap: 60px;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .headings-container {
    flex-wrap: wrap;
  }

  .service-list-banner {
    padding-top: 180px;
    padding-bottom: 60px;
  }

  .primary-button-white:hover {
    opacity: 1;
  }

  .style-guide-content-wrapper {
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

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

  .project-template-info {
    margin-left: 40px;
    padding-left: 0;
  }

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

  .content {
    margin-bottom: 0;
  }

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

  .circle-counter {
    width: 50%;
  }

  .circle-counter.tabler-w-big, .about-4-team-slide {
    width: 100%;
  }

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

  .rich-text-style h2 {
    font-size: 36px;
  }

  .rich-text-style h3 {
    font-size: 32px;
  }

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

  .image-burger {
    margin-bottom: 4px;
    transition: opacity .2s;
  }

  .image-burger.dark-burger {
    filter: none;
  }

  .brand {
    z-index: 1;
    position: relative;
  }

  .brand.absolute {
    left: 0;
  }

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

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

  .banner-home-1 {
    min-height: auto;
    padding-top: 180px;
  }

  .img-banner-home {
    object-position: 45% 50%;
    width: 40%;
  }

  .img-banner-home.home-3 {
    inset: auto 0% 0%;
  }

  .background-banner-home-1 {
    width: 60%;
  }

  .banner-wrapper-content {
    width: 60%;
    padding-right: 10px;
  }

  .banner-wrapper-content.home-3 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 85%;
    display: flex;
  }

  .button-wrap {
    margin-top: 20px;
    margin-right: 0;
  }

  .button-wrap.cta {
    margin-top: 0;
    margin-right: 0;
  }

  .title-center {
    max-width: 480px;
  }

  .collection-list-services {
    grid-column-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .collection-item-services {
    width: auto;
  }

  ._2-column-content {
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
  }

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

  .about-us-wrapper {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .woman {
    height: 450px;
  }

  .info-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    grid-template-columns: 1fr;
    place-items: center;
  }

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

  .left-info-wrap {
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .right-info-wrap {
    text-align: center;
    align-items: center;
    width: 100%;
  }

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

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

  .content-title.testimonials-home {
    grid-row-gap: 40px;
  }

  .content-title.testimonials-about {
    grid-row-gap: 80px;
    flex-direction: column-reverse;
  }

  .content-title.alighn-cener {
    justify-content: flex-start;
    align-items: center;
  }

  .title {
    width: auto;
    max-width: 480px;
  }

  .right-content, .right-content.testimonials-home {
    width: 85%;
  }

  .work-process-wrapper {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .process {
    padding-right: 20px;
  }

  .process.first-block {
    padding-right: 30px;
  }

  .left-arrow-review, .left-arrow-review.right-position {
    inset: -70px auto auto 250px;
  }

  .right-arrow-review {
    inset: -70px 250px auto auto;
  }

  .right-arrow-review.right-position {
    top: -70px;
    right: 250px;
  }

  .support-services-wrapper {
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .collection-list-wrapper-support-services {
    width: 100%;
    margin-top: 0;
  }

  .left-support-services {
    text-align: center;
  }

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

  .counter-wrap {
    border-style: none;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .advantages-wrapper {
    flex-flow: column-reverse;
    grid-template-columns: 1fr;
    display: flex;
  }

  .background-1 {
    bottom: -56%;
  }

  .info-text-wrapper {
    background-position: 50% 0;
  }

  .banner-home-2 {
    min-height: auto;
    padding-top: 200px;
    padding-bottom: 100px;
  }

  .header-banner {
    width: 100%;
  }

  .logo-partners-banner {
    max-width: 100%;
    margin-top: 80px;
    margin-left: 0;
    margin-right: 0;
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
    position: static;
  }

  .logo-wrapper, .loop-logo {
    width: auto;
  }

  .banner-home-3 {
    flex-direction: column;
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .banner-home-3-wrapper {
    grid-row-gap: 60px;
    text-align: center;
    flex-direction: column;
  }

  .banner-img-wrapper {
    width: 85%;
  }

  .logo-loop {
    max-width: 100%;
  }

  .section-background-image {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .info-video-wrapper {
    width: 95%;
  }

  .about-us-wrap {
    grid-row-gap: 60px;
    flex-flow: column;
  }

  .about-content-wrap {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-right: 0;
  }

  .img-content-wrap {
    width: 80%;
  }

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

  .collection-list-services-about {
    border-bottom: 0 #0000;
    display: flex;
  }

  .collection-item-services-about {
    border-bottom: 1px solid #6568754d;
  }

  .absolute-title {
    padding: 10px 20px;
  }

  .how-work-wrapper {
    grid-row-gap: 60px;
    flex-direction: column-reverse;
    grid-template-columns: 1fr;
    display: flex;
  }

  .content-relative-img {
    width: 80%;
    margin-bottom: 20px;
  }

  .about-users {
    bottom: -25px;
  }

  .grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    display: flex;
  }

  .details-blog-section {
    flex-direction: column;
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .title-details-banner {
    max-width: 640px;
  }

  .blog-details-wrap {
    grid-row-gap: 60px;
    flex-direction: column;
  }

  .recent-post-wrap {
    width: 100%;
  }

  .sidebar-recent-posts {
    margin-bottom: 0;
    position: static;
  }

  .sidebar-recent-posts-wrapper {
    column-count: 2;
    column-gap: 20px;
  }

  .sidebar-recent-post-item {
    margin-bottom: 30px;
  }

  .recent-link-img {
    height: auto;
  }

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

  .info-service-wrap {
    width: 100%;
  }

  .service-img-rich-text {
    width: 100%;
    height: 400px;
  }

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

  .project-details-banner {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .details-wrapper {
    grid-row-gap: 50px;
    text-align: center;
    flex-direction: column;
  }

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

  .content-product {
    min-height: auto;
  }

  .checkout-form {
    padding-top: 140px;
  }

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

  .paypal-checkout-form, .order-confirmation {
    padding-top: 140px;
  }

  .checkout-price {
    margin-top: 7px;
    margin-left: 16px;
  }

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

  .footer-brand-wrapper-2 {
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
  }

  .footer-brand-3 {
    margin-bottom: 10px;
  }

  .footer-logo.foot {
    height: 80px;
  }

  .footer-copyright {
    text-align: center;
    width: 100%;
  }

  .right-footer-copyright {
    justify-content: center;
    width: 100%;
  }

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

  .footer-wrapper-3 {
    grid-column-gap: 140px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
  }

  .footer-bottom-wrapper-3 {
    text-align: left;
    flex-direction: column;
    justify-content: center;
  }

  .bottom-background-footer {
    height: 100px;
  }

  .logo-wrapper-footer {
    justify-content: center;
    margin-bottom: 0;
  }

  .nav-menu-wrap {
    z-index: 1;
  }

  .nav-dropdown-link {
    color: var(--dark);
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 400;
  }

  .cart-button-2 {
    justify-content: flex-end;
  }

  .cart {
    flex: 1;
  }

  .button-header-wrap {
    display: none;
  }

  .button-header-wrap.nav {
    margin-top: 10px;
    margin-left: 0;
    display: flex;
  }

  .menu-wrap-2 {
    z-index: 9999;
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    position: relative;
  }

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

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

  .brand-tablet-2 {
    z-index: 10;
    display: flex;
  }

  .tablet-menu-2 {
    z-index: 11;
    background-color: var(--white);
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding-top: 20px;
    padding-bottom: 15px;
    padding-left: 15px;
    display: flex;
    position: relative;
  }

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

  .nav-item-title-2 {
    color: var(--primary-dark);
    margin-top: 0;
    margin-bottom: 0;
  }

  .nav-item-title-2:hover {
    color: var(--red);
  }

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

  .button-header-tablet {
    width: 100%;
    margin-top: 30px;
    display: block;
  }

  .nav-menu {
    z-index: 20;
    background-color: var(--white);
    flex-direction: column;
    width: 320px;
    position: fixed;
    inset: 0% auto 0% 0%;
    box-shadow: 0 2px 5px #0003;
  }

  .nav-dropdown-list-2 {
    border-style: none;
    flex-direction: column;
    width: auto;
    margin-top: 0;
    padding: 0 40px 0 20px;
    display: flex;
    position: static;
  }

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

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

  .nav-dropdown-list-2.megamenu.w--open {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .logo {
    height: 80px;
  }

  .logo._23 {
    height: 50px;
  }

  .img-banner-home-1 {
    width: 40%;
  }

  .order-wrap {
    flex-direction: column;
  }

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

  .name-details {
    font-size: 48px;
  }

  .details-team-wrapper {
    grid-column-gap: 40px;
  }

  .team-member-details-img {
    height: 100%;
  }

  .line-top-border-wrapper {
    margin-top: 40px;
    padding-top: 30px;
  }

  .about-2-counter-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 0;
  }

  .image-wrap {
    height: 400px;
  }

  .grid-2-column.why-choose-us {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .about-2-counter-item {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .flex-vertical {
    max-width: 572px;
  }

  .flex-vertical.row-15 {
    max-width: 100%;
  }

  .process-img {
    height: 320px;
  }

  .right {
    padding-bottom: 60px;
    padding-left: 60px;
  }

  .left {
    margin-right: 40px;
    padding-bottom: 60px;
  }

  .hire-popup {
    max-width: 380px;
  }

  .hire-popup-wrap {
    display: none;
  }

  .list-item-2 {
    text-align: left;
  }

  .paragraph-4 {
    text-align: left;
    padding-left: 0;
  }

  .heading-3 {
    font-size: 55px;
  }

  .div-block {
    width: 100%;
  }

  .heading-4 {
    font-size: 55px;
  }

  .div-block-2, .div-block-3 {
    width: 100%;
  }

  .div-block-6 {
    flex-flow: wrap;
  }

  .image {
    width: 100%;
  }

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

  .collection-list {
    flex-flow: column;
    display: flex;
  }
}

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 26px;
  }

  blockquote {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
    font-size: 26px;
  }

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

  .section.banner {
    padding-top: 140px;
  }

  .section.changelog-banner {
    padding-top: 120px;
  }

  .section.blog-grid-banner {
    padding-top: 140px;
    padding-bottom: 40px;
  }

  .section.banner-our-team {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .section.banner-career {
    padding-top: 140px;
    padding-bottom: 40px;
  }

  .section.pricing-banner, .section.banner-faq, .section.banner-customers, .section.banner-testimonials {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .section.about-us-banner {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .section.portfolio-grid-banner {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .section.without-top-spacing {
    padding-top: 60px;
  }

  .section.pt--30 {
    padding-bottom: 30px;
  }

  .section.details-banner {
    background-position: 50% 0;
    background-size: auto;
    padding-top: 120px;
  }

  .section.blog {
    padding-left: 40px;
    padding-right: 40px;
  }

  .grid-system-wrapper {
    flex-direction: row;
    margin-top: 15px;
  }

  .grid-system {
    border-left: 1px solid #7c7c7c;
    flex-direction: column;
  }

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

  .grid-description {
    border-top: 1px solid #a7a7a7;
    border-bottom-style: none;
    border-right-width: 1px;
    align-items: center;
    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-system-column {
    margin-top: 20px;
  }

  .spacing-wrapper-mobile {
    margin-top: 30px;
  }

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

  .spacing-columns {
    margin-top: 0;
  }

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

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

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

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

  .colors-container {
    margin-top: 20px;
  }

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

  .style-guide-body-wrapper, .primary-button.full-width-mobile, .primary-button.search-button {
    width: 100%;
  }

  .style-guide-div {
    grid-row-gap: 40px;
  }

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

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

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

  .grid-header {
    width: 100%;
    margin-top: 20px;
  }

  .link-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .pages-banner {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .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-grid-collection-list {
    column-count: 1;
  }

  .blog-grid-image {
    height: 400px;
  }

  .blog-grid-content-wrapper {
    min-height: 0;
  }

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

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

  .team-card {
    width: 100%;
  }

  .team-card-image {
    height: 650px;
  }

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

  .style-guide-buttons-wrapper {
    flex-wrap: wrap;
    margin-top: 35px;
  }

  .style-guide-button-wrapper.last-child {
    margin-bottom: 0;
  }

  .pricing-plans-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .pricing-plan-item {
    max-width: none;
  }

  .contacts-form-wrapper {
    width: 100%;
    padding: 20px;
  }

  .white-text.quore {
    margin-bottom: 20px;
  }

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

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

  .service-details-content-wrapper {
    width: 100%;
    margin-right: 0;
  }

  .service-details-sidebar-wrapper {
    width: 100%;
    margin-top: 20px;
    position: static;
  }

  .service-details-content {
    flex-wrap: wrap-reverse;
  }

  .accordion-wrapper-one-column {
    grid-row-gap: 40px;
    width: 100%;
  }

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

  .service-list-banner {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

  .project-template-content {
    width: 100%;
  }

  .project-template-info {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: center;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    place-items: center;
    width: 100%;
    margin-top: 30px;
    margin-left: 0;
    display: grid;
  }

  .project-template-content-wrapper {
    flex-wrap: wrap;
  }

  .project-template-info-wrap {
    margin-bottom: 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%;
  }

  .content-wrapper {
    flex-wrap: wrap;
    width: auto;
  }

  .industries-block-wrapper {
    max-width: none;
  }

  .project-button-link.left {
    display: flex;
  }

  .home-9-team-item {
    width: 48%;
  }

  .circle-counter {
    width: 47%;
  }

  .search {
    flex-direction: column;
  }

  .subtitle-2 {
    line-height: 16px;
  }

  .rich-text-style h2 {
    font-size: 34px;
  }

  .rich-text-style h3 {
    font-size: 30px;
  }

  .home-banner-left-arrow {
    top: 6%;
  }

  .home-team-item {
    width: 70%;
  }

  .brand {
    padding-left: 0;
  }

  .typography-hero-wrapper {
    grid-row-gap: 40px;
    margin-top: 20px;
  }

  .banner-home-1 {
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 0;
  }

  .img-banner-home {
    z-index: 10;
    object-position: 45% 20%;
    width: 100%;
    height: 470px;
    margin-top: 60px;
    position: static;
  }

  .img-banner-home.home-3 {
    z-index: 1;
    margin-top: 0;
  }

  .img-banner-home.project-img {
    margin-top: 0;
  }

  .background-banner-home-1 {
    width: 100%;
  }

  .banner-wrapper-content {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-right: 0;
    display: flex;
  }

  .banner-wrapper-content.home-3 {
    width: 100%;
  }

  .button-wrap {
    margin-top: 30px;
    margin-right: auto;
  }

  .button-wrap.home {
    margin-top: 0;
  }

  .title-center {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .title-center.big-title-center {
    max-width: 100%;
  }

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

  .service-img {
    width: 100px;
  }

  ._2-column-content {
    grid-row-gap: 40px;
  }

  .info {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .content-title.testimonials-home {
    grid-row-gap: 20px;
  }

  .content-title.testimonials-about {
    grid-row-gap: 100px;
  }

  .title {
    max-width: 100%;
  }

  .right-content, .right-content.testimonials-home {
    width: 100%;
  }

  .small-paragraph.stat {
    text-align: center;
  }

  .left-arrow-review, .left-arrow-review.right-position {
    left: 200px;
  }

  .right-arrow-review, .right-arrow-review.right-position {
    right: 200px;
  }

  .support-services-wrapper {
    grid-row-gap: 40px;
  }

  .support-service-img {
    height: 450px;
    margin-top: 30px;
  }

  .left-support-services {
    width: 100%;
  }

  .counter-wrapper {
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
  }

  .counter-wrapper.mt-40-mobile {
    margin-top: 40px;
  }

  .advantages-wrap {
    width: 95%;
  }

  .advantages-wrap.center {
    margin-left: 25px;
  }

  .advantages-wrapper {
    flex-direction: column-reverse;
    grid-template-columns: 1fr;
    display: flex;
  }

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

  .background-1 {
    width: 70%;
    bottom: -76%;
  }

  .background-2 {
    height: 50%;
  }

  .banner-home-2 {
    justify-content: center;
    padding-top: 180px;
  }

  .paragraph-banner-home-2 {
    max-width: 100%;
  }

  .logo-partners-banner {
    margin-top: 60px;
  }

  .banner-home-3 {
    flex-direction: column;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .banner-home-3-wrapper {
    grid-row-gap: 40px;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .banner-img-wrapper {
    width: 100%;
  }

  .banner-img-wrapper.project-details {
    justify-content: center;
  }

  .banner-title-small {
    max-width: 100%;
  }

  .logo-loop {
    margin-top: 10px;
  }

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

  .info-video-wrapper, .img-content-wrap {
    width: 100%;
  }

  .paragraph-about {
    text-align: left;
  }

  .how-work-wrapper {
    grid-row-gap: 40px;
  }

  .content-relative-img {
    width: 100%;
  }

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

  .title-details-banner {
    max-width: 100%;
  }

  .blog-details-wrap {
    grid-row-gap: 40px;
  }

  .sidebar-recent-posts-wrapper {
    column-count: 1;
  }

  .sidebar-recent-post-item {
    align-items: center;
  }

  .recent-img-post {
    height: 130px;
  }

  .service-img-details {
    height: auto;
  }

  .about-service-wrap {
    margin-top: 30px;
  }

  .project-details-banner {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .collection-item-list-shop {
    flex-direction: column;
  }

  .content-product {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
  }

  .about-product {
    flex-direction: column;
    margin-bottom: 10px;
  }

  .link-block-product-img-list {
    width: 100%;
    height: 350px;
  }

  .product-image {
    border-top-right-radius: 6px;
    border-bottom-left-radius: 0;
  }

  .content-product-list {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .checkout-form {
    padding-top: 120px;
    padding-bottom: 60px;
  }

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

  .paypal-checkout-form, .order-confirmation {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .details-product-wrapper {
    flex-direction: column;
    display: flex;
  }

  .right-content-product {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .about-product-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: static;
  }

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

  .footer-brand-wrapper-2 {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .footer-brand-3 {
    padding-left: 0;
  }

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

  .footer-wrapper-3 {
    grid-column-gap: 50px;
    justify-content: space-between;
    margin-bottom: 40px;
  }

  .footer-bottom-wrapper-3 {
    flex-wrap: wrap;
  }

  .logo-wrapper-footer {
    margin-bottom: 0;
  }

  .nav-link {
    margin-left: 0;
  }

  .brand-tablet-2 {
    justify-content: flex-start;
    padding-left: 0;
  }

  .logo {
    height: 80px;
  }

  .img-banner-home-1 {
    z-index: 10;
    width: 100%;
    height: 470px;
    inset: auto 0% 0%;
  }

  .sticky-order-block {
    position: static;
  }

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

  .name-details {
    font-size: 46px;
  }

  .details-team-wrapper {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    place-items: center;
    margin-bottom: 40px;
  }

  .team-member-details-img {
    width: 80%;
    height: 460px;
  }

  .about-big-number {
    font-size: 56px;
  }

  .image-wrap {
    height: 320px;
    display: block;
  }

  .grid-2-column {
    grid-column-gap: 50px;
    grid-row-gap: 0px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    display: flex;
  }

  .flex-vertical {
    max-width: 420px;
  }

  .flex-vertical.row-15 {
    align-items: center;
    max-width: 100%;
  }

  .header-left {
    display: block;
  }

  .step {
    flex-direction: column;
    padding-left: 20px;
  }

  .process-img {
    height: 300px;
  }

  .process-img.mobile {
    margin-bottom: 20px;
    display: block;
  }

  .right {
    width: 100%;
  }

  .right.bot {
    padding-bottom: 20px;
  }

  .content-left {
    display: block;
  }

  .left {
    width: 100%;
    margin-right: 0;
    padding-bottom: 60px;
    display: none;
  }

  .search-result-list {
    grid-row-gap: 20px;
  }

  .collection-list-wrapper-product-desctop {
    display: none;
  }

  .collection-list-wrapper-product-mobile {
    margin-top: 40px;
    display: block;
  }

  .hire-popup {
    display: none;
  }

  .hire-buttons-wrap {
    grid-row-gap: 20px;
    flex-flow: column wrap;
    align-items: stretch;
  }

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

  .div-block, .div-block-2, .div-block-3 {
    width: 100%;
  }

  .pricing-h1 {
    font-size: 34px;
    line-height: 44px;
  }

  .div-block-6 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .div-block-6._2 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .size {
    width: auto;
  }
}

@media screen and (max-width: 479px) {
  blockquote {
    padding-left: 20px;
    font-size: 22px;
  }

  .section {
    padding-bottom: 40px;
  }

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

  .section.overflow {
    padding-top: 20px;
  }

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

  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    flex-direction: column;
    width: 50%;
  }

  .grid-title {
    align-items: center;
  }

  .grid-title.first-grid {
    text-align: center;
    flex: 1;
    width: 100%;
  }

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

  .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-close-icon {
    margin-bottom: 5px;
  }

  .licensing-title-wrapper {
    grid-column-gap: 20px;
    flex-wrap: wrap;
  }

  .licensing-grid {
    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-grid-image {
    height: 300px;
  }

  .team-card-image {
    height: 450px;
  }

  .banner-title-wrapper {
    text-align: center;
  }

  .pricing-plan-item {
    width: 100%;
    padding: 20px 30px;
  }

  .pricing-plan-item.light-background {
    padding-left: 30px;
    padding-right: 30px;
  }

  .contacts-form-wrapper {
    min-height: 690px;
  }

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

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

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

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

  .project-template-info {
    flex-direction: column;
    display: flex;
  }

  .project-pagination-wrapper {
    flex-wrap: wrap;
  }

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

  .our-services-wrap {
    width: 100%;
  }

  .project-button-link {
    justify-content: flex-end;
    height: 70px;
  }

  .home-9-team-item {
    width: 100%;
  }

  .circle-counter {
    width: 75%;
  }

  .home-team-item {
    width: 100%;
  }

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

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

  .img-banner-home {
    height: 420px;
  }

  .img-banner-home.home-3 {
    height: 400px;
  }

  .button-wrap {
    margin-top: 20px;
    margin-right: 0;
  }

  ._2-column-content {
    grid-row-gap: 60px;
  }

  .about-us-wrapper {
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .price-text {
    font-size: 42px;
  }

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

  .info-wrapper.team {
    height: 100%;
  }

  .left-info-wrap.team-info {
    width: 100%;
  }

  .info.grid-tablet, .work-process-wrapper {
    grid-template-columns: 1fr;
  }

  .process {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

  .process.first-block {
    padding-right: 0;
  }

  .small-paragraph.stat {
    text-align: center;
  }

  .left-arrow-review, .left-arrow-review.right-position {
    left: 100px;
  }

  .right-arrow-review, .right-arrow-review.right-position {
    right: 100px;
  }

  .testimonials-review {
    grid-row-gap: 0px;
    align-items: center;
  }

  .mask-review {
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }

  .review-text {
    text-align: center;
    width: 100%;
  }

  .stars {
    margin-right: auto;
  }

  .title-testimonials-review {
    flex-direction: column;
  }

  .slide-testimonials {
    margin-right: 15px;
    padding-left: 0;
    padding-right: 0;
  }

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

  .advantages-wrap.center {
    margin-left: 20px;
  }

  .background-1 {
    bottom: -67%;
  }

  .background-2 {
    width: 50%;
    height: 75%;
  }

  .banner-home-2 {
    justify-content: center;
  }

  .header-banner {
    font-size: 36px;
  }

  .banner-home-2-wrapper {
    width: 100%;
  }

  .banner-img-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .team {
    height: 400px;
  }

  .absolute-title {
    padding-top: 0;
    padding-bottom: 0;
  }

  .content-relative-img {
    display: none;
  }

  .about-users {
    width: 95%;
  }

  .contact-wrap {
    flex-direction: column;
  }

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

  .sidebar-recent-post-item {
    flex-direction: column;
  }

  .recent-link-img {
    width: 100%;
  }

  .recent-img-post {
    width: 90px;
    height: 100px;
  }

  .recent-title-wrap {
    width: 100%;
  }

  .service-img-details {
    height: auto;
  }

  .about-service-wrap {
    grid-row-gap: 30px;
  }

  .collection-item-grid-shop {
    text-align: center;
    align-items: center;
  }

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

  .content-product {
    justify-content: center;
    align-items: center;
  }

  .about-product {
    margin-bottom: 15px;
  }

  .content-product-list {
    padding-top: 20px;
  }

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

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

  .order-item {
    flex-direction: column;
  }

  .checkout-price {
    color: var(--primary-dark);
    margin-top: 10px;
    font-weight: 500;
  }

  .big-section-title {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .left-title {
    margin-bottom: 30px;
  }

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

  .footer-brand-wrapper-2 {
    margin-bottom: 20px;
  }

  .footer-social-icons-wrapper-2 {
    grid-column-gap: 50px;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
  }

  .footer-logo.foot {
    height: 75px;
  }

  .footer-copyright {
    text-align: center;
    justify-content: center;
    width: 100%;
    line-height: 1.6em;
  }

  .right-footer-copyright {
    flex-direction: column;
  }

  .footer-rights-3 {
    text-align: center;
    line-height: 1.6em;
  }

  .footer-copyright-link {
    margin-left: 5px;
  }

  .footer-wrapper-3 {
    grid-column-gap: 50px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    place-items: center;
    margin-bottom: 80px;
    display: grid;
  }

  .footer-bottom-wrapper-3 {
    grid-row-gap: 0px;
    flex-wrap: wrap;
    margin-top: 0;
  }

  .bottom-background-footer {
    height: 150px;
  }

  .logo-wrapper-footer {
    grid-row-gap: 30px;
    background-color: var(--dark);
    border-radius: 0;
    flex-direction: column;
    padding: 0;
  }

  .nav-link {
    width: 99%;
  }

  .brand-tablet-2 {
    padding-left: 0;
  }

  .nav-dropdown-list-2.megamenu {
    padding-right: 0;
  }

  .logo {
    height: 65px;
  }

  .img-banner-home-1 {
    height: 420px;
  }

  .work-number {
    margin-left: auto;
    margin-right: auto;
  }

  .name-details {
    font-size: 42px;
  }

  .team-member-details-img {
    width: 100%;
    height: 380px;
  }

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

  .image-wrap {
    height: 200px;
  }

  .about-2-counter-item {
    text-align: center;
    justify-items: center;
    padding-left: 30px;
    padding-right: 30px;
  }

  .flex-vertical {
    max-width: 100%;
    min-height: 230px;
  }

  .flex-vertical.row-15 {
    text-align: center;
    align-items: center;
  }

  .right {
    padding-left: 40px;
  }

  .paragraph, .paragraph-2 {
    text-align: left;
  }

  .heading-3, .heading-4 {
    font-size: 40px;
  }

  .div-block-4, .div-block-5 {
    margin-right: auto;
  }

  .div-block-8 {
    width: 100%;
  }
}

#w-node-a5593876-bf57-2730-6286-98d9ab250e90-eb9550f5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-a5593876-bf57-2730-6286-98d9ab250e98-eb9550f5, #w-node-a5593876-bf57-2730-6286-98d9ab250e9c-eb9550f5, #w-node-a5593876-bf57-2730-6286-98d9ab250ea0-eb9550f5, #w-node-a5593876-bf57-2730-6286-98d9ab250ea4-eb9550f5, #w-node-a5593876-bf57-2730-6286-98d9ab250eab-eb9550f5, #w-node-_98f6adfb-3b21-a646-acdb-7d6d925519e5-eb9550f5, #w-node-_98f6adfb-3b21-a646-acdb-7d6d925519fe-eb9550f5, #w-node-_98f6adfb-3b21-a646-acdb-7d6d92551a09-eb9550f5, #w-node-_98f6adfb-3b21-a646-acdb-7d6d92551a0e-eb9550f5, #w-node-_98f6adfb-3b21-a646-acdb-7d6d92551a13-eb9550f5, #w-node-_98f6adfb-3b21-a646-acdb-7d6d92551a18-eb9550f5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c0c02b3e-4759-a7f3-7792-9d31080af4df-080af4d9 {
  align-self: end;
}

#w-node-c0c02b3e-4759-a7f3-7792-9d31080af4e2-080af4d9 {
  align-self: start;
}

#w-node-becbb15e-7fea-0848-9fd4-ee7872d65709-eb95516b {
  align-self: center;
}

#w-node-becbb15e-7fea-0848-9fd4-ee7872d6570c-eb95516b {
  align-self: end;
}

#w-node-ca90807a-7b10-ea17-111f-081efd02b9b0-eb95516b, #w-node-ca90807a-7b10-ea17-111f-081efd02b995-eb95516b, #w-node-_60972d7a-1aed-34a1-e924-d9012dc49c5f-eb95516b, #w-node-_60972d7a-1aed-34a1-e924-d9012dc49c64-eb95516b, #w-node-_60972d7a-1aed-34a1-e924-d9012dc49c69-eb95516b, #w-node-_60972d7a-1aed-34a1-e924-d9012dc49c6e-eb95516b, #w-node-_1f2e7063-3b40-d65e-d913-5b2aff69a81f-eb955170, #w-node-_8cb248f5-cb38-3821-c2b8-1d055b893ddb-eb955170, #w-node-_35d87bfb-c0b9-962d-2782-73f320c1f051-eb955170 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_905d05e1-577e-91ed-4d14-5177d60bcb72-eb955171 {
  align-self: center;
}

#w-node-_905d05e1-577e-91ed-4d14-5177d60bcb75-eb955171 {
  align-self: end;
}

#w-node-_51300c2e-83e6-32e9-54fe-8f07fea8a841-eb955171 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_5b984663-470c-8ae8-a185-62a544ea4667-eb955171, #w-node-adad4f62-aea5-e544-ce0e-c2aa93849a69-eb955171, #w-node-_49defe24-e1b5-5f59-6c6c-b6cfdcd36e32-eb955171, #w-node-_7493db03-2280-607f-43b5-c695e3de553a-eb955171, #w-node-_58eca953-b11b-293c-4cee-34b5f6269db2-eb955171, #w-node-f68e0610-eb5e-f759-2666-c7ce21d3a3a8-eb955171 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start center;
}

#w-node-_48ca2914-e156-2e5f-993d-c9cc03f2e721-eb955186 {
  align-self: center;
}

#w-node-_48ca2914-e156-2e5f-993d-c9cc03f2e724-eb955186 {
  align-self: end;
}

#w-node-_6a078d37-a03b-58b0-5746-bd390040e948-eb955188, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94a-eb955188, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94c-eb955188, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94e-eb955188, #w-node-_6a078d37-a03b-58b0-5746-bd390040e950-eb955188, #w-node-_6a078d37-a03b-58b0-5746-bd390040e953-eb955188, #w-node-_6a078d37-a03b-58b0-5746-bd390040e955-eb955188, #w-node-_6a078d37-a03b-58b0-5746-bd390040e957-eb955188, #w-node-_6a078d37-a03b-58b0-5746-bd390040e959-eb955188, #w-node-_6a078d37-a03b-58b0-5746-bd390040e95b-eb955188 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_1f2e7063-3b40-d65e-d913-5b2aff69a81f-eb955170, #w-node-_8cb248f5-cb38-3821-c2b8-1d055b893ddb-eb955170 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_35d87bfb-c0b9-962d-2782-73f320c1f051-eb955170 {
    grid-area: 2 / 2 / 3 / 4;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_1b76e49c-88dd-5f99-cb70-8e51719e8b70-719e8b61, #w-node-_1b76e49c-88dd-5f99-cb70-8e51719e8b66-719e8b61 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_1f2e7063-3b40-d65e-d913-5b2aff69a81f-eb955170, #w-node-_8cb248f5-cb38-3821-c2b8-1d055b893ddb-eb955170, #w-node-_35d87bfb-c0b9-962d-2782-73f320c1f051-eb955170 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Fa brands 400';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@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: 'Mulataddis';
  src: url('../fonts/MulatAddis-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aspekta 200';
  src: url('../fonts/Aspekta-200.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aspekta 500';
  src: url('../fonts/Aspekta-500.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aspekta 700';
  src: url('../fonts/Aspekta-700.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aspekta 600';
  src: url('../fonts/Aspekta-600.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aspekta 300';
  src: url('../fonts/Aspekta-300.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aspekta 400';
  src: url('../fonts/Aspekta-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}