/*
Author: Mohammad Zare
Author URI: http://mohammadz.com/
*/
:root {
  --color-black: 0, 0, 0;
  --color-white: 255, 255, 255;
  --color-grey: 129, 136, 137;

  --animate-duration: 1000ms;
  --animate-delay: 150ms;
}

@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/HelveticaNeue-UltraLight.ttf") format("truetype");
}

@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/HelveticaNeue-Thin.ttf") format("truetype");
}

@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/HelveticaNeue-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/HelveticaNeue-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/HelveticaNeue-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/HelveticaNeue-Heavy.ttf") format("truetype");
}

@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/HelveticaNeue-Black.ttf") format("truetype");
}

:focus {
  outline: 0 !important;
}

::selection {
  background: rgba(var(--color-black), 0.1);
}

::-moz-selection {
  background: rgba(var(--color-black), 0.1);
}

a {
  color: rgb(var(--color-grey));
  text-decoration: none !important;
}

a:hover {
  color: rgb(10, 10, 10);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica Neue", Helvetica, Geneva, Verdana, sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

html {
  background: rgb(var(--color-grey));
}

html,
body {
  min-height: 100%;
  min-height: 100dvh;
  position: relative;
}

body {
  font-family: "Helvetica Neue", Helvetica, Geneva, Verdana, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 1px;
  direction: ltr;
  background: rgb(var(--color-white));
  color: rgb(3, 5, 6);
  overflow-x: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.overlay-link {
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}

.body-overlay {
  width: 100vw;
  height: 100dvh;
  position: fixed !important;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(239, 239, 239, 1);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 100;
  cursor: pointer;
}

.body-overflow {
  overflow: hidden;
}

label,
th,
strong,
b {
  font-weight: 500;
}

.page-navigation {
  margin: 50px 0 0;
  text-align: center;
  background: rgb(204, 213, 214);
  padding: 40px;
}

.pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.pagination>li {
  padding: 0 10px;
}

.pagination>li>a,
.pagination>li>.page-link.current {
  color: rgba(51, 51, 51, 0.5);
  line-height: 1;
  text-align: center;
  font-weight: 700;
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

.pagination>li>a.page-link:hover,
.pagination>li>.page-link.current {
  color: rgb(51, 51, 51);
}

/*Custom*/
.container-fluid {
  /*max-width: 1670px;*/
  max-width: calc(100vw - 15vw);
}

.section {
  position: relative;
  z-index: 1;
}

.section-wrapper {
  padding: 150px 0 50px;
}

.section-cover {
  position: relative;
}

.section-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-header+.section-body,
.section-body+.section-footer,
.section-header+.section-footer {
  margin-top: 30px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-title {
  color: rgb(3, 5, 6);
  font-weight: 700;
  font-size: 60px;
  margin: 0;
  line-height: 1;
  /*text-transform: uppercase;*/
  z-index: 1;
}

.section-subtitle {
  color: rgb(3, 5, 6);
  font-weight: 700;
  font-size: 32px;
  margin: 0;
  line-height: 1;
  /*text-transform: uppercase;*/
  z-index: 1;
}

.section-helper {
  font-size: 22px;
  /*text-transform: uppercase;*/
}

.section-helper>span {
  font-size: 0;
  position: relative;
  display: block;
  height: 50px;
}

.section-helper>span::before {
  background: url(../img/arrow.svg) no-repeat left bottom;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: rotate(90deg);
  width: 50px;
  height: 50px;
  content: "";
}

.subsection-cover {
  position: relative;
}

.subsection-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subsection-header+.subsection-body,
.subsection-body+.subsection-footer,
.subsection-header+.subsection-footer {
  margin-top: 30px;
}

.tbutton {
  height: 44px;
  padding: 0 24px;
  font-weight: 300;
  border: 1px solid transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.tbutton-block {
  display: flex;
  width: 100%;
}

.tbutton-block+.tbutton-block {
  margin-top: 15px;
}

.tbutton-primary-fill {
  background: rgb(var(--color-grey));
  color: rgb(var(--color-white));
}

.tbutton-primary-fill:hover {
  background: rgb(10, 10, 10);
  color: rgb(var(--color-white));
}

.panel-body {
  display: none;
}

#preload {
  background: rgb(var(--color-white));
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  opacity: 1;
  visibility: visible;
  transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

#preload.disabled {
  opacity: 0;
  visibility: hidden;
}

.preload-img {
  height: 80px;
  transform: scale(1);
  animation: pulse 2s infinite;
}

#logomotion>svg {
  transform: translate3d(0, 0, 0) scale(0.6) !important;
}

#header {
  padding: clamp(30px, 2.82vw + 19.44px, 60px) 0;
  background: rgb(var(--color-white));
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  transition: all 300ms linear;
}

#header.sticky {
  padding: clamp(15px, 1.41vw + 9.72px, 30px) 0;
}

.logo {
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.logo>img {
  height: 28px;
}

.user-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

.section-project .section-cover {
  width: 100vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  transform: scale(1.1);
  opacity: 0;
  visibility: hidden;
  transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

body.home.sticky .section-slideshow {
  opacity: 0;
  visibility: hidden;
}

body.project-hovered .section-project .section-cover {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

body.project-hovered .section-project .section-cover::after {
  background: rgba(var(--color-black), 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

body.project-hovered #header,
body.project-hovered #footer,
body.project-hovered .section-project .section-subheader,
body.project-hovered .section-project .section-header {
  opacity: 0 !important;
  visibility: hidden !important;
}

body.project-hovered .section-project .section-subheader,
body.project-hovered .section-project .section-header,
body.project-hovered .section-project .section-body {
  filter: brightness(0) invert(1);
  background: none;
}

.slideshow .slick-arrow {
  width: 42px;
  height: 42px;
  background: url(../img/icon-chevron.svg) no-repeat center/50%;
  filter: brightness(0) invert(1);
  border: none;
  font-size: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  z-index: 1;
}

.slideshow .slick-prev {
  left: 30px;
  transform: scaleX(-1);
}

.slideshow .slick-next {
  right: 30px;
}

.slide-card {
  position: relative;
}

.slide-card-img {
  width: 100%;
  height: 100dvh;
  object-fit: cover;
}

.slide-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 0;
}

.slide-card-title {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}

.project-list {
  border-top: 1px solid rgba(var(--color-grey), 0.7);
}

.project-list .project-card {
  padding: 18px 0;
  border-bottom: 1px solid rgba(var(--color-grey), 0.7);
  position: relative;
}

.project-list .project-card::after {
  width: 80px;
  height: 36px;
  background: url(../img/arrow.svg) no-repeat right center;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) scale(0.6);
  opacity: 1;
  visibility: visible;
  content: "";
}

.project-list .project-card:hover::after {
  opacity: 0;
  visibility: hidden;
  right: -40px;
}

.project-list .project-card-img {
  display: none;
}

.project-list .project-card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-list .project-card-title {
  color: rgb(3, 5, 6);
  font-size: 24px;
  font-weight: 300;
  /*text-transform: uppercase;*/
  margin: 0;
  position: relative;
  z-index: 11;
}

.project-card-title>a {
  color: inherit;
}

.project-list .project-card-subtitle {
  font-size: 20px;
  font-weight: 200;
  opacity: 0;
  visibility: hidden;
  padding-right: 100px;
  margin: 0;
}

.project-list .project-card:hover .project-card-subtitle {
  opacity: 1;
  visibility: visible;
  padding-right: 0;
}

.project-list .project-card::after,
.project-list .project-card-title,
.project-list .project-card-subtitle {
  transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.project-grid .project-card {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.project-grid .project-card-header {
  position: relative;
}

.project-grid .project-card-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.project-grid .project-card:not(:hover) .project-card-img {
  filter: grayscale(1) brightness(1);
}

.project-grid .project-card-body {
  /* color: rgb(3, 5, 6); */
  color: rgb(var(--color-white));
  background: linear-gradient(0deg, #0006, #0000);
  scrollbar-color: #0000 #0000;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: thin;
  text-shadow: 0 0 1.5px rgb(var(--color-black));
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  /* background: rgba(var(--color-white), 0.8); */
  opacity: 0;
  visibility: hidden;
  transition: all 300ms linear;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.project-grid .project-card:hover .project-card-body {
  opacity: 1;
  visibility: visible;
}

.project-grid .project-card-title {
  font-size: 18px;
  font-weight: 300;
  margin: 0;
}

.project-grid .project-card-subtitle {
  color: rgb(3, 5, 6);
  font-size: 17px;
  font-weight: 300;
  margin: 0;
}

#footer {
  margin-top: auto;
  background: rgb(var(--color-grey));
  color: rgb(var(--color-white));
  padding: 25px 0;
}

.footer-logo>img {
  height: 20px;
}

.copyright {
  /*text-transform: uppercase;*/
}

.social-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-nav>li>a {
  color: rgb(var(--color-white));
  font-weight: 500;
  /*text-transform: uppercase;*/
}

.social-nav>li>a:hover {
  color: rgb(3, 5, 6);
}

.project-icon {
  height: 24px;
  margin-right: 10px;
  align-self: center;
}

.project-title {
  font-size: 22px;
  font-weight: 300;
  /*text-transform: uppercase;*/
  margin: 0 auto 0 0;
  align-self: center;
}

.project-info {
  margin: 0 0;
  padding: 0;
}

.project-info>li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(var(--color-grey), 0.7);
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.project-info>li>span {
  /*text-transform: lowercase;*/
}

.project-info>li>div {
  text-align: right;
  /*text-transform: uppercase;*/
}

.project-desc {
  margin-top: 40px;
  text-align: justify
}

.project-intro {
  padding: 160px 15px 110px;
  font-size: 13px;
}

.project-column:not(.project-intro) {
  line-height: 0;
}

.project-column-embed {
  background: #333;
  aspect-ratio: 16 / 9;
  position: relative;
}

.project-column-embed::after {
  border-top: 4px solid rgba(var(--color-white), 1);
  border-left: 4px solid rgba(var(--color-white), 1);
  border-bottom: 4px solid rgba(var(--color-white), 1);
  border-right: 4px solid rgba(var(--color-white), 0);
  animation: spinner 2s linear infinite;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 1;
  content: "";
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

.project-column-embed::before {
  padding-top: 56.25%;
  display: block;
  content: "";
}

.project-column-embed>iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  z-index: 2;
}

.project-column-partner {
  padding: 30px;
  font-size: 13px;
  line-height: 1 !important;
}

.partner-list>strong,
.partner-list>div {
  margin: 3px;
}

.partner-list>strong {
  color: rgb(var(--color-grey));
}

.partner-list>div+strong {
  margin-top: 30px;
}

.project-column-back>a {
  /*text-transform: lowercase;*/
  font-weight: 300;
  font-size: 32px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-column-back>a:hover {
  background: rgb(var(--color-grey));
  color: rgb(var(--color-white));
}

#page-body {
  padding: 160px 0 110px;
}

body.post-type-archive-project #page-body,
body.term-construction #page-body {
  padding-top: 220px;
}

body.page-contact #page-body {
  margin-top: auto;
}

.contact-info {
  font-size: 20px;
  font-weight: 500;
}

#contact-map {
  min-height: 200px;
  height: 100%;
  aspect-ratio: 1/1;
  display: block;
  margin-left: auto;
}

.subsection-intro {
  font-weight: 500;
  font-size: 36px;
}

.subsection-intro img {
  display: inline;
  width: auto !important;
  height: 66px !important;
  vertical-align: middle;
}

.member-grid {
  border-top: 1px solid rgba(var(--color-grey), 0.7);
  border-bottom: 1px solid rgba(var(--color-grey), 0.7);
}

.member-card {
  padding: 15px 0;
}

.member-card-header {
  border-bottom: 1px solid rgba(var(--color-grey), 0.7);
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  padding-right: 85px;
  min-height: 90px;
}

.member-card-img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
}

.member-card-title {
  font-size: 19px;
  font-weight: 700;
  /*text-transform: uppercase;*/
  margin: 0;
}

.member-card-subtitle {
  font-size: 19px;
  font-weight: 300;
  /*text-transform: lowercase;*/
  margin: 0;
}

.member-card-body {
  padding: 0 15px;
}

.member-card-desc {
  font-size: 14px;
  font-weight: 300;
  /*text-transform: uppercase;*/
}

.client-list {
  /*text-transform: uppercase;*/
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-list>li {
  display: inline-flex;
  align-items: center;
}

.client-list>li>strong {
  font-size: 19px;
  font-weight: 500;
}

.client-list>li>span {
  font-size: 14px;
  font-weight: 500;
  align-self: flex-start;
}

.client-list>li:not(:last-child)::after {
  font-weight: 500;
  content: "/";
  margin: 0 10px;
}

.subsection+.subsection {
  margin-top: 40px;
}

/*extra*/
.blog-card {
  border: 1px solid rgb(var(--color-grey));
  padding: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-header {
  position: relative;
}

.blog-card-header::before {
  padding-top: 66.66%;
  display: block;
  content: "";
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.blog-card-body {
  padding: 10px 0 0;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  text-align: center;
}

.entry-header+.entry-body,
.entry-body+.entry-footer,
.entry-header+.entry-footer {
  margin-top: 20px;
}

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

.entry-title {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
}

.entry-footer {
  background-color: rgba(var(--color-grey), 0.2);
  color: rgb(10, 10, 10);
  padding: 15px;
}

.entry-meta,
.entry-meta ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.entry-meta>li {
  display: flex;
}

.entry-meta>li:not(:last-child) {
  margin-bottom: 5px;
}

.entry-meta>li>i {
  width: 26px;
  align-self: center;
}

.entry-meta>li>strong {
  margin-right: 5px;
}

.entry-meta ul {
  display: inline-flex;
  flex-wrap: wrap;
}

.entry-meta ul>li:not(:last-child)::after {
  content: ",";
  display: inline;
  margin-right: 5px;
}

.entry-author {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin-top: 30px;
}

.entry-author-img {
  max-width: 120px;
  min-width: 120px;
  height: 120px;
  object-fit: cover;
  overflow: hidden;
}

.entry-author-title {
  margin-right: 20px;
}

.appear-on-scroll {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 600ms ease-in-out 0s;
}

.appear-on-scroll.come-in,
.appear-on-scroll.already-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.project-desc,
.project-info,
.project-info>li,
.contact-info>p,
.subsection-intro .subsection-body>div {
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: all 400ms ease-in-out 0ms;
}

.project-info>li {
  transition-delay: 1500ms;
}

body.loaded .project-desc,
body.loaded .project-info,
body.loaded .project-info>li,
body.loaded .contact-info>p,
body.loaded .subsection-intro .subsection-body>div {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.ba-container {
  position: relative;
  overflow: hidden;
  user-select: none;
}

.ba-before,
.ba-after {
  position: relative;
  width: 100%;
  height: 100%;
}

.ba-after-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #fff;
  cursor: ew-resize;
  z-index: 3;
  left: 50%;
}

.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0;
}

.ba-handler {
  background-color: #fff;
  width: 30px;
  height: 70px;
  border-radius: 30px;
}

.ba-arrow {
  width: 24px;
  height: 24px;
  background: url(../img/icon-arrow.svg)no-repeat center/cover;
  filter: brightness(0) invert(1);
}

.ba-arrow-left {
  transform: rotate(-90deg);
}

.ba-arrow-right {
  transform: rotate(90deg);
}

.ba-handle.active {
  filter: brightness(0) invert(0);
}

#sidebar {
  height: 100%;
}

.sblock {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sblock-title {
  color: rgb(3, 5, 6);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}

.filter-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}

.filter-nav>li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-nav>li.active>a {
  color: rgb(var(--color-black));
}

.filter-nav>li::before {
  min-width: 10px;
  max-width: 10px;
  height: 10px;
  border: 1px solid rgb(var(--color-black));
  content: '';
}

.filter-nav>li.active::before {
  background: rgb(var(--color-black));
}

.filter-grid>div.disabled {
  opacity: .3;
}

.filter-grid>div.disabled .project-card-img {
  filter: grayscale(1);
}

.filter-grid>div.disabled .project-card-body {
  display: none;
}

/*Plugins*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;

  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*CMS*/
.entry-content h6 {
  font-size: 16px;
}

.entry-content h5 {
  font-size: 18px;
}

.entry-content h4 {
  font-size: 20px;
}

.entry-content h3 {
  font-size: 22px;
}

.entry-content h2 {
  font-size: 24px;
}

.entry-content h1 {
  font-size: 26px;
}

.entry-content p:last-child {
  margin-bottom: 0;
}

.entry-content iframe {
  border: none;
}

.entry-content img {
  max-width: 100%;
  margin: 0 0 1.5em 0;
  height: auto !important;
}

.entry-content video {
  width: 100%;
}

.entry-content iframe {
  max-width: 100% !important;
  display: block;
  margin: 0 auto;
  border: none;
}

.alignleft,
img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}

.alignright,
img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}

.aligncenter,
img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}

.alignnone,
img.alignnone {
  /* not sure about this one */
}

.post-image-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}

