@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.3/font/bootstrap-icons.css");

* {
    box-sizing: border-box;
    font-family: Roboto, sans-serif
}

body, html {
    margin: 0;
    padding: 0;
    background-color: #fff
}

img, video {
    width: 100%;
    height: auto
}

a {
    text-decoration: none;
    transition: 50ms ease
}

.container {
    width: 100%;
    max-width: 1250px
}

.btn {
    border-radius: 0
}

.btn-custom {
    background-color: #013976;
    color: #fff
}

.btn-custom-red, .btn-custom-red:focus {
    background-color: #e5240f;
    color: #fff
}

.btn-custom-red:focus {
    border: 1px solid #e5240f
}
.btn-disabled{
    background-color: #e6e6e6;
    color: #000;
   border-bottom: none;
}
.i-car {
    background-image: url(../images/icons/car.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 18px;
    height: 18px
}

.form {
    padding: 40px;
    background-color: #0961ad;
    color: #fff
}

@media screen and (max-width: 576px) {
    .form {
        padding: 20px
    }
}

.form__block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.form__item {
    width: 23%
}

@media screen and (max-width: 576px) {
    .form__item {
        width: 100%;
        margin-bottom: 8px
    }
}

.form__submit {
    width: 24%;
    margin-left: auto
}

.card, .card-img, .card-img-top {
    border-radius: 0
}

.main-title {
    font-size: 24px;
    font-weight: 700;
    position: relative;
    margin-bottom: 30px;
    /*text-transform: uppercase*/
}

@media screen and (max-width: 576px) {
    .main-title {
        font-size: 18px
    }
}

.main-title-small {
    font-size: 18px
}

@media screen and (max-width: 576px) {
    .main-title-small {
        font-size: 16px
    }
}

.main-title:after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    display: inline-block;
    width: 50px;
    height: 3px;
    background-color: #e5240f
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 15
}

.header__top {
    padding: 10px 0;
    background-color: #013976
}

@media screen and (max-width: 576px) {
    .header__top {
        padding: 5px 0
    }
}

.header__top_block {
    -ms-flex-pack: justify;
    justify-content: space-between
}

.header__top_block, .header__top_item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    color: #fff
}

.header__top_item {
    font-size: 14px
}

.header__top_item:hover {
    color: #fff
}

.header__top_item .bi {
    margin-right: 10px
}

.header__bottom {
    padding: 5px 0;
    border-bottom: 1px solid #000
}

@media screen and (max-width: 576px) {
    .header__bottom {
        padding: 5px 0
    }
}

.header__bottom_block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

.header__logo {
    color: #000
}

.header__logo_img {
    height: 50px;
    object-fit: contain;
}

@media screen and (max-width: 992px) {
    .header__menu_block {
        position: fixed;
        background-color: #013976;
        color: #fff;
        right: -100%;
        top: 0;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        z-index: 20;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: end;
        align-items: flex-end;
        padding: 20px;
        transition: .3s ease;
        overflow-y: auto;
    }
}

.header__menu_block.active {
    right: 0
}

.header__menu_mobile {
    display: none;
    border: none;
    background-color: transparent;
    font-size: 26px
}

@media screen and (max-width: 992px) {
    .header__menu_mobile {
        display: -ms-flexbox;
        display: flex
    }
}

.header__menu_mobile_close {
    display: none;
    border: none;
    background-color: transparent;
    margin-bottom: 20px;
    color: #fff;
    font-size: 26px
}

@media screen and (max-width: 992px) {
    .header__menu_mobile_close {
        display: inline-block
    }
}

.header__menu_item {
    color: #000;
    padding: 10px;
    font-weight: 500
}

@media screen and (max-width: 992px) {
    .header__menu_item {
        color: #fff;
        background-color: #0961ad;
        margin-bottom: 10px;
        font-size: 14px;
        width: 100%;
        text-align: left
    }
}

.header__menu_item:hover {
    background-color: #0961ad;
    color: #fff
}

.footer {
    background-color: #000;
    padding: 30px 0 0
}

.footer * {
    color: #fff
}

.footer__block {
    display: -ms-flexbox;
    display: flex;
    /*-ms-flex-pack: justify;*/
    /*justify-content: space-between;*/
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.footer__logo {
    width: 35%
}

@media screen and (max-width: 768px) {
    .footer__logo {
        width: 50%
    }
}

@media screen and (max-width: 576px) {
    .footer__logo {
        width: 100%
    }
}

.footer__menu {
    width: 30%
}

@media screen and (max-width: 768px) {
    .footer__menu {
        width: 50%
    }
}

@media screen and (max-width: 576px) {
    .footer__menu {
        width: 100%
    }
}

.footer__menu_list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0
}

