/*------------------------------------------------------------------
[Main Stylesheet]

Project:    Auto Car Dealer
Version:    1.1.0
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]
    1. Main Header / .main-header
    2. Home Page Banner (Main Home) / .banner
    3. Featured Cars / .featured-car
    4. Testimonials / .testimonials
    5. Single Page Banner / .page-banner
    6. Car Grid View / .car-grid
    7. Car List View / .car-list
    8. Single Car Details / .car-details-body
    9. Listing Page Sidebar /.sidebar
    10. Single Page Sidebar /.details-sidebar
    11. Blog Page / .blog-body
    12. Contact Us Page / .contact-us-body
    13. About Page / .about-item
    14. About Team Mate / .about-team-meet
    15. We Are Best / .we-best
    16. Subscribe Section / .sub-footer
    17. Contact Form / .contact-form
    18. User Comments / .comments-thread
    19. Signup/Login Page / .form-content-box
    20. main-footer / .main-footer
-------------------------------------------------------------------*/

body {
    font-family: 'Open Sans', sans-serif;
}

/** MAIN HEADER AREA START **/
.main-header {
    width: 100%;
    border-top: solid 2px #4371c6;
}

.navbar-default {
    background: none;
    border: none;
    margin-bottom: 0px;
    border-radius: 0px;
}

.logo {
    padding: 5px 0px 0px;
    float: left;
    color: #4371c6;
    font-size: 26px;
    font-weight: 500; /* Gunakan yang lebih ringan */
    text-shadow: 0.5px 0.5px 0 rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    outline: none; /* Menghapus garis kotak */
}

.logo:hover {
    text-decoration: none;
    color: #4371c6;
}

.logo:focus {
    outline: none; /* Menghapus outline saat fokus */
}


.logo img {
    height: 70px;
}

/* Default navbar links */
.main-header .navbar-default .nav > li > a {
    position: relative;
    display: block;
    padding: 26px 18px 26px;
    font-size: 11px;
    line-height: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #686868; /* Default text color */
    transition: color 0.3s ease, border 0.3s ease;
}

/* Active and hover state for navbar links */
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
    color: #4371c6 !important; /* Blue color for active state */
    font-weight: 700;
    position: relative;
    text-decoration: none; /* Ensure no underline from browser default */
    background: transparent;
}

.navbar-default .navbar-nav > .active > a::after,
.navbar-default .navbar-nav > li > a:hover::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #4371c6; /* Blue underline */
    transform: scaleX(1); /* Fully visible underline */
    transform-origin: left;
    transition: transform 0.3s ease;
}

.navbar-default .navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #dddddd;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* Dropdown menu items */
.navbar-nav .dropdown-menu > li > a {
    display: block;
    padding: 15px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #686868; /* Default text color for dropdown */
    text-transform: uppercase;
    font-size: 11px;
    white-space: nowrap;
    border-right: solid 5px transparent;
    border-bottom: solid 1px transparent;
    transition: color 0.3s ease, border 0.3s ease;
}

.navbar-nav .dropdown-menu > li > a:hover {
    border-right: solid 5px #4371c6; /* Blue border on hover */
    border-bottom: solid 1px #eeeeee; 
    background: transparent;
    color: #4371c6; /* Blue text color on hover */
}

/* Dropdown open state */
.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border: none;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
    color: #4371c6; /* Blue for open dropdown */
    border-bottom: 2px solid #4371c6;
    transition: border-bottom 0.3s ease, color 0.3s ease;
}

/* Keyboard focus effect */
.navbar-nav > li > a:focus,
.dropdown-menu > li > a:focus {
    outline: none;
    /* border-bottom: 2px solid #4371c6; */
    color: #4371c6;
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover{
    background-color: transparent;
    border-bottom: none;
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
    color: #fff!important;
  }

/** BANNER AREA START **/
.banner {
    position: relative;
}

.banner .item {
    text-align: center;
}

.banner .item-1 {
    background-color: rgba(0, 0, 0, 0);
    
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: inherit;
    text-align: left;
}

.banner .item-2 {
    background-color: rgba(0, 0, 0, 0);
    background-repeat: no-repeat;
    background: url("http://placehold.it/1900x670");
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: inherit;
}

.banner .item-3 {
    background-color: rgba(0, 0, 0, 0);
    background-repeat: no-repeat;
    background: url("http://placehold.it/1900x670");
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: inherit;
    text-align: left;
}

.carousel-control.left {
    background: none;
}

.carousel-control.right {
    background: none;
}

.slider-mover-left {
    width: 40px;
    height: 40px;
    line-height: 32px;
    position: absolute;
    top: 45%;
    z-index: 5;
    display: inline-block;
    left: 5px;
    border: solid 2px #1B1410;
}

.slider-mover-left img {
    width: 30px;
}

.slider-mover-right {
    width: 40px;
    height: 40px;
    line-height: 32px;
    position: absolute;
    top: 45%;
    z-index: 5;
    display: inline-block;
    right: 5px;
    border: solid 2px #1B1410;
}

.slider-mover-right img {
    width: 30px;
}

.banner .banner-slider-inner {
    color: #e9e9e9;
    margin: 0px auto;
    padding: 50px 0px;
    margin-top: 100px;
    margin-bottom: 120px;
    font-family: 'Roboto', sans-serif;
}

.banner .banner-slider-inner h1 {
    color: #FFF;
    z-index: 5;
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    visibility: inherit;
    transition: none;
    border-width: 0px;
    padding: 0px;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    opacity: 1;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: 50% 50% 0px;

    /* Tambahkan text-shadow di sini */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}


.banner .banner-slider-inner h1 span {
    letter-spacing: 2px;
    font-weight: 100;
}

.banner-slider-inner p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.btn-view {
    padding: 14px 26px;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    background: #d20023;
    color: #fff;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    /* ...and now for the proper property */
    transition: .5s;
    border-radius: 2px;
}

.btn-view:hover {
    background: #be1233;
    color: #fff;
}

.font-white:hover {
    color: #fff;
}

.banner .banner-slider-inner-2 {
    padding: 70px 20px;
    margin: 0px auto;
    margin-top: 100px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    color: #e9e9e9;
}

.banner .banner-slider-inner-2 h1 {
    letter-spacing: 0px;
    margin: 0px 0px 25px;
    font-size: 70px;
    font-weight: 400;
    color: #FFF;
}

.banner .banner-slider-inner-2 h1 span {
    letter-spacing: 2px;
    font-weight: 100;
}

.banner-slider-inner-2 p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/** MAIN TITLE BOX AREA START **/
.main-title {
    text-align: center;
    max-width: 700px;
    margin: 0px auto;
    margin-bottom: 25px;
}

.main-title h1 {
    font-size: 24px;
    text-transform: uppercase;
    margin: 0 0 15px;
    color: #333;
    font-weight: 700;
}

.main-title p {
    font-weight: 300;
    font-size: 16px;
    line-height: 27px;
    color: #797979;
}

/** CAR BOX AREA START **/
.car-box {
    padding: 0px;
    margin: 0px 0px 30px 0px;
    border-radius: 0px;
    border: none;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}

.car-box img {
    width: 100%;
}

.featured-car {
    background: #f5f5f5;
}

.featured-car.news {
    background: #ffffff;
}

.featured-car .main-content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 27px;
    color: #797979;
  }

.content-area {
    padding: 50px 0px 50px;
}

.car-grid {
    background: #f5f5f5;
}

.car-box:hover {
    box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.10), 0 6px 5px 0 rgba(0, 0, 0, 0.10);
}

