/*!**************************************
* BEGIN calc screen
****************************************/
.calc-screen {
    position: relative;
    padding: 0 0 26px;
    background: #fff;
    margin-top: 14px
}

.calc-screen__container {
    margin: 0 auto;
    width: 100%;
    max-width: 1060px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}
.calc-screen .content{
    padding: 0 0 0 15px;
}
.calc-screen:after {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 50%;
    height: 113px;
    background: #d9d9d9;
    content: ""
}

.calc-screen__h1 {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    max-width: 270px;
    -ms-flex-negative: 0;
    -ms-flex-preferred-size: 270px;
    font-size: 42px;
    line-height: 36px
}

.home-calc-content {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 0 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal
}

@media (max-width: 1070px) {
    .calc-screen__container {
        padding: 0 10px
    }
}

@media (max-width: 940px) {
    .calc-screen__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .calc-screen__h1 {
        max-width: 100%;
        margin-bottom: 15px
    }
}

/*!**************************************
* END calc screen
****************************************/
