﻿.main-page {
    padding: 0;
    background-image: url('../../Content/img/home_bg.jpg');
    background-size: cover;
    height: 1100px;
}

.left-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.mno-logo {
    width: 40%;
    min-width: 200px;
}

.mno-logo img {
    width: 100%;
}

.actions {
    margin-top: 40px;
    color: #fff;
    text-align: center;
}

.actions ul {
    list-style: none;
    line-height: 35px;
}

.actions a {
    color: #fff;
    text-decoration: underline;
}

.right-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.filter-box {
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    width: 600px;
}

.filter-title {
    color: #fff;
    font-weight: 200;
    width: 400px;
    text-align: center;
}

.banners {
    display: flex;
    justify-content: center;
    width: 100%;
}

.banners div {
    max-width: 400px;
    width: 40%;
}

.banners img {
    border-radius: 10px;
    width: 100%;
}

.ustozovozi {
    margin-right: 20px;
}

@media (max-width: 1200px) {
    .filter-box {
        max-width: 500px;
        width: auto;
    }
}
@media (max-width: 991px) {
    .filter-title {
        width: auto;
    }

    .right-container, .left-container {
        justify-content: flex-start;        
        height: auto;
        margin: 30px 0;
    }

    .main-page {
        height: auto;
        background-repeat: round;
    }

    .filter-box {
        padding: 20px;
    }
}