.car-box .detail {
    padding: 20px;
    background: #fff;
    color: #7B7B7B;
    float: left;
    position: relative;
}

.car-box .detail header {
    padding-bottom: 17px;
    margin-bottom: 17px;
    width: 100%;
    border-bottom: 1px solid #ededed;
}

.car-box .detail header h5 {
    margin: 0px 0px 5px;
    border: none;
    padding: 0px;
}

.car-box.teacher .detail header h5 {
    height: 40px;
}

.car-box .detail header h5 a {
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 17px;
    color: #4371c6;
}

.news .car-box .detail header h5 a {
    text-transform:none;
    line-height: 1.3em;
}

.car-box .detail header h5 a:hover {
    color: #7B7B7B;
}

.car-box .detail header .custom-list {
    padding: 0;
    margin: 0;
}

.car-box .detail header .custom-list li {
    font-size: 10px;
    list-style: none;
    display: inline-block;
    padding-right: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.car-box .detail header .custom-list li a {
    text-decoration: none;
    color: #7B7B7B;
}

.car-box .detail header .price {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 600;
    display: block;
    font-size: 17px;
    float: right;
    color: #4371c6;
}

.car-box .detail p {
    margin: 0px 0px 17px;
    font-size: 13px;
    line-height: 20px;
}

.car-box.teacher .detail p {
    height: 40px;
}

.car-box .detail .facilities-list {
    padding: 0px;
    margin: 0px;
}

.car-box .detail .facilities-list li {
    list-style: none;
    width: 33%;
    float: left;
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 15px;
}

.car-box .detail .facilities-list li i {
    margin-right: 5px;
    color: #4371c6;
    font-size: 15px;
    font-weight: 500;
}

.btn-details {
    padding: 6px 20px;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    background: #4371c6;
    color: #fff;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    /* ...and now for the proper property */
    transition: .5s;
    border-radius: 2px;
}

.btn-details:hover {
    background: #be1233;
    color: #fff;
}

.featured-ribon {
    position: absolute;
    top: 0px;
    background: #4371c6;
}

.featured-ribon h2 {
    margin: 0px;
    color: #FFF;
    font-size: 10px;
    padding: 14px 18px;
    text-transform: uppercase;
    font-weight: 700;
}

.feadured-ribbon {
    position: absolute;
}

.car-box:hover .carbox-overlap-wrapper {
    display: block;
    top: 0px;
    cursor: pointer;
}

.carbox-overlap-wrapper {
    display: none;
    background: rgba(0, 0, 0, 0.9);
    height: 100%;
    width: 100%;
    z-index: 9999999999;
    position: absolute;
    text-align: center;
    color: #FFF;
    padding: 25px 25px;
    left: 0px;
    top: 0px;
    webkit-transition: all 0.9s ease-in-out;
    -moz-transition: all 0.9s ease-in-out;
    -o-transition: all 0.9s ease-in-out;
    -ms-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
}

.overlap-btns-area {
    margin-top: 25px;
}

.overlap-btn {
    width: 150px;
    display: block;
    padding: 10px 10px;
    color: #FFF;
    margin: 16px auto;
    border-radius: 50px;
    font-size: 11px;
    text-transform: uppercase;
    background: #4371c6;
    border: solid 2px #4371c6;
}

.overlap-btn:hover {
    text-decoration: none;
    color: #FFF;
    background: #be1233;
    border: solid 2px #be1233;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    /* ...and now for the proper property */
    transition: .5s;
}

.carbox-overlap-wrapper h2 {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    line-height: 18px;
    text-transform: uppercase;
    margin: 0px;
}

.carbox-overlap-wrapper h4 {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    line-height: 26px;
}

.modal-content {
    border-radius: 2px;
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.modal-title {
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    color: #4371c6;
    text-align: center;
}

.modal .slider-mover-left,
.modal .slider-mover-right {
    border: none !important;
}

/** TESTIMONIAL STYLE TWO AREA START **/
.testimonial-style-two {
    position: relative;
    padding: 100px 0px;
    background: #eaeaea;
}

.sec-title-three h2 {
    color: #45445a;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.2em;
}

.sec-title-three .text {
    color: #777777;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 15px;
}

.sec-title-three h4 {
    position: relative;
    color: black;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.testimonials .content .text {
    color: #777777;
    font-size: 20px;
    font-weight: 300;
    margin: 30px 0px 15px;
}

.testimonials .content .avatar {
    border-radius: 50%;
    max-width: 220px;
    margin: 0pc auto;
}

.testimonials .content .avatar img {
    border-radius: 50%;
}

.img-responsive {
    width: 100%;
}

.testimonials .content ul {
    margin: 0px;
    padding: 0px;
}

.testimonials .content ul li {
    list-style: none;
    display: inline-block;
    color: orange;
}

.testimonials .content .author-name {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 15px;
}

.testimonials .content {
    margin-bottom: 30px;
}

.testimonials .slider-mover-left {
    width: 30px;
    height: 30px;
    line-height: 22px;
    position: absolute;
    top: 100%;
    z-index: 5;
    display: inline-block;
    right: 0px;
    border: solid 1px #1B1410;
    text-align: center;
}

.slider-mover-left img {
    width: 20px;
}

.testimonials .slider-mover-right {
    width: 30px;
    height: 30px;
    line-height: 22px;
    position: absolute;
    top: 100%;
    z-index: 5;
    display: inline-block;
    right: 0px;
    border: solid 1px #1B1410;
    text-align: center;
}

.slider-mover-right img {
    width: 20px;
}

/** FOOTER AREA START **/
footer {
    width: 100%;
    background: #2A2A2A;
    color: #7e7e7e;
    padding-bottom: 20px;
}

.sub-footer {
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 80px;
    width: 100%;
    float: left;
}

.sub-footer form input {
    width: 80%;
    height: 40px;
    padding: 10px 20px;
    padding-right: 60px;
    border: 1px solid transparent;
    border-radius: 0px;
    font-size: 14px;
    float: left;
    outline: none;
}

.sub-footer form .button-small {
    width: 20%;
    border: solid 1px #4371c6;
    border-radius: 0px;
    height: 40px;
    background: #4371c6;
    color: #fff;
    padding: 10px 20px;
    float: left;
    text-align: center;
}

.sub-footer form {
    margin: 27px auto 0px;
    width: 100%;
    display: inline-block;
}

.sub-footer .logo {
    width: 100%;
    padding: 30px 10px;
    text-align: center;
}

.sub-footer .logo a {
    text-decoration: none;
    color: #fff;
}

.social-list a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    border: 1px solid #949494;
    background-color: transparent;
    margin: 0 0px 2px 2px;
    color: #949494;
}

.sub-footer .social-list {
    margin-top: 27px;
}

footer .footer-item {
    margin-bottom: 20px;
}

footer .footer-item .title {
    color: #cccccc;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    padding-bottom: 20px;
    font-size: 16px;
    margin: 0px 0px 30px;
    text-transform: uppercase;
}

footer .footer-item .title:before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    position: absolute;
    bottom: 0;
    left: 0;
}

footer .footer-item .title:after {
    content: '';
    width: 80px;
    height: 2px;
    left: 0;
    bottom: -1px;
    position: absolute;
    background-color: #fff;
}

footer ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

footer p {
    line-height: 22px;
    margin-bottom: 20px;
    font-size: 13px;
}

.personal-info li {
    color: #999999;
    font-size: 13px;
    line-height: 18px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.personal-info li i {
    font-size: 18px;
    color: #999999;
    margin-right: 20px;
    float: left;
    width: 20px;
}

.personal-info li a {
    text-decoration: none;
    color: #999999;
}

.links li {
    font-size: 13px;
    line-height: 16px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.links li a {
    text-decoration: none;
    color: #999999;
}

.links li a:hover {
    color: #cccccc;
}

.tags a {
    float: left;
    margin: 0px 7px 7px 0px;
    border: solid 1px #424141;
    padding: 6px 15px;
    font-size: 11px;
    letter-spacing: 1px;
    color: #999999;
    border-radius: 0px;
    text-decoration: none;
}

.tags a:hover {
    background: #424141;
    color: #cccccc;
}

.recent-car .media {
    margin: 0 0 15px;
    padding-bottom: 15px;
    border-bottom: solid 1px #333333;
}

.recent-car .media .media-left {
    padding-right: 20px;
}

.recent-car .media .media-left img {
    width: 70px;
    height: 70px;
}

.recent-car .media .media-body h3 {
    margin: 5px 0px 4px;
    font-size: 15px;
    letter-spacing: 1px;
}

.recent-car .media .media-body h3 a {
    color: #fff;
    text-decoration: none;
}

.recent-car .media .media-body h3 a:hover {
    color: #cccccc;
}

.recent-car .media .media-body span {
    margin: 3px 0px;
    font-size: 13px;
    display: block;
}

.recent-car .media .media-body p {
    margin: 0px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.4px;
}

.recent-car .media:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.copy-right {
    background: #2c2e2e;
    padding: 20px 0;
    text-align: center;
}

.copy-right p {
    color: #767676;
    margin: 0px;
}

/** PAGE BANNER AREA START **/
.page-banner {
    padding: 50px 0px;
    color: white;
    background-color: rgba(0, 0, 0, 0);
    background-repeat: no-repeat;
    background-image: url(http://placehold.it/1900x305);
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: auto;
    opacity: 1;
    visibility: inherit;
    text-align: center;
}

.breadcrumb-area {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    max-width: 620px;
    margin: 0px auto;
    text-align: center;
}

.breadcrumb-area h2 {
    margin-top: 0px;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb-area p {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
}

.breadcrumb-area .btn-details {
    float: none;
    padding: 9px 20px;
    margin: 3px 4px;
}

.breadcrumb-area .btn-default {
    letter-spacing: 1px;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    background: #303030;
    border: none;
    border-radius: 3px;
    margin: 3px 4px;
    color: #fff;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

.breadcrumb-area .btn-default:hover {
    background: #4371c6;
    color: #fff;
}

/** CAR LIST AREA START **/
.car-list {
    background: #f5f5f5;
}

/** BLOCK HEADING AREA START **/
.block-heading {
    background: #fff;
    border-radius: 3px;
    height: 52px;
    margin-bottom: 30px;
    border: solid 1px #e6e6e6;
}

.block-heading h4 {
    line-height: 50px;
    color: #fff;
    display: inline-block;
    padding-right: 20px;
    border-radius: 3px 0 0 3px;
    background: #4371c6;
    margin: 0 0 0px;
}

.block-heading .heading-icon {
    background: rgba(0, 0, 0, .1);
    width: 50px;
    text-align: center;
    margin-right: 20px;
    display: inline-block;
    border-radius: 3px 0 0 3px;
    position: relative;
}

.block-heading .heading-icon .icon-design {
    color: rgba(0, 0, 0, .1);
    font-size: 20px;
    position: absolute;
    right: -7px;
    top: 16px;
}

.block-heading .sorting {
    padding: 8px 12px;
    background: #FFF;
    border: 1px solid #EEE;
    color: #999;
    margin-right: 5px;
    font-size: 13px;
    font-weight: 300;
}

.block-heading .sorting-options {
    margin: 10px 15px 0px 0px;
    text-align: right;
}

.block-heading .sorting {
    font-size: 13px;
    font-weight: 300;
    padding: 5px 12px;
    border: solid 1px #e7e7e7;
}

.block-heading a {
    text-decoration: none;
}

.change-view-btn {
    color: #4371c6;
    margin-left: 5px;
    border-radius: 2px;
    background: transparent;
    padding: 5px 9px;
    border: solid 1px #4371c6;
}

.change-view-btn:hover {
    border: solid 1px #4371c6;
    background: #4371c6;
    color: #fff;
}

.active-view-btn {
    color: #fff;
    margin-left: 5px;
    background: #4371c6;
    padding: 5px 9px;
    border: solid 1px #4371c6;
}

.active-view-btn:hover {
    border: solid 1px #4371c6;
    background: transparent;
    color: #4371c6;
}

.car-list-box {
    margin-bottom: 30px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    background: #fff;
    position: relative;
}

.car-list-box .car-pic {
    padding: 0px;
}

.car-list-box .detail {
    padding: 15px 30px;
    color: #333;
}

.car-list-box .detail header {
    padding-bottom: 11px;
    margin-bottom: 11px;
    float: left;
    width: 100%;
    border-bottom: 1px solid #ededed;
}

.car-list-box .detail p {
    margin: 0px 0px 10px;
    color: #7B7B7B;
    font-size: 13px;
    line-height: 20px;
}

.car-list-box .detail header h3 {
    margin: 0px 0px 5px;
}

.car-list-box .detail header h3 a {
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 17px;
    color: #4371c6;
}

.car-list-box .detail header h3 a:hover {
    color: #707070;
}

.car-list-box .detail header .custom-list {
    padding: 0;
    margin: 0;
}

.car-list-box .detail header .custom-list li {
    font-size: 10px;
    list-style: none;
    display: inline-block;
    padding-right: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.car-list-box .detail header .custom-list li a {
    text-decoration: none;
    color: #7B7B7B;
}

.car-list-box .detail header .price {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    display: block;
    font-size: 17px;
    font-weight: 600;
    float: right;
    color: #4371c6;
    margin-top: 7px;
}

.car-list-box .detail .facilities-list {
    padding: 0px;
    margin: 0px;
}

.car-list-box .detail .facilities-list li {
    list-style: none;
    width: 33%;
    float: left;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 13px;
    color: #7B7B7B;
}

.car-list-box .detail .facilities-list li i {
    margin-right: 5px;
    color: #4371c6;
    font-size: 15px;
    font-weight: 400;
}

.car-pic img {
    height: 269px;
}

.car-found {
    font-size: 13px;
    padding: 8px 0px;
    font-weight: 500;
    text-align: center;
}

/** PAGINATION AREA START **/
.pagination > li > a, .pagination > li > span {
    border-radius: 0% !important;
    margin: 0 5px 5px;
    width: 34px;
    height: 34px;
    text-align: center;
    padding: 0px;
    line-height: 34px;
}

.pagination > li > a {
    color: #4371c6;
    font-weight: 600;
}

.pagination > li > a:hover {
    background: #4371c6;
    color: #fff;
}

.pagination > .active > a {
    background: #4371c6;
    border-color: #4371c6;
}

.pagination > .active > a:hover {
    background: #4371c6;
    border-color: #4371c6;
}

/**SIDEBAR AREA START **/
.sidebar-widget {
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}

.sidebar-widget .option-bar {
    margin-bottom: 15px;
}

.sidebar-widget .title {
    color: #4371c6;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    padding-bottom: 20px;
    font-size: 16px;
    margin: 0px 0px 30px;
    text-transform: uppercase;
}

.section-heading .media .media-left i {
    background: #4371c6;
    color: #fff;
    width: 47px;
    height: 47px;
    line-height: 47px;
    text-align: center;
    font-size: 30px;
    float: left;
}

.section-heading .media .media-body h4 {
    margin: 3px 0px 3px;
    font-weight: 600;
    color: #4371c6;
    font-size: 20px;
    text-transform: uppercase;
}

.section-heading .media .media-body p {
    margin: 0 0 0px;
    color: #868686;
}

.sidebar-widget .title:before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #e7e6e6;
    position: absolute;
    bottom: 0;
    left: 0;
}

.sidebar-widget .title:after {
    content: '';
    width: 80px;
    height: 2px;
    left: 0;
    bottom: -1px;
    position: absolute;
    background-color: #4371c6;
}

.helping-Center p {
    color: #7B7B7B;
}

.helping-Center ul {
    margin: 0px;
    padding: 0px;
}

.helping-Center ul li {
    list-style: none;
    line-height: 44px;
    color: #7B7B7B;
}

.helping-Center ul li a {
    text-decoration: none;
    color: #7B7B7B;
}

.helping-Center ul li i {
    margin-right: 10px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    background: #4371c6;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    -webkit-box-shadow: rgba(50, 50, 50, 0.11) 0 5px 2px 0;
}

.single-block {
    margin-bottom: 30px;
}

.single-block .search-fields {
    margin-bottom: 10px;
}

.single-block .search-fields label {
    font-size: 10px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
}

.single-block .search-fields input,
.single-block .search-fields select,
.single-block .search-fields textarea {
    border-radius: 2px;
    box-shadow: none;
}

.slider.slider-horizontal .slider-track {
    height: 10px;
    width: 100%;
    margin-top: -5px;
    top: 50%;
    left: 0;
    background: #e5dcdd;;
    border-radius: 0px;
}

.slider.slider-horizontal .slider-selection {
    height: 100%;
    top: 0;
    bottom: 0;
    background: #4371c6;
}

.slider.slider-horizontal .slider-price-amont {
    font-weight: 700;
    font-size: 11px;
}

.slider.slider-horizontal .slider-handle {
    margin-left: -10px;
    margin-top: -5px;
    border-radius: 50px;
    background: #4371c6;
}

.slider.slider-horizontal {
    width: 100% !important;
    height: 15px;
}

.review ul {
    padding: 0px;
    margin: 0px;
}

.review ul li {
    list-style: none;
    padding: 6px 0px;
    font-size: 12px;
    border-bottom: 1px dotted #DDD;
}

.review ul li a {
    text-decoration: none;
}

.review ul li a i {
    color: orange;
}

.review .ratings li span {
    float: right;
    color: #999;
}

input[type=checkbox]:checked + label:before {
    content: "\2713";
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
    font-size: 15px;
    color: #f3f3f3;
    text-align: center;
    line-height: 15px;
}

/** BOOTSTRAP SELECT START **/
.bootstrap-select {
    width: 100% !important;
    font-family: 'Roboto', sans-serif !important;;
}

.bootstrap-select button {
    color: #999;
    padding: 7px 10px 5px 10px;
    border-radius: 2px;
    border: 1px solid #d5d5d5;
    outline: none;
}

.bootstrap-select .dropdown-menu li {
    padding: 0px;
}

.bootstrap-select .dropdown-menu li a {
    padding: 10px;
}

.bootstrap-select .dropdown-menu {
    padding: 0px !important;
    margin: 0px;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
    color: #4371c6;
    margin-top: 12px;
}

.bootstrap-select .dropdown-menu li a {
    padding: 10px;
    font-weight: 500;
    color: #4371c6;
    font-size: 12px;
}

.checkbox {
    padding-left: 20px;
    margin: 15px 0px;
}

.checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 15px;
    color: #7B7B7B;
    font-size: 13px;
}

.checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 0px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox-theme input[type="checkbox"]:checked + label::before {
    background-color: #4371c6;
    border-color: #4371c6;
}

.search-block .list-1 li {
    list-style: none;
    line-height: 30px;
    font-weight: bold;
    font-size: 12px;
}

.search-block .list-1 li a {
    text-decoration: none;
    font-weight: 400;
    color: #434955;
}

.recent-cars .media {
    border-bottom: solid 1px #e7e6e6;
}

.recent-cars .media .media-body h3 a {
    color: #4371c6;
    text-decoration: none;
    font-weight: 600;
}

.recent-cars .media .media-body h3 a:hover {
    color: #848383;
}

/** CAR DETAILS BODY AREA START **/
.car-details-body {
    padding: 70px 0px 50px;
    color: #868686;
}

.car-details-body .sidebar-widget {
    padding: 20px;
    box-shadow: none;
    border: 1px solid #DDD;
    margin-bottom: 30px;
}

.option-bar {
    margin-bottom: 30px;
}

.option-bar .header-price {
    text-align: right;
    float: right;
}

.option-bar .header-price h3 {
    font-size: 21px;
    font-weight: 600;
    margin: 0px;
    color: #4371c6;
}

.option-bar .header-price p {
    color: orange;
    margin-bottom: 0px;
}

#carousel-custom .carousel-indicators {
    margin: 10px 0px 0px;
    overflow: auto;
    position: static;
    text-align: left;
    white-space: nowrap;
    width: 100%;
}

#carousel-custom .carousel-indicators li {
    background-color: transparent;
    -webkit-border-radius: 0;
    border-radius: 0;
    display: inline-block;
    height: auto;
    margin: 0 !important;
    width: auto;
}

#carousel-custom .carousel-indicators li img {
    display: block;
    opacity: 0.5;
}

#carousel-custom .carousel-indicators li.active img {
    opacity: 1;
}

#carousel-custom .carousel-indicators li:hover img {
    opacity: 0.75;
}

