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

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

@font-face {
  font-family: 'Gilroy Regular';
  src: url("../fonts/Gilroy-Regular.eot");
  src: url("../fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Gilroy Semi';
  src: url("../fonts/Gilroy-Semibold.eot");
  src: url("../fonts/Gilroy-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Semibold.woff2") format("woff2"), url("../fonts/Gilroy-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Gilroy Light';
  src: url("../fonts/Gilroy-Light.eot");
  src: url("../fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

:root {
  --fxl: 24px;
  --fl: 18px;
  --fm: 15px;
  --fs:12px;
  --black: #1F1F1F;
  --white: #fff;
  --grey: #AAA7AE;
  --purple: #494752;
  --gold: #A29585;
  --off-white: #F8F3E7;
  --drak-grey: #333333;
  --light-grey: #B3B3B3;
  --oBlack: #1f1f1fce;
  --pad: 20px;
  --timing: cubic-bezier(1, 0, .29, 1); }
  @media (max-width : 900px) {
    :root {
      --fontLarge: 2.428571rem;
      --mainpad: 1.071428rem; } }
.fs {
  font-size: var(--fs);
  line-height: 1.2; }

.fm {
  font-size: var(--fm);
  line-height: 1.2; }

.fl {
  font-size: var(--fl);
  line-height: 1.2; }

.fxl {
  font-size: var(--fxl);
  line-height: 1.2; }

.bold {
  font-family: 'Gilroy Semi'; }

* {
  box-sizing: border-box; }

*:before,
*:after {
  box-sizing: border-box; }

a {
  color: inherit;
  text-decoration: none; }

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; }

button {
  border: none;
  background-color: transparent;
  color: inherit;
  border-radius: 0;
  cursor: pointer;
  padding: 0; }

html {
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Gilroy Regular', Helvetica, sans-serif;
  background-color: var(--black); }

body {
  background-color: var(--black);
  color: var(--white); }

.reg_grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-auto-rows: auto;
  column-gap: var(--pad);
  padding: 0 var(--pad);
  row-gap: 0;
  width: 100%; }

/* Enter View */
.inblock {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 1s ease, transform 1s ease; }

.inblock.entered {
  transform: translateY(0);
  opacity: 1; }

.block {
  opacity: 0;
  transform: translateY(5vh);
  transition: opacity 1s ease, transform 1s ease; }

.block.entered {
  transform: translateY(0);
  opacity: 1; }

.background {
  transition: background-color 0.8s ease, color 0.8s ease;
  color: var(--white); }

.background.entered {
  color: var(--black);
  background-color: var(--white); }
  .background.entered svg {
    color: var(--black); }

header {
  position: fixed;
  z-index: 999;
  width: 50%;
  height: auto;
  top: 0;
  transition: top 0.7s cubic-bezier(0.25, 0.88, 0.56, 1.02); }

nav {
  height: auto;
  background-color: transparent;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 120px;
  top: 100px;
  left: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease , visibility 0.2s ease; }
  nav ul {
    padding-bottom: 30px;
    width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease,transform 0.2s ease; }
    nav ul li {
      margin-bottom: 5px;
      color: var(--white);
      transition: opacity 0.15s ease;
      width: fit-content;
      text-shadow: 1px 1px 4px black; }
      nav ul li:hover {
        opacity: 0.7; }
    nav ul li:first-child {
      margin-bottom: var(--pad);
      text-transform: uppercase;
      font-weight: 600; }
  nav.drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.2s ease 0.6, visibility 0.2s ease 0.6; }
    nav.drop ul {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      transition: opacity 0.5s ease, visibility 0.5s ease,transform 0.5s ease; }
      nav.drop ul:nth-child(2) {
        transition: opacity 0.5s ease 0.1s, visibility 0.5s ease 0.1s,transform 0.5s ease 0.1s; }
      nav.drop ul:nth-child(3) {
        transition: opacity 0.5s ease 0.2s, visibility 0.5s ease 0.2s,transform 0.5s ease 0.2s; }
      nav.drop ul:nth-child(4) {
        transition: opacity 0.5s ease 0.3s, visibility 0.5s ease 0.3s,transform 0.5s ease 0.3s; }

.header_logo {
  padding: var(--pad);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center; }
  .header_logo .logo svg {
    width: 120px;
    padding-left: 20px; }
  .header_logo .burger {
    display: block;
    width: 20px;
    height: 20px;
    top: 4px;
    position: relative; }
    .header_logo .burger span {
      background-color: var(--white);
      width: 100%;
      height: 1px;
      transition: transform 0.3s ease, top 0.3s ease;
      position: absolute;
      top: 0;
      left: 0; }
      .header_logo .burger span:last-of-type {
        top: 7px; }
    .header_logo .burger.active span:first-of-type {
      transform: rotate(45deg);
      top: 4px; }
    .header_logo .burger.active span:last-of-type {
      transform: rotate(-45deg);
      top: 4px; }

@media screen and (max-width: 1000px) {
  nav {
    top: 70px; }
    nav ul {
      padding-bottom: 10px; } }

.video-container {
  position: relative; }

.open_animation {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px); }
  .open_animation svg {
    position: relative;
    color: var(--white);
    z-index: 9999999; }

