:root {
  --primary: var(--black);
  --primary-dark: #101828;
  --paragraph-gray: #667085;
  --primary-light: #f9fafb;
  --gray: rgba(234, 236, 240, .3);
  --white: white;
  --light-purple: rgba(0, 42, 57, .2);
  --dark-gray: #afafaf;
  --dark-gray-50: rgba(175, 175, 175, .5);
  --black: black;
  --error-bg: #fddbdb;
  --error-text: red;
  --white-50: rgba(255, 255, 255, .5);
  --blog-grid-banner-bg: #1d2939;
}

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

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

.w-pagination-previous, .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-page-count {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.w-backgroundvideo-backgroundvideoplaypausebutton:focus-visible {
  outline-offset: 2px;
  border-radius: 50%;
  outline: 2px solid #3b79c3;
}

.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-users-userformpagewrap {
  height: 100vh;
  max-width: 340px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.w-users-userloginformwrapper {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.w-users-userformheader {
  text-align: center;
}

.w-users-userformbutton {
  width: 100%;
  text-align: center;
}

.w-users-userformfooter {
  justify-content: space-between;
  margin-top: 12px;
  display: flex;
}

.w-users-userformerrorstate {
  margin-left: 20px;
  margin-right: 20px;
  position: absolute;
  top: 100%;
  left: 0%;
  right: 0%;
}

.w-users-usersignupformwrapper {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.w-users-userformsuccessstate {
  display: none;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-users-usersignupverificationmessage {
  display: none;
}

.w-users-userresetpasswordformwrapper, .w-users-userupdatepasswordformwrapper {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.w-users-useraccountwrapper {
  width: 100%;
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 20px;
}

.w-users-blockheader {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 20px;
  display: flex;
}

.w-users-blockcontent {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  margin-bottom: 20px;
  padding: 20px;
}

.w-users-useraccountformsavebutton {
  text-align: center;
  margin-right: 8px;
}

.w-users-useraccountformcancelbutton {
  text-align: center;
  color: #333;
  background-color: #d3d3d3;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--primary);
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 1em;
}

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

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

h3 {
  color: var(--primary-dark);
  margin-top: 10px;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1em;
}

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

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

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

p {
  color: var(--paragraph-gray);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
}

a {
  color: var(--primary);
  align-items: center;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  text-decoration: none;
  transition: color .3s;
}

ul {
  grid-row-gap: 15px;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  list-style-type: lower-alpha;
  display: flex;
}

li {
  background-color: var(--paragraph-gray);
  color: var(--primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4em;
  list-style-type: disc;
  position: relative;
}

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

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

blockquote {
  border-left: 4px solid var(--primary);
  margin-top: 40px;
  margin-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

figure {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 20px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.section {
  color: var(--primary-light);
  padding-top: 40px;
  padding-bottom: 60px;
}

.section.light-background {
  background-color: var(--gray);
  overflow: hidden;
}

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

.section.changelog-banner {
  min-height: 400px;
  background-image: linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .35)), linear-gradient(to right, rgba(0, 0, 0, .3), rgba(0, 0, 0, 0)), url('../images/Changelog-banner_1Changelog banner.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section.top-banner {
  min-height: 400px;
  background-image: linear-gradient(85deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, 0)), linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url('../images/Blog-Classic-Image_1Blog Classic Image.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  display: flex;
}

.section.top-banner.sidebar-banner {
  background-image: linear-gradient(85deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, 0)), linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url('../images/Blog-sidebar-image_1Blog sidebar image.webp');
  background-size: auto, auto, cover;
}

.section.top-banner.contact-us {
  background-image: linear-gradient(85deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, 0)), linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url('../images/Contact-Us-Banner_1Contact Us Banner.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
}

.section.banner-our-team {
  min-height: 400px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, .3), rgba(0, 0, 0, 0)), linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url('../images/Authors-Banner-Image_1Authors Banner Image.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section.without-bottom-spacing {
  padding-top: 20px;
  padding-bottom: 0;
  display: block;
}

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

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

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

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

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

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

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

.grid-title.first-grid {
  width: 24%;
  background-color: var(--primary);
  border-left-style: solid;
  border-left-color: #7c7c7c;
  margin-top: 0;
}

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

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

.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;
  font-family: Inter, sans-serif;
}

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

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

.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;
  top: 33%;
  bottom: auto;
  left: auto;
  right: 0%;
}

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

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

.color-wrapper {
  margin-right: 30px;
}

.colors-wrapper {
  margin-right: 60px;
}

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

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

.light-purple-style-guide {
  width: 75px;
  height: 75px;
  background-color: var(--light-purple);
  box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

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

.primary-light-style-guide {
  width: 75px;
  height: 75px;
  background-color: var(--primary-light);
  color: var(--primary-light);
  box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

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

.headings-typography-wrapper {
  width: 48%;
  flex-flow: wrap;
  margin-bottom: 30px;
  margin-right: 40px;
  display: flex;
}

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

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

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

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

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

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

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

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

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

.primary-button {
  border: 2px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  letter-spacing: .5px;
  text-transform: none;
  border-radius: 5px;
  padding: 10px 30px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: all .3s;
  display: inline-block;
}

.primary-button:hover {
  opacity: 1;
  color: var(--primary-dark);
  background-color: rgba(0, 0, 0, 0);
}

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

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

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

.primary-button.menu-button.margin-left {
  margin-left: 30px;
}

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

.primary-button.menu-button.white-button:hover {
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
}

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

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

.primary-button.white-text:hover, .primary-button.coming-soon:hover {
  border-color: var(--white);
  color: var(--white);
}

.style-guide-div {
  width: 100%;
  margin-top: 50px;
}

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

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

.navbar {
  width: 100%;
  background-color: var(--white);
}

.navbar.absolute {
  position: absolute;
}

.nav-container {
  max-width: 1200px;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

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

.nav-link {
  color: var(--paragraph-gray);
  padding: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

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

.nav-link:focus {
  color: var(--paragraph-gray);
}

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

.nav-dropdown-toggle {
  padding-right: 20px;
}

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

.nav-dropdown-list {
  width: 200px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .18);
  padding: 15px 20px;
}

.nav-dropdown-list.w--open {
  width: 220px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  box-shadow: 0 0 10px rgba(0, 0, 0, .04);
}

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

.nav-dropdown-list.megamenu.w--open {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.nav-dropdown-link-wrapper {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

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

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

.body {
  font-size: 20px;
}

.nav-item-title {
  color: var(--paragraph-gray);
}

.pages-banner {
  min-height: 450px;
  background-color: var(--primary);
  justify-content: center;
  align-items: center;
  display: flex;
}

.licensing-title-wrapper {
  border-bottom: 1px rgba(94, 94, 94, .5);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.licensing-images-wrapper {
  width: 100%;
  border-top: 1px solid rgba(94, 94, 94, .5);
  padding-top: 40px;
}

.licensing-grid {
  width: 100%;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-bottom: 1px rgba(94, 94, 94, .5);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: 60px;
}

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

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

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

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

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

.license-link {
  color: var(--primary-dark);
  letter-spacing: normal;
  margin-right: 50px;
  font-weight: 700;
  transition-property: all;
  transition-duration: .4s;
}

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

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

.banner-title {
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 65px;
}

.banner-title.text-left-desktop {
  text-align: left;
  font-size: 52px;
}

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

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

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

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

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

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

.licensing-font-title {
  text-transform: uppercase;
  font-weight: 700;
}

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

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

.utility-page-content {
  width: 280px;
  text-align: center;
  flex-direction: column;
  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 {
  min-height: 48px;
  min-width: 280px;
  border: 1px solid var(--paragraph-gray);
  border-radius: 5px;
  margin-bottom: 12px;
  padding: 10px 12px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

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

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

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

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

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

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

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

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

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

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

.coming-soon-form {
  grid-column-gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.coming-soon-input {
  min-width: 300px;
  border: 1px solid var(--white);
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 5px;
  margin-bottom: 0;
  padding: 22px 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.coming-soon-input:hover {
  color: var(--white);
}

.coming-soon-input:active {
  border-color: var(--white);
}

.coming-soon-input:focus {
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 16px;
}

.coming-soon-input:focus-visible {
  border-color: var(--white);
}

.coming-soon-input[data-wf-focus-visible] {
  border-color: var(--white);
}

.coming-soon-input::-ms-input-placeholder {
  color: var(--white);
  font-size: 16px;
}

.coming-soon-input::placeholder {
  color: var(--white);
  font-size: 16px;
}

.coming-soon-paragraph {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 40px;
}

.coming-soon-page-wrap {
  width: 100vw;
  height: 100vh;
  text-align: left;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.coming-soon-heading {
  color: var(--white);
  text-align: center;
  margin-top: 60px;
  font-size: 56px;
}

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

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

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

.blog-grid-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 1s;
}

.blog-grid-image:hover {
  transform: scale(1.2);
}

.blog-grid-item-date {
  color: var(--primary-dark);
  margin-top: 0;
  margin-bottom: 10px;
}

.blog-grid-content-wrapper {
  min-height: 280px;
  background-color: var(--white);
  flex-direction: column;
  padding: 20px 20px 30px;
  display: flex;
}

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

.blog-grid-item {
  width: 48%;
  display: inline-block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
}

.blog-grid-item-title {
  color: var(--primary-dark);
  font-size: 24px;
  font-weight: 700;
}

.blog-grid-item-description {
  margin-top: 0;
  margin-bottom: 15px;
}

.blog-classic-wrapper {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.blog-classic-item {
  margin-bottom: 60px;
  box-shadow: 0 0 20px rgba(0, 0, 0, .08);
}

.blog-classic-top-content {
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 40px;
  display: flex;
}

.blog-post-category {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  margin-bottom: 20px;
  padding: 8px 15px;
  transition: all .3s;
  display: inline-block;
}

.blog-post-category:hover {
  color: var(--primary);
  background-color: rgba(0, 0, 0, 0);
}

.blog-post-category.sidebar-post-category {
  z-index: 2;
  padding: 5px 10px;
  position: relative;
}

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

.blog-post-title {
  font-size: 46px;
  transition: color .3s;
}

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

.blog-classic-post-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  transition: all 1s;
}

.blog-classic-post-image:hover {
  transform: scale(1.2);
}

.blog-classic-post-image-wrapper {
  min-width: 100%;
  overflow: hidden;
}

.blog-classic-bottom-content {
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.blog-classic-post-description {
  width: 80%;
  margin-top: 50px;
  margin-bottom: 20px;
}

.blog-classic-post-date {
  border: 1px solid var(--primary);
  background-color: var(--white);
  color: var(--primary);
  border-radius: 3px;
  margin-top: -13px;
  padding: 5px 15px;
  font-weight: 700;
  position: relative;
}

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

.blog-sidebar-item {
  width: 45%;
  padding-left: 0;
  padding-right: 0;
  display: inline-block;
  box-shadow: 0 0 20px rgba(0, 0, 0, .06);
}

.blog-sidebar-post-content {
  background-color: var(--white);
  flex-direction: column;
  align-items: flex-start;
  margin-top: -15px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.blog-details-post-category {
  border: 1px solid var(--white);
  color: var(--primary-light);
  background-color: rgba(255, 255, 255, .3);
  border-radius: 50px;
  margin-bottom: 10px;
  padding: 6px 20px;
  transition: all .5s;
}

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

.blog-sidebar-right {
  width: 32%;
  flex-direction: column;
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
}

.blog-sidebar-wrapper {
  width: 100%;
  grid-column-gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

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

.sidebar-recent-post-image {
  width: 80px;
  height: 80px;
  max-height: none;
  object-fit: cover;
  margin-right: 15px;
}

.sidebar-recent-post {
  align-items: center;
  transition-property: all;
  display: flex;
}

.blog-recent-post-title {
  color: var(--primary-dark);
  margin-top: 0;
  font-size: 16px;
  transition: color .2s;
}

.blog-recent-post-date {
  color: #969696;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.sidebar-recent-posts {
  background-color: var(--white);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 10px 20px 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, .06);
}

.sidebar-categories {
  background-color: var(--white);
  flex-direction: column;
  padding: 20px;
  display: flex;
  box-shadow: 0 0 20px rgba(0, 0, 0, .06);
}

.sidebar-category-item {
  flex-direction: column;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  transition-property: all;
  display: flex;
}

.blog-sidebar-post-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sidebar-category {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  border-radius: 5px;
  align-self: center;
  padding: 5px 10px;
  transition: all .3s;
  display: flex;
}

.sidebar-category:hover {
  color: var(--primary);
  background-color: rgba(0, 0, 0, 0);
}

.blog-template-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.blog-template-image {
  z-index: -1;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
}

.footer {
  background-color: var(--primary-dark);
  text-align: center;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-rights-wrapper {
  width: 100%;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-rights {
  color: var(--primary-light);
  text-align: center;
  font-size: 16px;
  line-height: 24px;
}

.footer-copyright {
  width: 100%;
  color: var(--white);
  text-align: center;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
}

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

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

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

.text-button-icon {
  margin-left: 13px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transform: rotate(-40deg);
}

.values-wrapper {
  z-index: 90;
  width: 100%;
  grid-column-gap: 50px;
  display: flex;
  position: relative;
}

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

.banner-title-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

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

.text-white.latest-post-title {
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
}

.text-white.subscribe-text {
  margin-bottom: 30px;
  font-size: 46px;
}

.services-wrapper {
  width: 100%;
  margin-top: 50px;
  display: flex;
}

.services-item {
  background-color: var(--white);
  flex-direction: column;
  align-items: flex-start;
  margin-right: 30px;
  padding: 20px 30px 30px;
  display: flex;
  box-shadow: 4px 2px 16px rgba(0, 0, 0, .05);
}

.services-item.last-child {
  margin-right: 0;
}

.services-item-description {
  margin-bottom: 20px;
}

.workflow-profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.workflow-profile-description {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 20px;
  display: flex;
}

.workflow-profile-wrapper {
  flex-direction: row;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.workflow-content-wrapper {
  width: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 40px;
  display: flex;
}

.workflow-video-wrapper {
  width: 50%;
  min-height: 300px;
}

.workflow-wrapper {
  margin-top: 50px;
  display: flex;
}

.workflow-profile-photo-wrapper {
  width: 80px;
  height: 80px;
}

.workflow-profile-name {
  margin-bottom: 0;
  font-size: 18px;
}

.workflow-video {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url('../images/team-work_1team work.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.workflow-quote {
  margin-bottom: 0;
  font-size: 18px;
}

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

.accordion-list {
  background-color: rgba(0, 0, 0, 0);
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list.w--open {
  background-color: rgba(0, 0, 0, 0);
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.accordion-wrapper {
  width: 100%;
  margin-top: 50px;
  display: flex;
}

.accordion-item {
  width: 100%;
  background-color: var(--white);
  margin-bottom: 15px;
  padding: 20px 30px;
  position: static;
  box-shadow: 0 0 20px rgba(0, 0, 0, .06);
}

.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-wrap {
  width: 50%;
  margin-right: 15px;
}

.accordion-wrap.last-child {
  margin-right: 0;
}

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

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

.more-features-icon {
  min-width: 50px;
  border: 1px solid var(--primary);
  background-color: var(--white);
  color: var(--primary);
  text-align: center;
  border-radius: 50px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 20px;
  padding: 15px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 18px;
}

.link-with-icon {
  color: var(--primary);
  transition: all .3s;
  display: flex;
}

.link-with-icon:hover {
  opacity: .7;
}

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

.contacts-content-wrapper {
  width: 50%;
  padding-right: 40px;
}

.contacts-form-wrapper {
  width: 50%;
  background-color: #eaecf0;
  margin-left: 40px;
  padding: 40px;
}

.contacts-form-wrapper.main {
  background-color: var(--primary-light);
}

.contacts-divider {
  width: 100%;
  height: 1px;
  background-color: var(--dark-gray-50);
  margin-top: 30px;
  margin-bottom: 20px;
}

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

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

.paragraph-no-margin {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  transition-property: all;
}

.paragraph-no-margin:hover {
  color: var(--primary-dark);
}

.contacts-location-slider {
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  padding-right: 100px;
  position: relative;
}

.hidden {
  display: none;
}

.contacts-left-arrow {
  max-width: 40px;
  color: var(--dark-gray-50);
  padding: 10px 15px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 60px;
}

.contacts-right-arrow {
  max-width: 40px;
  color: var(--dark-gray-50);
  padding: 10px 15px;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 19px;
}

.contacts-slider-arrow-icon {
  color: var(--primary);
  font-family: "Fa solid 900", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.contacts-arrows-divider {
  width: 1px;
  height: 20px;
  background-color: var(--dark-gray-50);
  position: absolute;
  top: 12px;
  bottom: auto;
  left: auto;
  right: 60px;
}

.contacts-textarea {
  min-height: 200px;
  border: 1px solid rgba(175, 175, 175, .2);
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 10px 18px 16px 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.contacts-textarea:focus {
  border-color: var(--primary);
  color: var(--paragraph-gray);
}

.contacts-textarea:focus-visible {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.contacts-textarea[data-wf-focus-visible] {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.contacts-textarea::-ms-input-placeholder {
  font-size: 16px;
}

.contacts-textarea::placeholder {
  font-size: 16px;
}

.contacts-input {
  height: auto;
  background-color: var(--white);
  border: 1px solid rgba(175, 175, 175, .2);
  border-radius: 5px;
  padding: 10px 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all .2s;
}

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

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

.contacts-input[data-wf-focus-visible] {
  border: 1px solid var(--primary);
  color: var(--primary-dark);
}

.contacts-input::-ms-input-placeholder {
  font-size: 16px;
}

.contacts-input::placeholder {
  font-size: 16px;
}

.contacts-form-title {
  text-align: center;
  margin-bottom: 40px;
}

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

.footer-link {
  color: var(--white);
  padding: 10px 20px;
  line-height: 24px;
  transition: all .3s;
}

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

.footer-link.first.w--current:hover {
  opacity: .6;
}

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

.footer-social-icons-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

.white-text {
  color: #fff;
}

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

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

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

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

.search-wrap-input {
  height: 60px;
  color: var(--primary-dark);
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  margin-bottom: 0;
  padding: 0;
  font-family: Lato, sans-serif;
  font-size: 18px;
}

.search-wrap-input:focus {
  border-style: none;
}

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

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

.search-desktop {
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .9);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.search-close-button {
  cursor: pointer;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  font-weight: 900;
  position: absolute;
  top: 50px;
  bottom: auto;
  left: auto;
  right: 50px;
}

.search-bottom-line {
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  margin-bottom: 20px;
  display: flex;
}

.search-wrapper {
  max-width: 1140px;
  min-width: 300px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.search-link {
  font-size: 18px;
  transition: all .4s;
}

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

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

.search-section {
  z-index: 1;
  min-height: 550px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, .3) 28%, rgba(0, 0, 0, 0)), linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url('../images/search-photo-banner_1search photo banner.webp');
  background-position: 0 0, 0 0, 50%;
  background-size: auto, auto, cover;
  justify-content: center;
  align-items: flex-end;
  padding-top: 100px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

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

.headings-container {
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

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

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

.overflow-hidden {
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.overflow-hidden.horizontal {
  grid-column-gap: 30px;
  flex-direction: row;
}

.transperent-secondary-button {
  border: 2px solid var(--primary);
  color: var(--primary-dark);
  text-align: center;
  letter-spacing: .5px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 5px;
  align-items: center;
  padding: 10px 30px;
  font-weight: 500;
  line-height: 24px;
  transition: all .3s;
}

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

.transperent-secondary-button.text-white {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

.transperent-secondary-button.text-white:hover {
  border-color: var(--primary);
}

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

.testimonials-slider-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 15px;
  display: block;
}

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

.about-3-tab-link {
  width: 33.33%;
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  align-items: center;
  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: rgba(0, 0, 0, 0);
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 24px;
}

.portfolio-grid-collection-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

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

.banner-buttons-wrapper {
  grid-column-gap: 30px;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

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

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

.play-button-hover {
  z-index: 10;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  transition: all .3s;
  display: flex;
  position: absolute;
  transform: scale(.85);
}

.play-button-hover:hover {
  transform: scale(1);
}

.blog-sidebar-left-wrapper {
  width: 68%;
}

.home-testimonials-slider-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid var(--white);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  transition: all .4s ease-in;
  display: flex;
  top: auto;
  bottom: 20px;
  left: auto;
  right: 78px;
}

.home-testimonials-slider-arrow.right {
  width: 38px;
  height: 38px;
  border: 1px solid var(--white);
  color: var(--primary-dark);
  border-radius: 50px;
  position: absolute;
  top: auto;
  bottom: 20px;
  left: auto;
  right: 20px;
}

.social-icon {
  color: var(--dark-gray);
  justify-content: center;
  font-family: "Fa brands 400", sans-serif;
  font-size: 18px;
  text-decoration: none;
  transition: color .3s;
  display: flex;
}

.social-icon:hover {
  opacity: .6;
  color: #004ae2;
}

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

.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 {
  max-width: 780px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.home-4-banner-title {
  font-size: 50px;
  line-height: 1.2em;
}

.banner-section {
  background-color: var(--primary-light);
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
}

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

.courses-collection {
  width: 100%;
}

.home-4-testimonials-wrapper, .testimonials-wrapper-2 {
  width: 100%;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
  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;
  top: 0%;
  bottom: auto;
  left: 12%;
  right: 0%;
}

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

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

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

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

.subtitle {
  border-bottom: 2px solid rgba(128, 128, 128, .15);
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

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

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

.heading-wrapper {
  width: 80%;
  margin: 30px auto 20px;
}

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

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

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

.industries-block-wrapper:hover {
  box-shadow: 0 10px 20px rgba(20, 23, 51, .15);
}

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

.sidebar-categories-list {
  width: 92%;
  grid-column-gap: 10px;
  margin-left: 0;
  display: flex;
}

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

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

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

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

.home-testimonials-text {
  background-color: rgba(28, 45, 78, .7);
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  display: flex;
  box-shadow: 7px 7px 50px rgba(0, 0, 0, .1);
}

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

.subtitle-2 {
  color: #fc8e44;
  border-bottom: 2px solid rgba(128, 128, 128, .15);
  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, sans-serif;
  transition: color .2s;
  display: flex;
}

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

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

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

.numbers {
  color: var(--primary);
  font-family: Inter, sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2em;
}

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

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

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

.mobile-center {
  border: 0 #000;
  border-right-color: #fff;
  border-radius: 0;
  margin-top: 10px;
}

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

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

.button-wrap {
  grid-column-gap: 30px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 50px;
  display: flex;
}

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

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

.brand-tablet {
  display: none;
}

.brand.sizing-grow {
  flex: 1;
}

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

.social-icon-background {
  width: 40px;
  height: 40px;
  background-color: var(--light-purple);
  border-radius: 50px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
}

.social-icon-background.last {
  margin-right: 0;
}

.line-2 {
  width: 100%;
  height: 1px;
  background-color: var(--paragraph-gray);
  margin-bottom: 40px;
}

.light-gray-style-guide {
  width: 75px;
  height: 75px;
  background-color: var(--gray);
  box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.licensing-wrapper {
  width: 100%;
}

.white-link {
  color: var(--white);
  line-height: 24px;
}

.white-link:hover {
  opacity: .6;
}

.banner-paragraph-wrapper {
  width: 61%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.latest-posts-banner {
  min-height: 40px;
  color: var(--primary);
  background-color: rgba(127, 86, 217, .15);
  border-radius: 50px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 4px 20px 4px 4px;
  display: flex;
  overflow: hidden;
}

.latest-posts-banner.transperent-white {
  background-color: rgba(255, 255, 255, .2);
}

.latest-post-name {
  background-color: var(--primary);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 4px 12px;
  display: flex;
}

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

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

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

.latest-blog {
  width: 100%;
  background-color: var(--white);
  flex-direction: row;
  justify-content: space-between;
  padding: 30px;
  display: flex;
  transform: translate(0, 120px);
  box-shadow: 0 0 24px rgba(0, 0, 0, .08);
}

.latest-blog.transform-80px {
  transform: translate(0, 80px);
}

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

.latest-blog-text {
  color: var(--paragraph-gray);
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-weight: 500;
}

.latest-blog-text.mobile-center {
  font-size: 16px;
  line-height: 1.3em;
}

.blog-links-wrapper {
  width: 35%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.latest-blog-wrapper {
  width: 65%;
}

.category-link-wrapper {
  border: 1px solid var(--paragraph-gray);
  border-radius: 50px;
  padding: 6px 20px;
  transition-duration: .5s;
}

.category-link-wrapper:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.arrow-absolute {
  transition: opacity .3s;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 1%;
}

.arrow-absolute:hover {
  opacity: .6;
}

.category-links-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  align-items: center;
  display: flex;
}

.blog-title {
  padding: 10px 40px 10px 10px;
  font-size: 18px;
  transition: color .2s;
}

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

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

.blog-tabs {
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.blog-collection-list-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  display: block;
  overflow: visible;
}

.blog-tab-category {
  background-color: rgba(0, 0, 0, 0);
  align-self: flex-start;
  padding: 16px 0;
}

.blog-tab-category.w--current {
  background-color: rgba(0, 0, 0, 0);
  align-self: flex-start;
  padding-top: 16px;
  padding-bottom: 16px;
}

.blog-tab-category.first-category {
  flex: 1;
  padding-left: 0;
  padding-right: 0;
}

.blog-tab-category.vertical-tabs {
  width: auto;
  padding-top: 0;
}

.blog-tab-collection-item {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 0;
  padding-left: 0;
}

.tabs-collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  background-color: #fff;
  border-radius: 0;
  flex-flow: wrap;
  grid-template-rows: minmax(auto, 1fr);
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: start;
  display: grid;
}

.tabs-collection-list.two-rows {
  grid-column-gap: 30px;
  grid-template-columns: 1fr 1fr;
}

.tabs-collection-list.one-row {
  grid-row-gap: 50px;
  grid-template-columns: 1fr;
}

.home-1-tabs-menu {
  width: 95%;
  grid-column-gap: 30px;
  border-bottom: 1px solid var(--dark-gray);
  justify-content: flex-start;
  margin-bottom: 40px;
  display: flex;
}

.author-and-date-wrapper {
  background-color: var(--light-purple);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  display: flex;
}

.dot {
  width: 5px;
  height: 5px;
  background-color: var(--black);
  border-radius: 50px;
  margin-left: 5px;
  margin-right: 5px;
}

.post-item-wrapper {
  width: auto;
  grid-row-gap: 5px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-right: 10px;
  display: flex;
  position: relative;
}

.post-item-wrapper.without-desktop-margin {
  margin-top: 0;
  margin-bottom: 5px;
}

.blog-tabs-image {
  justify-content: center;
  align-items: center;
  display: flex;
}

.blog-tabs-image:hover {
  object-fit: contain;
}

.section-background {
  width: 100%;
  min-height: 500px;
  background-image: url('../images/eyecatch.webp');
  background-position: 50% 10%;
  background-size: cover;
  justify-content: center;
  align-items: flex-end;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  position: relative;
}

.about-our-blog {
  width: 43%;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.home-testimonials {
  width: 50%;
  height: 480px;
}

.home-slider-content {
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
}

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

.home-about-text-wrapper {
  margin-bottom: 40px;
}

.home-testimonial-quote {
  width: 85%;
}

.home-testimonial-quote.about-page {
  width: 93%;
}

.quote-name-text {
  font-weight: 400;
}

.quote-name-text.white-text {
  margin-top: 20px;
}

.partners-say-wrapper {
  width: 100%;
  grid-column-gap: 80px;
  margin-bottom: 50px;
  display: flex;
}

.partner-image {
  width: 320px;
  background-image: url('../images/aiony-haust-rhVeNHHNbdk-unsplash-1_1aiony-haust-rhVeNHHNbdk-unsplash (1).webp');
  background-position: 50% 35%;
  background-size: cover;
  flex-direction: row;
  align-items: stretch;
}

.partner-image.slider-image-2 {
  background-image: url('../images/Rectangle-11_1Rectangle 11.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.partner-image.slider-image-3 {
  background-image: url('../images/Rectangle-22_1Rectangle 22.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.partner-quote {
  width: 65%;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.main-section-home-1 {
  background-color: var(--white);
  padding-top: 60px;
  position: relative;
}

.hero-banner-wrapper {
  width: 100%;
  grid-row-gap: 80px;
  background-color: #fff;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 160px;
  display: flex;
}

.slider-about-us {
  background-image: url('../images/Rectangle-11_1Rectangle 11.webp');
  background-position: 50%;
  background-size: cover;
}

.slider-about-us.image-1 {
  background-image: url('../images/merit3.webp');
}

.slider-about-us.slider-image-2 {
  background-image: url('../images/Rectangle-15-2_1Rectangle 15 (2).webp');
}

.slider-about-us.slider-image-3 {
  background-image: url('../images/Rectangle-22_1Rectangle 22.webp');
}

.author-name {
  color: var(--primary);
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5em;
}

.post-date {
  color: var(--primary);
  font-family: Inter, sans-serif;
  font-size: 11px;
  line-height: 1.5em;
}

.category-underline {
  height: 4px;
  background-color: var(--primary);
  padding-top: 4px;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0%;
  right: 0%;
}

.category-underline.first {
  max-width: 12%;
}

.partners-logo-wrapper {
  width: 100%;
  grid-column-gap: 30px;
  background-color: var(--white);
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  display: flex;
  box-shadow: 0 11px 16px rgba(16, 24, 40, .03);
}

.home-counter {
  width: 100%;
  border-top: 1px solid #eaecf0;
  border-bottom: 1px solid #eaecf0;
  justify-content: space-around;
  margin-top: 80px;
  padding-top: 64px;
  padding-bottom: 64px;
  display: flex;
}

.home-counter.without-top-spacing {
  margin-top: 0;
}

.counter-number-wrapper {
  width: 30%;
  grid-row-gap: 12px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.partner-position {
  margin-top: 0;
}

.newsletter-wrapper {
  width: 100%;
  background-color: var(--primary-dark);
  justify-content: space-between;
  display: flex;
}

.newsletter-section-bg-image {
  width: 45%;
  object-fit: cover;
  background-image: url('../images/AdobeStock_501287663.png');
  background-position: 0 0;
  background-size: cover;
}

.subscribe-field-wrapper {
  width: 45%;
  flex-direction: column;
  margin-top: 100px;
  margin-bottom: 100px;
  margin-right: 60px;
  display: flex;
}

.email-field {
  border: 1px solid var(--primary-light);
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 5px;
  margin-bottom: 0;
  padding: 22px 20px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
}

.email-field:active {
  border: 1px solid var(--white);
}

.email-field:focus {
  border: 1px solid var(--white);
  color: var(--white);
}

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

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

.email-field.grid-banner {
  min-width: 300px;
  border-color: var(--paragraph-gray);
  color: var(--white);
}

.email-field.grid-banner:active {
  color: var(--white);
}

.email-field.post-detais {
  border-color: var(--paragraph-gray);
  color: var(--paragraph-gray);
}

.email-field.post-detais:focus {
  color: var(--paragraph-gray);
}

.email-field.post-detais:focus-visible {
  color: var(--paragraph-gray);
}

.email-field.post-detais[data-wf-focus-visible] {
  color: var(--paragraph-gray);
}

.email-field.post-detais::-ms-input-placeholder {
  color: var(--paragraph-gray);
}

.email-field.post-detais::placeholder {
  color: var(--paragraph-gray);
}

.subscribe-newsletter-form {
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
}

.subscribe-newsletter-form.post-details {
  grid-row-gap: 20px;
  flex-wrap: wrap;
}

.submit-button {
  background-color: var(--white);
  color: var(--primary-dark);
  border-radius: 5px;
  padding: 10px 30px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  line-height: 24px;
  transition: all .5s;
}

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

.submit-button.full-width {
  border: 1px solid var(--white);
  display: block;
}

.submit-button.full-width:hover {
  border-color: var(--white);
}

.submit-button.full-width.post-details {
  background-color: var(--primary);
  color: var(--white);
}

.submit-button.full-width.post-details:hover {
  background-color: var(--white);
  color: var(--primary-dark);
}

.submit-button.purple {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--primary-light);
}

.submit-button.purple:hover {
  border: 1px solid var(--white);
  background-color: rgba(0, 0, 0, 0);
}

.submit-button.contact-us {
  width: 100%;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--primary-light);
}

.submit-button.contact-us:hover {
  background-color: var(--white);
  color: var(--primary-dark);
  border-style: solid;
  border-width: 1px;
}

.banner-latest-post {
  grid-column-gap: 20px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.home-banner-bg {
  z-index: -1;
  background-color: var(--primary-light);
  position: absolute;
  top: -11%;
  bottom: 25%;
  left: 0%;
  right: 0%;
}

.subscribe-form-block {
  margin-top: 50px;
  margin-bottom: 0;
}

.subscribe-form-block.blog-grid-form {
  margin-top: 40px;
}

.subscribe-form-block.post-details {
  margin-top: 25px;
}

.success-message {
  background-color: var(--white);
  border-radius: 5px;
  padding: 20px;
}

.error-message {
  background-color: var(--gray);
  border-radius: 5px;
}

.error-message.post-details, .error-message.contact-form-message {
  background-color: var(--error-bg);
}

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

.error-message-text.post-details {
  color: var(--primary-dark);
  font-size: 18px;
  line-height: 1.2em;
}

.error-message-text.contact-form-error-text, .error-message-text.password {
  color: var(--error-text);
}

.success-message-text {
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.success-message-text.detaild-page {
  font-size: 16px;
  line-height: 1.2em;
}

.partner-logo {
  width: auto;
  height: 35px;
  object-fit: cover;
}

.subscribe-newsletter-content {
  width: 85%;
}

.home-2-banner-content-wrapper {
  width: 100%;
  grid-column-gap: 70px;
  justify-content: space-between;
  display: flex;
}

.banner-text-content-wrapper {
  width: 50%;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.banner-text-content-wrapper.margin-left {
  margin-left: 70px;
}

.banner-bg-image-wrapper {
  width: 49%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.latest-blog-content {
  background-color: var(--white);
  flex-direction: column;
  margin-top: -200px;
  margin-left: -60px;
  margin-right: 30px;
  padding: 30px;
  display: flex;
  position: relative;
  box-shadow: 2px 24px 20px rgba(0, 0, 0, .03);
}

.latest-blog-links {
  flex-direction: row;
  align-items: center;
  margin-top: 20px;
  display: flex;
  position: relative;
}

.latest-post-wrapper {
  margin-bottom: 30px;
}

.post-arrow {
  transition-property: all;
}

.post-arrow:hover {
  opacity: .6;
}

.post-arrow.margin-top {
  margin-top: 20px;
}

.image-transform-wrapper {
  overflow: hidden;
}

.image-transform-wrapper.horizontal-image {
  width: 50%;
}

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

.tabs-image.min-height {
  min-height: 250px;
}

.banner-logo-wrapper {
  width: 100%;
  grid-column-gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 70px;
  display: flex;
}

.logo-banner {
  height: 32px;
}

.partners-section {
  background-color: var(--primary-light);
  padding-top: 80px;
  padding-bottom: 80px;
  display: none;
}

.vertical-tabs {
  width: 100%;
  align-items: flex-start;
  display: flex;
}

.tabs-menu-vertical {
  grid-row-gap: 30px;
  flex-direction: column;
  margin-right: 50px;
  display: flex;
}

.testimolials-home-slider {
  width: 50%;
  height: 480px;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: flex-end;
}

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

.slider-text-wrapper {
  background-color: var(--primary);
  flex-direction: column;
  justify-content: center;
  padding: 23px 20px;
  display: flex;
}

.slider-content-wrapper {
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
}

.counter-wrapper {
  width: 100%;
  border-top: 1px solid #eaecf0;
  justify-content: space-around;
  margin-top: 80px;
  padding-top: 60px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.counter-wrapper.border-bottom {
  border-bottom: 1px solid #eaecf0;
  padding-top: 30px;
  padding-bottom: 30px;
}

.category-tab-text {
  transition: color .3s;
}

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

.animated-link-wrapper {
  height: 32px;
  flex-direction: column;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.bottom-link {
  color: var(--primary-dark);
}

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

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

.partner-testimonials-slider {
  z-index: 1;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: row;
  padding-bottom: 100px;
  overflow: hidden;
}

.partners-testimonial-content {
  height: 100%;
  background-color: #eaecf0;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  display: flex;
}

.parnter-testimonial-slide {
  width: 100%;
  height: 480px;
  margin-right: 30px;
}

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

.parnter-testimonials-text-wrapper {
  background-color: var(--white-50);
  padding: 24px;
}

.partners-testimonials-image-and-position {
  width: 100%;
  grid-column-gap: 17px;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.partner-name {
  color: var(--primary);
  font-family: Inter, sans-serif;
  font-weight: 700;
}

.partners-testimonials-title-wrapper {
  width: 65%;
  margin-bottom: 50px;
}

.blog-title-wrapper {
  background-image: url('../images/Icon-3.svg');
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  font-size: 14px;
}

.margin-left-wrapper {
  margin-left: 1.5%;
  position: relative;
}

.max-with-container {
  max-width: 100%;
}

.latest-blog-text-wrapper {
  align-items: center;
  margin-left: 12px;
  padding-left: 10px;
  display: flex;
}

.read-time-text {
  margin-top: 6px;
  margin-bottom: 6px;
}

.testimonials-slider-left-arrow {
  z-index: 100;
  width: 56px;
  height: 56px;
  border: 1px solid var(--paragraph-gray);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
  top: auto;
  left: 0%;
  right: auto;
}

.testimonials-slider-right-arrow {
  z-index: 10;
  width: 56px;
  height: 56px;
  border: 1px solid var(--paragraph-gray);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
  top: auto;
  left: 88px;
  right: auto;
}

.testimonials-section {
  background-color: var(--primary-light);
  padding-top: 80px;
  padding-bottom: 80px;
}

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

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

.testimonials-section.about-testimonail {
  background-color: var(--white);
  padding-top: 0;
  padding-bottom: 0;
}

.about-our-blog-slider {
  background-image: url('../images/Intersect_1Intersect.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.about-our-blog-slider.image-2 {
  background-image: url('../images/Intersect-2-1_1Intersect (2) (1).webp');
  background-position: 50%;
  background-size: contain;
}

.about-our-blog-slider.image-3 {
  background-image: url('../images/Intersect-3-1_1Intersect (3) (1).webp');
  background-position: 50%;
  background-size: contain;
}

.how-we-can-help-wrapper {
  width: 100%;
  grid-column-gap: 50px;
  display: flex;
  overflow: hidden;
}

.how-we-can-help-wrapper.overflow-visible {
  justify-content: space-between;
}

.how-we-can-help-you {
  width: 50%;
  grid-row-gap: 20px;
  flex-direction: column;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
}

.service-option {
  grid-row-gap: 10px;
  flex-direction: row;
  justify-content: flex-start;
  display: flex;
  overflow: hidden;
}

.service-option.about-page {
  justify-content: flex-start;
}

.service-options-wrapper {
  border-left: 2px rgba(102, 112, 133, .3);
  flex-direction: column;
  display: flex;
  position: relative;
}

.service-title {
  width: 80%;
  margin-top: -10px;
  margin-bottom: 50px;
}

.service-options-text-wrapper {
  width: 80%;
  grid-row-gap: 10px;
  border-left: 2px solid var(--dark-gray-50);
  flex-direction: column;
  padding-bottom: 10px;
  padding-left: 30px;
  display: flex;
  position: relative;
}

.service-options-text-wrapper.last {
  padding-bottom: 0;
}

.service-options-text-wrapper.about-page {
  width: 70%;
}

.service-link-arrow-wrapper {
  width: 15%;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  transition-property: all;
  display: flex;
}

.service-link-arrow-wrapper:hover {
  opacity: .5;
}

.service-link-arrow-wrapper.about-page {
  align-items: center;
}

.service-animated-line {
  z-index: 11;
  width: 2px;
  height: 100%;
  background-color: var(--primary);
  padding-left: 2px;
  position: absolute;
  top: 0;
  bottom: auto;
  left: -2px;
  right: auto;
  transform: translate(0, -100%);
}

.testimonials-slider-wrapper {
  z-index: 1;
  width: 56%;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
  overflow: hidden;
}

.testimonials-slider-wrapper.about-page {
  overflow: visible;
}

.service-testimonials-slider {
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.service-testimonials-slider.about-page {
  width: 470px;
  align-self: flex-end;
  margin-right: -20px;
}

.service-slider-content-wrapper {
  width: 450px;
  height: 100%;
  background-image: url('../images/pexels-fauxels-3182755.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.service-slider-content-wrapper.service-image-2 {
  background-image: url('../images/Slider-image-1.jpg');
  background-position: 50%;
  background-size: cover;
}

.service-slider-content-wrapper.service-image-3 {
  background-image: url('../images/Slider-image-2.jpg');
  background-position: 50%;
  background-size: cover;
}

.service-slider-content-wrapper.alight-right {
  align-items: flex-end;
}

.service-testimonial-slide {
  overflow: hidden;
}

.service-testimonial-slide.about-us-slide {
  overflow: visible;
}

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

.service-testimonials-quote-wrapper {
  width: 550px;
  min-width: 100%;
  background-color: var(--white);
  box-shadow: 4px 9px 24px 5px var(--gray);
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 50px;
  margin-left: 30px;
  padding: 33px 20px;
  display: flex;
  overflow: hidden;
}

.service-testimonials-quote-wrapper.about-page {
  width: 500px;
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: 60px;
  box-shadow: -3px 4px 11px 4px rgba(102, 112, 133, .05);
}

.home-2-testimonials-slider-mask {
  z-index: 1;
  width: 35%;
  overflow: visible;
}

.testimonial-author-image {
  width: 50px;
  height: 50px;
  border-radius: 50px;
}

.banner-bg-image {
  width: 100%;
  height: 460px;
  max-width: 500px;
  background-image: url('../images/banner-image_1banner image.webp');
  background-position: 50%;
  background-repeat: repeat-x;
  background-size: cover;
}

.service-slider-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
  top: auto;
  bottom: 75px;
  left: auto;
  right: 20px;
}

.service-slider-arrow.left {
  right: 78px;
}

.service-slider-arrow.left.alight-right {
  right: 158px;
}

.service-slider-arrow.alight-right {
  top: auto;
  bottom: 55px;
  left: auto;
  right: 100px;
}

.categories-wrapper {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.partners-say-slider {
  width: 100%;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
}

.partners-say-slider-content {
  height: auto;
  grid-column-gap: 80px;
  flex-direction: row;
  display: flex;
}

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

.partners-testimonials-arrow {
  width: 56px;
  height: 56px;
  border: 1px solid var(--paragraph-gray);
  border-radius: 50px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.partners-testimonials-arrow.right {
  border-color: var(--paragraph-gray);
}

.partners-testimonials-arrow.left {
  right: 88px;
}

.home-3-banner-section {
  height: 100vh;
  align-items: flex-end;
  padding-bottom: 220px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-banner-background {
  z-index: -2;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, 0)), linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url('../images/eyecatch.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  align-items: flex-end;
  position: absolute;
  top: -15%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.banner-content-wrapper {
  width: 100%;
  grid-column-gap: 70px;
  display: flex;
}

.tabs-text-content-wrapper {
  width: 50%;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.tabs-text-content-wrapper.recent-post-main {
  width: 100%;
}

.best-post-wrapper {
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

.recent-posts-title {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  display: flex;
}

.recent-blog-posts {
  width: 100%;
  display: flex;
}

.button-with-arrow {
  border: 2px solid var(--primary);
  background-color: var(--primary);
  color: var(--primary-light);
  border-radius: 5px;
  margin-top: 50px;
  padding: 10px 30px;
  line-height: 24px;
  display: flex;
}

.service-title-link {
  transition: opacity .3s;
}

.service-title-link:hover {
  opacity: .5;
}

.home-banner-paragraph-wrapper {
  width: 90%;
  margin-bottom: 10px;
}

.main-recent-post {
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.home-3-banner-title {
  color: var(--primary-light);
  font-family: Noto Sans JP, sans-serif;
  font-size: 50px;
  font-weight: 500;
}

.logo-wrapper {
  width: 50%;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
}

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

.home-3-logo {
  height: 35px;
  transition: all .45s;
}

.home-3-logo:hover {
  opacity: .5;
}

.banner-3-paragraph-wrapper {
  margin-bottom: 10px;
}

.recent-post-collection-list {
  width: 100%;
  grid-column-gap: 30px;
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.recent-post-item {
  width: 50%;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.recent-post-item:first-child {
  width: 100%;
  min-width: 400px;
}

.best-post-content-wrapper {
  width: 100%;
  grid-column-gap: 30px;
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.bg-color {
  width: 50%;
  max-width: 470px;
  background-color: var(--primary);
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 50px;
  margin-right: 60px;
  padding: 50px;
  display: flex;
  position: relative;
}

.bg-image-wrapper {
  width: 260px;
  min-height: 260px;
  background-image: url('../images/Picture-of-woman_1Picture of woman.webp');
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-size: 300px;
  margin-top: -50px;
  margin-right: -60px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.bg-color-content-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-direction: column;
  flex: 1;
  align-self: stretch;
  display: flex;
}

.bg-color-bottom-content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.round-image-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50px;
  overflow: hidden;
}

.bg-color-bottom-content {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.bg-color-block-paragraph-wrapper {
  width: 65%;
}

.clients-image-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.best-post-title-wrapper {
  width: 84%;
  margin-bottom: 30px;
}

.best-post-paragraph {
  width: 75%;
  margin-top: 0;
  margin-bottom: 0;
}

.find-best-post-wrapper {
  width: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.percent-number {
  color: var(--primary-light);
}

.home-3-banner-title-wrapper {
  margin-bottom: 20px;
}

.button-arrow-icon {
  margin-left: 10px;
}

.why-choose-us-wrapper {
  width: 100%;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.paragraph-wrapper {
  width: 74%;
  margin-top: 20px;
}

.counter-without-borders {
  width: 100%;
  grid-column-gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.right-choice-wrapper {
  width: 100%;
  grid-column-gap: 50px;
  background-color: var(--white);
  box-shadow: 0 0 24px 0 var(--gray);
  justify-content: space-between;
  margin-top: 80px;
  padding: 35px;
  display: flex;
}

.right-choice-content-left-wrapper {
  width: 45%;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.right-choice-content-right-wrapper {
  width: 55%;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.rounded-corner-image {
  min-height: 130px;
  background-image: url('../images/Coffe-interview_1Coffe interview.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 10px;
  margin-top: 30px;
  overflow: hidden;
}

.choice-wrapper {
  width: auto;
  background-color: rgba(127, 86, 217, .1);
  border: 1px solid rgba(127, 86, 217, .4);
  border-radius: 60px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px 10px 30px;
  transition: all .3s;
  display: flex;
}

.choice-wrapper:hover {
  box-shadow: 5px 5px 0 0 var(--primary);
}

.choice-category {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.choice-arrow-wrapper {
  width: 40px;
  height: 40px;
  border: 1px solid var(--white);
  background-color: rgba(255, 255, 255, .6);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  margin-left: 40px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  display: flex;
}

.choice-categories-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.title-right-choice {
  margin-bottom: 20px;
}

.home-4-banner-section {
  z-index: 9;
  background-color: var(--white);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 60px;
  display: flex;
  position: relative;
}

.banner-4-wrapper {
  width: 100%;
  justify-content: flex-end;
  display: flex;
}

.home-4-banner-bg-image {
  width: 44%;
  background-image: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, 0) 70%), linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url('../images/Bg-Banner-Image_1Bg Banner Image.webp');
  background-position: 0 0, 0 0, 50%;
  background-size: auto, auto, cover;
  position: absolute;
  top: -11%;
  bottom: 0%;
  left: 0%;
}

.home-4-banner-title-wrapper {
  width: 90%;
  margin-bottom: 20px;
}

.banner-4-paragraph-wrapper {
  width: 95%;
  margin-bottom: 10px;
}

.value-section {
  position: relative;
}

.values-title-and-image-wrapper {
  width: 50%;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
}

.value-cards-wrapper {
  width: 73%;
  grid-column-gap: 20px;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.value-image-wrapper {
  min-height: 400px;
  background-image: url('../images/Two-woman-talking_1Two woman talking.webp');
  background-position: 50%;
  background-size: cover;
  margin-top: 50px;
}

.values-card {
  min-height: 300px;
  background-color: var(--white);
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  display: flex;
  box-shadow: 0 10px 25px rgba(175, 175, 175, .3);
}

.vallue-icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: var(--light-purple);
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.value-container {
  max-width: 1200px;
  align-items: center;
  padding: 160px 15px 80px;
  display: flex;
  position: relative;
}

.background-lines-wrapper {
  z-index: -1;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: row;
  align-content: stretch;
  justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.background-line {
  width: 1px;
  height: 1%;
  background-color: rgba(102, 112, 133, .2);
  position: absolute;
  transform: translate(0, 95%);
}

.background-star {
  width: 18px;
  height: 18px;
  margin-bottom: 22px;
  margin-left: -8px;
}

.background-star.star-2 {
  margin-bottom: 20px;
  margin-left: -8px;
  top: 180px;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.background-star.star-3 {
  margin-bottom: 50px;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.background-star.star-4 {
  margin-top: 110px;
  margin-bottom: 0;
}

.background-star.star-5 {
  margin-left: 0;
  margin-right: -8px;
}

.about-us-top-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-us-top-section.without-bottom-spacing {
  padding-top: 80px;
  padding-bottom: 0;
}

.service-slider-mask {
  align-self: flex-start;
  overflow: visible;
}

.about-us-top-section-text-wrapper {
  width: 60%;
}

.about-top-paragrapher-wrapper {
  width: 80%;
}

.about-us-top-images-wrapper {
  z-index: 1;
  grid-column-gap: 30px;
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
}

.about-us-top-image {
  width: 100rem;
  height: 320px;
  max-width: 250px;
  min-width: 175px;
  object-fit: cover;
}

.about-us-top-image.top-margin {
  margin-top: 50px;
}

.about-us-top-image.center-image {
  margin-top: -40px;
}

.companies-logo-wrapper {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.about-logo-wrapper {
  width: 100%;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.clients-say-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.about-us-top-heading {
  font-size: 50px;
}

.about-us-top-heading._20-margin-bottom {
  margin-top: 0;
}

.client-testimonial {
  width: 75%;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.testimonials-round-image {
  width: 64px;
  height: 64px;
  background-color: #a2a8cd;
  border-radius: 50px;
  margin-top: 30px;
  margin-bottom: 15px;
  overflow: hidden;
}

.about-client-name {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
}

.about-client-position {
  margin-top: 5px;
  margin-bottom: 0;
  font-weight: 500;
}

.right-choice-paragraph {
  margin-bottom: 0;
}

.left-cards-wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.right-cards-wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  margin-top: 30px;
  display: flex;
}

.about-video-wrapper {
  width: 100%;
  min-height: 550px;
  background-image: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url('../images/About-Video-BG_1About Video BG.webp');
  background-position: 0 0, 50% 5%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  display: flex;
}

.about-latest-post-wrapper {
  width: 100%;
  grid-row-gap: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.about-latest-posts-collection {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: inline-block;
}

.about-latest-post {
  width: 100%;
  border-bottom: 1px solid var(--primary-dark);
  margin-top: 0;
  margin-bottom: 10px;
  margin-right: 30px;
  padding-left: 0;
  padding-right: 0;
}

.about-latest-post:last-child {
  margin-right: 0;
}

.about-latest-posts-collection-wrapper {
  justify-content: center;
  display: block;
}

.video-button-wrapper {
  grid-column-gap: 20px;
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all .3s;
  display: flex;
}

.video-text {
  color: var(--white);
  margin-top: 10px;
  transition: opacity .3s;
}

.video-text:hover {
  opacity: .68;
}

.video-button {
  transition: all .3s;
}

.video-button:hover {
  transform: scale(1.2);
}

.about-light-background {
  z-index: -1;
  background-color: #f2f4f7;
  position: absolute;
  top: 0%;
  bottom: 22%;
  left: 0%;
  right: 0%;
}

.clients-say-section {
  padding-top: 80px;
  position: relative;
}

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

.blog-grid-banner {
  grid-row-gap: 100px;
  flex-direction: column;
  padding-top: 130px;
  padding-bottom: 120px;
  display: flex;
  position: relative;
}

.blog-grid-banner-title {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 56px;
}

.blog-grid-banner-paragraph-wrapper {
  width: 62%;
}

.blog-grid-banner-bg {
  z-index: -1;
  background-color: var(--blog-grid-banner-bg);
  position: absolute;
  top: 0%;
  bottom: 40%;
  left: 0%;
  right: 0%;
}

.pagination {
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-top: 40px;
}

.pagination-line {
  width: 100%;
  height: 1px;
  background-color: rgba(102, 112, 133, .4);
  margin-bottom: 35px;
}

.next {
  border-color: var(--paragraph-gray);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 5px;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 30px;
  transition: opacity .3s;
  display: flex;
}

.next:hover {
  opacity: .5;
}

.pagination-arrow {
  width: 15px;
  height: 15px;
  margin-left: 12px;
}

.previous {
  border-color: var(--paragraph-gray);
  color: var(--paragraph-gray);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  padding: 10px 30px;
  transition: opacity .3s;
  display: flex;
}

.previous:hover {
  opacity: .5;
}

.pagination-text {
  color: var(--paragraph-gray);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
}

.pagination-arrow-prev {
  width: 15px;
  height: 15px;
  margin-right: 12px;
}

.blog-search {
  min-width: 300px;
  border: 1px solid var(--paragraph-gray);
  border-radius: 5px;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  margin-bottom: 35px;
  display: flex;
  position: relative;
}

.blog-search.hidden-desktop {
  display: none;
}

.blog-search.search-page {
  max-width: 300px;
  border-color: var(--white);
  align-self: auto;
  margin-bottom: 0;
}

.search-input {
  color: var(--paragraph-gray);
  text-align: justify;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 5px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
}

.search-input:active, .search-input:focus {
  color: var(--paragraph-gray);
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
}

.search-input:focus-visible {
  color: var(--paragraph-gray);
  background-color: rgba(0, 0, 0, 0);
}

.search-input[data-wf-focus-visible] {
  color: var(--paragraph-gray);
  background-color: rgba(0, 0, 0, 0);
}

.search-input::-ms-input-placeholder {
  color: var(--paragraph-gray);
  background-color: rgba(0, 0, 0, 0);
}

.search-input::placeholder {
  color: var(--paragraph-gray);
  background-color: rgba(0, 0, 0, 0);
}

.search-input.transperent {
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
}

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

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

.search-button {
  width: 30%;
  color: var(--primary);
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/Frame-5.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: "Fa solid 900", sans-serif;
  font-weight: 400;
}

.search-button.white-icon {
  background-image: url('../images/Frame-6.svg');
  background-position: 50%;
  background-size: auto;
}

.second-service-animated-line {
  z-index: 11;
  width: 2px;
  height: 100%;
  background-color: var(--primary);
  padding-left: 2px;
  position: absolute;
  top: 0;
  left: -2px;
  transform: translate(0, -100%);
}

.third-service-animated-line {
  width: 2px;
  height: 100%;
  background-color: var(--primary);
  position: absolute;
  top: 0;
  left: -2px;
  transform: translate(0, -100%);
}

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

.page-count {
  width: 88%;
  color: var(--paragraph-gray);
  display: none;
}

.blog-details-section {
  min-height: 300px;
  background-image: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), linear-gradient(82deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, 0));
  justify-content: flex-start;
  align-items: flex-end;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.blog-details-title {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 50px;
}

.blog-details-title-wrapper {
  width: 100%;
  padding-top: 40px;
}

.blog-details-banner-wrapper {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.blog-details-description {
  color: var(--white);
}

.caregory-and-reading-time-wrapper {
  grid-column-gap: 12px;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.reading-time-wrapper {
  border: 1px solid var(--white);
  background-color: rgba(255, 255, 255, .3);
  border-radius: 50px;
  margin-bottom: 10px;
  padding: 6px 20px;
  display: inline-block;
}

.time-to-read-text {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2em;
}

.blog-details-rich-text-section {
  padding-top: 80px;
  padding-bottom: 0;
  position: relative;
}

.rich-text-wrapper {
  width: 100%;
  grid-column-gap: 30px;
  align-items: flex-start;
  display: flex;
}

.post-details-subscribe-newsletters {
  z-index: 20;
  min-width: 350px;
  grid-column-gap: 25px;
  background-color: #eaecf0;
  flex-direction: column;
  padding: 20px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.rich-text {
  border-bottom: 1px solid rgba(102, 112, 133, .4);
  padding-bottom: 40px;
}

.rich-text p {
  font-size: 18px;
}

.rich-text h2 {
  margin-bottom: 30px;
  font-size: 35px;
}

.rich-text img {
  max-height: none;
}

.rich-text h3 {
  margin-bottom: 20px;
  font-size: 25px;
}

.blog-latest-posts-wrapper {
  width: 100%;
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.list {
  list-style-type: disc;
}

.blog-classic-pagination {
  justify-content: space-between;
}

.blog-sidebar-image {
  padding-left: 0;
  transition: all 1s;
}

.blog-sidebar-image:hover {
  transform: scale(1.2);
}

.recent-posts-wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.blog-sidebar-left {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  display: flex;
}

.sidebar-post-title {
  margin-top: 0;
  font-size: 22px;
  transition: all .3s;
}

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

.sidebar-category-wrapper {
  min-height: 100%;
  margin-top: 10px;
}

.category-banner-section {
  min-height: 400px;
  background-image: linear-gradient(106deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, 0) 50%), linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4));
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.category-banner-background {
  z-index: -1;
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.category-banner-title {
  color: var(--white);
  font-size: 62px;
}

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

.blog-category-title {
  transition: all .3s;
}

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

.blog-details-latest-post-title {
  font-size: 35px;
}

.blog-details-latest-posts-title {
  font-size: 18px;
  transition: all .3s;
}

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

.author-content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.authors-image-wrapper {
  height: 250px;
  min-width: 250px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.our-author-image {
  max-width: 250px;
  object-fit: cover;
  transition: all 1s;
}

.author-overlay {
  z-index: 3;
  background-image: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3));
  transition-property: all;
  transition-duration: .5s;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.details-author-image-wrapper {
  height: 400px;
  min-width: 320px;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.author-details-banner-content-wrapper {
  grid-column-gap: 60px;
  display: flex;
}

.details-author-image {
  height: 400px;
  max-width: 320px;
  object-fit: cover;
}

.author-details-banner-title {
  margin-top: 0;
  font-size: 50px;
}

.author-details-banner {
  padding-top: 60px;
  padding-bottom: 0;
  position: relative;
}

.author-rich-text {
  border-bottom: 1px solid rgba(102, 112, 133, .3);
  padding-bottom: 20px;
}

.author-rich-text h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 36px;
}

.author-rich-text p {
  font-size: 18px;
}

.author-rich-text figure {
  padding-top: 10px;
  padding-bottom: 10px;
}

.author-rich-text li {
  margin-top: 0;
  margin-bottom: 0;
}

.author-rich-text h3 {
  font-size: 26px;
}

.author-rich-text figcaption {
  border-radius: 20px;
  padding: 30px 29px 30px 30px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2em;
}

.author-latest-posts {
  width: 100%;
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

.author-latest-post-title {
  margin-top: 0;
  font-size: 36px;
}

.author-details-banner-title-wrapper {
  flex-direction: column;
  align-self: flex-start;
  display: flex;
}

.author-details-social-icon-wrapper {
  grid-column-gap: 10px;
  margin-top: 20px;
  margin-bottom: 50px;
  display: flex;
}

.author-details-social-icon {
  width: 30px;
  height: 30px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  justify-content: center;
  transition-property: all;
  transition-duration: .4s;
  display: flex;
}

.author-details-social-icon:hover {
  opacity: .7;
}

.author-social-icon {
  color: var(--primary);
  font-family: "Fa brands 400", sans-serif;
}

.author-details-bg {
  z-index: -1;
  min-height: 460px;
  background-color: var(--primary-light);
  position: absolute;
  top: -13%;
  left: 0%;
  right: 0%;
}

.services-title-wrapper {
  width: 45%;
  text-align: center;
}

.author-details-summary-wrapper {
  width: 75%;
}

.latest-authors-posts {
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
}

.other-details-position {
  color: var(--primary);
}

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

.heading-404 {
  color: var(--primary);
  font-size: 160px;
}

.background-video {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.play-state {
  display: none;
}

.succes-submission-text {
  font-family: Inter, sans-serif;
}

.coming-soon-subscribe-field {
  min-width: 300px;
  grid-column-gap: 20px;
  grid-row-gap: 15px;
  display: flex;
}

.meet-authors-section {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.half-team-wrapper {
  width: 100%;
  grid-column-gap: 50px;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.authors-wrapper {
  width: 68%;
  border-left: 1px solid rgba(102, 112, 133, .2);
  padding-left: 40px;
}

.sticky-team-description {
  width: 45%;
  align-self: flex-start;
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
}

.author-wrapper {
  grid-column-gap: 30px;
  border-bottom: 1px solid rgba(102, 112, 133, .2);
  flex-direction: row;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  position: relative;
}

.author-position-text {
  color: var(--primary);
  font-family: Inter, sans-serif;
  font-weight: 500;
  line-height: 1.5em;
}

.authors-list {
  flex-direction: column;
  display: flex;
}

.meet-our-authors-paragraph {
  margin-top: 20px;
  margin-bottom: 40px;
}

.author-wrapper-animated-line {
  height: 1px;
  background-color: var(--primary);
  margin-bottom: -1px;
  display: block;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

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

.search-title {
  width: 70%;
  color: var(--white);
  font-size: 62px;
}

.search-bannet-description {
  width: 56%;
}

.search-result-list {
  grid-column-gap: 50px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.search-result-location {
  margin-top: 10px;
  margin-bottom: 10px;
}

.field-label {
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  line-height: 1.2em;
}

.licensing-section {
  min-height: 400px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, .3), rgba(0, 0, 0, 0)), linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url('../images/licensing-page_1licensing page.webp');
  background-position: 0 0, 0 0, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.round-image {
  height: 70px;
  object-fit: cover;
}

.error-password {
  border-radius: 6px;
}

.megeamenu-dropdown-wrapper {
  width: 100%;
  display: flex;
}

.more-templates {
  z-index: 1000;
  width: 140px;
  background-color: var(--white);
  color: var(--black);
  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;
  top: auto;
  bottom: 48px;
  left: auto;
  right: 12px;
}

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

.buy-this-template {
  z-index: 1000;
  background-color: var(--white);
  color: var(--black);
  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;
  top: auto;
  bottom: 12px;
  left: auto;
  right: 12px;
}

.hire-popup {
  z-index: 1000;
  width: 100%;
  max-width: 296px;
  color: var(--white);
  background-color: #1c276d;
  border-radius: 4px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.2em;
  position: fixed;
  top: auto;
  bottom: 5px;
  left: 5px;
  right: auto;
}

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

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

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

.hire-buttons {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  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;
  transition-property: none;
}

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

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

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

.body-2 {
  color: var(--primary-light);
}

.heading-405 {
  text-align: center;
  font-size: 30px;
}

.tab-pane-tab-2 {
  position: relative;
}

.tabs-content {
  overflow: visible;
}

.heading-406 {
  margin-top: 5px;
  font-size: 40px;
  font-weight: 600;
}

.section-2 {
  background-color: #f3f3f3;
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.text-block {
  color: #999;
}

.container {
  padding-left: 10px;
  padding-right: 10px;
}

.container-2 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.category-link-wrapper-copy {
  border: 1px solid var(--paragraph-gray);
  border-radius: 50px;
  padding: 6px 20px;
  transition-duration: .5s;
}

.category-link-wrapper-copy:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.column {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.button-guide {
  border: 1px solid var(--primary-dark);
  color: var(--primary);
  text-align: left;
  background-color: #fff;
  border-radius: 20px;
  font-size: 14px;
}

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

.columns {
  width: 80%;
  margin-left: 0;
  margin-right: 0;
}

.column-2 {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

.collection-item {
  margin-top: 10px;
  margin-bottom: 10px;
}

.link {
  font-size: 14px;
  font-weight: 400;
}

.collection-item-2 {
  margin-top: 10px;
  margin-bottom: 10px;
}

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

  .section.top-banner {
    padding-top: 140px;
  }

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

  .section.searh-results {
    padding-top: 100px;
  }

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

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

  .primary-button.menu-button.margin-left {
    margin-left: 60px;
  }

  .nav-link:active, .nav-link.text-white:active {
    color: var(--primary);
  }

  .banner-title {
    font-size: 70px;
  }

  .banner-title.text-left-desktop {
    font-size: 56px;
  }

  .coming-soon-heading {
    font-size: 72px;
  }

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

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

  .sidebar-category-item {
    justify-content: center;
    align-items: center;
  }

  .footer {
    padding-top: 80px;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: nowrap;
  }

  .values-wrapper {
    grid-column-gap: 70px;
    justify-content: space-between;
  }

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

  .workflow-content-wrapper {
    padding-left: 70px;
  }

  .workflow-video-wrapper {
    max-height: none;
  }

  .workflow-quote {
    margin-top: 20px;
  }

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

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

  .button-wrapper {
    width: 100%;
  }

  .home-testimonials-slider-arrow, .home-testimonials-slider-arrow.right {
    bottom: 25px;
  }

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

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

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

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

  .home-4-banner-title {
    font-size: 52px;
  }

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

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

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

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

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

  .sidebar-categories-list {
    width: 76%;
  }

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

  .home-testimonials-text {
    padding-top: 25px;
    padding-bottom: 25px;
  }

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

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

  .section-background {
    min-height: 520px;
    padding-left: 70px;
    padding-right: 70px;
  }

  .about-our-blog {
    width: 40%;
  }

  .home-testimonial-quote {
    width: 85%;
  }

  .home-testimonial-quote.about-page {
    width: 84%;
  }

  .quote-name-text {
    margin-top: 20px;
  }

  .author-name, .post-date {
    font-size: 14px;
  }

  .category-underline.first {
    max-width: 9%;
  }

  .partners-logo-wrapper {
    grid-column-gap: 40px;
  }

  .home-counter.without-top-spacing {
    padding-top: 64px;
  }

  .subscribe-field-wrapper {
    margin-top: 100px;
    margin-bottom: 100px;
    margin-right: 60px;
  }

  .submit-button {
    font-size: 16px;
    line-height: 24px;
  }

  .home-banner-bg {
    left: 0%;
    right: 0%;
  }

  .partner-logo {
    height: 100%;
  }

  .subscribe-newsletter-content {
    width: 80%;
  }

  .home-2-banner-content-wrapper {
    grid-column-gap: 85px;
  }

  .banner-text-content-wrapper {
    width: 49%;
  }

  .banner-bg-image-wrapper {
    width: 50%;
  }

  .latest-blog-content {
    margin-left: -60px;
    margin-right: 80px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .banner-logo-wrapper {
    width: 100%;
    grid-column-gap: 40px;
    display: flex;
  }

  .logo-banner {
    height: 35px;
  }

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

  .tabs-menu-vertical {
    margin-right: 80px;
  }

  .parnter-testimonial-slide {
    height: 500px;
  }

  .partners-testimonials-title-wrapper {
    width: 60%;
  }

  .margin-left-wrapper {
    margin-left: 4.5%;
  }

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

  .how-we-can-help-wrapper {
    grid-column-gap: 70px;
  }

  .service-options-text-wrapper, .service-options-text-wrapper.about-page {
    width: 65%;
  }

  .testimonials-slider-wrapper {
    width: 50%;
  }

  .service-testimonials-slider.about-page {
    align-self: flex-end;
  }

  .service-testimonial-slide {
    overflow: visible;
  }

  .service-testimonials-quote-wrapper {
    width: 560px;
  }

  .service-testimonials-quote-wrapper.about-page {
    width: 550px;
  }

  .home-2-testimonials-slider-mask {
    width: 32%;
  }

  .banner-bg-image {
    height: 450px;
    max-width: 500px;
  }

  .partners-say-slider {
    min-height: 320px;
  }

  .home-3-banner-section {
    padding-bottom: 100px;
  }

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

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

  .home-3-banner-title {
    font-size: 56px;
  }

  .logo-wrapper {
    width: 51%;
  }

  .company-logo-wrapper {
    grid-column-gap: 40px;
  }

  .home-3-logo {
    height: auto;
  }

  .recent-post-item:first-child {
    min-width: 500px;
  }

  .best-post-content-wrapper {
    grid-column-gap: 150px;
    grid-row-gap: 150px;
  }

  .best-post-paragraph {
    width: 70%;
  }

  .paragraph-wrapper {
    width: 63%;
  }

  .right-choice-wrapper {
    grid-column-gap: 70px;
    margin-top: 130px;
    padding: 50px;
    font-size: 56px;
  }

  .right-choice-content-left-wrapper {
    width: 47%;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .right-choice-content-right-wrapper {
    width: 52%;
  }

  .choice-arrow-wrapper {
    margin-left: 80px;
  }

  .home-4-banner-bg-image {
    width: 45%;
  }

  .home-4-banner-title-wrapper {
    font-size: 56px;
  }

  .banner-4-paragraph-wrapper {
    width: 90%;
  }

  .value-section {
    z-index: auto;
  }

  .value-cards-wrapper {
    width: 68%;
    grid-column-gap: 30px;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .value-image-wrapper {
    min-height: 410px;
  }

  .values-card {
    max-width: 300px;
  }

  .value-container {
    padding-top: 210px;
    padding-bottom: 130px;
  }

  .background-star.star-2 {
    margin-bottom: 50px;
  }

  .background-star.star-3 {
    margin-bottom: 80px;
    margin-left: -8px;
  }

  .background-star.star-4 {
    margin-top: 130px;
  }

  .about-top-paragrapher-wrapper {
    width: 64%;
  }

  .about-us-top-images-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .about-us-top-image {
    height: 320px;
    max-width: 270px;
  }

  .about-us-top-image.center-image {
    margin-top: -40px;
  }

  .about-logo-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .clients-say-wrapper {
    width: 100%;
    justify-content: center;
    display: flex;
  }

  .about-us-top-heading {
    font-size: 56px;
  }

  .client-testimonial {
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .left-cards-wrapper, .right-cards-wrapper {
    grid-row-gap: 30px;
  }

  .about-video-wrapper {
    margin-top: 130px;
  }

  .latest-blog-posts {
    width: 100%;
  }

  .about-latest-posts-collection {
    width: 100%;
    flex-direction: row;
    display: inline-block;
  }

  .about-latest-post:last-child {
    margin-right: 0;
  }

  .about-light-background {
    bottom: 20%;
  }

  .clients-say-section {
    padding-top: 130px;
  }

  .blog-details-section {
    min-height: 300px;
  }

  .blog-details-title-wrapper {
    width: 100%;
  }

  .blog-sidebar-left {
    padding-left: 10px;
  }

  .category-banner-section {
    min-height: 400px;
  }

  .category-banner-title {
    font-size: 72px;
  }

  .author-details-bg {
    min-height: 450px;
  }

  .author-details-summary-wrapper {
    width: 65%;
  }

  .latest-authors-posts {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .heading-404 {
    font-size: 180px;
  }

  .meet-authors-section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .search-bannet-description.text-white {
    width: 47%;
  }

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

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

  .section {
    right: 120px;
  }

  .section.changelog-banner {
    min-height: 420px;
  }

  .section.top-banner {
    min-height: 420px;
    justify-content: center;
    align-items: center;
    padding-top: 150px;
    display: flex;
    right: 0;
  }

  .section.top-banner.contact-us {
    min-height: 380px;
  }

  .text-center {
    font-size: 50px;
  }

  .values-wrapper {
    z-index: 100;
    position: relative;
  }

  .overflow-hidden {
    border-bottom: 1px solid var(--primary-dark);
  }

  .overflow-hidden.horizontal {
    min-height: 245px;
  }

  .banner-buttons-wrapper {
    margin-top: 20px;
  }

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

  .heading-wrapper {
    margin-bottom: 10px;
  }

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

  .home-testimonials-text {
    padding-top: 33px;
    padding-bottom: 33px;
  }

  .about-our-blog {
    width: 36%;
  }

  .home-testimonials {
    height: 500px;
  }

  .home-testimonial-quote {
    width: 83%;
  }

  .main-section-home-1 {
    padding-top: 50px;
  }

  .hero-banner-wrapper {
    grid-row-gap: 70px;
  }

  .subscribe-field-wrapper {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .subscribe-newsletter-content {
    width: 70%;
  }

  .latest-blog-content {
    margin-top: -241px;
  }

  .latest-post-wrapper {
    margin-bottom: 20px;
  }

  .banner-logo-wrapper {
    margin-top: 40px;
  }

  .partners-testimonials-title-wrapper {
    width: 55%;
  }

  .blog-title-wrapper {
    border-bottom: 0px none var(--primary-dark);
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .margin-left-wrapper {
    margin-left: 9.5%;
  }

  .service-testimonials-slider.about-page {
    right: 20px;
  }

  .service-slider-content-wrapper {
    width: 470px;
  }

  .service-testimonials-quote-wrapper.about-page {
    width: 570px;
    margin-right: 100px;
  }

  .home-2-testimonials-slider-mask {
    width: 30%;
  }

  .service-slider-arrow.left.alight-right {
    right: 178px;
  }

  .service-slider-arrow.alight-right {
    right: 120px;
  }

  .recent-post-item:first-child {
    min-width: 550px;
  }

  .home-4-banner-section {
    padding-top: 30px;
  }

  .home-4-banner-bg-image {
    width: 46%;
    top: -12%;
  }

  .home-4-banner-title-wrapper {
    margin-bottom: 10px;
  }

  .banner-4-paragraph-wrapper {
    margin-bottom: 0;
  }

  .about-top-paragrapher-wrapper {
    width: 68%;
  }

  .about-us-top-image {
    height: 340px;
  }

  .about-us-top-image.last {
    margin-right: 0;
  }

  .about-latest-posts-collection {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    display: inline-block;
  }

  .blog-details-section {
    min-height: 300px;
  }

  .category-banner-section {
    min-height: 420px;
  }

  .category-banner-title {
    font-size: 76px;
  }

  .licensing-section {
    min-height: 420px;
    font-size: 76px;
  }
}

@media screen and (min-width: 1920px) {
  .section.changelog-banner, .section.top-banner, .section.top-banner.contact-us {
    min-height: 450px;
  }

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

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

  .banner-title {
    font-size: 76px;
  }

  .text-center {
    font-size: 56px;
  }

  .coming-soon-heading {
    font-size: 76px;
  }

  .nav-menu-wrapper {
    justify-content: space-between;
  }

  .text-white.subscribe-text {
    font-size: 56px;
  }

  .banner-buttons-wrapper {
    margin-top: 30px;
  }

  .home-4-banner-title {
    font-size: 56px;
  }

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

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

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

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

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

  .about-our-blog {
    width: 35%;
  }

  .home-testimonials {
    width: 49%;
  }

  .main-section-home-1 {
    background-image: none;
    padding-top: 60px;
  }

  .hero-banner-wrapper {
    grid-row-gap: 80px;
  }

  .newsletter-wrapper {
    grid-column-gap: 100px;
    justify-content: space-between;
  }

  .newsletter-section-bg-image {
    width: 45%;
    background-image: url('../images/AdobeStock_501287663.png');
  }

  .subscribe-field-wrapper {
    width: 50%;
    margin-top: 120px;
    margin-bottom: 120px;
    margin-right: 100px;
  }

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

  .subscribe-newsletter-content {
    width: 50%;
  }

  .banner-text-content-wrapper.margin-left {
    margin-left: 100px;
  }

  .latest-blog-content {
    margin-top: -240px;
    margin-right: 90px;
  }

  .latest-post-wrapper {
    margin-bottom: 30px;
  }

  .banner-logo-wrapper {
    margin-top: 70px;
  }

  .testimolials-home-slider {
    height: 520px;
  }

  .slider-text-wrapper {
    height: 184px;
  }

  .slider-content-wrapper {
    flex-direction: column;
    justify-content: flex-end;
    display: flex;
  }

  .parnter-testimonial-slide {
    height: 515px;
  }

  .partners-testimonials-title-wrapper {
    width: 48%;
  }

  .margin-left-wrapper {
    margin-left: 19.5%;
  }

  .service-testimonials-quote-wrapper.about-page {
    margin-right: 100px;
  }

  .home-2-testimonials-slider-mask {
    width: 25%;
  }

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

  .recent-post-item:first-child {
    min-width: 570px;
  }

  .home-4-banner-section {
    padding-top: 60px;
  }

  .home-4-banner-bg-image {
    top: -11%;
  }

  .home-4-banner-title-wrapper {
    margin-bottom: 20px;
  }

  .banner-4-paragraph-wrapper {
    margin-bottom: 10px;
  }

  .value-cards-wrapper {
    width: 68%;
  }

  .about-top-paragrapher-wrapper {
    width: 57%;
  }

  .about-us-top-image {
    height: 420px;
  }

  .blog-details-section {
    min-height: 300px;
  }

  .rich-text {
    flex-direction: column;
    display: flex;
  }

  .category-banner-section {
    min-height: 450px;
  }

  .author-details-banner-title {
    font-size: 65px;
  }

  .author-details-bg {
    min-height: 470px;
  }

  .heading-404 {
    font-size: 220px;
  }

  .licensing-section {
    min-height: 450px;
  }
}

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

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 34px;
  }

  blockquote {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 30px;
  }

  figure {
    padding-top: 20px;
    padding-bottom: 10px;
  }

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

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

  .section.top-banner.sidebar-banner {
    min-height: 350px;
    padding-top: 60px;
  }

  .section.banner-our-team {
    min-height: 350px;
  }

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

  .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-wrapper {
    margin-right: 40px;
  }

  .colors-container {
    flex-wrap: wrap;
  }

  .headings-typography-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }

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

  .h3-tablet {
    font-size: 34px;
  }

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

  .primary-button.tablet {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    margin-top: 20px;
    display: block;
  }

  .primary-button.menu-button {
    display: none;
  }

  .primary-button.tablet-transperent-white:hover {
    border-color: var(--white);
    color: var(--white);
  }

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

  .style-guide-div {
    margin-top: 35px;
  }

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

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

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

  .grid-header {
    margin-top: 35px;
  }

  .nav-container {
    padding: 20px 15px;
  }

  .nav-menu {
    width: 320px;
    background-color: var(--white);
    flex-direction: column;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: auto;
  }

  .menu-button {
    text-align: right;
    flex: 1;
    padding: 0;
  }

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

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

  .nav-link.text-white {
    color: var(--paragraph-gray);
  }

  .nav-dropdown {
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity .5s;
    overflow: hidden;
  }

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

  .nav-dropdown-icon {
    color: var(--primary-dark);
    margin-right: 0;
    display: block;
    top: 0%;
    bottom: 0%;
    left: auto;
    right: 0;
  }

  .nav-dropdown-list {
    border-style: none;
    flex-direction: column;
    padding: 0 40px 0 10px;
    display: flex;
    position: static;
  }

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

  .nav-dropdown-list.megamenu {
    width: 300px;
    height: 270px;
    flex-direction: column;
    justify-content: flex-start;
    overflow: scroll;
  }

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

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

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

  .close-menu-button {
    padding-top: 0;
    padding-bottom: 0;
  }

  .close-menu-button.w--open {
    background-color: var(--white);
    padding-top: 0;
    padding-left: 0;
    padding-right: 15px;
  }

  .nav-close-icon {
    z-index: 15;
    max-width: 60%;
    align-self: stretch;
  }

  .nav-item-title {
    margin-top: 7px;
    margin-bottom: 7px;
  }

  .nav-item-title.text-white {
    color: var(--paragraph-gray);
  }

  .pages-banner {
    min-height: 300px;
  }

  .licensing-grid {
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

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

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

  .banner-title.text-left-desktop {
    text-align: center;
  }

  .licensing-paragraph {
    width: 100%;
  }

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

  .coming-soon-form {
    flex-wrap: wrap;
  }

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

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

  .blog-grid-collection-list {
    column-count: 2;
  }

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

  .blog-classic-top-content {
    padding: 30px 40px 25px;
  }

  .blog-post-title {
    font-size: 34px;
  }

  .blog-classic-post-image {
    max-height: 300px;
  }

  .blog-classic-bottom-content {
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .blog-classic-post-description {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 25px;
  }

  .blog-sidebar-item {
    margin-right: 0;
  }

  .blog-sidebar-right {
    width: 100%;
    position: static;
  }

  .blog-sidebar-wrapper {
    flex-wrap: wrap-reverse;
  }

  .sidebar-recent-posts-wrapper {
    column-count: 2;
    column-gap: 20px;
    display: flex;
  }

  .sidebar-recent-post {
    text-align: left;
  }

  .sidebar-categories {
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .sidebar-category-item {
    align-items: flex-start;
  }

  .sidebar-category {
    padding-left: 10px;
    padding-right: 10px;
  }

  .blog-template-wrapper {
    margin-left: 10px;
  }

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

  .values-wrapper {
    flex-direction: column;
  }

  .text-white.latest-post-title {
    align-items: flex-start;
    left: 22px;
  }

  .text-white.subscribe-text {
    margin-bottom: 20px;
    font-size: 42px;
  }

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

  .services-item {
    margin-right: 15px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .workflow-wrapper, .accordion-wrapper {
    margin-top: 30px;
  }

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

  .contacts-form-wrapper {
    background-color: var(--dark-gray);
    margin-left: 0;
    padding: 30px;
  }

  .contacts-location-slider {
    padding-right: 70px;
  }

  .contacts-left-arrow {
    right: 41px;
  }

  .contacts-right-arrow {
    right: 0;
  }

  .contacts-slider-arrow-icon {
    transition: all .3s;
  }

  .contacts-arrows-divider {
    right: 40px;
  }

  .contacts-form-title {
    font-size: 32px;
  }

  .contacts-title {
    margin-bottom: 30px;
  }

  .footer-link.first.w--current {
    padding-left: 0;
  }

  .footer-wrapper {
    flex-wrap: wrap;
  }

  .footer-brand-wrapper {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .footer-links-wrapper {
    justify-content: center;
  }

  .search-desktop {
    display: none;
  }

  .search-bottom-line {
    display: flex;
  }

  .search-section {
    min-height: 500px;
    padding-top: 60px;
  }

  .headings-container {
    flex-wrap: wrap;
  }

  .button-wrapper {
    width: 50%;
  }

  .transperent-secondary-button:hover {
    opacity: 1;
  }

  .transperent-secondary-button.tablet-white-button {
    border-color: var(--white);
    color: var(--white);
  }

  .transperent-secondary-button.tablet-white-button:hover {
    border-color: var(--primary);
  }

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

  .nav-dropdown-column {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    display: flex;
  }

  .blog-sidebar-left-wrapper {
    width: 100%;
    flex: none;
  }

  .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-banner-title {
    color: var(--white);
    text-align: center;
  }

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

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

  .testimonials-wrapper-2 {
    width: 80%;
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    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;
  }

  .heading-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .content {
    margin-bottom: 0;
  }

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

  .sidebar-categories-list, .about-4-team-slide {
    width: 100%;
  }

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

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

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

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

  .numbers {
    font-size: 50px;
  }

  .home-testimonial-wrapper {
    grid-row-gap: 40px;
    flex-flow: column wrap;
  }

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

  .home-banner-left-arrow {
    top: 20%;
    bottom: auto;
    left: 4%;
    right: auto;
  }

  .button-wrap {
    width: 100%;
    flex: none;
    align-content: space-between;
    margin-top: 30px;
  }

  .button-wrap.mobile-center {
    justify-content: center;
  }

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

  .image-burger.inverted {
    filter: invert();
  }

  .brand-tablet {
    display: block;
  }

  .licensing-wrapper {
    width: 60%;
  }

  .banner-paragraph-wrapper {
    width: 80%;
    margin-bottom: 0;
  }

  .latest-posts-banner.transperent-white, .latest-posts-banner.transperent-white-mobile {
    background-color: rgba(255, 255, 255, .3);
  }

  .latest-post-name {
    justify-content: center;
    align-items: center;
  }

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

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

  .latest-blog {
    z-index: 10;
    flex-direction: column;
    top: 184.609px;
  }

  .blog-links-wrapper {
    width: 100%;
    justify-content: flex-start;
    margin-top: 20px;
  }

  .latest-blog-wrapper {
    width: 100%;
  }

  .arrow-absolute {
    top: 7px;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

  .category-links-wrapper {
    width: 100%;
  }

  .tabs-collection-list {
    grid-column-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .tabs-collection-list.two-rows {
    grid-template-columns: 1fr;
  }

  .home-1-tabs-menu {
    width: 100%;
    flex-wrap: wrap;
  }

  .author-and-date-wrapper {
    width: auto;
    justify-content: center;
  }

  .author-and-date-wrapper.alight-right {
    width: auto;
  }

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

  .section-background {
    min-height: 350px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .about-our-blog {
    width: 100%;
    align-items: center;
  }

  .about-our-blog.mobile-centered {
    text-align: center;
  }

  .home-testimonials {
    width: 100%;
    height: 420px;
  }

  .home-slider-content {
    text-align: center;
  }

  .home-about-text-wrapper {
    margin-bottom: 0;
  }

  .partners-say-wrapper {
    grid-row-gap: 30px;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .partner-image {
    width: 100%;
    height: 400px;
    align-items: center;
  }

  .partner-quote {
    width: 100%;
  }

  .main-section-home-1 {
    padding-top: 40px;
  }

  .hero-banner-wrapper {
    grid-row-gap: 60px;
  }

  .author-name, .post-date {
    font-size: 14px;
  }

  .category-underline.first {
    max-width: 20%;
  }

  .partners-logo-wrapper {
    grid-column-gap: 100px;
    grid-row-gap: 30px;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .home-counter {
    grid-column-gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
  }

  .counter-number-wrapper {
    width: auto;
    grid-column-gap: 30px;
    grid-row-gap: 0px;
  }

  .newsletter-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .newsletter-section-bg-image {
    width: 100%;
    height: 400px;
    top: 0%;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

  .subscribe-field-wrapper {
    width: 80%;
    margin-top: 60px;
    margin-bottom: 60px;
    margin-right: 0;
  }

  .subscribe-newsletter-form {
    grid-column-gap: 20px;
    grid-row-gap: 10px;
  }

  .subscribe-newsletter-form.post-details {
    flex-direction: column;
  }

  .submit-button {
    transition-property: all;
    transition-duration: .5s;
  }

  .submit-button.contact-us {
    border: 1px solid var(--white);
  }

  .submit-button.contact-us:hover {
    border-color: var(--primary);
  }

  .subscribe-form-block, .subscribe-form-block.blog-grid-form {
    margin-top: 30px;
  }

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

  .error-message-text {
    color: var(--error-text);
  }

  .partner-quote-text {
    font-size: 30px;
  }

  .subscribe-newsletter-content {
    width: 100%;
  }

  .home-2-banner-content-wrapper {
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .banner-text-content-wrapper {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .banner-text-content-wrapper.margin-left {
    margin-left: 0;
  }

  .banner-bg-image-wrapper {
    width: 100%;
  }

  .latest-blog-content {
    margin-left: 20px;
    margin-right: 20px;
  }

  .latest-blog-links {
    justify-content: space-between;
  }

  .latest-post-wrapper {
    margin-bottom: 20px;
  }

  .post-arrow {
    display: flex;
  }

  .tabs-image.min-height {
    min-height: 350px;
  }

  .banner-logo-wrapper {
    grid-column-gap: 40px;
    justify-content: center;
    margin-top: 50px;
  }

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

  .tabs-menu-vertical {
    margin-right: 40px;
  }

  .testimolials-home-slider {
    width: 100%;
  }

  .counter-wrapper {
    grid-column-gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
  }

  .animated-link-wrapper {
    justify-content: center;
  }

  .bottom-link {
    display: none;
  }

  .about-blog-wrapper {
    grid-row-gap: 50px;
    flex-flow: column-reverse wrap;
  }

  .partners-testimonials-title-wrapper {
    width: 65%;
  }

  .margin-left-wrapper {
    flex-direction: column;
    display: flex;
  }

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

  .how-we-can-help-wrapper {
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .how-we-can-help-you {
    width: 100%;
    margin-top: 10px;
  }

  .service-title {
    margin-bottom: 30px;
  }

  .testimonials-slider-wrapper {
    width: 100%;
  }

  .testimonials-slider-wrapper.about-page {
    align-items: stretch;
  }

  .service-testimonials-slider.about-page {
    width: 100%;
    margin-right: 0;
  }

  .service-slider-content-wrapper {
    width: 100%;
    height: 450px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .service-slider-content-wrapper.alight-right {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
  }

  .service-testimonials-quote-wrapper {
    width: auto;
    margin-bottom: 20px;
    margin-left: 0;
  }

  .service-testimonials-quote-wrapper.about-page {
    width: auto;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .home-2-testimonials-slider-mask {
    width: 50%;
  }

  .banner-bg-image {
    height: 400px;
    max-width: none;
  }

  .service-slider-arrow {
    top: auto;
    bottom: 40px;
    left: auto;
    right: 80px;
  }

  .service-slider-arrow.left {
    top: auto;
    bottom: 40px;
    left: auto;
    right: 138px;
  }

  .service-slider-arrow.left.alight-right {
    right: 138px;
  }

  .service-slider-arrow.alight-right {
    bottom: 40px;
    right: 80px;
  }

  .partners-say-slider {
    height: 100%;
  }

  .partners-say-slider-content {
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .home-3-banner-section {
    align-items: center;
    padding-top: 60px;
    padding-bottom: 0;
  }

  .home-banner-background {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, 0) 83%), linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, .25)), url('../images/banner-image_1banner image.webp');
    background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
  }

  .banner-content-wrapper {
    flex-direction: column;
  }

  .tabs-text-content-wrapper {
    width: 50%;
    justify-content: space-between;
  }

  .recent-blog-posts {
    min-height: 1000px;
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .button-with-arrow {
    margin-top: 40px;
  }

  .home-banner-paragraph-wrapper {
    width: 77%;
  }

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

  .about-blog-paragraph-wrapper {
    width: 80%;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .home-3-banner-title {
    text-align: center;
  }

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

  .company-logo-wrapper {
    justify-content: center;
    align-items: center;
    margin-top: 40px;
  }

  .banner-3-paragraph-wrapper {
    width: 65%;
    text-align: center;
  }

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

  .recent-post-item {
    width: 100%;
  }

  .best-post-content-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .bg-color {
    width: 50%;
    max-width: none;
    min-height: 400px;
    min-width: 400px;
    margin-top: 20px;
    margin-right: 20px;
    padding: 30px;
  }

  .bg-image-wrapper {
    width: 200px;
    min-height: 200px;
    margin-top: -20px;
    margin-right: -20px;
  }

  .bg-color-content-wrapper {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .bg-color-bottom-content {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 20px;
  }

  .best-post-title-wrapper {
    width: 95%;
  }

  .best-post-paragraph {
    width: 100%;
    margin-top: 0;
  }

  .find-best-post-wrapper {
    width: 50%;
  }

  .percent-number {
    font-size: 54px;
  }

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

  .counter-without-borders {
    grid-column-gap: 30px;
    flex-wrap: wrap;
  }

  .right-choice-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-direction: column;
  }

  .right-choice-content-left-wrapper, .right-choice-content-right-wrapper {
    width: 100%;
  }

  .choice-wrapper {
    height: 60px;
  }

  .choice-arrow-wrapper {
    margin-left: 80px;
  }

  .title-right-choice {
    font-size: 42px;
  }

  .home-4-banner-section {
    padding-top: 40px;
  }

  .banner-4-wrapper {
    position: relative;
  }

  .home-4-banner-bg-image {
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url('../images/Bg-Banner-Image_1Bg Banner Image.webp');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    top: -11%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .banner-4-paragraph {
    color: var(--primary-light);
    text-align: center;
  }

  .banner-4-paragraph-wrapper {
    width: 75%;
  }

  .values-title-and-image-wrapper {
    width: 100%;
  }

  .value-cards-wrapper {
    width: 100%;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    margin-top: 50px;
  }

  .values-card {
    max-width: none;
    min-height: 300px;
  }

  .values-card.margin-top {
    margin-top: 0;
  }

  .value-container {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .background-star {
    width: 15px;
    height: 15px;
    margin-left: -7px;
  }

  .background-star.star-2 {
    width: 15px;
    height: 15px;
    margin-top: 100px;
    margin-left: -7px;
  }

  .background-star.star-3 {
    margin-bottom: 36px;
  }

  .background-star.star-4 {
    margin-top: 130px;
  }

  .about-us-top-section.without-bottom-spacing {
    padding-top: 60px;
    overflow: hidden;
  }

  .service-slider-mask {
    align-self: auto;
  }

  .about-us-top-section-text-wrapper {
    width: 98%;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .about-top-paragrapher-wrapper {
    width: 75%;
  }

  .about-us-top-images-wrapper {
    grid-column-gap: 0px;
    justify-content: space-between;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .about-us-top-image {
    height: 260px;
    padding-right: 10px;
  }

  .about-us-top-image.top-margin {
    padding-left: 10px;
  }

  .about-us-top-image.top-margin.hide-mobile {
    padding-right: 15px;
  }

  .about-us-top-image.last {
    display: none;
  }

  .about-us-top-image.center-image {
    margin-top: 0;
    padding-left: 10px;
  }

  .about-logo-wrapper {
    grid-column-gap: 100px;
    justify-content: space-around;
  }

  .about-us-top-heading._20-margin-bottom {
    width: 73%;
    font-size: 42px;
  }

  .client-testimonial {
    width: 89%;
    margin-top: 20px;
  }

  .left-cards-wrapper {
    grid-column-gap: 30px;
    flex-direction: row;
  }

  .right-cards-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: row;
    margin-top: 0;
  }

  .value-title {
    width: 55%;
    margin-top: 0;
  }

  .about-video-wrapper {
    min-height: 450px;
    margin-top: 60px;
  }

  .about-latest-post-wrapper {
    grid-row-gap: 15px;
  }

  .about-latest-posts-collection {
    grid-row-gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .about-latest-post {
    margin-right: 0;
  }

  .clients-say-section {
    padding-top: 60px;
  }

  .blog-grid-banner {
    grid-row-gap: 80px;
    padding-top: 110px;
  }

  .blog-grid-banner-title {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .blog-details-section {
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), linear-gradient(82deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, 0));
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 60px;
  }

  .blog-details-title {
    font-size: 42px;
  }

  .blog-details-title-wrapper {
    width: 88%;
  }

  .blog-details-rich-text-section {
    padding-top: 60px;
  }

  .post-details-subscribe-newsletters {
    min-width: 270px;
  }

  .rich-text {
    padding-bottom: 20px;
  }

  .rich-text h2 {
    font-size: 32px;
  }

  .blog-latest-posts-wrapper {
    grid-row-gap: 30px;
  }

  .recent-posts-wrapper {
    width: 100%;
    flex-flow: wrap;
  }

  .blog-sidebar-left {
    grid-column-gap: 30px;
    justify-content: center;
  }

  .sidebar-recent-post-collection {
    width: 50%;
    padding-right: 30px;
  }

  .category-banner-section {
    min-height: 350px;
  }

  .category-banner-title {
    font-size: 56px;
  }

  .blog-details-latest-post-title {
    font-size: 32px;
  }

  .author-content-wrapper {
    margin-top: 20px;
  }

  .authors-image-wrapper {
    width: 100%;
    height: 400px;
  }

  .our-author-image {
    height: 400px;
    max-width: none;
    min-width: 100%;
  }

  .details-author-image-wrapper {
    height: 250px;
    min-width: 350px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }

  .author-details-banner-content-wrapper {
    grid-column-gap: 40px;
    flex-direction: column;
  }

  .details-author-image {
    height: 250px;
    max-width: 250px;
    border-radius: 50%;
  }

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

  .author-details-banner {
    padding-top: 40px;
  }

  .author-rich-text h2 {
    font-size: 34px;
  }

  .author-details-banner-title-wrapper {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .author-details-social-icon-wrapper {
    margin-bottom: 30px;
  }

  .author-details-bg {
    display: none;
    top: -14%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .author-details-summary {
    text-align: center;
  }

  .author-details-summary-wrapper {
    width: 90%;
  }

  .latest-authors-posts {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .heading-404 {
    font-size: 160px;
  }

  .coming-soon-subscribe-field {
    flex-wrap: wrap;
  }

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

  .half-team-wrapper {
    flex-wrap: wrap;
  }

  .authors-wrapper {
    width: 100%;
    border-left-style: none;
    padding-left: 0;
  }

  .sticky-team-description {
    width: 100%;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: static;
  }

  .author-wrapper {
    flex-wrap: wrap-reverse;
  }

  .meet-our-authors-paragraph {
    margin-top: 10px;
  }

  .search-title {
    width: 80%;
    font-size: 52px;
  }

  .search-result-list {
    grid-column-gap: 40px;
  }

  .licensing-section {
    min-height: 350px;
  }

  .megeamenu-dropdown-wrapper {
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .hire-popup {
    max-width: 380px;
  }

  .hire-popup-wrap {
    display: none;
  }

  .column {
    display: block;
  }

  .columns {
    width: 45%;
    display: block;
  }
}

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

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  blockquote {
    font-size: 28px;
  }

  .section.changelog-banner, .section.top-banner {
    min-height: 350px;
  }

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

  .grid-system-wrapper {
    flex-direction: row;
    margin-top: 15px;
  }

  .grid-system {
    border-left: 1px solid #7c7c7c;
    flex-direction: column;
  }

  .grid-title {
    width: 100%;
    border-bottom: 1px solid #7c7c7c;
    border-right-style: none;
  }

  .grid-title.first-grid {
    width: 100%;
    border-left-style: none;
    border-right-style: none;
  }

  .grid-description {
    width: 100%;
    border-top: 1px solid #a7a7a7;
    border-bottom-style: none;
    border-right-width: 1px;
    align-items: center;
  }

  .grid-description.first-description {
    width: 100%;
    border-width: 1px 1px .5px 0;
    border-top-style: none;
    border-top-color: #a7a7a7;
    border-bottom-style: none;
    border-left-style: none;
  }

  .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-wrapper {
    margin-top: 15px;
    margin-right: 0;
  }

  .colors-container {
    margin-top: 0;
  }

  .headers-wrapper, .style-guide-body-wrapper {
    width: 100%;
    margin-top: 10px;
  }

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

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

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

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

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

  .link-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .nav-link {
    margin-left: 0;
  }

  .nav-dropdown-icon {
    right: 20px;
  }

  .nav-dropdown-list.megamenu {
    flex-direction: column;
    justify-content: flex-start;
  }

  .close-menu-button.w--open {
    padding-right: 35px;
  }

  .licensing-title-wrapper {
    margin-bottom: 20px;
  }

  .licensing-images-wrapper {
    padding-top: 10px;
  }

  .licensing-grid {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }

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

  .licensing-title {
    padding-bottom: 20px;
  }

  .banner-title {
    font-size: 42px;
  }

  .banner-title.text-left-desktop {
    text-align: center;
    font-size: 42px;
  }

  .licensing-fonts-wrapper {
    flex-wrap: wrap;
  }

  .licensing-paragraph {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .licensing-font-title {
    margin-bottom: 10px;
  }

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

  .password-image {
    width: 100px;
  }

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

  .coming-soon-wrapper {
    margin-left: 0%;
  }

  .coming-soon-input {
    min-width: 240px;
  }

  .coming-soon-heading {
    font-size: 52px;
  }

  .blog-grid-collection-list {
    column-count: 1;
  }

  .blog-grid-content-wrapper {
    min-height: 260px;
  }

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

  .blog-classic-top-content {
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .blog-post-title {
    font-size: 32px;
  }

  .blog-classic-bottom-content {
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .blog-sidebar-item {
    width: 100%;
    margin-right: 0;
  }

  .sidebar-recent-posts-wrapper {
    column-count: 1;
  }

  .sidebar-category {
    padding-left: 10px;
    padding-right: 10px;
  }

  .blog-template-wrapper {
    padding-bottom: 0;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: wrap;
    margin-top: 35px;
  }

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

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

  .banner-title-wrapper {
    width: 100%;
  }

  .text-white.latest-post-title {
    left: 22px;
  }

  .text-white.subscribe-text {
    font-size: 32px;
  }

  .services-wrapper {
    column-count: 1;
    flex-wrap: wrap;
  }

  .services-item {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .services-item.last-child {
    margin-bottom: 0;
  }

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

  .workflow-profile-wrapper {
    justify-content: center;
  }

  .workflow-content-wrapper {
    width: 100%;
    text-align: center;
    align-items: center;
    margin-top: 20px;
    padding-left: 0;
  }

  .workflow-video-wrapper {
    width: 100%;
  }

  .workflow-wrapper, .accordion-wrapper {
    flex-wrap: wrap;
  }

  .accordion-wrap {
    width: 100%;
    margin-right: 0;
  }

  .contacts-wrapper {
    flex-wrap: wrap;
  }

  .contacts-content-wrapper {
    width: 100%;
    margin-bottom: 30px;
    padding-right: 0;
  }

  .contacts-form-wrapper {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .contacts-location-slider {
    padding-right: 100px;
  }

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

  .footer-link.first.w--current {
    padding-left: 20px;
  }

  .footer-social-icons-wrapper {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }

  .footer-wrapper {
    justify-content: center;
  }

  .footer-brand-wrapper {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

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

  .footer-logo-wrapper {
    width: 100%;
    align-items: center;
  }

  .button-wrapper {
    width: 60%;
  }

  .overflow-hidden.horizontal {
    flex-direction: column;
  }

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

  .nav-dropdown-column {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .blog-sidebar-left-wrapper {
    column-count: 1;
  }

  .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-banner-title {
    margin-top: 10px;
    font-size: 42px;
  }

  .home-4-testimonials-wrapper {
    width: 100%;
    grid-row-gap: 30px;
  }

  .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 {
    width: 100%;
    grid-row-gap: 10px;
  }

  .content-wrapper {
    width: auto;
    flex-wrap: wrap;
  }

  .industries-block-wrapper {
    max-width: none;
  }

  .home-9-team-item {
    width: 48%;
  }

  .home-testimonials-text {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .subtitle-2 {
    line-height: 16px;
  }

  .numbers {
    font-size: 50px;
  }

  .menu-wrap {
    display: flex;
  }

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

  .home-banner-left-arrow {
    top: 6%;
  }

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

  .button-wrap {
    grid-column-gap: 30px;
  }

  .brand-tablet {
    justify-content: flex-start;
    padding-left: 0;
  }

  .brand {
    padding-left: 0;
  }

  .social-icon-background.first {
    margin-left: 0;
  }

  .licensing-wrapper, .banner-paragraph-wrapper {
    width: 100%;
  }

  .latest-blog-text.mobile-center {
    text-align: left;
  }

  .blog-links-wrapper {
    justify-content: center;
  }

  .category-link-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .arrow-absolute {
    top: 6px;
  }

  .blog-title.mobile-center-title {
    text-align: center;
  }

  .blog-tab-category {
    text-align: center;
    justify-content: center;
    align-self: auto;
    padding: 10px 0;
  }

  .blog-tab-category.w--current {
    color: var(--primary);
    align-self: auto;
    margin-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .blog-tab-category.first-category {
    padding-top: 0;
  }

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

  .home-1-tabs-menu {
    grid-column-gap: 0px;
    border-bottom-style: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    display: flex;
  }

  .author-and-date-wrapper.alight-right {
    width: auto;
    justify-content: flex-start;
  }

  .post-item-wrapper.without-desktop-margin {
    margin-top: 20px;
  }

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

  .section-background {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-our-blog, .home-testimonials {
    width: 100%;
  }

  .partners-say-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .partner-image {
    height: 400px;
  }

  .partner-quote {
    width: 100%;
  }

  .category-underline {
    display: block;
  }

  .partners-logo-wrapper {
    grid-column-gap: 70px;
    justify-content: space-between;
  }

  .home-counter {
    grid-row-gap: 30px;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .counter-number-wrapper {
    width: 42%;
  }

  .newsletter-section-bg-image {
    height: 300px;
  }

  .subscribe-field-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .subscribe-newsletter-form {
    flex-flow: column wrap;
  }

  .submit-button.full-width, .subscribe-form-block.blog-grid-form {
    width: 100%;
  }

  .partner-logo {
    height: 30px;
  }

  .partner-quote-text {
    font-size: 26px;
  }

  .subscribe-newsletter-content {
    text-align: center;
  }

  .banner-text-content-wrapper {
    align-items: center;
  }

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

  .post-arrow.margin-top {
    margin-top: 10px;
  }

  .image-transform-wrapper.horizontal-image {
    width: 100%;
  }

  .tabs-image.min-height {
    min-height: 300px;
  }

  .banner-logo-wrapper {
    justify-content: center;
  }

  .logo-banner {
    height: 30px;
  }

  .vertical-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tabs-menu-vertical {
    grid-row-gap: 10px;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .counter-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .bottom-link {
    display: none;
  }

  .parnter-testimonial-slide {
    height: 450px;
  }

  .partners-testimonials-title-wrapper {
    width: 90%;
    justify-content: center;
    display: flex;
  }

  .blog-centered-con {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .margin-left-wrapper {
    margin-left: 15px;
  }

  .latest-blog-text-wrapper {
    padding-left: 0;
  }

  .about-our-blog-slider.image-2, .about-our-blog-slider.image-3 {
    background-position: 50% 20%;
  }

  .how-we-can-help-wrapper {
    flex-direction: column-reverse;
  }

  .service-title, .service-options-text-wrapper.about-page {
    width: 100%;
  }

  .service-slider-content-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .service-slider-content-wrapper.alight-right {
    padding-left: 10px;
    padding-right: 10px;
  }

  .home-2-testimonials-slider-mask {
    width: 70%;
  }

  .banner-bg-image {
    height: 350px;
  }

  .service-slider-arrow {
    right: 60px;
  }

  .service-slider-arrow.left {
    right: 120px;
  }

  .service-slider-arrow.left.alight-right {
    right: 88px;
  }

  .service-slider-arrow.alight-right {
    right: 30px;
  }

  .partners-testimonials-arrow.right, .partners-testimonials-arrow.left {
    bottom: 10px;
  }

  .home-3-banner-section {
    height: auto;
    min-height: 100vh;
    align-items: flex-end;
    padding-bottom: 60px;
  }

  .tabs-text-content-wrapper {
    width: 100%;
  }

  .tabs-top-content-wrapper {
    margin-bottom: 10px;
  }

  .recent-posts-title {
    grid-row-gap: 15px;
    text-align: center;
    flex-direction: column;
  }

  .button-with-arrow {
    margin-top: 40px;
  }

  .home-banner-paragraph-wrapper {
    width: 90%;
    margin-bottom: 0;
  }

  .about-blog-paragraph-wrapper {
    width: 100%;
  }

  .home-3-banner-title {
    font-size: 42px;
  }

  .home-3-logo {
    height: 25px;
  }

  .banner-3-paragraph-wrapper {
    width: 90%;
  }

  .recent-post-item:first-child {
    min-width: auto;
  }

  .best-post-content-wrapper {
    grid-row-gap: 70px;
    flex-direction: column;
  }

  .bg-color {
    width: 100%;
    margin-right: 60px;
  }

  .bg-image-wrapper {
    margin-right: 0;
  }

  .bg-color-content-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .bg-color-bottom-content {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .bg-color-block-paragraph-wrapper {
    width: 50%;
  }

  .best-post-title-wrapper {
    width: 68%;
    text-align: center;
  }

  .best-post-paragraph {
    width: 87%;
    text-align: center;
  }

  .find-best-post-wrapper {
    width: 100%;
    align-items: center;
  }

  .home-3-banner-title-wrapper {
    width: 100%;
  }

  .counter-without-borders {
    grid-row-gap: 30px;
  }

  .right-choice-wrapper {
    margin-top: 60px;
  }

  .choice-wrapper {
    height: 50px;
  }

  .choice-category {
    font-size: 23px;
  }

  .choice-arrow-wrapper {
    margin-left: 30px;
  }

  .title-right-choice {
    font-size: 36px;
  }

  .home-4-banner-title-wrapper {
    width: 97%;
  }

  .value-cards-wrapper {
    justify-content: space-around;
  }

  .values-card {
    min-height: 250px;
  }

  .about-us-top-section-text-wrapper {
    width: 100%;
    padding-right: 15px;
  }

  .about-top-paragrapher-wrapper {
    width: 88%;
  }

  .about-us-top-images-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .about-us-top-image {
    min-width: 142px;
    padding-right: 15px;
  }

  .about-us-top-image.top-margin {
    padding-left: 0;
    padding-right: 0;
  }

  .about-us-top-image.top-margin.hide-mobile {
    display: none;
  }

  .about-us-top-image.center-image {
    padding-left: 15px;
    padding-right: 15px;
  }

  .about-logo-wrapper {
    grid-column-gap: 70px;
    justify-content: space-between;
  }

  .about-us-top-heading._20-margin-bottom, .client-testimonial {
    width: 100%;
  }

  .left-cards-wrapper, .right-cards-wrapper {
    grid-column-gap: 30px;
    flex-direction: row;
  }

  .value-title {
    width: 100%;
  }

  .about-video-wrapper {
    min-height: 400px;
  }

  .about-latest-posts-collection {
    flex-wrap: wrap;
  }

  .video-text {
    font-size: 28px;
  }

  .blog-grid-banner {
    grid-row-gap: 60px;
  }

  .blog-grid-banner-title {
    font-size: 42px;
  }

  .blog-grid-banner-paragraph-wrapper {
    width: 100%;
  }

  .blog-search {
    width: 100%;
    min-width: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-search.hidden-mobile {
    display: none;
  }

  .blog-search.hidden-desktop {
    display: flex;
  }

  .blog-details-section {
    min-height: 400px;
    padding-top: 140px;
  }

  .blog-details-title-wrapper {
    width: 100%;
  }

  .rich-text-wrapper {
    flex-direction: column;
  }

  .post-details-subscribe-newsletters {
    margin-top: 30px;
  }

  .rich-text p {
    font-size: 16px;
  }

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

  .recent-posts-wrapper {
    flex-direction: column;
  }

  .blog-sidebar-left {
    grid-row-gap: 40px;
  }

  .sidebar-category-wrapper {
    margin-left: -10px;
  }

  .sidebar-recent-post-collection {
    width: 100%;
    padding-right: 0;
  }

  .category-banner-title {
    font-size: 52px;
  }

  .authors-image-wrapper {
    height: 350px;
  }

  .our-author-image {
    height: 350px;
    max-width: 100%;
  }

  .details-author-image-wrapper {
    height: 200px;
    min-width: 100%;
  }

  .author-details-banner-content-wrapper {
    width: 100%;
    max-width: none;
    flex-direction: column;
  }

  .details-author-image {
    height: 200px;
    max-width: 200px;
  }

  .author-details-banner-title {
    font-size: 42px;
  }

  .author-rich-text h2, .author-latest-post-title {
    font-size: 32px;
  }

  .author-details-bg {
    bottom: -5%;
  }

  .services-title-wrapper, .author-details-summary-wrapper {
    width: 100%;
  }

  .heading-404 {
    font-size: 120px;
  }

  .meet-authors-heading {
    width: 80%;
  }

  .search-title {
    width: 100%;
    font-size: 42px;
  }

  .search-bannet-description.text-white {
    width: 100%;
  }

  .search-result-list {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .hire-popup {
    display: none;
  }

  .hire-buttons-wrap {
    grid-row-gap: 20px;
    flex-flow: column wrap;
    align-items: stretch;
  }

  .category-link-wrapper-copy {
    padding-left: 10px;
    padding-right: 10px;
  }

  .columns {
    width: 60%;
    justify-content: center;
    display: flex;
  }

  .collection-list-wrapper, .collection-list-wrapper-2 {
    flex: 1;
  }

  .collection-list-wrapper-3 {
    flex: 0 auto;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding-top: 20px;
    padding-bottom: 40px;
  }

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

  .base-container {
    padding-left: 0;
    padding-right: 0;
  }

  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    width: 50%;
  }

  .grid-title.first-grid {
    width: 100%;
    text-align: center;
    flex: 1;
  }

  .grid-description {
    border-bottom-width: 1px;
    border-bottom-color: rgba(255, 255, 255, .2);
  }

  .grid-description.first-description {
    border-bottom: 1px rgba(255, 255, 255, .2);
    border-left-style: none;
    border-right-style: solid;
  }

  .grid-description.last-description {
    border-bottom-color: #a7a7a7;
  }

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

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

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

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

  .color-container {
    flex-wrap: wrap;
  }

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

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

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

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

  .navbar, .nav-container {
    background-color: #fff;
  }

  .nav-link {
    width: 99%;
  }

  .nav-dropdown {
    position: static;
  }

  .nav-dropdown-list {
    text-align: left;
  }

  .nav-dropdown-list.megamenu {
    padding-right: 0;
  }

  .nav-dropdown-link-wrapper {
    justify-content: space-between;
  }

  .close-menu-button.w--open {
    padding-right: 34px;
  }

  .licensing-title-wrapper {
    grid-row-gap: 10px;
    flex-wrap: wrap;
  }

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

  .license-link {
    margin-right: 15px;
  }

  .banner-title {
    margin-top: 0;
    font-size: 28px;
  }

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

  .coming-soon-input {
    min-width: auto;
    margin-bottom: 10px;
  }

  .coming-soon-paragraph {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .coming-soon-heading {
    font-size: 40px;
  }

  .blog-classic-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-classic-top-content {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .blog-classic-bottom-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-menu-wrapper {
    background-color: #fff;
  }

  .blog-sidebar-post-content {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-details-post-category {
    margin-bottom: 20px;
  }

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

  .sidebar-recent-posts {
    flex-direction: column;
    display: flex;
  }

  .blog-template-wrapper {
    margin-left: auto;
  }

  .footer {
    text-align: left;
  }

  .footer-rights-wrapper {
    flex-wrap: wrap;
  }

  .footer-rights {
    margin-bottom: 10px;
  }

  .footer-copyright {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .text-white.latest-post-title {
    left: 18px;
  }

  .more-features-icon {
    margin-right: 15px;
  }

  .paragraph-no-margin {
    color: var(--primary);
    transition-duration: .3s;
  }

  .contacts-location-slider {
    padding-right: 70px;
  }

  .contacts-slider-arrow-icon {
    color: var(--primary);
  }

  .footer-link {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-link.w--current {
    padding-right: 10px;
  }

  .footer-social-icons-wrapper {
    justify-content: center;
  }

  .footer-brand-wrapper {
    flex-direction: column;
  }

  .footer-links-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }

  .search-section {
    align-items: center;
    padding-top: 120px;
  }

  .button-wrapper, .transperent-secondary-button.full-mobile-width {
    width: 100%;
  }

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

  .banner-buttons-wrapper {
    width: 100%;
    grid-column-gap: 26px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
  }

  .home-testimonials-slider-arrow {
    top: auto;
    right: 65px;
  }

  .home-testimonials-slider-arrow.right {
    right: 15px;
  }

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

  .banner-section {
    z-index: 1;
  }

  .our-services-wrap {
    width: 100%;
  }

  .heading-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .home-9-team-item {
    width: 100%;
  }

  .home-testimonials-text {
    justify-content: flex-start;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    top: 300px;
  }

  .text-align-center {
    margin-bottom: 0;
    margin-left: 10px;
    margin-right: 10px;
  }

  .numbers {
    text-align: center;
  }

  .home-testimonial-wrapper {
    flex-wrap: wrap;
  }

  .menu-wrap {
    text-align: left;
  }

  .mobile-center {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    font-size: 15px;
  }

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

  .button-wrap {
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

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

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

  .banner-paragraph-wrapper {
    width: 100%;
  }

  .latest-blog {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    top: 60px;
    overflow: hidden;
  }

  .latest-blog-text.mobile-center {
    text-align: center;
    font-size: 14px;
  }

  .blog-links-wrapper {
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: center;
  }

  .latest-blog-wrapper {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .category-link-wrapper {
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .arrow-absolute {
    object-fit: fill;
    top: -31%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .arrow-absolute.banner {
    display: none;
  }

  .heading-typography {
    font-size: 27px;
  }

  .category-links-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 15px;
    justify-content: center;
  }

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

  .blog-title.mobile-center-title {
    text-align: center;
  }

  .latest-blog-arrow {
    width: 15px;
  }

  .blog-collection-list-wrapper {
    background-color: var(--white);
    margin-left: 10px;
    margin-right: 10px;
  }

  .blog-tab-category.w--current {
    margin-right: 0;
  }

  .blog-tab-collection-item {
    width: 100%;
    background-color: var(--white);
    border: 0 solid #000;
    border-bottom-width: 1px;
    padding-right: 10px;
  }

  .tabs-collection-list {
    grid-column-gap: 20px;
    grid-row-gap: 10px;
  }

  .home-1-tabs-menu {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: left;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .section-background {
    min-height: 200px;
    aspect-ratio: 1 / 1;
    object-fit: none;
    background-position: 50% 0;
    padding-left: 10px;
    padding-right: 10px;
    overflow: visible;
  }

  .about-our-blog.mobile-centered {
    text-align: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
  }

  .home-testimonials {
    height: 330px;
  }

  .home-slider-content {
    width: 100%;
    height: auto;
  }

  .home-about-text-wrapper {
    text-align: center;
  }

  .home-testimonial-quote {
    width: 100%;
    flex-direction: column;
    display: flex;
  }

  .partner-image {
    height: 300px;
  }

  .main-section-home-1 {
    background-color: #fff;
    padding-top: 20px;
  }

  .hero-banner-wrapper {
    background-color: #fff;
    padding-bottom: 220px;
  }

  .slider-about-us.image-1 {
    text-align: left;
  }

  .category-underline {
    display: block;
  }

  .partners-logo-wrapper {
    grid-column-gap: 40px;
    justify-content: space-between;
  }

  .home-counter {
    grid-column-gap: 60px;
    grid-row-gap: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .counter-number-wrapper {
    width: 100%;
  }

  .newsletter-section-bg-image {
    height: 250px;
    background-position: 50%;
  }

  .subscribe-field-wrapper {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .subscribe-newsletter-form {
    flex-wrap: wrap;
  }

  .submit-button.full-width:hover {
    color: var(--white);
  }

  .latest-blog-content {
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .latest-blog-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .banner-logo-wrapper {
    grid-column-gap: 25px;
    grid-row-gap: 15px;
    justify-content: space-around;
  }

  .logo-banner {
    height: 25px;
  }

  .vertical-tabs {
    align-items: center;
  }

  .tabs-menu-vertical {
    margin-right: 0;
  }

  .counter-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .partners-testimonials-title-wrapper {
    width: 100%;
    text-align: center;
  }

  .blog-centered-con {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

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

  .margin-left-wrapper {
    margin-left: 15px;
  }

  .latest-blog-text-wrapper {
    margin-left: 0;
  }

  .about-our-blog-slider.image-1 {
    background-position: 50% 20%;
  }

  .service-options-text-wrapper {
    width: 75%;
    padding-left: 10px;
  }

  .service-options-text-wrapper.about-page {
    width: 100%;
  }

  .service-link-arrow-wrapper, .service-link-arrow-wrapper.about-page {
    align-items: flex-end;
  }

  .service-slider-content-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .home-2-testimonials-slider-mask {
    width: 96%;
  }

  .banner-bg-image {
    height: 400px;
  }

  .service-slider-arrow {
    right: 30px;
  }

  .service-slider-arrow.left {
    right: 80px;
  }

  .service-slider-arrow.left.alight-right {
    right: 83px;
  }

  .service-slider-arrow.alight-right {
    right: 30px;
  }

  .categories-wrapper {
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: center;
  }

  .partners-testimonials-arrow.right {
    width: 50px;
    height: 50px;
  }

  .partners-testimonials-arrow.left {
    width: 50px;
    height: 50px;
    right: 75px;
  }

  .home-3-banner-section {
    height: 8px;
    min-height: 100px;
    align-items: center;
    padding-top: 120px;
  }

  .home-banner-background {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, 0) 83%), linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('../images/eyecatch.webp');
    background-repeat: repeat, repeat, repeat-x;
    background-size: auto, auto, contain;
    background-attachment: scroll, scroll, scroll;
  }

  .banner-content-wrapper {
    align-items: center;
  }

  .button-with-arrow {
    margin-top: 30px;
  }

  .home-banner-paragraph-wrapper {
    width: 100%;
  }

  .latest-post-arrow-collection {
    display: none;
  }

  .home-3-banner-title {
    font-size: 38px;
  }

  .company-logo-wrapper {
    grid-row-gap: 15px;
    flex-wrap: wrap;
  }

  .banner-3-paragraph-wrapper {
    width: 100%;
  }

  .best-post-content-wrapper {
    grid-row-gap: 50px;
  }

  .bg-color {
    min-height: auto;
    min-width: auto;
    margin-top: 200px;
    margin-right: 0;
  }

  .bg-image-wrapper {
    width: 100%;
    background-size: cover;
    margin-top: 0;
    top: -200px;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .bg-color-content-wrapper {
    flex-wrap: wrap;
    align-content: space-around;
    align-items: center;
  }

  .bg-color-bottom-content-wrapper {
    flex-wrap: wrap;
    align-items: center;
  }

  .bg-color-bottom-content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .bg-color-block-paragraph-wrapper {
    width: 79%;
    text-align: center;
  }

  .bg-color-block-top-content-wrapper {
    text-align: center;
  }

  .best-post-title-wrapper, .best-post-paragraph, .paragraph-wrapper {
    width: 100%;
  }

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

  .choice-wrapper {
    height: 45px;
    padding-left: 10px;
    padding-right: 5px;
  }

  .choice-category {
    font-size: 20px;
  }

  .choice-arrow-wrapper {
    width: 30px;
    height: 30px;
    margin-left: 13px;
  }

  .choice-categories-wrapper {
    grid-row-gap: 20px;
  }

  .home-4-banner-bg-image {
    background-image: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url('../images/Bg-Banner-Image_1Bg Banner Image.webp');
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .home-4-banner-title-wrapper, .banner-4-paragraph-wrapper {
    width: 100%;
  }

  .value-cards-wrapper {
    margin-top: 30px;
  }

  .value-image-wrapper {
    min-height: 350px;
  }

  .about-top-paragrapher-wrapper {
    width: 100%;
  }

  .about-us-top-images-wrapper {
    grid-row-gap: 15px;
    flex-wrap: wrap;
    padding-right: 15px;
  }

  .about-us-top-image {
    width: 100%;
    height: 200px;
    max-width: none;
    padding-right: 0;
  }

  .about-us-top-image.top-margin {
    margin-top: 0;
    padding-left: 0;
  }

  .about-us-top-image.top-margin.hide-mobile {
    object-position: 50% 30%;
  }

  .about-us-top-image.last {
    object-position: 50% 31%;
  }

  .about-us-top-image.center-image {
    padding-left: 0;
  }

  .about-logo-wrapper {
    grid-column-gap: 40px;
  }

  .about-us-top-heading._20-margin-bottom {
    font-size: 40px;
  }

  .left-cards-wrapper, .right-cards-wrapper {
    flex-wrap: wrap;
  }

  .video-button-wrapper {
    grid-row-gap: 10px;
    flex-direction: column;
  }

  .video-text {
    font-size: 22px;
  }

  .video-button {
    width: 70px;
    height: 70px;
  }

  .blog-details-section {
    min-height: 250px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

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

  .blog-details-title-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .blog-details-description {
    font-size: 13px;
  }

  .reading-time-wrapper {
    margin-bottom: 20px;
  }

  .rich-text {
    margin-right: 10px;
    padding-left: 10px;
  }

  .blog-latest-posts-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .sidebar-recent-post-collection {
    width: 100%;
  }

  .blog-category-title {
    font-size: 23px;
  }

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

  .blog-details-latest-posts-title {
    font-size: 14px;
  }

  .sticky-team-description {
    margin-bottom: 20px;
  }

  .author-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .meet-authors-heading {
    width: 100%;
  }

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

  .heading-406 {
    text-align: center;
    margin-top: 0;
    font-size: 30px;
  }

  .section-2 {
    margin-top: 0;
    padding-top: 15px;
    padding-bottom: 0;
    font-size: 14px;
  }

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

  .container {
    margin-bottom: 20px;
  }

  .container-2 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .category-link-wrapper-copy {
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .column {
    padding-bottom: 10px;
    padding-right: 0;
  }

  .button-guide {
    font-size: 15px;
  }

  .columns {
    width: 100%;
    justify-content: center;
    display: flex;
  }

  .collection-item {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

#w-node-_07c9d53a-c055-0fe1-5e69-2ff36f658b5f-c42e3038, #w-node-_43325948-ae04-58c7-b649-fb6282eaf3b7-c42e3069, #w-node-_515f610b-b7dc-ae30-de4d-7055e20ec8c3-c42e3094 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dfebec81-8548-5240-65d2-63f9a21554a7-c42e309c {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-f334c736-dcbb-c56a-2b2e-2d51ccf4cb1f-c42e309c {
  grid-area: 1 / 2 / 3 / 3;
}

#w-node-_1145b0c0-527b-396a-d612-ecd0e5687a12-c42e309c {
  grid-area: 1 / 3 / 3 / 4;
  align-self: start;
  justify-self: start;
}

#w-node-_42ce8ccd-cf66-e269-6943-47ed905bf2b9-c42e309c {
  grid-area: 1 / 3 / 3 / 4;
  justify-self: end;
}

#w-node-_0427e4bb-9c4c-efce-8db3-d222a47bd767-c42e309c {
  grid-area: 2 / 1 / 3 / 2;
  align-self: end;
  justify-self: start;
}

#w-node-e9408f5f-e682-8da0-9b5b-2fe586eb6d13-c42e309c {
  grid-area: 1 / 2 / 2 / 3;
  align-self: center;
}

#w-node-_43ec419c-b249-9ec3-9ac7-299d56a945be-c42e309c {
  grid-area: 2 / 2 / 3 / 3;
  align-self: end;
  justify-self: start;
}

#w-node-_6b0d353e-cafd-d50c-900d-8f793f6e5f3e-c42e309c {
  grid-area: 1 / 3 / 2 / 4;
  align-self: start;
  justify-self: start;
}

#w-node-_952ee683-a76d-2618-8a36-d8c1853796a9-c42e309c {
  grid-area: 2 / 3 / 2 / 4;
  align-self: end;
  justify-self: end;
}

#w-node-_1a5a7386-04b2-0453-d1f4-7dc7e0157836-c42e30b6, #w-node-bf9218f5-50b8-833f-f263-30097612759a-c42e30b6, #w-node-c86fb3cd-1a8c-d271-6bdc-83e9059f4631-c42e30b6, #w-node-dd39ffea-0cbd-77a1-e45c-e793f315d3e9-c42e30b6, #w-node-_1a5a7386-04b2-0453-d1f4-7dc7e0157838-c42e30b6, #w-node-_1a5a7386-04b2-0453-d1f4-7dc7e015783a-c42e30b6, #w-node-_14af8d59-f707-790f-dbd3-282c62d854ed-c42e30b6, #w-node-_9bcabe3c-fedd-3855-4087-d3de656cc5ca-c42e30b6, #w-node-_031a11f3-a699-4824-5f46-01538cb4bbf1-c42e30b6, #w-node-f60db78f-6fb1-b98e-64d4-50e5423632df-c42e30b6, #w-node-cc3597e9-66eb-729f-9af6-d90fa5691426-c42e30b6, #w-node-_423341a2-65c1-b07f-24cd-048031c22cf4-c42e30b6, #w-node-e93bd7ca-19bc-eb4f-2e0a-11d987ab83b2-c42e30b6, #w-node-_6fec9974-6473-31f4-57d8-cd9d73c0c972-c42e30b6, #w-node-a301026a-fd00-5592-ae83-c8b1853b9f6b-c42e30b6, #w-node-d564f88c-10a2-a689-aca2-dd510d193cd7-c42e30b6, #w-node-_342bae1e-5b6a-2558-a3b5-2c152e760b43-c42e30b6, #w-node-b57be06b-5709-8fb8-27a7-a9a262d046a4-c42e30b6, #w-node-_49e41207-b3ff-9f14-f99b-3f79ff8f1e07-c42e30b6, #w-node-_28d775e8-78c2-51a3-d648-1efd52b98e55-c42e30b6, #w-node-_30ab05e7-29d2-44c5-f845-df8dafd8b4bc-c42e30b6, #w-node-_30ab05e7-29d2-44c5-f845-df8dafd8b4be-c42e30b6, #w-node-_30ab05e7-29d2-44c5-f845-df8dafd8b4c0-c42e30b6, #w-node-_30ab05e7-29d2-44c5-f845-df8dafd8b4c2-c42e30b6, #w-node-_30ab05e7-29d2-44c5-f845-df8dafd8b4c4-c42e30b6, #w-node-_30ab05e7-29d2-44c5-f845-df8dafd8b4c6-c42e30b6, #w-node-e8f8b38c-4af5-4dc4-4020-1969b0bd71f8-c42e30b6, #w-node-_1d6232a9-c455-d901-5692-ff10a31e5af0-c42e30b6, #w-node-_4a195160-5298-0da2-9925-213761397c07-c42e30b6, #w-node-_72e3475a-382a-7ec5-92e0-47ce6b5c3d46-c42e30b6, #w-node-_322636bf-b7e7-4356-9073-1e4ec851b9d8-c42e30b6, #w-node-_45d3632d-434e-0da2-215b-366ad12f19d6-c42e30b6, #w-node-_9ca57efb-f73c-a8bf-8574-876612eb4cf7-c42e30b6, #w-node-_2fbe6ada-7ffe-43b6-483a-7d73af53cb13-c42e30b6, #w-node-_3235b7f2-b0d1-dffa-49e3-a3a2862df6ef-c42e30b6, #w-node-d4a8b316-f145-b285-4b46-d08e02ac9b9e-c42e30b6, #w-node-_7c78a35b-d3a0-4a2d-5dcf-58d3aa4e0503-c42e30b6, #w-node-_02861071-8535-d28c-c297-7508398bdb89-c42e30b6, #w-node-fd84a0c0-dade-725a-a22e-15bc5bcecbe3-c42e30b6, #w-node-_0be6bfd6-9b88-3639-2663-4be9de93c378-c42e30b6, #w-node-_3fd12255-bc5e-84cf-3f53-f0dcebeb3c7d-c42e30b6, #w-node-_133391e8-bb38-a63d-d697-bd512ff7a21c-c42e30b6, #w-node-_3be7b6ba-00bf-505d-c53c-fa91a1c2b67a-c42e30b6, #w-node-c20d89b5-5701-da67-2a74-c97170c50b87-c42e30b6, #w-node-_08138e42-eda4-77ff-f226-86a55922a546-c42e30b6, #w-node-ea482cca-7900-81d5-6c0f-ea8e4b26bd42-c42e30b6, #w-node-_69eeb9f4-e3ed-bdf6-c1fe-4da03c9e6d19-c42e30b6, #w-node-f0f1a877-dfab-1414-94b3-b71356bd7ff2-c42e30b6, #w-node-_2a267933-e4c1-40f6-1b85-5e314e7b1555-c42e30b6, #w-node-a12fab3c-ee2b-a61f-3998-c0cdcc4d8d04-c42e30b6, #w-node-_4c8cfdbc-29e3-bf6c-fb96-b95e82fc26ce-c42e30b6, #w-node-_92f3926d-b097-7875-6dc9-10611373fe5d-c42e30b6, #w-node-a4451e8f-f1f5-6132-7125-5eb3439f989a-c42e30b6, #w-node-_59ff623f-504b-b584-a7c5-007fc7636870-c42e30b6, #w-node-_01bbd33c-a6ed-beaa-3775-4bf137569e1a-c42e30b6, #w-node-_5ec15608-86d2-a9a9-3aa3-bede457fbc57-c42e30b6, #w-node-_49cca918-c86c-541f-7ce5-f9a9d329efa9-c42e30b6, #w-node-d6e596d5-8de4-ff78-b72f-c7add2c74cdf-c42e30b6, #w-node-dc1b3d86-60b2-587e-7b47-7f27d6ea11d7-c42e30b6, #w-node-_765cebc8-d929-9a20-3343-8bcb8e7c2632-c42e30b6, #w-node-_06d68103-5248-e1ef-dd60-824c0578c6c7-c42e30b6, #w-node-_624fe31f1db074dbc97ff260000000000014-c42e30cd, #w-node-_6a078d37-a03b-58b0-5746-bd390040e948-c42e30d5, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94a-c42e30d5, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94c-c42e30d5, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94e-c42e30d5, #w-node-_6a078d37-a03b-58b0-5746-bd390040e950-c42e30d5, #w-node-_6a078d37-a03b-58b0-5746-bd390040e953-c42e30d5, #w-node-_6a078d37-a03b-58b0-5746-bd390040e955-c42e30d5, #w-node-_6a078d37-a03b-58b0-5746-bd390040e957-c42e30d5, #w-node-_6a078d37-a03b-58b0-5746-bd390040e959-c42e30d5, #w-node-_6a078d37-a03b-58b0-5746-bd390040e95b-c42e30d5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1280px) {
  #w-node-_1145b0c0-527b-396a-d612-ecd0e5687a12-c42e309c {
    grid-area: 1 / 3 / 3 / 4;
  }

  #w-node-_43ec419c-b249-9ec3-9ac7-299d56a945be-c42e309c {
    grid-area: 2 / 2 / 3 / 3;
    align-self: end;
    justify-self: start;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_3f103386-5afb-7a9c-ce89-5e1e0e91dd8a-c42e3094 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e9408f5f-e682-8da0-9b5b-2fe586eb6d13-c42e309c, #w-node-_6b0d353e-cafd-d50c-900d-8f793f6e5f3e-c42e309c {
    align-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_7ea853f5-0638-a012-17de-3022b239df90-c42e2feb {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1a5a7386-04b2-0453-d1f4-7dc7e0157836-c42e30b6, #w-node-bf9218f5-50b8-833f-f263-30097612759a-c42e30b6, #w-node-c86fb3cd-1a8c-d271-6bdc-83e9059f4631-c42e30b6, #w-node-dd39ffea-0cbd-77a1-e45c-e793f315d3e9-c42e30b6, #w-node-_1a5a7386-04b2-0453-d1f4-7dc7e0157838-c42e30b6, #w-node-_1a5a7386-04b2-0453-d1f4-7dc7e015783a-c42e30b6, #w-node-_14af8d59-f707-790f-dbd3-282c62d854ed-c42e30b6, #w-node-_9bcabe3c-fedd-3855-4087-d3de656cc5ca-c42e30b6, #w-node-_031a11f3-a699-4824-5f46-01538cb4bbf1-c42e30b6, #w-node-f60db78f-6fb1-b98e-64d4-50e5423632df-c42e30b6, #w-node-cc3597e9-66eb-729f-9af6-d90fa5691426-c42e30b6, #w-node-_423341a2-65c1-b07f-24cd-048031c22cf4-c42e30b6, #w-node-e93bd7ca-19bc-eb4f-2e0a-11d987ab83b2-c42e30b6, #w-node-_6fec9974-6473-31f4-57d8-cd9d73c0c972-c42e30b6, #w-node-a301026a-fd00-5592-ae83-c8b1853b9f6b-c42e30b6, #w-node-d564f88c-10a2-a689-aca2-dd510d193cd7-c42e30b6, #w-node-_342bae1e-5b6a-2558-a3b5-2c152e760b43-c42e30b6, #w-node-b57be06b-5709-8fb8-27a7-a9a262d046a4-c42e30b6, #w-node-_49e41207-b3ff-9f14-f99b-3f79ff8f1e07-c42e30b6, #w-node-_28d775e8-78c2-51a3-d648-1efd52b98e55-c42e30b6, #w-node-_30ab05e7-29d2-44c5-f845-df8dafd8b4bc-c42e30b6, #w-node-_30ab05e7-29d2-44c5-f845-df8dafd8b4be-c42e30b6, #w-node-_30ab05e7-29d2-44c5-f845-df8dafd8b4c0-c42e30b6, #w-node-_30ab05e7-29d2-44c5-f845-df8dafd8b4c2-c42e30b6, #w-node-_30ab05e7-29d2-44c5-f845-df8dafd8b4c4-c42e30b6, #w-node-_30ab05e7-29d2-44c5-f845-df8dafd8b4c6-c42e30b6, #w-node-e8f8b38c-4af5-4dc4-4020-1969b0bd71f8-c42e30b6, #w-node-_1d6232a9-c455-d901-5692-ff10a31e5af0-c42e30b6, #w-node-_4a195160-5298-0da2-9925-213761397c07-c42e30b6, #w-node-_72e3475a-382a-7ec5-92e0-47ce6b5c3d46-c42e30b6, #w-node-_322636bf-b7e7-4356-9073-1e4ec851b9d8-c42e30b6, #w-node-_45d3632d-434e-0da2-215b-366ad12f19d6-c42e30b6, #w-node-_9ca57efb-f73c-a8bf-8574-876612eb4cf7-c42e30b6, #w-node-_2fbe6ada-7ffe-43b6-483a-7d73af53cb13-c42e30b6, #w-node-_3235b7f2-b0d1-dffa-49e3-a3a2862df6ef-c42e30b6, #w-node-d4a8b316-f145-b285-4b46-d08e02ac9b9e-c42e30b6, #w-node-_7c78a35b-d3a0-4a2d-5dcf-58d3aa4e0503-c42e30b6, #w-node-_02861071-8535-d28c-c297-7508398bdb89-c42e30b6, #w-node-fd84a0c0-dade-725a-a22e-15bc5bcecbe3-c42e30b6, #w-node-_0be6bfd6-9b88-3639-2663-4be9de93c378-c42e30b6, #w-node-_3fd12255-bc5e-84cf-3f53-f0dcebeb3c7d-c42e30b6, #w-node-_133391e8-bb38-a63d-d697-bd512ff7a21c-c42e30b6, #w-node-_3be7b6ba-00bf-505d-c53c-fa91a1c2b67a-c42e30b6, #w-node-c20d89b5-5701-da67-2a74-c97170c50b87-c42e30b6, #w-node-_08138e42-eda4-77ff-f226-86a55922a546-c42e30b6, #w-node-ea482cca-7900-81d5-6c0f-ea8e4b26bd42-c42e30b6, #w-node-_69eeb9f4-e3ed-bdf6-c1fe-4da03c9e6d19-c42e30b6, #w-node-f0f1a877-dfab-1414-94b3-b71356bd7ff2-c42e30b6, #w-node-_2a267933-e4c1-40f6-1b85-5e314e7b1555-c42e30b6, #w-node-a12fab3c-ee2b-a61f-3998-c0cdcc4d8d04-c42e30b6, #w-node-_4c8cfdbc-29e3-bf6c-fb96-b95e82fc26ce-c42e30b6, #w-node-_92f3926d-b097-7875-6dc9-10611373fe5d-c42e30b6, #w-node-a4451e8f-f1f5-6132-7125-5eb3439f989a-c42e30b6, #w-node-_59ff623f-504b-b584-a7c5-007fc7636870-c42e30b6, #w-node-_01bbd33c-a6ed-beaa-3775-4bf137569e1a-c42e30b6, #w-node-_5ec15608-86d2-a9a9-3aa3-bede457fbc57-c42e30b6, #w-node-_49cca918-c86c-541f-7ce5-f9a9d329efa9-c42e30b6, #w-node-d6e596d5-8de4-ff78-b72f-c7add2c74cdf-c42e30b6, #w-node-dc1b3d86-60b2-587e-7b47-7f27d6ea11d7-c42e30b6, #w-node-_765cebc8-d929-9a20-3343-8bcb8e7c2632-c42e30b6, #w-node-_06d68103-5248-e1ef-dd60-824c0578c6c7-c42e30b6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


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