.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;
}
.home__content{
    display: flex;
    align-items: stretch;
    gap: 5px;
}

.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__content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 10px;
}
.search__content-input{
    height: 44px;
    border-radius: 6px;
    transition: .2s linear;
    border: 3px solid transparent;
    padding: 0 0 0 20px;
}
.search__content-input:focus{
    transition: .2s linear;
    border-color: rgb(121, 210, 255);
}
.search__btnSubmit{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    border-radius: 6px;
    background: var(--light-color);
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    padding: 0 20px;
    box-shadow: rgba(9, 94, 144, 0.2) 0px 4px 12px 0px, rgba(0, 122, 191, 0.1) 0px 2px 3px 0px;
    margin: 20px 0;
}
.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);
}

.category {
}
.category__inner {
    padding: 40px 0 0;
}
.category__title{
    display: block;
    color: var(--dark-color);
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 20px;
}
.category__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.category__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 95px;
}

.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;
}

.chapter__inner {
    padding-top: 80px;
    padding-bottom: 30px;
}
.chapter__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 5px;
}
.chapter__item {
    border-radius: 16px;
    background: rgb(242, 241, 240);
    overflow: hidden;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: 100%;
    min-height: 80px;
}
.chapter__title {
    display: inline-block;
    font-size: 13px;
    line-height: 16px;
    max-width: 100px;
    color: var(--dark-color);
}
.chapter__link{
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 12px;
}
@media (max-width: 875px) {
    .chapter__list{
        grid-template-columns: repeat(3, 1fr);
    }
}

.auction {
    background: #D4F0FF;
    border-radius: 16px;
    margin-top: 20px;
}
.auction__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}
.auction__title {
    color: var(--dark-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 26px;
}
.auction__text {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
}
.auction__link {
    display: block;
    margin-top: 15px;
    background: var(--light-color);
    padding: 10px 16px 12px;
    border-radius: 6px;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    width: fit-content;
}

.blog__inner {
    padding: 30px 0 0;
}
.blog__list {
    display: flex;
    align-items: stretch;
    gap: 10px;
}
.blog__item {
    min-width: 250px;
}
.blog__item .image{
    border-radius: 10px;
    margin-bottom: 10px;
}
.blog__title{
    color: var(--dark-color);
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 20px;
}
.blog__item-title {
    display: block;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
}

.vin {
    background: #F4F1EB;
    border-radius: 16px;
    margin-top: 20px;
}
.vin__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}
.vin__title {
    color: var(--dark-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 26px;
}
.vin__text {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
}
.vin__link {
    display: block;
    margin-top: 15px;
    background: var(--light-color);
    padding: 10px 16px 12px;
    border-radius: 6px;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    width: fit-content;
}
