@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Oswald');

body{
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
}

.top-header{
    padding-top: 25px;
    padding-bottom: 15px;
}

.footer .socials {
    margin-top: 5px;
}

.top-header-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.top-header__logo{
    display: block;
    width: 100px;
    height: 100px;
    background: url(../images/logo.png) no-repeat center;
    background-size: contain;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
}

.top-header__description{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34%;
            flex: 0 0 34%;
}

.top-header__description__title{
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    line-height: normal;
    font-weight: 600;
    color: #444;
}

.top-header__description__subtitle{
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    line-height: normal;
    font-weight: 400;
    color: #444;
}

.top-header__connect{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46%;
            flex: 0 0 46%;
}

.top-header__connect{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.phone-block{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.phone{
    position: relative;
    font-size: 1.2rem;
    line-height: normal;
    font-weight: 600;
    color: #444;
}

.phone:hover{
    color: #444;
    text-decoration: none;
}

.phone::before{
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: -20px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background: url(../images/call.svg) no-repeat center;
    background-size: contain;
}

.callback{
    font-size: 1.1rem;
    padding: 5px 15px;
    margin-left: 15px;
    color: #333;
    background-color: #FFCA00;
    border-radius: 25px;
    border: 2px solid #333;
}

.callback:hover{
    color: #333;
    background-color: #FFCA00;
    text-decoration: none;
}

.socials {
    display: flex;
    gap: 5px;
    margin-left: 10px;
    align-items: center;
}

/*.whatsapp{
    position: relative;
    font-size: 1.0rem;
    line-height: 35px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    background: #33d16b;
    background: linear-gradient(45deg, #33d16b, #5cda89);
    border-radius: 25px;
    color: #fff;
    height: 35px;
    width: 230px;
    padding-left: 15px;
    margin-top: 10px;
}

.whatsapp:hover{
    background: #33d16b;
    background: linear-gradient(45deg, #33d16b, #5cda89);
    color: #fff;
    text-decoration: none;
}

.whatsapp::before{
    content: "";
    display: block;
    width: 38px;
    height: 38px;
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    background: url(../images/whatsapp.svg) no-repeat center;
    background-size: contain;
}*/



.navbar {
    font-size: 1.4rem;
    padding: .5rem 0;
}

.navbar-toggler-icon {
    position: relative;
}

.navbar-toggler-icon::after {
    content: "Меню";
    position: absolute;
    right: -100px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-link{
    font-family: 'Oswald', sans-serif;
}

@media (min-width: 992px){
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1.4rem;
        padding-left: 1.4rem;
    }
    .navbar-expand-lg .navbar-nav .nav-link:last-child {
        padding-left: 0;
    }       
}

@media (max-width: 991px){
    .top-header__logo {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 20%;
                flex: 0 0 20%;
    }
    .top-header__description {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 70%;
                flex: 0 0 70%;
    }

    .top-header__connect {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
    }

    .top-header__connect{
        margin-top: 15px;
    }

    .top-header__connect {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .callback {
        padding: 5px 35px;
    }
}

@media (max-width: 767px){
    .top-header__connect {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
}

@media (max-width: 576px){
    .socials {
            margin-top: 15px;
    }
    .top-header__logo {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
    }
    .top-header-wrapper {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .top-header__description {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        text-align: center;
        margin-top: 15px;
        margin-bottom: 25px;
    }
    .top-header__connect {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .phone-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .callback {
        margin-top: 10px;
    }
    .whatsapp {
        margin-left: 25px;
    }
}

.mb-25{
    margin-bottom: 35px;
}

.mb-35{
    margin-bottom: 35px;
}

.mb-55{
    margin-bottom: 55px;
}

.section__title {
    font-family: 'Oswald', sans-serif;
    color: #444;
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0.15rem;
}

.section__title span,
.section__subtitle span{
    color: rgb(238, 29, 36);
}

.section__title--green {
    color: #64B161;
    text-shadow: 1px 0 0px #000, 1px 1px 0px #000;
}

.section__title--white {
    color: #fff;
    text-shadow: 1px 0 0px #000, 1px 1px 0px #000;
}

.section__subtitle{
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    line-height: 1.65;
    font-weight: 400;
    text-shadow: -1px 0 1px white, 0 -1px 1px white, 0 1px 1px white, 1px 0 1px white, 0 0 8px white, 0 0 8px white, 0 0 8px white, 2px 2px 3px black;
}

.section__subtitle--white{
    color: #fff;
    text-shadow: 1px 0 0px #000, 1px 1px 0px #000; 
}

.marquiz__button {
    margin: 15px auto;
    font-family: "Montserrat";
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
    border-radius: 100px;
    padding: 15px 24px;
    border: 0px solid #000;
    margin: 0 auto;
    display: block;
    max-width: 270px;
}
.marquiz__button:hover {
  color: #ffffff;
  text-decoration: none;
}

.pulse-button {
  -webkit-animation: borderPulse 1000ms infinite ease-out, colorShift 10000ms infinite ease-in;
          animation: borderPulse 1000ms infinite ease-out, colorShift 10000ms infinite ease-in;
}

.marquiz__button:hover,
.marquiz__button:focus {
  -webkit-animation: borderPulse 1000ms infinite ease-out, colorShift 10000ms infinite ease-in, hoverShine 200ms;
          animation: borderPulse 1000ms infinite ease-out, colorShift 10000ms infinite ease-in, hoverShine 200ms;
}

@-webkit-keyframes colorShift {
  0%, 100% {
      background: #e5e81d;
  }
  33% {
    background: #fb3e3e;
  }
  66%{
    background: #0dcc00;
  }
}

@keyframes colorShift {
  0%, 100% {
      background: #e5e81d;
  }
  33% {
    background: #fb3e3e;
  }
  66%{
    background: #0dcc00;
  }
}

@-webkit-keyframes borderPulse {
  0% {
    -webkit-box-shadow: inset 0px 0px 0px 5px rgba(255, 255, 255,.4), 0px 0px 0px 0px rgba(255,255,255,1);
            box-shadow: inset 0px 0px 0px 5px rgba(255, 255, 255,.4), 0px 0px 0px 0px rgba(255,255,255,1);
  }
  100% {
    -webkit-box-shadow: inset 0px 0px 0px 3px rgba(117, 117, 255,.2), 0px 0px 0px 10px rgba(255,255,255,0);
            box-shadow: inset 0px 0px 0px 3px rgba(117, 117, 255,.2), 0px 0px 0px 10px rgba(255,255,255,0);
  }
}
@keyframes borderPulse {
  0% {
    -webkit-box-shadow: inset 0px 0px 0px 5px rgba(255, 255, 255,.4), 0px 0px 0px 0px rgba(255,255,255,1);
            box-shadow: inset 0px 0px 0px 5px rgba(255, 255, 255,.4), 0px 0px 0px 0px rgba(255,255,255,1);
  }
  100% {
    -webkit-box-shadow: inset 0px 0px 0px 3px rgba(117, 117, 255,.2), 0px 0px 0px 10px rgba(255,255,255,0);
            box-shadow: inset 0px 0px 0px 3px rgba(117, 117, 255,.2), 0px 0px 0px 10px rgba(255,255,255,0);
  }
}

@-webkit-keyframes hoverShine {
  0%{
    background-image: linear-gradient(135deg, rgba(255,255,255,.4) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0) 100%);
  }
  50%{
    background-image: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.4) 50%, rgba(255,255,255,0) 100%);
  }
  100%{
    background-image: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,.4) 100%);
  }
}

@keyframes hoverShine {
  0%{
    background-image: -o-linear-gradient(315deg, rgba(255,255,255,.4) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0) 100%);
    background-image: linear-gradient(135deg, rgba(255,255,255,.4) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0) 100%);
  }
  50%{
    background-image: -o-linear-gradient(315deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.4) 50%, rgba(255,255,255,0) 100%);
    background-image: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.4) 50%, rgba(255,255,255,0) 100%);
  }
  100%{
    background-image: -o-linear-gradient(315deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,.4) 100%);
    background-image: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,.4) 100%);
  }
}