#carousel-custom .carousel-outer {
    position: relative;
}

.thumb-preview {
    width: 100%;
}

.thumbs {
    width: 100% !important;
    margin: 12px auto !important;
    background: #dde3e4;
    padding: 10px 0px 6px 10px;
}

.thumbs img {
    width: 93px;
    height: 60px;
}

.car-details-body .about-room {
    margin: 50px 0px;
}

.car-details-body .title {
    color: #333;
    letter-spacing: 1px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    font-size: 20px;
    margin: 25px 0px 25px;
    text-transform: uppercase;
}

.car-details-body .title:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #e3d9d9;
    position: absolute;
    bottom: 0;
    left: 0;
}

.car-details-body .title.title:after {
    content: '';
    width: 80px;
    height: 2px;
    left: 0;
    bottom: -1px;
    position: absolute;
    background-color: #4371c6;
}

.car-details-body .about-car p {
    line-height: 27px;
}

.amenities-box {
    margin-bottom: 0px;
}

.amenities-box ul {
    margin: 0px;
    padding: 0px;
}

.amenities-box ul li {
    list-style: none;
    margin-bottom: 20px;
    color: #868686;
    font-size: 13px;
    font-weight: 500;
}

.amenities-box ul li span {
    font-size: 12px;
    font-weight: 600;
}

