/* Hero */
.hero {
    position: relative;

    min-height: 800px;

    display: flex;
    align-items: center;

    overflow: hidden;
    background-image: radial-gradient(144.05% 346.95% at 0.83% 0%, rgba(0, 38, 172, 0.555) 0%, rgba(0, 38, 172, 0) 88.888%);
}

.hero > .container {
    flex: 0 0 100%;
}

.hero__body {
    padding: 0px 50px;
    z-index: 200;
}

.hero__text {
    color: #fff;
    max-width: 575px;
}

.hero__title {
    font-size: 50px;
    font-weight: 700;
    line-height: 65px;
    margin-bottom: 10px;
    transition: color 150ms;
}

.hero__description {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

/* Background Video */
.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    min-width: 100%;
    min-height: 100%;
}

/* Animation of Hero Section */
.hero__title {
    opacity: 0;
    transform: translateX(-30px);
    animation: move-right 450ms ease-out forwards;
    animation-delay: 100ms;
}

.hero__description {
    opacity: 0;
    transform: translateX(-15px);
    animation: move-right 250ms ease-out forwards;
    animation-delay: 600ms;
}

@keyframes move-right {
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}


/* Responsiveness */
@media (max-width: 1200px) {
    
}

@media (max-width: 1200px) {
    
}

@media (max-width: 1200px) {
    
}