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

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

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

:root {
  --primary-dark-text: #182d34;
  --paragraph-gray: #5c7475;
  --primary: #67b7be;
  --primary-dark: #31636d;
  --r-20-px: 20px;
  --white: white;
  --r-10-px: 10px;
  --background-color: #56b8cc;
  --light-brawn: #cc9556;
  --primary-light: #f8f7f6;
  --r-40-px: 40px;
  --background-color-2-light: #f0e2dd;
}

.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-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-text);
  font-family: Instrument Sans, sans-serif;
  font-size: 16px;
  line-height: 1em;
}

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

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

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

h4 {
  color: var(--primary-dark-text);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Instrument Serif, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1em;
}

h5 {
  color: var(--primary-dark-text);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Instrument Serif, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1em;
}

h6 {
  color: var(--primary-dark-text);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Instrument Serif, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1em;
}

p {
  color: var(--paragraph-gray);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
}

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

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

ul {
  grid-row-gap: 15px;
  color: var(--paragraph-gray);
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 14px;
  display: flex;
}

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

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

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

blockquote {
  border: 1px solid var(--primary-dark-text);
  border-radius: var(--r-20-px);
  background-color: var(--primary-dark-text);
  color: var(--white);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 30px 80px;
  font-size: 26px;
  line-height: 1.3em;
}

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

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

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

.section.about-us-banner {
  justify-content: center;
  align-items: center;
  padding-top: 165px;
  padding-bottom: 20px;
  overflow: hidden;
}

