/* Add Umbraco specific styles here */

.master-background {
    background-image: url('/images/e095a578-eb0c-4ffd-a22d-3c6eeea5efd4.jpg');
    background-size: cover;
    background-position: center center;
    height: 100vh;
    position: relative;

}

.master-background > .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255,255, 255,0.25);
    z-index: 3;
}

.master-background > .container {
    z-index: 4;
    position: relative;
    background: rgba(255,255, 255,0.8);
    border-radius: 30px;
    margin-top: 80px;
    padding-top: 60px;
    padding-bottom: 60px;
}


@media(max-width:1200px) {
    .master-background > .container {
        margin-top: 40px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media(max-width:992px) {
    .master-background > .container {

        margin-top: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

