* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    overflow-x: hidden;
    background-color: #fafafa;
}

a {
    text-decoration: none;
}

button {
    border: none;
    background-color: transparent;
    cursor: pointer;
}

button,
select,
textarea,
input {
    border: none;
    outline: none;
}

a,
img,
span,
input,
textarea,
button,
svg,
path,
circle {
    transition: .3s all ease;
}

input {
    outline: none;
}

.main-btn{
    border-radius: 8px;
    white-space: nowrap;
    width: 282px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #295d9e;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
}
.main-btn:hover{
    background: #174782;
}


.container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0px 20px;
}

/* Header start */
.header .header-content {
    display: flex;
    flex-direction: column;
}

.header .header__top {
    width: 100%;
    padding: 22px 0;
    background-color: #295d9e;
}

.header__top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header__top .header__top-text {
    color: #b6d5ff;
    font-size: 20px;
    line-height: 150%;
}

.header__top .header__top-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__top-info .header-email {
    color: #ffffff;
    font-size: 23px;
    font-weight: 700;
    line-height: 100%;
    text-decoration-line: underline;
    padding-right: 24px;
    border-right: 1px solid #FFFF;
}

input[type="text"],
select,
textarea {
    width: 100%;
}

.custom-select-wrapper {
    position: relative;
    display: block;
}

.custom-select-wrapper select {
    display: none;
    width: 100%;
}

.custom-select {
    position: relative;
    display: block;
}

.custom-select-trigger {
    position: relative;
    padding: 0 26px 0 0;
    display: block;
    overflow: hidden;
    width: 100%;
    color: rgb(255, 255, 255);
    font-size: 23px;
    font-weight: 700;
    line-height: 120%;
    cursor: pointer;
}

