/*Reset*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #eee;
    color: #333;
}

p {
    margin-bottom: 0.8rem;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
}

a {
    color: #333;
    text-decoration: none;
}

ul {
    list-style: none;
}

strong {
    color: #f1c40f;
    font-weight: 400;
}

em {
    color: #555;
}

/*font-family: 'Liu Jian Mao Cao', cursive;*/

/*class*/

.container {
    display: block;
    max-width: 1200px;
    margin: auto;
    padding: 4rem;
    
}
.title {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.bg-dark {
    background: #333;
    color: white;
}

/*VP + header*/

.vp-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    padding: 1rem 2rem;
    background: green;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    line-height: 1.8rem;
    
}

.vp-logo {
    margin-bottom: 0;
    font-family: 'Liu Jian Mao Cao', cursive;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.vp-logo i {
    color:#f1c40f;
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-left: 1rem;
}

.vp-logo a {
    font-size: 2rem;
    font-weight: 300;
}

.header-elem-img {
    width: 4rem;
    height: 4rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

header ul {
    display: flex;
    flex-flow: row nowrap;
    list-style: none;
}

header ul li {
    padding: 1rem;
    
}

header ul li a:hover {
    color: #f1c40f;
}

header a {
    color: white;
}

.vp {
    flex: auto;
    display: flex;
    height: 800px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url(./imgs/244715708_368572571671656_3293594662132232758_n.jpg) center center/cover;
}

.vp-content {
    max-width: 800px;
    text-align: center;
    color:white;
    padding: 1rem;
}

.vp-content h1 {
    font-size: 3.2rem;
    margin-bottom: 17rem;
}

.vp-content p {
    margin-top: 32rem;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 2rem;
}

/*Offer*/

.offer {
    padding: 4rem 1rem;
}

.offer-services {
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 1.2rem;

}


.offer-list {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    
}

.offer-elem {
    border: 1px solid #ddd;
    background: white;
    margin: 1rem;
    flex: 1;
}

.offer-elem-img {
    width: 100%;
    height: 50%;
}

.offer-elem-text {
    padding: 2rem;
    text-align: center;
}

.offer-separator {
    margin: 1rem auto;
    height: 2px;
    width: 50px;
    background: #333;
}

/*who*/

.who {
    display: flex;
    flex-flow: row nowrap;
    min-height: 400px;
}

.who-content-img {
    flex: 1;
    background: url(./imgs/remorquage-urgence-24h-montral-010.jpg) center center/cover;
}

.who-content-img img {
    width: 100%;
    height: 100%;
}

.who-content-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.who-content-text h2 {
    margin-bottom: 2rem;
}

.who-content-text p {
    font-size: 1.3rem;
    line-height: 1.8rem;
}

/*Where*/

.where {
    padding: 2rem 0px 2rem 0px;
    overflow: auto;
    min-height: 100vh;

}

.where-img {
    float: left;
    width: 40%;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.where-text {
    float: right;
    width: 55%;
    font-weight: 400;
}

.where-text h2 {
    color: green;
}


/*contact*/

.contact {
    padding: 6rem 1rem 6rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form  h1 {
    color: #f1c40f;
    font-size: 3rem;
    padding-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-form input {
    background: #333;
    border: 0;
    border-bottom: 1px solid #555;
    padding: 1rem;
    font-size: 1.3rem;
    color: white;
    outline: 0;
    margin-bottom: 1rem;
}

.contact-form button {
    display: block;
    margin: 3rem auto;
    padding: 1rem 2rem;
    border: 0;
    border-radius: 30px;
    background:#f1c40f ;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    cursor: pointer;
}

.contact-form button:hover {
    background: red;
}

/*footer*/

footer {
    background: #444;
    padding: 5rem 1rem 5rem 1rem;
    color: white;
    text-align: center;
}

footer p {
    margin-bottom: 0;
}




