/* Minification failed. Returning unminified contents.
(43,17): run-time error CSS1039: Token not allowed after unary operator: '-white-text'
(51,23): run-time error CSS1039: Token not allowed after unary operator: '-font-title'
(53,23): run-time error CSS1039: Token not allowed after unary operator: '-font-semi-bold'
(59,17): run-time error CSS1039: Token not allowed after unary operator: '-white-text'
(63,23): run-time error CSS1039: Token not allowed after unary operator: '-font-light'
(101,28): run-time error CSS1039: Token not allowed after unary operator: '-white-border'
(114,22): run-time error CSS1039: Token not allowed after unary operator: '-primary-normal'
(115,24): run-time error CSS1039: Token not allowed after unary operator: '-primary-normal'
(133,17): run-time error CSS1039: Token not allowed after unary operator: '-white-text'
(138,17): run-time error CSS1039: Token not allowed after unary operator: '-white-text'
 */
#banner {
    height: 90VH;
    position: relative;
}
#banner .banner-backgrounds {
    height: 100%;
    overflow: hidden;
    position: relative;
}
#banner .banner-backgrounds .banner-video {
    filter: brightness(80%);
    object-fit: cover;
    width: 100%;
}
#banner .banner-backgrounds .banner-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: 0.5s all ease-in-out;
    transform-origin: top left;
    transform: scale(1.05);
    width: 100%;
}
#banner .banner-backgrounds .banner-image.active {
    transform: scale(1);
    opacity: 1;
}
#banner .banner-info {
    position: absolute;
    max-width: 600px;
    z-index: 1000;
}
#banner .banner-info.left-middle-alignment {
    left: 100px;
    top: calc(50% - 110px);
}
#banner .banner-info .banner-title,
#banner .banner-info .banner-subtitle {
    color: var(--white-text);
}
#banner .banner-info .banner-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    opacity: 0.7;
}
#banner .banner-info .banner-title {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: var(--font-semi-bold);
    margin-bottom: 0;
}
#banner .banner-link .link {
    align-items: center;
    bottom: 3rem;
    color: var(--white-text);
    display: flex;
    left: 100px;
    font-size: 1rem;
    font-weight: var(--font-light);
    position: absolute;
    width: 600px;
    z-index: 1001;
}
#banner .banner-link .link ion-icon {
    font-size: 26px;
    margin-right: 0.75rem;
}
#banner .banner-sections {
    display: flex;
    flex-wrap: wrap;
    height: 600px;
    position: absolute;
    top: calc(50% - 300px);
    right: 3rem;
    width: 600px;
}
#banner .banner-underline {
    height: 100%;
    position:absolute;
    top:0;
    left: 0;
    width: 100%;
}
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    #banner .banner-underline {
        -webkit-backdrop-filter: blur(0.6rem);
        backdrop-filter: blur(0.6rem);
    }
}
@supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    #banner .banner-underline {
        background-color: rgba(125, 125, 125, 0.4);
    }
}

#banner .banner-sections .banner-section {
    border: 1px solid var(--white-border);
    cursor: pointer;
    display: flex;
    flex-flow: column;
    height: 300px;
    justify-content: space-around;
    padding: 2rem;
    position: relative;
    transition: 0.15s all ease-in-out;
    width: 300px;
}
#banner .banner-sections .banner-section:hover,
#banner .banner-sections .banner-section.active {
    background: var(--primary-normal);
    border-color: var(--primary-normal);
}
#banner .banner-sections .banner-section .banner-section-child {
    display: flex;
    flex-flow: column;
    height: 100%;
    justify-content: space-around;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 0%;
}
#banner .banner-sections .banner-section .banner-section-child.active {
    padding: 2rem;
    width: 100%;
}
#banner .banner-sections .banner-section .banner-section-title {
    color: var(--white-text);
    font-size: 1.5rem;
}
#banner .banner-sections .banner-section .banner-section-link {
    align-items: center;
    color: var(--white-text);
    display: flex;
}
#banner .banner-sections .banner-section .banner-section-link label {
    cursor: pointer;
    height: 24px;
    margin: 0;
    overflow: hidden;
    padding: 0;
    transition: 0.5s all ease-in-out;
    width: 0;
}
#banner .banner-sections .banner-section .banner-section-link:hover label {
    width: 100px;
}
#banner .banner-sections .banner-section .banner-section-child-content {
    padding:0 .75rem;
}
#banner .banner-sections .banner-section .banner-section-child-content .banner-section-child-link {
    margin-bottom: 0.125rem;
}
#banner .banner-sections .banner-section .banner-section-child-content .banner-section-child-icon {
    margin-right: 1.25rem;
}
@media (max-width: 991px) {
    #banner .banner-info.left-middle-alignment,
    #banner .banner-link .link {
        left: 0;
        padding: 0 1.25rem;
        width: 100%;
    }
}    
@media (max-width: 1200px) {
    #banner .banner-sections {
        display: none;
    }
}
