.slider-section {
    /* margin-top: 154px; */
    /* margin-top: 120px; */
    /* margin-top: var(--top-margin); */
    padding-bottom: 60px;
    background-color: #fff;
    background-image: url(../../images/banners/home-banner.png);
    background-size: cover;
    background-position: bottom;
}
@media only screen and (min-width: 992px) {
    .hero-content {
        min-height: 100vh !important;
    }
}
@media only screen and (max-width: 991px) {
    .slider-section {
        padding-top: var(--top-margin);
    }
}
.hero-content {
    padding: 30px 0;
    /* min-height: calc(100vh - 154px); */
    /* min-height: 750px; */
    /* padding-top: 82px; */
    min-height: 670px;
    display: inline-flex;
    flex-flow: column;
    /* justify-content: center; */
    align-items: flex-start;
}

.hero-img {
    margin: 15px auto;
}

.slider-section .video-container {
    max-width: 100%;
    position: relative;
    mask: url('../../images/banners/hero-mask.png');
    -webkit-mask: url('../../images/banners/hero-mask.png');
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
}
.slider-section .video-column {
    position: relative;
}
.slider-section .video-column:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-image: url('../../images/banners/shapes.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 9;
    /* animation-name: spin;
    animation-duration: 7000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear; */
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}
.slider-section .video-container video {
    max-width: 100%;
    object-fit: cover;
    height: 400px;
    /* position: absolute;
    top: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(-50%); */
}
.hero-title {
    font-size: 40px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    line-height: 47px;
    /* color: #222; */
    color: #ffffff;
    font-display: swap;
    margin-bottom: 15px;
    display: inline-block;
    text-shadow: 1px 1px 7px rgb(0 0 0 / 46%);
}


.hero-text {
    /* color: #fff; */
    color: #ffffff;
    font-size: 18px;
    /* text-align: justify; */
    /* padding-right: 300px; */
    margin-bottom: 60px;
    max-width: 450px;
    display: inline-block;
    text-shadow: 1px 1px 7px rgb(0 0 0 / 46%);
    /* mix-blend-mode: screen; */
    /* text-shadow: 1px 1px 0 #333,
        -1px -1px 0 #333,
        1px -1px 0 #333,
        -1px 1px 0 #333,
        2px 2px 5px rgba(0,0,0,0.65); */
}
.hero-btn {
    color: #fff;
    background-color: transparent;
    padding: 8px 30px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    transition: all 0.4s;
    border: 2px solid #fff;
}
.hero-btn:not(.dark) {
    text-shadow: 1px 1px 7px rgb(0 0 0 / 46%);
}
.hero-btn:hover {
    /* color: var(--theme-color);
    background-color: #fff; */
    color: #000;
    background-color: #fff;
}

.slider-links {
    display: flex;
    flex-flow: column;
    align-items: start;
    margin-left: auto;
    padding: 0;
    width: 150px;
}
.slider-links li {
    margin: 10px 0;
}
.slider-links li a {
    padding: 5px 10px;
    padding-left: 0;
    color: #fff;
    font-weight: 600;
    position: relative;
}

.slider-links li a:hover:after {
    width: 100%;
    left: 0;
    background: #fff;
}
.slider-links li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    right: 0;
    background: var(--light-grey);
    transition: width .3s ease;
    -webkit-transition: width .3s ease;
}

.slider-links.social li a{
    font-size: 28px;
    transition: all 0.4s;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 46%);
}
.slider-links.social li a:hover{
    color: var(--theme-color);
}
.slider-links.social li a:hover:after{
    display: none;
}

@media screen and (max-width: 991px) {

    .hero-content {
        margin-top: 60px;
        min-height: auto !important;
        /* padding-bottom: 100px; */
    }

    .hero-text {
        margin-bottom: 30px;
    }

    .slider-links {
        flex-flow: row;
        flex-wrap: wrap;
        width: 100%;
        margin-top: 10px;
        padding-bottom: 60px;
        /* margin-top: 150px; */
    }

    .slider-links a {
        padding: 8px 15px !important;
        border: 1px solid #fff;
        margin: 5px;
        border-radius: 5px;
        text-align: center;
    }

    .slider-links a:hover {
        background: #fff;
        color: #000;
    }

    .slider-links li a:after {
        opacity: 0;
    }

}
