:root {
  --haze-1: #edeee8;
  --dark: #151515;
  --primary: #71a882;
  --border: #d9dbd0;
  --white: white;
  --secondary: #ef7c54;
  --haze-2: #e1e3d9;
  --transparent-2: #0000004d;
  --text-grey: #0000008c;
  --transparent-3: #00000029;
  --secondary-2: #f8cb35;
  --error: #ec5858;
}

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

body {
  background-color: var(--haze-1);
  color: var(--dark);
  font-family: IBM Plex Mono, sans-serif;
  font-size: 15px;
  line-height: 24px;
}

h1 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Playfair Display, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
}

h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Playfair Display, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
}

h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: Playfair Display, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: Playfair Display, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

h5 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 8px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
}

h6 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 8px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

p {
  margin-bottom: 24px;
}

a {
  color: var(--primary);
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 40px;
}

blockquote {
  border: 1px solid var(--border);
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 3vw;
  font-size: 20px;
  line-height: 32px;
}

figure {
  border: 1px solid var(--border);
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 15px;
}

figcaption {
  text-align: center;
  margin-top: 0;
  font-size: 12px;
  line-height: 16px;
}

.page-wrapper {
  z-index: 10;
  align-items: flex-start;
  display: flex;
  position: relative;
  overflow: hidden;
}

.left-block {
  flex-direction: column;
  flex: none;
  justify-content: flex-start;
  align-items: flex-end;
  width: 10%;
  min-width: 96px;
  height: 100vh;
  padding: 3vw;
  display: flex;
  position: sticky;
  top: 0;
}

.content {
  flex: 1;
  padding-left: 4vw;
  padding-right: 4vw;
}

.sidebar {
  width: 30%;
  min-width: 320px;
  padding: 3vw;
  position: sticky;
  top: 0;
}

.section {
  padding-bottom: 100px;
}

.section.top-section {
  padding-top: 48px;
}

.section.page-header-section {
  padding-top: 32px;
  padding-bottom: 48px;
}

.hero-intro {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 0;
  display: flex;
}

.text-vertical {
  z-index: 1;
  transform-origin: 100%;
  color: var(--border);
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  width: 85vh;
  height: 5vw;
  margin-top: 88px;
  margin-right: 2vw;
  padding-bottom: 6px;
  font-family: Playfair Display, sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 64px;
  display: flex;
  position: relative;
  transform: rotate(-90deg);
}

.media-wrapper {
  position: relative;
  overflow: hidden;
}

.overlay {
  z-index: 100;
  background-color: var(--haze-1);
  width: 100%;
  height: 100%;
  margin: auto;
  padding: 50%;
  display: none;
  position: absolute;
  inset: 0;
}

.bg-image {
  object-fit: cover;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  width: 100%;
  margin: auto;
  position: relative;
  inset: 0;
}

.bg-image.instagram-image {
  opacity: .7;
  position: absolute;
}

.contact-info {
  padding: 2.5vw;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}