.footer__menu_list li {
    width: 50%
}

.footer__menu_list li a {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: inline-block;
    text-transform: capitalize;
    border-bottom: 2px solid transparent
}

.footer__menu_list li a:hover {
    color: #e5240f;
    border-bottom: 2px solid
}

.footer__links {
    width: 25%
}

@media screen and (max-width: 768px) {
    .footer__links {
        width: 50%
    }
}

@media screen and (max-width: 576px) {
    .footer__links {
        width: 100%
    }
}

.footer__links_list {
    list-style: none;
    margin: 0;
    padding: 0
}

.footer__links_list a {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
    text-transform: capitalize
}

.footer__links_list a:hover {
    color: #e5240f
}

.footer__link {
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px
}

.footer__link .bi {
    margin-right: 8px
}

.footer__bottom {
    margin-top: 20px;
    padding: 10px 0;
    background-color: #013976
}

.footer__bottom p {
    text-align: center;
    margin: 0;
    padding: 0
}

.main-company__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -1%
}

.main-company__block, .main-company__card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.main-company__card {
    width: 18%;
    margin: 0 1% 2%;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #013976;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (max-width: 1200px) {
    .main-company__card {
        width: 23%
    }
}

@media screen and (max-width: 768px) {
    .main-company__card {
        width: 31%
    }
}

@media screen and (max-width: 576px) {
    .main-company__card {
        width: 31%;
        height: 150px;
        font-size: 14px;
        line-height: 1
    }
}

.main-company__card:hover {
    border: 1px solid #e5240f
}

.main-company__card a {
    color: #000;
    height: 130px;
}

.main-company__card a span {
    display: inline-block;
    margin-top: 10px;
    line-height: 1.2;
}

.main-company__card img {
    height: 90px;
    object-fit: contain
}

@media screen and (max-width: 576px) {
    .main-company__card img {
        height: 75px
    }
}

.why-us__block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.why-us__card {
    width: 22%;
    margin-top: 20px
}

@media screen and (max-width: 992px) {
    .why-us__card {
        width: 30%
    }
}

@media screen and (max-width: 768px) {
    .why-us__card {
        width: 45%
    }
}

@media screen and (max-width: 576px) {
    .why-us__card {
        width: 100%
    }
}

.why-us__card_title {
    font-size: 18px;
    font-weight: 700;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 20px
}

.why-us__card_title i {
    margin-right: 10px
}