.amenities-box ul li i {
    margin-right: 5px;
    color: #4371c6;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
}

.car-details-body iframe,
.modal-body iframe {
    width: 100%;
    border: none !important;
}

.car-details-body .contact-form .title {
    color: #333;
    margin: 0px 0px 30px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
}

/** CAR SPECIFICATIONS AREA START **/
.car-specifications a {
    text-decoration: none;
}

.car-specifications .reviews-box ul {
    margin: 0px;
    padding: 0px;
}

.car-specifications .reviews-box ul li {
    list-style: none;
    float: left;
}

.car-specifications .reviews-box ul li i {
    margin-right: 2px;
    color: orange;
}

.car-specifications .reviews-box a {
    float: right;
    text-decoration: none;
    color: #868686;
}

.car-specifications .reviews-box a i {
    margin-right: 5px;
}

.car-specifications p {
    margin-bottom: 30px;
    font-weight: 300;
}

.car-specifications .reviews-box .reviews {
    float: left;
    font-size: 12px;
    text-transform: uppercase;
    margin-left: 10px;
}

.reviews-box {
    padding: 15px 0px;
    border-top: solid 1px #e9e9e9;
    border-bottom: solid 1px #e9e9e9;
    margin-bottom: 30px;
}

.wishlist-btn {
    display: block;
    height: 41px;
    margin-bottom: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
}