.contact-block {
  flex-wrap: wrap;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.contact-block-link {
  color: var(--dark);
  flex-direction: column;
  align-items: flex-start;
  margin-top: 6px;
  margin-bottom: 6px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.hover-line {
  background-color: #151515;
  width: 45%;
  height: 1px;
  position: relative;
  inset: auto 0% 0%;
}

.floating-button {
  float: right;
  background-color: var(--white);
  color: var(--dark);
  letter-spacing: .7px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  height: 68px;
  padding: 12px 32px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .4s, box-shadow .4s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px #0000001f;
}

.floating-button:hover {
  transform: translate(0, -3px)scale(1.02);
  box-shadow: 0 12px 32px #00000047;
}

.floating-button-icon {
  z-index: 2;
  width: 28px;
  margin-left: 14px;
  margin-right: -8px;
  position: relative;
}

.button {
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  letter-spacing: .8px;
  text-transform: uppercase;
  border-style: none;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  height: 56px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: box-shadow .4s, color .4s, background-color .4s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.button.password-button {
  width: 100%;
  margin-top: 16px;
}

.button.ghost {
  box-shadow: inset 0 0 0 1px var(--border);
  color: var(--dark);
  background-color: #0000;
}

.button.ghost:hover {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: inset 0 0 0 1px #0000;
}

.input {
  background-color: var(--haze-2);
  border: 1px #000;
  border-radius: 0;
  height: 56px;
  margin-bottom: 0;
  padding: 11px 24px 12px;
  font-size: 15px;
  line-height: 24px;
  transition: border-color .2s cubic-bezier(.25, .46, .45, .94), background-color .2s cubic-bezier(.25, .46, .45, .94);
}

.input:hover {
  border-color: #e4e8ed;
}

.input:focus {
  background-color: #fff;
  border-color: #e4e8ed;
}

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

.input.password-input {
  text-align: center;
  width: 100%;
  margin-top: 8px;
}

.footer {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  padding-bottom: 0;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.footer-link {
  color: var(--dark);
  flex-direction: column;
  align-items: flex-start;
  margin-top: 6px;
  margin-bottom: 6px;
  margin-right: 32px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.footer-bottom {
  color: var(--text-grey);
  flex-wrap: wrap;
  align-items: center;
  padding-top: 2vw;
  padding-bottom: 2vw;
  font-size: 11px;
  line-height: 16px;
  display: flex;
}

.footer-bottom-link {
  color: var(--dark);
  padding-top: 1px;
  padding-bottom: 1px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.footer-bottom-divider {
  background-color: var(--transparent-3);
  border-radius: 50%;
  width: 3px;
  height: 3px;
  margin-left: 10px;
  margin-right: 10px;
}

.section-top {
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  display: flex;
}

.section-top.no-border {
  border: 1px #000;
  padding-bottom: 8px;
}

.section-top-heading {
  margin-bottom: 8px;
}

.section-top-link {
  color: var(--dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 6px;
  margin-bottom: 4px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-links {
  flex-wrap: wrap;
  align-items: center;
  margin-top: 16px;
  display: flex;
}

.social-link {
  color: var(--dark);
  flex-direction: column;
  align-items: flex-start;
  margin-top: 6px;
  margin-bottom: 6px;
  margin-right: 20px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.nav-bar {
  z-index: 1000;
  background-color: #0000;
  align-items: center;
  width: auto;
  margin: 3vw;
  display: flex;
  position: fixed;
  inset: 0% auto auto 0%;
}

.nav-menu {
  z-index: 2;
  background-color: #0000;
  height: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  overflow: hidden;
}

.menu-button {
  z-index: 3;
  float: left;
  cursor: pointer;
  border: 2px solid #0000;
  width: 80px;
  height: 80px;
  padding: 21px 20px;
  position: relative;
}

.nav-link {
  color: var(--dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 2px 14px;
  padding: 2px 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.nav-links {
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  height: 48px;
  padding-right: 28px;
  display: flex;
}

.menu-icon {
  float: right;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 36px;
  height: 36px;
  padding: 4px;
  display: block;
}

.menu-icon-line {
  background-color: var(--dark);
  height: 2px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.timeline {
  background-color: var(--border);
  flex-direction: column;
  align-items: center;
  width: 2px;
  display: flex;
  position: relative;
}

.career-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "Date Timeline Job"
  / auto minmax(32px, auto) 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.career-date {
  color: var(--text-grey);
  text-align: right;
  width: 120px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 13px;
  line-height: 20px;
}

.job-heading {
  margin-top: 3px;
  margin-bottom: 12px;
}

.job-info {
  padding-bottom: 56px;
}

.job-position {
  color: var(--dark);
  padding-top: 2px;
  font-weight: 500;
  display: inline-block;
}

.job-position.job-badge {
  cursor: default;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.timeline-dot {
  z-index: 2;
  border: 2px solid var(--primary);
  background-color: var(--haze-1);
  box-shadow: 0 0 0 8px var(--haze-1);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  margin-top: 8px;
  margin-left: 0;
  margin-right: 0;
  position: absolute;
  inset: 0% auto auto;
}

.job-description {
  color: var(--text-grey);
  margin-bottom: 12px;
}

.career {
  max-width: 770px;
  margin-bottom: -56px;
  padding-top: 20px;
}

.instagram-photos {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.instagram-preview {
  color: var(--white);
  background-color: #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 50%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.instagram-hover {
  z-index: 3;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px;
  display: flex;
  position: absolute;
}

.nav-background {
  background-color: var(--white);
  position: absolute;
  inset: 0%;
  box-shadow: 0 8px 24px #0000001f;
}

.services {
  background-color: var(--haze-2);
  align-items: flex-start;
  padding: 3vw 4%;
  display: flex;
}

.service {
  text-align: center;
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.icon-box {
  justify-content: center;
  align-items: center;
  padding: 12px;
  display: flex;
  position: relative;
}

.service-icon {
  z-index: 2;
  width: 72px;
  position: relative;
}

.icon-circle-1 {
  z-index: 3;
  background-color: var(--secondary);
  opacity: .5;
  border-radius: 50%;
  width: 45%;
  height: 45%;
  margin-bottom: 10%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.icon-circle-2 {
  z-index: 3;
  background-color: var(--primary);
  opacity: .5;
  border-radius: 50%;
  width: 35%;
  height: 35%;
  margin-top: 5%;
  margin-right: 5%;
  position: absolute;
  inset: 0% 0% auto auto;
}

.service-heading {
  margin-top: 4px;
}

.back-icon {
  z-index: 2;
  background-image: url('../images/left.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
}

.back-link {
  color: var(--dark);
  margin-top: 3vw;
  margin-left: -6px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 20px;
  font-size: 13px;
  line-height: 20px;
}

.back-link-text {
  float: left;
  margin-top: 21px;
  margin-left: 12px;
  font-weight: 500;
}

.side-block {
  padding-top: 8px;
  padding-bottom: 24px;
}

.category-link {
  color: var(--dark);
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 15px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.category-link.w--current {
  font-weight: 600;
}

.category-link-line {
  background-color: var(--border);
  width: 24px;
  height: 2px;
  margin-right: 12px;
}

.side-block-heading {
  margin-bottom: 12px;
}

.icon-circle-3 {
  z-index: 3;
  background-color: var(--secondary-2);
  opacity: .5;
  border-radius: 50%;
  width: 28%;
  height: 28%;
  margin-bottom: 5%;
  margin-right: 12%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.icon-decor {
  z-index: 1;
  position: absolute;
  inset: 6%;
}

.testimonials-nav {
  font-size: 8px;
  line-height: 16px;
  display: none;
}

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

.testimonials-button {
  border: 1px solid var(--border);
  background-color: var(--haze-1);
  color: var(--dark);
  width: 40px;
  height: 40px;
  margin-top: 4px;
  font-size: 18px;
  transition: background-color .2s;
  inset: 0% 0% auto auto;
}

.testimonials-button:hover {
  background-color: var(--border);
}

.testimonials-button.left {
  z-index: 3;
  margin-right: 39px;
}

.testimonial {
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 820px;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.review-avatar {
  object-fit: cover;
  border-radius: 50%;
  flex: none;
  width: 96px;
  height: 96px;
}

.review-content {
  flex: 1;
}

.review-text {
  font-size: 20px;
  line-height: 32px;
}

.review-info {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
}

.review-author {
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
}

.instagram-text {
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
}

.instagram-text-label {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 370px;
  max-width: 100%;
  display: flex;
}

.utility-icon {
  z-index: 2;
  width: 88px;
  position: relative;
}

.button-hover {
  background-color: var(--dark);
  position: absolute;
  inset: 0%;
  transform: translate(0, 92%);
}

.button-text {
  z-index: 2;
  position: relative;
}

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

.contact-block-icon {
  width: 24px;
  margin-right: 10px;
}

.testimonials-list {
  grid-row-gap: 48px;
  grid-template-columns: 1fr;
  padding-top: 16px;
}

.licenses {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  max-width: 1000px;
  display: grid;
}

.licence-link-divider {
  background-color: var(--transparent-3);
  border-radius: 50%;
  width: 3px;
  height: 3px;
  margin-bottom: 16px;
  margin-left: 12px;
  margin-right: 12px;
  display: inline-block;
}

.licence-icon {
  width: 28px;
}

.licence-info {
  flex: 1;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 40px;
}

.licence-icons {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--haze-2);
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  width: 70%;
  padding: 16px;
  display: grid;
}

.licence-icons.cc-3-col {
  grid-template-columns: 1fr 1fr 1fr;
}

.licence {
  border: 1px solid var(--border);
  align-items: center;
  margin-bottom: 24px;
  padding: 32px;
  display: flex;
}

.licence-link {
  color: var(--dark);
  flex-direction: column;
  align-items: flex-start;
  margin-top: 6px;
  margin-bottom: 6px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 15px;
  line-height: 20px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

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

.work-card {
  color: var(--dark);
  display: block;
}

.work-card-preview {
  height: 18vw;
  min-height: 168px;
  position: relative;
  overflow: hidden;
}

.work-card-info {
  align-items: center;
  margin-top: 8px;
  padding-top: .6vw;
  padding-bottom: .6vw;
  display: flex;
}

.work-card-line {
  background-color: var(--border);
  width: 24px;
  height: 2px;
  margin-right: 12px;
}

.work-card-heading {
  margin-top: 0;
  margin-bottom: 0;
}

._2-info-blocks {
  grid-column-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
}

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

.logotypes {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr 1fr 1fr;
}

.logo-box {
  border: 1px solid var(--border);
  justify-content: center;
  align-items: center;
  height: 9vw;
  margin-bottom: -1px;
  margin-right: -1px;
  padding: 16px;
  display: flex;
}

.logo {
  height: 5vw;
  max-height: 32px;
}

.clients-header {
  border: 1px solid var(--border);
  justify-content: flex-start;
  align-items: center;
  margin-bottom: -1px;
  padding: 1.6vw 2vw;
  display: flex;
}

.clients {
  padding-bottom: 8px;
}

.timeline-color {
  background-color: var(--primary);
  height: 40%;
  position: absolute;
  inset: 0% 0% auto;
}

.bg-circles {
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.bg-circle-big {
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 50vw;
  height: 50vw;
  position: absolute;
  inset: -17.4vw -4vw auto auto;
}

.bg-circle-small {
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 25vw;
  height: 25vw;
  position: absolute;
  inset: auto auto 7.7vw -7.1vw;
}

.floating-button-wrapper {
  z-index: 5;
  justify-content: flex-end;
  align-items: center;
  margin-top: -116px;
  margin-right: -1.5vw;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  position: relative;
}

.menu-button-circle {
  border: 2px solid var(--border);
  border-radius: 50%;
  position: absolute;
  inset: 4px;
}

.back-icon-circle {
  border: 2px solid var(--border);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin: auto;
  position: absolute;
  inset: 0%;
}

.back-icon-wrapper {
  float: left;
  width: 60px;
  height: 60px;
  padding-top: 19px;
  padding-bottom: 19px;
  position: relative;
}

.progress-block-4 {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 50%;
  height: 50%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.loader {
  transform-origin: 0 100%;
  background-color: #000;
  border-radius: 0%;
  width: 100%;
  height: 100%;
  position: relative;
}

.loader.bottom-right {
  float: none;
  opacity: 1;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.loader.top-left {
  float: none;
  opacity: 1;
  transform-origin: 100% 100%;
  width: 100%;
  height: 100%;
  transform: translate(0)rotate(-90deg);
}

.loader.top-right {
  opacity: 1;
  transform-origin: 0 100%;
  background-color: #000;
  width: 100%;
  height: 100%;
  position: relative;
  transform: rotate(-90deg);
}

.loader.bottom-left {
  float: none;
  opacity: 1;
  transform-origin: 100% 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-block-3 {
  z-index: 4;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 50%;
  height: 50%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.progress-block-2 {
  z-index: 6;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  height: 50%;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: hidden;
}

.progress-mask {
  z-index: 2;
  background-color: #ccc;
  width: 50%;
  height: 50%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.progress-mask._3 {
  z-index: 5;
  inset: auto 0 0 auto;
}

.progress-mask._4 {
  z-index: 3;
  top: auto;
  bottom: 0;
  left: 0;
}

.progress-mask._2 {
  z-index: 7;
  top: 0;
  left: auto;
  right: 0;
}

.progress-mask._1 {
  z-index: 9;
  top: 0;
  left: 0;
}

.progress-block-1 {
  z-index: 8;
  opacity: 1;
  background-color: #0000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  height: 50%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}

.top-circle-inner {
  z-index: 10;
  background-color: var(--haze-1);
  background-image: url('../images/up.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 26px;
  border-radius: 50%;
  position: absolute;
  inset: 2px;
}

.top-circle-outer {
  background-color: #ccc;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 8px;
  overflow: hidden;
}

.top-button {
  z-index: 1000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
  position: fixed;
  bottom: 1.5vw;
  right: 1.5vw;
  overflow: hidden;
}

.side-top-info {
  padding-top: 32px;
  padding-bottom: 32px;
}

.back-to-top {
  z-index: 1000;
  height: 0;
  position: relative;
}

.top {
  height: 0;
}

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

.contacts-heading {
  margin-top: 8px;
  margin-bottom: 16px;
}

.skill-progress {
  background-color: var(--primary);
  width: 50%;
  height: 100%;
}

.frame {
  border: 1px solid var(--border);
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding: 4vw;
  display: flex;
}

.slider {
  height: 33vw;
  overflow: hidden;
}

.slide-nav {
  background-image: linear-gradient(#0000, #0006);
  height: 60px;
  padding-top: 28px;
  font-size: 7px;
}

.slider-frame {
  border: 1px solid var(--border);
  background-color: var(--haze-1);
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 15px;
}

.slider-button {
  background-color: var(--white);
  color: var(--dark);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  margin: auto 15px;
  font-size: 20px;
  top: 0;
  bottom: 0;
}

.sg-buttons {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
}

.sg-button-box {
  border: 1px solid var(--border);
  background-color: var(--haze-1);
  flex-direction: column;
  justify-content: center;
  margin-right: -1px;
  padding: 4vw;
  display: flex;
}

.sg-colors {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.sg-color-card {
  border: 1px solid var(--border);
  background-color: var(--haze-1);
  margin-bottom: -1px;
  margin-right: -1px;
  padding: 1.7vw;
}

.sg-color {
  background-color: var(--primary);
  height: 10vw;
}

.sg-color._2 {
  background-color: var(--secondary);
}

.sg-color._3 {
  background-color: var(--secondary-2);
}

.sg-color._4 {
  background-color: var(--error);
}

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

.sg-color._6 {
  background-color: var(--text-grey);
}

.sg-color._7 {
  border: 1px solid var(--border);
  background-color: var(--haze-1);
}

.sg-color._8 {
  background-color: var(--haze-2);
}

.sg-color._9 {
  background-color: var(--border);
}

.sg-color-name {
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 1.2vw;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
}

.padding-bottom-3 {
  padding-bottom: .75rem;
}

.padding-bottom-8 {
  padding-bottom: 2rem;
}

.grid-books {
  grid-column-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

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

.book-cover {
  height: 300px;
  margin-bottom: 10px;
}

.div-block {
  color: var(--white);
  text-align: center;
  position: relative;
  top: -57px;
}

.back-link-2 {
  color: #151515;
  margin-top: 3vw;
  margin-left: -6px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 20px;
  font-size: 13px;
  line-height: 20px;
}

.instagram-preview-2 {
  color: #fff;
  background-color: #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 50%;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.text-vertical-2 {
  z-index: 1;
  transform-origin: 100%;
  color: #d9dbd0;
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  width: 80vh;
  height: 5vw;
  margin-top: 88px;
  margin-right: 2vw;
  padding-bottom: 6px;
  font-family: Playfair Display, sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 64px;
  display: flex;
  position: relative;
  transform: rotate(-90deg);
}

.back-icon-circle-2 {
  border: 2px solid #d9dbd0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin: auto;
  position: absolute;
  inset: 0%;
}

.footer-bottom-link-2 {
  color: #151515;
  padding-top: 1px;
  padding-bottom: 1px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.section-top-link-2 {
  color: #151515;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 6px;
  margin-bottom: 4px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.footer-link-2 {
  color: #151515;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 6px;
  margin-bottom: 6px;
  margin-right: 32px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.button-2 {
  color: #fff;
  text-align: center;
  letter-spacing: .8px;
  text-transform: uppercase;
  background-color: #71a882;
  border-style: none;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  height: 56px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: box-shadow .4s, color .4s, background-color .4s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-2:hover {
  background-color: #ef7c54;
}

.overlay-2 {
  z-index: 100;
  background-color: #edeee8;
  width: 100%;
  height: 100%;
  margin: auto;
  padding: 50%;
  display: none;
  position: absolute;
  inset: 0;
}

.work-card-2 {
  color: #151515;
  display: block;
}

.work-card-line-2 {
  background-color: #d9dbd0;
  width: 24px;
  height: 2px;
  margin-right: 12px;
}

.category-link-2 {
  color: #151515;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 15px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.category-link-2.w--current {
  font-weight: 600;
}

.html-embed {
  width: 65%;
  font-weight: 600;
  display: inline-block;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 32px;
    line-height: 40px;
  }

  h2 {
    font-size: 28px;
    line-height: 36px;
  }

  h3 {
    font-size: 22px;
    line-height: 28px;
  }

  h4 {
    font-size: 18px;
    line-height: 24px;
  }

  blockquote {
    margin-top: 32px;
    margin-bottom: 32px;
    padding: 4vw;
    font-size: 18px;
    line-height: 28px;
  }

  figure {
    padding: 9px;
  }

  .page-wrapper {
    flex-direction: column;
    align-items: stretch;
    padding-left: 112px;
    padding-right: 40px;
    display: flex;
  }

  .left-block {
    width: 112px;
    min-width: 0;
    padding: 20px;
    position: fixed;
    inset: 0% auto 0% 0%;
  }

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

  .sidebar {
    order: -1;
    width: 100%;
    padding-top: 40px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  .sidebar.mobile-bottom {
    order: 1;
  }

  .section {
    padding-bottom: 80px;
  }

  .section.page-header-section {
    padding-top: 38px;
    padding-bottom: 32px;
  }

  .hero-intro {
    padding-top: 0;
  }

  .text-vertical {
    transform-origin: 100%;
    height: auto;
    margin-top: 72px;
    margin-right: 39px;
    font-size: 48px;
    line-height: 48px;
  }

  .bg-image.instagram-image {
    opacity: 1;
  }

  .contact-info {
    padding: 32px 20vw 0 0;
  }

  .contact-block-link {
    margin-right: 20px;
  }

  .hover-line {
    display: none;
  }

  .footer-bottom {
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .section-top {
    margin-bottom: 32px;
    padding-bottom: 12px;
  }

  .social-link {
    margin-right: 20px;
  }

  .nav-bar {
    margin: 20px;
  }

  .menu-button {
    width: 72px;
    height: 72px;
    padding: 17px 16px;
  }

  .nav-link {
    margin-left: 12px;
    margin-right: 12px;
  }

  .nav-links {
    padding-right: 20px;
  }

  .career-block {
    grid-column-gap: 10px;
    grid-template-areas: "Date Timeline Job";
  }

  .instagram-hover {
    display: none;
  }

  .service-icon {
    width: 60px;
  }

  .back-link {
    margin-top: 24px;
    display: none;
  }

  .testimonials-button {
    margin-top: 0;
  }

  .review-content {
    padding-left: 28px;
  }

  .review-text {
    font-size: 18px;
    line-height: 28px;
  }

  .utility-icon {
    width: 72px;
  }

  .button-hover {
    display: none;
  }

  .testimonials-list {
    grid-row-gap: 40px;
  }

  .work-card-preview {
    height: 29vw;
    min-height: 0;
  }

  .work-card-info {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .logo-box {
    height: 14vw;
  }

  .logo {
    height: 3.3vw;
  }

  .clients-header {
    padding: 20px 24px;
  }

  .bg-circle-big {
    width: 70vw;
    height: 70vw;
    top: -20.7vw;
    right: -9.5vw;
  }

  .floating-button-wrapper {
    margin-right: -24px;
  }

  .menu-button-circle {
    display: none;
  }

  .side-top-info {
    padding-top: 0;
    padding-bottom: 0;
  }

  .back-to-top {
    display: none;
  }

  .frame {
    padding: 6vw;
  }

  .slider {
    height: 50vw;
  }

  .slide-nav {
    padding-top: 30px;
    font-size: 6px;
  }

  .slider-frame {
    margin-top: 32px;
    margin-bottom: 32px;
    padding: 11px;
  }

  .slider-button {
    width: 48px;
    height: 48px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .sg-button-box {
    padding: 6vw;
  }

  .sg-color-card {
    padding: 16px;
  }

  .sg-color {
    height: 18vw;
    max-height: none;
  }

  .sg-color-name {
    margin-top: 12px;
  }

  .back-link-2 {
    margin-top: 24px;
    display: none;
  }

  .text-vertical-2 {
    transform-origin: 100%;
    height: auto;
    margin-top: 72px;
    margin-right: 39px;
    font-size: 48px;
    line-height: 48px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 28px;
    line-height: 36px;
  }

  h2 {
    font-size: 24px;
    line-height: 32px;
  }

  h3 {
    font-size: 20px;
    line-height: 26px;
  }

  blockquote {
    margin-top: 28px;
    margin-bottom: 28px;
    padding: 28px;
  }

  .page-wrapper {
    padding-left: 40px;
  }

  .left-block {
    display: none;
  }

  .section {
    padding-bottom: 64px;
  }

  .section.page-header-section {
    padding-bottom: 24px;
  }

  .text-vertical {
    margin-top: 64px;
  }

  .floating-button {
    height: 60px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-link {
    margin-right: 24px;
    font-size: 13px;
  }

  .section-top.no-border {
    padding-bottom: 0;
  }

  .nav-bar {
    margin: 0;
    padding: 8px;
    inset: 0% 0% auto auto;
  }

  .nav-menu {
    background-color: var(--white);
    width: 240px;
    height: auto;
    min-height: 100vh;
    padding-top: 88px;
    padding-bottom: 88px;
    overflow: auto;
  }

  .menu-button {
    border-style: none;
    width: 60px;
    height: 60px;
    padding: 13px 14px;
    display: none;
  }

  .menu-button.mobile-button {
    background-color: var(--white);
    border-radius: 50%;
  }

  .nav-link {
    margin: 6px 20px 6px 0;
    font-size: 18px;
    line-height: 28px;
  }

  .nav-links {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: auto;
    padding: 0 32px;
  }

  .menu-icon {
    width: 32px;
    height: 32px;
  }

  .job-position {
    margin-top: 4px;
    margin-bottom: 4px;
    margin-right: 4px;
  }

  .nav-background {
    display: none;
  }

  .services {
    flex-wrap: wrap;
  }

  .service-icon {
    width: 48px;
  }

  .testimonials-button {
    margin-top: -4px;
  }

  .review-avatar {
    width: 80px;
    height: 80px;
  }

  .review-content {
    padding-left: 20px;
  }

  .review-text {
    font-size: 17px;
  }

  .review-info {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .licence-info {
    padding-left: 28px;
  }

  .licence-icons {
    width: 168px;
    height: 120px;
  }

  .licence {
    padding: 20px;
  }

  .works-grid {
    grid-column-gap: 16px;
    grid-row-gap: 32px;
  }

  .work-card-preview {
    height: 26vw;
  }

  .work-card-info {
    margin-top: 4px;
  }

  .work-card-heading {
    font-size: 15px;
    line-height: 20px;
  }

  ._2-info-blocks {
    grid-template-columns: 1fr;
  }

  .logo-box {
    height: 16vw;
  }

  .logo {
    height: 4vw;
  }

  .clients-header {
    text-align: center;
    justify-content: center;
  }

  .frame {
    padding: 8vw;
  }

  .slider {
    height: 52vw;
  }

  .slide-nav {
    height: 48px;
    padding-top: 20px;
  }

  .slider-frame {
    padding: 9px;
  }

  .sg-button-box {
    padding: 5vw;
  }

  .sg-color-card {
    padding: 12px;
  }

  .sg-color-name {
    margin-top: 10px;
    margin-bottom: 2px;
    font-size: 11px;
    line-height: 16px;
  }

  .grid-books {
    grid-template-columns: 1fr;
  }

  .works-grid-2 {
    grid-column-gap: 16px;
    grid-row-gap: 32px;
  }

  .text-vertical-2 {
    margin-top: 64px;
  }

  .footer-link-2 {
    margin-right: 24px;
    font-size: 13px;
  }

  .div-block-2 {
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  blockquote {
    font-size: 17px;
    line-height: 24px;
  }

  .page-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .left-block {
    display: none;
  }

  .sidebar {
    min-width: 0;
  }

  .media-wrapper {
    height: 120vw;
  }

  .contact-info {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-block-link {
    margin-right: 0;
  }

  .nav-link {
    margin: 1.5vw 0;
  }

  .nav-link.w--current {
    z-index: 3;
  }

  .nav-links {
    z-index: 1;
    width: 100%;
    height: auto;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-right: 0;
  }

  .career-block {
    grid-column-gap: 24px;
    grid-row-gap: 8px;
    grid-template-rows: auto auto;
    grid-template-areas: "Timeline-Mobile Date-Mobile Date-Mobile"
                         "Timeline-Mobile Job-Mobile Job-Mobile";
    padding-left: 8px;
  }

  .career-date {
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .instagram-photos {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
  }

  .services {
    flex-direction: column;
    padding: 8vw;
  }

  .service {
    width: 100%;
    padding-top: 8vw;
    padding-bottom: 8vw;
  }

  .service-icon {
    width: 64px;
  }

  .testimonial {
    flex-direction: column;
    align-items: center;
  }

  .review-avatar {
    width: 32vw;
    height: 32vw;
    margin-bottom: 12px;
  }

  .review-content {
    padding-left: 0;
  }

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

  .review-info {
    flex-direction: column;
    margin-bottom: 0;
  }

  .licence-info {
    text-align: center;
    margin-top: 8px;
    padding-left: 0;
  }

  .licence-icons {
    width: 100%;
    height: 56vw;
    margin-bottom: 8px;
    padding: 12vw;
  }

  .licence {
    flex-direction: column;
    padding: 24px 24px 16px;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .work-card-preview {
    height: 68vw;
  }

  .work-card-info {
    margin-top: 10px;
  }

  ._2-info-blocks {
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .logotypes {
    grid-template-columns: 1fr 1fr;
  }

  .logo-box {
    height: 28vw;
  }

  .logo {
    height: 6.5vw;
  }

  .floating-button-wrapper {
    margin-top: -100px;
    margin-right: -10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .frame {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .slider {
    height: 60vw;
  }

  .slide-nav {
    padding-top: 23px;
  }

  .slider-button {
    display: none;
  }

  .sg-buttons {
    grid-template-rows: auto auto;
    grid-template-columns: 100%;
    width: 100%;
  }

  .sg-button-box {
    margin-bottom: -1px;
    margin-right: 0;
    padding: 14vw 11vw;
  }

  .sg-colors {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .sg-color-card {
    padding: 16px;
  }

  .sg-color {
    height: 50vw;
  }

  .sg-color-name {
    margin-top: 16px;
    margin-bottom: 4px;
    font-size: 13px;
  }

  .works-grid-2 {
    grid-template-columns: 1fr;
  }

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

#w-node-_8fcd385f-a311-1977-391b-486d2ef78a78-20626525, #w-node-_3d61b579-4760-0ab2-2643-c40433ff91ac-20626525, #w-node-_0ecb436f-f6ca-1831-e090-7144c6726200-20626525, #w-node-_28076a2d-a886-1666-93b5-27108bfb3381-20626525, #w-node-dd3c4b4c-c8aa-3658-dcc9-d8d5660ae13d-20626525, #w-node-dd3c4b4c-c8aa-3658-dcc9-d8d5660ae13e-20626525, #w-node-dd3c4b4c-c8aa-3658-dcc9-d8d5660ae13f-20626525 {
  place-self: center;
}