.section.landing-banner {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 165px;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.without-space {
  padding-top: 0;
  padding-bottom: 0;
}

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

.section.banner-home-1 {
  padding-top: 145px;
  padding-bottom: 80px;
}

.section.home-2-banner {
  padding-top: 100px;
  padding-bottom: 20px;
  overflow: hidden;
}

.section.banner-home-3 {
  padding-top: 100px;
  padding-bottom: 10px;
}

.section.mission-banner {
  padding-top: 120px;
  padding-bottom: 20px;
}

.section.history-banner, .section.service-1-banner {
  padding-top: 100px;
  padding-bottom: 0;
}

.section.inner-banner {
  padding-top: 165px;
}

.section.gallery-section {
  padding-top: 10px;
  padding-bottom: 10px;
}

.section.service-details-banner {
  padding-top: 100px;
  padding-bottom: 60px;
}

.section.team-section {
  padding-top: 15px;
}

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

.section.team-member-details-banner {
  padding-top: 100px;
  padding-bottom: 15px;
}

.section.event-details-banner {
  padding-top: 100px;
  padding-bottom: 0;
}

.section.job-details-banner {
  padding-top: 120px;
  padding-bottom: 40px;
}

.base-container {
  z-index: 1;
  flex-direction: column;
  align-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

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

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

.base-container.big-spacing {
  padding-left: 30px;
  padding-right: 30px;
}

.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 {
  border-radius: var(--r-10-px);
  background-color: var(--primary);
  width: 75px;
  height: 75px;
}

.background-style-guide {
  border-radius: var(--r-10-px);
  background-color: var(--background-color);
  width: 75px;
  height: 75px;
}

.primary-dark-text-style-guide {
  border-radius: var(--r-10-px);
  background-color: var(--primary-dark-text);
  width: 75px;
  height: 75px;
}

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

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

.light-brown-style-guide {
  border-radius: var(--r-10-px);
  background-color: var(--light-brawn);
  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 {
  border-radius: var(--r-10-px);
  background-color: var(--primary-light);
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px #0000001a;
}

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

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

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

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

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

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

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

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

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

.h5-mobile {
  font-size: 24px;
}

.h6-mobile {
  font-size: 22px;
}

.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-dark-text);
  border-radius: var(--r-40-px);
  background-color: var(--primary-dark-text);
  color: var(--white);
  text-align: center;
  text-transform: none;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4em;
  transition: all .3s;
  display: inline-block;
}

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

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

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

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

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

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

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

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

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

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

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

.navbar {
  z-index: 999;
  border-radius: var(--r-20-px);
  background-color: #0000;
  margin-top: 5px;
  margin-left: 5px;
  margin-right: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar.standart-navbar {
  max-width: 1430px;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

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

.nav-link {
  color: var(--paragraph-gray);
  padding: 15px;
  font-size: 14px;
  line-height: 1.4em;
}

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

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

.nav-dropdown-toggle {
  margin-left: 0;
  margin-right: 0;
  padding: 15px 30px 15px 15px;
}

.nav-dropdown-toggle:hover {
  color: var(--primary-dark-text);
}

.nav-dropdown-icon {
  color: var(--paragraph-gray);
  margin-right: 20px;
  font-size: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border: 1px solid #0000002e;
  width: 200px;
  padding: 15px 20px;
}

.nav-dropdown-list.w--open {
  border-color: var(--primary-light);
  border-radius: var(--r-10-px);
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 1px 2px #31636d33;
}

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

.nav-dropdown-list.megamenu.w--open {
  width: 500px;
  display: flex;
  left: -211px;
}

.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(--paragraph-gray);
  width: 100%;
  margin-left: -20px;
  padding: 8px 8px 8px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4em;
  transition: all .3s;
  display: flex;
}

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

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

.nav-item-title {
  color: var(--paragraph-gray);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 2px;
  font-size: 14px;
  line-height: 1.4em;
  transition: color .3s;
}

.nav-item-title:hover {
  color: var(--primary-dark-text);
}

.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: 20px;
  grid-row-gap: 20px;
  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 {
  border-radius: var(--r-20-px);
  object-fit: cover;
  width: 100%;
  height: 320px;
}

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

.licensing-image-link {
  border-radius: var(--r-20-px);
  width: 100%;
  height: 100%;
}

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

.license-link {
  color: var(--primary-dark-text);
  letter-spacing: normal;
  font-weight: 700;
}

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

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

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

.icon-style-guide {
  color: var(--primary);
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 24px;
  line-height: 1.3em;
  transition: all .35s;
}

.icon-style-guide:hover {
  color: var(--primary-dark-text);
}

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

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

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

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

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

.licensing-font-title {
  text-transform: capitalize;
}

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

.utility-page-wrap {
  background-image: url('../images/Vector.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  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-radius: var(--r-10-px);
  border: 1px solid #182d3433;
  min-width: 280px;
  min-height: 52px;
  margin-bottom: 10px;
  padding: 14px 20px;
  font-size: 16px;
  line-height: 1em;
}

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

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

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

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

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

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

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

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

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

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

.coming-soon-input {
  border-radius: var(--r-10-px);
  border: 1px solid #182d3433;
  min-width: 300px;
  height: auto;
  margin-bottom: 0;
  padding: 14px 20px;
}

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

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

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

.coming-soon-page-wrap {
  text-align: left;
  background-image: url('../images/Vector.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

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

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

.blog-template-wrapper {
  width: 100%;
  max-width: 920px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.blog-template-image {
  border-radius: var(--r-20-px);
  object-fit: cover;
  width: 98%;
  max-height: 520px;
  margin-top: -70px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.footer {
  text-align: center;
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 50px;
}

.footer-bottom-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-rights {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  color: var(--paragraph-gray);
  font-size: 14px;
  line-height: 1.4em;
  display: flex;
}

.footer-copyright {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  color: var(--paragraph-gray);
  text-align: center;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  font-size: 14px;
  line-height: 1.4em;
  display: flex;
}

.footer-copyright-link {
  color: var(--paragraph-gray);
  letter-spacing: .2px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4em;
  text-decoration: none;
  display: inline-block;
}

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

.section-title-wrapper {
  z-index: 1;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 390px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.section-title-wrapper.value-title {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  margin-right: 14%;
}

.section-title-wrapper.value-title-3-type {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  width: 280px;
  max-width: 280px;
  margin-left: 60px;
  display: flex;
  position: absolute;
  inset: 80px auto auto 65%;
}

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

.section-title-wrapper.center-team-section {
  max-width: 470px;
  margin-top: 80px;
}

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

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

.text-button-icon {
  font-family: "Fa solid 900", sans-serif;
  font-size: 13px;
  line-height: 1;
}

.career-list-item-wrapper {
  border-radius: var(--r-20-px);
  background-color: var(--primary-light);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px;
  display: flex;
}

.career-list-item-wrapper.details-list-career:last-child {
  display: none;
}

.career-location {
  font-size: 18px;
  line-height: 24px;
}

.career-type {
  color: var(--primary);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.career-button-wrapper {
  text-align: right;
  margin-top: 30px;
}

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

.banner-title-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.banner-title-wrapper.blog-details-margin-bottom {
  margin-bottom: 30px;
}

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

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

.section-title-description {
  max-width: 230px;
}

.section-title-description.align-left-text {
  text-align: left;
}

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

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

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

.accordion-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.accordion-item {
  border-radius: var(--r-20-px);
  background-color: var(--white);
  width: 100%;
  padding: 15px 20px;
  position: static;
}

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

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

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

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

.coming-soon-image {
  border-radius: var(--r-20-px);
  max-width: 460px;
}

.link-with-icon {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  display: flex;
}

.link-with-icon:hover {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.job-position-wrapper {
  align-items: flex-start;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.job-position-sidebar-wrapper {
  border-radius: var(--r-20-px);
  background-image: url('../images/BG-Footer.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 35%;
  margin-right: auto;
  padding: 30px 40px 40px;
}

.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-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.contacts-form-wrapper {
  border-radius: var(--r-20-px);
  background-color: var(--primary-dark-text);
  width: 55%;
  padding: 20px 30px 30px;
}

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

.hidden {
  display: none;
}

.contacts-textarea {
  border-radius: var(--r-10-px);
  color: var(--white);
  background-color: #0000;
  border: 1px solid #f8f7f633;
  min-width: 100%;
  max-width: 100%;
  min-height: 180px;
  max-height: 100%;
  padding: 16px 18px;
}

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

.contacts-textarea::placeholder {
  color: #f8f7f680;
}

.contacts-form-title {
  color: var(--white);
}

.footer-link {
  color: var(--paragraph-gray);
  font-weight: 400;
  line-height: 1.4em;
  transition: all .3s;
}

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

.footer-link.social-icon {
  color: var(--primary);
  font-size: 24px;
  line-height: 1em;
}

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

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

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

.footer-brand {
  color: #fff;
  width: 115px;
  margin-bottom: 40px;
}

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

.footer-links-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

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

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

.search-wrap-input::placeholder {
  color: var(--background-color-2-light);
}

.search-desktop {
  z-index: 1000;
  background-color: #ffffffe6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
  position: fixed;
  inset: 0% auto auto 0%;
}

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

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

.search-wrapper {
  flex-direction: column;
  width: 100%;
  max-width: 1140px;
  display: flex;
}

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

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

.search-shop-con.desctop-buttons {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-left: 0;
}

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

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

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

.search-input {
  border-radius: var(--r-10-px);
  color: var(--primary-dark-text);
  border: 1px solid #182d3433;
  height: auto;
  margin-bottom: 0;
  padding: 14px 20px;
  font-size: 16px;
  line-height: 1em;
}

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

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

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

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

.background-2-color-style-guide {
  border-radius: var(--r-10-px);
  background-color: var(--background-color-2-light);
  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 {
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

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

.primary-button-white {
  border: 1px solid var(--white);
  border-radius: var(--r-40-px);
  background-color: var(--white);
  color: var(--primary-dark-text);
  text-align: center;
  align-items: center;
  padding: 14px 30px;
  font-weight: 500;
  line-height: 1.4em;
  transition: all .2s;
}

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

.primary-button-white.play-white-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  transition-duration: .3s;
  display: flex;
  position: absolute;
  top: auto;
  left: 10px;
  right: auto;
}

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

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

.primary-button-white.primary-play-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--primary-dark-text);
  display: flex;
}

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

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

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

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

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

.landing-banner-image {
  z-index: 1;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.landing-performance-grid {
  grid-column-gap: 120px;
  grid-row-gap: 60px;
  width: 100%;
}

.landing-progress-bar-wrapper {
  margin-top: 20px;
}

.landing-progress-bar-gray-line {
  background-color: var(--primary-light);
  border-radius: 10px;
  width: 100%;
  height: 15px;
}

.landing-progress-bar-95 {
  background-color: var(--primary);
  border-radius: 10px;
  width: 95%;
  height: 15px;
  margin-top: -15px;
  position: relative;
}

.landing-progress-bar-number {
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  inset: auto 0% 35px auto;
}

.landing-progress-bar-92 {
  background-color: var(--primary);
  border-radius: 10px;
  width: 92%;
  height: 15px;
  margin-top: -15px;
  position: relative;
}

.landing-progress-bar-100 {
  background-color: var(--primary);
  border-radius: 10px;
  width: 100%;
  height: 15px;
  margin-top: -15px;
  position: relative;
}

.landing-progress-bar-88 {
  background-color: var(--primary);
  border-radius: 10px;
  width: 88%;
  height: 15px;
  margin-top: -15px;
  position: relative;
}

.landing-features-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  text-align: center;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.landing-feature-icon {
  color: var(--primary-dark-text);
  background-color: #182d341a;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  display: flex;
}

.landing-feature-item {
  flex-direction: column;
  align-items: center;
  display: flex;
}

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

.landing-inner-page-item {
  border-radius: var(--r-20-px);
  background-color: var(--primary);
  text-align: center;
  width: 100%;
  padding: 6px;
}

.landing-inner-page-item.home-screen {
  border-radius: var(--r-20-px);
}

.landing-inner-page-image {
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 15px;
  box-shadow: 0 0 30px #5c747533;
}

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

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

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

.landing-banner-title-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 960px;
  margin-bottom: 60px;
  display: flex;
}

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

.landing-home-pages-wrapper {
  z-index: 1;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.landing-download-block-wrapper {
  border-radius: var(--r-20-px);
  background-color: var(--primary-dark-text);
  background-image: url('../images/Frame-47.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 75px 80px 75px 200px;
  display: flex;
  box-shadow: 0 0 30px #0000004d;
}

.download-button-icon {
  margin-top: 4px;
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
}

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

.secondary-button {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  border: 1px solid var(--primary-light);
  border-radius: var(--r-40-px);
  color: var(--primary-dark-text);
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
  padding: 14px 30px;
  font-weight: 500;
  line-height: 1.4em;
  transition: all .3s;
  display: flex;
}

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

.secondary-button.primary-opacity {
  border-color: #67b7be33;
}

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

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

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

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

.map-wrapper {
  position: relative;
}

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

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

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

.courses-collection {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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;
  font-size: 16px;
}

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

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

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

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

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

.brand-tablet {
  display: none;
}

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

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

.details-page-title {
  font-size: 60px;
}

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

.success-message {
  color: var(--primary-dark-text);
  text-align: center;
  background-color: #0000;
  height: 52px;
}

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

.form-contacts {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
}

.form-block-contacts {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 391px;
  margin-top: 40px;
  margin-bottom: 0;
}

.section-purchase {
  padding: 80px 15px;
  position: relative;
}

.license-link-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  display: flex;
}

.licensing-icons {
  width: 50%;
}

.background-3 {
  border-radius: var(--r-20-px);
  background-color: var(--primary-light);
  margin-left: 5px;
  margin-right: 5px;
  position: absolute;
  inset: 0%;
}

.background-3.top-bottom-margins {
  margin-top: 5px;
  margin-bottom: 5px;
}

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

.button-wrapper-sg {
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.background-1 {
  border-radius: var(--r-20-px);
  background-image: url('../images/BG-Footer.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 5px;
  position: absolute;
  inset: 0%;
}

.background-1.primary-lignh-background {
  background-color: var(--primary-light);
  background-image: none;
}

.background-1.home-1-background {
  overflow: hidden;
}

.links-footer-wrappr {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  display: grid;
}

.big-link-footer {
  color: var(--primary-dark-text);
  text-align: left;
  font-family: Instrument Serif, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1em;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

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

.top-footer-wrapper {
  border-radius: var(--r-20-px);
  -webkit-backdrop-filter: blur(384px);
  backdrop-filter: blur(384px);
  background-image: url('../images/BG-Footer.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  margin-left: 5px;
  margin-right: 5px;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.top-content-footer-wrapper {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 460px;
  display: flex;
}

.big-title-footer {
  margin-bottom: 15px;
  font-family: Instrument Serif, sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1em;
}

.button-footer-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.icon-button {
  background-image: url('../images/Phone-Icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 18px;
  height: 18px;
  display: inline-block;
}

.links-wrapper {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.subscribe-footer-wrapper {
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 340px;
  margin-top: 40px;
  display: flex;
}

.heading {
  max-width: 270px;
}

.text-field {
  border: 1px solid var(--primary-light);
  border-radius: var(--r-10-px);
  color: var(--primary-dark-text);
  min-height: 52px;
  margin-bottom: 0;
  padding: 16px 45px 16px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4em;
  box-shadow: 0 1px 2px #1018280d;
}

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

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

.form-block-footer {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 0;
}

.form-footer {
  position: relative;
}

.submit-button {
  background-color: var(--white);
  color: var(--primary);
  border-radius: 5px;
  min-width: 24px;
  padding: 7px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 14px;
  position: absolute;
  inset: auto 20px 10px auto;
}

.copyright-footer-wrapper {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 50px;
  display: flex;
}

.logo-footer {
  width: 100%;
}

.success-message-footer {
  text-align: left;
  background-color: #0000;
  height: 52px;
  padding: 10px 0;
}

.error-message-footer {
  border-radius: var(--r-10-px);
  background-color: var(--light-brawn);
  color: var(--white);
}

.logo-header {
  width: 115px;
  height: 100%;
}

.number-career {
  border-radius: var(--r-40-px);
  background-color: var(--primary-light);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 28px;
  margin-left: 5px;
  padding-top: 1px;
  font-size: 12px;
  line-height: 1.5em;
  display: inline-block;
}

.success-message-popup {
  background-color: #0000;
}

.field-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.close-icon {
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.error-message-popup {
  color: #fff;
  background-color: #888a8b;
  border-radius: 10px;
}

.textarea-popup {
  border: 1px solid var(--primary-light);
  border-radius: var(--r-10-px);
  color: var(--primary-dark-text);
  min-height: 100px;
  margin-bottom: 30px;
  padding: 18px 20px;
  font-size: 14px;
  box-shadow: 0 1px 2px #1018280d;
}

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

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

.popup-wrapper {
  background-color: #fff;
  border-radius: 10px;
  width: 860px;
  padding: 30px 40px 40px;
  position: relative;
}

.popup-close {
  width: 22px;
  height: 22px;
  position: absolute;
  inset: 15px 15px auto auto;
}

.popup {
  z-index: 9999;
  background-color: #0009;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.popup.footer-popup {
  display: none;
}

.form-block-popup {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  min-height: 430px;
  margin-top: 40px;
  margin-bottom: 0;
  display: flex;
}

.field-wrap {
  width: 50%;
}

.field-label {
  color: var(--paragraph-gray);
  font-weight: 500;
}

.text-field-popup {
  border: 1px solid var(--primary-light);
  border-radius: var(--r-10-px);
  color: var(--primary-dark-text);
  height: auto;
  margin-bottom: 30px;
  padding: 16px 20px;
  font-size: 14px;
  box-shadow: 0 1px 2px #1018280d;
}

.text-field-popup:focus {
  border-color: var(--primary);
}

.text-field-popup::placeholder {
  color: var(--paragraph-gray);
}

.content-home-1-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.top-titles-banner-home-1 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-radius: var(--r-40-px);
  background-color: var(--primary-light);
  justify-content: flex-start;
  align-items: center;
  padding: 4px 4px 4px 10px;
  display: flex;
}

.top-titles-banner-home-1.banner-home-2 {
  margin-bottom: 20px;
}

.top-titles-banner-home-1.home-3-type {
  background-color: #f8f7f633;
  margin-bottom: 20px;
}

.top-text {
  color: var(--paragraph-gray);
  font-size: 14px;
  line-height: 1.4em;
}

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

.top-link {
  border-radius: var(--r-40-px);
  background-color: var(--white);
  color: var(--primary-dark-text);
  padding: 2px 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
}

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

.content-banner-wrappr {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 440px;
  margin-top: 30px;
  display: flex;
}

.banner-paragraph-home-1 {
  max-width: 400px;
}

.about-us-wrapper {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.subtitle-text {
  border-radius: var(--r-40-px);
  background-color: var(--primary-light);
  color: var(--paragraph-gray);
  margin-bottom: 20px;
  padding: 1px 10px;
  font-size: 14px;
  line-height: 1.5em;
}

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

.paragraph-about-us {
  max-width: 530px;
}

.our-mission-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-radius: var(--r-20-px);
  background-color: var(--white);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 10px;
  display: grid;
}

.mission-contetn-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 30px;
  display: flex;
}

.big-image-1, .video-image {
  border-radius: var(--r-10-px);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.big-title-section-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  display: flex;
}

.big-title-section-wrapper.without-bottom-spacing {
  margin-bottom: 0;
}

.left-content-title {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 60%;
  display: flex;
}

.left-content-title.small-heading {
  width: 300px;
}

.left-content-title.team-heading {
  width: 50%;
}

.left-content-title.service-home-3-title {
  width: 670px;
}

.right-content-title.text-right-content {
  width: 40%;
}

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

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

.collection-list-services.home-2-type {
  grid-template-columns: 1fr 1fr;
}

.collection-item-service {
  border-radius: var(--r-20-px);
  background-color: var(--white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  display: flex;
}

.collection-item-service.service-1-type {
  justify-content: space-between;
  align-items: flex-start;
}

.service-name {
  color: var(--primary-dark-text);
  margin-top: 15px;
  margin-bottom: 5px;
  font-family: Instrument Serif, sans-serif;
  font-size: 30px;
  line-height: 1.1em;
}

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

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

.background-color-2 {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--light-brawn), white);
  filter: blur(200px);
  border-radius: 70%;
  width: 70%;
  height: 35%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 35% 0% 0%;
}

.background-color-2._2-type {
  filter: blur(340px);
  top: 15%;
}

.background-color-2._3-type {
  background-image: radial-gradient(circle, #cc9556cc, #fff);
}

.background-color-2.primary-color {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--primary) 15%, white);
  height: 25%;
  top: 12%;
}

.background-color-2._4-type {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--light-brawn) 34%, #d3a46e 58%, white);
  height: 42%;
  top: 3%;
}

.button-mobile {
  margin-top: 30px;
  display: none;
}

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

.link-team-photo {
  border-radius: var(--r-20-px);
  width: 100%;
  overflow: hidden;
}

.team-member-photo {
  border-radius: var(--r-20-px);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.info-team-member-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
  display: flex;
}

.name {
  color: var(--primary-dark-text);
  font-family: Instrument Serif, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1em;
}

.career-home-1-wrapper {
  border-top: 1px solid #67b7be33;
  margin-top: 70px;
  padding-top: 70px;
}

.info-banner-home-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  max-width: 280px;
  margin-top: 90px;
  padding: 10px 25px 25px 11px;
  display: flex;
  position: relative;
}

.info-banner-home-wrapper.banner-2-home {
  margin: 0 auto 20px;
  position: absolute;
  inset: auto 0% 0%;
}

.background-info {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.icon-logo {
  z-index: 1;
  position: relative;
}

.text-info-wrapper {
  z-index: 2;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  max-width: 327.063px;
  display: flex;
  position: relative;
}

.info-text {
  font-size: 12px;
  line-height: 1.4em;
}

.senior-image-1 {
  border: 4px solid var(--primary-light);
  border-radius: var(--r-20-px);
  position: absolute;
  inset: auto auto -20px 80px;
  box-shadow: 0 24px 34px #182d342e;
}

.senior-image-1.about-us-img-1 {
  left: 40px;
}

.senior-image-2 {
  border: 4px solid var(--primary-light);
  border-radius: var(--r-20-px);
  position: absolute;
  inset: auto 80px -20px auto;
  box-shadow: 0 24px 34px #182d342e;
}

.senior-image-2.about-us-img-2 {
  right: 40px;
}

.senior-image-3 {
  border: 4px solid var(--primary-light);
  border-radius: var(--r-20-px);
  position: absolute;
  inset: 120px auto auto 20px;
  box-shadow: 0 24px 34px #182d342e;
}

.senior-image-3.about-us-img-3 {
  inset: auto auto -80px 200px;
}

.senior-image-4 {
  border: 4px solid var(--primary-light);
  border-radius: var(--r-20-px);
  position: absolute;
  inset: 120px 20px auto auto;
  box-shadow: 0 24px 34px #182d342e;
}

.senior-image-4.about-us-img-4 {
  inset: auto 200px -80px auto;
}

.video-mission-image {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.background-color-1 {
  background-image: radial-gradient(circle farthest-side at 50% 50%, var(--background-color), #0000);
  filter: blur(280px);
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 50%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -14% 0% auto;
}

.background-color-1.position-2 {
  top: 14%;
}

.background-color-1.career-details-background {
  height: 20%;
  top: 40%;
}

.tabs-values {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.tabs-menu-values {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 440px;
  margin-right: 80px;
  padding-top: 30px;
  display: flex;
}

.tabs-menu-values._2-typ-tabs {
  margin-right: 20px;
}

.tab-link {
  color: var(--paragraph-gray);
  background-color: #0000;
  padding-left: 0;
  padding-right: 0;
  font-family: Instrument Serif, sans-serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.1em;
}

.tab-link.w--current {
  color: var(--primary-dark-text);
  background-color: #0000;
}

.tabs-content-values {
  flex: 1;
  overflow: visible;
}

.content-values {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 370px;
  display: flex;
  position: relative;
}

.content-value {
  border-radius: var(--r-20-px);
  background-color: var(--primary-light);
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  min-height: 370px;
  padding: 20px 120px 20px 20px;
  display: flex;
}

.content-value.white-background {
  background-color: var(--white);
}

.lines-values {
  background-color: #67b7be33;
  width: 440px;
  height: 1px;
  position: absolute;
  inset: 0 auto auto -520px;
}

.lines-values._2-type-lines {
  width: 400px;
  left: -460px;
}

.primary-line-values {
  background-color: var(--primary);
  width: 20%;
  height: 1px;
  display: block;
  position: absolute;
  inset: auto 0% 0%;
}

.primary-line-values.second {
  left: 20%;
}

.primary-line-values.third {
  left: 40%;
}

.primary-line-values.fourth {
  left: 60%;
}

.primary-line-values.fifth {
  left: 80%;
}

.value-image {
  display: none;
}

.numbers {
  position: absolute;
  inset: auto 0% -25px auto;
}

.numbe-values {
  color: var(--paragraph-gray);
  font-family: Instrument Sans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
}

.career-content-2-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.slider-2-type-team-wrapper {
  background-color: #0000;
  width: 100%;
  height: auto;
}

.left-arrow-60px {
  border-radius: var(--r-40-px);
  background-color: var(--primary-light);
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  transition: background-color .3s;
  display: flex;
  inset: -110px 64px auto auto;
}

.left-arrow-60px:hover {
  background-color: var(--primary);
}

.left-arrow-60px.review-arrow {
  inset: auto auto 0% 43.5%;
}

.left-arrow-60px.white-review-arrow {
  background-color: var(--white);
  inset: auto auto 0% 43%;
}

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

.left-arrow-60px.arrow-teatimonials {
  inset: auto auto 0% 43.8%;
}

.right-arrow-60px {
  border-radius: var(--r-40-px);
  background-color: var(--primary-light);
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  transition: background-color .3s;
  display: flex;
  inset: -110px 0% auto auto;
}

.right-arrow-60px:hover {
  background-color: var(--primary);
}

.right-arrow-60px.review-arrow {
  inset: auto 43.5% 0% auto;
}

.right-arrow-60px.white-review-arrow {
  background-color: var(--white);
  inset: auto 43% 0% auto;
}

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

.right-arrow-60px.arrow-testimonials {
  inset: auto 43.8% 0% auto;
}

.review-wrapper {
  border-radius: var(--r-20-px);
  background-color: var(--white);
  flex-flow: column;
  padding: 10px 10px 40px;
  display: flex;
}

.title-review-with-imags {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 50px;
  display: grid;
  position: relative;
}

.title-image {
  border-radius: var(--r-10-px);
  object-fit: cover;
  width: 100%;
  height: 365px;
}

.play-icon {
  width: 24px;
  height: 24px;
}

.title-block-wrap {
  border-radius: var(--r-10-px);
  background-color: var(--white);
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 400px;
  padding: 30px 40px;
  display: flex;
  position: absolute;
}

.slider-review {
  background-color: #0000;
  height: auto;
  padding-bottom: 100px;
  padding-left: 30px;
  padding-right: 30px;
}

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

.review-text {
  font-family: Instrument Serif, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1em;
}

.info-client-review {
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

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

.semibold-dark {
  color: var(--primary-dark-text);
  font-weight: 600;
}

.services-2-type-wrap {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  display: flex;
}

.bio-wrap {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  display: flex;
  align-items: flex-start;
}

.service-image {
  border-radius: var(--r-10-px);
  object-fit: cover;
  width: 33%;
}

.bio-image {
  border-radius: var(--r-10-px);
  object-fit: contain;
  width: 33%;
}

.collection-list-wrapper-services-2-type {
  width: 66%;
}

.mission-wrapper {
  border-radius: var(--r-20-px);
  background-color: var(--white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.title-mission-wrapper {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 630px;
  margin-bottom: 40px;
  display: flex;
}

.mission-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  place-items: start center;
}

.mission-content-wrapper {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-mission {
  border: 1px solid var(--primary);
  border-radius: var(--r-40-px);
  color: var(--primary);
  padding: 10px 20px;
  font-family: Instrument Serif, sans-serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.1em;
}

.image-mission {
  border-radius: var(--r-40-px);
  height: 73px;
}

.about-us-2-type-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  place-items: center stretch;
}

.content-about-wrap {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.img-about-us-1 {
  border-radius: var(--r-20-px);
}

.img-about-us-2 {
  border-radius: var(--r-20-px);
  margin-top: 27px;
}

.img-about-us-3 {
  border-radius: var(--r-20-px);
  margin-bottom: 27px;
}

.img-about-us-4 {
  border-radius: var(--r-20-px);
}

.content-banner-2-wrapper {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.content-left-banner-2-wrap {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 500px;
  padding-bottom: 20px;
  display: flex;
}

.banner-2-image {
  border-radius: var(--r-20-px);
  object-fit: cover;
  width: 100%;
  height: 600px;
}

.content-right-banner-2-wrap {
  width: 660px;
  position: relative;
}

.banner-2-paragraph {
  max-width: 380px;
}

.background-home-2-banner {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.content-value-home-2-wrapper {
  border-radius: var(--r-20-px);
  background-image: linear-gradient(90deg, var(--primary-dark-text), #0000), url('../images/2-Type-Img-1.webp');
  background-position: 0 0, 0%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  min-height: 370px;
  padding-top: 20px;
  padding-bottom: 15px;
  padding-left: 15px;
  display: flex;
}

.content-value-home-2-wrapper._2-tab {
  background-image: linear-gradient(90deg, var(--primary-dark-text) 23%, #0000), url('../images/2-type-img-2.webp');
}

.content-value-home-2-wrapper._3-type {
  background-image: linear-gradient(90deg, var(--primary-dark-text) 34%, #0000), url('../images/2-type-img-3.webp');
  background-position: 0 0, 50%;
}

.content-value-home-2-wrapper._4-type {
  background-image: linear-gradient(90deg, var(--primary-dark-text) 38%, #0000), url('../images/2-Type-img-4.webp');
}

.content-value-home-2-wrapper._5-type {
  background-image: linear-gradient(90deg, var(--primary-dark-text) 28%, #0000), url('../images/2-type-img-5.webp');
  background-position: 0 0, 30%;
}

.contet-text-value-wrapper {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 64%;
  display: flex;
}

.light-paragraph {
  color: #f8f7f6cc;
}

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

.button-benefits-home-2-wrapper {
  display: flex;
}

.content-banner-home-3-wrapper {
  border-radius: var(--r-20-px);
  background-image: linear-gradient(90deg, #000, #000000c2 30%, #0000 70%), url('../images/Banner-3-Img.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 100%;
  padding-top: 240px;
  padding-bottom: 30px;
  padding-left: 30px;
}

.content-text-home-3-wrapper {
  z-index: 2;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 550px;
  display: flex;
  position: relative;
}

.content-text-home-3-wrapper.content-our-history {
  max-width: 440px;
}

.content-text-home-3-wrapper.content-services-1 {
  max-width: 490px;
}

.paragraph-banner-home-3 {
  color: var(--white);
  max-width: 380px;
}

.book-a-demo-home-3-wrapper {
  border-radius: var(--r-20-px);
  background-color: var(--primary-dark-text);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 80px 40px 40px;
  display: flex;
}

.title-book-a-demo {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 570px;
  margin-bottom: 30px;
  display: flex;
}

.form-block-book {
  width: 100%;
  max-width: 1150px;
  margin-bottom: 0;
}

.form-book {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-field-book-a-demo {
  border-radius: var(--r-10-px);
  color: var(--white);
  background-color: #17171700;
  border: 1px solid #f8f7f633;
  min-width: 235px;
  height: 52px;
  margin-bottom: 0;
  padding: 14px 20px;
  font-weight: 400;
}

.text-field-book-a-demo:focus {
  border-color: var(--primary);
}

.text-field-book-a-demo::placeholder {
  color: #f8f7f680;
}

.checks-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  display: flex;
}

.check {
  width: 24px;
  height: 24px;
}

.check-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.check-text {
  color: var(--primary-light);
  text-align: left;
  font-size: 14px;
  line-height: 1.5em;
}

.success-message-classic {
  color: var(--primary-light);
  background-color: #0000;
  height: 52px;
}

.error-message-classic {
  border-radius: var(--r-10-px);
  background-color: var(--light-brawn);
  color: var(--white);
}

.image-block-wrapper {
  border-radius: var(--r-20-px);
  background-image: url('../images/SG-Img.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 420px;
  padding-bottom: 50px;
  display: flex;
}

.image-block-wrapper._2-image {
  background-image: url('../images/Img-BG-2.webp');
}

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

.value-content-3-type-wrapper {
  border-radius: var(--r-20-px);
  background-color: var(--white);
  padding: 10px;
  position: relative;
}

.slider-testimonails {
  background-color: #0000;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 110px;
}

.testimonials-contet-wrap {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-review {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Instrument Serif, sans-serif;
  font-size: 46px;
  line-height: 1.1em;
}

.subtitle-title-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.team-3-type-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.collection-list-team-member {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.team-content-wrap {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.team-title-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 30px;
  display: flex;
}

.collection-item-team-member {
  width: 100%;
}

.video-review-wrapper {
  border-radius: var(--r-20-px);
  background-image: url('../images/Big-Img.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 20px;
  padding-bottom: 30px;
  padding-left: 30px;
}

.content-review-wrap {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 460px;
  display: flex;
}

.benefits-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
  display: flex;
}

.benefit {
  border: 1px solid var(--primary-dark-text);
  border-radius: var(--r-40-px);
  padding: 10px 20px;
  font-family: Instrument Serif, sans-serif;
  font-size: 30px;
  line-height: 1.1em;
}

.video-button-wrap {
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

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

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

.collection-list-services-2-type.service-page-2-wrapper {
  flex-flow: wrap;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.collection-item-service-2-type {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.collection-item-service-2-type.service-type-2-page {
  width: 47%;
}

.content-service-wrap {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.content-service-wrap.space-between-align {
  justify-content: space-between;
}

.link-service-image {
  border-radius: var(--r-20-px);
  width: 50%;
  overflow: hidden;
}

.service-photo {
  border-radius: var(--r-20-px);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.tabs-value-3-type {
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.tabs-menu-value {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 280px;
  margin-bottom: 40px;
  display: flex;
}

.tabs-content-value-3-type {
  width: 65%;
  margin-right: 70px;
}

.value-wrap {
  border-radius: var(--r-10-px);
  background-image: linear-gradient(90deg, #000c, #000000b3 16%, #0000 62%), url('../images/Big-Img-Value.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 700px;
  display: flex;
}

.value-wrap._3-tab-image {
  background-image: linear-gradient(90deg, #000c, #000000b3 16%, #0000 62%), url('../images/Big-Img-2-1.webp');
  background-position: 0 0, 0%;
}

.value-wrap._2-tab-image {
  background-image: linear-gradient(90deg, #000c, #000000b3 16%, #0000 62%), url('../images/Big-img-3.webp');
}

.value-wrap._4-tab-image {
  background-image: linear-gradient(90deg, #000c, #000000b3 16%, #0000 62%), url('../images/Big-Img-4.webp');
}

.value-wrap._5-tab-image {
  background-image: linear-gradient(90deg, #000c, #000000b3 16%, #0000 62%), url('../images/Big-Img-5.webp');
  background-position: 0 0, 0%;
}

.text-value-wrap {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 330px;
  margin-bottom: 20px;
  margin-left: 20px;
  display: flex;
}

.background-color-3 {
  background-color: var(--background-color);
  filter: blur(382px);
  width: 100%;
  height: 20%;
  position: absolute;
  inset: auto 0% 28%;
}

.collection-list-blog {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: grid;
}

.collection-item-blog {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.content-blog-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.blog-name {
  color: var(--primary-dark-text);
  margin-top: 5px;
  margin-bottom: 10px;
  font-family: Instrument Serif, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1em;
}

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

.link-blog {
  border-radius: var(--r-10-px);
  width: 50%;
  height: 260px;
  overflow: hidden;
}

.blog-image {
  border-radius: var(--r-10-px);
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.text-content-banner {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 500px;
  display: flex;
}

.text-content-banner.text-content-event-details {
  width: 55%;
  max-width: none;
}

.content-banner-mission {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.content-banner-mission.content-job-wrapper {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}

.image-mission-banner {
  border-radius: var(--r-20-px);
  object-fit: cover;
  width: 100%;
  height: 500px;
  display: block;
  position: relative;
}

.mission-3-type-wrapper {
  border-radius: var(--r-20-px);
  background-image: url('../images/BG-Footer.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 20px 20px;
}

.values-wrapper-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.value-wrap-2-type {
  border-radius: var(--r-10-px);
  background-color: var(--white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px 20px;
  display: flex;
}

.our-solutions-text-wrapper {
  border-left: 2px solid var(--primary-light);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  display: flex;
  position: relative;
}

.who-we-are-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.text-content-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 45%;
  display: flex;
  position: relative;
}

.image-about {
  border-radius: var(--r-20-px);
  object-fit: cover;
  object-position: 50% 50%;
  width: 55%;
  height: 660px;
}

.about-us-titles-wrapper {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.image-text {
  border-radius: var(--r-40-px);
  background-image: url('../images/Img-Text-3.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100px;
  height: 50px;
  margin-left: 8px;
  margin-right: 8px;
  display: inline-block;
  position: relative;
  bottom: -8px;
}

.about-us-paragraph-wrap {
  max-width: 400px;
}

.button-section-wrapper {
  margin-top: 50px;
}

.about-us-content-title-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.benefits-about-wrapper {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  display: flex;
}

.image-21 {
  border-radius: var(--r-10-px);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.content-benefits-wrpper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.benefits-text-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 20px;
  display: flex;
}

.big-benefits-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-radius: var(--r-20-px);
  background-image: url('../images/BG-Footer.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  grid-template-columns: 1.3fr .7fr;
  padding: 10px 10px 10px 20px;
}

.images-why-choosed-us-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start end;
  width: 100%;
  height: 100%;
  display: grid;
}

.why-choose-us-image {
  border-radius: var(--r-20-px);
}

.why-choose-us-image.big-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.why-choose-us-image.relative-image {
  position: relative;
  top: -50px;
}

.value-image-2 {
  border-radius: var(--r-10-px);
  object-fit: cover;
  width: 100%;
  height: 320px;
}

.faq-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.faq-image-content-wrapper {
  width: 90%;
  height: 400px;
  margin-bottom: -55px;
}

.faq-image {
  border-radius: var(--r-20-px);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.history {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.title-history-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 40%;
  display: flex;
  position: sticky;
  top: 120px;
}

.content-history-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 55%;
  display: flex;
  position: sticky;
  top: 10px;
}

.content-history {
  border-radius: var(--r-20-px);
  background-color: var(--primary-light);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 20px 10px;
  display: flex;
}

.content-wrap {
  margin-top: 30px;
}

.small-gallery-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 30px;
}

.lightbox-link-gallery {
  border-radius: var(--r-20-px);
}

.gallery-img {
  border-radius: var(--r-20-px);
  object-fit: cover;
  width: 100%;
  height: 280px;
}

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

.loop-image {
  border-radius: var(--r-10-px);
  object-fit: cover;
  width: 19.2%;
  height: 200px;
  margin-right: 10px;
}

.loop-images-wrapper {
  z-index: 1;
  border-radius: var(--r-10-px);
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.loop-image-wrap {
  justify-content: flex-start;
  align-items: center;
  width: 202%;
  display: flex;
}

.content-banner-image-wrap {
  border-radius: var(--r-20-px);
  padding: 160px 30px 40px;
  position: relative;
}

.banner-image-absolute {
  border-radius: var(--r-20-px);
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.banner-image-absolute.banner-event-details {
  object-position: 50% 50%;
}

.gradient-image-baner {
  border-radius: var(--r-20-px);
  background-image: linear-gradient(90deg, #000, #0000 70%);
  position: absolute;
  inset: 0%;
}

.content-service-1-type {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.collection-item-service-3-type {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.link-imafe-service-3-type {
  border-radius: var(--r-20-px);
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.service-3-type-image {
  border-radius: var(--r-20-px);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.content-service-3-type-wrapper {
  text-align: center;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 290px;
  margin-top: -30px;
  display: flex;
}

.icon-wrapper {
  z-index: 2;
  border-radius: var(--r-40-px);
  background-color: var(--primary-light);
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  position: relative;
}

.service-icon-small {
  width: 32px;
  height: 32px;
}

.benefits-services-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
}

.content-benefits-wrap {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.list {
  grid-column-gap: 16px;
  grid-row-gap: 15px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 90%;
  display: grid;
}

.benefit-image {
  border-radius: var(--r-20-px);
  object-fit: cover;
  width: 100%;
  min-height: 460px;
}

.galler-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

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

.galler-photo {
  border-radius: var(--r-20-px);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.galler-photo._1-photo {
  height: 300px;
}

.service-rich-text-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.value-text-wrapper {
  border-radius: var(--r-20-px);
  background-image: url('../images/BG-Footer.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  width: 30%;
  padding: 10px 20px;
  display: flex;
}

.content-rich-text-wrapper {
  width: 70%;
}

.paragraph-banner-blog-details {
  max-width: 400px;
}

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

.team-member-banner-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  place-items: center stretch;
}

.teasm-member-photo {
  border-radius: var(--r-10-px);
  object-fit: cover;
  object-position: 50% 25%;
  width: 100%;
  height: 460px;
}

.content-banner-team-member {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.information-doctor-details-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.contact-doctor-wrap {
  border-radius: var(--r-20-px);
  background-color: #fff;
  background-image: url('../images/BG-Footer.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 37%;
  padding: 20px 30px 30px;
  display: flex;
  position: sticky;
  top: 110px;
}

.contact-doctor {
  border-top: 1px solid var(--primary-light);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-top: 15px;
  padding-top: 15px;
  display: flex;
}

.flex-contact-info {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 15px;
  display: flex;
}

.link-contact {
  color: var(--primary-dark);
  text-transform: lowercase;
  font-size: 18px;
}

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

.doctor-content {
  width: 63%;
}

.contact-image {
  border-radius: var(--r-20-px);
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.contact-info-wrapper {
  width: 45%;
  position: relative;
}

.links-contact-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border-radius: var(--r-10-px);
  background-color: var(--primary-light);
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 20px;
  display: flex;
  position: absolute;
  inset: auto 15px 30px;
}

.links-contact {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.pricing-plan-currency-icon-2 {
  color: var(--primary);
  margin-right: 8px;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
}

.price-wrap {
  border-top: 1px solid var(--primary-light);
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
  padding-top: 30px;
  display: flex;
}

.pricing-plan-information-wrap {
  border-radius: var(--r-10-px);
  text-align: center;
  background-image: url('../images/BG-Footer.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.pricing-content-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  place-items: start stretch;
}

.pricing-wrapper {
  border-radius: var(--r-20-px);
  background-color: var(--primary-light);
  padding: 10px 10px 20px;
}

.list-price-wrapper {
  padding-top: 40px;
  padding-left: 10px;
  padding-right: 10px;
}

.button-price-wrap {
  margin-top: 40px;
}

.pricing-plan-price {
  color: var(--primary);
  font-size: 62px;
}

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

.collection-item-event {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-radius: var(--r-20-px);
  background-color: var(--primary-light);
  flex-flow: column;
  padding: 20px 10px 10px;
  display: flex;
}

.titles-content-event-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 10px;
  display: flex;
}

.date-event-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  border-right: 1px solid #182d3433;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 15px;
  display: flex;
}

.date {
  color: var(--primary);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1em;
}

.date.month {
  font-size: 28px;
  font-weight: 400;
}

.content-event-wrapper {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.event-name {
  color: var(--primary-dark-text);
  font-size: 28px;
  font-weight: 400;
}

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

.link-event-image {
  border-radius: var(--r-10-px);
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.event-image {
  border-radius: var(--r-10-px);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

.info-events-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 20%;
  display: flex;
}

.text-event-wrapper {
  width: 80%;
}

.info-event-wrap {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.small-title {
  color: var(--paragraph-gray);
  font-size: 20px;
}

.info-event {
  color: var(--primary);
  font-size: 18px;
}

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

.info-job-wrapper {
  border-bottom: 1px solid #182d3433;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: flex;
}

.content-job-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.link {
  color: var(--primary-dark-text);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
}

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

.title-job-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 840px;
  margin-bottom: 40px;
  display: flex;
}

.why-join-us-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.join-us-image {
  object-fit: cover;
  border-radius: 20px;
  width: 45%;
  height: 100%;
  min-height: 640px;
}

.why-us-content-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.value-wrap-2 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 400px;
  margin-top: 10px;
  display: flex;
}

.value-wrap-2.join-us-value {
  width: 100%;
  margin-top: 20px;
}

.title-value {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.big-title-job-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.paragraph-job-wrapper {
  width: 560px;
}

.living-options-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.living-options-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  width: 100%;
  display: grid;
}

.image-living-option-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 470px;
  display: flex;
}

.living-image {
  border-radius: var(--r-20-px);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.content-living-options-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.career-paragraph-banner {
  max-width: 400px;
}

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

.search-result-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.landing-heading {
  color: var(--primary-dark);
  display: block;
}

.landing-1-heading {
  font-size: 68px;
}

.promotion-label-buy-this-template {
  color: #000;
  letter-spacing: normal;
  text-transform: capitalize;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  width: 144px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  display: flex;
}

.promotion-label-buy-this-template:hover {
  opacity: 1;
  color: #000;
}

.promotion-label-left {
  background-color: #0055d4;
  border-radius: 4px;
  width: 100%;
  max-width: 290px;
  position: absolute;
}

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

.promotion-label-button {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 5px 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3em;
}

.promotion-label-button:hover {
  opacity: 1;
  color: #ffffffb3;
}

.promotion-label-paragraph {
  color: #fff;
  text-align: left;
  letter-spacing: 0;
  max-width: 94%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
}

.promotion-icon {
  object-fit: contain;
  margin-right: 8px;
}

.promotion-label-more-templates {
  color: #000;
  letter-spacing: normal;
  text-transform: capitalize;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  width: 144px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  display: flex;
}

.promotion-label-more-templates:hover {
  opacity: 1;
  color: #000;
}

.promotion-labels-wrapper-to-remove {
  z-index: 2147483647;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
  position: fixed;
  bottom: 5px;
  left: 5px;
  right: 5px;
}

.promotion-label-holder {
  grid-row-gap: 10px;
  flex-direction: column;
  padding: 15px;
  display: flex;
  position: relative;
}

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

.promotion-label-right {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
  position: absolute;
  right: 10px;
}

.promotion-coupon {
  color: #101828;
  background-color: #fff;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 12px;
  display: inline-block;
}

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

  blockquote {
    padding-left: 100px;
    padding-right: 100px;
  }

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

  .section.about-us-banner, .section.landing-banner {
    padding-top: 180px;
  }

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

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

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

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

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

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

  .navbar {
    max-width: 1430px;
  }

  .nav-link {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .nav-item-title {
    margin-right: 0;
  }

  .blog-template-image {
    width: 96%;
  }

  .section-title-wrapper.value-title {
    margin-right: 340px;
  }

  .section-title-wrapper.value-title-3-type {
    max-width: 390px;
    margin-left: 70px;
    left: 60%;
  }

  .section-title-wrapper.center-team-section {
    margin-top: 130px;
  }

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

  .career-list-item-wrapper:last-child, .career-list-item-wrapper.details-list-career:last-child {
    display: flex;
  }

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

  .accordion-wrapper {
    width: 80%;
  }

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

  .contacts-form-wrapper {
    width: 50%;
    padding: 30px 40px 40px;
  }

  .footer-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .footer-links-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
  }

  .search-shop-con.desctop-buttons {
    min-width: 325px;
    margin-left: 0;
  }

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

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

  .primary-button-white.play-white-button {
    left: 40px;
  }

  .landing-inner-pages-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

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

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

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

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

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

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

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

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

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

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

  .brand-header {
    width: 325px;
  }

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

  .licensing-icons {
    width: 45%;
  }

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

  .links-footer-wrappr {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .big-link-footer {
    font-size: 46px;
  }

  .top-footer-wrapper {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .top-content-footer-wrapper {
    max-width: 510px;
  }

  .big-title-footer {
    font-size: 70px;
  }

  .popup-wrapper {
    width: 900px;
  }

  .content-banner-wrappr {
    max-width: 460px;
  }

  .our-mission-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 20px;
    grid-template-columns: 1.05fr .95fr;
    padding: 20px;
  }

  .big-image-1 {
    max-height: 720px;
  }

  .video-image {
    max-height: 360px;
  }

  .left-content-title {
    width: 49%;
  }

  .left-content-title.team-heading {
    width: 40%;
  }

  .right-content-title.text-right-content {
    width: 50%;
  }

  .collection-item-service {
    padding: 30px;
  }

  .background-color-2 {
    filter: blur(380px);
    width: 100%;
  }

  .background-color-2._2-type {
    height: 30%;
  }

  .background-color-2._3-type {
    height: 25%;
    top: 40%;
  }

  .background-color-2.primary-color {
    top: 20%;
  }

  .senior-image-1 {
    bottom: -60px;
    left: 200px;
  }

  .senior-image-1.about-us-img-1 {
    bottom: -20px;
    left: 80px;
  }

  .senior-image-2 {
    bottom: -60px;
    right: 200px;
  }

  .senior-image-2.about-us-img-2 {
    bottom: -20px;
    right: 80px;
  }

  .senior-image-3 {
    top: 180px;
    left: 40px;
  }

  .senior-image-3.about-us-img-3 {
    bottom: -130px;
    left: 250px;
  }

  .senior-image-4 {
    top: 180px;
    right: 40px;
  }

  .senior-image-4.about-us-img-4 {
    bottom: -130px;
    right: 250px;
  }

  .background-color-1 {
    filter: blur(380px);
    width: 70%;
    height: 40%;
  }

  .background-color-1.position-2 {
    top: 20%;
  }

  .background-color-1.career-details-background {
    height: 30%;
    top: 35%;
  }

  .tabs-menu-values._2-typ-tabs {
    margin-right: 80px;
  }

  .content-value {
    width: 55%;
    padding-right: 35px;
  }

  .lines-values._2-type-lines {
    width: 440px;
    left: -520px;
  }

  .value-image {
    border-radius: var(--r-20-px);
    object-fit: cover;
    width: 45%;
    height: 100%;
    min-height: 370px;
    display: block;
  }

  .left-arrow-60px.review-arrow {
    left: 44.8%;
  }

  .left-arrow-60px.white-review-arrow {
    left: 44.5%;
  }

  .right-arrow-60px.review-arrow {
    right: 44.8%;
  }

  .right-arrow-60px.white-review-arrow {
    right: 44.5%;
  }

  .right-arrow-60px.arrow-testimonials {
    right: 44.8%;
  }

  .review-wrapper {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .title-review-with-imags {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .title-image {
    height: 445px;
  }

  .testimonias-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .mission-wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .about-us-2-type-wrapper {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .images-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 60px;
  }

  .content-banner-2-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .banner-2-image {
    height: 540px;
  }

  .content-right-banner-2-wrap {
    width: 600px;
  }

  .content-value-home-2-wrapper._2-tab {
    background-image: linear-gradient(90deg, var(--primary-dark-text) 17%, #0000), url('../images/2-type-img-2.webp');
    background-position: 0 0, 0%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .content-value-home-2-wrapper._4-type {
    background-position: 0 0, 0%;
  }

  .contet-text-value-wrapper {
    width: 330px;
  }

  .content-banner-home-3-wrapper {
    background-image: linear-gradient(90deg, #000, #000000c2 27%, #0000 57%), url('../images/Banner-3-Img.webp');
    background-position: 0 0, 50% 30%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    padding-top: 190px;
    padding-bottom: 50px;
    padding-left: 50px;
  }

  .content-text-home-3-wrapper.content-services-1 {
    max-width: 470px;
  }

  .book-a-demo-home-3-wrapper {
    padding-top: 100px;
  }

  .text-field-book-a-demo {
    min-width: 325px;
  }

  .checks-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 100px;
  }

  .image-block-wrapper {
    height: 480px;
  }

  .value-content-3-type-wrapper {
    padding: 20px;
  }

  .video-review-wrapper {
    padding-top: 30px;
    padding-bottom: 40px;
    padding-left: 40px;
  }

  .collection-list-services-2-type {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .tabs-content-value-3-type {
    width: 60%;
  }

  .background-color-3 {
    filter: blur(320px);
  }

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

  .collection-item-blog {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .content-blog-wrapper {
    width: 47%;
  }

  .link-blog {
    width: 53%;
  }

  .text-content-banner.text-content-event-details {
    width: 50%;
  }

  .content-banner-mission {
    grid-column-gap: 140px;
    grid-row-gap: 140px;
  }

  .mission-3-type-wrapper {
    padding: 130px 40px 40px;
  }

  .value-wrap-2-type {
    padding: 20px 30px;
  }

  .who-we-are-wrapper {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .image-about {
    width: 50%;
    height: 600px;
  }

  .big-benefits-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding: 20px 20px 20px 30px;
  }

  .images-why-choosed-us-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .why-choose-us-image.relative-image {
    top: -20px;
  }

  .faq-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .faq-image-content-wrapper {
    height: 440px;
  }

  .faq-image {
    object-position: 50% 40%;
  }

  .small-gallery-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .gallery-img {
    height: 360px;
  }

  .loop-image {
    width: 18.5%;
    height: 240px;
    margin-right: 20px;
  }

  .banner-image-absolute.team-image-banner {
    object-position: 50% 20%;
  }

  .collection-list-services-3-type {
    grid-column-gap: 30px;
  }

  .content-service-3-type-wrapper {
    min-height: 270px;
  }

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

  .content-benefits-wrap {
    padding-right: 65px;
  }

  .benefit-image {
    max-height: 520px;
  }

  .galler-photo._1-photo {
    height: 360px;
  }

  .service-rich-text-wrapper {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .team-member-banner-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .teasm-member-photo {
    height: 540px;
  }

  .information-doctor-details-wrap {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .contact-doctor-wrap {
    width: 32%;
  }

  .doctor-content {
    width: 67%;
  }

  .contact-image {
    min-height: 597px;
  }

  .links-contact-wrapper {
    padding-left: 30px;
    padding-right: 30px;
    bottom: 40px;
    left: 40px;
    right: 40px;
  }

  .pricing-content-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .pricing-wrapper {
    padding-bottom: 30px;
  }

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

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

  .titles-content-event-wrapper {
    padding-left: 20px;
    padding-right: 30px;
  }

  .date-event-wrapper {
    margin-right: 40px;
    padding-right: 40px;
  }

  .date {
    font-size: 24px;
  }

  .date.month, .event-name {
    font-size: 30px;
  }

  .link-event-image {
    height: 340px;
  }

  .content-event-details-wrapper {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

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

  .title-job-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: none;
  }

  .join-us-image {
    width: 45%;
  }

  .why-us-content-wrapper {
    width: 50%;
  }

  .value-wrap-2.join-us-value {
    width: 480px;
  }

  .big-title-job-wrapper {
    width: 65%;
  }

  .paragraph-job-wrapper {
    width: 35%;
  }

  .living-options-wrap {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .landing-1-heading {
    font-size: 72px;
  }
}

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

  blockquote {
    padding-left: 100px;
    padding-right: 100px;
  }

  .section.about-us-banner {
    padding-bottom: 25px;
  }

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

  .section.banner-home-1 {
    overflow: hidden;
  }

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

  .section.gallery-section {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .section.team-section {
    padding-top: 50px;
  }

  .section.team-member-details-banner {
    padding-bottom: 25px;
  }

  .base-container.big-spacing {
    padding-left: 50px;
    padding-right: 50px;
  }

  .navbar {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .navbar.standart-navbar {
    margin-top: 5px;
  }

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

  .coming-soon-wrapper {
    max-width: 600px;
    margin-right: 100px;
  }

  .blog-template-image {
    width: 96%;
  }

  .section-title-wrapper.value-title {
    margin-right: 410px;
  }

  .section-title-wrapper.value-title-3-type {
    top: 90px;
    right: 80px;
  }

  .accordion-wrapper {
    width: 70%;
  }

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

  .job-position-wrapper {
    width: 75%;
  }

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

  .primary-button-white.play-white-button {
    left: 80px;
  }

  .landing-features-grid {
    padding-left: 10px;
    padding-right: 10px;
  }

  .landing-inner-pages-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

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

  .background-3 {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }

  .background-3.top-bottom-margins {
    max-width: 1400px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .background-1 {
    max-width: 1400px;
    margin: 20px auto 10px;
  }

  .links-footer-wrappr {
    grid-template-columns: .9fr 1.05fr;
  }

  .top-footer-wrapper {
    width: auto;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .our-mission-wrapper {
    grid-column-gap: 20px;
    grid-template-columns: 1.15fr .85fr;
    place-items: start;
  }

  .mission-contetn-wrapper {
    width: 84%;
    margin-left: 30px;
    padding-bottom: 40px;
  }

  .big-image-1 {
    object-position: 50% 0%;
    max-height: 740px;
  }

  .video-image {
    height: 370px;
    max-height: none;
  }

  .left-content-title {
    width: 45%;
  }

  .left-content-title.team-heading {
    width: 35%;
  }

  .background-color-2._2-type {
    background-image: radial-gradient(circle, #cc9556cc, #fff);
  }

  .background-color-2._3-type {
    top: 45%;
  }

  .background-color-2.primary-color {
    height: 20%;
    top: 15%;
  }

  .background-color-2._4-type {
    top: 4%;
  }

  .senior-image-1 {
    left: 270px;
  }

  .senior-image-2 {
    right: 270px;
  }

  .senior-image-3 {
    left: 60px;
  }

  .senior-image-4 {
    right: 60px;
  }

  .background-color-1 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    top: -25%;
  }

  .tabs-menu-values {
    margin-right: 110px;
  }

  .tabs-menu-values._2-typ-tabs {
    margin-right: 130px;
  }

  .content-value {
    width: 55%;
    min-height: 390px;
    padding-right: 80px;
  }

  .lines-values {
    left: -550px;
  }

  .lines-values._2-type-lines {
    left: -570px;
  }

  .value-image {
    min-height: 390px;
  }

  .left-arrow-60px.review-arrow {
    left: 600px;
  }

  .left-arrow-60px.white-review-arrow, .left-arrow-60px.arrow-teatimonials {
    left: 620px;
  }

  .right-arrow-60px.review-arrow {
    right: 600px;
  }

  .right-arrow-60px.white-review-arrow, .right-arrow-60px.arrow-testimonials {
    right: 620px;
  }

  .title-image {
    height: 480px;
  }

  .title-block-wrap {
    max-width: 410px;
  }

  .slider-review {
    padding-right: 50px;
  }

  .about-us-2-type-wrapper {
    grid-column-gap: 130px;
    grid-row-gap: 130px;
    grid-template-columns: .9fr 1fr;
  }

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

  .img-about-us-1 {
    width: 215px;
    height: 215px;
  }

  .img-about-us-2, .img-about-us-3 {
    width: 160px;
    height: 160px;
  }

  .img-about-us-4 {
    width: 215px;
    height: 215px;
  }

  .banner-2-image {
    height: 600px;
  }

  .content-right-banner-2-wrap {
    width: 640px;
  }

  .background-home-2-banner {
    object-position: 22% 50%;
    height: 103%;
    bottom: 0%;
  }

  .content-value-home-2-wrapper._2-tab {
    background-image: linear-gradient(90deg, var(--primary-dark-text) 16%, #0000), url('../images/2-type-img-2.webp');
    background-position: 0 0, 0%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .content-banner-home-3-wrapper {
    background-image: linear-gradient(90deg, #000, #000000c2 27%, #0000 53%), url('../images/Banner-3-Img.webp');
    background-position: 0 0, 50% 20%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    padding-top: 200px;
  }

  .image-block-wrapper {
    height: 500px;
  }

  .video-review-wrapper {
    padding-top: 40px;
    padding-bottom: 50px;
    padding-left: 50px;
  }

  .tabs-menu-value {
    margin-bottom: 60px;
  }

  .value-wrap {
    height: 720px;
  }

  .content-banner-mission {
    grid-column-gap: 160px;
    grid-row-gap: 160px;
  }

  .our-solutions-text-wrapper {
    padding-right: 80px;
  }

  .faq-image-content-wrapper {
    width: 80%;
  }

  .small-gallery-wrapper {
    margin-top: 50px;
  }

  .loop-image {
    width: 18.6%;
    height: 260px;
  }

  .content-banner-image-wrap {
    padding-top: 180px;
  }

  .content-service-3-type-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .galler-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .galler-photo._1-photo {
    height: 400px;
  }

  .service-rich-text-wrapper {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .team-member-banner-wrapper {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    padding-left: 50px;
  }

  .content-banner-team-member {
    width: 80%;
  }

  .links-contact-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .pricing-content-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .content-event-wrapper {
    width: 90%;
  }

  .link-event-image {
    height: 400px;
  }

  .why-us-content-wrapper {
    padding-right: 60px;
  }

  .big-title-job-wrapper {
    width: 60%;
  }

  .paragraph-job-wrapper {
    width: 37%;
  }

  .living-options-wrap {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    grid-template-columns: .9fr 1fr;
  }

  ._404-heading {
    font-size: 140px;
  }

  .landing-1-heading {
    font-size: 80px;
  }
}

@media screen and (min-width: 1920px) {
  blockquote {
    padding-left: 120px;
    padding-right: 120px;
  }

  .section.banner-home-1 {
    padding-top: 165px;
  }

  .section.home-2-banner {
    background-image: none;
    min-height: 100vh;
  }

  .section-title-wrapper.value-title-3-type {
    top: 120px;
  }

  .footer-wrapper {
    padding-right: 40px;
  }

  .primary-button-white.play-white-button {
    left: 100px;
  }

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

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

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

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

  .background-1 {
    margin-left: auto;
    margin-right: auto;
  }

  .links-footer-wrappr {
    grid-template-columns: 1fr 1fr;
  }

  .popup-wrapper {
    width: 960px;
  }

  .our-mission-wrapper {
    grid-row-gap: 40px;
  }

  .mission-contetn-wrapper {
    padding-bottom: 0;
  }

  .big-image-1 {
    max-height: 720px;
  }

  .video-image {
    max-height: 390px;
  }

  .background-color-2 {
    width: 70%;
    height: 30%;
    margin-left: auto;
    margin-right: auto;
  }

  .background-color-2._4-type {
    height: 42%;
    top: -5%;
  }

  .senior-image-1.about-us-img-1 {
    left: 40px;
  }

  .senior-image-2.about-us-img-2 {
    right: 40px;
  }

  .senior-image-3.about-us-img-3 {
    left: 230px;
  }

  .senior-image-4.about-us-img-4 {
    right: 230px;
  }

  .background-color-1 {
    width: 70%;
    top: -10%;
  }

  .background-color-1.position-2 {
    top: 25%;
  }

  .title-image {
    height: 490px;
  }

  .about-us-2-type-wrapper {
    grid-template-columns: .9fr 1fr;
  }

  .content-about-wrap {
    padding-right: 80px;
  }

  .banner-2-image {
    height: 750px;
  }

  .background-home-2-banner {
    object-fit: cover;
    object-position: 0% 50%;
    width: 100%;
    height: 104%;
    bottom: 0%;
  }

  .content-value-home-2-wrapper._3-type {
    background-image: linear-gradient(90deg, var(--primary-dark-text) 37%, #0000 74%), url('../images/2-type-img-3.webp');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .content-banner-home-3-wrapper {
    padding-top: 300px;
  }

  .tabs-menu-value {
    margin-bottom: 80px;
  }

  .value-wrap {
    height: 760px;
  }

  .background-color-3 {
    width: 72%;
    height: 15%;
    margin-left: auto;
    margin-right: auto;
  }

  .about-us-paragraph-wrap {
    max-width: 480px;
  }

  .why-choose-us-image.relative-image {
    top: -30px;
  }

  .faq-image-content-wrapper {
    height: 500px;
  }

  .loop-image {
    height: 280px;
  }

  .banner-image-absolute.team-image-banner {
    object-position: 50% 10%;
  }

  .benefits-services-wrapper {
    grid-template-columns: .9fr 1.1fr;
  }

  .content-benefits-wrap {
    padding-right: 80px;
  }

  .team-member-banner-wrapper {
    grid-column-gap: 120px;
    grid-row-gap: 120px;
  }

  .teasm-member-photo {
    height: 600px;
  }

  .information-doctor-details-wrap {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .contact-doctor-wrap {
    width: 30%;
  }

  .doctor-content {
    width: 70%;
  }

  .pricing-wrapper {
    padding: 15px 15px 35px;
  }

  .list-price-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }

  .link-event-image {
    height: 420px;
  }

  ._404-heading {
    font-size: 160px;
  }

  .landing-1-heading {
    font-size: 86px;
  }
}

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

  h2 {
    font-size: 44px;
  }

  blockquote {
    width: 85%;
    font-size: 24px;
  }

  .section.about-us-banner, .section.landing-banner {
    padding-top: 155px;
  }

  .section.banner-home-1 {
    padding-top: 135px;
  }

  .section.home-2-banner {
    padding-bottom: 80px;
  }

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

  .section.inner-banner {
    padding-top: 155px;
  }

  .section.service-details-banner {
    padding-bottom: 80px;
  }

  .section.job-details-banner {
    padding-top: 100px;
    padding-bottom: 80px;
  }

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

  .grid-system {
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

  .primary-button {
    display: block;
  }

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

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

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

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

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

  .nav-menu {
    background-color: var(--primary-light);
    flex-direction: column;
    width: 320px;
    position: fixed;
    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;
    font-size: 16px;
    font-weight: 400;
    display: flex;
  }

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

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

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

  .nav-dropdown-list {
    background-color: var(--primary-light);
    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: 8px;
    padding-bottom: 8px;
    font-size: 16px;
  }

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

  .nav-item-title {
    font-size: 16px;
  }

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

  .licensing-paragraph {
    width: 100%;
  }

  .coming-soon-wrapper {
    align-items: center;
    max-width: 640px;
    margin-right: 0;
  }

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

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

  .footer-bottom-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .footer-copyright {
    justify-content: center;
    align-items: flex-start;
  }

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

  .section-title-wrapper.value-title-3-type {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    margin-left: auto;
    position: static;
  }

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

  .accordion-wrapper {
    width: 98%;
  }

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

  .job-position-wrapper {
    width: 100%;
  }

  .job-position-sidebar-wrapper {
    text-align: center;
    width: 60%;
    margin-left: auto;
    padding: 20px 30px 30px;
    top: 20px;
  }

  .job-position-sidebar-wrap {
    justify-content: center;
    align-items: center;
  }

  .contacts-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .contacts-form-wrapper {
    width: 100%;
    padding: 30px 40px 40px;
  }

  .footer-wrapper {
    text-align: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 75%;
  }

  .footer-links-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-content: flex-start;
    align-items: center;
  }

  .search-desktop {
    display: none;
  }

  .search-bottom-line {
    display: flex;
  }

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

  .search-shop-con.tablet-button {
    margin-top: 20px;
    margin-left: 0;
    display: block;
  }

  .search-shop-con.desctop-buttons {
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
  }

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

  .search-section {
    padding-top: 125px;
  }

  .headings-container {
    flex-wrap: wrap;
  }

  .button-wrapper {
    margin-top: 35px;
  }

  .primary-button-white:hover {
    opacity: 1;
  }

  .primary-button-white.play-white-button {
    bottom: 20px;
    left: 20px;
  }

  .style-guide-content-wrapper {
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

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

  .landing-banner-image {
    max-width: 95%;
  }

  .landing-performance-grid {
    grid-column-gap: 80px;
    grid-row-gap: 60px;
  }

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

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

  .landing-performance-item-title {
    max-width: 220px;
    font-size: 18px;
  }

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

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

  .landing-download-block-wrapper {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px;
  }

  .landing-download-block-wrap {
    text-align: center;
    margin-bottom: 40px;
  }

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

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

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

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

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

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

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

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

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

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

  .brand-tablet {
    display: block;
  }

  .details-page-title {
    font-size: 48px;
  }

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

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

  .licensing-icons {
    width: 80%;
  }

  .links-footer-wrappr {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .big-link-footer {
    text-align: center;
  }

  .big-title-footer {
    font-size: 56px;
  }

  .subscribe-footer-wrapper {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .copyright-footer-wrapper {
    text-align: center;
    justify-content: center;
    align-items: flex-start;
  }

  .success-message-footer {
    text-align: center;
  }

  .number-career {
    z-index: 1;
    background-color: var(--background-color-2-light);
    display: none;
  }

  .field-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .textarea-popup {
    margin-bottom: 15px;
    padding: 15px;
  }

  .popup-wrapper {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 30px 30px;
  }

  .popup {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
  }

  .form-block-popup {
    min-height: 380px;
    margin-top: 20px;
  }

  .text-field-popup {
    margin-bottom: 15px;
    padding: 15px;
  }

  .top-titles-banner-home-1.banner-home-2 {
    background-color: #f0e2dd80;
  }

  .about-us-wrapper {
    max-width: 680px;
  }

  .subtitle-text.living-subtitle {
    background-color: var(--primary-light);
  }

  .our-mission-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: .9fr 1.1fr;
    place-items: end stretch;
  }

  .video-image {
    height: 250px;
  }

  .left-content-title {
    width: 65%;
  }

  .left-content-title.small-heading {
    width: 280px;
  }

  .left-content-title.team-heading {
    width: 65%;
  }

  .left-content-title.service-home-3-title {
    width: 580px;
  }

  .collection-list-wrapper---100.tablet-hidden {
    display: none;
  }

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

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

  .collection-list-services.services-1-type {
    flex-flow: wrap;
    justify-content: center;
    align-items: stretch;
    display: flex;
  }

  .collection-item-service.service-1-type {
    width: 48%;
  }

  .background-color-2 {
    height: 37%;
  }

  .background-color-2._3-type {
    top: 45%;
  }

  .background-color-2.primary-color {
    top: 10%;
  }

  .background-color-2._4-type {
    height: 70%;
    top: 0%;
  }

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

  .collection-list-team.flex-tablet {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    display: flex;
  }

  .senior-image-1 {
    width: 180px;
    bottom: -60px;
    left: 20px;
  }

  .senior-image-1.about-us-img-1 {
    bottom: -80px;
    left: 10px;
  }

  .senior-image-2 {
    width: 180px;
    bottom: -60px;
    right: 20px;
  }

  .senior-image-2.about-us-img-2 {
    bottom: -80px;
    right: 10px;
  }

  .senior-image-3 {
    width: 120px;
    top: 190px;
    left: 35px;
  }

  .senior-image-3.about-us-img-3 {
    display: none;
  }

  .senior-image-4 {
    width: 120px;
    top: 190px;
    right: 35px;
  }

  .senior-image-4.about-us-img-4 {
    display: none;
  }

  .video-mission-image {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .background-color-1 {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }

  .background-color-1.career-details-background {
    height: 30%;
  }

  .tabs-menu-values {
    width: 45%;
    min-width: auto;
    margin-right: 40px;
  }

  .tab-link {
    font-size: 42px;
  }

  .content-value {
    min-height: 350px;
    padding-right: 20px;
  }

  .lines-values {
    width: 90%;
    left: -370px;
  }

  .lines-values._2-type-lines {
    width: 75%;
    left: -350px;
  }

  .left-arrow-60px.review-arrow {
    left: 41.5%;
  }

  .left-arrow-60px.white-review-arrow, .left-arrow-60px.arrow-teatimonials {
    left: 41%;
  }

  .right-arrow-60px.review-arrow {
    right: 41.5%;
  }

  .right-arrow-60px.white-review-arrow, .right-arrow-60px.arrow-testimonials {
    right: 41%;
  }

  .title-review-with-imags {
    grid-template-columns: 1fr 1fr;
  }

  .title-image {
    object-position: 50% 0%;
    height: 460px;
  }

  .testimonias-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .services-2-type-wrap {
    flex-flow: column;
  }

  .bio-wrap {
    flex-flow: column;
  }

  .service-image {
    display: none;
  }

  .bio-image {
    display: none;
  }

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

  .text-mission {
    font-size: 44px;
  }

  .about-us-2-type-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .content-about-wrap {
    padding-right: 20px;
  }

  .images-wrapper {
    grid-row-gap: 40px;
    width: 75%;
  }

  .content-banner-2-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: wrap-reverse;
    justify-content: center;
    align-items: flex-start;
  }

  .content-left-banner-2-wrap {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 0;
  }

  .banner-2-image {
    height: 540px;
  }

  .content-right-banner-2-wrap {
    max-width: 540px;
  }

  .background-home-2-banner {
    object-position: 0% 50%;
  }

  .content-value-home-2-wrapper {
    background-image: linear-gradient(to bottom, var(--primary-dark-text), var(--primary-dark-text));
    min-height: 350px;
    padding-right: 15px;
  }

  .content-value-home-2-wrapper._2-tab {
    background-image: linear-gradient(to bottom, var(--primary-dark-text), var(--primary-dark-text));
  }

  .content-value-home-2-wrapper._3-type {
    background-image: linear-gradient(to bottom, var(--primary-dark-text), var(--primary-dark-text));
    padding-right: 15px;
  }

  .content-value-home-2-wrapper._4-type, .content-value-home-2-wrapper._5-type {
    background-image: linear-gradient(to bottom, var(--primary-dark-text), var(--primary-dark-text));
  }

  .contet-text-value-wrapper {
    width: 100%;
  }

  .content-banner-home-3-wrapper {
    background-position: 0 0, 28%;
    padding-top: 220px;
  }

  .content-text-home-3-wrapper.content-our-history {
    max-width: 380px;
  }

  .content-text-home-3-wrapper.content-services-1 {
    max-width: 370px;
  }

  .book-a-demo-home-3-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .form-block-book {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    min-height: 118px;
    display: flex;
  }

  .form-book {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .text-field-book-a-demo {
    width: 31.5%;
    min-width: auto;
  }

  .text-field-book-a-demo.contact-form {
    width: 100%;
  }

  .checks-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 20px;
    flex-flow: wrap;
  }

  .success-message-classic {
    height: auto;
  }

  .image-block-wrapper {
    height: 340px;
  }

  .value-content-3-type-wrapper {
    padding-top: 80px;
  }

  .slider-testimonails {
    max-width: 100%;
  }

  .text-review {
    font-size: 44px;
  }

  .team-3-type-wrapper {
    flex-flow: row-reverse;
    grid-template-columns: 1fr 1fr;
    place-items: end stretch;
    display: flex;
  }

  .team-content-wrap.width-50-tablet {
    width: 50%;
  }

  .collection-list-services-2-type {
    grid-template-columns: 1fr;
  }

  .collection-list-services-2-type.service-page-2-wrapper {
    flex-flow: column;
  }

  .collection-item-service-2-type {
    justify-content: flex-start;
    align-items: center;
  }

  .collection-item-service-2-type.service-type-2-page {
    width: 100%;
  }

  .link-service-image {
    height: 290px;
  }

  .tabs-value-3-type {
    flex-flow: column-reverse;
    justify-content: flex-start;
    align-items: center;
  }

  .tabs-menu-value {
    grid-column-gap: 40px;
    grid-row-gap: 0px;
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 75%;
  }

  .tabs-content-value-3-type {
    width: 100%;
    margin-right: 0;
  }

  .collection-list-blog {
    grid-template-columns: 1fr;
  }

  .collection-item-blog {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .collection-item-blog:nth-child(2n) {
    flex-flow: row-reverse;
  }

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

  .text-content-banner.text-content-event-details {
    width: 70%;
  }

  .content-banner-mission {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column-reverse;
  }

  .content-banner-mission.content-job-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .mission-3-type-wrapper {
    padding-bottom: 40px;
  }

  .values-wrapper-2 {
    flex-flow: wrap;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .value-wrap-2-type {
    width: 47%;
  }

  .our-solutions-text-wrapper {
    padding-right: 60px;
  }

  .who-we-are-wrapper {
    flex-flow: wrap-reverse;
    justify-content: center;
    align-items: center;
  }

  .text-content-wrapper {
    width: 100%;
  }

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

  .about-us-titles-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    max-width: 780px;
  }

  .benefits-about-wrapper {
    padding-top: 0;
  }

  .image-21 {
    object-position: 50% 40%;
    height: 400px;
  }

  .benefits-text-wrapper {
    padding-bottom: 0;
  }

  .big-benefits-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1.3fr;
    padding-top: 30px;
    padding-bottom: 20px;
    padding-right: 20px;
  }

  .images-why-choosed-us-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    place-items: center stretch;
    width: 75%;
  }

  .why-choose-us-image.relative-image {
    position: static;
    top: 0;
  }

  .value-image-2 {
    object-position: 50% 30%;
    height: 400px;
  }

  .value-image-2.hidden-image-tablet {
    display: none;
  }

  .faq-image-content-wrapper {
    width: 100%;
  }

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

  .gallery-img {
    height: 200px;
  }

  .loop-image {
    height: 220px;
  }

  .loop-image-wrap {
    width: 310%;
  }

  .content-banner-image-wrap {
    padding-top: 140px;
  }

  .banner-image-absolute.team-image-banner {
    object-position: 0% 50%;
  }

  .banner-image-absolute.banner-event-details {
    width: 90%;
    margin-left: auto;
  }

  .gradient-image-baner.event-details-gradient {
    background-image: linear-gradient(90deg, #000 8%, #0000 70%);
  }

  .collection-list-services-3-type {
    flex-flow: wrap;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .collection-item-service-3-type {
    width: 47.5%;
  }

  .content-service-3-type-wrapper {
    min-height: 270px;
  }

  .benefits-services-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .benefit-image {
    min-height: 480px;
  }

  .galler-photo._1-photo {
    height: 240px;
  }

  .service-rich-text-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .value-text-wrapper {
    width: 60%;
    padding: 20px 30px;
  }

  .content-rich-text-wrapper {
    width: 100%;
  }

  .content-info {
    align-items: center;
    width: 100%;
  }

  .teasm-member-photo {
    height: 400px;
  }

  .team-wrapper:last-child {
    display: none;
  }

  .information-doctor-details-wrap {
    flex-flow: column-reverse;
  }

  .contact-doctor-wrap {
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    position: static;
  }

  .contact-doctor {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    text-align: center;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .doctor-content {
    width: 100%;
  }

  .contact-info-wrapper {
    width: 100%;
    height: 500px;
  }

  .links-contact-wrapper {
    padding-left: 40px;
    padding-right: 40px;
    bottom: 40px;
    left: 40px;
    right: 40px;
  }

  .links-contact {
    justify-content: flex-start;
    align-items: center;
  }

  .pricing-content-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    place-items: flex-start center;
    display: flex;
  }

  .pricing-wrapper {
    width: 47%;
  }

  .collection-list-events {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .date-event-wrapper {
    margin-right: 30px;
    padding-right: 30px;
  }

  .link-event-image {
    height: 340px;
  }

  .event-paragraph {
    max-width: 540px;
  }

  .info-job-wrapper {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .link {
    font-size: 28px;
  }

  .title-job-wrapper {
    width: 100%;
    max-width: none;
  }

  .why-join-us-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
  }

  .join-us-image {
    object-position: 50% 35%;
    width: 80%;
    height: 460px;
    min-height: auto;
  }

  .why-us-content-wrapper {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .value-wrap-2 {
    text-align: center;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .value-wrap-2.join-us-value {
    justify-content: space-between;
    align-items: center;
    width: 500px;
  }

  .paragraph-job-wrapper {
    width: 100%;
  }

  .living-options-wrapper {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
  }

  .living-options-wrap {
    flex-flow: column;
    display: flex;
  }

  .living-options-wrap._2-type-living-options {
    flex-flow: column-reverse;
  }

  ._404-heading {
    font-size: 100px;
  }

  .promotion-label-left {
    max-width: 380px;
  }

  .promotion-labels-wrapper-to-remove, .promotion-label-holder {
    display: none;
  }
}

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

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 22px;
  }

  blockquote {
    width: 100%;
    font-size: 22px;
  }

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

  .section.about-us-banner, .section.landing-banner {
    padding-top: 125px;
  }

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

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

  .section.banner-home-1, .section.home-2-banner, .section.mission-banner {
    padding-bottom: 60px;
  }

  .section.inner-banner {
    padding-top: 135px;
  }

  .section.service-details-banner, .section.job-details-banner {
    padding-bottom: 60px;
  }

  .base-container.big-spacing {
    padding-left: 20px;
    padding-right: 20px;
  }

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

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

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

  .style-guide-body-wrapper, .primary-button.full-width-mobile, .primary-button.search-button {
    width: 100%;
  }

  .style-guide-div {
    grid-row-gap: 40px;
  }

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

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

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

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

  .link-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .navbar {
    padding-top: 15px;
  }

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

  .nav-link {
    margin-left: 0;
  }

  .licensing-title-wrapper {
    margin-bottom: 20px;
  }

  .licensing-images-wrapper {
    padding-top: 30px;
  }

  .licensing-grid {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 40px;
  }

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

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

  .licensing-fonts-wrapper {
    flex-wrap: wrap;
  }

  .licensing-paragraph {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

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

  .licensing-font-title {
    margin-bottom: 10px;
  }

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

  .utility-page-content {
    width: 70%;
  }

  .password-image {
    width: 100px;
  }

  .password-input {
    min-width: auto;
  }

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

  .coming-soon-wrapper {
    margin-left: 0%;
  }

  .coming-soon-input {
    min-width: 240px;
  }

  .coming-soon-heading {
    font-size: 44px;
  }

  .blog-template-image {
    width: 96%;
    margin-top: -40px;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
  }

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

  .section-title-wrapper.value-title-3-type {
    margin-bottom: 30px;
  }

  .section-title-wrapper.center-team-section {
    margin-top: 60px;
  }

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

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

  .career-list-item-wrapper {
    flex-wrap: wrap;
    padding: 25px;
  }

  .career-button-wrapper {
    text-align: center;
    width: 100%;
  }

  .career-location-wrapper, .career-type-wrapper {
    text-align: center;
  }

  .banner-title-wrapper.blog-details-margin-bottom {
    margin-bottom: 10px;
  }

  .accordion-wrapper {
    flex-wrap: wrap;
  }

  .accordion-wrap {
    width: 100%;
    margin-right: 0;
  }

  .job-position-wrapper {
    flex-wrap: wrap;
  }

  .job-position-sidebar-wrapper {
    width: 100%;
    padding-bottom: 30px;
    position: relative;
    top: 0;
  }

  .contacts-wrapper {
    flex-wrap: wrap;
  }

  .contacts-form-wrapper {
    width: 100%;
    padding: 20px 30px 30px;
  }

  .footer-wrapper {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 85%;
  }

  .footer-brand {
    padding-left: 0;
  }

  .search-section {
    padding-top: 120px;
    padding-bottom: 60px;
  }

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

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

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

  .landing-performance-grid {
    grid-column-gap: 80px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .landing-features-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

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

  .landing-home-pages-wrapper {
    grid-row-gap: 40px;
  }

  .landing-download-block-wrap {
    margin-bottom: 30px;
  }

  .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-9-team-item {
    width: 48%;
  }

  .search {
    flex-direction: column;
  }

  .subtitle-2 {
    line-height: 16px;
  }

  .home-banner-left-arrow {
    top: 6%;
  }

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

  .brand-tablet {
    justify-content: flex-start;
  }

  .brand-header {
    padding-left: 0;
  }

  .details-page-title {
    font-size: 40px;
  }

  .typography-hero-wrapper {
    grid-row-gap: 40px;
    margin-top: 20px;
  }

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

  .license-link-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .licensing-icons {
    width: 100%;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: wrap;
    margin-top: 35px;
  }

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

  .links-footer-wrappr {
    flex-flow: column;
  }

  .big-link-footer {
    text-align: center;
  }

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

  .big-title-footer {
    font-size: 50px;
  }

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

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

  .field-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .textarea-popup {
    margin-bottom: 20px;
  }

  .popup-wrapper {
    width: 80%;
    margin-top: auto;
    margin-bottom: auto;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: scroll;
  }

  .popup {
    justify-content: center;
    align-items: flex-start;
  }

  .form-block-popup {
    min-height: auto;
  }

  .field-wrap {
    width: 100%;
  }

  .our-mission-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .big-image-1 {
    object-position: 50% 0%;
    height: 600px;
  }

  .big-title-section-wrapper {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
  }

  .left-content-title {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .left-content-title.team-heading {
    width: 75%;
  }

  .left-content-title.service-home-3-title {
    width: 100%;
  }

  .right-content-title {
    display: none;
  }

  .right-content-title.mobile-visible {
    justify-content: center;
    align-items: flex-start;
    margin-top: 20px;
    display: flex;
  }

  .right-content-title.text-right-content {
    width: 100%;
    display: block;
  }

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

  .collection-list-services {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .collection-list-services.home-2-type {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .collection-list-services.services-1-type {
    justify-content: space-between;
    align-items: flex-start;
  }

  .collection-item-service.service-1-type {
    width: 100%;
  }

  .background-color-2 {
    height: 75%;
    top: 15%;
  }

  .background-color-2.primary-color {
    top: 5%;
  }

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

  .collection-list-team {
    grid-template-columns: 1fr;
    place-items: start center;
  }

  .collection-list-team.flex-tablet {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .senior-image-1 {
    border-width: 3px;
    width: 120px;
    bottom: 91px;
  }

  .senior-image-1.about-us-img-1 {
    bottom: -60px;
  }

  .senior-image-2 {
    border-width: 3px;
    width: 120px;
    bottom: 46px;
  }

  .senior-image-2.about-us-img-2 {
    bottom: -60px;
  }

  .senior-image-3, .senior-image-4 {
    display: none;
  }

  .background-color-1.position-2 {
    top: 20%;
  }

  .background-color-1.career-details-background {
    height: 50%;
  }

  .tabs-values {
    flex-flow: column;
  }

  .tabs-menu-values {
    width: 100%;
    margin-bottom: 40px;
    margin-right: 0;
  }

  .tab-link {
    font-size: 40px;
  }

  .content-value {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    min-height: auto;
    padding-right: 80px;
  }

  .lines-values {
    width: 100%;
    top: -380px;
    left: 0;
  }

  .lines-values._2-type-lines {
    width: 100%;
    left: 0;
  }

  .slider-2-type-team-wrapper {
    padding-bottom: 100px;
  }

  .left-arrow-60px, .left-arrow-60px.review-arrow, .left-arrow-60px.white-review-arrow, .left-arrow-60px.arrow-teatimonials {
    inset: auto auto 0% 0%;
  }

  .right-arrow-60px, .right-arrow-60px.review-arrow, .right-arrow-60px.white-review-arrow, .right-arrow-60px.arrow-testimonials {
    inset: auto 0% 0% auto;
  }

  .title-image {
    height: 340px;
  }

  .title-block-wrap {
    max-width: 380px;
    bottom: 10px;
  }

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

  .services-2-type-wrap {
    justify-content: flex-start;
    align-items: center;
  }

  .bio-wrap {
    justify-content: flex-start;
    align-items: center;
  }

  .service-image {
    object-position: 50% 0%;
    width: 100%;
    height: 500px;
    display: block;
  }

  .bio-image {
    object-position: 50% 0%;
    width: 100%;
    height: 500px;
    display: block;
  }

  .mission-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .text-mission {
    font-size: 30px;
  }

  .image-mission {
    height: 55px;
  }

  .about-us-2-type-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .images-wrapper {
    width: 100%;
  }

  .content-left-banner-2-wrap {
    padding-bottom: 0;
  }

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

  .content-right-banner-2-wrap {
    width: 100%;
  }

  .content-value-home-2-wrapper {
    background-image: linear-gradient(to bottom, var(--primary-dark-text), var(--primary-dark-text));
  }

  .contet-text-value-wrapper {
    width: 100%;
  }

  .content-banner-home-3-wrapper {
    background-position: 0 0, 0%;
    padding-top: 30px;
    padding-right: 30px;
  }

  .content-text-home-3-wrapper {
    max-width: 400px;
  }

  .content-text-home-3-wrapper.content-our-history, .content-text-home-3-wrapper.content-services-1, .content-text-home-3-wrapper.content-mobile-center {
    justify-content: flex-start;
    align-items: center;
  }

  .book-a-demo-home-3-wrapper {
    padding: 50px 30px 30px;
  }

  .form-block-book {
    min-height: 250px;
  }

  .text-field-book-a-demo {
    width: 100%;
  }

  .image-block-wrapper {
    height: 280px;
  }

  .slider-service {
    padding-bottom: 100px;
  }

  .value-content-3-type-wrapper {
    padding-top: 60px;
  }

  .text-review {
    font-size: 38px;
  }

  .team-3-type-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column-reverse;
    display: flex;
  }

  .team-content-wrap.width-50-tablet {
    width: 100%;
  }

  .video-review-wrapper {
    background-position: 0%;
  }

  .link-service-image {
    height: 280px;
  }

  .tabs-menu-value {
    width: 100%;
  }

  .value-wrap._3-tab-image {
    background-position: 0 0, 10%;
  }

  .value-wrap._4-tab-image {
    background-position: 0 0, 80%;
  }

  .background-color-3 {
    bottom: 12%;
  }

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

  .blog-name {
    font-size: 24px;
  }

  .text-content-banner.text-content-event-details {
    width: 100%;
  }

  .mission-3-type-wrapper {
    padding: 60px 20px 20px;
  }

  .value-wrap-2-type {
    width: 75%;
  }

  .our-solutions-text-wrapper {
    padding-right: 40px;
  }

  .image-about {
    height: 400px;
  }

  .image-text {
    width: 80px;
    height: 46px;
  }

  .button-section-wrapper {
    margin-top: 30px;
  }

  .benefits-about-wrapper {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .content-benefits-wrpper {
    justify-content: flex-start;
    align-items: center;
  }

  .benefits-text-wrapper {
    text-align: center;
    justify-content: center;
    align-items: flex-start;
  }

  .big-benefits-wrapper {
    padding-top: 60px;
  }

  .images-why-choosed-us-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 100%;
  }

  .why-choose-us-image.relative-image {
    position: relative;
    left: 55px;
  }

  .faq-image-content-wrapper {
    height: 320px;
  }

  .history {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .title-history-wrapper {
    width: 100%;
    position: static;
  }

  .content-history-wrapper {
    width: 100%;
  }

  .small-gallery-wrapper {
    grid-template-columns: 1fr 1fr;
    margin-top: 15px;
  }

  .gallery-img {
    height: 220px;
  }

  .loop-image {
    width: 18.8%;
    height: 140px;
  }

  .content-banner-image-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    background-image: linear-gradient(to bottom, var(--primary-dark-text), var(--primary-dark-text));
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }

  .banner-image-absolute {
    border-radius: var(--r-10-px);
    position: static;
  }

  .banner-image-absolute.team-image-banner {
    object-position: 50% 50%;
  }

  .banner-image-absolute.banner-event-details {
    width: 100%;
  }

  .gradient-image-baner {
    display: none;
  }

  .collection-item-service-3-type {
    width: 100%;
  }

  .link-imafe-service-3-type {
    height: 340px;
  }

  .content-service-3-type-wrapper {
    min-height: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .benefits-services-wrapper {
    flex-flow: column-reverse;
    display: flex;
  }

  .benefit-image {
    height: 400px;
    min-height: auto;
  }

  .value-text-wrapper {
    width: 100%;
  }

  .team-member-banner-wrapper {
    flex-flow: column-reverse;
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
  }

  .contact-doctor {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    margin-top: 10px;
    padding-top: 10px;
  }

  .contact-info-wrapper {
    height: 460px;
  }

  .links-contact-wrapper {
    bottom: 30px;
    left: 30px;
    right: 30px;
  }

  .pricing-wrapper {
    width: 100%;
  }

  .date-event-wrapper {
    margin-right: 20px;
    padding-right: 20px;
  }

  .link-event-image {
    height: 300px;
  }

  .content-event-details-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .info-events-wrapper {
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }

  .text-event-wrapper {
    width: 100%;
  }

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

  .title-job-wrapper {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .why-join-us-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .join-us-image, .value-wrap-2.join-us-value {
    width: 100%;
  }

  .big-title-job-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .living-options-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .image-living-option-wrapper {
    height: 440px;
  }

  .search-result-list {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .promotion-label-left {
    max-width: 300px;
  }
}

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

  blockquote {
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

  .base-container.big-spacing {
    padding-left: 15px;
    padding-right: 15px;
  }

  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    flex-direction: column;
    width: 50%;
  }

  .grid-title {
    align-items: center;
  }

  .grid-title.first-grid {
    text-align: center;
    flex: 1;
    width: 100%;
  }

  .grid-description {
    border-bottom-width: 1px;
    border-bottom-color: #fff3;
  }

  .grid-description.first-description {
    border-bottom: 1px #fff3;
    border-left-style: none;
    border-right-style: solid;
  }

  .grid-description.last-description {
    border-bottom-color: #a7a7a7;
  }

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

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

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

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

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

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

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

  .nav-link {
    width: 99%;
  }

  .nav-dropdown-list.megamenu {
    padding-right: 0;
  }

  .licensing-title-wrapper {
    grid-column-gap: 20px;
    flex-wrap: wrap;
  }

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

  .utility-page-content {
    width: 100%;
  }

  ._404-content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .coming-soon-input {
    min-width: auto;
  }

  .coming-soon-paragraph {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .coming-soon-heading {
    font-size: 32px;
  }

  .footer {
    text-align: left;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
    margin-top: 0;
  }

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

  .footer-copyright {
    text-align: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .banner-title-wrapper {
    padding-left: 5px;
    padding-right: 5px;
  }

  .job-position-sidebar-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .contacts-form-wrapper {
    padding: 10px 20px 20px;
  }

  .footer-wrapper {
    grid-row-gap: 30px;
    width: 100%;
  }

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

  .search-shop-con.desctop-buttons {
    margin-left: 0;
    margin-right: 15px;
  }

  .primary-button-white.play-white-button {
    inset: auto auto 10px 10px;
  }

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

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

  .landing-features-grid {
    grid-template-columns: 1fr;
  }

  .landing-feature-icon {
    margin-bottom: 10px;
  }

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

  .our-services-wrap, .home-9-team-item, .home-23-team-item {
    width: 100%;
  }

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

  .tablet-menu {
    padding-top: 24px;
  }

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

  .big-link-footer {
    font-size: 32px;
  }

  .top-footer-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .big-title-footer {
    font-size: 48px;
  }

  .button-footer-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
  }

  .links-wrapper {
    grid-column-gap: 28px;
    grid-row-gap: 20px;
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .subscribe-footer-wrapper {
    width: 100%;
  }

  .logo-header {
    width: 95px;
  }

  .textarea-popup {
    min-height: 90px;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .popup-wrapper {
    width: 85%;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .popup-close {
    width: 20px;
    height: 20px;
    top: 10px;
    right: 10px;
  }

  .text-field-popup {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .top-titles-banner-home-1.banner-home-2 {
    background-color: var(--primary-light);
  }

  .subtitle-text {
    margin-bottom: 15px;
  }

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

  .big-image-1 {
    object-position: 50% 0%;
    height: 400px;
  }

  .video-image {
    height: 200px;
  }

  .left-content-title.team-heading {
    width: 100%;
  }

  .right-content-title.text-right-content {
    margin-top: -10px;
  }

  .collection-list-services.home-2-type {
    grid-template-columns: 1fr;
  }

  .background-color-2 {
    height: 90%;
    top: 7%;
  }

  .background-color-2.primary-color {
    top: 0%;
  }

  .info-banner-home-wrapper {
    margin-top: 60px;
  }

  .senior-image-1 {
    width: 100px;
    display: none;
    bottom: 87px;
    left: 10px;
  }

  .senior-image-2 {
    width: 100px;
    display: none;
    bottom: 87px;
    right: 10px;
  }

  .background-color-1 {
    height: 100%;
  }

  .background-color-1.position-2 {
    height: 50%;
  }

  .background-color-1.career-details-background {
    top: 30%;
  }

  .content-values {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .content-value.white-background {
    background-color: var(--primary-light);
  }

  .value-image {
    border-radius: var(--r-20-px);
    object-fit: cover;
    width: 100%;
    height: 380px;
    display: block;
  }

  .review-wrapper {
    padding-bottom: 30px;
  }

  .title-image {
    height: 210px;
  }

  .title-block-wrap {
    width: 90%;
    max-width: none;
    padding-left: 30px;
    padding-right: 30px;
    bottom: 30px;
  }

  .slider-review {
    padding-left: 0;
    padding-right: 0;
  }

  .service-image {
    height: 380px;
  }

  .bio-image {
    height: 380px;
  }

  .mission-wrapper {
    padding-left: 5px;
    padding-right: 5px;
  }

  .mission-content-wrapper {
    flex-flow: column;
  }

  .text-mission {
    text-align: center;
    font-size: 25px;
  }

  .image-mission {
    display: none;
  }

  .images-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 2px;
  }

  .banner-2-image {
    height: 380px;
  }

  .background-home-2-banner {
    object-position: 0% 50%;
  }

  .content-value-home-2-wrapper {
    background-image: linear-gradient(to bottom, var(--primary-dark-text), var(--primary-dark-text));
  }

  .content-value-home-2-wrapper._2-tab {
    background-image: linear-gradient(to bottom, var(--primary-dark-text), var(--primary-dark-text)), url('../images/2-type-img-2.webp');
    background-position: 0 0, 0%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .content-value-home-2-wrapper._3-type {
    min-height: 370px;
  }

  .contet-text-value-wrapper {
    width: 100%;
  }

  .content-text-home-3-wrapper {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .content-text-home-3-wrapper.content-services-1 {
    max-width: 100%;
  }

  .checks-wrapper {
    text-align: center;
    margin-top: 50px;
  }

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

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

  .image-block-wrapper {
    height: 240px;
  }

  .text-review {
    font-size: 36px;
  }

  .video-review-wrapper {
    padding-right: 30px;
  }

  .content-review-wrap {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .benefits-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .collection-list-services-2-type.service-page-2-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .collection-item-service-2-type {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column-reverse;
  }

  .collection-item-service-2-type.service-type-2-page {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .content-service-wrap, .link-service-image {
    width: 100%;
  }

  .value-wrap {
    background-image: linear-gradient(to bottom, var(--primary-dark-text), var(--primary-dark-text));
    height: 460px;
  }

  .value-wrap._3-tab-image, .value-wrap._2-tab-image, .value-wrap._4-tab-image, .value-wrap._5-tab-image {
    background-image: linear-gradient(to bottom, var(--primary-dark-text), var(--primary-dark-text));
  }

  .text-value-wrap {
    margin-right: 20px;
  }

  .background-color-3 {
    height: 25%;
    bottom: 5%;
  }

  .collection-item-blog {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column-reverse;
  }

  .collection-item-blog:nth-child(2n) {
    flex-flow: column-reverse;
  }

  .content-blog-wrapper, .link-blog {
    width: 100%;
  }

  .content-banner-mission {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .image-mission-banner {
    height: 300px;
  }

  .mission-3-type-wrapper {
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .value-wrap-2-type {
    width: 100%;
  }

  .our-solutions-text-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
  }

  .text-content-wrapper {
    width: 100%;
  }

  .image-about {
    height: 300px;
  }

  .about-us-titles-wrapper {
    max-width: 100%;
  }

  .image-text {
    height: 40px;
  }

  .about-us-paragraph-wrap {
    max-width: 100%;
  }

  .image-21 {
    height: 300px;
  }

  .big-benefits-wrapper {
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .images-why-choosed-us-wrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .why-choose-us-image.relative-image {
    width: 100%;
    left: 0;
  }

  .value-image-2, .faq-image-content-wrapper {
    height: 260px;
  }

  .gallery-img {
    height: 180px;
  }

  .loop-image {
    width: 18.6%;
  }

  .loop-image-wrap {
    width: 400%;
  }

  .link-imafe-service-3-type {
    height: 280px;
  }

  .content-service-3-type-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .list {
    width: 100%;
  }

  .benefit-image {
    height: 340px;
  }

  .galler-photo._1-photo {
    height: 160px;
  }

  .value-text-wrapper {
    padding: 10px 20px;
  }

  .contact-doctor-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-info-wrapper {
    height: 440px;
  }

  .links-contact-wrapper {
    flex-flow: column;
    padding-left: 20px;
    padding-right: 20px;
    bottom: 15px;
    left: 15px;
    right: 15px;
  }

  .links-contact {
    width: 100%;
  }

  .date-event-wrapper {
    border-bottom: 1px solid #182d3433;
    border-right-style: none;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .content-event-wrapper {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .link-event-image {
    height: 260px;
  }

  .info-events-wrapper {
    flex-flow: wrap;
  }

  .join-us-image {
    height: 380px;
  }

  .value-wrap-2 {
    width: 100%;
  }

  .image-living-option-wrapper {
    height: 320px;
  }

  .promotion-label-left {
    bottom: 90px;
    left: auto;
    right: 12px;
  }
}

#w-node-_372136d8-e829-64ef-67e2-838d3299aaf5-560978dc, #w-node-_3046d385-00ef-1a39-a240-eeadbd211d20-560978dc, #w-node-f8dcdfff-88b2-174f-772a-e4e26476447c-560978dc, #w-node-_2e780f7e-ddc2-b018-b89f-b3fe073d5c8c-560978dc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_12563d29-c7f7-69e6-695d-63c555151a97-5609791c {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_5ec15608-86d2-a9a9-3aa3-bede457fbc57-56097972, #w-node-_49cca918-c86c-541f-7ce5-f9a9d329efa9-56097972, #w-node-d6e596d5-8de4-ff78-b72f-c7add2c74cdf-56097972, #w-node-f05a39b9-2ff2-3c6a-4533-a4bcee3a4f19-56097972, #w-node-_1358b0e5-9b01-605f-5fbd-9900f4c281a1-56097972, #w-node-_6e6ff66a-c888-9116-acdf-bab4e32027f5-56097972, #w-node-_27bb6a50-f7ca-a08e-d46d-f9b75ea4854f-56097972, #w-node-b0a0eaee-fe89-e27c-0b7f-cae51fd0121c-56097972, #w-node-_985aac38-197d-7aca-9290-38b58287f271-56097972, #w-node-_416d9de9-f0ad-067d-8187-ad7268dd30e8-56097972, #w-node-_295e80d5-b783-9961-40cc-5587ca89a674-56097972, #w-node-_86bc1c62-3408-8a43-a46a-8f6f76c747f2-56097972, #w-node-_54c90009-cc88-92e0-7b9b-a6066cc653e2-56097972, #w-node-fd5e0928-a219-e24c-edc4-bd6c772aaac5-56097972, #w-node-_3541a845-3f12-c5bd-7ce5-b9dbbeafc71b-56097972, #w-node-_7107ccc9-f2e9-1d8a-f52c-70005064167b-56097972, #w-node-_80b6c93c-941a-3bb0-2f20-9bc3b77708aa-56097972, #w-node-_0b0bdaa8-9d54-81d4-0098-38c69d89cc76-56097972 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_11edb59f-9330-c3cf-5f5c-60ac1f5bb61e-56097974, #w-node-_67f5907c-9e40-8e4d-262e-c22101a257c1-56097977 {
  place-self: center;
}

#w-node-_6a078d37-a03b-58b0-5746-bd390040e948-56097979, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94a-56097979, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94c-56097979, #w-node-_6a078d37-a03b-58b0-5746-bd390040e94e-56097979, #w-node-_6a078d37-a03b-58b0-5746-bd390040e950-56097979, #w-node-_6a078d37-a03b-58b0-5746-bd390040e953-56097979, #w-node-_6a078d37-a03b-58b0-5746-bd390040e955-56097979, #w-node-_6a078d37-a03b-58b0-5746-bd390040e957-56097979, #w-node-_6a078d37-a03b-58b0-5746-bd390040e959-56097979, #w-node-_6a078d37-a03b-58b0-5746-bd390040e95b-56097979 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3d874a6e-cd9e-25bf-85de-87312270be09-5609797b {
  place-self: center;
}

#w-node-_45b8f7e8-200d-7aee-f1e9-29bdf20c17ca-5609797c {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_94c5af8b-abaf-4bca-f746-b402ae9fa21f-5609797c {
  place-self: center;
}

#w-node-_6900b64d-f23c-f7c5-a7e9-8c7de218cb4f-5609797d {
  place-self: start end;
}

#w-node-c8119202-fa07-ba5c-3f1a-bdd8642f0c18-5609797d {
  grid-area: span 2 / span 1 / span 2 / span 1;
  place-self: start end;
}

#w-node-_141fb5f0-6220-74a1-8673-b9a86d93de6d-5609797d {
  place-self: start end;
}

#w-node-_4fcff02a-1974-4c5c-20eb-050d4e8a9530-5609797e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_0164b534-e60e-5e28-1188-c5aae9d2628a-5609797e, #w-node-fcd1a9de-1722-ff5d-7596-0af480c4f0bc-5609797e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c871d443-be98-924b-210f-89868115f6c8-5609797e, #w-node-_54cc8365-d882-3b94-b8e0-4ef2b1f4c00a-5609797f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_68682dc8-913c-5710-f2c0-43b0d3bea5a9-5609797f, #w-node-e2e7d637-9267-2a81-2017-c50c0b3b7d74-5609797f, #w-node-db6a68cf-21f6-ce5e-acf1-f5b89b985242-5609797f, #w-node-_46b3fac4-25d8-94a3-be14-7ae609beef1a-5609797f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9402c365-adb0-00a0-872c-2493778c7d5d-5609797f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3a30d162-0bd0-31bc-7cad-3417a9a10ce5-5609797f {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_235c2eb1-706b-e5f0-7ef3-1ecd0c598abd-5609797f, #w-node-_681caea6-cd35-8ffd-4d3f-764366dd5e5f-5609797f, #w-node-ab501de2-4dd3-b561-bdc7-cccaae5b13c7-5609797f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6f08c7e3-c126-f575-f879-78ca353ee3cf-5609797f, #w-node-_5650dfa8-ef50-1a06-c728-69b03dfc055b-5609797f, #w-node-a29dd366-820d-0769-1db8-362e0f50899d-5609797f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8f14d2dd-ea7a-d7db-7924-863d73644a15-56097981, #w-node-_122f35f1-5d56-cf6a-dd5b-c67d9aadee77-56097981 {
  place-self: end;
}

#w-node-_3b1e2dfb-0ecf-0cc5-e563-7d3c27481bb8-56097981 {
  place-self: center;
}

@media screen and (min-width: 1440px) {
  #w-node-_2195e9f8-be61-7531-cbc3-14e8c1a47eb3-5609791c {
    align-self: end;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_3adb77b1-07aa-3a4a-5e50-e653e382f019-5609791c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_12563d29-c7f7-69e6-695d-63c555151a97-5609791c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fefc1e27-a603-e7d4-4951-d1b7a95816a9-56097974 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_45b8f7e8-200d-7aee-f1e9-29bdf20c17ca-5609797c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_6900b64d-f23c-f7c5-a7e9-8c7de218cb4f-5609797d, #w-node-_141fb5f0-6220-74a1-8673-b9a86d93de6d-5609797d {
    justify-self: start;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_3adb77b1-07aa-3a4a-5e50-e653e382f019-5609791c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_12563d29-c7f7-69e6-695d-63c555151a97-5609791c {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_11edb59f-9330-c3cf-5f5c-60ac1f5bb61e-56097974, #w-node-_67f5907c-9e40-8e4d-262e-c22101a257c1-56097977, #w-node-_3d874a6e-cd9e-25bf-85de-87312270be09-5609797b, #w-node-_94c5af8b-abaf-4bca-f746-b402ae9fa21f-5609797c {
    align-self: end;
  }

  #w-node-_54cc8365-d882-3b94-b8e0-4ef2b1f4c00a-5609797f, #w-node-_68682dc8-913c-5710-f2c0-43b0d3bea5a9-5609797f, #w-node-e2e7d637-9267-2a81-2017-c50c0b3b7d74-5609797f, #w-node-db6a68cf-21f6-ce5e-acf1-f5b89b985242-5609797f {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_46b3fac4-25d8-94a3-be14-7ae609beef1a-5609797f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9402c365-adb0-00a0-872c-2493778c7d5d-5609797f {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_3a30d162-0bd0-31bc-7cad-3417a9a10ce5-5609797f, #w-node-_235c2eb1-706b-e5f0-7ef3-1ecd0c598abd-5609797f {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_681caea6-cd35-8ffd-4d3f-764366dd5e5f-5609797f, #w-node-ab501de2-4dd3-b561-bdc7-cccaae5b13c7-5609797f, #w-node-_6f08c7e3-c126-f575-f879-78ca353ee3cf-5609797f, #w-node-_5650dfa8-ef50-1a06-c728-69b03dfc055b-5609797f {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a29dd366-820d-0769-1db8-362e0f50899d-5609797f {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_3b1e2dfb-0ecf-0cc5-e563-7d3c27481bb8-56097981 {
    align-self: end;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_5ec15608-86d2-a9a9-3aa3-bede457fbc57-56097972, #w-node-_49cca918-c86c-541f-7ce5-f9a9d329efa9-56097972, #w-node-d6e596d5-8de4-ff78-b72f-c7add2c74cdf-56097972, #w-node-f05a39b9-2ff2-3c6a-4533-a4bcee3a4f19-56097972, #w-node-_1358b0e5-9b01-605f-5fbd-9900f4c281a1-56097972, #w-node-_6e6ff66a-c888-9116-acdf-bab4e32027f5-56097972, #w-node-_27bb6a50-f7ca-a08e-d46d-f9b75ea4854f-56097972, #w-node-b0a0eaee-fe89-e27c-0b7f-cae51fd0121c-56097972, #w-node-_985aac38-197d-7aca-9290-38b58287f271-56097972, #w-node-_416d9de9-f0ad-067d-8187-ad7268dd30e8-56097972, #w-node-_295e80d5-b783-9961-40cc-5587ca89a674-56097972, #w-node-_86bc1c62-3408-8a43-a46a-8f6f76c747f2-56097972, #w-node-_54c90009-cc88-92e0-7b9b-a6066cc653e2-56097972, #w-node-fd5e0928-a219-e24c-edc4-bd6c772aaac5-56097972, #w-node-_3541a845-3f12-c5bd-7ce5-b9dbbeafc71b-56097972, #w-node-_7107ccc9-f2e9-1d8a-f52c-70005064167b-56097972, #w-node-_80b6c93c-941a-3bb0-2f20-9bc3b77708aa-56097972, #w-node-_0b0bdaa8-9d54-81d4-0098-38c69d89cc76-56097972, #w-node-_8c53cf0d-04f8-566d-15d2-4d0d57ec736f-56097972, #w-node-_5fdb2c5c-ab31-51f1-930c-d5e8978cd778-56097972, #w-node-d8cb482d-899a-f606-7220-73f71c800231-56097972, #w-node-_869fc438-b246-da94-9a40-9fe5a3224dfd-56097972, #w-node-_135b859f-531a-6392-8a73-72f550c30d26-56097972, #w-node-_1f61eb3e-a696-d5f1-c7ce-e2af41fd915f-56097972, #w-node-_312de44a-96ae-c1d0-d90c-db301e9d04f3-56097972, #w-node-e551b73c-6d1c-7239-43fb-745685f410d0-56097972, #w-node-_4d143628-8b03-83fa-b584-dd2e2963ceac-56097972, #w-node-d72949e8-853c-8d4d-42e3-40082fc434be-56097972, #w-node-eaa243b2-2f46-6b64-7019-e10bcfac6657-56097972, #w-node-c42c57bb-d9eb-cfb6-ec09-5d9746bda3ac-56097972, #w-node-_58fe7939-96bc-7a75-f2c4-ab03fc7a45c8-56097972, #w-node-d7ae700d-5503-7c5f-351b-54c3894d19e1-56097972, #w-node-d10263df-43ba-d9bd-5778-6d8b60804ee8-56097972, #w-node-_7f604cf5-c8c8-eb70-85c2-f93d0e297fd8-56097972, #w-node-d3e31327-e5c1-0b4b-2855-9d8ae0978cf5-56097972, #w-node-_5ec15608-86d2-a9a9-3aa3-bede457fbc29-56097972 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_141fb5f0-6220-74a1-8673-b9a86d93de6d-5609797d {
    justify-self: end;
  }

  #w-node-db6a68cf-21f6-ce5e-acf1-f5b89b985242-5609797f {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_46b3fac4-25d8-94a3-be14-7ae609beef1a-5609797f, #w-node-_9402c365-adb0-00a0-872c-2493778c7d5d-5609797f, #w-node-_235c2eb1-706b-e5f0-7ef3-1ecd0c598abd-5609797f {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_681caea6-cd35-8ffd-4d3f-764366dd5e5f-5609797f, #w-node-ab501de2-4dd3-b561-bdc7-cccaae5b13c7-5609797f {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6f08c7e3-c126-f575-f879-78ca353ee3cf-5609797f, #w-node-_5650dfa8-ef50-1a06-c728-69b03dfc055b-5609797f, #w-node-a29dd366-820d-0769-1db8-362e0f50899d-5609797f {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }
}


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

.top-nav {
  display: flex;
  align-items: center;
}

.lang-toggle {
  display: inline-flex;
  gap: 6px;
  white-space: nowrap;
}
.lang-toggle a { text-decoration: none; opacity: .8; }
.lang-toggle a.active { opacity: 1; font-weight: 600; }