.test{
    background-size: cover;
}

.test-filter{
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #00000047;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(186,186,186,1);
            box-shadow: 0px 5px 10px 0px rgba(186,186,186,1);
}

.pt-100{
    padding-top: 100px;
}

.pb-100{
    padding-bottom: 100px;
}

.advantages{
    padding-top: 75px;
    padding-bottom: 75px;
}

.advantages-list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.advantages-list-item{
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(186,186,186,1);
            box-shadow: 0px 5px 10px 0px rgba(186,186,186,1);
    padding: 25px 15px 5px;
    margin-bottom: 25px;
    max-width: 320px;
}

.advantages-list-item__title{
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px;
}

.advantages-list-item__img{
    width: 100%;
    max-width: 320px;
    height: auto;
}

.about{
/*    background: url(../images/bg-corsa.jpg) no-repeat right center;
    background-size: cover;*/
}

.about-filter{
    padding-top: 100px;
    padding-bottom: 100px;
/*    background-color: #ffffffb8;
    box-shadow: 0px 5px 10px 0px rgba(186,186,186,1);*/
}

.text-block{
    font-size: 1.2rem;
    line-height: 1.1;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.9);
}

.car{
    padding-top: 100px;
    padding-bottom: 100px;
}



.car-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.car-item{
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 75px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
}