.wishlist-btn-l {
    width: 39px;
    height: 40px;
    display: block;
    float: left;
    border-right: 1px solid #e5e5e5;
    text-align: center;
    line-height: 41px
}

.wishlist-btn-l i {
    color: #646363;
}

.wishlist-btn-r {
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    text-transform: uppercase;
    color: #646363;
    font-weight: 600;
    text-align: center;
    display: block;
}

.book-btn {
    display: block;
    background: #4371c6;
    height: 41px;
    margin-bottom: 15px;
    border: 1px solid #4371c6;
    border-radius: 3px;
}

.book-btn-l {
    float: left;
    padding: 0px 12px;
    height: 40px;
    display: block;
    text-align: center;
    line-height: 40px;
    color: #fff;
    border-right: 1px solid #b3122d;
}

.book-btn-r {
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    display: block;
}

.details-sidebar .option-bar {
    margin-bottom: 35px;
}

.details-sidebar .sidebar-widget {
    background: transparent;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: none;
    border: 1px solid #DDD;
}

.reasons .media {
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: solid #e5e5e5 1px;
}

.reasons .media .media-left {
    padding-right: 20px;
}

.reasons .media .media-left i {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #4371c6;
    text-align: center;
    color: #fff;
    -webkit-box-shadow: rgba(50, 50, 50, 0.11) 0 5px 2px 0;
    display: inline-block;
    font-size: 20px;

}

.reasons .media .media-body h4 {
    font-size: 15px;
    margin-top: 0px;
    font-weight: 600;
    color: #4371c6;
}

.reasons .media .media-body p {
    font-weight: 300;
}

.reasons .media:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.twitter-feed .twitter-update {
    font-weight: 300;
    line-height: 26px;
}

.twitter-feed a {
    font-weight: 400;
    color: #4371c6;
}

.details-sidebar .title {
    color: #4371c6;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    padding-bottom: 20px;
    font-size: 16px;
    margin: 0px 0px 30px;
    text-transform: uppercase;
}

.details-sidebar .social-box {
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #f6f6f6;
    background: #f6f6f6;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}

.details-sidebar .social-box ul {
    margin: 0px;
    padding: 0px;
    text-align: center;
}

.details-sidebar .social-box ul li a {
    border-radius: 0px;
    float: left;
}

.details-sidebar .social-box .title:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #a9a9a9;
    position: absolute;
    bottom: 0;
    left: 0;
}

/** ABOUT ITEM AREA START **/
.about-item {
    padding: 50px 0px;
}

.about-item .text h2 {
    font-size: 24px;
    color: #333;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
    margin: 20px 0px 20px;
    text-transform: uppercase;
}

.about-item .text h2:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #dfdfdf;
    position: absolute;
    bottom: 0;
    left: 0;
}

.about-item .text h2:after {
    content: '';
    width: 80px;
    height: 2px;
    left: 0;
    bottom: -1px;
    position: absolute;
    background-color: #4371c6;
}

.about-item .text p {
    line-height: 23px;
    color: #7c7c7c;
    font-size: 13px;
}

.about-item .text .btn-details {
    float: none;
    margin-top: 10px;
}

.about-item .item img {
    width: 100%;
}

/** ABOUT TEAM MEET AREA START **/
.about-team-meet {
    background: #f5f5f5;
}

.about-box {
    padding: 0px;
    margin: 0px auto 30px;
    max-width: 340px;
    border-radius: 0px;
    border: none;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}

.about-box img {
    background: #d2d2d2;
}

.about-box .detail {
    padding: 20px 20px;
    background: #fff;
}

.about-box .detail ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.about-box .detail ul li {
    display: inline-block;
}

.about-box .detail ul li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.about-box .detail h3 {
    color: #333;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    font-size: 16px;
    margin: 0px 0px 15px;
    text-transform: uppercase;
}

.about-box .detail h3:before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #cecece;
    position: absolute;
    bottom: 0;
    left: 0;
}

.about-box .detail h3:after {
    content: '';
    width: 80px;
    height: 2px;
    left: 0;
    bottom: -1px;
    position: absolute;
    background-color: #4371c6;
}

.about-box .detail h5 {
    margin-top: 0px;
    font-weight: 400;
    font-size: 13px;
    color: #616161;
}

.about-box .detail p {
    color: #7B7B7B;
    font-size: 13px;
    margin-bottom: 20px;
}

/** WE BEST AREA START **/
.we-best {
    text-align: center;
}

.we-best .content {
    max-width: 262px;
    margin: 0px auto;
    margin-bottom: 30px;
}

.we-best .content i {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 27px;
    display: inline-block;
    background: #4371c6;
    border-radius: 50%;
    color: #fff;
    -webkit-box-shadow: rgba(50, 50, 50, 0.11) 0 5px 2px 0;
    margin-bottom: 20px;
}

.we-best .content h4 {
    margin: 0 0 10px;
    text-transform: uppercase;
    font-size: 14px;
    color: #4371c6;
    font-weight: bold;
}

.we-best .content p {
    color: #797777;
    font-size: 13px;
    line-height: 23px;
}

.mgn-btm {
    margin-bottom: 30px;
}

/** CONTACT US BODY AREA START **/
.contact-us-body {
    padding: 50px 0px;
}

.contact-details .media .media-left i {
    width: 50px;
    font-size: 24px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    color: #ffffff;
    background: #4371c6;
    text-align: center;
    -webkit-box-shadow: rgba(50, 50, 50, 0.11) 0 5px 2px 0;
}

.contact-details .media .media-left {
    padding-right: 30px;
}

.contact-details .media .media-body h4 {
    color: #333;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    padding-bottom: 20px;
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 0px;
    text-transform: uppercase;
    font-style: normal;

}

.contact-details .media .media-body h4:before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #d3d3d3;
    position: absolute;
    bottom: 0;
    left: 0;
}

.contact-details .media .media-body h4:after {
    content: '';
    width: 80px;
    height: 2px;
    left: 0;
    bottom: -1px;
    position: absolute;
    background-color: #4371c6;
}

.contact-details .media .media-body p {
    color: #747474;
    font-size: 13px;
    letter-spacing: 0.52px;
    line-height: 20px;
}

.contact-details .media .media-body p a {
    text-decoration: none;
    color: #747474;
}

.contact-details .media .media-body p {
    margin-bottom: 5px;
}

.contact-details .media {
    margin: 0px 0px 30px;
}

.contact-form form .input-text {
    width: 100%;
    padding: 10px 17px;
    font-size: 13px;
    border: 1px solid #e8e7e7;
    outline: none;
    color: #6c6c6c;
    height: 40px;
    line-height: 40px;
    border-radius: 3px;
}

.contact-form form textarea {
    min-height: 210px;
}

.contact-form .form-group {
    margin-bottom: 30px;
}

/** BLOG BANNER AREA START **/
.blog-banner {
    text-align: center;
    background: #4371c6;
    padding: 40px 0px;
    text-transform: uppercase;
    color: #fff;
}

.blog-banner .home:hover {
    color: #dcdbdb;
}

