/*
Theme Name: Brandon Schubert
Author: SignalOverNoise
Author URI: https://signalovernoise.io/
Description: BRANDON SCHUBERT
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brandon-schubert
*/


:root {
  --filter-btn-border-rd: 10px;
  --filter-btn-easing: all 660ms cubic-bezier(0.15, 0.15, 0, 1);
  ;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

img,
video {
  width: 100%;
  display: flex;
  height: auto;
}

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

html {
  scroll-behavior: smooth;
  margin-top: 0 !important;
}

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

/* @font-face {
  font-family: "ABC-Marist";
  src: url("./assets/fonts/ABCMarist-Regular.otf") format("opentype");
  font-weight: 400;
}

@font-face {
  font-family: "ABC-Marist-Italic";
  src: url("./assets/fonts/ABCMarist-RegularItalic.otf") format("opentype");
  font-weight: 400;
} */

@font-face {
  font-family: 'ABC-Marist-Italic';
  src: url('./assets/fonts/ABCMarist-RegularItalic.woff2') format('woff2'),
    url('./assets/fonts/ABCMarist-RegularItalic.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'ABC-Marist';
  src: url('./assets/fonts/ABCMarist-Regular.woff2') format('woff2'),
    url('./assets/fonts/ABCMarist-Regular.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}




.text {
  font-size: clamp(14px, 2.5vw, 18px);
  color: #000;
  font-family: "ABC-Marist";
  font-style: normal;
  font-weight: 400;
  /* line-height: 20px; */
  line-height: clamp(16px, 3vw, 20px);
}

.hover-italic:hover {
  font-family: "ABC-Marist-Italic";
}

.title {
  font-size: clamp(14px, 2.5vw, 18px);
  color: #000;
  font-family: "ABC-Marist";
  font-style: normal;
  font-weight: 400;
  line-height: clamp(16px, 3vw, 20px);
  /* line-height: 20px; */
  text-transform: uppercase;
}

.description {
  color: #000;
  font-family: "ABC-Marist";
  font-size: clamp(18px, 3.5vw, 24px);
  font-weight: 400;
  line-height: clamp(20px, 4vw, 24px);
  /* line-height: 24px; */
  font-style: normal;
}

.gap-xs-y {
  margin-top: 10px;
  margin-bottom: 10px;
}

.gap-xs-b {
  margin-bottom: 10px;
}

.gap-xs-t {
  margin-top: 10px;
}

.gap-sm-y {
  margin-top: 20px;
  margin-bottom: 20px;
}

.gap-sm-t {
  margin-top: 20px;
}

.gap-sm-b {
  margin-bottom: 20px;
}

.gap-md-y {
  margin-top: 40px;
  margin-bottom: 40px;
}

.gap-md-t {
  margin-top: 40px;
}

.gap-md-b {
  margin-bottom: 40px;
}

.gap-pd-b {
  padding-bottom: 40px;
}

.gap-lg-y {
  margin-top: 80px;
  margin-bottom: 80px;
}

.gap-lg-b {
  margin-bottom: 80px;
}



.gap-lg-t {
  margin-top: 80px;
}

@media (max-width:760px) {
  .gap-lg-b {
    margin-bottom: 40px;
  }

  .gap-lg-t {
    margin-top: 40px;
  }

  .gap-md-t {
    margin-top: 20px;
  }

  .gap-md-b {
    margin-bottom: 20px;
  }

  .info-text-contact-page-mobile {
    margin-top: 40px;
  }
}

section {
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 10px;
}

.section-border {
  border-top: 1px solid #000;
}

.span-full {
  grid-column: 1/-1;
}

.span-2 {
  grid-column: span 2;
}

.span-2-right {
  grid-column: 11/-1;
}

.span-2-bottom {
  grid-column: span 2;
  align-self: end;
}

.col-11 {
  grid-column: 11 / span 1;
}

.col-12 {
  grid-column: 12/-1;
}

.column-flex-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.grid-item-center {
  align-self: center;
}

.table-border-b {
  border-bottom: 1px solid #000;
}

.table-border-t {
  border-top: 1px solid #000;
}

.filter-btn-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .filter-btn-wrapper {
    /* flex-direction: column-reverse; */
    align-items: start !important;
  }
}

/* HTML: <div class="pixel-corner"></div> */
.active-news-filter .bavel-border,
.active-news-filter .bavel-bg {
  background-color: #bce4e5;
}

/* 
.hover-active:hover .bavel-border,
.hover-active:hover .bavel-bg {
  background-color: #bce4e5;
} */

.bavel-border {
  background-color: black;
  padding: 0.9px 0.8px;
  transition: var(--filter-btn-easing);
  display: flex;
  justify-content: center;
  clip-path: polygon(0% 0%,
      92% 0%,
      100% 0%,
      100% 70%,
      100% 100%,
      0% 100%,
      0% 70%,
      0% 30%)
}



.bavel-bg {
  background-color: #faf4ed;
  width: 100%;
  text-align: center;
  transition: var(--filter-btn-easing);
  padding: 10px;
  padding-bottom: 5px;
  padding-top: 7px;
  clip-path: polygon(0% 0%,
      92% 0%,
      100% 0%,
      100% 70%,
      100% 100%,
      0% 100%,
      0% 70%,
      0% 30%)
}

.bavel-border:hover {
  clip-path: polygon(8% 0%,
      92% 0%,
      100% 30%,
      100% 70%,
      92% 100%,
      8% 100%,
      0% 70%,
      0% 30%);
}

.bavel-bg:hover {
  clip-path: polygon(8% 0%,
      92% 0%,
      100% 30%,
      100% 70%,
      92% 100%,
      8% 100%,
      0% 70%,
      0% 30%);
}


.filter-btn.active .bavel-bg {
  clip-path: polygon(8% 0%,
      92% 0%,
      100% 30%,
      100% 70%,
      92% 100%,
      8% 100%,
      0% 70%,
      0% 30%);
}

.filter-btn.active .bavel-border {
  clip-path: polygon(8% 0%,
      92% 0%,
      100% 30%,
      100% 70%,
      92% 100%,
      8% 100%,
      0% 70%,
      0% 30%);
}


.active-news-filter {
  background: #bce4e5;
  border: none;
}

.active-news-filter .filter-btn-inner {
  background: #bce4e5;
}

.active-news-filter .bavel-border {
  clip-path: polygon(8% 0%,
      92% 0%,
      100% 30%,
      100% 70%,
      92% 100%,
      8% 100%,
      0% 70%,
      0% 30%);
}


.active-news-filter .bavel-bg {
  clip-path: polygon(8% 0%,
      92% 0%,
      100% 30%,
      100% 70%,
      92% 100%,
      8% 100%,
      0% 70%,
      0% 30%);
}

@supports (corner-shape: bevel) {
  .bavel-border {
    background-color: transparent;
    padding: 1px;
    border-radius: 0px;
    transition: var(--filter-btn-easing);
    display: flex;
    clip-path: none;
    justify-content: center;
  }

  .bavel-bg {
    /* 	  background-color: #faf4ed; */
    border: 1px solid black;
    width: 100%;
    clip-path: none;
    text-align: center;
    transition: var(--filter-btn-easing);
    border-radius: 0px;
    padding: 10px;
    padding-bottom: 5px;
    padding-top: 7px;
  }

  .bavel-border:hover {
    corner-shape: bevel;
    clip-path: none;
    border-radius: var(--filter-btn-border-rd);
  }

  .bavel-bg:hover {
    corner-shape: bevel;
    clip-path: none;
    border-radius: var(--filter-btn-border-rd);
  }

  .filter-btn.active .bavel-border {
    corner-shape: bevel;
    clip-path: none;
    border-radius: var(--filter-btn-border-rd);
  }

  .filter-btn.active .bavel-bg {
    corner-shape: bevel;
    clip-path: none;
    border: none;
    border-radius: var(--filter-btn-border-rd);
  }

  .active-news-filter .bavel-border {
    corner-shape: bevel;
    clip-path: none;
    border-radius: var(--filter-btn-border-rd);
  }


  .active-news-filter .bavel-bg {
    corner-shape: bevel;
    border: none;
    clip-path: none;
    border-radius: var(--filter-btn-border-rd);
  }
}


.flex-column {
  display: flex;
  flex-direction: column;
}

.mt-auto {
  margin-top: auto;
}

.sticky-title {
  position: sticky;
  top: 10px;
  left: 0;
  z-index: 999;
  pointer-events: none;
}

.sticky-title a {
  pointer-events: auto;
}

.sticky-title h2 {
  /* width: 50%; */
  background: #faf4ed;
}

@media (max-width: 991px) {
  .sticky-title {
    display: none;
  }
}

.sticky-title-mobile {
  display: none;
}

@media (max-width: 991px) {
  .sticky-title-mobile {
    display: block;
  }
}

.p-xs-t {
  padding-top: 10px;
}

@media (max-width: 991px) {
  .explore-section .md-flex {
    display: flex;
    flex-direction: column-reverse;
  }

  .team-section .md-flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .explore-section .btn-wrapper-between {
    /* flex-direction: column-reverse; */
    align-items: start !important;
  }
}

@media (max-width:500px) {
  .explore-section .btn-wrapper-between {
    flex-direction: column-reverse;
    align-items: start !important;
  }
}

@media (max-width: 991px) {
  .md-hidden {
    display: none;
  }
}

.overflow-visible {
  overflow: visible !important;
}


.lg-right-md-full {
  grid-column: 7/12;
}

@media (max-width: 991px) {
  .lg-right-md-full {
    grid-column: 1/-1;
  }
}

.lg-span-6-md-span-full {
  grid-column: span 6;
}

@media (max-width: 1199px) {
  .lg-span-6-md-span-full {
    grid-column: span 6;
  }
}

@media (max-width: 991px) {
  .lg-span-6-md-span-full {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .lg-span-6-md-span-full {
    grid-column: 1/-1;
  }
}

.lg-span-6-right-md-full {
  grid-column: 7/-1;
}

@media (max-width: 991px) {
  .lg-span-6-right-md-full {
    grid-column: 1/-1;
  }
}

.lg-span-6-left-md-full {
  grid-column: 1/7;
}

@media (max-width: 991px) {
  .lg-span-6-left-md-full {
    grid-column: 1/-1;
  }
}

.lg-span-4-left-md-full {
  grid-column: 1/5;
}

@media (max-width: 991px) {
  .lg-span-4-left-md-full {
    grid-column: 1/-1;
  }
}

.lg-span-3-md-span-full {
  grid-column: span 3;
}

@media (max-width: 991px) {
  .lg-span-3-md-span-full {
    grid-column: 1/-1;
  }
}

.lg-span-7-10-md-span-full {
  grid-column: 7/10;
}

@media (max-width: 991px) {
  .lg-span-7-10-md-span-full {
    grid-column: 1/-1;
  }
}

.lg-span-10-right-md-span-full {
  grid-column: 10/-1;
}

@media (max-width: 991px) {
  .lg-span-10-right-md-span-full {
    grid-column: 1/-1;
  }
}

.lg-span-10-12-md-span-full {
  grid-column: 7/12;
}

@media (max-width: 991px) {
  .lg-span-10-12-md-span-full {
    grid-column: 1/-1;
  }
}

.lg-span-7-9-md-span-full {
  grid-column: 7/9;
}

@media (max-width: 991px) {
  .lg-span-7-9-md-span-full {
    grid-column: 1/-1;
  }
}

.lg-span-2-md-span-full {
  grid-column: span 2;
}

@media (max-width: 991px) {
  .lg-span-2-md-span-full {
    grid-column: 1/-1;
  }
}

.icon-wrapper {
  display: flex;
  column-gap: 10px;
  cursor: pointer;
  align-items: center;
}

.icon-wrapper .arrow-icon {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.icon-wrapper:hover .arrow-icon {
  opacity: 1;
}

.post-hover .image-container {
  transition: all 660ms cubic-bezier(0.15, 0.15, 0, 1);
  overflow: hidden;
  clip-path: polygon(0px 0,
      calc(100% - 20px) 0,
      100% 0px,
      100% calc(100% - 20px),
      calc(100% - 0px) 100%,
      0px 100%,
      0 calc(100% - 20px),
      0 20px);
}

.post-hover:hover .image-container {
  clip-path: polygon(15px 0,
      calc(100% - 15px) 0,
      100% 15px,
      100% calc(100% - 15px),
      calc(100% - 15px) 100%,
      15px 100%,
      0 calc(100% - 15px),
      0 15px);
}

@supports (corner-shape: bevel) {
  .post-hover .image-container {
    corner-shape: bevel;
    border-radius: 0px;
    clip-path: none !important;
  }

  .post-hover:hover .image-container {
    border-radius: 15px;
    clip-path: none !important;
  }

  footer .container {
    border: 1px solid #000;
    border-radius: 15px;
    corner-shape: bevel;
    clip-path: none !important;
  }

  .footer_border-wrapper {
    clip-path: none !important;
    background-color: #faf4ed !important;
    padding: 0 !important;
  }
}

.footer_border-wrapper {
  background-color: black;
  clip-path: polygon(15.5px 0,
      calc(100% - 15.5px) 0,
      100% 15.5px,
      100% calc(100% - 15.5px),
      calc(100% - 15.5px) 100%,
      15.5px 100%,
      0 calc(100% - 15.5px),
      0 15.5px);
  padding: 1px;
}

footer .container {
  background-color: #faf4ed;
  clip-path: polygon(15px 0,
      calc(100% - 15px) 0,
      100% 15px,
      100% calc(100% - 15px),
      calc(100% - 15px) 100%,
      15px 100%,
      0 calc(100% - 15px),
      0 15px);
}

.post-hover .project-caption-hover {
  display: flex;
  column-gap: 10px;
  align-items: center;
}

.post-hover .arrow-icon-svg {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.arrow-icon-svg {
  width: 10px;
  height: 10px;
  mask: url("./assets/Icons/title-arrow.svg") no-repeat;
  mask-size: contain;
  background-color: #000;
  mask-position: 0% 50%;
}

.post-hover:hover .arrow-icon-svg {
  opacity: 1;
}

.single__news__row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
  cursor: pointer;
  padding: 10px 0;
}

/* .news-container .single-news-row:first-child{
  border-top: 1px solid #000;
} */
.news-hover-image {
  opacity: 0;
}

@media (max-width: 991px) {
  .news-hover-image {
    display: none;
  }
}

.single-news-row.is-first-visible .single__news__row {
  border-top: 1px solid #000;
}

.news-section-home .single-news-row:first-child .single__news__row {
  border-top: 1px solid #000;
}

.news-hover-image img {
  width: 100%;
  max-width: 50%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.flex-wrap {
  flex-wrap: wrap;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  background: #faf4ed;
  padding-left: 10px;
  padding-right: 10px;
  z-index: 9;
  width: 100%;
}

header .title-header-center {
  grid-column: 7/10;
  align-self: center;
}

header .title-header-center .back-top-btn {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: none;
}

header .title-header-center:hover .back-top-btn {
  opacity: 1;
}

header .title-header-center .arrow-icon {
  display: none;
  opacity: 1;
}

header .title-header-center .arrow-icon .arrow-icon-svg {
  transform: rotate(-45deg);
}

@media (max-width: 991px) {
  header .title-header-center {
    display: none;
  }
}

header .hamberger-menu-mobile {
  display: none;
}

@media (max-width: 991px) {
  header .hamberger-menu-mobile {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  header .hamberger-menu-mobile .hamberger-line {
    /* width: 25px; */
    /* height: 2px; */
    background: #000;
  }

  header .logo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-column: 1/-1;
  }
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: end;
  column-gap: 10px;
}

nav ul a {
  display: flex;
  align-content: center;
  justify-content: center;
  /*   width: 3.8rem; */
}

@media (max-width: 991px) {
  .nav-items-header {
    display: none;
  }
}

.menu-mobile {
  display: none;
  position: relative;
}

.menu-mobile nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-mobile nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-mobile nav ul a:hover {
  font-family: "ABC-Marist";
}

.menu-mobile .close-menu-mobile {
  position: absolute;
  top: 10px;
  z-index: 99;
  right: 10px;
  /* transform: rotate(45deg); */
}

.menu-mobile .close-menu-mobile .close-line {
  /* width: 30px; */
  /* height: 2px; */
  /* background: #000; */
}

.menu-mobile .close-menu-mobile .close-line:first-child {
  /* transform: rotate(90deg) translateX(8%); */
}

@media (max-width: 991px) {
  .menu-mobile {
    width: 100%;
    height: 100vh;
    /* fallback */
    height: calc(var(--vh, 1vh) * 100);
    /* JS-driven exact height */
    height: 100dvh;
    /* best modern solution, overrides above if supported */
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    /* This is the key change */
    z-index: 99;
    background: #faf4ed;
    /* Extend into Safari's safe area */
    padding-bottom: env(safe-area-inset-bottom);
  }
}

.hero-section .image-container {
  padding-top: 32px;
  max-height: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.hero-section .image-container .hero-arrow {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  background: #faf4ed;
  cursor: pointer;
  transform: translateX(-50%);
  bottom: 4%;
  mask: url("./assets/Icons/hero-arrow.svg") no-repeat;
  mask-size: contain;
  mask-position: 0% 50%;
}

footer {
  padding: 10px;
  padding-top: 0;
}

footer .span-2:first-child {
  padding-left: 15px;
  padding-bottom: 15px;
}

@media (max-width: 991px) {
  footer .span-2 {
    grid-column: 1/-1;
    padding-left: 15px;
    padding-bottom: 15px;
  }
}

footer .col-11-md-full {
  padding-bottom: 15px;
  grid-column: 11 / span 1;
}

@media (max-width: 991px) {
  footer .col-11-md-full {
    grid-column: 1/-1;
    padding-left: 15px;
    padding-bottom: 15px;
  }
}

footer .col-12-md-full {
  padding-right: 15px;
  padding-bottom: 15px;
  grid-column: 12/-1;
}

@media (max-width: 991px) {
  footer .col-12-md-full {
    grid-column: 1/-1;
    padding-left: 15px;
    padding-bottom: 15px;
  }
}

footer .container {}

.footer-center-logo {
  grid-column: 1/-1;
  align-self: center;
  justify-self: start;
  display: flex;
  grid-row: 1;
  padding-left: 15px;
  padding-top: 15px;
  align-items: center;
  justify-content: center;
  /* margin-top: 13.5%; */
  margin-bottom: 23.5%;
}

@media (max-width: 991px) {
  .footer-center-logo {
    /* margin-top: 7.5rem; */
    margin-bottom: calc(5.5rem + 7.5rem);
  }
}

.footer-center-logo .image-container {
  display: block;
}

.footer-center-logo .image-container img {
  width: 100%;
}

.btn-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}

.btn-wrapper button:first-child {
  cursor: pointer;
  width: 5.3rem;
}

.btn-wrapper .filter-btn {
  width: auto !important;
}

.filter-btn.active .bavel-border {
  background: #bce4e5;
  border: none;
}

.filter-btn.active .bavel-bg {
  background-color: #bce4e5;
}

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

.btn-normal {
  border: none;
  background: none;
  cursor: pointer;
}

.sekelton-explore {
  width: 100%;
  height: 21.0625rem;
  position: relative;
  overflow: hidden;
  background-color: #dddbdd;
}

.sekelton-explore::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0.2) 20%,
      rgba(255, 255, 255, 0.5) 60%,
      rgba(255, 255, 255, 0));
  animation: shimmer 1s infinite linear;
  content: "";
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

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

@media (max-width: 1199px) {
  .explore-section .image-container {
    z-index: 1;
  }
}

.large-view-explore {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
  gap: 10px;
}

@media (max-width: 1199px) {
  .large-view-explore {
    grid-auto-rows: 40vw;
  }
}

@media (max-width: 991px) {
  .large-view-explore {
    grid-auto-rows: 60vw;
  }
}

@media (max-width: 767px) {
  .large-view-explore {
    display: flex;
    flex-direction: column;
  }

  .large-view-explore .image-container-explore {
    /* aspect-ratio: 8/10; */
    /* height: 100%; */
    height: 118dvw !important;
    transition: none !important;

  }

  .slider-explore .image-container {
    height: 118dvw !important;
  }

  .slider-explore .image-container img {
    object-fit: cover !important;
  }

}

.large-view-explore .explore-single-item {
  grid-column: span 3;
}

@media (max-width: 1199px) {
  .large-view-explore .explore-single-item {
    grid-column: span 4;
  }
}

@media (max-width: 991px) {
  .large-view-explore .explore-single-item {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .large-view-explore .explore-single-item {
    grid-column: 1/-1;
  }
}

.large-view-explore .sekelton-explore {
  grid-column: span 3;
  height: 31.875rem;
}

@media (max-width: 1199px) {
  .large-view-explore .sekelton-explore {
    grid-column: span 4;
  }
}

@media (max-width: 991px) {
  .large-view-explore .sekelton-explore {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .large-view-explore .sekelton-explore {
    grid-column: span 12;
  }
}

.large-view-explore .image-container-explore {
  width: 100%;
  cursor: pointer;
  height: 100%;
  aspect-ratio: 4 / 5;
}

@media (max-width: 991px) {
  .large-view-explore .image-container-explore {
    overflow: hidden;
  }
}

.large-view-explore .image-container-explore img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.small-view-explore {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
  gap: 10px;
}

@media (max-width: 1199px) {
  .small-view-explore {
    grid-auto-rows: 30vw;
  }
}

@media (max-width: 991px) {
  .small-view-explore {
    grid-auto-rows: 40vw;
  }
}

@media (max-width: 767px) {
  .small-view-explore {
    grid-auto-rows: 60vw;
  }
}

.small-view-explore .explore-single-item {
  grid-column: span 2;
}

@media (max-width: 1199px) {
  .small-view-explore .explore-single-item {
    grid-column: span 3;
  }
}

@media (max-width: 991px) {
  .small-view-explore .explore-single-item {
    grid-column: span 4;
  }
}

@media (max-width: 767px) {
  .small-view-explore .explore-single-item {
    grid-column: span 6;
  }
}

.small-view-explore .sekelton-explore {
  grid-column: span 2;
}

@media (max-width: 1199px) {
  .small-view-explore .sekelton-explore {
    grid-column: span 4;
  }
}

@media (max-width: 991px) {
  .small-view-explore .sekelton-explore {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .small-view-explore .sekelton-explore {
    grid-column: span 12;
  }
}

.small-view-explore .image-container-explore {
  width: 100%;
  cursor: pointer;
  height: 100%;
  aspect-ratio: 4/5;
}

@media (max-width: 991px) {
  .small-view-explore .image-container-explore {
    overflow: hidden;
  }
}

.small-view-explore .image-container-explore img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explore-lighthouse {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(250, 244, 237, 0.96);
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  padding-bottom: 10px;
  padding-top: 40px;
  opacity: 0;
  pointer-events: none;
}

.explore-lighthouse .flex-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 10px;
}

@media (max-width: 991px) {
  .explore-lighthouse .flex-container {
    flex-direction: column;
  }
}

.explore-lighthouse .slider-explore {
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 10px;
  overflow: hidden;
}

.explore-lighthouse .slider-explore .image-container {
  /* width: 40%; */
  grid-column: 7 / -1;
}

@media (max-width: 991px) {
  .explore-lighthouse .slider-explore .image-container {
    width: 80%;
  }
}

.explore-lighthouse .slider-explore .arrow-icon-svg {
  width: 15px;
  height: 15px;
}

.explore-lighthouse .slider-explore .left-arrow {
  transform: rotate(-135deg);
  cursor: pointer;
}

.explore-lighthouse .slider-explore .right-arrow {
  transform: rotate(45deg);
  cursor: pointer;
}

.explore-lighthouse .info-explore-lighouse {
  grid-column: 1/-1;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.explore-lighthouse .info-explore-lighouse .info-title-description {
  display: flex;
  column-gap: 10px;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .explore-lighthouse .info-explore-lighouse .info-title-description {
    flex-direction: column;
  }
}

.related-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 10px;
}

.related-wrapper .image-container img {
  height: auto;
}

@media (max-width: 1199px) {
  .team-section .lg-span-3-md-span-full {
    grid-column: span 6;
    margin-bottom: 1rem;
  }
}

@media (max-width: 991px) {
  .team-section .lg-span-3-md-span-full {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .team-section .lg-span-3-md-span-full {
    grid-column: 1/-1;
  }
}

.team-single-section {
  height: 100dvh;
  padding-top: 40px;
  overflow: hidden;
  padding-bottom: 10px;
}

.team-single-section .container {
  height: 100%;
}

.team-single-section .lg-span-6-md-span-full {
  padding-top: 40px;
  height: 100%;
  overflow: hidden;
}

.team-single-section .lg-span-6-md-span-full .container-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 10px;
}

.team-single-section .lg-span-6-md-span-full .container-grid-6 .description {
  grid-column: 1/6;
}

@media (max-width:769px) {
  .team-single-section .lg-span-6-md-span-full .container-grid-6 .description {
    grid-column: 1/-1;
  }
}

.team-single-section .lg-span-6-md-span-full .container-grid-4 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 10px;
}

.team-single-section .lg-span-6-md-span-full .container-grid-4 .description {
  grid-column: 1/5;
}

.team-single-section .lg-span-6-md-span-full .container-grid-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 10px;
}

.team-single-section .lg-span-6-md-span-full .image-container {
  height: 100%;
}

.team-single-section .lg-span-6-md-span-full .image-container img {
  height: 100%;
  object-fit: cover;
}

.team-single-section .bottom-team-wrapper {
  display: flex;
  justify-content: space-between;
}

.team-single-section .arrow-wrapper {
  display: flex;
  column-gap: 20px;
  align-content: end;
}

.team-single-section .arrow-wrapper .arrow-icon-svg {
  width: 15px;
  height: 15px;
}

.team-single-section .arrow-wrapper .arrow-left {
  transform: rotate(-135deg);
  cursor: pointer;
}

.team-single-section .arrow-wrapper .arrow-right {
  transform: rotate(45deg);
  cursor: pointer;
}

@media (max-width: 767px) {
  .contact-section {
    overflow-y: scroll;
    height: 100dvh;
    padding-bottom: 18px;
  }
}

.form-wrapper {
  width: 100%;
}

.form-wrapper .name-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-wrapper input {
  border: none;
  border-top: 1px solid #000;
  width: 100%;
  background: none;
  padding: 10px 0;
  padding-bottom: 20px;
  outline: none;
}

.form-wrapper input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.form-wrapper button {
  padding: 10px 0;
  width: 100%;
  border-top: 1px solid #000;
}

.image-container-explore {
  background-color: #eee;
  /* fallback */
}

.image-container-explore img {
  /* opacity: 0; */
  transition: opacity 1s ease;
}

.image-container-explore.loaded img {
  opacity: 1;
}

.header-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

body {
  background: #faf4ed;
}

/*# sourceMappingURL=global.css.map */

#wpadminbar {
  display: none;
}

.sorting-news-btn.active {
  font-family: "ABC-Marist-Italic";
}

.project-info-section .single__news__row {
  cursor: auto;
}

.social-media-contact {
  grid-column: 4/6;
}

.hero-section .span-full {
  height: calc(100dvh - 10px);
}

.hero-section .span-full .gap-xs-b {
  height: 100%;
}


.hero-section .span-full .gap-xs-b .image-container img {
  height: 100%;
  object-fit: cover;
}

nav ul li.active>a {
  font-family: "ABC-Marist-Italic";
}

.explore-single-item .post-hover {
  height: 100%;
}

.close-lighthouse-btn {
  grid-column: 7 / 8;
  align-self: end;
  width: max-content;
}

.arrow-wrapper-lighthouse {
  display: flex;
  align-items: center;
  grid-column: 12 / -1;
  justify-self: end;
  gap: 20px;
}

.arrow-wrapper-lighthouse .arrow-icon-svg {
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.arrow-wrapper-lighthouse .left-arrow {
  transform: rotate(-135deg);
}

.arrow-wrapper-lighthouse .right-arrow {
  transform: rotate(45deg);
}

.explore-lighthouse .slider-explore {
  justify-content: end;
}

.explore-lighthouse {
  /* padding-bottom: 0; */
}

.explore-lighthouse .flex-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.explore-lighthouse .slider-explore {
  align-items: center;
  height: calc(100dvh - 80px);
}

.bottom-content-lightout {
  /* height: 100%; */
}

.slider-explore .image-container {
  height: 100%;
  width: auto !important;
}

.slider-explore .image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.self-end {
  align-self: end;
}



@media (min-width:1024px) {
  .lg-span-6-md-span-full .image-container {
    height: 100dvh;
  }


  .lg-span-6-md-span-full img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .full-width-section-height {
    height: 100dvh;
  }

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

@media (max-width:1024px) {
  .lg-span-6-md-span-full .image-container {
    height: 80dvh;
  }

  .lg-span-6-md-span-full img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }


  .full-width-section-height {
    height: 80dvh;
  }

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



@media (max-width:600px) {
  .lg-span-6-md-span-full .image-container {
    height: 80dvh;
  }

  .lg-span-6-md-span-full img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .full-width-section-height {
    height: 80dvh;
  }

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

@media (max-width:500px) {
  .lg-span-6-md-span-full .image-container {
    height: 100%;
    aspect-ratio: 8/10;
  }

  .lg-span-6-md-span-full img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .full-width-section-height {
    height: 100%;
    aspect-ratio: 8/10;
  }

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




@media (max-width:1200px) {
  .bottom-content-lightout {
    height: auto !important;
  }
}

@media(min-width:1024px) {
  .header_menu_primary ul {
    display: grid;
    grid-template-columns: repeat(6, max-content);
    place-items: end;
  }

  .header_menu_primary ul li {
    width: fit-content;
    justify-self: center;
  }

  .header_menu_primary ul li a {
    position: relative;
  }



  .header_menu_primary ul li .regular {
    font-family: "ABC-Marist";
  }

  .header_menu_primary ul li .italic {
    font-family: "ABC-Marist-Italic";
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }

  .header_menu_primary ul li a:hover .italic {
    opacity: 1;
  }

  .header_menu_primary ul li a:hover .regular {
    opacity: 0;
  }

  .header_menu_primary ul .active .regular {
    opacity: 0;
  }

  .header_menu_primary ul .active .italic {
    opacity: 1;
  }

  .nav-items-headers {
    grid-column: 10/-1;
  }

  .logo-header {
    max-width: 248px;
  }

  .landscape__image__explore__lighthouse .image-container {
    width: 100% !important;
    grid-column: 1/-1 !important;
  }

  .landscape__image__explore__lighthouse .image-container img {
    object-fit: cover !important;
  }
}

.home-randomise-btn {
  padding: 5px 10px 0px 10px;
  margin-bottom: -2px;
}

@media (max-width:600px) {
  .home-randomise-btn {
    align-self: start;
    margin-bottom: 10px;
    padding-left: 0;
  }

  .explore-item:first-child {
    display: none;
  }

  .explore-section .btn-wrapper-between {
    gap: 0px;
  }
}

@media (max-width:1024px) {
  nav ul li .italic {
    display: none;
  }

  .explore-lighthouse .slider-explore {
    justify-content: center;
    display: flex;
  }

  .explore-lighthouse .slider-explore img {
    object-fit: contain;
  }

  .social-media-contact {
    grid-column: 5/7;
  }

  .career-page-bottom-text {
    margin-top: 80px;
  }

  .career-title-top {
    padding-top: 10px !important;
  }
}

.grid-col-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 10px;
}

.grid-col-5 .text {
  grid-column: span 5;
}

.cursor-normal {
  cursor: default;
}

.career-section {
  height: 100dvh;
  padding-top: 40px;
  padding-bottom: 10px;
  overflow: visible;
}

.career-section .lg-span-6-md-span-full {
  padding-top: 40px;
  overflow: visible;
  height: calc(100dvh - 50px);
}

@media (max-width:1024px) {
  .career-section .container {
    min-height: 100%;
    height: unset;
  }

  .career-section .lg-span-6-md-span-full:first-child {
    position: sticky;
    top: 0px;
    height: max-content;

  }


}

@media (max-width: 767px) {
  .career-section .lg-span-6-md-span-full:first-child {
    position: relative;
    padding-top: 0;
  }

  .no-margin-news-page-mobile {
    margin-bottom: 0;
  }

  .career-section {
    padding-top: 32px;
  }

  .career-section .lg-span-6-md-span-full {
    height: 100%;
  }

  .career-description {
    grid-column: 1/-1 !important;
  }

  .career-description-top-spacing {
    margin-top: 40px;
  }

  .description-explore-page-section {
    grid-row: 1;
  }

  .btn-wrapper button:first-child {
    width: auto;
  }

  .team-single-section .lg-span-6-md-span-full .container-grid-4 .description {
    grid-column: 1/-1;
  }

  .team-single-section .lg-span-6-md-span-full .container-grid-5 .span-2 {
    grid-column: 1/-1;
  }

  .social-media-contact {
    grid-column: 1/-1;
    margin-top: 20px;
  }

  .gap-small-two-images-mobile {
    margin-bottom: 10px !important;
  }

  .team-section-single-people {
    height: auto !important;
  }

  .grid-row-1-news-page {
    grid-row: 1;
  }

  .close-lighthouse-btn {
    grid-column: 1/5;
  }

  .project-info-section .single__news__row {
    flex-wrap: wrap;
  }

  .space-reduce-mobile-single-project-info {
    margin-top: 0px !important;
  }

  .remove-space-b-hero {
    margin-bottom: 0 !important;
  }

  .contact-section .lg-span-6-md-span-full:last-child {
    grid-row: 1;
    padding-top: 0;
  }

  .contact-section .lg-span-6-md-span-full:first-child {
    margin-top: 0;
    padding-top: 10px;
  }

  .form-mobile-contact .lg-span-6-md-span-full:first-child {
    padding-top: 0;
  }

  .contact-section {
    overflow: auto;
    padding-top: 32px;
  }

  .career-section {
    height: auto;
  }

  .form-mobile-contact {
    padding-top: 40px;
  }

  .contact-section .lg-span-6-md-span-full {
    overflow: unset;
  }
}

@media (max-width:1024px) {
  nav ul li a {
    font-size: 18px !important;
  }

  .menu-mobile .nav-logo-header {
    position: absolute;
    top: 0;
    left: 10px;
  }

  .menu-mobile nav {
    width: 100%;
    justify-content: start;
    align-items: end;
    padding: 10px;
  }

  .menu-mobile nav ul {
    width: 100%;
    gap: 0px;
    align-items: start;
  }

  .menu-mobile nav ul li {
    width: 100%;
    border-top: 1px solid black;
    padding: 10px 0;
  }

  .menu-mobile nav ul li:last-child {
    border-bottom: 1px solid black;
  }

  .menu-mobile nav a {
    width: 100%;
    text-transform: uppercase;
    justify-content: start;
  }
}

.career-description a:hover {
  font-family: "ABC-Marist-Italic";
}

.team-section-single-people {
  padding-top: 0;
}

.team-section-single-people .lg-span-6-md-span-full {
  padding-top: 20px;
}

.normal-case {
  text-transform: unset;
}

/* Remove All Hover State */
@media (max-width: 768px) {
  .career-description a {
    text-decoration: underline;
  }

  .hover-italic:hover {
    font-family: "ABC-Marist";
  }

  .icon-wrapper:hover .arrow-icon {
    opacity: 0;
  }

  .post-hover:hover .image-container {
    clip-path: polygon(0px 0,
        calc(100% - 20px) 0,
        100% 0px,
        100% calc(100% - 20px),
        calc(100% - 0px) 100%,
        0px 100%,
        0 calc(100% - 20px),
        0 20px);
  }

  .post-hover:hover .arrow-icon-svg {
    opacity: 0;
  }

  .bavel-border:hover {
    clip-path: polygon(0% 0%,
        92% 0%,
        100% 0%,
        100% 70%,
        100% 100%,
        0% 100%,
        0% 70%,
        0% 30%);
  }

  .bavel-bg:hover {
    clip-path: polygon(0% 0%,
        92% 0%,
        100% 0%,
        100% 70%,
        100% 100%,
        0% 100%,
        0% 70%,
        0% 30%);
  }

  .career-description a:hover {
    font-family: "ABC-Marist";
  }

  .menu-mobile nav ul a:hover {
    font-family: "ABC-Marist";
  }

  header .title-header-center:hover .back-top-btn {
    opacity: 0;
  }

  .header_menu_primary ul li a:hover .italic {
    opacity: 0;
  }

  .header_menu_primary ul li a:hover .regular {
    opacity: 1;
  }

  @supports (corner-shape: bevel) {
    .bavel-border:hover {
      corner-shape: unset;
      border-radius: 0px;
    }

    .bavel-bg:hover {
      corner-shape: unset;
      border-radius: 0px;
    }

    .post-hover:hover .image-container {
      border-radius: 0px;
    }
  }
}

.project-page .sticky-title a {
  display: none;
}

.single-project .sticky-title a {
  display: none;
}

@media (max-width:400px) {
  .explore-lighthouse .slider-explore .image-container {
    /* aspect-ratio: 7 / 10; */
  }
}