/* HEADER */
.navbar:before, .navbar:after {
    content: none !important;
}

@media screen and (max-width: 900px) {
    .header-email {
        display: none !important;
    }
}

@media screen and (max-width: 700px) {
    .header-address {
        display: none !important;
    }
}

label {
    font-weight: 400 !important;
}

/*@media screen and (max-width: 990px) {*/
/*    .navigation-menu.navbar-collapse.collapse {*/
/*        display: none !important;*/
/*    }*/
/*}*/


.parallax {
    position: relative;
}

.thing {
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1;
    line-height: 100px;
    font-size: 50px;
    text-align: center;
    will-change: transform;
}

/* === Thing 1 === */
.thing.thing-1 {
    height: 150px;
    width: 150px;
    left: 1.35%;
    top: 300px;
}

@media only screen and (max-width: 1550px) {
    .thing.thing-1 {
        height: 120px;
        width: 120px;
    }
}

@media only screen and (max-width: 1500px) {
    .thing.thing-1 {
        height: 100px;
        width: 100px;
        left: -20px;
    }
}

@media only screen and (max-width: 1200px) {
    .thing.thing-1 {
        height: 90px;
        width: 90px;
        top: 280px;
    }
}

/* === Thing 2 === */
.thing.thing-2 {
    height: 120px;
    width: 120px;
    left: 45.39%;
    top: 20px;
}

/* === Thing 3 === */
.thing.thing-3 {
    width: 100px;
    height: 100px;
    right: 4%;
    top: 150px;
}

@media only screen and (max-width: 1400px) {
    .thing.thing-3 {
        width: 80px;
        height: 80px;
        right: 10px;
    }
}

/* === Thing 4 === */
.thing.thing-4 {
    width: 130px;
    height: 130px;
    left: 8%;
    top: 50px;
}

/* === Thing 5 === */
.thing.thing-5 {
    height: 348px;
    width: 365px;
    right: 8%;
    top: 50px;
}

/* === Общий сброс размеров на маленьких экранах === */
@media only screen and (max-width: 600px) {
    .thing.thing-1,
    .thing.thing-2,
    .thing.thing-3,
    .thing.thing-4,
    .thing.thing-5 {
        height: 80px;
        width: 75px;
    }
}

/* === Круг === */
.thing.circle {
    position: absolute;
    background: radial-gradient(circle at 100px 100px, #cecece, #000);
    border-radius: 100%;
    height: 130px;
    width: 130px;
    margin: 0;
}

.thing.circle.--light {
    background: radial-gradient(circle at 100px 100px, #beb7a5, #000);
}

@media screen and (max-width: 990px) {
    .thing.circle {
        display: none;
    }
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.45);
}