.blog-banner a {
    text-decoration: none;
    color: #fff;
    letter-spacing: 1px;
}

/** BLOG BODY AREA START **/
.blog-body {
    padding: 50px 0px 50px;
}

.blog-box {
    margin-bottom: 50px;
    border-radius: 0px;
    padding: 0px;
    border: none;
    color: #7B7B7B;
    background: transparent;
}

.blog-box .detail {
    padding: 30px 0px 0px;
    color: #7B7B7B;
    background: #fff;
    width: 100%;
    float: left;
}

.blog-box .detail h1 {
    margin: 0 0 20px;
    font-size: 20px;
    letter-spacing: 1px;
    position: relative;
    font-weight: 600;
    padding-bottom: 20px;
    text-transform: uppercase;
}

.blog-box .detail h1:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #e1e1e1;
    position: absolute;
    bottom: 0;
    left: 0;
}

.blog-box .detail h1:after {
    content: '';
    width: 80px;
    height: 2px;
    left: 0;
    bottom: -1px;
    position: absolute;
    background-color: #4371c6;
}

.blog-box .detail h1 a {
    text-decoration: none;
    color: #4371c6;
}

.blog-box .detail h1 a:hover {
    color: #7B7B7B;
}

.blog-box .detail .header {
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    color: #818a9c;
    text-transform: uppercase;
}

.blog-box .detail .header span {
    margin-right: 10px;
}

.blog-box .detail .header a {
    color: #4371c6;
    text-decoration: none;
}

/** RECENT COMMENTS AREA START **/
.recent-comments .media {
    margin: 0 0 20px;
}

.recent-comments .media .media-left {
    padding-right: 20px;
}

.recent-comments .media .media-left img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.recent-comments .media .media-body p {
    font-size: 13px;
    line-height: 22px;
    color: #7B7B7B;
    margin-bottom: 0px;
}

.recent-comments .media .media-body span {
    color: #b0b0b0;
    font-size: 11px;
}

.blog-sidebar .sidebar-widget {
    background: transparent;
    padding: 0px;
    margin-bottom: 30px;
    box-shadow: none;
}

.blog-sidebar .tags-box {
    width: 100%;
    float: left;
}

.tags-box a {
    float: left;
    margin: 0px 9px 9px 0px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    color: #696969;
    background: #e2e0e1;
    letter-spacing: 1px;
    border: none;
}

.tags-box a:hover {
    background: #696969;
    color: #e2e0e1;
}

.blog-theme img {
    margin-top: 30px;
}

blockquote {
    border-left: 4px solid #4371c6;
    padding: 7px 40px;
    margin: 30px 0px 30px 30px;
    font-weight: 300 !important;
    font-style: normal;
    line-height: 26px;
}

.blog-box .detail p {
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 30px;
}

.blog-share {
    float: right;
    text-align: right;
}

.blog-share .social-list-2 li a {
    width: 29px;
    height: 29px;
    line-height: 29px;
    text-align: center;
    display: inline-block;
    font-size: 11px;
    margin: 2px 4px;
    color: #fff;
    border-radius: 50%;
}

.blog-box .title {
    color: #4371c6;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
}

/** COMMENTS THREAD AREA START **/
.comments-thread ul {
    margin: 0px;
    padding: 0px;
}

.comments-thread li {
    float: left;
    padding-left: 70px;
    position: relative;
    width: 100%;
}

.comments-thread .title {
    color: #4371c6;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
}

.comment {
    float: left;
    width: 100%;
    background: #f6f6f6;
    padding: 30px 100px 30px 48px;
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}

.comment .avatar {
    border: 10px solid #f9f9f9;
    overflow: hidden;
    position: absolute;
    left: -70px;
    top: 30px;
    border-radius: 5px;
    width: 110px;
}

.avatar img {
    width: 100%;
    border-radius: 5px;
}

.comment-info {
    border-bottom: 1px solid #dee1e2;
    float: left;
    margin-bottom: 15px;
    padding-bottom: 12px;
    width: 100%;
}

.comment-info h4 {
    color: #494949;
    float: left;
    font-size: 15px;
    font-weight: 600;
    margin: 0 30px 0 0px;
}

.comment-info span {
    float: left;
    font-size: 13px;
    font-style: italic;
    line-height: 14px;
}

.comment-info span i {
    color: #4371c6;
}

.comment p {
    font-size: 13px;
    line-height: 26px;
    color: #898989;
}

.comment a {
    background: #4371c6;
    text-decoration: none;
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 0.9px;
    line-height: 20px;
    padding: 6px 23px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    top: 20px;
    font-weight: 600;
}

.contact-form .title {
    color: #4371c6;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
}

/** FORM CONTENT BOX AREA START **/
.form-content-box {
    max-width: 450px;
    margin: 60px auto;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    color: #7d7d7d;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    color: #787a7c;
}

.form-content-box .header {
    padding: 30px;
    background: #4371c6;
    border-radius: 2px;
    color: #fff;
}

.form-content-box .header h3 {
    margin-top: 0px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.form-content-box .header p {
    margin: 0px;
    font-weight: 300;
}

.form-content-box .Details {
    padding: 30px 30px 20px;
    background: #fff;
}

.form-content-box .Details .checkbox label::before {
    width: 0px;
    height: 0px;
    border: 1px solid transparent;
}

.form-content-box .Details .checkbox label {
    padding-left: 0px;
}

.form-content-box .input-text {
    width: 100%;
    padding: 10px 15px;
    font-size: 13px;
    height: 40px;
    border: 1px solid #e8e7e7;
    outline: none;
    color: #717171;
    border-radius: 3px;
}

.form-content-box ul {
    margin: 0px;
    padding: 0px;
    text-align: center;
}

.social-list-2 li {
    text-align: center;
    list-style: none;
    display: inline-block;
}

.social-list-2 li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    display: inline-block;
    margin: 2px 4px;
    color: #fff;
    border-radius: 50%;
}

.btn-submit {
    padding: 9px 20px;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background: #4371c6;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    /* ...and now for the proper property */
    transition: .5s;
    border-radius: 2px;
}

.btn-submit:hover {
    background: #be1233;
    color: #fff;
}

.form-content-box .checkbox a {
    color: #90a4ae;
    text-decoration: none;
    font-size: 13px;
}

.form-content-box .footer {
    padding: 20px;
    background: #f5f5f5;
    text-align: center;
    font-size: 13px;
}

.form-content-box .footer span a {
    text-decoration: none;
    font-weight: bold;
    color: #4371c6;
}

.bg-color {
    background: #EEE;
}

.error404-content {
    max-width: 450px;
    margin: 60px auto;
    text-align: center;
}

.error404-content h1 {
    font-size: 180px;
    color: #000;
    font-weight: 600;
    text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9,
    0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa,
    0 6px 1px rgba(0, 0, 0, .1), 0 0 5px rgba(0, 0, 0, .1),
    0 1px 3px rgba(0, 0, 0, .3), 0 3px 5px rgba(0, 0, 0, .2),
    0 5px 10px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .2),
    0 20px 20px rgba(0, 0, 0, .15);
}

.error404-content h2 {
    color: #4371c6;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 600;
}

.error404-content p {
    font-size: 20px;
    color: #5f5f5f;
    font-weight: 300;
    margin-bottom: 20px;
}

.private-message-to-dealer form textarea {
    min-height: 120px;
}

/** SEATION-2 AREA START **/
.section-2 {
    background: #f5f5f5;
}

.featured-car-slider {
    background: #fff;
    padding: 0px;
    width: 100%;
}

