body {
    background: #fbfbfb;
}
header {
    background: #114970;
    position: relative;
}
header .logo-text {
    position:  absolute;
    top: 20px;
    left: 120px;
}
header .logo-letter {
    position:  absolute;
    left: 10px;
    top: 10px;
}
header h4 {
    color: white;
    font-size: 1.5rem;
    display: flex;
}
header h4 span {
}
header .button {
    background-color: #FF3B02;
    padding: 6px 25px;
    color: #fff;
    border-radius: 24px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color .2s;
    box-shadow: 0 0 20px 0 rgba(0,0,0,.5);
    margin: 3px 0 0 20px;
    align-self: center;
    white-space: nowrap;
}
header .button:hover {
    background: #cc2e00;
}
header p {
    color: white;
}

footer {
    background: #114970;
    padding: 5px;
    color: white;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer .bloc {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 30px;
    border-radius: 100%;
    background: #4affcb;
    color: #114970;
    text-align: center;
    width: 15vw;
    height: 15vw;
}
footer .bloc b {
    font-size: 1.5rem;
}
h1 {
    color: #114970;
    font-weight: bold;
}
main h2 {
    color: #626469;
    font-size: 1.2rem;
}
main .cover {
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}
footer h2 {
    font-size: 2.3rem;
    font-weight: bold;
    padding: 20px;
    max-width: 18vw;
}
.state-letter.LIKE_NEW::before,.state-letter.USED_LIKE_NEW::before {
    content: 'A';
}
.state-letter.USED_VERY_GOOD::before {
    content: 'B';
}
.state-letter.USED_GOOD::before {
    content: 'C';
}
.state-letter.USED_ACCEPTABLE::before {
    content: 'D';
}

.state {
    display: flex;
    align-items: center;
    font-family: Public Sans,Arial,sans-serif
}

.state-letter {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    color: #fff;
    background: #114970;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px
}

.state-details {
    display: flex;
    flex-direction: column;
    font-weight: 700
}

.state-description {
    margin-top: .125rem;
    color: #626469;
    font-size: 1rem;
    font-weight: 400;
    display: none;
}
#mobile-text {
    display: none;
}
#cover {
    height: 100%;
    width: 100%;
    max-width: 380px;
    max-height: 380px;
    object-fit: contain;    
}

header .infos {
    padding: 10px 0 0 16px;
}
header .logo-letter {
    left: -10px
}

@media (max-width: 800px) {
    header .logo-text {
        position: static;
        margin-top: 10px;
    }
    
    header .logo-letter { display: none; }
    
    header h4 {
        flex-direction: column;
    }
    header h4 .button {
        align-self: flex-start;
        margin: 10px 0 5px 0;
    }
    footer h2 {
        max-width: none;
        flex-basis: 100%;
    }
    footer {
        justify-content: space-around;
    }
    footer .bloc b {
        font-size: 1.3rem;
    }
    footer .bloc {
        padding: 20px;
        margin: 4px;
        width: calc(50vw - 23px);
        height: calc(50vw - 23px);
    }
}

@media (max-width: 370px) {
    footer .bloc b {
        font-size: 1rem;
    }
    footer .bloc small {
        font-size: 0.8rem;
    }
}