@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 */
.navbar-logo {
    max-height: 50px;
}

#hero {
    padding: 5rem 0;
    background-image: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(27, 94, 54, 0.12) 0%, transparent 70%);
}

.icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}

.icon-wrapper-round {
    font-size: .7rem;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    line-height: 1;
}

.carousel {
    display: flex;
    overflow-x: auto;
    mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel .group {
    display: flex;
    gap: 1em;
    animation: spin 15s infinite linear;
    padding-right: 1em;
}

.carousel .card {
    height: 8rem;
    width: 16rem;
    background-color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}

@keyframes spin {
    from {
        translate: 0;
    }

    to {
        translate: -100%;
    }
}

section:last-of-type {
    margin-bottom: 0 !important;
}

#page-header .container {
    transition: all .3s ease;
}

#page-header.scrolled .container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

/* ################################################## 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) {
    
}

/* 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) {}