.custom-select-trigger:after {
    position: absolute;
    display: block;
    content: '';
    top: 32%;
    right: 0;
    width: 18px;
    height: 28px;
    background-image: url(../img/icon/arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .4s ease-in-out;
    transform-origin: 50% 0;
}

.custom-select.opened .custom-select-trigger:after {
    margin-top: 0.13636363em;
    transform: rotate(-180deg) translateY(-50%);
}

.custom-select-trigger-text {
    position: relative;
    top: 6px;
    padding: 0;
    display: inline-block;
    overflow: hidden;
    color: rgb(255, 255, 255);
    font-size: 23px;
    font-weight: 700;
    line-height: 120%;
}

.custom-options {
    position: absolute;
    top: 100%;
    z-index: 3;
    right: 0;
    left: -220px;
    margin: 0;
    display: none;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    -webkit-transition: all .4s ease-in-out;
    opacity: 0;
    z-index: 10;
    transition: all .4s ease-in-out;
}

.custom-options:before {
    position: absolute;
    display: block;
    content: '';
    top: -30px;
    right: 0;
    width: 19px;
    height: 33px;
    background-image: url(../img/icon/select-before.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .4s ease-in-out;
}

.option-hover:before {
    background: #f9f9f9;
}

.custom-option {
    position: relative;
    display: block;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    cursor: pointer;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    white-space: nowrap;
}

.custom-option.selection:hover,
.custom-option:hover {
    background: rgb(41, 93, 158);
    color: #FFF;
}


.header-bottom {
    position: relative;
    padding: 15px 0;
    background-color: #FFF;
}

.header-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-bottom .header__bottom-menu {
    display: flex;
    align-items: center;
    gap: 57px;
}

.header-mob .header__mob-link,
.header__bottom-menu .header__bottom-link {
    position: relative;
    color: #525252;
    font-size: 20px;
    line-height: 23px;
    overflow: hidden;
    white-space: nowrap;
}
.header-mob .header__mob-link.active,
.header__bottom-menu .header__bottom-link.active{
    border-bottom: 2px solid #295d9e;
}
.header-mob .header__mob-link.active::after,
.header__bottom-menu .header__bottom-link.active::after{
    display: none;
}
.header-mob .header__mob-link::after,
.header__bottom-menu .header__bottom-link::after {
    content: '';
    position: absolute;
    left: -150%;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #295d9e;
    transition: .3s ease all;
}
.header-mob .header__mob-link:hover::after,
.header__bottom-menu .header__bottom-link:hover::after {
    left: 0;
}

.header-mob-languages{
    display: none;
    align-items: start;
    gap: 9px;
}
.header-mob-languages .custom-select{
    box-sizing: border-box;
    border: 1px solid rgb(41, 93, 158);
    border-radius: 4px;
    background: rgb(41, 93, 158);
    padding: 0px 12px;
    height: 31px;
}
.header-mob-languages .custom-select-trigger-text{
    color: #FFF;
    top: 3px;
    font-size: 14px;
    white-space: nowrap;
}
.header-mob-languages .custom-select-trigger:after{
    top: 22%;
}

.header-bars-img.active,
.header-close-img.active{
    display: none;
}

.header-mob{
    position: absolute;
    top: 50px;
    opacity: 0;
    display: none;
    pointer-events: none;
    z-index: 9;
    background-color: #ffffff;
    width: 100%;
    padding: 0 14px 35px;
    transition: .3s ease all;
}
.header-mob.active{
    top: 90px;
    opacity: 1;
    pointer-events: all;
}
.header__mob-links{
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 32px;
    border-top: 2px solid #b7b7b7;
}
.header-mob .header__mob-link{
    max-width: fit-content;
    font-size: 16px;
    line-height: 18px;
}
/* Header end */

/* Home start */
.home {
    padding: 24px 0 0;
    margin-bottom: 124px;
    background-image: url(../img/home-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}

.breadcrumb-block{
    padding-top: 24px;
}
.breadcrumb {
    display: flex;
    align-items: center;
}
.breadcrumb .breadcrumb-link {
    position: relative;
    padding-right: 20px;
    font-size: 14px;
    line-height: 120%;
    color: #295d9e;
    text-decoration: underline;
}

.breadcrumb .breadcrumb-link::after {
    content: '>';
    position: absolute;
    right: 7px;
    top: 1px;
    font-size: 14px;
    line-height: 120%;
    color: #295d9e;
}

.breadcrumb .breadcrumb-text {
    font-size: 14px;
    line-height: 120%;
    color: #222222;
}

.home .home-content {
    display: flex;
    gap: 30px;
    margin-top: 48px;
    padding: 36px 48px 40px 36px;
    border-radius: 12px;
    box-shadow: 14px 14px 64px 0px #0000000d;
    background: #fafafa;
}
.home .home-content.d-none{
    display: none;
}

.home-content .home-info {
    width: 42%;
    display: flex;
    flex-direction: column;
    gap: 37px;
}

.home-info .home__info-title {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.home__info-title h1 {
    color: #222222;
    font-size: 36px;
    font-weight: 500;
    line-height: 120%;
    max-width: 357px;
}

.home__info-title p {
    color: #525252;
    font-size: 16px;
    line-height: 150%;
    max-width: 443px;
}

.home-info .home__info-bans {
    display: flex;
    align-items: center;
    border-radius: 6px;
    background: rgb(253, 244, 244);
    padding: 12px 11px 11px 10px;
    gap: 16px;
}

.home__info-bans .home__bans-num {
    white-space: nowrap;
    color: #ff1616;
    font-size: 56px;
    font-weight: 700;
    line-height: 100%;
}

.home__info-bans .home__bans-text {
    color: #ff1616;
    font-size: 16px;
    line-height: 140%;
}

.home-form{
    width: 58%;
    display: none;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;
}
.home-form.active{
    display: flex;
}

.home-form-wrap{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.home-form .form-groups{
    display: flex;
    align-items: center;
    gap: 24px;
}
.form-group {
    position: relative;
    width: 100%;
}
.form-group .form-calendar{
    position: absolute;
    right: 20px;
    top: 17px;
    background-color: #f5f5f5;
    pointer-events: none;
}
.select-group .select-value,
.form-group .form-control{
    font-size: 16px;
    line-height: 120%;
    color: #525252;
    box-sizing: border-box;
    border-bottom: 2px solid rgb(183, 183, 183);
    border-radius: 8px 8px 0px 0px;
    background: #f5f5f5;
    height: 58px;
    width: 100%;
    padding: 0px 20px;
    cursor: pointer;
    transition: .3s ease all;
}
.select-group .select-value:hover,
.select-group .select-value:focus,
.form-group .form-control:focus,
.form-group .form-control:hover{
    border-bottom: 2px solid rgb(41, 93, 158);
}
.form-group .palceholder {
    position: absolute;
    top: 20px;
    left: 20px;
    display: none;
    z-index: 2;
    background-color:rgb(245, 245, 245);
    pointer-events: none;
}
.form-group label {
    font-size: 16px;
    line-height: 120%;
    color: #525252;
}
.form-group .star {
    color: #ff1616;
}

.select-group .select-value{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.select-group .select-value span{
    font-size: 16px;
    line-height: 120%;
    color: #525252;
}
.select-group .select-value span b{
    color: red;
}
.select-value .select-icon.active{
    transform: rotate(-180deg);
}
.select-group .select-option{
    position: absolute;
    top: 100px;
    background-color: #f5f5f5;
    z-index: 4;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: .3s ease all;
}
.select-group .select-option.active{
    top: 70px;
    opacity: 1;
    pointer-events: all;
}
.select-group .select-text{
    padding: 17px;
    transition: .3s ease all;
    cursor: pointer;
}
.select-group .select-text:hover{
    background-color: #295d9e;
    color: #FFF;
}

.home-form .home__form-bottom{
    display: flex;
    align-items: center;
    gap: 24px;
}
.home__form-bottom .home__form-text{
    font-size: 12px;
    line-height: 140%;
    max-width: 392px;
}
.home__form-bottom .home__form-text a{
    text-decoration: underline;
    color: #295d9e;
}
/* Home end */


/* About start */
.about{
    padding-bottom: 100px;
}
.about .about-content{
    display: flex;
    align-items: start;
}
.about-content .about-img img{
    margin-top: -40px;
    margin-left: -40px;
    border-radius: 12px;
}
.about-content .about-info{
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 14px 14px 64px 0px rgba(0, 0, 0, 0.05);
    background: rgb(250, 250, 250);
    padding: 24px 21px 32px 24px;
    margin-left: -52px;
}
.about-info .about-info-title{
    color: #222222;
    font-size: 32px;
    font-weight: 500;
    line-height: 120%;
}
.about-info .about-info-texts-wrap{
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
}
.about-info .about-info-texts{
    padding-bottom: 18px;
    border-bottom: 1px solid rgb(183, 183, 183);
    display: flex;
    flex-direction: column;
    gap: 21px;
}
.about-info .about-info-texts2{
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 37px;
    gap: 16px;
}
.about-info .about-info-text{
    display: flex;
    align-items: start;
    gap: 8px;
}
.about-info .about-info-text b{
    color: rgb(34, 34, 34);
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
}
.about-info .about-info-text p{
    color: rgb(82, 82, 82);
    font-size: 16px;
    line-height: 150%;
}
.about-info .about-info-texts2 .about-info-text p{
    color: #525252;
}
.about-info .about-info-texts2 .about-info-line{
    width: 100%;
    height: 1px;
    background-color: #b7b7b7;
}
.about-info .about-info-text p span{
    color: #295d9e;
}
.about-info .about__info-link{
    margin-top: 33px;
}
/* About end */

/* Question start */
.question{
    padding-bottom: 124px;
}
.question .question-title{
    color: #222222;
    font-size: 32px;
    font-weight: 500;
    line-height: 100%;
}
.question .question-cards{
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 24px;
    row-gap: 32px;
    margin-top: 32px;
}
.question .question-card{
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 12px;
    box-shadow: 14px 14px 64px 0px rgba(0, 0, 0, 0.05);
    background: rgb(255, 255, 255);
    padding: 24px 24px 32px 24px;
}
.question-card .question__card-title{
    color: #222222;
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
}
.question-card .question__card-text{
    color: #525252;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
/* Question end */

/* Bans start */
.bans{
    padding: 24px 0 0;
    margin-bottom: 124px;
    background-image: url(../img/home-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}
.bans-content{
    display: flex;
    flex-direction: column;
    gap: 48px;
    border-radius: 12px;
    box-shadow: 14px 14px 64px 0px rgba(0, 0, 0, 0.05);
    background: rgb(250, 250, 250);
    padding: 36px 30px 52px;
    margin-top: 48px;
}
.bans-content.d-none{
    display: none;
}
.bans-content .bans-info{
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(183, 183, 183, 1);
}
.bans-info .bans-info-title{
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    border-radius: 12px;
    background: rgb(253, 244, 244);
}
.bans-info .bans-info-title h1{
    color: #ff1616;
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
    text-decoration-line: underline;
}
.bans-info .bans-info-title p{
    color: #ff1616;
    font-size: 20px;
    line-height: 160%;
}

.bans-info .bans-items{
    display: flex;
    align-items: center;
    gap: 16px;
}
.bans-info .bans-item {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    padding: 18px 24px 20px 16px;
    border-radius: 6px;
    background: rgb(245, 245, 245);
}
.bans-item .bans-item-info{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bans-item .bans-item-info b{
    color: #333333;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
}
.bans-item .bans-item-info span{
    color: #295d9e;
    font-size: 14px;
    line-height: 100%;
}
.bans-info .bans-item-red{
    background-color: #fdf4f4;
}
.bans-item-red .bans-item-info span{
    color: #ff1616;
}

.bans-item .bans-item-icon{
    position: relative;
}
.bans-item .bans-item-icon2{
    animation: rotate-anime 2s linear infinite;
}
.bans-item .bans-item-icon2,
.bans-item .bans-item-icon1{
    display: none;
}
.bans-item .bans-item-icon2.active,
.bans-item .bans-item-icon1.active{
    display: block;
}

@keyframes rotate-anime{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.bans-content .report-info{
    display: flex;
    flex-direction: column;
    gap: 37px;
}
.report-info .report__title-wrap{
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.report-info .report-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.report-info .report-title h1{
    color: #222222;
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
}
.report-info .report-title span{
    color: #222222;
    font-size: 32px;
    line-height: 100%;
}
.report-info .report-text{
    color: #525252;
    font-size: 16px;
    line-height: 100%;
}
.report-info .report-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.report-info .report__form-groups{
    display: flex;
    align-items: start;
    gap: 25px;
}
.report__form-groups2{
    align-items: end;
}
.report-info .report__form-group{
    width: 100%;
}
.report-info .report__form-group .form-group{
    position: relative;
}
.report__form-group .form-group .select-value{
    border-color: rgba(41, 93, 158, 1);
}
.report__form-group .select-value span{
    color: rgba(41, 93, 158, 1);
}
.report__form-groups .report__form-links{
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}
.report__form-groups .report__form-link{
    padding: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    height: 56px;
    width: 100%;
    border-radius: 5px;
    background: #295d9e;
}
.report__form-groups .report__form-back{
    color: #295d9e;
    box-sizing: border-box;
    border: 1px solid #295d9e;
    background: #fafafa;
}
.report__form-groups .report__form-check{
    display: flex;
    gap: 8px;
    width: 100%;
}
.report__form-groups .report__form-check input{
    width: 20px;
    height: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.report__form-check label{
    font-size: 16px;
    line-height: 140%;
    color: #1b1b1b;
}
.report__form-check label a{
    color: #295d9e;
}
/* Bans end */

/* Contact start */
.contact{
    padding: 190px 0px 244px;
}
.contact .contact-block{
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.contact-block .contact-title{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-title h1{
    color: #1b1b1b;
    font-size: 36px;
    font-weight: 500;
    line-height: 120%;
}
.contact-title .contact-text{
    max-width: 820px;
    color: #1b1b1b;
    font-size: 20px;
    line-height: 160%;
}
.contact-block .contact-cards{
   display: grid;
   grid-template-columns: auto auto auto;
    gap: 25px;
}
.contact-block .contact-card{
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 14px 14px 64px 0px #0000000d;
    background: #fafafa;
    height: 177px;
    width: 100%;
    padding: 20px;
}
.contact-block .contact-card span{
    color: #828282;
    font-size: 18px;
    font-weight: 300;
    line-height: 100%;
}
.contact-block .contact-card a{
    color: #295d9e;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
    text-decoration-line: underline;
    white-space: nowrap;
}
.contact-block .contact-card p{
    color: #1b1b1b;
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
}
/* Contact end */

/* Pay start */
.pay-service{
    padding: 48px 0px 64px;
}
.pay-service .pay-block{
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.pay-block .pay-title-wrap{
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.pay-title-wrap .pay-title{
    color: #1b1b1b;
    font-size: 36px;
    font-weight: 700;
    line-height: 100%;
}
.pay-title-wrap .pay-texts{
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pay-title-wrap .pay-text{
    color: rgb(27, 27, 27);
    font-size: 16px;
    line-height: 160%;
}

.pay-block .pay-cart{
    color: rgb(27, 27, 27);
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
}
.pay-block .pay-cart a{
    color: rgb(27, 27, 27);
    text-decoration: underline;
}

.pay-block .pay-block-texts{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.pay-block .pay-block-text{
    display: flex;
    flex-direction: column;
}
.pay-block .pay-block-text ul li,
.pay-block .pay-block-text p{
    color: #1b1b1b;
    font-size: 16px;
    line-height: 160%;
}
.pay-block .pay-block-text ul{
    padding-left: 20px;
}
/* Pay end */





/* Footer start */
.footer{
    padding: 36px 0;
    background-color: #222222;
}
.footer .footer-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 25px;
    border-bottom: 1px solid #656565;
}
.footer-top .footer-menu{
    display: flex;
    align-items: center;
    gap: 48px;
}
.footer-menu .footer__menu-group{
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.footer__menu-group span{
    color: #ffffff;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
}
.footer__menu-group a{
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    white-space: nowrap;
}
.footer-top .footer__top-link{
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.footer-top .footer__top-link a{
    color: #ffffff;
    font-size: 14px;
    line-height: 100%;
    text-decoration-line: underline;
}
.footer .footer-text{
    color: #ffffff;
    font-size: 14px;
    line-height: 150%;
    padding-top: 24px;
}
/* Footer end */




/* @MEDIA START */

@media only screen and (max-width: 1200px) {
    .header-bottom .header__bottom-menu{
        flex-wrap: wrap;
        gap: 30px;
        row-gap: 10px;
        justify-content: end;
    }
    .home-info .home__info-bans {
        align-items: start;
        gap: 12px;
        flex-direction: column;
    }
    
    
}

@media only screen and (max-width: 991px){
    .header-mob {
        display: block;
    }
    .header-bottom .header__bottom-menu,
    .header__top .header__top-info,
    .question .question-card:nth-child(5),
    .question .question-card:nth-child(6),
    .about-content .about-img{
        display: none;
    }
    .header-mob-languages{
        display: flex;
    }
    .header-logo img{
        width: 200px;
    }

    .home .home-content{
        flex-direction: column;
        gap: 24px;
    }
    .home-content .home-info,
    .home-form{
        width: 100%;
    }
    .home-content .home-info {
        gap: 24px;
    }
    .home-info .home__info-title{
        gap: 12px;
    }
    .home__info-title h1,
    .home__info-title p{
        max-width: 100%;
    }

    .report-info .report__form-groups{
        flex-direction: column;
        gap: 24px;
    }
    .bans-info .bans-items{
        flex-direction: column;
        gap: 18px;
    }


    .about-content .about-info{
        margin-left: 0;
    }

    .question .question-cards{
        grid-template-columns: auto auto;
    }

    .footer .footer-top{
        flex-wrap: wrap;
    }
    .footer-top .footer-menu{
        gap: 24px;
        flex-wrap: wrap;
    }


    .contact-block .contact-cards{
        grid-template-columns: auto auto;
    }
    
    
}

@media only screen and (max-width: 776px){
    .question,
    .about{
        padding-bottom: 64px;
    }
    .contact{
        padding: 36px 0px 64px;
    }
    .question .question-cards{
        grid-template-columns: auto;
        row-gap: 24px;
        margin-top: 24px;
    }
    .question .question-card:nth-child(4){
        display: none;
    }

    .home-form .home__form-bottom{
        flex-direction: column;
        gap: 14px;
        align-items: start;
    }
    .home__form-bottom .home__form-text{
        max-width: 100%;
    }


    .contact-block .contact-cards{
        grid-template-columns: auto;
    }
}

@media only screen and (max-width: 576px) {
    .container{
        padding: 0px 14px;
    }
    .main-btn{
        width: 100%;
    }
    .header-logo img {
        width: 115px;
    }
    .header .header__top{
        padding: 7px 0;
    }
    .header__top .header__top-text {
        color: #b6d5ff;
        font-size: 12px;
        line-height: 15px;
    }
    .custom-options{
        left: -115px;
    }
    .custom-option{
        padding: 10px 20px;
    }

    .header-mob{
        top: 40px;
    }
    .header-mob.active {
        top: 65px;
    }

    .home{
        margin-bottom: 64px;
    }
    .page1-home{
        padding-top: 0;
    }
    .home-form{
        gap: 14px;
    }
    .home-form .form-groups{
        flex-direction: column;
        gap: 14px;
    }
    .home .home-content{
        margin-top: 36px;
        padding: 24px 14px;
    }
    .home__info-title h1 {
        font-size: 26px;
        line-height: 31px;
    }
    .home__info-title p {
        font-size: 12px;
        line-height: 18px;
    }
    .home-info .home__info-bans{
        padding: 12px;
    }
    .home__info-bans .home__bans-num {
        font-size: 26px;
        line-height: 26px;
    }
    .home__info-bans .home__bans-text {
        color: #ff1616;
        font-size: 12px;
        line-height: 16px;
    }
    .report__form-groups .report__form-links{
        flex-direction: column;
        gap: 24px;
    }

    .bans-content{
        padding: 24px 14px;
        gap: 34px;
    }
    .bans-content .bans-info{
        gap: 24px;
        padding-bottom: 0;
        border: 0;
    }
    .bans-info .bans-info-title{
        padding: 12px;
        gap: 12px;
    }
    .bans-info .bans-info-title h1 {
        font-size: 16px;
        line-height: 16px;
    }
    .bans-info .bans-info-title p {
        font-size: 12px;
        line-height: 16px;
    }
    .bans-info .bans-item{
        padding: 12px 14px 12px 12px;
    }
    .bans-item .bans-item-info b{
        font-size: 16px;
        line-height: 16px;
    }
    .bans-item .bans-item-info span {
        font-size: 12px;
        line-height: 12px;
    }
    .bans-item img{
        width: 24px;
        height: 24px;
    }
    .report-info .report__title-wrap{
        gap: 12px;
    }
    .report-info .report-title h1 {
        font-size: 19px;
        line-height: 19px;
    }
    .report-info .report-title span {
        font-size: 19px;
        line-height: 19px;
    }
    .report-info .report-title {
        gap: 7px;
        justify-content: initial;
    }
    .report-info .report-text {
        font-size: 12px;
        line-height: 18px;
    }


    .about-content .about-info{
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }
    .about-info .about-info-texts{
        padding-bottom: 24px;
    }
    .about-info .about-info-texts-wrap{
        gap: 24px;
    }
    .about-info .about-info-title {
        font-size: 26px;
        line-height: 31px;
    }
    .about-info .about-info-text p {
        font-size: 12px;
        line-height: 18px;
    }
    .about-info .about-info-text b {
        font-size: 12px;
        line-height: 12px;
    }

    .about-info .about__info-link{
        margin-top: 24px;
    }

    .question .question-title {
        font-size: 26px;
        line-height: 26px;
    }
    .question .question-card{
        padding: 24px 14px;
        gap: 14px;
    }
    .question-card .question__card-title {
        font-size: 16px;
        line-height: 19px;
    }
    .question-card .question__card-text {
        font-size: 12px;
        line-height: 18px;
    }


    .contact .contact-block{
        gap: 30px;
    }
    .contact-block .contact-cards{
        gap: 18px;
    }
    .contact-block .contact-card {
        height: 150px;
        padding: 0px 10px;
    }
    .contact-block .contact-card{
        gap: 14px;
    }
    .contact-block .contact-title{
        gap: 16px;
    }
    .contact-title h1 {
        font-size: 26px;
        line-height: 26px;
    }
    .contact-title .contact-text {
        font-size: 12px;
        line-height: 18px;
    }
    .contact-block .contact-card a {
        font-size: 26px;
        line-height: 26px;
    }


    .pay-service {
        padding-top: 36px;
    }
    .pay-service .pay-block {
        gap: 24px;
    }
    .pay-block .pay-title-wrap {
        gap: 16px;
    }
    .pay-block .pay-block-texts {
        gap: 14px;
    }
    .pay-title-wrap .pay-title {
        font-size: 26px;
        line-height: 26px;
    }
    .pay-block .pay-block-text ul li, 
    .pay-block .pay-block-text p,
    .pay-title-wrap .pay-text{
        font-size: 12px;
        line-height: 18px;
    }
    .pay-block .pay-cart {
        font-size: 14px;
        line-height: 20px;
    }


    .footer{
        padding: 24px 0;
    }
    .footer .footer-top{
        flex-direction: column;
        align-items: start;
    }
    .footer-top .footer-menu{
        flex-direction: column;
    }
}

.error-message {
    color: #ff1616;
    display: block;
}

.select-option {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}