body {
    background-image: url('/static/img/background_s.png'), radial-gradient(#7bb0d0, #00263b);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    background-color: rgb(17 14 43 / 50%);   /* фильтр цвета (подложка) */
    background-blend-mode: multiply;
    font-size: 20px !important;

    /*color: white;*/
    transition: all .2s ease-out, background .6s ease-in-out;
}
@media screen and (max-width: 1400px) {
    body {
        background-image: url('/static/img/background_m.jpg'), radial-gradient(#7bb0d0, #00263b);
        font-size: 20px !important;
    }
}
@media screen and (max-width: 1024px) {
    body {
        background-image: url('/static/img/background_s.png'), radial-gradient(#7bb0d0, #00263b);
        font-size: 20px !important;
    }
}
@media screen and (max-width: 800px) {
    body {
        background-image: url('/static/img/background_s.png'), radial-gradient(#7bb0d0, #00263b);
        font-size: 18px !important;
    }
}
@media screen and (max-width: 400px) {
    body {
        background-image: url('/static/img/background_s.png'), radial-gradient(#7bb0d0, #00263b);
        font-size: 18px !important;
    }
}

.wrapper {
    display: grid;
    justify-content: center;
    align-items: center;
    justify-items: center;
    margin: 0 5vw;
    color: white;
}

.logo {
    display: grid;
    justify-content: center;
    justify-items: center;
    padding: 10vh 0 8vh 0;
}

.logo svg {
    width: 15vw;
    transition: transform .4s ease-out;
}
.logo svg .fil0,
.logo svg .fil1,
.logo svg .fil2,
.logo svg .fil3,
.logo svg .fil4 {
    transition: all .9s ease-in-out, fill .6s ease-in-out;
}

.logo svg:not(:hover) .fil1, /* текст */
.logo svg:not(:hover) .fil2, /* лев */
.logo svg:not(:hover) .fil3, /* планета */
.logo svg:not(:hover) .fil4  /* карта*/ {
    fill: white;
}

.logo svg:hover {
    transform: scale(1.1);
}

@media screen and (max-width: 800px) {
    .logo svg {
        width: 30vw;
    }
}
@media screen and (max-width: 400px) {
    .logo svg {
        width: 35vw;
    }
}
@media screen and (orientation: landscape) and (max-height: 600px) {
    .logo {
        padding: 5vh 0 3vh 0;
    }
    .logo svg {
        width: 15vh;
    }
    .benefits {
        padding: 3vh 0 5vh 0;
    }
}

.benefits {
    padding: 8vh 0 10vh 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.benefits img {
    width: 35vw;
    max-width: 600px;
    transition: all .5s ease-out;
}
.benefits img:hover {
    box-shadow: 5px 5px 4px grey;
    transform: scale(1.05);
}

@media screen and (max-width: 800px) {
    .benefits img {
        width: 50vw;
    }
}
@media screen and (max-width: 400px) {
    .benefits img {
        width: 65vw;
    }
}
@media screen and (orientation: landscape) and (max-height: 600px) {
    .benefits {
        padding: 3vh 0 5vh 0;
    }
}

.JavaNotAllowed {
    display: grid;
    justify-content: center;
    align-items: center;
    justify-items: center;
    margin: 0 2em;
}
.JavaNotAllowed .col-sm-12 {
    width: 70%;
}
@media screen and (max-width: 600px) {
    .JavaNotAllowed .col-sm-12 {
        width: 100%;
    }
    /*.JavaNotAllowed .alert-dismissible {
        padding-right: 2rem;
    }*/
}