.open_media {
  position: fixed;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1000;
  transition: opacity 0.3s ease, visibility 0.3s ease, z-index 0.3s ease;
  background-color: var(--black); }
  .open_media.removed {
    opacity: 0;
    visibility: 0;
    z-index: 0; }
  .open_media .aspectholder {
    width: 100%;
    height: 100%;
    object-fit: cover; }
    .open_media .aspectholder img, .open_media .aspectholder video {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .open_media .exit-control {
    position: absolute;
    right: 20px;
    top: 20px; }
  @media screen and (max-width: 1000px) {
    .open_media .exit-control {
      position: absolute;
      right: unset;
      top: 10px;
      left: 50%;
      transform: translateX(-50%); } }
  .open_media .button-holder .button-left {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 20vw;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    column-gap: 20px; }
  .open_media .button-holder .button-right {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 20vw;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    column-gap: 20px; }
  .open_media .button-holder button {
    position: relative; }
  .open_media .button-holder button.audio-control {
    right: unset !important;
    bottom: unset !important; }
  .open_media .button-holder button.play-control {
    left: unset !important;
    bottom: unset !important; }
  .open_media .button-holder button.full-control {
    left: unset !important;
    bottom: unset !important; }

.page_overlay_topper {
  height: calc(100vh - 6rem);
  width: 100%;
  color: var(--black);
  --font: var(--black);
  --bg: var(--white); }

.page_overlay_scroll_wrapper {
  height: auto;
  width: 100%;
  z-index: 9999;
  position: absolute;
  --font: var(--black);
  --bg: var(--white); }
  .page_overlay_scroll_wrapper .page_overlay_scroll {
    padding-bottom: 100px; }
  .page_overlay_scroll_wrapper .page_overlay_title {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: var(--pad);
    padding-right: var(--pad);
    padding-top: 50px; }
    .page_overlay_scroll_wrapper .page_overlay_title .title {
      padding-left: 20px; }
    .page_overlay_scroll_wrapper .page_overlay_title .arrow {
      transform: rotate(180deg);
      position: relative;
      top: 0; }
      .page_overlay_scroll_wrapper .page_overlay_title .arrow svg {
        width: 15px;
        height: 15px; }

.footer {
  height: auto;
  width: 100%;
  background-color: var(--oBlack);
  position: relative;
  color: var(--white);
  --font: var(--white);
  --bg: var(--oBlack);
  border-bottom: 4px solid var(--oBlack); }
  .footer .page_block:last-child {
    padding-bottom: 200px; }
  .footer .footer_bg {
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: -1; }
    .footer .footer_bg .aspectholder {
      width: 100%;
      height: 100%; }
      .footer .footer_bg .aspectholder * {
        width: 100%;
        height: 100%;
        object-fit: cover; }

footer {
  width: 100%;
  padding: 200px var(--pad) var(--pad) var(--pad); }
  footer h4 {
    padding-bottom: var(--pad); }
  footer ul {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--pad); }
    footer ul svg {
      height: 30px;
      width: 30px; }
  footer p {
    padding-top: var(--pad); }

