/* Slider */
.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;
}
/* ELEVATOR SLIDER */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 525px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-out;
    will-change: opacity;
    visibility: hidden;
    pointer-events: none;
}
.slider-container .slide.gradient:before {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(to right,#0D2372 0%,#0D2372 32%,rgba(13,35,114,.444) 61%,rgba(13,35,114,.33) 70%);
    z-index: 1;
}
.slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide.gradient img {
    width: 70%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    right: 0;
}
.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 60px;
    padding-bottom: 150px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    height: 100%;
    width: 100%;
    max-width: 55%;
    margin: 0 auto;
    text-align: center;
}
.slide-content h2 {
    font-size: 50px;
    line-height: 65px;
    margin: 0;
}
.slide-content h3 {
    font-size: 30px;
    line-height: 42px;
    margin: 0 0 30px 0;
}
.slide-content h4 {
    font-size: 24px;
    line-height: 32px;
    margin: 0;
    text-transform: uppercase;
}
.slide-content p {
    font-size: 26px;
    line-height: 42px;
    margin: 40px 0 0 0;
}
.slide-content a {
    display: inline-block;
    position: relative;
    margin-top: auto;
    z-index: 8;
    background-color: #0B21AA;
    font-family: Lato;
    height: auto;
    width: auto;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    text-align: left;
    line-height: 24px;
    font-weight: 700;
    font-size: 20px;
    padding: 20px 26px;
    border-radius: 10px;
    backdrop-filter: none;
    filter: brightness(100%);
    transform-origin: 50% 50%;
    transform: translate(0px, 0px);
    visibility: visible;
    border-width: 0px;
}
.slide-content a:hover {
    background-color: #B91806;
}
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
    display: none;
    align-items: center;
    justify-content: center;
    color: #1a56db;
    font-size: 1.25rem;
}
.slider-nav:hover {
    background: white;
}
.slider-nav.prev {
    left: 1rem;
}
.slider-nav.next {
    right: 1rem;
}
.floor-indicator-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 300px;
    text-align: center;
    background-image: url(../img/clock-background.svg);
    background-size: 240px;
    background-repeat: no-repeat;
    background-position: center 3px;
}
.floor-indicator-container svg {
    overflow: visible;
}
.floor-indicator .item-nr {
    transition: all 3s ease-in-out;
}
.floor-indicator .item-nr text {
    font-family: 'Times New Roman', Times, serif;
    font-size: 32px; 
    font-weight: 700;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.floor-indicator .item-nr.active text {
    fill: #513D0D;
}
.home-clock-hand {
    transform-origin: 9px 88.87px;
    transition: transform 3s ease;
}
@media screen and (max-width: 1599px) {
    .slider-container {
        height: 500px;
    }
    .slide-content-button {
        margin-top: 30px;
    }
    .slide-content h3 {
        font-size: 26px;
        line-height: 36px!important;
    }
    .slide-content p {
        font-size: 20px;
        line-height: 26px!important;
        margin-top: 20px;
    }
    .slide-content a {
        font-size: 17px;
        line-height: 17px!important;
    }
    .floor-indicator-container {
        left: 50%;
        transform: scale(.70) translateX(-70%);
        bottom: -18px;
    }
}
@media all and (max-width: 1400px) {
    .slide-content h2 {
        font-size: 36px;
        line-height: 42px!important;
    }
    .slide-content h4 {
        font-size: 18px;
        line-height: 24px!important;
        margin-top: 0;
        margin-bottom: 0;
    }
    .slide-content h3 {
        font-size: 20px;
        line-height: 28px!important;
    }
}
@media screen and (max-width: 1199px) {
    .slide-content {
        max-width: 100%;
    }
    .slide-content {
        justify-content: center;
    }
    .slide-content p {
        font-size: 17px;
        line-height: 28px!important;
    }
    .slide-content a {
        font-size: 17px;
        line-height: 17px!important;
    }
}
@media screen and (max-width: 1023px) {
    .slider-container {
        height: 500px;
    }
}
@media screen and (max-width: 767px) {
    .slider-container {
        height: 450px;
        margin-bottom: 20px;
    }
    .slide-content {
        justify-content: center;
    }
    .slide-content-button {
        margin-top: 30px;
    }
    .slide-content h2 {
        font-size: 28px;
        line-height: 36px!important;
    }
    .slide-content h3 {
        font-size: 18px;
        line-height: 26px!important;
    }
    .slide-content h4 {
        font-size: 16px;
        line-height: 27px!important;
    }
    .slide-content p {
        font-size: 16px;
        line-height: 20px!important;
    }
    .slide-content a {
        font-size: 16px;
        line-height: 20px!important;
    }
    .slider-container .slide.gradient:before {
        background: linear-gradient(to right,#0D2372 10%,#0D2372 5%,rgba(13,35,114,.13) 71%,rgba(13,35,114,.04) 100%);
    }
    .slide.gradient img {
        width: 100%;
        left:0;
        margin: auto;
    }
}
@media screen and (max-width: 480px) {
    .slider-container {
        height: 450px;
    }
}