.home {
    margin-top: 200px;
    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;
}

.search__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.search__nav-title {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 22px;
    text-align: center;
}
.search__nav-btn {
    color: rgb(184, 184, 184);
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}
.search__search {
    position: relative;
    height: 40px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}
.search__search-input {
    background: #F5F5F5;
    width: 100%;
    height: 40px;
    border-radius: 5px;
    padding: 0 50px 0 35px;
    background-image: url(../img/search.svg);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position-x: 6px;
    background-position-y: 50%;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
}
.search__search-input::placeholder{
    color: #C1C1C1;
    font-size: 16px;
    font-weight: 400;
}
.search__search-btn {
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
}
.search__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
}
.search__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
.search__item {
    min-height: 46px;
}
.search__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 46px;
}
.search__item-title {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-color);
}