.post-image-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}

.post-image-caption p.post-image-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}

.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}

blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}

blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}

/*Responsive*/

@media (max-width: 991.98px) {
  .logo>img:nth-child(1) {
    display: none;
  }

  #navigation {
    background: #fff;
    width: 100vw;
    height: 100dvh;
    transform: translateY(-100%);
    padding: 100px 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 600ms ease-in-out;
  }

  #navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  #navigation>ul {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  #navigation>ul>li>a {
    color: rgb(3, 5, 6);
    font-size: 16px;
    font-weight: 500;
    /*text-transform: uppercase;*/
  }

  #navigation>ul>li>a:hover,
  #navigation>ul>li.current-menu-item>a {
    color: rgb(var(--color-grey));
  }

  .section-header {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .project-card-title,
  .project-card-subtitle {
    font-size: 16px !important;
  }

  .project-list .project-card::after {
    height: 20px;
  }

  #footer {
    text-align: center;
  }

  .copyright {
    margin: 10px 0;
  }

  .project-column {
    width: 100vw !important;
    min-width: none !important;
    max-width: none !important;
    margin-bottom: 24px;
  }

  .project-column-embed>iframe,
  .project-column-video>video,
  .project-column-image>img {
    width: 100%;
  }

  .project-column-back {
    height: 200px;
  }

  .nav-toggle,
  .nav-close {
    font-size: 0;
    cursor: pointer;
    position: relative;
  }

  .nav-toggle {
    width: 40px;
    height: 12px;
    border-top: 2px solid rgb(3, 5, 6);
    border-bottom: 2px solid rgb(3, 5, 6);
  }

  .nav-close {
    width: 40px;
    height: 16px;
  }

  .nav-close::before,
  .nav-close::after {
    width: 40px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 50% 50%;
    background: rgb(3, 5, 6);
    content: "";
  }

  .nav-close::before {
    transform: translate(-50%, -50%) rotate(135deg);
  }

  .nav-close::after {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  body:not(.nav-opened) .nav-close {
    display: none;
  }

  body.nav-opened .nav-toggle {
    display: none;
  }

  .section-project .section-subheader {
    padding-top: 120px;
  }

  .section-project .section-helper {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section-project .section-title,
  .section-project .section-subtitle {
    font-size: 32px;
  }

  .subsection-intro {
    font-size: 42px;
  }

  #page-body {
    padding: 120px 0 80px;
  }

  .container-fluid {
    max-width: 100vw;
  }

  #sidebar {
    border-top: 1px solid rgba(var(--color-grey), 0.7);
    padding-top: 30px;
  }
}

