.background-image {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
}

#section-1 {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.search-form-wrapper {
    padding: 1.5em;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    border: 1px solid #dee2e6;
    max-width: 1000px;
    width: 100%;
    background: rgba(121, 121, 110, 0.7);
}

.rating_block {
    width: 125px;
    height: 25px;
}
.rating_block input[type="radio"] {
    display: none;
}
.label_rating {
    float: right;
    display: block;
    width: 25px;
    height: 25px;
    background: url("/assets/rating.png") no-repeat 50% 0;
    cursor: pointer;
}
/*Пишем правила смены положения background-а*/
.rating_block .label_rating:hover, /*Правило для ховера на текущий лейбл*/
.rating_block .label_rating:hover ~ .label_rating, /*Правило для всех следующих лейблов по DOM дереву*/
.rating_block input[type="radio"]:checked ~ .label_rating /*Правило для всех следующих лейблов после выбранного инпута, чтобы звездочки как бы зафиксировались*/
{
    background-position: 50% -25px;
}

/*Пишем правила смены положения background-а*/
.rating-item .rating_block .label_rating:hover, /*Правило для ховера на текущий лейбл*/
.rating-item .rating_block .label_rating:hover ~ .label_rating, /*Правило для всех следующих лейблов по DOM дереву*/
.rating-item .rating_block input[type="radio"]:checked ~ .label_rating /*Правило для всех следующих лейблов после выбранного инпута, чтобы звездочки как бы зафиксировались*/
{
    background-position: 50% -25px;
}

.rating-item {
    background-color: rgba(0,0,0,0.1);
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

#review-form-content iframe {
    max-width: 600px;
    width: 100%;
    height: 50vh;
    border-radius: 4px;
}

.extend-phone {
    background: transparent;
    cursor: pointer;
    border: none;
    text-decoration: underline;
}

.support-project-button {
    background-image: url("/assets/flag.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    font-size: 12px;
    position: absolute;
    right: 4px;
    top: 2px;
    width: 150px;
}

.top-button-groups {
    margin-right: 50px;
}

.btn-group-margin {
    margin-bottom: 10px;
}

.news-widget {
    min-height: 147px;
}

.news-widget-wrapper {
    position: relative;
}

.swiper-button-next {
    right: -30px;
    color: #ffd600;
}

.swiper-button-prev {
    left: -30px;
    color: #ffd600;
}

@media (max-width: 1280px) {
    .top-button-groups {
        margin-right: 70px;
    }
}

@media (max-width: 800px) {

    .card {
        max-width: 80%;
        margin: 0 auto;
    }

    .swiper-button-next {
        right: 0;
    }
    .swiper-button-prev {
        left: 0;
    }
    .search-form-wrapper {
        max-width: 95%;
    }
    .support-project-button {
        position: static;
        width: auto;
    }
    .top-button-groups {
        flex-direction: column;
        align-items: center;
        margin-right: 0;
    }
    .top-button-groups a {
        margin: 5px 0 !important;
    }
}