#home-carousel {
    background-size: cover;
    background-position: bottom;
    width: 100%;
    height: calc(100vh - 80px);
}
#home-carousel-background {
    margin-top: -(calc(100vh - 80px));
    background-size: cover;
    background-position: bottom;
    width: 100%;
    height: calc(100vh - 80px);
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 1;
}
#home-carousel-background.fadeOut {
    animation-name: home-carousel-background-fadeOut;
}
@keyframes home-carousel-background-fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
#home-carousel > #home-carousel-tabs {
    position: absolute;
    right: 10px;
    top: 10px;
}
#home-carousel > #home-carousel-tabs > span {
    display: inline-block;
    min-width: 35px;
    padding: 10px 13px 10px 13px;
    margin-left: 10px;
    background: #000000;
    text-align: center;
    color: #7f7f7f;
    font-size: 12px;
    font-family: 'mainRegular';
    cursor: pointer;
}
#home-carousel > #home-carousel-tabs > span.active {
    background: linear-gradient(90deg, #ff7800 0%, #fe4e0a 100%);
    color: #000000;
    font-family: 'mainBold';
}
#home-carousel > #home-carousel-logo {
    position: absolute;
    left: calc(50% - 273px);
    top: calc(50vh - 127px);
    -webkit-filter: drop-shadow(0px 0px 10px #000000);
    filter: drop-shadow(0px 0px 10px #000000);
}
#home-carousel > #home-carousel-social {
    position: absolute;
    left: calc(50% - 64px);
    top: calc(50vh + 150px);
}
#home-carousel > #home-carousel-social > a {
    margin-right: 16px;
    -webkit-filter: drop-shadow(0px 0px 10px #000000);
    filter: drop-shadow(0px 0px 10px #000000);
}
#home-carousel > #home-carousel-social > a:last-of-type {
    margin-right: 0;
}