.main-carousel {
    width: 100%;
    height: calc(46vh - 73px);
    min-height: 230px;
    top: 0;
    left: 0;
}

.header-container {
    position: relative;
}

.carousel-cell {
    width: 100%;
    height: 100%;
    margin-right: 10px;
    background-size: cover;
    background-position: 50% 50%;
    z-index: 0;
    overflow: hidden;
}

.carousel-cell img.base-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: scale 30s ease-in-out infinite;
}

body {
    margin: 0;
    padding: 0;
}

video {
    position: absolute;
    width: 100%;
    z-index: -1000;
    height: auto;
    object-fit: cover;
}

.overlay {
    padding: 25px;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.35);
    position: relative;
}

.overlay .c-title {
    display: block;
    color: white;
    font-size: 45px;
    font-weight: bold;
    animation: title 2.8s 1;
    margin-bottom: 0px;
    opacity: 0.8;
    letter-spacing: 10px;
    animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.c-align-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    text-align: center;
    text-shadow: 0 0 5px rgba(64, 64, 64, 0.25);
    padding-left: 180px;
    padding-right: 180px;
}

.overlay .c-desc {
    color: white;
    word-wrap: break-word;
    font-size: 18px;
    overflow: hidden;
    padding: 15px;
    animation: desc 3.0s 1;
    opacity: 0.50;
    margin-left: 7%;
    margin-right: 7%;
    animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.cell-content {
    width: 100%;
    height: 100%;
    position: relative;
}

@media only screen and (max-width:1280px) {
    .c-title {
        font-size: 40px !important;
    }
    .c-desc {
        font-size: 17px !important;
    }
}

@media only screen and (max-width: 1100px) {
    video {
        -webkit-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -o-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -100;
    }
}

@keyframes title {
    0% {
        margin-bottom: -60px;
        opacity: 0.1;
        letter-spacing: 30px;
    }
    100% {
        margin-bottom: 0px;
        opacity: 0.8;
        letter-spacing: 10px;
    }
}

@keyframes desc {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.50;
    }
}

@keyframes scale {
    50% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }
}