.featured-car-slider .col-pad {
    padding: 0px;
}

.featured-car-slider .details {
    text-align: center;
    padding: 125px 50px 20px 30px;
}

.featured-car-slider .details h3 {
    text-transform: uppercase;
    margin: 0 0 10px;
    font-size: 20px;
}

.featured-car-slider .details h4 {
    margin: 0 0 20px;
}

.featured-car-slider .details h4 a {
    text-decoration: none;
    font-weight: 600;
    color: #4371c6;
    font-size: 17px;
}

.featured-car-slider .details ul {
    margin: 0 0 20px;
    padding: 0px;
}

.featured-car-slider .details ul li {
    list-style: none;
    line-height: 30px;
    color: #747272;
}

.featured-car-slider .details ul li strong {
    font-weight: 600;
}

.featured-car-slider .details ul li a {
    color: #747272;
    text-decoration: none;
}

.featured-car-slider .details .price {
    font-size: 30px;
    color: #4371c6;
}

.featured-car-slider .details .price {
    margin-bottom: 20px;
}

.featured-car-slider .slider-mover-left {
    top: 2.5%;
    border-radius: 0%;
    left: 15px;
}

.featured-car-slider .slider-mover-right {
    top: 2.5%;
    border-radius: 0%;
    right: 15px;
}

/** SEATION-3 AREA START **/
.section-3 {
    background: #f5f5f5;
}

.btn-div a span.read-more {
    background: #363f48;
    color: #ffffff;
    margin-right: 0px;
    line-height: 18px;
    padding: 6px 8px;
    float: left;
    font-size: 12px;
}

.btn-div a span {
    color: #ffffff;
    font-size: 17px;
    text-align: right;
    padding: 3px 11px 3px 11px;
    float: left;
    background: #4371c6;
}

.features-item {
    background: #fff;
    margin-bottom: 30px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}

.features-item .col-pad {
    padding: 0px;
}

.features-item img {
    height: 184px;
    width: 100%;
}

.features-item .detail {
    padding: 19px;
}

.features-item .detail h4 {
    color: #cccccc;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    font-size: 16px;
    margin: 0px 0px 10px;
}

.features-item .detail h4:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #dadada;
    position: absolute;
    bottom: 0;
    left: 0;
}

.features-item .detail h4:after {
    content: '';
    width: 80px;
    height: 2px;
    left: 0;
    bottom: -1px;
    position: absolute;
    background-color: #4371c6;
}

.features-item .detail h4 a {
    text-decoration: none;
    color: #4b4b4b;
}

.features-item .detail h4 a:hover {
    color: #4371c6;
}

.features-item .detail p {
    font-size: 13px;
    line-height: 20px;
    color: #7B7B7B;
    margin-bottom: 16px;
    font-weight: 400;
}

.features-item .detail .bottom .price {
    font-size: 15px;
    color: #7B7B7B;
    float: left;
    margin-top: 5px;
}

/** COLOR AREA START **/
.bg-facebook:hover {
    background: #4867aa;
    border: solid #4867aa 1px;
    color: #fff;
}

.bg-twitter:hover {
    background-color: #33CCFF;
    border: solid #33CCFF 1px;
    color: #fff;
}

.bg-google:hover {
    background: #db4437;
    border: solid #db4437 1px;
    color: #fff;
}

.bg-linkedin:hover {
    background: #0177b5;
    border: solid #0177b5 1px;
    color: #fff;
}

.bg-pinterest:hover {
    background: #bd081c;
    border: solid #bd081c 1px;
    color: #fff;
}

.facebook-bg {
    background: #4867aa;
    color: #fff;
}

.facebook-bg:hover {
    background: #3a5795;
    color: #fff;
}

.twitter-bg {
    background: #33CCFF;
    color: #fff;
}

.twitter-bg:hover {
    background: #2abced;
    color: #fff;
}

.google-bg {
    background: #db4437;
    color: #fff;
}

.google-bg:hover {
    background: #c83a2e;
    color: #fff;
}

.linkedin-bg {
    background: #0177b5;
    color: #fff;
}

.linkedin-bg:hover {
    background: #036497;
    color: #fff;
}

.pinterest-bg {
    background: #bd081c;
    color: #fff;
}

.pinterest-bg:hover {
    background: #a30618;
    color: #fff;
}

.comments-thread .title span {
    color: #333;
    color: #333;
    margin: 0px 0px 30px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
}

@media (max-width: 1200px) {
    .featured-car-slider .details {
        text-align: center;
        padding: 70px 50px 45px 20px;
    }

    .page-banner {
        height: 250px;
    }

    .breadcrumb-area {
        padding: 10px;
    }
}

@media (max-width: 990px) {
    .sub-footer {
        padding: 15px;
    }

    .sub-footer .social-list {
        text-align: center;
        margin-top: 20px;
    }

    .testimonial-style-two {
        text-align: center;
    }

    .logo img {
        height: 30px;
    }

    .page-banner {
        height: 220px !important;
        padding: 30px;
    }

    .breadcrumb-area {
        padding: 10px;
    }
}

