:root {

}

.index_promo_container {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("/static/localcars/images/promo.png");
    min-height: 700px;
    object-fit: cover;
    width: calc(100% - 40px);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;

    padding: 30px;
    box-sizing: border-box;
    margin: 20px;
    border-radius: 20px;
    position: relative;
}

.index_promo_container > .index_promo_title {
    color: var(--base-text-color);
    margin: 0 0;
    font-size: 50px;
    /* font-weight: 500; */
    max-width: 50%;
    padding: 150px 40px 40px;
}

.index_promo_descr_title {
    color: var(--base-text-color);
    margin: 0 0 100px;
    font-size: 30px;
    font-weight: 400;
    max-width: 50%;
    padding: 0 40px;
}

.index_promo_button {
    background-color: var(--base-accient-color);
    min-width: 200px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    margin: 0 40px 40px;
    padding: 15px 0;
    color: var(--base-text-color);
    text-decoration: none;
    font-size: 24px;
    font-weight: 300;
    border-radius: 10px;
}