.navperso {
    padding-top: 20px;
    padding-bottom: 20px;
}

* {
    margin: 0;
    padding: 0;
    font-family: "montserrat", sans-serif;
    box-sizing: border-box;
}

.landing-page {
    width: 100%;
    height: 100vh;
    background: #000;
    position: relative;
    overflow: hidden;
}

.landing-page::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(Voiture.jpg) no-repeat;
    background-size: cover;
    opacity: .3;
}

.page-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 0 40px;
    box-sizing: border-box;
}

.page-content h1 {
    color: #ff7979;
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 20px;
}

.page-content p {
    color: #fff;
    margin-bottom: 20px;
}

.page-content a {
    display: inline-block;
    text-decoration: none;
    color: #ff7979;
    border: 2px solid #ff7979;
    text-transform: uppercase;
    padding: 10px 20px;
    transition: 0.4s linear;
}

.page-content a:hover {
    color: #fff;
    background: #ff7979;
}

.text {
    padding: 10px;
    text-align: justify;
}

.text div {
    margin-bottom: 6px;
}

.testimonial-section {
    background: #222e3d;
    padding: 40px 0;
}

.inner-width {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.testimonial-section h1 {
    text-align: center;
    color: white;
    font-size: 24px;
}

.testimonial {
    background: #f1f1f1;
    padding: 40px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.test-info {
    display: flex;
    height: 60px;
    align-items: center;
}

.test-pic {
    width: 30px !important;
    border-radius: 80%;
    margin-right: 15px;
}

.test-name {
    font-size: 12px;
    color: #333;
}

.test-name span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #3498db;
}

.testimonial p {
    font-size: 12px;
    line-height: 22px;
    margin-top: 20px;
}

.services-section {
    background-color: #152334;
    background-size: cover;
    padding: 60px 0;
}

.inner-width {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    overflow: hidden;
}

.section-title {
    text-align: center;
    color: #ddd;
    text-transform: uppercase;
    font-size: 30px;
}

.border-h {
    width: 160px;
    height: 2px;
    background: #DDD;
    margin: 40px auto;
}

.vert {
    background-color: #3A4657;
}

.col-sm-3 {
    text-align: center;
    color: white !important;
    font-size: 24px;
}

.col-sm-3 h3 {
    padding-top: 40px;
    text-align: center;
    color: white;
    font-size: 20px;
}

.col-sm-3 p {
    margin-top: 20px;
    text-align: center;
    color: white;
    font-size: 16px;
}

.border-v {
    width: 2px;
    height: 160px;
    background: #DDD;
    margin: 40px auto;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service-box {
    max-width: 33.33%;
    padding: 10px;
    text-align: center;
    color: #ddd;
    cursor: pointer;
}

.service-icon {
    display: inline-block;
    width: 70px;
    height: 70px;
    border: 3px solid #ff7979;
    color: #82ccdd;
    transform: rotate(45deg);
    margin-bottom: 30px;
    margin-top: 16px;
    transition: 0.3s linear;
}

.service-icon .logo {
    width: 50px;
    height: 50px;
    margin-right: 4px;
    margin-top: 5px;
    line-height: 70px;
    transform: rotate(-45deg);
    font-size: 26px;
}

.service-box:hover .service-icon {
    background: #ff7979;
    color: #ddd;
}

.service-title {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 14px;
}

@media screen and (max-width:960px) {
    .service-box {
        max-width: 45%;
    }
}

@media screen and (max-width:768px) {
    .service-box {
        max-width: 50%;
    }
}

@media screen and (max-width:480px) {
    .service-box {
        max-width: 100%;
    }
    .border-v {
        width: 160px;
        height: 2px;
        background: #DDD;
        margin: 40px auto;
    }
    .page-content h1 {
        font-size: 40px;
    }
}

footer {
    text-align: center;
    color: #DDD;
    background-color: #0A1625;
}

footer h3 {
    text-transform: uppercase;
    font-size: 16px;
    padding-top: 40px;
}

footer p {
    font-size: 14px;
}

#copyright {
    padding-top: 40px;
}