/* Hero Pages */
.herop {
    width: 100%;
    height: 400px;
    /* position: absolute;
    top: 0px;
    left: 0px; */
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    border-bottom: 1px solid #333;
}
/* v2 */
.herop:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: url(../img/hero-back.png) repeat center center, linear-gradient(to bottom, #1d1d1d, rgba(0, 0, 0, 0.322));
    background-size: 500px;
    background-attachment: fixed;
    z-index: -1;
}

.herop:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    /* background: linear-gradient(to bottom, #000000, #00000052); */
    background: linear-gradient(to bottom, #16a24952, #00000052);

    z-index: -1;
}

.herop .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    padding: 16px;
}
.herop .logo-bx{
    /* width: 400px; */
    /* height: auto; */
    /* animation: logoShine 3s ease-in-out infinite; */
}
.herop .logo-bx img{
    width: 300px;
    height: auto;
    animation: logoShine 3s ease-in-out infinite;
}

@keyframes logoShine {
    0%, 100% { 
    filter: brightness(1) drop-shadow(0 0 0px rgba(255, 138, 3, 0));
    }
    50% { 
    filter: brightness(1.2) drop-shadow(0 0 15px #16a249a1);
    }
}

.herop h1.title {
    font-size: 32px;
    text-align: center;
    padding-top: 8px !important;
    color: #dfdfdf;
}


@media (max-width: 950px) {
    .herop{
        height: 300px;
    }
    .herop .logo-bx img{
        width: 200px;
    }
    .herop:before {
        background-size: 100% !important;
    }
    .herop h1.title {
        font-size: 28px;
    }
    .herop .subtitle{
        font-size: 14px;
    }
}


/* About */
.sec-about{
    border-radius: 0px !important;
}
.sec-about .container {
    padding: 80px 16px;
}