.page_block {
  padding-top: 100px; }

.page_hero_section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between; }
  .page_hero_section img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .page_hero_section .aspectholder {
    width: 100%;
    height: 100%;
    position: relative; }
    .page_hero_section .aspectholder img, .page_hero_section .aspectholder video {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .page_hero_section.single .aspectholder {
    width: 100%;
    height: 100vh;
    position: relative; }
    .page_hero_section.single .aspectholder img, .page_hero_section.single .aspectholder video {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .page_hero_section .home_hero_holder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: none; }
    .page_hero_section .home_hero_holder.active {
      display: block; }
  .page_hero_section .gallery_item {
    width: 50%;
    height: 100%;
    filter: grayscale(1);
    transition: filter 0.3s ease;
    position: relative; }
    .page_hero_section .gallery_item .gallery_item_hover {
      position: absolute;
      bottom: 45%;
      left: 50%;
      opacity: 1;
      visibility: visibility;
      transform: translate(-50%, -50%);
      transition: opacity 0.3s ease, visbility 0.3s ease, transform 0.3s ease; }
      .page_hero_section .gallery_item .gallery_item_hover span {
        padding-left: 30px; }
      .page_hero_section .gallery_item .gallery_item_hover::before {
        content: '';
        width: 17px;
        height: 10px;
        background-color: var(--white);
        position: absolute;
        clip-path: polygon(100% 0, 0 0, 0 100%); }
    .page_hero_section .gallery_item:hover {
      filter: grayscale(0); }
      .page_hero_section .gallery_item:hover .gallery_item_hover {
        opacity: 1;
        visibility: visible; }
  .page_hero_section .gallery_item:nth-child(2) {
    border-left: none; }

@media screen and (min-width: 1000px) {
  audio::-webkit-media-controls-timeline,
  video::-webkit-media-controls-timeline {
    opacity: 0; }
  audio::-webkit-media-controls,
  video::-webkit-media-controls {
    opacity: 0; }
  video.playing::-webkit-media-controls, video.playing::-webkit-media-controls-timeline,
  audio.playing::-webkit-media-controls,
  audio.playing::-webkit-media-controls-timeline {
    opacity: 1; }
  .button-holder {
    display: none; } }

.button-holder {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s; }
  .button-holder button {
    position: absolute;
    bottom: calc(50% - 0.5em);
    background: transparent;
    width: auto;
    height: 20px;
    background-size: contain;
    mix-blend-mode: difference;
    background-repeat: no-repeat;
    background-position: center;
    color: white; }
  .button-holder .button-left {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
  .button-holder button.audio-control {
    right: 20px;
    bottom: 20px;
    mix-blend-mode: difference; }
  .button-holder button.full-control {
    right: 60px;
    bottom: 20px;
    mix-blend-mode: difference; }
  .button-holder button.play-control,
  .button-holder button.pause-control {
    left: 20px;
    bottom: 20px;
    mix-blend-mode: difference; }
  .button-holder button.rewind-control {
    background-image: url(/assets/graphics/reset.svg);
    right: 20px; }
  .button-holder:hover {
    opacity: 1; }

.button-holder .progress {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 20px;
  display: flex;
  align-items: center;
  vertical-align: middle;
  padding: 5px 0;
  transition: all 0.5s ease;
  flex-grow: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) calc(50% - 1px), white calc(50%), rgba(0, 0, 0, 0) calc(50% + 1px));
  cursor: pointer; }

