@charset "utf-8";

/* ################################################## GENERAL ################################################## */
:root {
    --container-max-width: 100%;
    --header-height: 100px;
}

html {
    scroll-behavior: smooth;
}

section[id],
div[id] {
    scroll-margin-top: var(--header-height);
}

html,
body {
    max-width: none;
}

video {
    display: block;
}

img,
video,
picture {
    max-width: 100%;
    height: auto;
}

.animated,
img,
svg,
a,
i,
.fa-stack {
    transition: all 300ms ease 0s;
}

select {
    cursor: pointer;
}

.unbreakable {
    white-space: nowrap;
}

.cover {
    width: 100%;
    height: 100%;
    margin: 0;
    top: 0;
    left: 0;
}

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

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

.btn-icon .fa-stack {
    font-size: 2rem;
    width: 2em;
}

.overlay {
    position: relative;
}

.overlay::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(27, 26, 26);
    background: linear-gradient(90deg, rgba(27, 26, 26, 0.7035189075630253) 97%, rgba(31, 24, 24, 0.15730042016806722) 100%);
    top: 0;
}

/* ################################################## Custom styling start ########################################## */
/* Pagetitle */
/* Section / Item */
section#hero {
    height: 75vh;
}

section#hero .hero-images {
    height: 70vh;
}

section#hero .hero-images img {
    height: 60vh;
    object-fit: cover;
}

section#hero .hero-images .hero-image-1 {
    border-radius: 60px 0 0 60px;
    transform: translateY(-2.5vh);
}

section#hero .hero-images .hero-image-2 {
    border-radius: 0 60px 60px 0;
    transform: translateY(2.5vh);
}

.bg-primary-fade {
    background: linear-gradient(to bottom, rgba(var(--bs-primary-rgb, 13, 110, 253), 0.2) 0%, #ffffff 55%);
}

.live-preview {
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.live-preview img {
    display: block;
}

.live-preview-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.live-preview-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.live-preview-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.3rem;
    background: rgba(var(--bs-primary-rgb, 13, 110, 253), 0.9);
    border: 2px solid rgba(255, 255, 255, 0.9);
    z-index: 3;
}

.live-preview-play:hover {
    color: #ffffff;
    transform: translate(-50%, -50%) scale(1.05);
}

.social-icon-square {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}



/* ################################################## MEDIA QUERIES ################################################## */
/* Below small devices (standard values) */

/* Small devices (landscape phones, 576px and up) */
/* Bootstrap: -sm */
@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */
/* Bootstrap: -md */
@media (min-width: 768px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown>.dropdown-toggle:active {
        /*Without this, clicking will make it sticky*/
        pointer-events: none;
    }

    #page-header.scrolled {
        display: none;
    }
}

/* Large devices (desktops, 992px and up) */
/* Bootstrap: -lg */
@media (min-width: 992px) {}

/* Extra large devices (large desktops, 1200px and up) */
/* Bootstrap: -xl */
@media (min-width: 1200px) {}

/* HD devices (extra large desktops, 1540px and up) */
@media (min-width: 1540px) {}
