button {
    padding: 0;
    border: none;
    background-color: transparent;
    transition: 0.5s ease;
    transition-property: color, background-color, border-color, box-shadow;
    cursor: pointer;
}
button:focus {
    outline: none;
}.btn-primary {
     display: inline-flex;
     justify-content: center;
     align-items: center;
     position: relative;
     font-size: 15px;              /* slightly bigger text */
     font-weight: 600;
     color: #fff !important;
     background: #0096FF !important;
     height: 44px;                 /* taller, more balanced */
     padding: 0 20px;
     border: none;
     border-radius: 12px;
     transition: all 0.3s ease;
 }

.btn-outline-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    height: 44px;
    padding: 0 20px;
    border-radius: 12px;
    color: #189cf4;
    border: 2px solid #189cf4;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    color: #fff !important;
    background: #0096FF !important;
    border-color: transparent;
}

/* Hover state for filled button */
.btn-primary:hover {
    box-shadow: 0 4px 12px rgba(24, 156, 244, 0.4) !important;
    transform: translateY(-1px);
}


.section-title {
    font-size: 1.875rem;
    color: #3b444f;
    font-weight: 500;
    text-align:center;
}

.section-title::after {
    display: block;
    width: 2.5rem;
    height: 0.125rem;
    background-color: #297cbb;
    content: " ";
    margin: 1.5rem auto 0;
}


.anime {
    -webkit-transform: translate(-20%, 0);
    transform: translate(-20%, 0);
    transition: all 0.2s ease-in-out;
}
.anime:hover{
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

@media (max-width: 767px) {
    .page-banner{
        position: relative;
    }

    .search-form-fields > .form-group {
        margin:0 1rem;
        width: auto !important;
    }
    .anime {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    .about-us-section {
        background-image: none !important;
        background:#242928;
    }
}
.car {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    border-radius: 20px;
    position: relative;
    margin-top: 20px;
    padding: 10px;
    background: linear-gradient(1turn, #f1f6fd 30%, #edf1f7);
    box-shadow: 3px 3px 9px rgba(164,164,186,0.2);
    border: 1px solid #fff;
}

.car__img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    height: 240px;
    object-fit: cover;
}
.car__img img {
    width: 100%;
}
.car__title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 0 10px;
}
.car__name {
    font-size: 22px;
    line-height: 30px;
    color: #33334f;
    margin-bottom: 0;
    font-weight: 400;
    padding-right: 70px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    word-wrap: break-word;
}
.car__name a {
    color: #33334f;
}
.car__name a:hover {
    color: #189cf4;
}
.car__year {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 12px;
    color: #33334f;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: 2px dashed rgba(24,156,244,0.44);
    position: absolute;
    right: 10px;
}
.car__list {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 10px 10px;
    margin-top: 5px;
}
.car__list li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
    margin-top: 15px;
}
.car__list svg {
    width: 20px;
    height: auto;
    fill: #189cf4;
    margin-right: 6px;
}
.car__list span {
    font-size: 14px;
    line-height: 20px;
    color: #4e5d78;
    font-family: 'Nunito', sans-serif;
}
.car__footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 10px 10px;
    margin-top: 10px;
    position: relative;
}
.car__footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    height: 1px;
    background-color: rgba(138,148,166,0.22);
}
.car__favorite {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: 36px;
    border-radius: 12px;
    background-color: rgba(24,156,244,0.12);
    margin-left: auto;
    margin-right: 15px;
}
.car__favorite svg {
    width: 20px;
    height: auto;
    fill: rgba(24,156,244,0.66);
    transition: 0.5s ease;
}
.car__favorite:hover {
    background-color: rgba(235,87,87,0.12);
}
.car__favorite:hover svg {
    fill: #eb5757;
}
.car__favorite--active {
    background-color: rgba(235,87,87,0.12);
}
.car__favorite--active svg {
    fill: #eb5757;
}
.car__favorite--active:hover {
    background-color: rgba(235,87,87,0.12);
}
.car__favorite--active:hover svg {
    fill: #eb5757;
}
.car__price {
    font-size: 24px;
    line-height: 100%;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    color: #33334f;
}
.car__price sub {
    font-size: 14px;
    bottom: 0;
    font-weight: 400;
}

@media (min-width: 768px) {
    .car {
        margin-top: 30px;
    }
}
.list-style-1 li i { font-size: 14px; color: #db2d2e; display: inline-block; padding-right: 10px; padding-bottom: 10px; }
ul.list-style-1 li { list-style: none; }
.list-style-none li { list-style: none; }
.list-inline>li { display: inline-block; padding-right: 5px; padding-left: 5px; }
.loader {
    height: 340px;
    background: url("/images/loader.svg") no-repeat center;
}
.form-control{
    -webkit-appearance: none !important;
}