@media (min-width: 992px) {
  .logo>img:nth-child(2) {
    display: none;
  }

  .nav-toggle,
  .nav-close {
    display: none;
  }

  #navigation>ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
  }

  #navigation>ul>li:not(:last-child) {
    margin-right: 35px;
  }

  #navigation>ul>li {
    position: relative;
  }

  #navigation>ul>li.current-menu-item::after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(var(--color-grey));
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 8px);
    content: "";
  }

  #navigation>ul>li>a {
    color: rgb(3, 5, 6);
    font-size: 16px;
    font-weight: 500;
    /*text-transform: uppercase;*/
  }

  #navigation>ul>li:hover>a,
  #navigation>ul>li.current-menu-item>a {
    color: rgb(var(--color-grey));
  }

  .copyright {
    margin-left: 30px;
  }

  .social-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 30px;
  }

  body.single-project #header {
    background: none;
  }

  body.single-project #footer {
    display: none;
  }

  html:has(body.single-project) {
    background: rgb(var(--color-white));
  }

  .project-carousel {
    display: flex;
    height: 100dvh;
  }

  .project-carousel>div {
    width: 100%;
    height: 100dvh;
  }

  .project-carousel>div:not(:last-child) {
    margin-right: 24px;
  }

  .project-intro {
    min-width: 700px;
    max-width: 40vw;
    height: 100dvh;
    padding: 160px 7.5vw 110px calc(7.5vw + 15px);
  }

  .project-column-embed>iframe,
  .project-column-video>video,
  .project-column-compare img,
  .project-column-image>img {
    height: 100dvh;
  }

  .project-column-back {
    min-width: 30vw;
    max-width: 30vw;
  }

  .section-project .section-subheader {
    height: 100dvh;
  }

  .section-project .section-header {
    justify-content: start;
  }

  body.sticky .section-project .section-header .section-subtitle::before {
    margin-left: 20px;
    content: "";
  }

  .section-project .section-title,
  .section-project .section-subtitle {
    font-size: 50px;
    transform: translateY(0);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
  }

  body.home:not(.sticky) .section-project .section-title,
  body.home:not(.sticky) .section-project .section-subtitle {
    font-size: 5.5vw;
  }

  body.home:not(.sticky) .section-project .section-header {
    width: 58.333333%;
    align-items: end;
    flex-direction: column;
    transform: translateY(-60vh) scale(1);
    transition: background 0s !important;
  }

  .project-carousel .project-column:nth-child(n + 2) {
    transform: translateX(-50vw);
    opacity: 0;
    visibility: hidden;
    transition: all 1500ms ease-in-out 500ms;
  }

  body.loaded .project-carousel .project-column:nth-child(n + 2) {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .project-column-compare {
    overflow: unset !important;
  }

  .project-column-compare>div:nth-child(1)>img {
    width: auto !important;
  }

  body.single-project .project-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  body.single-project .project-carousel::-webkit-scrollbar {
    display: none;
  }

  .project-carousel::before {
    background: url(../img/arrow.svg) no-repeat left bottom;
    background-size: 100% auto;
    filter: brightness(0) invert(1);
    position: absolute;
    top: 50%;
    right: 160px;
    width: 80px;
    height: 50px;
    margin-top: -25px;
    animation: arrow 1000ms ease-in-out infinite alternate-reverse;
    z-index: 1;
    transition: all 500ms ease-in-out;
    content: "";
  }

  @keyframes arrow {
    to {
      transform: translateX(-50px);
    }

    to {
      transform: translateX(50px);
    }
  }

  body.scrolled .project-carousel::before {
    opacity: 0;
    visibility: hidden;
  }

  .project-column-partner {
    padding: 160px 7.5vw 110px;
    width: auto;
  }

  .partner-list {
    height: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    width: auto;
    align-content: flex-start;
    writing-mode: vertical-lr;
  }

  .partner-list>strong,
  .partner-list>div {
    writing-mode: horizontal-tb;
    display: block;
    width: 170px;
  }

  #sidebar {
    border-right: 1px solid rgba(var(--color-grey), 0.7);
  }

  .sblock {
    position: sticky;
    top: 100px;
  }
}