:root {
  --primary-dark: #1a1b1f;
  --primary: #001642;
  --gray-super-dark: #616161;
  --primary-semi: #00164266;
  --primary-light: #e9eced;
  --white: white;
  --gray: #e9e9e9;
  --black: black;
  --light-gray: #f9f9fa;
  --transperent-w-base: #fff0;
  --dark-gray: #c5c5c5;
  --white-50: #ffffff80;
  --dark-gray-50: #afafaf80;
  --paragraph-gray: #535353;
}

.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-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

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

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

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

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

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

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

body {
  color: var(--primary-dark);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1em;
}

h1 {
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: DM Sans, sans-serif;
  font-size: 58px;
  font-weight: 500;
  line-height: 1.2em;
}

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

h3 {
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: DM Sans, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2em;
}

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

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

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

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

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

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

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

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

label {
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

blockquote {
  border-left: 1px solid var(--primary-semi);
  color: var(--primary);
  text-align: left;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0 20px 0 40px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
  display: block;
  position: relative;
}

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

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

.section.dark-background {
  background-color: var(--primary);
  display: block;
}

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

.section.search-style {
  padding-top: 40px;
  padding-bottom: 0;
}

.section.banners-home-three {
  background-image: linear-gradient(to top, var(--primary), var(--primary-dark) 80%);
  flex-direction: row;
  align-items: center;
  height: auto;
  min-height: 600px;
  padding-top: 150px;
  display: flex;
}

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

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

.section.hidden {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 {
  flex-direction: column;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

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

.primary-button {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 16px;
  transition: all .3s;
  display: inline-block;
  position: static;
}

.primary-button:hover {
  border-color: var(--primary);
  background-color: var(--transperent-w-base);
  opacity: 1;
  color: var(--primary);
}

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

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

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

.primary-button.outline {
  background-color: var(--transperent-w-base);
}

.primary-button.light {
  border-color: var(--primary-light);
  color: var(--primary);
  background-color: #ddebf9;
}

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

.primary-button.outline {
  border-color: var(--primary);
  color: var(--primary);
  background-color: #ddebf900;
}

.primary-button.outline:hover {
  border-color: var(--primary-light);
}

.primary-button.outline-light {
  border-color: var(--primary-light);
  color: var(--primary-light);
  background-color: #ddebf900;
}

.primary-button.outline-light:hover, .primary-button.light-hover-outline {
  border-color: var(--primary-light);
  background-color: var(--primary-light);
  color: var(--primary);
}

.primary-button.light-hover-outline:hover {
  color: var(--white);
  background-color: #21375300;
}

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

.primary-button.full-width.not-active {
  border-color: var(--dark-gray);
  background-color: var(--dark-gray);
}

.style-guide-div {
  grid-row-gap: 60px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}

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

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

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

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

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

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

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

.nav-link {
  padding: 20px;
  font-size: 16px;
  line-height: 1em;
}

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

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

.nav-link.white-style {
  color: var(--white);
  padding-left: 15px;
  padding-right: 15px;
}

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

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

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

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

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

.nav-dropdown-list {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-color: #ffffffe0;
  border: 1px solid #0000002e;
  width: 220px;
  padding: 15px 20px;
}

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

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

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

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

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

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

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

.nav-item-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1em;
}

.pages-banner {
  background-color: var(--primary);
  justify-content: center;
  align-items: center;
  min-height: 380px;
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
}

.pages-banner.about {
  background-image: linear-gradient(180deg, var(--primary-semi) 60%, #213753bf), linear-gradient(to bottom, #00000059, #00000059), url('../images/O-nas-Opt.png');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
}

.pages-banner.blog-details {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  padding-top: 130px;
  position: relative;
}

.pages-banner.services-details {
  background-image: url('../images/pexels-andre-furtado-2916826_1pexels-andre-furtado-2916826.webp');
  background-position: 50% 40%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 130px;
  position: relative;
}

.pages-banner.job-details {
  background-image: linear-gradient(to bottom, var(--primary-dark), var(--primary));
  position: relative;
}

.pages-banner.contact-us-two {
  background-image: linear-gradient(to bottom, var(--primary-dark), var(--primary));
  margin-bottom: -130px;
  padding-top: 130px;
  padding-bottom: 160px;
  position: relative;
}

.pages-banner.contact-us-three {
  background-image: linear-gradient(13deg, var(--primary-dark), var(--primary) 66%);
}

.pages-banner.reviews {
  background-image: linear-gradient(to bottom, var(--primary-dark), var(--primary));
  margin-bottom: -100px;
  padding-top: 130px;
  padding-bottom: 160px;
  position: relative;
}

.pages-banner.changelog {
  background-image: linear-gradient(180deg, var(--primary-dark), var(--primary));
  padding-top: 130px;
}

.pages-banner.attorneys {
  background-image: linear-gradient(to bottom, var(--primary-semi) 60%, #213753bf), linear-gradient(to bottom, #0003, #0003), url('../images/pexels-karolina-grabowska-7875900_1pexels-karolina-grabowska-7875900.webp');
  background-position: 0 0, 0 0, 50% 26%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
}

.pages-banner.attorney-detail {
  background-image: linear-gradient(to bottom, var(--primary-dark), var(--primary) 50%);
  position: relative;
}

.pages-banner.services-one {
  background-image: linear-gradient(to bottom, var(--primary-dark), #213753);
  position: relative;
}

.pages-banner.services-two {
  background-image: linear-gradient(to bottom, var(--primary-semi) 60%, #213753bf), linear-gradient(to bottom, #00000042, #00000042), url('../images/pexels-pavel-danilyuk-8111879-1_1pexels-pavel-danilyuk-8111879 (1).webp');
  background-position: 0 0, 0 0, 50% 18%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
}

.pages-banner.services-three {
  background-image: linear-gradient(to bottom, var(--primary-semi) 60%, #213753bf), linear-gradient(to bottom, #0000004d, #0000004d), url('../images/pexels-kampus-production-8428076_1pexels-kampus-production-8428076.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
}

.pages-banner.contact-us {
  background-image: linear-gradient(to bottom, var(--primary-semi) 60%, #213753bf), linear-gradient(to bottom, #00000059, #00000059), url('../images/pexels-kampus-production-8428054_1pexels-kampus-production-8428054.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
}

.pages-banner.join-us {
  background-image: linear-gradient(to bottom, var(--primary-semi) 60%, #213753bf), linear-gradient(to bottom, #0003, #0003), url('../images/pexels-karolina-grabowska-7875900_1pexels-karolina-grabowska-7875900.webp');
  background-position: 0 0, 0 0, 50% 26%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
}

.pages-banner.q-and-a {
  background-image: linear-gradient(to bottom, var(--primary-semi) 60%, #213753bf), linear-gradient(to bottom, #0003, #0003), url('../images/pexels-pavel-danilyuk-8112113_1pexels-pavel-danilyuk-8112113.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
}

.pages-banner.pricing {
  background-image: linear-gradient(to bottom, var(--primary-semi) 60%, #213753bf), linear-gradient(to bottom, #0003, #0003), url('../images/pexels-kampus-production-8428076_1pexels-kampus-production-8428076.webp');
  background-position: 0 0, 0 0, 50% 26%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
}

.pages-banner.history {
  background-image: linear-gradient(to bottom, var(--primary-semi) 60%, #213753bf), linear-gradient(to bottom, #00000059, #00000059), url('../images/sebastian-pichler-bAQH53VquTc-unsplash_1sebastian-pichler-bAQH53VquTc-unsplash.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
}

.pages-banner.success-stories {
  background-image: linear-gradient(to bottom, var(--primary-semi) 60%, #213753bf), linear-gradient(to bottom, #00000059, #00000059), url('../images/pexels-karolina-grabowska-7875900_1pexels-karolina-grabowska-7875900.webp');
  background-position: 0 0, 0 0, 50% 25%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
}

.pages-banner.stories-details {
  background-image: linear-gradient(to bottom, var(--primary-dark), var(--primary));
  margin-bottom: -100px;
  padding-top: 130px;
  padding-bottom: 160px;
  position: relative;
}

.pages-banner.blog {
  background-image: linear-gradient(to bottom, var(--primary-semi) 60%, #213753bf), linear-gradient(to bottom, #00000059, #00000059), url('../images/pexels-kampus-production-8439700_1pexels-kampus-production-8439700.webp');
  background-position: 0 0, 0 0, 50% 20%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
}

.pages-banner.clients {
  background-image: linear-gradient(to bottom, var(--primary-dark), var(--primary));
  margin-bottom: -100px;
  padding-top: 130px;
  padding-bottom: 160px;
  position: relative;
}

.pages-banner.licensing, .pages-banner.style-guide {
  background-image: linear-gradient(to bottom, var(--primary-dark), var(--primary));
  padding-top: 130px;
  padding-bottom: 80px;
  position: relative;
}

.pages-banner.search-page-style {
  background-image: linear-gradient(180deg, var(--primary-dark), var(--primary));
  justify-content: flex-start;
  padding-top: 130px;
  padding-bottom: 80px;
  display: block;
  position: relative;
}

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

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

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

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

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

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

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

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

.license-link {
  border-bottom: 1px solid var(--primary-semi);
  color: var(--primary);
  letter-spacing: normal;
  margin-right: 50px;
  padding-bottom: 4px;
  transition-property: border-color;
  display: inline-block;
}

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

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

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

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

.banner-title.attorney {
  text-align: left;
  margin-bottom: 20px;
}

.banner-title.space-below {
  margin-bottom: 30px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._404-title {
  margin-bottom: 15px;
  font-size: 90px;
}

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

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

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

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

.coming-soon-input {
  border: 1px solid var(--dark-gray-50);
  border-radius: 50px;
  min-width: 300px;
  height: auto;
  margin-bottom: 0;
  padding: 10px 22px;
  transition: padding .3s;
}

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

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

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

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

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

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

.blog-post-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
  transition: color .3s;
  display: inline-block;
}

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

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

.blog-sidebar-post-category {
  border: 1px solid var(--primary-light);
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  padding: 4px 14px;
  transition: all .3s;
  display: inline-block;
}

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

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

.blog-template-date {
  color: var(--white);
}

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

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

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

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

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

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

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

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

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

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

.footer-rights {
  color: var(--white-50);
  font-size: 14px;
}

.footer-copyright {
  color: var(--white-50);
  font-size: 14px;
  display: inline;
}

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

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

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

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

.team-card {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.team-card-image {
  color: var(--primary);
  object-fit: cover;
  border-radius: 100%;
  width: 300px;
}

.team-card-image.big {
  width: 200px;
  height: 200px;
}

.team-card-image.hp {
  width: 150px;
  height: 150px;
}

.team-card-image.logo {
  border-radius: 10%;
  width: 160px;
  height: 160px;
}

.team-card-content-wrapper {
  text-align: center;
  padding-top: 5px;
}

.team-member-position {
  color: #525252;
  margin-bottom: 0;
  font-size: 18px;
}

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

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

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

.career-list-item-wrapper {
  background-color: var(--primary);
  align-items: center;
  padding: 20px 35px;
  display: flex;
}

.career-position {
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4em;
  transition: color .2s;
  display: inline-block;
}

.career-position:hover {
  color: var(--white-50);
}

.career-location, .career-type {
  color: var(--white);
}

.career-button-wrapper {
  text-align: right;
  width: 20%;
}

.career-title-mobile {
  color: var(--white);
  margin-bottom: 5px;
  font-weight: 900;
  display: none;
}

.career-position-wrapper {
  width: 35%;
}

.career-location-wrapper {
  width: 25%;
  min-width: 140px;
  padding-left: 35px;
  padding-right: 35px;
}

.career-type-wrapper {
  width: 20%;
  min-width: 140px;
  padding-left: 35px;
  padding-right: 35px;
}

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

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

.banner-title-wrapper.contact-us-two {
  margin-bottom: 60px;
}

.banner-title-wrapper.blog-details {
  max-width: 1100px;
}

.banner-title-wrapper.service-details {
  max-width: 1000px;
}

.banner-title-wrapper.career-details, .banner-title-wrapper.stories-details {
  max-width: 800px;
}

.banner-title-wrapper.search-results-style {
  flex-flow: wrap;
  max-width: 1200px;
}

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

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

.section-title {
  margin-top: 0;
}

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

.accordion-toggle.third-style {
  border-bottom: 1px solid var(--primary-semi);
  align-items: center;
  transition: border .3s;
}

.accordion-toggle.third-style:hover {
  border-bottom-color: var(--primary);
}

.accordion-wrapper {
  grid-column-gap: 60px;
  flex-direction: row;
  width: 100%;
  margin-top: -20px;
  margin-bottom: -20px;
  display: flex;
}

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

.accordion-icon.third-style {
  background-color: var(--primary);
  color: var(--primary);
  border-radius: 2px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 2.5px;
  font-size: 12px;
  line-height: 12px;
  display: flex;
  position: relative;
}

.accordion-wrap {
  width: 50%;
}

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

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

.accordion-list-content.third-style {
  color: var(--primary);
  margin-top: 20px;
}

.accordion-title.third-style {
  color: var(--primary);
  line-height: 1.3em;
}

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

.coming-soon-image {
  object-fit: cover;
  max-width: 480px;
  height: 100%;
  max-height: 450px;
}

.job-position-wrapper {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.job-position-content-wrapper {
  width: 67%;
  padding-right: 70px;
}

.job-position-sidebar-wrapper {
  background-color: var(--primary-light);
  width: 33%;
  padding: 30px 40px 40px;
  position: sticky;
  top: 110px;
}

.job-position-sidebar-wrap {
  align-items: center;
  display: flex;
}

.job-position-sidebar-wrap.last-child {
  margin-bottom: 20px;
}

.job-position-icon {
  color: var(--primary);
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 18px;
}

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

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

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

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

.no-margin.bold {
  font-size: 20px;
  font-weight: 500;
}

.no-margin.not-active {
  color: var(--dark-gray);
}

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

.contacts-2-location-wrapper {
  margin-top: 30px;
}

.footer-link {
  color: var(--white-50);
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all .3s;
  display: inline-block;
}

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

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

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

.white-text {
  color: #fff;
}

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

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

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

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

.search-shop-con {
  align-items: center;
  margin-left: 20px;
  display: flex;
}

.search-result-item {
  margin-bottom: 30px;
}

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

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

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

.search-input:focus {
  border-color: var(--white);
  color: var(--primary);
  padding-left: 30px;
}

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

.search-result-wrapper {
  width: 100%;
  margin-bottom: -30px;
}

.testimonials-card-wrapper {
  z-index: 999;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 100%;
  display: grid;
  position: relative;
}

.testimonials-card-item {
  background-color: var(--primary-light);
  text-align: left;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
}

.testimonials-card-position {
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  padding: 6px 12px;
  line-height: 1em;
}

.testimonials-card-date {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 400;
}

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

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

.service-details-sidebar-contacts {
  margin-top: 20px;
  margin-bottom: 20px;
}

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

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

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

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

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

.services-list-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  display: grid;
}

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

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

.about-3-image {
  object-fit: cover;
  width: 25%;
  height: 300px;
}

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

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

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

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

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

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

.navbar-fixed {
  z-index: 2000;
  background-color: var(--transperent-w-base);
  outline-offset: 0px;
  outline: 3px #0e0e0e;
  align-items: center;
  width: 100%;
  height: 80px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

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

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

.map-wrapper {
  position: relative;
}

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

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

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

.empty-state {
  background-color: var(--transperent-w-base);
  padding: 0;
}

.courses-collection {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.home-blog-list {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.home-blog-item {
  width: 31.8%;
  transition: all .3s;
  display: inline-block;
}

.home-blog-wrapper {
  position: relative;
}

.home-blog-content {
  flex-direction: column;
  justify-content: space-between;
  padding-top: 20px;
  display: flex;
}

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

.home-blog-category {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 14px;
  line-height: 1.6em;
  transition: background-color .3s, color .3s;
  display: inline-block;
  position: absolute;
  inset: 20px 20px auto auto;
}

.home-blog-category:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

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

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

.about-info-cards-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.about-5-info-cards-wrap {
  background-color: var(--primary-light);
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 20px;
}

.about-5-info-cards-wrap.right {
  text-align: right;
  margin-bottom: 20px;
}

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

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

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

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

.service-item-overlay {
  z-index: 5;
  background-color: #0000004d;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  position: relative;
}

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

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

.search {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

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

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

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

.stories-detail-wrap {
  grid-column-gap: 15px;
  align-items: center;
  width: 70%;
  display: flex;
}

.stories-info {
  grid-column-gap: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.gap-8-px-row {
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

.center-title.not-active {
  color: var(--dark-gray);
}

.center-title.hidden, .brand-tablet {
  display: none;
}

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

.footer-rights-wrapper {
  flex-wrap: wrap;
  display: flex;
}

.position-relative {
  position: relative;
}

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

.success-message {
  background-color: var(--transperent-w-base);
  color: var(--primary);
  text-align: center;
}

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

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

.home-title {
  z-index: 999;
  color: #fff;
  max-width: 700px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 58px;
  font-weight: 500;
  line-height: 1.2em;
  position: relative;
}

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

.home-title.banner-two {
  max-width: 900px;
  margin-bottom: 0;
  font-size: 46px;
}

.clip {
  z-index: 10;
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

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

.button-icon.button-icon-top {
  position: absolute;
  left: -100%;
}

.button-animated {
  z-index: 100;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-color: #ffffff1a;
  background-image: none;
  background-clip: border-box;
  border: 1px solid #ffffff80;
  border-radius: 100px;
  justify-content: center;
  height: auto;
  min-height: 45px;
  max-height: 45px;
  padding: 14px 26px;
  font-size: 12px;
  line-height: 1em;
  transition: all .35s;
  display: flex;
  position: relative;
}

.btn-circle {
  background-color: #ffffff1a;
  border: 1px solid #ffffff80;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  display: flex;
}

.icon-bottom {
  width: 10px;
  height: 10px;
}

.icon-bottom.big {
  width: 16px;
  height: 16px;
}

.buttons-wrapper {
  z-index: 1000;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  display: flex;
  position: relative;
}

.buttons-wrapper.banner-two-style {
  justify-content: center;
  margin-top: 20px;
  display: none;
}

.buttons-wrapper.center {
  justify-content: center;
  align-items: center;
}

.banner-section-photo {
  background-image: linear-gradient(#0006, #0006), url('../images/pexels-pavel-danilyuk-8112113_1pexels-pavel-danilyuk-8112113.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 730px;
  padding-top: 130px;
  padding-bottom: 240px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-banner-discription {
  color: #fff;
  width: 66%;
  margin-top: 0;
  margin-bottom: 0;
}

.home-banner-discription.banner-three {
  width: auto;
  max-width: 580px;
}

.video-content-wrapper {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 15px;
  display: flex;
}

.video-content-wrapper.in-section-video {
  justify-content: center;
  align-items: center;
}

.btn-circle-big {
  background-color: var(--primary-light);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
}

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

.in-section-title.attorney-details {
  text-align: left;
  margin-right: auto;
}

.column-one {
  flex: 0 auto;
  align-self: center;
  width: 35%;
  height: 100%;
}

.column-one.with-bottom-bg {
  text-align: center;
  height: auto;
}

.column-two {
  width: 60%;
  height: 100%;
}

.column-two.team-info-block {
  width: 55%;
}

.column-two.with-bottom-bg {
  margin-bottom: auto;
}

.column-two.centered {
  text-align: center;
  width: 100%;
}

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

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

.two-column-wrapper.block {
  display: block;
}

.video-in-section {
  z-index: 999;
  background-image: linear-gradient(#0000004d, #0000004d), url('../images/pexels-karolina-grabowska-7875984_1pexels-karolina-grabowska-7875984.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 420px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  position: relative;
}

.video-button-wrapper {
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  display: flex;
}

.heading-advantages {
  grid-column-gap: 20px;
  justify-content: space-between;
  align-items: center;
  display: block;
}

.number {
  color: #000;
  font-size: 16px;
}

.number.white-text {
  color: #fff;
}

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

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

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

.small-paragraph.white-w-95 {
  color: #fff;
  width: 95%;
}

.small-paragraph._w-95 {
  width: 95%;
}

.advantages-wrap {
  background-color: var(--primary-light);
  width: 90%;
  padding: 15px 20px;
}

.advantages-wrap.center-item {
  background-color: var(--primary);
  margin-left: 30px;
  box-shadow: 0 24px 48px -12px #1018282e;
}

.advantages-wrap.white-style {
  background-color: var(--white);
}

.video-content {
  width: 60%;
}

.video-big {
  z-index: 999;
  background-image: linear-gradient(to top, #00000080, #fff0), linear-gradient(#0006, #0006), url('../images/pexels-kampus-production-8428054_1pexels-kampus-production-8428054.webp');
  background-position: 0 0, 0 0, 50% 60%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  min-height: 520px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.home-1-contact-block {
  grid-row-gap: 40px;
  background-color: var(--primary-light);
  flex-direction: column;
  flex: 1;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  width: 40%;
  padding: 50px;
  display: flex;
  position: relative;
}

._1-home-map-block {
  width: 60%;
  position: relative;
  overflow: hidden;
}

.home-1-map-block {
  z-index: 1;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.home-contact-wrapper {
  z-index: 999;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.working-wrap {
  grid-row-gap: 5px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.numbers-text {
  color: #fdfbf999;
}

.numbers {
  color: var(--white);
  margin-bottom: 5px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1em;
}

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

.work-wrapper {
  background-image: url('../images/office-building-2023-11-27-05-00-38-utc.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  height: 100%;
  padding: 30px 20px;
  display: flex;
  position: relative;
}

.icon-work {
  z-index: 1;
  background-color: var(--primary-light);
  border-radius: 100%;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  padding: 12px;
  position: relative;
}

.service-item-description {
  z-index: 1;
  color: var(--white);
  position: relative;
}

.about-block-image {
  z-index: 2;
  object-fit: cover;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  min-height: 420px;
  position: relative;
}

.about-block-image.with-bottom-bg {
  width: 300px;
  max-width: 300px;
  height: 300px;
  min-height: 0;
}

.banner-numbers-wrapper {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.services-titles {
  z-index: 1;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3em;
  transition: color .3s;
  position: relative;
}

.services-titles:hover {
  color: var(--white-50);
}

.services-titles.three {
  color: var(--primary);
  font-size: 28px;
}

.services-titles.three:hover {
  color: var(--primary-semi);
}

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

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

.dark-overlay {
  z-index: 0;
  background-color: #00164299;
  position: absolute;
  inset: 0%;
}

.collection-item-services, .collection-list-wrapper-services {
  height: 100%;
}

.link-underline {
  border-bottom: 1px solid var(--primary-semi);
  color: var(--primary-dark);
  padding-bottom: 4px;
  transition-property: all;
  transition-duration: .3s;
  display: inline-block;
}

.link-underline:hover {
  border-bottom-color: var(--primary);
}

.link-underline.white-style {
  border-bottom-color: var(--white);
  color: #fff;
}

.link-underline.white-style:hover {
  border-bottom-color: var(--white-50);
}

.footer-wrapper-top {
  border-bottom: 1px solid var(--white-50);
  justify-content: space-between;
  width: 100%;
  margin-bottom: 60px;
  padding-bottom: 20px;
  display: flex;
}

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

.numbers-small {
  margin-top: 0;
  font-size: 28px;
}

.about-block-image-high {
  z-index: 2;
  object-fit: cover;
  border-radius: 100%;
  position: relative;
}

.image-icon-service-inverted {
  filter: invert() brightness(200%) grayscale();
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.services-details-sidebar-wrapper {
  background-color: var(--primary-light);
  flex-direction: column;
  align-items: flex-start;
  width: 30%;
  padding: 30px 20px 40px;
  display: flex;
  position: sticky;
  top: 100px;
}

.blog-list-main {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  display: flex;
}

.blog-subtitle-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: row;
  align-items: center;
  display: flex;
}

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

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

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

.rich-text-style-details h2 {
  margin-bottom: 15px;
  font-size: 40px;
}

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

.rich-text-style-details h4 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 26px;
}

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

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

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

.image-stories {
  object-fit: cover;
  width: 100%;
  height: 240px;
}

.round-button {
  border: 1px solid var(--primary-semi);
  background-color: #0000;
  border-radius: 50%;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: background-color .3s, border-color .3s, color .3s;
  display: flex;
}

.round-button:hover {
  border-color: var(--primary);
}

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

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

.collection-list-wrapper-stories, .collection-item-stories, .collection-list-wrapper-services-three {
  width: 100%;
}

.services-3-collection-item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.service-3-title-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.service-3-image {
  object-fit: cover;
  width: 100%;
  height: 260px;
  transition: transform .5s;
}

.service-3-image:hover {
  transform: scale(1.1);
}

.service-3-info-wrapper {
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 30px;
  display: flex;
}

.services-3-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.service-3-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-icon-service-3-style {
  width: 30px;
  height: 30px;
}

.video-in-section-careers {
  z-index: 999;
  background-image: linear-gradient(#0000004d, #0000004d), url('../images/pexels-kampus-production-8428076_1pexels-kampus-production-8428076.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 445px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  position: relative;
}

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

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

.div-block {
  min-width: 11%;
}

.bg-bottom-piece {
  background-color: var(--primary-light);
  height: 80px;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.working-numbers-copy {
  grid-column-gap: 0px;
  background-color: var(--primary);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
}

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

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

.title-book-form {
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  display: flex;
}

.book-form-block {
  text-align: center;
  width: 100%;
}

.book-inputs-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 20px;
  display: grid;
}

.form-book-input {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--primary);
  border-radius: 0;
  height: auto;
  margin-bottom: 0;
  padding: 12px 20px;
  font-size: 16px;
  transition: all .2s;
}

.form-book-input:focus {
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 16px;
}

.form-book-input::placeholder {
  color: var(--primary);
  font-size: 16px;
}

.form-book-input.with-bg {
  background-color: var(--primary-light);
}

.form-book-input.with-bg:focus {
  border-color: var(--primary);
}

.book-image {
  z-index: 2;
  width: 35%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.select-book {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--primary);
  border-radius: 0;
  height: 49px;
  margin-bottom: 0;
  padding: 12px 16px;
  font-size: 16px;
}

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

.select-book.with-bg {
  background-color: var(--primary-light);
}

.book-wrap {
  flex-direction: row;
  align-items: center;
  width: 65%;
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
}

.book-form {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 0;
  padding-right: 60px;
  display: flex;
}

.book-form.contact-us-page-style {
  padding-right: 0;
}

.book-textarea {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--primary);
  border-radius: 0;
  min-width: 100%;
  max-width: 100%;
  min-height: 100px;
  max-height: 100%;
  margin-bottom: 40px;
  padding: 12px 20px;
  font-size: 16px;
}

.book-textarea:focus {
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 16px;
}

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

.book-textarea.with-bg {
  background-color: var(--primary-light);
}

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

.book-wrapper {
  z-index: 999;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: var(--primary-light);
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: stretch stretch;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.accordion-item-home {
  background-color: #fff;
  width: 100%;
  margin-bottom: 15px;
  padding: 20px 30px;
  position: static;
  box-shadow: 0 0 20px #0000000f;
}

.accordion-item-home.third-style {
  box-shadow: none;
  background-color: #0000;
  margin-bottom: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.accordion-third-style-icon {
  background-color: var(--primary);
  color: var(--primary);
  border-radius: 2px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 2.5px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 12px;
  line-height: 12px;
  display: flex;
  position: absolute;
  inset: auto 0% auto auto;
}

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

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

.location-map-wrapper {
  height: 100%;
  max-height: 380px;
  position: relative;
  overflow: hidden;
}

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

.icon-work-wrapper {
  z-index: 1;
  background-color: var(--primary-light);
  border-radius: 100%;
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  padding: 10px;
  position: relative;
}

.footer-contact-link {
  color: var(--white-50);
  font-size: 24px;
  font-weight: 500;
}

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

.emergency-call-wrapper {
  grid-column-gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.quote-qrapper-small {
  grid-row-gap: 15px;
  border-left: 1px solid var(--primary-semi);
  text-align: left;
  flex-direction: column;
  padding-left: 30px;
  display: flex;
}

.quote-qrapper-small.with-top-spacing {
  margin-top: 40px;
}

.team-title {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
  transition: color .3s;
  display: inline-block;
}

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

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

.nav-link-collection {
  width: 100%;
}

.slide-nav-home {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 70px;
  padding-top: 0;
  font-size: 10px;
  display: none;
  inset: auto 0% 40px;
}

.banner-section-slider {
  flex-direction: column;
  height: 100%;
  min-height: auto;
  position: relative;
}

.banner-slider-container {
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.home-slide-main {
  background-image: linear-gradient(180deg, var(--primary-semi) 60%, #213753cc), linear-gradient(to bottom, #0006, #0006), url('../images/Home-Opt.png');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
}

.banner-right-arrow {
  border-bottom: 1px solid var(--white-50);
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 46px;
  transition: all .3s;
  display: none;
  inset: 0% 0 0% auto;
}

.banner-right-arrow:hover {
  border-bottom-color: var(--white);
}

.home-banner-slider {
  background-color: #0000;
  min-height: 740px;
  position: relative;
}

.paragraph-banner {
  color: #fff;
  text-align: center;
  max-width: 640px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 16px;
}

.paragraph-banner.with-bg {
  background-color: #001642cc;
  border-radius: 20px;
  padding: 10px 60px;
  display: block;
}

.paragraph-banner.with-bg.hidden {
  display: none;
}

.home-slide-three {
  background-image: linear-gradient(to bottom, var(--primary-semi) 60%, #213753cc), linear-gradient(to bottom, #0006, #0006), url('../images/pexels-pavel-danilyuk-8112113_1pexels-pavel-danilyuk-8112113.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
}

.home-slide-two {
  background-image: linear-gradient(to bottom, var(--primary-semi) 60%, #213753cc), linear-gradient(to bottom, #0006, #0006), url('../images/pexels-pavel-danilyuk-8112152_1pexels-pavel-danilyuk-8112152.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
}

.banner-left-arrow {
  border-bottom: 1px solid var(--white-50);
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 46px;
  transition: all .3s;
  display: none;
  inset: 0% auto 0% 0;
}

.banner-left-arrow:hover {
  border-bottom-color: var(--white);
}

.home-3-banner-img-absolute {
  object-fit: cover;
  width: 140px;
  height: 150px;
  position: absolute;
  top: 140px;
  left: 5px;
}

.home-3-banner-img-absolute.four {
  z-index: 20;
  top: auto;
  bottom: 30px;
  left: 30px;
}

.home-3-banner-img-absolute.two {
  z-index: 20;
  width: 180px;
  inset: auto 0% 4% auto;
}

.home-3-banner-img-absolute.three {
  z-index: 30;
  width: 140px;
  height: 120px;
  top: 110px;
  left: auto;
  right: 8px;
}

.home-3-banner-img-absolute.one {
  width: 130px;
  height: 140px;
}

.bottom-round-bg {
  z-index: 999;
  background-image: url('../images/Round-Bottom-BG.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 100px;
  margin-bottom: -2px;
  position: absolute;
  inset: auto 0% 0%;
}

.about-dropdowns-wrapper {
  width: 100%;
  margin-top: 20px;
}

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

.position {
  border: 1px solid var(--white-50);
  color: var(--white);
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 20px;
}

.team-member-details-img {
  object-fit: cover;
  object-position: 50% 10%;
  border-radius: 100%;
  width: 100%;
  max-width: 370px;
  height: 370px;
}

.contact-link {
  color: var(--white-50);
  text-transform: none;
  font-size: 18px;
}

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

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

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

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

.contact-team-wrap.no-top-spacing {
  margin-top: 0;
}

.attorney-bio-summary {
  border-bottom: 1px solid var(--white-50);
  color: var(--white);
  margin-top: 30px;
  margin-bottom: 40px;
  padding-bottom: 40px;
}

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

.banner-description {
  color: var(--white);
  text-align: center;
  max-width: 600px;
}

.pricing-plan-item-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
}

.pricing-plan-item-title.not-active {
  color: var(--dark-gray);
}

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

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

.pricing-plans-wrapper.margin-bottom.hidden, .pricing-plans-wrapper.hidden {
  display: none;
}

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

.button-wrapper-pricing.full-width {
  width: 100%;
}

.pricing-tag {
  background-color: var(--white);
  color: #0c0c0d;
  border-radius: 50px;
  margin-top: -6px;
  margin-left: 6px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1em;
  transition: border .2s, background-color .2s, color .2s;
}

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

.pricing-title-wrapper {
  align-items: flex-start;
  display: flex;
}

.pricing-plan-currency-icon {
  margin-top: -10px;
  margin-right: 3px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1em;
}

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

.pricing-plan-list {
  border-top: 1px solid var(--primary-semi);
  width: 100%;
  margin-top: 40px;
  margin-bottom: 0;
  padding-top: 40px;
}

.pricing-plan-item {
  background-color: var(--primary-light);
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 30px 30px;
  display: flex;
}

.pricing-plan-item.center {
  justify-content: flex-start;
  align-items: center;
}

.dropdown-plus-wrapper {
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.padding-small {
  padding: 20px;
}

.padding-small.box-shadow-gray {
  background-color: var(--primary-light);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.flex-horizontal-align-start {
  align-items: flex-start;
  display: flex;
}

.flex-horizontal-align-start.tablet-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.card-wrapper-small {
  width: 40%;
}

.card-wrapper-small.tablet-full-width {
  position: sticky;
  top: 110px;
}

.column-wrapper-medium {
  width: 60%;
}

.column-wrapper-medium.tablet-full-width {
  align-items: center;
}

.timeline-line {
  background-color: var(--primary);
  width: 1px;
  height: 40px;
  margin-left: 50%;
}

.history-year {
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  padding: 6px 12px;
  line-height: 1em;
}

.stories-category {
  border: 1px solid var(--primary-semi);
  color: var(--primary);
  border-radius: 50px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1em;
  transition: background-color .3s, color .3s;
  display: inline-block;
}

.stories-category:hover {
  border-color: var(--primary-light);
  background-color: var(--primary-light);
  color: var(--primary);
}

.stories-category.details-style {
  border-color: var(--white-50);
  color: var(--white);
}

.stories-category.details-style:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.stories-item-name {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2em;
  display: inline-block;
}

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

.stories-banner-image {
  z-index: 999;
  object-fit: cover;
  object-position: 50% 40%;
  width: 100%;
  height: 460px;
  position: relative;
}

.div-block-2 {
  grid-column-gap: 15px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  margin-bottom: 20px;
  display: flex;
}

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

.customer-wrapper {
  background-color: var(--primary-light);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 280px;
  transition: all .3s;
  display: flex;
}

.customer-wrapper:hover {
  opacity: 1;
}

.customer-title {
  text-transform: uppercase;
  margin-top: 20px;
  font-size: 12px;
}

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

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

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

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

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

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

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

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

.more-templates {
  z-index: 100;
  color: #000;
  letter-spacing: normal;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  width: 140px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  display: none;
  position: fixed;
  inset: auto 12px 48px auto;
}

.more-templates:hover {
  color: #000;
}

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

.buy-this-template {
  z-index: 1000;
  color: #000;
  letter-spacing: normal;
  background-color: #fff;
  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;
  display: none;
  position: fixed;
  inset: auto 12px 12px auto;
}

.buy-this-template:hover {
  color: #000;
}

.collection-list-2 {
  text-align: center;
  grid-template-rows: auto auto;
  display: block;
}

.collection-item {
  padding: 10px;
  display: inline-block;
}

.image {
  text-align: left;
  width: 200px;
  margin-top: 20px;
}

.div-block-3 {
  text-align: right;
}

.quick-stack, .quick-stack-2 {
  padding: 0;
}

.cell, .cell-2 {
  justify-content: center;
  align-items: flex-start;
}

.text-span-2 {
  color: red;
}

.heading, .paragraph {
  text-align: center;
}

.paragraph.hidden {
  display: block;
}

.text-span-3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 500;
}

.modal {
  z-index: 9999;
  background-color: var(--dark-gray-50);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.paragraph-2 {
  text-align: left;
}

.modal-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fff;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 90%;
  max-width: 800px;
  height: 90vh;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  position: relative;
  inset: auto;
  overflow: auto;
}

.modal-nav {
  background-color: #fff;
  justify-content: flex-end;
  align-items: center;
  height: 80px;
  padding-right: 0;
  display: flex;
  position: sticky;
  inset: 0% 0% auto;
}

.paragraph-3 {
  margin-top: 0;
}

.text-span-4 {
  font-size: 12px;
}

.text-block {
  text-align: left;
}

.text-span-5 {
  font-size: 38px;
  display: none;
}

.paragraph-4 {
  display: inline;
}

.grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template: "Area"
  / 1fr 1fr 1fr;
}

.light {
  color: var(--white-50);
  text-decoration: underline;
}

.video {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}

.szkolenie-video {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.szkolenie-video.hidden, .bold-text {
  display: none;
}

.paragraph-5 {
  display: block;
}

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

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

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

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

  .section.banners-home-three {
    min-height: 700px;
    padding-top: 190px;
  }

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

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

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

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

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

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

  .pages-banner.blog-details, .pages-banner.services-details {
    padding-top: 170px;
  }

  .pages-banner.contact-us-two, .pages-banner.reviews {
    padding-top: 170px;
    padding-bottom: 190px;
  }

  .pages-banner.changelog {
    padding-top: 170px;
  }

  .pages-banner.stories-details, .pages-banner.clients {
    padding-top: 170px;
    padding-bottom: 190px;
  }

  .pages-banner.licensing, .pages-banner.style-guide, .pages-banner.search-page-style {
    padding-top: 170px;
    padding-bottom: 130px;
  }

  .banner-title.space-below {
    font-size: 58px;
  }

  .coming-soon-heading {
    max-width: 600px;
  }

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

  .footer {
    padding-top: 80px;
  }

  .team-card-image.big {
    width: 220px;
    height: 220px;
  }

  .team-card-image.logo {
    border: 2px solid #000;
    overflow: clip;
  }

  .style-guide-buttons-wrapper {
    grid-column-gap: 100px;
    flex-wrap: nowrap;
  }

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

  .testimonials-card-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .testimonials-card-item {
    padding: 30px;
  }

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

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

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

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

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

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

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

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

  .home-blog-item {
    width: 32.18%;
  }

  .about-5-info-cards-wrap, .about-5-info-cards-wrap.right {
    width: 100%;
  }

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

  .center-title {
    padding-right: 0;
  }

  .home-title {
    max-width: 740px;
    font-size: 62px;
  }

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

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

  .banner-content-container {
    padding-left: 0;
    padding-right: 0;
  }

  .banner-section-photo {
    padding-top: 170px;
  }

  .home-banner-discription {
    width: 54%;
  }

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

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

  .small-paragraph.white-w-95, .small-paragraph._w-95 {
    width: 90%;
  }

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

  .advantages-wrap.center-item {
    margin-left: 5%;
  }

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

  .about-block-image {
    min-height: 410px;
  }

  .about-block-image.with-bottom-bg {
    width: 300px;
  }

  .banner-content-container-two {
    padding-left: 0;
    padding-right: 0;
  }

  .about-block-image-high {
    border-radius: 100%;
  }

  .services-details-sidebar-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .image-stories {
    height: 280px;
  }

  .service-3-image {
    height: 300px;
  }

  .video-in-section-careers {
    min-height: 390px;
  }

  .bg-bottom-piece {
    height: 130px;
  }

  .title-book-form {
    width: 90%;
  }

  .book-form {
    padding-right: 80px;
    top: auto;
    left: -70px;
  }

  .book-wrapper {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

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

  .paragraph-banner {
    max-width: 700px;
  }

  .home-3-banner-img-absolute {
    width: 190px;
    height: 180px;
    left: 15px;
  }

  .home-3-banner-img-absolute.two {
    right: 3%;
  }

  .home-3-banner-img-absolute.three {
    width: 180px;
    height: 160px;
    right: 19px;
  }

  .home-3-banner-img-absolute.one {
    width: 190px;
    height: 180px;
  }

  .team-member-details-img {
    max-width: 450px;
    height: 450px;
  }

  .details-team-wrapper {
    grid-column-gap: 80px;
  }

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

  .grid {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    grid-template-areas: "Area Area-2 Area-3";
    grid-auto-flow: row;
    place-items: center;
  }
}

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

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

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

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

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

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

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

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

  .video-big {
    min-height: 680px;
  }

  .home-1-contact-block {
    padding-top: 65px;
    padding-bottom: 65px;
    padding-right: 70px;
  }

  .working-wrap {
    position: relative;
  }

  .home-3-banner-img-absolute.four {
    left: 107px;
  }

  .home-3-banner-img-absolute.two {
    bottom: 12%;
    right: 7%;
  }

  .home-3-banner-img-absolute.three {
    right: 26px;
  }
}

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

  .section.banners-home-three {
    align-items: center;
    padding-top: 230px;
    display: flex;
    overflow: hidden;
  }

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

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

  .pages-banner.about, .pages-banner.attorneys, .pages-banner.services-one, .pages-banner.services-two, .pages-banner.services-three, .pages-banner.contact-us, .pages-banner.join-us, .pages-banner.q-and-a, .pages-banner.pricing, .pages-banner.history, .pages-banner.success-stories, .pages-banner.blog {
    min-height: 440px;
  }

  .team-card-image.big {
    width: 260px;
    height: 260px;
  }

  .banner-title-wrapper.service-details {
    max-width: 1200px;
  }

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

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

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

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

  .home-blog-item {
    width: 32.3%;
  }

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

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

  .home-title {
    max-width: 840px;
    font-size: 70px;
  }

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

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

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

  .banner-section-photo {
    padding-bottom: 260px;
  }

  .home-banner-discription {
    width: 50%;
  }

  .video-content-wrapper {
    max-width: 1400px;
  }

  .video-content {
    width: 54%;
  }

  .video-big {
    min-height: 800px;
  }

  .numbers {
    font-size: 56px;
  }

  .about-block-image {
    min-height: 380px;
  }

  .banner-numbers-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .image-stories {
    height: 320px;
  }

  .video-in-section-careers {
    min-height: 370px;
  }

  .working-numbers-copy {
    max-width: 1400px;
  }

  .title-book-form {
    width: 75%;
  }

  .book-wrap {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .slide-nav-home {
    bottom: 80px;
  }

  .home-3-banner-img-absolute {
    width: 240px;
    height: 240px;
    top: 175px;
    left: 85px;
  }

  .home-3-banner-img-absolute.four {
    width: 260px;
    height: 200px;
    bottom: 0;
    left: 172px;
  }

  .home-3-banner-img-absolute.two {
    width: 280px;
    height: 270px;
    bottom: 4%;
    right: 8%;
  }

  .home-3-banner-img-absolute.three {
    width: 260px;
    height: 180px;
    top: 137px;
    right: 45px;
  }

  .home-3-banner-img-absolute.one {
    width: 240px;
    height: 240px;
  }

  .team-member-details-img {
    max-width: 520px;
    height: 520px;
  }

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

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

  h2 {
    font-size: 42px;
  }

  blockquote {
    font-size: 30px;
  }

  .section.search-style {
    padding-top: 40px;
  }

  .section.banners-home-three {
    min-height: 600px;
    padding-top: 110px;
  }

  .section.stories-spacing {
    padding-top: 40px;
  }

  .grid-system {
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

  .headings-typography-wrapper, .style-guide-body-wrapper {
    width: 100%;
  }

  .primary-button, .primary-button.nav-tablet {
    display: block;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .nav-dropdown-icon {
    margin-right: 1.5px;
    font-size: 16px;
    display: block;
    inset: 0% 0 0% auto;
  }

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

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

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

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

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

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

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

  .nav-close-icon {
    z-index: 15;
    align-self: stretch;
  }

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

  .pages-banner.contact-us-two, .pages-banner.reviews, .pages-banner.changelog, .pages-banner.stories-details, .pages-banner.clients, .pages-banner.licensing, .pages-banner.style-guide, .pages-banner.search-page-style {
    padding-top: 110px;
  }

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

  .licensing-paragraph {
    width: 100%;
  }

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

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

  .coming-soon-heading {
    text-align: center;
    max-width: 500px;
    font-size: 48px;
  }

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

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

  .team-card-image.big {
    width: 160px;
    height: 160px;
  }

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

  .career-list-item-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .career-location, .career-location-wrapper, .career-type-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .banner-title-wrapper.service-details, .banner-title-wrapper.career-details, .banner-title-wrapper.stories-details {
    max-width: 700px;
  }

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

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

  .job-position-content-wrapper {
    padding-right: 40px;
  }

  .job-position-sidebar-wrapper {
    padding: 20px 20px 30px;
    top: 80px;
  }

  .contacts-2-location-wrapper {
    width: 34%;
    margin-top: 0;
  }

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

  .footer-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-wrap: wrap;
  }

  .search-shop-con {
    display: none;
  }

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

  .testimonials-card-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-card-title {
    font-size: 20px;
  }

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

  .headings-container {
    flex-wrap: wrap;
  }

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

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

  .style-guide-content-wrapper {
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

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

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

  .navbar-fixed {
    height: 60px;
  }

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

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

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

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

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

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

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

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

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

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

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

  .subtitle {
    margin-bottom: 30px;
  }

  .content {
    margin-bottom: 0;
  }

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

  .home-blog-list {
    column-count: 2;
    justify-content: center;
  }

  .home-blog-item {
    width: 47.5%;
  }

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

  .about-5-info-cards-wrap {
    text-align: center;
    width: 48.6%;
  }

  .about-5-info-cards-wrap.right {
    text-align: center;
  }

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

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

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

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

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

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

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

  .center-title.not-active.hidden {
    display: none;
  }

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

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

  .image-burger.white-style {
    filter: invert();
  }

  .brand-tablet {
    display: block;
  }

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

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

  .home-title {
    max-width: 620px;
    font-size: 52px;
  }

  .home-title.banner-three, .home-title.banner-two {
    max-width: 700px;
  }

  .banner-section-photo {
    min-height: 560px;
    padding-top: 110px;
  }

  .home-banner-discription {
    width: 60%;
  }

  .video-content-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .column-one, .column-two {
    width: 100%;
  }

  .column-two.team-info-block {
    flex-direction: column;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .column-two.with-bottom-bg {
    margin-bottom: 0;
  }

  .two-column-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .two-column-wrapper.reverse {
    grid-row-gap: 20px;
    flex-flow: column-reverse;
  }

  .video-in-section {
    width: 100%;
    min-height: 420px;
  }

  .advantages-wrapper {
    flex-direction: column-reverse;
    display: flex;
  }

  .advantages-wrap.center-item {
    width: 93%;
  }

  .video-content {
    width: 60%;
  }

  .video-big {
    width: 100%;
    min-height: 420px;
  }

  .home-1-contact-block {
    padding: 30px 40px 40px;
  }

  .home-1-map-block {
    width: 100%;
  }

  .home-contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .working-wrap {
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .numbers {
    font-size: 40px;
  }

  .work-coach {
    grid-template-columns: 1fr 1fr;
  }

  .work-wrapper {
    padding: 30px;
  }

  .about-block-image {
    max-width: 400px;
    min-height: 0;
  }

  .team-grid-home {
    grid-template-columns: 1fr 1fr 1fr;
    width: 86%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-wrapper-top {
    text-align: left;
    flex-wrap: wrap;
  }

  .about-block-image-high {
    min-height: auto;
    max-height: 200px;
  }

  .image-icon-service-inverted {
    width: 40px;
    height: 40px;
  }

  .services-details-sidebar-wrapper {
    width: 40%;
    top: 80px;
  }

  .blog-list-main {
    column-count: 2;
    justify-content: center;
  }

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

  .service-3-image {
    height: 240px;
  }

  .video-in-section-careers {
    width: 100%;
    min-height: 420px;
  }

  .div-block {
    min-width: auto;
  }

  .working-numbers-copy {
    width: 100%;
    padding: 25px 20px;
  }

  .section-two-side-title-wrapp {
    margin-bottom: 40px;
  }

  .two-side-title-wrapper {
    width: auto;
  }

  .title-book-form {
    margin-bottom: 10px;
  }

  .book-inputs-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .book-image {
    width: 100%;
  }

  .book-wrap {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .book-form {
    height: auto;
    min-height: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .book-form.contact-us-page-style {
    padding-left: 0;
  }

  .image-book-cover {
    object-position: 50% 0%;
    height: 460px;
  }

  .image-book-cover.hidden {
    display: none;
  }

  .book-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 0px;
    flex-direction: column-reverse;
    grid-template-columns: 1fr;
  }

  .emergency-call-wrapper {
    justify-content: flex-start;
  }

  .quote-qrapper-small.with-top-spacing {
    margin-top: 30px;
  }

  .banner-slider-container {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .banner-right-arrow {
    top: auto;
    bottom: 41px;
  }

  .home-banner-slider {
    min-height: 700px;
  }

  .paragraph-banner {
    width: 66%;
  }

  .banner-left-arrow {
    top: auto;
    bottom: 41px;
  }

  .home-3-banner-img-absolute {
    width: 130px;
    height: 120px;
    display: block;
    top: 80px;
  }

  .home-3-banner-img-absolute.four {
    filter: brightness(75%);
    width: 140px;
    height: 110px;
    display: block;
    top: auto;
    bottom: 0;
    left: 36px;
  }

  .home-3-banner-img-absolute.two {
    filter: brightness(75%);
    width: 180px;
    height: 120px;
    bottom: 0%;
    right: 2%;
  }

  .home-3-banner-img-absolute.three {
    filter: brightness(75%);
    width: 120px;
    height: 90px;
    display: block;
    top: 67px;
    right: 16px;
  }

  .home-3-banner-img-absolute.one {
    filter: brightness(75%);
    width: 130px;
    height: 120px;
  }

  .team-member-details-img {
    max-width: 440px;
    height: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .details-team-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .attorney-bio-summary {
    max-width: 560px;
  }

  .team-info-wrapper {
    text-align: center;
    align-items: center;
  }

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

  .pricing-plans-wrapper.margin-bottom.hidden, .pricing-plans-wrapper.hidden {
    display: none;
  }

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

  .flex-horizontal-align-start.tablet-wrap {
    flex-wrap: wrap;
  }

  .card-wrapper-small.tablet-full-width {
    width: 100%;
    position: relative;
    top: 0;
  }

  .column-wrapper-medium.tablet-full-width {
    width: 100%;
  }

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

  .hire-popup {
    max-width: 380px;
  }

  .hire-popup-wrap {
    display: none;
  }

  .cell, .cell-2, .cell-3 {
    justify-content: center;
    align-items: center;
  }

  .szkolenie-video {
    width: 100%;
  }
}

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

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  blockquote {
    font-size: 25px;
  }

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

  .section.search-style {
    padding-top: 30px;
  }

  .section.banners-home-three {
    height: auto;
    min-height: 640px;
    padding-top: 90px;
  }

  .grid-system-wrapper {
    flex-direction: row;
    margin-top: 15px;
  }

  .grid-system {
    border-left: 1px solid #7c7c7c;
    flex-direction: column;
  }

  .grid-title {
    border-bottom: 1px solid #7c7c7c;
    border-right-style: none;
    width: 100%;
  }

  .grid-title.first-grid {
    border-left-style: none;
    border-right-style: none;
    width: 100%;
  }

  .grid-description {
    border-top: 1px solid #a7a7a7;
    border-bottom-style: none;
    border-right-width: 1px;
    align-items: center;
    width: 100%;
  }

  .grid-description.first-description {
    border-width: 1px 1px .5px 0;
    border-top-style: none;
    border-top-color: #a7a7a7;
    border-bottom-style: none;
    border-left-style: none;
    width: 100%;
  }

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

  .spacing-system-column {
    margin-top: 20px;
  }

  .spacing-wrapper-mobile {
    margin-top: 30px;
  }

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

  .spacing-columns {
    margin-top: 0;
  }

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

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

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

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

  .colors-container {
    margin-top: 20px;
  }

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

  .style-guide-body-wrapper, .primary-button.full-width-mobile {
    width: 100%;
  }

  .style-guide-div {
    grid-row-gap: 40px;
  }

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

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

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

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

  .link-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .nav-link {
    margin-left: 0;
  }

  .pages-banner {
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .pages-banner.blog-details, .pages-banner.services-details, .pages-banner.contact-us-two, .pages-banner.reviews, .pages-banner.changelog, .pages-banner.stories-details, .pages-banner.clients {
    padding-top: 90px;
  }

  .pages-banner.licensing, .pages-banner.style-guide, .pages-banner.search-page-style {
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .licensing-title-wrapper {
    margin-bottom: 20px;
  }

  .licensing-images-wrapper {
    padding-top: 10px;
  }

  .licensing-grid {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 40px;
  }

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

  .licensing-title {
    padding-bottom: 20px;
  }

  .licensing-fonts-wrapper {
    flex-wrap: wrap;
  }

  .licensing-paragraph {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .licensing-font-title {
    margin-bottom: 10px;
  }

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

  .utility-page-content {
    width: 70%;
  }

  .password-image {
    width: 100px;
  }

  .password-input {
    min-width: auto;
  }

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

  ._404-title {
    margin-bottom: 10px;
    font-size: 70px;
  }

  .coming-soon-wrapper {
    margin-left: 0%;
  }

  .coming-soon-input {
    min-width: 240px;
  }

  .coming-soon-heading {
    max-width: 460px;
    font-size: 40px;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

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

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

  .team-card-image {
    width: 130px;
    height: 130px;
  }

  .team-card-image.big {
    width: 200px;
    height: 200px;
  }

  .team-card-image.logo {
    width: 120px;
    height: 120px;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: wrap;
    margin-top: 35px;
  }

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

  .career-list-item-wrapper {
    flex-wrap: wrap;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .career-position {
    margin-top: 0;
    font-weight: 700;
  }

  .career-position:hover {
    color: var(--white);
  }

  .career-location, .career-type {
    margin-top: 15px;
    font-weight: 700;
  }

  .career-button-wrapper {
    text-align: center;
    width: 100%;
  }

  .career-title-mobile {
    color: var(--white-50);
    margin-bottom: 10px;
    font-weight: 400;
    display: block;
  }

  .career-position-wrapper {
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
  }

  .career-location-wrapper {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
  }

  .career-type-wrapper {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
  }

  .banner-title-wrapper.contact-us-two {
    margin-bottom: 40px;
  }

  .accordion-wrapper {
    flex-wrap: wrap;
  }

  .accordion-wrap {
    width: 100%;
    margin-right: 0;
  }

  .job-position-wrapper {
    flex-wrap: wrap;
  }

  .job-position-content-wrapper {
    width: 100%;
    margin-bottom: 40px;
    padding-right: 0;
  }

  .job-position-sidebar-wrapper {
    width: 100%;
    padding-bottom: 30px;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
    top: 0;
  }

  .contacts-2-location-wrapper {
    width: 100%;
  }

  .footer-social-icons-wrapper {
    justify-content: center;
  }

  .footer-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }

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

  .search-result-item {
    margin-bottom: 20px;
  }

  .search-result-wrapper {
    margin-bottom: -20px;
  }

  .testimonials-card-wrapper {
    column-count: 1;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .testimonials-card-item {
    max-width: 450px;
  }

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

  .service-details-content {
    flex-wrap: wrap;
  }

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

  .services-list-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .about-3-image {
    width: 50%;
  }

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

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

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

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

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

  .home-4-testimonials-wrapper {
    grid-row-gap: 30px;
    width: 100%;
  }

  .testimonials-wrapper-2 {
    width: 100%;
  }

  .about-img {
    width: 100%;
    max-height: 420px;
  }

  .about-img._1, .about-img._5, .about-img._3, .about-img._4, .about-img._2 {
    width: 100%;
    position: static;
  }

  .subtitle {
    line-height: 16px;
  }

  .our-services-wrap {
    grid-row-gap: 10px;
    width: 100%;
  }

  .content-wrapper {
    flex-wrap: wrap;
    width: auto;
  }

  .industries-block-wrapper {
    max-width: none;
  }

  .home-blog-list {
    column-count: 1;
  }

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

  .home-9-team-item {
    width: 48%;
  }

  .about-info-cards-wrapper {
    margin-top: 20px;
  }

  .about-5-info-cards-wrap {
    width: 48%;
  }

  .service-item {
    height: 340px;
  }

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

  .search {
    flex-direction: column;
    align-items: stretch;
  }

  .subtitle-2 {
    line-height: 16px;
  }

  .home-banner-left-arrow {
    top: 6%;
  }

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

  .brand-tablet {
    justify-content: flex-start;
    padding-left: 0;
  }

  .brand {
    padding-left: 0;
  }

  .typography-hero-wrapper {
    grid-row-gap: 40px;
    margin-top: 20px;
  }

  .home-title {
    font-size: 44px;
  }

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

  .home-title.banner-two {
    max-width: 640px;
    font-size: 36px;
  }

  .banner-content-container {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

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

  .buttons-wrapper.mobile-center {
    justify-content: center;
  }

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

  .home-banner-discription {
    width: 90%;
  }

  .video-content-wrapper {
    grid-row-gap: 10px;
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .in-section-title.center-title {
    text-align: center;
  }

  .two-column-wrapper {
    flex-direction: column;
  }

  .video-in-section {
    min-height: 400px;
  }

  .video-button-wrapper {
    margin-left: -10px;
  }

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

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

  .advantages-wrap {
    width: 95%;
  }

  .advantages-wrap.center-item {
    width: 95%;
    margin-left: 25px;
  }

  .video-content {
    width: 100%;
  }

  .video-big {
    min-height: 440px;
  }

  .home-1-contact-block {
    grid-row-gap: 20px;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  ._1-home-map-block {
    width: 100%;
    height: 340px;
  }

  .home-1-map-block {
    flex-direction: column;
    align-items: stretch;
    height: 100%;
  }

  .working-wrap {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .numbers {
    font-size: 48px;
  }

  .work-coach {
    grid-template-columns: 1fr;
  }

  .work-wrapper {
    padding: 30px;
  }

  .icon-work {
    margin-bottom: 30px;
  }

  .banner-numbers-wrapper {
    margin-top: 60px;
    margin-bottom: -60px;
    position: relative;
  }

  .team-grid-home {
    width: 100%;
  }

  .footer-wrapper-top {
    text-align: center;
    justify-content: center;
    margin-bottom: 40px;
  }

  .banner-content-container-two {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .about-block-image-high {
    min-height: 200px;
    max-height: 200px;
  }

  .services-details-sidebar-wrapper {
    width: 100%;
    margin-top: 40px;
    position: static;
  }

  .blog-list-main {
    column-count: 1;
  }

  .rich-text-style-details h2 {
    font-size: 36px;
  }

  .rich-text-style-details h3 {
    font-size: 28px;
  }

  .collection-list-stories, .services-3-wrapper {
    grid-template-columns: 1fr;
  }

  .video-in-section-careers {
    min-height: 400px;
  }

  .working-numbers-copy {
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
    width: 88%;
    padding: 20px;
  }

  .section-two-side-title-wrapp {
    grid-row-gap: 20px;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

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

  .form-book-input {
    padding-left: 10px;
    padding-right: 10px;
  }

  .select-book {
    padding-left: 5px;
    padding-right: 10px;
  }

  .book-wrap {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .book-form {
    padding-left: 20px;
    padding-right: 20px;
    top: 0;
  }

  .book-textarea {
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-book-cover {
    height: 380px;
  }

  .icon-work-wrapper {
    margin-bottom: 30px;
  }

  .emergency-call-wrapper {
    justify-content: center;
  }

  .banner-slider-container {
    padding-top: 60px;
    padding-bottom: 90px;
    padding-right: 15px;
  }

  .banner-right-arrow {
    width: 80px;
  }

  .home-banner-slider {
    min-height: 600px;
  }

  .paragraph-banner {
    width: 80%;
  }

  .banner-left-arrow {
    width: 80px;
  }

  .home-3-banner-img-absolute {
    height: 90px;
  }

  .home-3-banner-img-absolute.four {
    height: 100px;
  }

  .home-3-banner-img-absolute.three {
    width: 110px;
    height: 80px;
  }

  .home-3-banner-img-absolute.one {
    width: 130px;
    height: 90px;
  }

  .team-member-details-img {
    height: 440px;
  }

  .details-team-wrapper {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .team-info-wrapper {
    text-align: center;
    align-items: center;
  }

  .pricing-plans-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .button-wrapper-pricing {
    margin-top: 20px;
  }

  .pricing-plan-item {
    max-width: none;
  }

  .pricing-plan-item.center, .card-wrapper-small, .column-wrapper-medium {
    width: 100%;
  }

  .stories-banner-image {
    height: 400px;
  }

  .customer-wrapper {
    height: 240px;
  }

  .hire-popup {
    max-width: 300px;
  }

  .hire-buttons-wrap {
    grid-row-gap: 20px;
    flex-flow: column wrap;
    align-items: stretch;
  }
}

@media screen and (max-width: 479px) {
  .section.banners-home-three {
    min-height: 760px;
  }

  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    flex-direction: column;
    width: 50%;
  }

  .grid-title {
    align-items: center;
  }

  .grid-title.first-grid {
    text-align: center;
    flex: 1;
    width: 100%;
  }

  .grid-description {
    border-bottom-width: 1px;
    border-bottom-color: #fff3;
  }

  .grid-description.first-description {
    border-bottom: 1px #fff3;
    border-left-style: none;
    border-right-style: solid;
  }

  .grid-description.last-description {
    border-bottom-color: #a7a7a7;
  }

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

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

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

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

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

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

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

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

  .nav-menu {
    width: 90%;
  }

  .nav-link {
    width: 99%;
  }

  .nav-dropdown-list.megamenu {
    padding-right: 0;
  }

  .licensing-title-wrapper {
    grid-column-gap: 20px;
    flex-wrap: wrap;
  }

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

  .license-link {
    margin-right: 15px;
  }

  .utility-page-content {
    width: 100%;
  }

  ._404-content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .coming-soon-input {
    min-width: auto;
  }

  .coming-soon-paragraph {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .blog-template-pagination {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .blog-template-pagination-icon {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .blog-template-prev-button, .blog-template-next-button {
    flex: none;
    width: 100%;
  }

  .footer {
    text-align: left;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .footer-rights {
    text-align: center;
    line-height: 1.6em;
  }

  .footer-copyright {
    text-align: center;
    justify-content: center;
    width: 100%;
    line-height: 1.6em;
  }

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

  .team-card-image.logo {
    width: 100px;
    height: 100px;
    margin: 10px;
  }

  .job-position-sidebar-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .footer-social-icons-wrapper {
    justify-content: center;
  }

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

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

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

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

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

  .our-services-wrap, .home-9-team-item, .about-5-info-cards-wrap, .home-23-team-item {
    width: 100%;
  }

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

  .image-burger.white-style {
    display: none;
  }

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

  .footer-rights-wrapper {
    grid-row-gap: 5px;
    justify-content: center;
  }

  .position-relative {
    padding-left: 0;
    padding-right: 0;
  }

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

  .home-title.banner-two {
    margin-top: 85px;
    font-size: 32px;
  }

  .banner-content-container {
    text-align: center;
  }

  .buttons-wrapper {
    grid-row-gap: 20px;
    flex-flow: column wrap;
    align-items: flex-start;
  }

  .buttons-wrapper.mobile-center, .buttons-wrapper.banner-two-style {
    align-items: center;
  }

  .home-banner-discription {
    width: 100%;
  }

  .in-section-title {
    font-size: 32px;
  }

  .column-two.team-info-block {
    width: 100%;
  }

  .advantages-wrap.center-item {
    margin-left: 20px;
  }

  .numbers {
    font-size: 46px;
  }

  .work-coach {
    grid-template-columns: 1fr;
  }

  .about-block-image.with-bottom-bg {
    width: 200px;
    height: 200px;
  }

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

  .footer-wrapper-top {
    flex-direction: column;
    align-items: center;
  }

  .banner-content-container-two {
    text-align: center;
  }

  .working-numbers-copy {
    width: 100%;
  }

  .section-two-side-title-wrapp {
    text-align: center;
  }

  .book-inputs-wrapper {
    grid-row-gap: 20px;
    margin-bottom: 20px;
  }

  .image-book-cover {
    height: 340px;
  }

  .slide-nav-home {
    left: 0;
    right: 0;
  }

  .home-banner-slider {
    min-height: 740px;
  }

  .paragraph-banner {
    width: 100%;
  }

  .home-3-banner-img-absolute {
    width: 120px;
    height: 90px;
    left: 0;
  }

  .home-3-banner-img-absolute.four {
    width: 100px;
    height: 80px;
    left: 0;
  }

  .home-3-banner-img-absolute.two {
    height: 110px;
    right: 0%;
  }

  .home-3-banner-img-absolute.three {
    width: 100px;
    height: 74px;
    top: 77px;
  }

  .home-3-banner-img-absolute.one {
    width: 100px;
    height: 78px;
    top: 90px;
  }

  .team-member-details-img {
    width: 100%;
    max-width: 320px;
    height: 320px;
  }

  .attorney-bio-summary {
    margin-top: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .pricing-plan-item-title {
    text-align: center;
    margin-bottom: 10px;
  }

  .pricing-plan-price-wrapper {
    margin-top: 30px;
  }

  .pricing-plan-list {
    margin-top: 30px;
    padding-top: 30px;
  }

  .pricing-plan-item {
    padding: 30px 20px;
  }

  .stories-banner-image {
    height: 280px;
  }

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

  .hire-popup {
    bottom: 90px;
    left: auto;
    right: 12px;
  }

  .image-2 {
    will-change: filter;
    filter: invert() grayscale() brightness(200%);
  }

  .grid {
    flex-flow: column;
    grid-auto-flow: row;
    display: block;
  }
}

#w-node-_26438732-168a-0ab6-1fa0-8136b2be6fd4-528e5dfb, #w-node-_26438732-168a-0ab6-1fa0-8136b2be6fd9-528e5dfb, #w-node-_48eac35b-e7e0-1de8-62b8-5955fbdf00a1-528e5dfb, #w-node-_26438732-168a-0ab6-1fa0-8136b2be6fe0-528e5dfb, #Name-4.w-node-_13dee9b9-ad7d-cf11-f0e8-c57d069474c9-069474be, #Service.w-node-_13dee9b9-ad7d-cf11-f0e8-c57d069474cc-069474be {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b2dd3f48-f40a-2db2-7e8e-bac82aa71e5d-2aa71e4c {
  place-self: center;
}

#w-node-_64bc8629-b720-d15c-e5dd-bb8f1009caf8-1009caf7, #w-node-_64bc8629-b720-d15c-e5dd-bb8f1009cb14-1009caf7, #w-node-_49c855d1-9862-2f69-744a-e34b80340480-8034047f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ca92300d-9651-40ae-b5e0-169d086373e6-8034047f, #w-node-fe7e87e1-3731-50e3-3822-f30af3eed266-8034047f, #w-node-bc793e69-1750-3395-22ce-e1727d49fa1b-8034047f {
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
}

#w-node-_49c855d1-9862-2f69-744a-e34b8034049c-8034047f, #name-3.w-node-_20cf6842-e436-9510-b808-582cd0d504db-528e5e0f, #Service-2.w-node-_20cf6842-e436-9510-b808-582cd0d504de-528e5e0f, #name-3.w-node-_486c61ba-f5b2-5d8e-cab8-5826a6081b85-528e5e11, #Service-2.w-node-_486c61ba-f5b2-5d8e-cab8-5826a6081b88-528e5e11, #w-node-_9c303e63-5043-9294-9e08-6d267c8359bc-528e5e18, #w-node-_9c303e63-5043-9294-9e08-6d267c8359bd-528e5e18 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7f7719cb-0679-08ac-0826-4bccc757d54c-528e5e94 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_7f7719cb-0679-08ac-0826-4bccc757d552-528e5e94, #w-node-_7f7719cb-0679-08ac-0826-4bccc757d556-528e5e94, #w-node-_7f7719cb-0679-08ac-0826-4bccc757d55a-528e5e94, #w-node-_7f7719cb-0679-08ac-0826-4bccc757d55e-528e5e94, #w-node-_7f7719cb-0679-08ac-0826-4bccc757d562-528e5e94, #w-node-_7f7719cb-0679-08ac-0826-4bccc757d566-528e5e94, #w-node-_7f7719cb-0679-08ac-0826-4bccc757d56a-528e5e94, #w-node-_7f7719cb-0679-08ac-0826-4bccc757d56e-528e5e94 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start center;
}

#w-node-_6a078d37-a03b-58b0-5746-bd390040e948-528e5ec2, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94a-528e5ec2, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94c-528e5ec2, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94e-528e5ec2, #w-node-_6a078d37-a03b-58b0-5746-bd390040e950-528e5ec2, #w-node-_6a078d37-a03b-58b0-5746-bd390040e953-528e5ec2, #w-node-_6a078d37-a03b-58b0-5746-bd390040e955-528e5ec2, #w-node-_6a078d37-a03b-58b0-5746-bd390040e957-528e5ec2, #w-node-_6a078d37-a03b-58b0-5746-bd390040e959-528e5ec2, #w-node-_6a078d37-a03b-58b0-5746-bd390040e95b-528e5ec2, #w-node-b43f5701-835d-6654-45df-0a0275ed2a0a-917f25cc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b43f5701-835d-6654-45df-0a0275ed2a0c-917f25cc, #w-node-b43f5701-835d-6654-45df-0a0275ed2a17-917f25cc, #w-node-b43f5701-835d-6654-45df-0a0275ed2a22-917f25cc {
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
}

#w-node-b43f5701-835d-6654-45df-0a0275ed2a2c-917f25cc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9dd7e005-2e96-e3a6-df2a-05b141991eed-917f25cc {
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr 1fr;
}

#Name-4.w-node-dc2c0f11-af18-b921-2d75-ba2551b339cf-917f25cc, #Service.w-node-dc2c0f11-af18-b921-2d75-ba2551b339d2-917f25cc, #Company.w-node-f33c4ae6-148a-fdad-cb50-7dc649646982-917f25cc, #Title.w-node-f4b763f8-76e8-fa34-1396-38a57e65ecc1-917f25cc, #w-node-b43f5701-835d-6654-45df-0a0275ed2a0a-5ff0ea46 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b43f5701-835d-6654-45df-0a0275ed2a0c-5ff0ea46, #w-node-b43f5701-835d-6654-45df-0a0275ed2a17-5ff0ea46, #w-node-b43f5701-835d-6654-45df-0a0275ed2a22-5ff0ea46 {
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
}

#w-node-b43f5701-835d-6654-45df-0a0275ed2a2c-5ff0ea46 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9dd7e005-2e96-e3a6-df2a-05b141991eed-5ff0ea46 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr 1fr;
}

#Name-4.w-node-dc2c0f11-af18-b921-2d75-ba2551b339cf-5ff0ea46, #Service.w-node-dc2c0f11-af18-b921-2d75-ba2551b339d2-5ff0ea46, #Company.w-node-f33c4ae6-148a-fdad-cb50-7dc649646982-5ff0ea46, #Title.w-node-f4b763f8-76e8-fa34-1396-38a57e65ecc1-5ff0ea46 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1920px) {
  #w-node-_48eac35b-e7e0-1de8-62b8-5955fbdf00a1-528e5dfb, #w-node-_65a662c7-04b5-15a4-72a0-b5b3fdf07eaf-528e5dfb, #w-node-_4593411f-bd6c-d149-8c92-2607fc90349a-528e5e6e, #w-node-_6eb6be54-c166-01ee-1c53-ce5a46fa7be7-528e5e89 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_7e258f41-0fdd-dd64-855b-3312f73e88ef-528e5e97 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_1ca7b63a-59d2-8027-0643-a76d66f2d2b2-528e5ec6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9dd7e005-2e96-e3a6-df2a-05b141991eed-917f25cc {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-ea7aca38-18ad-c570-d134-4ee58f24e210-917f25cc, #w-node-_3e7e9cb2-7eb3-7ebb-98cd-a892ab6b52c8-917f25cc, #w-node-_202d7277-360f-f24a-7cbe-50ee8b542493-917f25cc {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_9dd7e005-2e96-e3a6-df2a-05b141991eed-5ff0ea46 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-ea7aca38-18ad-c570-d134-4ee58f24e210-5ff0ea46, #w-node-_3e7e9cb2-7eb3-7ebb-98cd-a892ab6b52c8-5ff0ea46, #w-node-_202d7277-360f-f24a-7cbe-50ee8b542493-5ff0ea46 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_7e258f41-0fdd-dd64-855b-3312f73e88ef-528e5e97, #w-node-ea7aca38-18ad-c570-d134-4ee58f24e210-917f25cc, #w-node-_3e7e9cb2-7eb3-7ebb-98cd-a892ab6b52c8-917f25cc, #w-node-_202d7277-360f-f24a-7cbe-50ee8b542493-917f25cc, #w-node-ea7aca38-18ad-c570-d134-4ee58f24e210-5ff0ea46, #w-node-_3e7e9cb2-7eb3-7ebb-98cd-a892ab6b52c8-5ff0ea46, #w-node-_202d7277-360f-f24a-7cbe-50ee8b542493-5ff0ea46 {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-b43f5701-835d-6654-45df-0a0275ed2a0c-917f25cc, #w-node-b43f5701-835d-6654-45df-0a0275ed2a17-917f25cc, #w-node-b43f5701-835d-6654-45df-0a0275ed2a22-917f25cc, #w-node-b43f5701-835d-6654-45df-0a0275ed2a0c-5ff0ea46, #w-node-b43f5701-835d-6654-45df-0a0275ed2a17-5ff0ea46, #w-node-b43f5701-835d-6654-45df-0a0275ed2a22-5ff0ea46 {
    grid-template-rows: auto;
    grid-template-columns: 2fr;
  }
}


@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Brands 400 (6.4.2)';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}