﻿.fiximage {
    height: 380px;
    background-attachment: fixed;
    width: 100%;
    position: relative;
    background-size: cover;
}
    .fiximage:before {
        width: 100%;
        height: 100%;
/*        background-color: rgba(121,194,230,0.6);
*/        position:absolute;
        z-index:7;
        content:"";
    }


    .fiximage .fix-text {
        color: #fff;
        position: absolute;
        font-size: 22pt;
        left: 14%;
        text-align: right;
        bottom: 51px;
        z-index:8;
    }

@media(max-width:768px) {
    .fix-text * {
        font-size: 18px !important;
    }

    @media(max-width:500px) {
        .fix-text * {
            font-size: 12px !important;
        }

        .fix-text img {
            width: 100% !important;
            height: auto !important;
        }
    }


    @media screen and (max-width: 768px) {
        .fiximage {
            height: 260px;
            background-position: initial !important;
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-attachment: scroll;
        }

            .fiximage .fix-text {
                left: 20px;
            }
    }
}