.button-holder progress {
  color: white;
  font-size: 20px;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none; }

.button-holder progress::-moz-progress-bar {
  color: white;
  background: rgba(255, 255, 255, 0); }

.button-holder progress[value]::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0);
  border-radius: 20px;
  height: 100%; }

.button-holder progress[value]::-webkit-progress-value {
  background: rgba(255, 255, 255, 0);
  border-radius: 20px;
  height: 100%;
  position: relative;
  transition: width 0.1s linear;
  background-image: radial-gradient(circle at calc(100% - 5px) center, white 5px, rgba(255, 255, 255, 0.3) 6px, rgba(255, 255, 255, 0) 0px);
  padding: 0 5px; }

.button-holder button.rewind-control {
  background-image: url(/assets/graphics/reset.svg);
  right: 20px; }

@media (max-width: 1000px) {
  .button-holder {
    opacity: 1; }
    .button-holder button.play-control,
    .button-holder button.audio-control {
      bottom: 30px; }
  .button-holder .progress {
    bottom: 30px; } }

.testimonials_block {
  color: var(--font);
  position: relative;
  row-gap: 40px;
  grid-template-rows: auto 1fr; }
  .testimonials_block h4 {
    grid-column: 1/3; }

.testimonial_holder {
  grid-column: 3/10;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 20rem;
  overflow: hidden;
  position: relative; }
  .testimonial_holder .testimonial {
    flex-shrink: 1;
    width: 42%;
    height: fit-content;
    padding-bottom: 40px; }
    .testimonial_holder .testimonial p:first-child {
      padding-bottom: var(--pad); }
  .testimonial_holder .testi_bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 5rem;
    background: linear-gradient(0deg, white 12%, rgba(255, 255, 255, 0) 100%); }

.see_more_btn {
  border: 1px solid var(--font);
  padding: 7px 10px;
  transition: background-color 0.15s ease, color 0.15s ease;
  position: absolute;
  bottom: 0;
  grid-column: 3/4; }
  .see_more_btn:hover {
    color: var(--bg);
    background-color: var(--font); }

.feature_projects_block {
  color: var(--font);
  position: relative;
  row-gap: 40px;
  grid-template-rows: auto 1fr; }
  .feature_projects_block h4 {
    grid-column: 1/3; }

.feature_project {
  grid-column: 3/10;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--pad);
  position: relative; }
  .feature_project .aspectholder {
    width: 60%;
    aspect-ratio: 5/3; }
    .feature_project .aspectholder img, .feature_project .aspectholder video {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .feature_project .aspectholder .fs_play_btn {
      display: none;
      height: 100%;
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      justify-content: center;
      align-items: center;
      z-index: 100;
      cursor: pointer; }
      .feature_project .aspectholder .fs_play_btn svg {
        width: 10%; }
    @media screen and (min-width: 1000px) {
      .feature_project .aspectholder .fs_play_btn {
        display: flex; } }
  .feature_project .feature_project_info {
    width: 45%;
    height: 100%; }
    .feature_project .feature_project_info .info_list {
      width: 100%;
      margin-top: 0;
      border-top: 1px solid var(--black);
      color: var(--black);
      opacity: 1; }
      .feature_project .feature_project_info .info_list li {
        border-bottom: 1px solid var(--black); }
  .feature_project .project_p {
    padding-top: 70px;
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--pad);
    flex-wrap: wrap;
    color: var(--black);
    grid-row: 1;
    opacity: 1; }
    .feature_project .project_p.blocked {
      padding-top: var(--pad); }
    .feature_project .project_p p {
      width: 100%;
      color: var(--font); }

.aspectholder .fs_play_btn {
  display: none;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
  align-items: center;
  z-index: 100;
  cursor: pointer; }
  .aspectholder .fs_play_btn svg {
    width: 10%; }

