html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Golos Text", sans-serif;
  color: #1A1A1C;
}

.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.bg-white {
  background-color: #ffffff;
}

.w-100 {
  width: 100%;
}

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

.btn {
  display: inline-flex;
  font-size: 18px;
  font-weight: 500;
  height: 56px;
  line-height: 56px;
  padding-left: 24px;
  padding-right: 24px;
  text-decoration: none;
  box-shadow: none;
  border: 0px;
  transform-origin: center;
  transition: all 0.2s ease-in-out;
}
.btn.btn-primary {
  background-color: orange;
  color: #ffffff;
}
.btn:hover {
  transform: scale(0.98);
}

.font-display {
  font-family: "Red Rose", cursive;
}

.menu-nav {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  padding-top: 32px;
  padding-left: 32px;
  padding-right: 32px;
  margin: 0 auto;
  mix-blend-mode: difference;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  z-index: 40;
}
.menu-nav .logo svg {
  height: 1.6vw;
  display: inline-block;
}
.menu-nav .menu-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.menu-nav .menu-list a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-left: 18px;
  font-size: 1.4vw;
  position: relative;
}
.menu-nav .menu-list a:before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
}
.menu-nav .menu-list a:hover {
  color: #ffffff;
  text-decoration: none;
}
.menu-nav .menu-list a:hover:before {
  width: 100%;
}

.top-section {
  position: relative;
  height: 100vh;
  background-color: #ffffff;
}

.top-section-start {
  margin-bottom: 100vh;
}

.top-section-title {
  padding-top: 14vh;
  font-family: "Red Rose", cursive;
  font-size: 8vw;
  color: #1A1A1C;
  text-transform: uppercase;
  position: relative;
  z-index: 4;
  padding-left: 32px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  transition-delay: 0.2s;
  transform: translateY(20px);
}
.top-section-title.is-inview {
  opacity: 1;
  transform: translateY(0px);
}

.top-section-text {
  line-height: 1.3;
  font-size: 24px;
  width: 32vw;
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-weight: 400;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  bottom: 10px;
  transition-delay: 0.4s;
}
.top-section-text p > span {
  font-size: 1vw;
  text-transform: uppercase;
  opacity: 0.5;
  display: block;
  margin-bottom: 16px;
}
.top-section-text p {
  font-size: 1.6vw;
}
.top-section-text.is-inview {
  opacity: 1;
  bottom: 32px;
}

.section-wrapper1 {
  display: block;
  position: relative;
  height: 170vh;
  overflow: hidden;
  background-color: #ffffff;
}

.section-wrapper-normal {
  display: block;
  position: relative;
  padding-top: 20vh;
  padding-bottom: 20vh;
}

.section-wrapper-normal-2 {
  display: block;
  position: relative;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.cta-1 {
  position: relative;
  background-color: #ffffff;
  z-index: 30;
  min-height: 80vh;
}
.cta-1 .section-wrapper-normal {
  padding-top: 6vh !important;
}
.cta-1 .section-wrapper-normal:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  background-color: orange;
  transition: all 0.6s ease-in-out;
  transition-delay: 0.1s;
}
.cta-1 .section-wrapper-normal.is-inview:before {
  transform: scaleX(0.6);
}

.center-text {
  font-family: "Red Rose", cursive;
  text-align: center;
  font-size: 6vw;
}

.footer-img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 45vh;
  background-color: #1A1A1C;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.media-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  transform: translateY(-40vh);
  background-color: #1A1A1C;
  opacity: 1;
  z-index: 5;
}

.media-box {
  width: calc(100% - 64px);
  height: calc(94vh - 64px);
  transform: scale(0.4);
  transform-origin: bottom right;
  position: fixed;
  overflow: hidden;
  bottom: 32px;
  right: 32px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.media-box-wrapper {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 11;
  background-color: transparent;
}

.sticky-sec {
  display: block;
  min-height: 180vh;
  background-color: #ffffff;
  position: relative;
  z-index: 15;
}

.sticky-item {
  padding-top: 20vh;
}

.section-wrapper-work {
  background-color: #1A1A1C;
  position: relative;
}
.section-wrapper-work::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #1A1A1C;
}

.section-wrapper2 {
  position: relative;
  display: block;
  width: 50vw;
}

.block0:before {
  display: none;
}

.block0, .block1, .block2, .block3, .block4, .block5 {
  display: inline-block;
  height: 100vh;
  position: relative;
  width: 50vw;
  top: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.block0:before, .block1:before, .block2:before, .block3:before, .block4:before, .block5:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease-in-out;
}
.block0:hover:before, .block1:hover:before, .block2:hover:before, .block3:hover:before, .block4:hover:before, .block5:hover:before {
  background-color: rgba(0, 0, 0, 0.5);
}

.block1, .block3, .block5 {
  left: 50vw;
}

.block0 {
  width: 100vw;
}

#blockWrap0 {
  width: 100vw;
}

#blockWrap3 {
  left: 50vw;
}

#blockWrap4 {
  left: -50vw;
}

#blockWrap5 {
  left: 50vw;
}

.block3 {
  left: 0vw;
}

.block5 {
  background-color: #1A1A1C;
  color: #ffffff;
  left: 0vw;
}

.block0-content {
  line-height: 1.3;
  font-size: 24px;
  width: 32vw;
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% + 40px));
  left: 32px;
  font-weight: 400;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.1s;
  mix-blend-mode: difference;
  color: #ffffff;
}
.block0-content.is-inview {
  transform: translateY(-50%);
  opacity: 1;
}
.block0-content p > span {
  font-size: 1vw;
  text-transform: uppercase;
  opacity: 0.5;
  display: block;
  margin-bottom: 16px;
}
.block0-content p {
  font-size: 1.6vw;
}

.block5-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  position: relative;
  z-index: 10;
  height: 100%;
}
.block5-content p > span {
  font-size: 1vw;
  text-transform: uppercase;
  opacity: 0.5;
  display: block;
  margin-bottom: 16px;
}
.block5-content .client-img {
  width: 80%;
}

.block-work-content {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  padding: 32px;
  position: relative;
  z-index: 4;
}
.block-work-content .block-work-content--text {
  color: #ffffff;
  display: block;
  margin-bottom: 16px;
  padding-right: 10vw;
}
.block-work-content .block-work-content--text h2 {
  font-family: "Red Rose", cursive;
  font-size: 5vw;
  display: block;
  margin-bottom: 12px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transition-delay: 0.4s;
}
.block-work-content .block-work-content--text p {
  line-height: 1.5;
  font-size: 1.2vw;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transition-delay: 0.5s;
}
.block-work-content .block-work-content--text.is-inview h2, .block-work-content .block-work-content--text.is-inview p {
  transform: translateY(0px);
  opacity: 1;
}
.block-work-content.block-work-content--right {
  justify-content: flex-end;
}
.block-work-content.block-work-content--right .block-work-content--text {
  text-align: right;
  padding-right: inherit;
  padding-left: 10vw;
}

.progress-bar-v {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-color: orange;
  height: 0%;
  z-index: 24;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
}
.service-item a {
  display: block;
  font-size: 3.2vw;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  margin-right: 18px;
  margin-bottom: 16px;
  opacity: 0.5;
  transition: all 0.2s ease-in-out;
}
.service-item a:hover {
  color: #ffffff;
  opacity: 1;
}

.blocked-scroll-bar {
  position: relative;
}/*# sourceMappingURL=styles.css.map */