.projects__slider_item {
    display: -ms-flexbox;
    display: flex;
    border: 2px solid #0961ad;
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.projects__slider_content {
    width: 50%
}

@media screen and (max-width: 576px) {
    .projects__slider_content {
        width: 100%
    }
}

.projects__slider_content img {
    height: 400px;
    object-fit: contain;
    object-position: center
}

@media screen and (max-width: 576px) {
    .projects__slider_content img {
        height: 250px
    }
}

.projects__slider_img {
    width: 50%
}

@media screen and (max-width: 576px) {
    .projects__slider_img {
        width: 100%
    }
}

.projects__slider_img img {
    height: 400px;
    object-fit: cover
}

@media screen and (max-width: 576px) {
    .projects__slider_img img {
        height: 250px
    }
}

.projects__slider_text {
    position: absolute;
    bottom: -45px;
    border: 1px solid #013976;
    width: calc(100% + 4px);
    background-color: #013976;
    text-align: center;
    color: #fff;
    font-weight: 500;
    padding: 10px;
    margin: 0 -3px
}

@media screen and (max-width: 576px) {
    .projects__slider_text {
        font-size: 14px
    }
}

.blog__card .card-title {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 48px;
}

.blog__card .card-img-top{
    height: 300px;
    object-fit: cover;
}

.blog__card .card-text, .blog__card .card-title {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis
}

.blog__card .card-text {
    -webkit-line-clamp: 4
}

.blog-page .blog__card {
    width: 48%;
    margin-bottom: 20px
}

.blog-page .blog__card img {
    height: 350px;
    object-fit: cover
}

@media screen and (max-width: 992px) {
    .blog-page .blog__card img {
        height: 300px
    }
}

@media screen and (max-width: 576px) {
    .blog-page .blog__card {
        width: 100%
    }

    .blog-page .blog__card img {
        height: 250px
    }
}

.card{
    border: 1px solid #013976;
}

.reviews__card .card-title {
    -webkit-line-clamp: 1
}

b, strong{
    display: inline-block;
}

.reviews__card .card-text, .reviews__card .card-title {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.reviews__card .card-text {
    -webkit-line-clamp: 4;
    height: 100px;
}

.reviews__inside_card .card-text{
    height: auto;
    -webkit-line-clamp: 50;
}

.question__block {
    padding: 40px;
    background-color: #0961ad;
    color: #fff
}

@media screen and (max-width: 576px) {
    .question__block {
        padding: 20px
    }
}

.videos-page .videos__card {
    width: 48%
}

.videos-page .videos__card img {
    height: 400px;
    object-fit: cover
}

@media screen and (max-width: 992px) {
    .videos-page .videos__card img {
        height: 300px
    }
}

@media screen and (max-width: 576px) {
    .videos-page .videos__card {
        width: 100%
    }

    .videos-page .videos__card img {
        height: 250px
    }
}

.main-table__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.main-table__title {
    background-color: #0961ad;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: center;
    color: #fff;
    font-weight: 700;
    padding: 14px
}

@media screen and (max-width: 768px) {
    .main-table__title {
        display: none
    }
}

.main-table__cell {
    width: 100%;
    background-color: #e6e6e6;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: center;
    color: #013976;
    font-weight: 500;
    padding: 14px;
    margin-top: 10px
}

@media screen and (max-width: 768px) {
    .main-table__cell {
        -ms-flex-direction: column;
        flex-direction: column;
        font-size: 15px
    }
}

.main-table__cell:hover {
    color: #fff;
    background-color: #013976
}

.main-table__name_main {
    width: 40%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (max-width: 768px) {
    .main-table__name_main {
        width: 100%
    }
}

.main-table__name_secondary {
    width: 20%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (max-width: 768px) {
    .main-table__name_secondary {
        display: -ms-flexbox;
        display: flex;
        width: 100%
    }
}

.main-table__name_mobile {
    display: none
}

@media screen and (max-width: 768px) {
    .main-table__name_mobile {
        display: inline-block;
        margin-right: 10px;
        color: #3f3f3f;
        font-weight: 400
    }

    .main-table__name_mobile:after {
        content: ":"
    }
}

.main-table__price {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #e5240f;
    padding: 25px 40px;
    color: #fff
}

@media screen and (max-width: 576px) {
    .main-table__price {
        -ms-flex-direction: column;
        flex-direction: column
    }

    .main-table__price .btn {
        margin-top: 20px
    }
}

.main-table__price_subtitle {
    background-color: #0961ad;
    padding: 15px 40px
}

.main-table__price_subtitle p {
    color: #fff;
    margin: 8px 0;
    padding: 0
}

.main-table__price_subtitle p:before {
    content: "*"
}

.main-table__price_subtitle_second {
    background-color: #ccc
}

.main-table__price_subtitle_second p {
    color: #013976
}

.main-options__table .main-table__cell {
    margin-top: 0
}

.main-options__table .main-table__cell:hover {
    color: #013976;
    background-color: #f3f3f3;
    cursor: pointer
}

.main-options__table .main-table__cell div:last-child {
    color: #e5240f;
    font-weight: 700
}

.main-options__addmore {
    /*height: 0;*/
    /*overflow: hidden;*/
    /*transition: .3s ease*/
}

.main-options__addmore.active {
    height: auto
}
.form-switch{
    cursor: pointer;
}
.form-switch .form-check-input{
    cursor: pointer;
}

.wrapper .tab-button.active, .wrapper .tab-button.active:focus {
    background-color: #e5240f;
    color: #fff
}

.wrapper .tab-button.active:focus {
    border: 1px solid #e5240f
}

.wrapper .content {
    display: none
}

.wrapper .content.active {
    display: block
}

.main-steps__block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.main-steps__card {
    width: 30%;
    padding: 20px;
    display: -ms-flexbox;
    display: flex;
    background-color: #ececec;
    margin-bottom: 15px
}

@media screen and (max-width: 768px) {
    .main-steps__card {
        width: 100%
    }
}

.main-steps__number {
    font-size: 60px;
    line-height: 1;
    margin-right: 15px;
    color: #013976;
    font-weight: 700
}

@media screen and (max-width: 576px) {
    .main-steps__number {
        font-size: 45px
    }
}

.main-steps__text a {
    color: #e5240f
}

.swiper-button-next, .swiper-button-prev {
    background-color: #fff;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: 2px solid #0961ad;
    position: relative
}

.swiper-button-next, .swiper-button-next:after, .swiper-button-prev, .swiper-button-prev:after {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: -20px
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: -20px
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -25px
}