@media screen and (min-width: 1000px) {
  .aspectholder .fs_play_btn {
    display: flex; } }

.footer .feature_project .feature_project_info .info_list {
  border-top: 1px solid var(--white);
  color: var(--white); }
  .footer .feature_project .feature_project_info .info_list li {
    border-bottom: 1px solid var(--white); }

.footer .project_p {
  color: var(--font); }
  .footer .project_p p {
    color: var(--white); }

.swiper-container {
  grid-column: 3/10;
  height: auto;
  width: 100%;
  position: relative; }

.swiper-slide {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
  gap: var(--pad); }

.slide_left {
  width: 45%;
  height: 70%;
  background-color: var(--white); }

.slide_right {
  width: 60%; }
  .slide_right .aspectholder {
    width: 100%;
    aspect-ratio: 6/7; }
    .slide_right .aspectholder * {
      width: 100%;
      height: 100%;
      object-fit: cover; }

.titles {
  position: absolute;
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 200; }
  .titles .swiper_title {
    color: var(--light-grey);
    cursor: pointer;
    position: relative;
    transition: color 0.15s ease;
    width: fit-content; }
    .titles .swiper_title.active, .titles .swiper_title:hover {
      color: var(--font); }

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 4px;
  left: 0;
  width: 40%; }

.swiper-pagination {
  position: absolute;
  text-align: left;
  transition: .3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  flex-grow: 1; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0; }

.swiper-pagination-bullet {
  width: auto;
  flex-grow: 1;
  height: 2px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  background: var(--light-grey);
  opacity: 1; }
  .swiper-pagination-bullet::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }

.swiper-pagination-bullet-active {
  background: var(--light-grey); }
  .swiper-pagination-bullet-active::before {
    background-color: var(--black);
    animation: slide-progress 10s cubic-bezier(0.3, 0, 0.3, 1) forwards; }
    .swiper-paused .swiper-pagination-bullet-active::before {
      animation-play-state: paused; }

.footer .slide_left {
  background-color: var(--bg); }

.footer .swiper-pagination-bullet-active:before {
  background-color: var(--white);
  animation: slide-progress 10s cubic-bezier(0.3, 0, 0.3, 1) forwards; }

@keyframes slide-progress {
  0% {
    transform: translateX(-100%); }
  100% {
    transform: translateX(0); } }

.awards {
  grid-column: 3/10;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--pad); }

.awards_left {
  width: 45%; }

.awards_right {
  width: 60%;
  aspect-ratio: 6/7;
  position: relative; }
  .awards_right .awards_right_img {
    position: absolute;
    aspect-ratio: 6/7;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease; }
    .awards_right .awards_right_img.active {
      opacity: 1; }
    .awards_right .awards_right_img .aspectholder {
      top: 0;
      left: 0;
      width: 100%;
      aspect-ratio: 6/7; }
      .awards_right .awards_right_img .aspectholder * {
        width: 100%;
        height: 100%;
        object-fit: cover; }

.awards_item {
  padding: 6px 0 4px 0;
  border-top: 1px solid var(--light-grey);
  height: fit-content;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  color: var(--light-grey);
  transition: color 0.3s ease;
  position: relative; }
  .awards_item.active, .awards_item:hover {
    color: var(--font); }
    .awards_item.active span svg path, .awards_item:hover span svg path {
      fill: var(--black); }
  .awards_item.active::before {
    opacity: 1;
    left: -20px; }
  .awards_item::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 40px;
    background-color: var(--font);
    position: absolute;
    left: -10px;
    top: 9px;
    opacity: 0;
    transition: opacity 0.3s ease, left 0.3s ease, height 0.3s ease, width 0.3s ease; }
  .awards_item .awards_item_title {
    min-width: 30%; }
  .awards_item .awards_item_award {
    width: 40%; }
  .awards_item span svg {
    transition: margin-left 0.15s ease;
    margin-left: 10px; }
    .awards_item span svg path {
      fill: var(--light-grey);
      transition: fill 0.3s ease; }

