.home {
    margin-bottom: 30px;
    background: #CFEDFF;
    border-radius: 20px;
}
.home__inner {
    padding: 20px 24px 36px;
}
.home__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    color: var(--dark-color);
    margin-bottom: 8px;
}
.home__btn-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    padding: 0 15px;
    height: 44px;
    width: 100%;
    background: #F1FAFF;
    margin-bottom: 16px;
}
.home__btn-search span{
    display: block;
    margin: 0;
    color: rgb(118, 118, 118);
    font-size: 16px;
    font-weight: 400;
}
.home__btn-search svg{
    transform: rotate(180deg);
}
.home__btn {
    background: var(--light-color);
    border-radius: 5px;
    padding: 6px 16px;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    box-shadow: rgba(9, 94, 144, 0.2) 0px 4px 12px 0px, rgba(0, 122, 191, 0.1) 0px 2px 3px 0px;
    min-height: 44px;
}

.mark{
    max-height: calc(100% - 24px) !important;
    padding: 16px 15px 0 !important;
}

.category {
}
.category__inner {
    padding-top: 130px;
    padding-bottom: 30px;
}
.category__list {
    display: grid;
    grid-template-columns: repeat(11, 95px);
    gap: 20px;
}
.category__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 95px;
}
.category__link {
}

.category__link span{
    display: block;
    color: var(--dark-color);
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
}

.category__link .image{
    display: block;
    margin: 0 auto;
    margin-bottom: 5px;
}

.product-service-title{
    font-weight: 800 !important;
}

.product-service-text{
    color: var(--dark-color) !important;
    font-size: 14px !important;
    font-weight: 400;
}

.district .search__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    padding: 15px 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 4px 0px;
}

.district .search__search{
    margin: 0 !important;
}

.district .search__description{
    padding: 20px;
}

.district .search__search-input{
    background: var(--light-color);
    padding: 2px;
    border: 2px solid transparent;
}

.district .search__search-input:focus{
    border-color: #E18800;
}

.district .search__search-btn{
    position: unset !important;
    transform: unset !important;
}


.underground__search {
    position: relative;
}
.underground__input {
    padding: 0 40px 0 30px;
    width: 100%;
    height: 46px;
    border-radius: 5px;
    border: 3px solid transparent;
    background-image: url(../img/search.svg);
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position-y: 50%;
    background-position-x: 5px;
}
.underground__input:focus{
    border-color: rgb(114, 206, 252);
}
.underground__btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512.001 512.001'%3E%3Cpath d='M284.286 256.002L506.143 34.144c7.811-7.811 7.811-20.475 0-28.285-7.811-7.81-20.475-7.811-28.285 0L256 227.717 34.143 5.859c-7.811-7.811-20.475-7.811-28.285 0-7.81 7.811-7.811 20.475 0 28.285l221.857 221.857L5.858 477.859c-7.811 7.811-7.811 20.475 0 28.285a19.938 19.938 0 0014.143 5.857 19.94 19.94 0 0014.143-5.857L256 284.287l221.857 221.857c3.905 3.905 9.024 5.857 14.143 5.857s10.237-1.952 14.143-5.857c7.811-7.811 7.811-20.475 0-28.285L284.286 256.002z'/%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
    width: 20px;
    height: 20px;
}
.underground {
    padding: 20px;
}
.underground__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    width: 100%;
    padding: 5px;
    background: #F5F5F5;
    border-radius: 5px;
    margin-bottom: 20px;
}
.underground__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-color);
}
.active-underground {
    background: var(--light-color);
}