/**
 * Add the correct display in IE 10.
 */
[hidden] {
    display: none;
}

.headerBanner {
    display: block;
    padding: 15px 0;
    background: #10141E;
    text-decoration: none !important;
}
.headerBanner p {
    text-decoration: none !important;
}
.headerBanner.gray-bg {
    background: #EBEBEB;
}
.headerBanner.gray-bg .headerBanner__text {
    color: #000000;
}
.headerBanner.gray-bg .headerBanner__btn {
    background: #0090D3;
}
.headerBanner .container {
    width: 1238px;
    padding: 0 10px;
    margin: 0 auto;
}
.headerBanner__inner {
    align-items: center;
    width: 802px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 54px 50px 308px 260px 130px;
}
.headerBanner__img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin-right: 50px;
    grid-column: 1/2;
}
.headerBanner__text {
    font-family: "RalewaySemiBold";
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    font-feature-settings: "pnum" on, "lnum" on;
    color: #FFFFFF;
    width: 380px;
    grid-column: 3/4;
}
.headerBanner__btn {
    font-family: "RalewaySemiBold";
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    padding: 10px 17px 12px;
    width: 130px;
    height: 41px;
    background: #EB4A42;
    border-radius: 5px;
    grid-column: 5/6;
}

@media screen and (max-width: 1245px) {
    .headerBanner {
        padding: 20px 0 23px 0;
    }
    .headerBanner .container {
        width: 100%;
        padding: 0 30px;
    }
    .headerBanner__inner {
        grid-template-columns: 1fr 54px;
        column-gap: 30px;
        row-gap: 13px;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .headerBanner__img {
        grid-row: 1/3;
        grid-column: 2/3;
        margin-right: 0;
    }
    .headerBanner__text {
        grid-row: 1/2;
        grid-column: 1/2;
        width: auto;
        max-width: 380px;
        font-size: 15px;
        line-height: 17px;
    }
    .headerBanner__btn {
        width: 104px;
        height: 29px;
        padding: 6px 13px;
        font-size: 13px;
        line-height: 15px;
        grid-row: 2/3;
        grid-column: 1/2;
    }
}