.cert {
  grid-column: 6/8;
  padding-top: 60px; }
  .cert .cert_top {
    display: flex;
    flex-direction: row; }
    .cert .cert_top .aspectholder {
      width: 60px;
      aspect-ratio: 1/1;
      margin-right: var(--pad); }
      .cert .cert_top .aspectholder * {
        width: 100%;
        height: 100%;
        object-fit: cover; }
  .cert p {
    padding-top: var(--pad); }
  .cert:first-of-type {
    padding-top: 0; }

form,
.contact_block h5 {
  grid-column: 6/9; }

.contact_block h5 {
  padding-bottom: 40px;
  width: 66%; }

.contact_block .contact_buttons {
  grid-column: 6/9; }
  .contact_block .contact_buttons li {
    display: flex;
    flex-direction: row;
    line-height: 125%; }
    .contact_block .contact_buttons li p {
      width: 100px; }
    .contact_block .contact_buttons li a {
      transition: opacity 0.3s ease; }
      .contact_block .contact_buttons li a:hover {
        opacity: 0.5; }

input,
textarea {
  border: none;
  outline: none;
  background-color: transparent;
  resize: none;
  border-bottom: 1px solid var(--font);
  font-family: 'Gilroy Regular', Helvetica, sans-serif;
  width: 100%;
  padding: 5px 0;
  margin-bottom: 10px;
  -webkit-appearance: none;
  color: var(--font); }

fieldset {
  margin-bottom: 40px; }

button[type="submit"] {
  border: 1px solid var(--font);
  padding: 7px 10px;
  transition: background-color 0.15s ease, color 0.15s ease; }
  button[type="submit"]:hover {
    color: var(--bg);
    background-color: var(--font); }

.projects_mobile {
  display: none; }

.projectsSwiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative; }
  .projectsSwiper .swiper-btns {
    position: relative;
    z-index: 10000;
    transition: opacity 0.3s ease 0.7s, visibility 0.3s ease 0.7s; }
    .projectsSwiper .swiper-btns .swiper-prev {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10000;
      left: 0; }
    .projectsSwiper .swiper-btns .swiper-next {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10000;
      right: 0; }
    .projectsSwiper .swiper-btns.hide {
      transition: opacity 0.3s ease, visibility 0.3s ease;
      opacity: 0;
      visibility: hidden; }
    .projectsSwiper .swiper-btns button {
      transition: opacity 0.3s ease;
      padding: 20px; }
      .projectsSwiper .swiper-btns button:hover {
        opacity: 0.5; }
    .projectsSwiper .swiper-btns .swiper-next svg {
      transform: rotate(180deg); }
  .projectsSwiper .swiper-slide {
    height: 100vh;
    position: relative; }
    .projectsSwiper .swiper-slide a {
      overflow: hidden;
      height: 100%;
      width: 100%;
      filter: grayscale(1);
      transition: filter 0.3s ease; }
      .projectsSwiper .swiper-slide a .aspectholder {
        height: 100%;
        width: 100%; }
        .projectsSwiper .swiper-slide a .aspectholder * {
          height: 100%;
          width: 100%;
          object-fit: cover; }
      .projectsSwiper .swiper-slide a .project_item_hover {
        position: absolute;
        bottom: 20px;
        left: 20px;
        transform: translateY(10px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease; }
      .projectsSwiper .swiper-slide a:hover {
        filter: grayscale(0); }
        .projectsSwiper .swiper-slide a:hover .project_item_hover {
          transform: translateY(0);
          opacity: 1; }

.projects_back {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  transition: opacity 0.3s ease; }
  .projects_back:hover {
    opacity: 0.5; }

.project_mobile,
.project_imgs {
  display: none; }

.project_wrapper {
  width: 100vw;
  height: 100vh;
  position: relative; }

.projectSwiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative; }
  .projectSwiper .swiper-btns {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transition: opacity 0.3s ease 0.7s, visibility 0.3s ease 0.7s; }
    .projectSwiper .swiper-btns.hide {
      transition: opacity 0.3s ease, visibility 0.3s ease;
      opacity: 0;
      visibility: hidden; }
    .projectSwiper .swiper-btns button {
      transition: opacity 0.3s ease;
      padding: 20px; }
      .projectSwiper .swiper-btns button:hover {
        opacity: 0.5; }
    .projectSwiper .swiper-btns .swiper-next svg {
      transform: rotate(180deg); }
  .projectSwiper .swiper-slide {
    height: 100vh;
    position: relative;
    gap: 0; }
    .projectSwiper .swiper-slide .aspectholder {
      height: 100%; }
      .projectSwiper .swiper-slide .aspectholder.single {
        width: 100%; }
      .projectSwiper .swiper-slide .aspectholder.double {
        width: 50%; }
      .projectSwiper .swiper-slide .aspectholder.triple {
        width: 33.3333334%; }
      .projectSwiper .swiper-slide .aspectholder * {
        height: 100%;
        width: 100%;
        object-fit: cover; }
    .projectSwiper .swiper-slide .project_item_hover {
      position: absolute;
      bottom: 20px;
      left: 20px;
      transform: translateY(10px);
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease; }
    .projectSwiper .swiper-slide:hover {
      filter: grayscale(0); }
      .projectSwiper .swiper-slide:hover .project_item_hover {
        transform: translateY(0);
        opacity: 1; }