@media (max-width: 768px) {

    .navbar-default .navbar-toggle {
        margin-top: 20px;
        margin-right: 0px;
        margin-bottom: 8px;
        border-radius: 0px;
        background: #4371c6;
        border: solid 1px #4371c6;
    }

    .breadcrumb-area {
        padding: 15px 15px;
    }

    .recent-car .media .media-left {
        padding-right: 10px;
    }

    .navbar-default .navbar-toggle:hover {
        background: #be1233;
        color: #fff;
    }

    .navbar-default .navbar-toggle .icon-bar {
        background-color: #fff;
    }

    .block-heading h4 {
        display: block;
        border-radius: 3px;
    }

    .featured-car-slider .details h3 {
        font-size: 17px;
    }

    .main-header .navbar-default .nav > li > a {
        padding: 5px 20px 5px;
    }

    .breadcrumb-area p {
        font-size: 14px;
    }

    .breadcrumb-area h2 {
        font-size: 25px;
    }

    .banner .item {
        text-align: left;
    }

    .banner .banner-slider-inner h1 {
        margin: 0px 0px 10px;
        font-size: 27px;
    }

    .banner .banner-slider-inner h1 span {
        font-weight: 300;
    }

    .btn-view {
        padding: 9px 16px;
        font-size: 12px;
    }

    .banner-slider-inner p {
        font-size: 13px;
        margin-bottom: 10px;
        font-weight: 500;
        letter-spacing: 1px;
    }

    .car-pic img {
        height: auto;
    }

    .testimonials .content .text {
        font-size: 18px;
        text-align: justify;
    }

    .sec-title-three h2 {
        font-size: 25px;
    }

    .contact-us-body {
        padding: 25px 0px;
    }

    .testimonial-style-two {
        position: relative;
        padding: 75px 0px;
        background: #eaeaea;
    }

    .main-title p {
        font-size: 14px;
        line-height: 22px;
        text-align: justify;
    }

    .main-title {
        margin-bottom: 25px;
    }

    .main-title h1 {
        font-size: 18px;
        font-weight: 700;
    }

    .car-our-service .media .media-body p {
        line-height: 20px;
        text-align: justify;
    }

    .features-item {
        max-width: 400px;
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .content-area {
        padding: 25px 0px 20px;
    }

    .car-details-body {
        padding: 15px 0px 50px;
    }

    .car-details-body .about-car p {
        line-height: 22px;
        text-align: justify;
    }

    .amenities-box ul li:last-child {
        margin-bottom: 5px;
    }

    .amenities-box {
        margin-bottom: 0px;
    }

    .inside-car .inside-car {
        height: auto;
    }

    .comments-thread li ul li {
        padding-left: 0px;
    }

    .comment {
        padding: 60px 20px 30px 25px;
    }

    .comment p {
        line-height: 20px;
        text-align: justify;
    }

    .comment .avatar {
        width: 70px;
        border: 7px solid #f9f9f9;
        left: -55px;
    }

    .comments-thread li {
        padding-left: 55px;
    }

    .car-details-body .sidebar-widget {
        padding: 0px;
        border: 1px solid transparent;
    }

    .details-sidebar .sidebar-widget {
        padding: 0px;
        border: 1px solid transparent
    }

    .about-item {
        padding: 25px 0px;
    }

    .about-item .text p {
        text-align: justify;
        line-height: 20px;
    }

    .blog-box .detail p {
        font-size: 13px;
        line-height: 20px;
        text-align: justify;
    }

    .recent-comments .media .media-body p {
        line-height: 20px;
        text-align: justify;
    }

    .blog-banner h2 {
        font-size: 24px;
    }

    blockquote {
        padding: 7px 20px;
        margin: 30px 0px 30px 20px;
        text-align: justify;
    }

    .comments-thread .title {
        font-size: 20px;
    }

    .blog-box .title {
        font-size: 20px;
    }

    .shopping-cart-body {
        padding: 50px 0px;
    }

    .shop-cart {
        padding: 50px 0px;
    }

    .order-review {
        padding: 15px 15px;
    }

    .error404-content h1 {
        font-size: 120px;
    }

    .error404-content h2 {
        font-size: 24px;
    }

    .form-content-box .Details {
        padding: 30px 15px 20px;
    }

    .form-content-box .header {
        padding: 15px;
    }

    .blog-body {
        padding: 25px 0px 25px;
    }

    .slider-mover-left {
        width: 30px;
        height: 30px;
        line-height: 22px;
        left: 5px;
        border: solid 1px #1B1410;
    }

    .slider-mover-left img {
        width: 20px;
    }

    .slider-mover-right {
        width: 30px;
        height: 30px;
        line-height: 22px;
        right: 5px;
        border: solid 1px #1B1410;
    }

    .thumb-preview {
        height: auto;
    }

    .slider-mover-right img {
        width: 20px;
    }

    .section-heading .media .media-body h4 {
        font-size: 18px;
    }

    .logo, .logo:hover {
        font-size: 22px;
        padding: 20px 0px 0px;
    }

    .features-item img {
        height: auto;
    }

    .blog-box {
        margin-bottom: 30px;
    }

    .btn-details {
        float: left;
        padding: 5px 16px;
        font-size: 12px;
        font-weight: 400;
    }

    .car-box .detail header h5 a {
        font-size: 15px;
    }

    .car-box .detail header .price {
        font-size: 15px;
    }

    .car-list-box .detail header h3 a {
        font-size: 15px;
    }

    .car-list-box .detail header .price {
        font-size: 15px;
    }

    .car-list-box .detail {
        padding: 15px 20px;
    }

    .invoice-body {
        padding: 50px 0px;
    }

    .featured-car-slider .details .price {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .featured-car-slider .details ul {
        margin-bottom: 10px;
    }

    .featured-car-slider .details h4 {
        margin: 0 0 10px;
    }

    .car-list-box .detail .facilities-list li {
        width: 50%;
    }

    .car-box .detail .facilities-list li {
        width: 50%;
    }

    .sub-footer form {
        background: transparent;
    }

    .amenities-box ul li {
        margin-bottom: 10px;
    }

    .blog-box .detail h1 {
        font-size: 16px;
    }

    .blog-box .detail {
        padding: 15px 0px 0px;
    }

    .details-option-bar {
        margin-bottom: 15px !important;
        border: 1px solid #DDD;
        padding: 15px;
    }

    .banner .banner-slider-inner {
        padding: 100px 20px;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .amenities-box ul li i {
        font-size: 16px;
    }

    .page-banner {
        height: 180px !important;
        padding: 20px;
    }

    .breadcrumb-area {
        padding: 10px;
    }

    .breadcrumb-area h2 {
        font-size: 18px;
    }

    .breadcrumb-area p {
        font-size: 12px;
    }
}

@media (max-width: 525px) {
    .banner .banner-slider-inner {
        padding: 50px 25px !important
    }

    .block-heading {
        margin-bottom: 5px;
        background: transparent;
        border: none;
    }

    .block-heading .cod-pad {
        width: 100%
    }

    .block-heading .sorting-options {
        margin: 10px 15px 10px 0px;
        text-align: left
    }

    .page-banner {
        height: 120px !important;
        padding: 15px 10px;
    }

    .breadcrumb-area {
        padding: 5px;
        text-align: left;
    }

    .breadcrumb-area h2 {
        font-size: 14px;
        font-weight: 700;
    }

    .breadcrumb-area p {
        font-size: 12px;
        letter-spacing: 0px;
        margin-bottom: 0px;
        text-align: justify;
        line-height: 15px;
    }

    .breadcrumb-area .btn-details, .breadcrumb-area .btn-default {
        display: none;
    }
}

@media (max-width: 450px) {
    .amenities .amenities-box {
        width: 100%;
    }

    .blog-share {
        float: left;
        text-align: left;
    }

}

.thumbnail img.thumb {
    width: 100%;          /* Membuat gambar lebar penuh sesuai kontainer */
    height: 300px;        /* Tinggi tetap untuk semua gambar */
    object-fit: cover;    /* Crop gambar untuk menyesuaikan ukuran */
    object-position: center; /* Memusatkan bagian gambar yang dipotong */
}

.thumbnail img.thumb2 {
    width: 100%;          /* Membuat gambar lebar penuh sesuai kontainer */
    height: 353px;        /* Tinggi tetap untuk semua gambar */
    object-fit: cover;    /* Crop gambar untuk menyesuaikan ukuran */
    object-position: center; /* Memusatkan bagian gambar yang dipotong */
}

.thumbnail img.thumb3 {
    width: 100%;          /* Membuat gambar lebar penuh sesuai kontainer */
    height: 330px;        /* Tinggi tetap untuk semua gambar */
    object-fit: cover;    /* Crop gambar untuk menyesuaikan ukuran */
    object-position: center; /* Memusatkan bagian gambar yang dipotong */
}

.footer-info {
    margin-top: 3em;
}

/* Modal customization */
#galleryModal .modal-dialog {
    max-width: 90%;
}

#galleryModal .modal-body {
    padding: 0;
}

/* Slick Slider customization */
.slick-prev:before, .slick-next:before {
    color: #333;
}

.slick-slide img {
    display: block;
    max-width: 100%;
    height: auto;
}

.slider-nav img {
    border: 2px solid #ddd;
    padding: 5px;
}

.slider-nav img:hover {
    border: 2px solid #333;
}


/* Set height for main image and make sure it scales properly */
.main-image {
    height: 500px; /* Set height for main image */
    width: auto;
    object-fit: cover; /* Ensures the image covers the container without distortion */
}

/* Set uniform height for thumbnails */
.thumbnail-image {
    height: 100px; /* Set height for thumbnails */
    width: auto;
    object-fit: cover; /* Ensures the thumbnails cover the container proportionally */
}

/* Modal customization */
#galleryModal .modal-dialog {
    max-width: 90%;
}

#galleryModal .modal-body {
    padding: 0;
}

/* Slick Slider customization */
.slick-slide img {
    display: block;
    max-width: 100%;
    height: auto;
}

.slick-prev:before, .slick-next:before {
    color: #333;
}
