.blue {
    color: #003878;
}
.red {
    color: #CC2128;
}
.gray {
    color: #EBF4FF;
}
.white {
    color: white;
}
.blue_bg {
    background-color: #003878;
}
.red_bg {
    background-color: #CC2128;
}
.gray_bg {
    background-color: #EBF4FF;
}
.white_bg {
    background-color: white;
}
a,
a:hover { 
    text-decoration: none;
    border: none;
    outline: none;
}
ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 0;
}

.container {
    /* background: red; */
}
.button {
    position: relative;
    display: inline-block;
    border-radius: 30px;
    font-size: 14px;
    line-height: 46px;
    font-weight: 600;
    padding: 0px 17px;
    cursor: pointer;
}
.btn_red {
    background-color: #CC2128;
    color: white;
    overflow: hidden;
    border: 1px solid #CC2128;
}
.btn_red:hover {
    border: 1px solid white;
}
.btn_red__hover {
    content: '';
    display: block;
    position: absolute;
    background: white;
    width: 102%;
    height: 102%;
    left: -102%;
    top: -1px;
    z-index: 1;
}
.btn_red:hover .btn_red__hover {
    left: -1px;
    transition: left .3s;
    border-radius: 30px;
}
.btn_red .text {
    position: relative;
    z-index: 2;
}
.btn_red:hover .text {
    color: #CC2128;
}
.btn_red_color {
    border: 1px solid #CC2128;
    color: #CC2128; 
    overflow: hidden;
}
.btn_red_color:hover {
    border: 1px solid transparent;
}

.btn_red_color {
    position: relative;
    overflow: hidden;
}
.btn_red_color__hover {
    content: '';
    display: block;
    position: absolute;
    background: white;
    width: 101%;
    height: 102%;
    left: -101%;
    top: -1px;
    z-index: 1;
}
.btn_red_color:hover .btn_red_color__hover {
    left: -1px;
    transition: left .2s;
    border-radius: 30px;
}
.btn_red_color .text {
    position: relative;
    z-index: 2;
}
.btn_red_color:hover .text {
    color: #CC2128;
}
.btn_red_color {
    border: 1px solid #CC2128;
    color: #CC2128; 
}
.btn_red_color:hover {
    border: 1px solid transparent;
}

h2 {
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 20px;
}
.section {
    /* padding-top: 100px; */
}
@media (min-width: 769px) and (max-width: 1199px) {
    .section {
        /* padding-top: 90px; */
        padding-top: 67px;
    }
}
@media (max-width: 767px) {
    h2 {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 30px;
    }
    .section {
        /* padding-top: 50px; */
    }
}
@media (max-width: 480px) {
    h2 {
        font-size: 22px;
        line-height: 28px;
    }
}

/* Переписываем Bootstrap */
@media (min-width: 769px) {
    .col-md-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
}
@media (max-width: 768px) {
    .col-md-5 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 1003%;
    }
    .col-md-7 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 1003%;
    }
}

.template_default h1 {
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 35px;
}
@media (max-width: 768px) {
    .template_default h1 {
        font-size: 36px;
        line-height: 40px;
    }
}
@media (max-width: 576px) {
    .template_default h1 {
        font-size: 28px;
        line-height: 34px;
    }
}
.template_default h2 {
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .template_default h2 {
        font-size: 30px;
        line-height: 36px;
    }
}
@media (max-width: 576px) {
    .template_default h2 {
        font-size: 22px;
        line-height: 28px;
    }
}
.template_default h3 {
    font-weight: bold;
    font-size: 30px;
    line-height: 40px;
}
@media (max-width: 768px) {
    .template_default h3 {
        font-size: 24px;
        line-height: 30px;
    }
}
@media (max-width: 576px) {
    .template_default h3 {
        font-size: 20px;
        line-height: 24px;
    }
}

.list_default li {
    font-weight: 300;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 12px;
    padding-left: 20px;
    background-image: url(../img/i_round_orange.svg);
    background-repeat: no-repeat;
}
.list_default.center li {
    background-position: left center;
}
.list_default.top li {
    background-position: left 11px;
}
.template_default .section .desc,
.template_default .section.default p {
    font-weight: 300;
    font-size: 17px;
    line-height: 30px;
}
.template_default .section.default blockquote p {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}
.template_default .section.default blockquote p strong {
    font-weight: 600;
}
.list_default strong {
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
}

.text-right {
    text-align: right !important;
}