@font-face {
    font-family: 'Pangea';
    src: url('/public/font/PangeaTrial-Regular.woff2') format('woff2'),
    url('/public/font/PangeaTrial-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Pangea';
    src: url('/public/font/PangeaTrial-SemiBold.woff2') format('woff2'),
    url('/public/font/PangeaTrial-SemiBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

body {
    background-color: #323F4F;
    min-height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
    color: #FFF;
    font-size: 16px;
    padding-bottom: 18rem;
    font-family: Pangea, 'Helvetica', sans-serif;
}

@media (max-width:767px) {
    html.contact-active body, html.nav-active body {
        position: relative;
        overflow: hidden;
    }
}

blockquote {
    border-left: 8px solid #850031;
    padding-left: 5px;
}

body.poster {
    padding-bottom: 0;
}

.mobile-top {
    margin-top: 150px!important;
}

h1 {
    font-weight: bold;
}

h2, h3, h4, h5, h6 {
    font-weight: normal;
}

h6 {
    font-weight: bold;
}

a {
    text-decoration: none;
    color: #FFF;
}

a:hover {
    color: #EEE;
}

.prevent-margin-collapse {
    font-size: 0;
    display: block;
    line-height: 0;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 120vh;
    height: 100%;
    width: 100%;
    z-index: 20;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 90%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.particle-gradient {
    position: absolute;
    top: 0;
    width: 100vh;
    max-width: 100vw;
    max-height: 120vh;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.particle-gradient.left {
    background: radial-gradient(farthest-side at 0vw 0, rgba(96, 72, 87, 1) 0%, rgba(50, 63, 79, 0) 100%);
    width: 100vh;
    left: 0;
}

.particle-gradient.right {
    background: radial-gradient(farthest-side at 80vw 0, rgba(96, 72, 87, 1) 0%, rgba(50, 63, 79, 0) 100%);
    width: 100vh;
    right: 0;
}

.top-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 40;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
}

.top-nav nav {
    padding: 4rem 0;
    background-color: #465260;
    position: relative;
}

.top-nav__close {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}

.mobile-nav__toggle {
    position: fixed;
    right: 1rem;
    top: 1rem;
    z-index: 35;
}

.mobile-nav__toggle svg {
    width: 48px;
    height: 48px;
}

.top-nav nav ul {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
}

.top-nav nav ul li a {
    display: block;
    color: #FFF;
    position: relative;
    text-decoration: none;
    text-align: center;
    line-height: 4rem;
    font-size: 1.4rem;
}

.top-nav nav ul li:not(:last-child) {
    border-bottom: 1px solid #FFF;
}

.top-nav nav ul li a:hover {
    text-decoration: none;
}

@media (min-width:768px){
    .top-nav__close {
        display: none;
    }
    .mobile-nav__toggle {
        display: none;
    }
    .top-nav {
        display: block!important;
        position: absolute;
        top: 2rem;
        right: 2rem;
        bottom: auto;
        left: auto;
        z-index: 40;
        text-transform: uppercase;
        background-color: transparent;
    }

    .top-nav nav {
        padding: 0;
        background-color: transparent;
    }

    .top-nav nav ul {
        display: flex;
        gap: 3rem;
        list-style: none;
    }

    .top-nav nav ul li {
        display: block;
        border-bottom: none!important;
    }

    .top-nav nav ul li a {
        line-height: 2rem;
    }

    .top-nav nav ul li a::before {
        content: ' ';
        height: 0;
        width: 100%;
        position: absolute;
        top: -12px;
        left: 0;
        right: 0;
        background-color: #850031;
        transition: height 0.4s ease;
    }

    .top-nav nav ul li a.active::before, .top-nav nav ul li a:hover::before {
        height: 6px;
    }
}

.sidebar {
    position: absolute;
    height: 100vh;
}

.logo {
    position: absolute;
    top: 0;
    left: 2vw;
    z-index: 31;
}

.logo svg {
    width: 80px;
    height: 80px;
}

@media (min-width:768px){
    .logo {
        position: fixed;
    }
    .logo svg {
        width: 8vw;
        height: 8vw;
        max-width: 15vh;
        max-height: 15vh;
    }
}

.contact-button {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 41;
    display: none;
}

.contact-button.visible {
    display: block;
}

@media (min-width:768px){
    .contact-button {
        z-index: 15;
        display: block!important;
    }
}

.contact-button svg {
    position: absolute;
    bottom: 5rem;
    left: 2rem;
    cursor: pointer;
    z-index: 16;
}

.contact-button.active {
    z-index: 50;
}

.contact-overlay {
    background-color: #850031;
    transition: all 0.4s ease;
    max-width: 100vw;

    z-index: 51;
    position: fixed;
    top: 100%;
    right: 0;
    bottom: -100%;
    left: 0;
}
.contact-button.active .contact-overlay {
    top: 0;
    bottom: 0;
}

.contact-overlay .contact-form {
    padding: 1rem;
}
.contact-button.active .contact-overlay {
    max-height: 100vh;
}
.contact-form textarea {
    min-height: 100px;
}

@media (min-width:768px) {
    .contact-form textarea {
        min-height: 160px;
    }
    .contact-overlay {
        z-index: 49;
        overflow: hidden;
        max-height: 0;
        width: 100vw;
        height: calc(100vh - 120px);

        position: relative;
        overflow-y: auto;
        max-width: 1200px;
    }
    .contact-button.active .contact-overlay {
        max-height: 700px;
    }

    .contact-overlay .contact-form {
        /* height: calc(100vh - 2rem); */
        max-height: calc(800px - 2rem);
        width: calc(100vw - 2rem);
        max-width: calc(1200px - 2rem);
        padding: 4rem 2rem 2rem 6rem;
    }
}

.hero {
    position: relative;
    margin-top: 15vh;
    z-index: 10;
    text-align: center;
}

.hero:not(:first-child) {
    margin-top: 10vh;
}

.hero h2 {
    font-size: 2rem;
    color: #FFF;
    font-weight: normal;
    margin-bottom: 2rem;
}

h2.large {
    font-size: 4rem;
}

.hero h2::before {
    content: ' ';
    height: 6px;
    width: 100px;
    position: absolute;
    top: -12px;
    left: 50%;
    right: 0;
    background-color: #850031;
    transition: height 0.4s ease;
    transform: translateX(-50%);
}

.hero .subtitle {
    max-width: 95vw;
    margin: 0 auto 2rem auto;
}

@media (min-width:768px) {
    .hero .subtitle {
        max-width: 60vw;
    }
    .hero .subtitle h2 {
        font-size: 4rem;
    }
}

@media (min-width:2000px) {
    .hero .subtitle {
        max-width: 40vw;
    }
}

.project-teaser-container {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    margin: 4rem -2.5px;
    z-index: 2;
    position: relative;
}

.project-teaser-box--wrapper {
    padding: 2.5px;
    flex: 0 0 auto;
    width: 100%;
}

.project-teaser-box {
    font-weight: bold;
    background-color: #465260;
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    transition: background-color 0.4s ease;
    color: #FFF;
    text-decoration: none;
    width: 100%;
    height: 100%;

    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 1rem;
    cursor: pointer;
}

.project-teaser-box.timeline-box {
    cursor: default;
    display: block;
}

.project-teaser-box img {
    width: 40px;
    height: 40px;
}

.timeline__year {
    color: #ADBDD0;
    font-size: 2rem;
    text-align: center;
}

.project-teaser-box__text {
    font-weight: normal;
    font-size: 1rem;
}
.project-teaser-box__text p {
    margin: 0;
}
.project-teaser__chevron--right {
    width: 50px;
    color: #B0BDCE;
    transform: translateX(0);
    transition: all 0.4s ease;
}
.project-teaser-box--wrapper:hover .project-teaser-box, .project-teaser-box--wrapper[aria-expanded="true"] .project-teaser-box {
    background-color: #850031;
    text-decoration: none;
    color: #FFF;
}

.project-teaser-box--wrapper[aria-expanded="true"] .project-teaser__chevron--right {
    transform: translateX(10px);
}

.project-detail {
    background-color: #252E3A;
    text-align: left;
    z-index: 20;
    margin: 0 2.5px;
}

.project-detail__wrapper {
    padding: 2rem;
}

.timeline-box--wrapper {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .timeline-box--wrapper {
        flex: 1;
    }
}

@media (min-width:992px) {
    .project-teaser-box--wrapper {
        width: 20%;
    }
    .project-teaser-box {
        padding: 2rem;
        display: block;
        position: relative;
        text-align: center;
    }
    .project-teaser-box__text {
        margin-top: 2rem;
    }
    .project-teaser-box img {
        width: 70px;
        height: 70px;
    }
    .project-teaser__chevron--right {
        display: none;
    }
    .project-detail {
        order: 20;
    }
}

@media (min-width:768px) {

}

.btn {
    border-radius: 80px;
    padding: 1rem 1.5rem;
    transition: all 0.4s ease;
}

.btn-primary {
    background-color: #850031;
    border-color: #850031;
    text-transform: uppercase;
    color: #FFF;
}

.btn-primary:hover {
    background-color: rgba(133, 0, 49, 0.8);
    border-color: rgba(133, 0, 49, 0.8);
    padding: 1rem 1.7rem;
}

.btn-secondary {
    background-color: rgba(0,0,0,0);
    border-color: #FFFFFF;
    text-transform: uppercase;
    color: #FFF;
}

.btn-secondary:hover {
    background-color: rgba(133, 0, 49, 1);
    border-color: rgba(133, 0, 49, 1);
}

.text-image-container {
    z-index: unset;
}

.text-image {
    display: flex;
    gap: 5px;
    flex-direction: column-reverse;
}

.text-image .text-image__text {
    background-color: #465260;
    min-width: 0;
    flex: 1;
}

.text-image .text-image__image {
    min-width: 0;
    flex: 1;
    position: relative;
    z-index: 22;
}

.text-image .text-image__text .text-image__text-wrapper {
    position: relative;
    z-index: 2;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.text-image .text-image__text .text-image__text-wrapper p {
    text-align: center;
    width: 100%;
    padding: 2rem;
}

.text-image .text-image__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width:992px){
    .text-image {
        flex-direction: row;
    }

    .text-image .text-image__text .text-image__text-wrapper {
        width: 100%;
        height: 0;
        padding-bottom: 100%;
        position: relative;
    }

    .text-image .text-image__text .text-image__text-wrapper p {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        padding: 4rem;
    }
}

.text-two-col-wrapper {
    position: relative;
    z-index: 22;
    background-color: #252E3A;
    padding: 2rem;
}

#offerList {
    z-index: 25;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}
.offer-list__offer {
    background-color: #252E3A;
    border: none;
}
.offer-list__offer-heading {
    font-size: 2rem;
    padding: 2rem;
    transition: background-color 0.4s ease;
}
@media (min-width:768px) {
    .offer-list__offer-heading {
        font-size: 4rem;
    }
}
.offer-list__offer-heading[aria-expanded="false"] {
    background-color: #465260;
}
.offer-list__offer-heading[aria-expanded="true"] {
    background-color: #850031;
}

.offer-list__offer-content {
}

.offer-list__offer-content__wrapper {
    padding: 2rem;
}

.container-right {
    right: 0;
    left: 0;
    position: relative;
}

.footer {
    position: absolute;
    bottom: 0;
    margin-top: 8rem;
    background-color: #465260;
    padding: 4rem 2rem;
    gap: 30px;
}

.footer-tos {
    position: static;
    text-align: right;
}

.container-right-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.footer-text-2 {
    text-align: right;
    word-break: normal;
    white-space: nowrap;
}

@media (min-width:576px){
    .container-right {
        left: calc(50vw - 270px + 0.75rem);
    }

    .container-right-inner {
        padding-right: calc(50vw - 270px + 0.75rem);
    }
}

@media (min-width:768px){
    .container-right {
        left: calc(50vw - 360px + 0.75rem);
    }

    .container-right-inner {
        padding-right: calc(50vw - 360px + 0.75rem);
    }
}

@media (min-width:992px){
    .container-right {
        left: calc(50vw - 480px + 0.75rem);
    }

    .container-right-inner {
        padding-right: calc(50vw - 480px + 0.75rem);
    }
}

@media (min-width:1200px){
    .container-right {
        left: calc(50vw - 570px + 0.75rem);
    }

    .container-right-inner {
        padding-right: calc(50vw - 570px + 0.75rem);
    }
}

@media (min-width:1400px){
    .container-right {
        left: calc(50vw - 660px + 0.75rem);
    }

    .container-right-inner {
        padding-right: calc(50vw - 660px + 0.75rem);
    }
}

.swiper-container {
    overflow: hidden;
    overflow-x: scroll;
    margin-bottom: 4rem;

    scrollbar-width: none;  /* Firefox */
}

.swiper-container::-webkit-scrollbar {
    display: none;
}

.swiper {
    display: flex;
    height: 400px;
    gap: 5px;
}

.swiper .slide {
    height: 400px;
    z-index: 25;
    position: relative;
    min-width: 340px;
    max-width: 60vw;
}

.swiper .slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.swiper .slide .slide__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(96,72,87,0.0) 0%, rgba(96,72,87,0.8) 50%, rgba(50,63,79,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: all 0.4s ease;
    text-align: justify;
}

.swiper .slide .slide__title {
    font-size: 1rem;
    text-transform: uppercase;
}

.swiper .slide:hover .slide__content {
    top: -100%;
    bottom: 100%;
}
.swiper .slide .slide__hover-content {
    position: absolute;
    top: 100%;
    bottom: -100%;
    transition: all 0.4s ease;
    padding: 2rem;
    background-color: rgba(50,63,79,0.85);
    text-align: left;
    width: 100%;
    hyphens: auto;
}
@media (min-width:768px) {
    .swiper .slide .slide__hover-content {
        text-align: justify;
    }
}
.swiper .slide:hover .slide__hover-content {
    position: absolute;
    top: 0;
    bottom: 0;
    overflow-y: auto;
}

.contact-form__input {
    margin-bottom: 1rem;
}

.contact-form__submit {
    border: none;
    outline: none;
    background: none;
    color: #FFF;
    text-transform: uppercase;
    display: block;
    text-align: right;
    font-weight: bold;
    width: 100%;
    margin-top: 3rem;
}

.contact-form .close svg {
    position: absolute;
    top: 1rem;
    right: 1rem;
    left: auto;
    width: 3rem;
    height: 3rem;
}

input[type="text"], input[type="email"], textarea {
    display: block;
    width: 100%;
    background: transparent;
    color: #fff;
    outline: none;
    border: 1px solid #fff;
    padding: 1rem 2rem;
    border-radius: 29px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(255, 255, 255, 0.75);
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgba(255, 255, 255, 0.75);
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: rgba(255, 255, 255, 0.75);
}

.radial-bg {
    background: radial-gradient(farthest-side at 50% 50%, rgba(96, 72, 87, 1) 0%, rgba(50, 63, 79, 0) 100%);
}

.quote-carousel {
    padding: 4rem 0;
}

.quote-carousel .carousel-item {
    padding: 4rem 0;
    font-size: 1.2rem;
    text-align: center;
}

.quote-carousel .quote-carousel__text {
    display: inline-block;
    width: 800px;
    max-width: 80vw;
    text-align: center;
}

.quote-carousel__author {
    font-size: 1rem;
    font-weight: bold;
}

@media (min-width:992px){
    .quote-carousel {
        padding: 6rem 0;
    }
    .quote-carousel .carousel-item {
        font-size: 1.8rem;
    }
}

.carousel-indicators [data-bs-target] {
    transition: all 0.4s ease;
    height: 5px;
}

.carousel-indicators .active {
    background-color: #850031;
}

.blog-post--preview-container {
    margin: 1rem -.05rem;
    position: relative;
    z-index: 20;
}

.blog-post--col {
    padding: 2rem 0.1rem;
}

.blog-post--col:hover {
    color: #FFF;
}

.blog-post--preview-image {
    position:relative;
    overflow:hidden;
    padding-bottom: 93%;
}

.blog-post--preview-content {
    background: linear-gradient(180deg, rgba(96,72,87,0.0) 5%, rgba(96,72,87,0.8) 50%, rgba(50,63,79,0.8) 100%);
    position: absolute;
    inset: 0;
    background-position-y: 0;
    background-repeat: no-repeat;
    transition: background-position 0.4s ease;
}

.blog-post--col:hover .blog-post--preview-content {
    background-position-y: 100px;
}

.blog-post--preview-image img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.blog-post--preview-meta {
    position: absolute;
    bottom: 0;
    padding: 1rem;
}

.blog-post--date {
    text-align: center;
}

.blog-post--container {
    margin-top: 2rem;
}

.blog-post--text {
    width: 100%;
    max-width: 700px;
    margin: 4rem auto 0 auto;
}

.blog-post--text img {
    width: 100%;
}

@media (min-width:768px) {
    .blog-post--text {
        width: 70%;
    }
}

.blog-post--image img {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
}

.blog-post--container {
    position: relative;
    z-index: 20;
}


.text-container {
    position: relative;
    z-index: 20;
}

.linkedin {
    width: 28px;
}

.hidden-email-decoded {
  direction: rtl;
  unicode-bidi: bidi-override;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}
.hidden-email-decoded .mail-el span:nth-child(2) {
  font-size: 0;
}