/* home section styling */


.home .max-width {
    width: 100%;
    display: flex;
}

.home .max-width .row {
    margin-right: 0;
}

.home .home-content .text-1 {
    font-size: 1.2rem;
    /* -webkit-text-stroke: 0.2px rgb(255, 217, 0);
    color: rgb(255, 255, 255) */
}

.home .home-content .text-2 {
    font-size: 3.5rem;
    font-family: 'Arial Narrow Bold', sans-serif;
    font-weight: 600;
    transition: 0.5s;
    /* -webkit-text-stroke: 1px rgb(255, 208, 0);
    color: rgb(255, 255, 255) */
}

.c1 {
    color: rgb(0, 255, 242);
    font-size: 3.2rem;
    font-weight: 600;

}

.home .home-content a {
    display: inline-block;
    background: crimson;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 6px;
    border: 2px solid crimson;
    transition: all 0.3s ease;
}

.home .home-content a:hover {
    color: crimson;
    background: none;
}

@media (max-width: 2400px) {
    .banner video {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: -1;
        -webkit-filter: blur(3px);
        -moz-filter: blur(3px);
        -o-filter: blur(3px);
        -ms-filter: blur(3px);
        filter: blur(5.4px);
        opacity: 1;
        
    
    }
    
    .home {
        display: flex;
        background: url("images/banner.jpg") no-repeat center;
        height: 100vh;
        color: rgb(255, 255, 255);
        background-size: cover;
        background-attachment: fixed;
        font-family: 'Ubuntu', sans-serif;
    }

}

@media (max-width: 700px) {
    .home {
        display: flex;
        background: url("/images/home/pxfuel.jpg") no-repeat center;
        height: 100vh;
        color: rgb(255, 255, 255);
        background-size: cover;
        background-attachment: fixed;
        font-family: 'Ubuntu', sans-serif;
    }
    .banner video {
        opacity: 0 ;
        
    }
    

}

