.car_details-top{
    background-color: #002c5f;
    padding: 50px 0 30px 0;
    h1{
        font-size: 32px;
        line-height: 1.25;
        text-align: center;
        color: #ffffff;
        font-weight: 500;
        strong{
            display: block;
        }
        span{
            font-size: 20px;
            display: block;
            opacity: 0.6;
            line-height: 2;
        }
        @media (min-width: 768px){
            font-size: 44px;
        }
        @media (min-width: 1024px){
            font-size: 60px;
        }
    }
    .items-wrap{
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 20px;
        white-space: nowrap;
        @media (min-width: 768px){
            padding: 20px 0;
            overflow: visible;
            justify-content: center;
        }
        a{
            display: inline-block;
            border: 2px solid rgba(255, 255, 255, 0.6);
            color: #ffffff;
            font-size: 14px;
            padding: 10px 15px 9px 15px;
            margin: 0 5px;
            position: relative;
            transition: all 0.3s ease-in-out;
            &:hover, &:active, &.active {
                border: 2px solid #00AAD2;
                color: #00AAD2;
            }
        }
    }
}
.car-details-bottom{
    border-bottom: 1px solid #e5e5e5;
    .items-wrap{
        display: flex;
        align-items: center;
        overflow-x: auto;
        gap: 20px;
        margin: 0;
        @media (min-width: 768px){
            gap: 35px;
        }
        a{
            color: #676767;
            font-size: 16px;
            line-height: 19px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 28px 0;
            border-bottom: 3px solid transparent;
            &:hover, &:active{
                text-decoration: underline;
                font-weight: 500;
            }
        }
    }
}