.project_popup {
  height: 5rem;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: transparent;
  padding: var(--pad);
  overflow: hidden;
  max-height: 80vh;
  z-index: 9999;
  -ms-overflow-style: none;
  scrollbar-width: none; }
  .project_popup::-webkit-scrollbar {
    display: none; }
  .project_popup.scroll {
    overflow: scroll; }
  .project_popup .project_popup_close {
    position: sticky;
    top: 0;
    right: 0;
    grid-column: 9/10;
    grid-row: 1;
    height: fit-content;
    text-align: right;
    opacity: 0; }

.project_title {
  grid-column: 1/4;
  position: sticky;
  top: 0;
  left: 0;
  padding: 0;
  grid-row: 1; }
  .project_title span {
    padding-left: 30px; }
  .project_title::before {
    content: '';
    width: 17px;
    height: 10px;
    background-color: var(--white);
    position: absolute;
    clip-path: polygon(100% 0, 0 0, 0 100%); }

.project_p {
  grid-column: 4/8;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: var(--pad);
  flex-wrap: wrap;
  grid-row: 1;
  opacity: 0; }
  .project_p.blocked {
    padding-top: var(--pad); }
  .project_p p {
    width: 48%; }

.info_list {
  width: 100%;
  grid-column: 4/8;
  margin-top: var(--pad);
  border-top: 1px solid var(--white);
  opacity: 0; }
  .info_list li {
    border-bottom: 1px solid var(--white);
    padding: 5px 0;
    display: flex;
    flex-direction: row; }
    .info_list li div {
      width: 30%; }

.project_popup_more {
  margin-top: var(--pad);
  grid-column: 4/8;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  overflow: hidden;
  opacity: 1; }
  .project_popup_more button {
    cursor: pointer;
    text-align: left;
    width: fit-content;
    display: flex;
    flex-direction: row; }
    .project_popup_more button h4 {
      padding-right: 8px; }

.project_popup_drop {
  width: 100%;
  padding-top: var(--pad);
  opacity: 1; }

.single_media_block {
  width: 100%;
  height: auto; }
  .single_media_block .aspectholder {
    height: 100%;
    width: 100%;
    position: relative; }
    .single_media_block .aspectholder img, .single_media_block .aspectholder video {
      width: 100%;
      height: 100%;
      object-fit: cover; }
