@import url('https://fonts.googleapis.com/css2?family=Secular+One&display=swap');

body {
    font-family: 'Secular One', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #f57921;
    text-decoration: none;
}

h3 {
    font-size: 3rem;
}

h4 {
    font-size: 1.75rem;
}

.form-control {
    border-radius: 0;
    border: 2px solid #787677;
}

.no-border-radius {
    border-radius: 0 !important;
}

.form-control-lg {
    border-radius: 0;
    border: 2px solid #787677;
}

.bg-blue {
    background-color: #00215e !important;
}

.bg-orange {
    background-color: #f57921;
}

.header-top {
    background: #f57921;
}

.header-top small {
    padding-left: var(--bs-gutter-x,.75rem);
    padding-right: var(--bs-gutter-x,.75rem);
}

.navbar-nav {
    gap: 2rem;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
    color: #f57921;
    font-weight: 500;
}

.navbar-light .navbar-nav .nav-link {
    color: #FFF;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #f57921;
}

.cars-home {
    flex-wrap: wrap;
}

.cars-home > .card {
    flex-basis: 24%;
    margin-bottom: 1rem;
}


.card:hover {
    transition: all 0.2s ease-out;
    box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
    top: -4px;
    border: 1px solid #cccccc;
    background-color: white;
}
.card:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: #f57921;
    height: 24px;
    width: 24px;
    border-radius: 24px;
    transform: scale(2);
    transform-origin: 50% 50%;
    transition: transform 0.15s ease-out;
}
.card:hover:before {
    transform: scale(3.15);
}

.cars-more-button {

}

.cars-more-button a {
    text-decoration: none;
}

.about-content {
    gap: 2rem;
}
.about-content div {
    flex: 0 50%;
}

.vehicle-detail h3 {
    font-size: 2rem;
}

.vehicle-detail .price {
    color: #00215e;
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.vehicle-detail .price .original-price {
    font-size: 16px;
    text-decoration: line-through;
    color: #787677;
}

.vehicle-detail .gallery-and-description .gallery {
    flex: 0 60%;
}
.vehicle-detail .gallery-and-description .description {
    flex: 0 40%;
}

.vehicle-detail .car-bullets li {
    border-bottom: 1px solid #cecece;
}

#slider-about .carousel-item img {
    object-fit: contain;
    height: 100vh;
}
#slider-about .carousel-control-next {
    right: 50px;
}

#slider-about .carousel-control-prev {
    left: 50px;
}

.footer-bottom {
    background-color: #f57921;
}
