@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Collegiate+One&family=Bebas+Neue&family=Cardo:wght@400;700&family=Cormorant+SC:wght@300;400;500;600;700&family=Roboto+Condensed:wght@300&family=Source+Sans+Pro:wght@200;300;400;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Collegiate+One&family=Bebas+Neue&family=Cardo:wght@400;700&family=Cormorant+SC:wght@300;400;500;600;700&family=Roboto+Condensed:wght@300&family=Ubuntu+Condensed&display=swap');



* {
    margin: 0;
    padding: 0;
    transition: 0.5s;
    box-sizing: border-box;
    object-fit: cover;
    text-transform: uppercase;
    font-family: 'Alumni Sans Collegiate One', sans-serif;
    font-family: 'Bebas Neue', cursive;
    font-family: 'Cardo', serif;
    font-family: 'Cormorant SC', serif;
    font-family: 'Roboto Condensed', sans-serif;
    font-family: 'Source Sans Pro', sans-serif;
}




:root {
    --blue: rgb(8, 76, 139) !important;
    --gray: rgb(172, 172, 172);
    --white: rgb(226, 226, 226);
    --black: rgb(29, 27, 27);
    --para: rgb(52, 40, 40);
    --red: rgb(191, 1, 1);
    --border: rgb(150, 149, 149);
}

.rental {
    text-align: center;
    padding: 30px;
}


.rental .rental-title h1 {
    font-weight: bolder;
    color: var(--blue);
}

.rental .rental-title h1 span {
    color: var(--black);
}

.rental .rental-para p {
    text-transform: initial;
}

.rent-cars {
    text-align: center;
}


.rent-cars .rent-cars-title h1 {
    font-weight: bolder;
    color: var(--blue);
}

.rent-cars .rent-cars-title h1 span {
    color: black;
}




.rent-cars .rent-cars-image .content-area .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background-color: var(--blue);
    border-radius: 15px;
}


.rent-cars .rent-cars-image img {
    width: 100%;

}


.rent-cars .rent-cars-image .content-area .content h3,
.rent-cars .rent-cars-image .content-area .content p {
    color: var(--white);
}


.rent-cars .rent-cars-image .content-area .content p {
    text-transform: initial;
}