﻿body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1{
    color: #4d4d4d;
    font-size: 32px;
}

.content-busca{
    background: #00315a;
    margin-top: 30px;
    border-radius: 8px;
}

.locadora{
    width: 100%;
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px #ccc;
    margin: 30px 0;
}

.locadora .description{
    padding: 20px;
    width: 50%;
}

.locadora .content-img{
    width: 50%;
    background: url("../assets/images/Hertz-int.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0 8px 8px 0;
}

.locadora .content-img.dollar{
    background: url("../assets/images/Dollar_05.png");
    background-size: contain;
    background-position: 100%;
    background-repeat: no-repeat;
}

.locadora .content-img.thrifty{
    background: url("../assets/images/Thrifty_04.png");
    background-size: contain;
    background-position: 100%;
    background-repeat: no-repeat;
}

.links-hertz {
    display: flex;
    flex-direction: column;
}

@media only screen and (max-width: 768px){
    .locadora .content-img{
        background-position: 75%;
        height: 280px;
    }

    .locadora .content-img.dollar,
    .locadora .content-img.thrifty{
        height: 370px;
        background-size: cover;
    }
    .newhome-mob{
        border-radius: 8px 8px 0 0;
    }
}

@media only screen and (max-width: 600px){
    .locadora{
        flex-direction: column;
    }
    .locadora .description{
        width: 100%;
    }
    .locadora .content-img{
        width: 100%;
        border-radius: 0 0 8px 8px;
    }
}

