@import url('https://fonts.googleapis.com/css?family=Pattaya|Russo+One&display=swap');

body {
    font-family: 'Russo One', sans-serif;
    font-size: 16px;
}

.bg{
    height:100vh;
    /*background: url('img/car-black.jpg') no-repeat top center;*/
    background-size: cover;
    display: flex;
    flex-flow: nowrap column;
    justify-content: center;    
}

.wrapper{
    max-width: 1200px;
    min-width: 320px;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 30px;
    vertical-align: center;
    background: rgba(255,255,255,0.75);
} 

.title{
    font-size: 3.75rem;
    font-family: 'Pattaya', sans-serif;
    color:#A89054;
    margin: 0 0 15px 0;
}

.sub-title{
    font-size: 1.125rem;
    text-transform: uppercase;
    color:#000;
    margin: 0 0 15px 0;
}

.descr{   
    color: #8d8d8d;
    margin: 0 0 25px 0;
}

.contacts {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    color:#A89054;
}

.contacts-item {    
    margin: 5px 0;
}


.phones-mobile, .phone-city{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.img {
    height: 19px;
}

.num {
    color:#000;
    margin: 0 0 0 10px;
}

.num a {
    color:#000;
    text-decoration: none;
}
.unm a:hover {
    text-decoration: underline;
}


.email a {
    color:#000;
    text-decoration: none;
}

.email a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 450px){
    .title{
        font-size: 2.5rem;
    }

    .contacts-item {
        flex-basis: 100%;        
    }
}