.car-item__img{
    display: block;
    margin: 0 auto 15px;
    border-radius: 15px;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(186,186,186,1);
            box-shadow: 0px 5px 10px 0px rgba(186,186,186,1);
}

.car-item__title{
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

.car-item-description{
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 400;
    text-align: center;
}

@media (max-width: 767px){
    .car-wrapper {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}

.footer{
    position: relative;
    padding-top: 35px;
    padding-bottom: 55px;
    background-color: #333;
    color: #fff;
}

.footer__logo{
    display: block;
    width: 180px;
    height: 80px;
    margin: 0 auto 35px;
}

.footer-menu__title{
    font-size: 1.4rem;
    padding: 0 0 15px 0;
    position: relative;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1px solid #444;
    margin-bottom: 15px;    
}

.footer-menu__title:before {
    content: '';
    display: block;
    width: 150px;
    border-top: 3px solid #D5B44A;
    position: absolute;
    left: 0;
    bottom: -3px;
}

.footer-menu-list{
    list-style: none;
    padding-left: 0;
}

.footer-menu-list-item{
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 400;
    padding: 15px 20px;
}

.footer-menu-list-item:first-child{
    padding-left: 0;
}

.footer-menu-list-item-link{
    color: #fff;
    text-decoration: none;
}

.footer-menu-list-item-link:hover{
    color: #fff;
    text-decoration: none;
}


.phone-color--white{
    color: #fff;
}

.phone-color--white:hover{
    color: #fff;
}

.phone-color--white::before {
    content: "";
    background: url(../images/call-w.svg) no-repeat center;
    background-size: contain;
}

@media (max-width: 768px){
    .footer-menu-list-item {
        display: block;
    }

    .footer-menu-list-item:first-child{
        padding-left: 20px;
    }

    .footer-menu{
        max-width: 320px;
        margin: 35px auto;
    }
}

.online{
    padding-top: 70px;
    padding-bottom: 100px;
}

.online-text{
    max-width: 480px;
}

.online__title{
    color: #fff;
    font-size: 2.1rem;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    text-shadow: 1px 0 0px #000, 1px 1px 0px #000;
    margin-bottom: 25px;
}

.online__description{
    font-size: 1rem;
    line-height: 1.1;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 1px 0 0px #000, 1px 1px 0px #000;
}

.online-wrapper{
    position: relative;
    padding: 55px 35px 25px;
    background: url(../images/online-bg.png) no-repeat center center;
    background-size: cover;
}

.order{
    display: block;
    max-width: 240px;
    padding: 15px 25px;
    font-size: 1rem;
    line-height: 1.1;
    letter-spacing: 1px;
    color: #0E4485;
    font-weight: 600;
    background-color: #fff;
    border-radius: 25px;
    text-align: center;
    text-transform: uppercase;
}

.order:hover{
    cursor: pointer;
    color: #0E4485;
    text-decoration: none;
}

.mt-25{
    margin-top: 25px;
}

@media (max-width: 768px){
    .online-wrapper {
        position: relative;
        padding: 55px 55px 25px;
        background: url(../images/online-bg.png) no-repeat right center;
        background-size: cover;
    }
}

/* modal */

.modal-title {
    color: #333;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    line-height: 1.4;
    width: 100%;
    padding-left: 50px;
}

.modal-header .close {
    font-size: 56px;
    line-height: 32px;
    outline: none;
    margin: -1rem -1rem -1rem 0;
}

.btn-modal{
    display: block;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: #333;
    background: #FFCA00;
    border: 2px solid #333;
    border-radius: 2px;
    padding: 15px 25px;
    margin: 0 auto;
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    padding: 3rem;
}

.form-control {
    font-size: 1.1rem;
    line-height: 1;
    padding: 1.55rem .75rem;
    border: 1px solid #ced4da;
}

.bl-n {
    border-left: none;
}

.input-group-text {
    background-color: inherit;
    border-right: none;
}

form label{
    font-family: 'Oswald', sans-serif;
    display: block;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1;
}

.input-group {
    margin-bottom: 20px;
}

/* modal */
.modal-content {
    /* background-color: #eee; */
}

.input-group-text {
    background-color: #fff!important;
}

.step-active{
    display: block;
}

.step-hidden{
    display: none;
}

.welcome{
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 500;
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
}

.position, .question{
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.position{
    color: #FFCA00;
}

.mw-340{
    max-width: 540px;
}

.mb-a-100{
    margin: 0 auto 100px;
}

.m-l-auto{
    margin-left: auto;
}
.m-r-auto{
    margin-right: auto;
}

.mt-50{margin-top: 50px;}

.mb-50{margin-bottom: 50px;}

.form-check-wrapper{
    overflow: hidden;
}

.next-btn,
.back-btn {
    position: relative;
    background-color: #FFCA00;
    color: #333;
    border: 2px solid #333;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 500;
    padding: 15px 25px 15px 50px;
}

.back-btn {
    margin-right: 15px;
}

.next-btn:hover,
.back-btn:hover {
    color: #333;
    text-decoration: none;
}

.next-btn::before{
    content: "→";
    font-weight: 400;
    font-size: 1.6rem;
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.back-btn::before{
    content: "←";
    font-weight: 400;
    font-size: 1.6rem;
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.next-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.form-check {
    background-color: #fff;
    padding: 10px 15px 10px 35px;
    margin-bottom: 10px;
    width: 50%;
    float: left;
}

.form-check-nb {
    background-color: inherit;
    padding: 0;
    margin-bottom: 15px;
    padding-left: 1.25rem;
}

.form-check-input {
    margin-left: -20px;
}

.form-check-label{
    -moz-text-align-last: left;
         text-align-last: left;
}

.fr-name, .A5P9ZYHNqAAY{
    display: none;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #ced4da;
    outline: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
}

@media (min-width: 576px){
    .modal-dialog {
        max-width: 576px;
        margin: 1.75rem auto;
    }    
}

.content-wrap {
    padding: 100px 0;
}

.btn-contacts{
    padding: 10px 30px;
}

.body-text{
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 400;
}

.rs-icon-info-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.rs-icon-info-2 .info-icon {
    text-align: center;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.rs-icon-info-2 .fa {
    width: 70px;
    height: 70px;
    margin-right: 20px;
    color: #28a745;
    background-color: transparent;
    border-radius: 50%;
    padding-top: 7px;
    font-size: 30px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.articles-list-item__img{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px;
    width: 200px;
}

@media (min-width: 768px){
    .h-md-250 {
        height: 250px;
    }
}

.single-article .media-box {
    margin-bottom: 20px;
    position: relative;
}

.single-article .title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.single-news .meta {
    font-size: 1.2rem;
    color: #999999;
}

.mt-120{
    margin-top: 120px;
}

.mt-40{
    margin-top: 40px;
}

.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-checkbox label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.custom-checkbox:checked+label::before {
    border-color: #0b76ef;
    background-color: #0b76ef;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

/* стили при наведении курсора на checkbox */
.custom-checkbox:not(:disabled):not(:checked)+label:hover::before {
    border-color: #b3d7ff;
}
/* стили для активного состояния чекбокса (при нажатии на него) */
.custom-checkbox:not(:disabled):active+label::before {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}
/* стили для чекбокса, находящегося в фокусе */
.custom-checkbox:focus+label::before {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.custom-checkbox:focus:not(:checked)+label::before {
    border-color: #80bdff;
}
/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox:disabled+label::before {
    background-color: #e9ecef;
}

/* для элемента input c type="radio" */
.custom-radio {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
/* для элемента label связанного с .custom-radio */
.custom-radio+label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
/* создание в label псевдоэлемента  before со следующими стилями */
.custom-radio+label::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 50%;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}
/* стили при наведении курсора на радио */
.custom-radio:not(:disabled):not(:checked)+label:hover::before {
    border-color: #b3d7ff;
}
/* стили для активной радиокнопки (при нажатии на неё) */
.custom-radio:not(:disabled):active+label::before {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}
/* стили для радиокнопки, находящейся в фокусе */
.custom-radio:focus+label::before {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
/* стили для радиокнопки, находящейся в фокусе и не находящейся в состоянии checked */
.custom-radio:focus:not(:checked)+label::before {
    border-color: #80bdff;
}
/* стили для радиокнопки, находящейся в состоянии checked */
.custom-radio:checked+label::before {
    border-color: #0b76ef;
    background-color: #0b76ef;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
/* стили для радиокнопки, находящейся в состоянии disabled */
.custom-radio:disabled+label::before {
    background-color: #e9ecef;
}

@media (min-width: 576px){
    .modal-dialog {
        max-width: 840px;
        margin: 1.75rem auto;
    }    
}

@media (max-width: 640px){
    .form-check {
        width: 100%;
    }

    .modal-title {
        font-size: 1.4rem;
    }

    .form-check {
        padding: 2px 15px 2px 35px;
    }

    .welcome {
        font-size: 1rem;
    }


}

.flex-end{
    justify-content: flex-end;
}