#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 200px 0 150px;
    background-color: #261944;
    color: #fff;
}

#hero .hero-special {
    padding: 25px 0 0 0;
}

#hero .hero-special>div {
    flex: 0 1 auto;
    width: 100%;
}

#hero h1 {
    margin: 0 0 35px 0;
}

#hero .hero-special .bordered-box {
    padding: 10px;
    margin: 10px 20px 10px 0;
}

#hero .hero-special .bordered-box img {
    margin: 0 10px 0 0;
}

#hero .hero-special .bordered-box p {
    font-size: 14px;
    line-height: var(--line-height-m);
}

#hero .hero-special .bordered-box p span {
    font-size: 17px;
    font-weight: var(--font-weight-bold);
}

#hero .hero-special .bordered-box:before {
    transition: all 0.2s;
    height: 20%;
    width: 10px;
}

#hero .hero-special .bordered-box:hover:before {
    height: 100%;
}

#hero .hero-special .bordered-box:after {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    background-color: var(--color-purple-light);
    transition: all 0.2s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.1;
}

#hero .hero-special .bordered-box:hover:after {
    width: 100%;
}

@media screen and (min-width:768px) {
    #hero {
        padding: 180px 0 100px;
    }
    #hero .hero-special>div {
        width: 50%;
    }
}

@media screen and (min-width:992px) {
    #hero {
        padding: 180px 0 150px;
        justify-content: center;
    }
    #hero .container {
        background: transparent;
    }
    #hero .col-12 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

#hero .col-12 {
    position: relative;
}

.loader {
    margin: 0 auto;
    display: table;
    max-width: 100%;
}
