/* ABOUT */
.about {
    padding: 80px 20px;
    background: #fff;
}

.about-header {
    padding-top: 300px;
    padding-bottom: 100px;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about .section-head {
    margin-bottom: 30px;
}

.about .section-head h2 {
    font-size: 42px;
    color: #0d1b2a;
    margin-bottom: 15px;
}

.about .border-line {
    width: 80px;
    height: 4px;
    background: #1e88e5;
    margin: 0 auto;
    border-radius: 20px;
}

.about .text {
    font-size: 18px;
    line-height: 2;
    color: #555;
    text-align: justify;
    margin-bottom: 40px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 700px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-header .lead{
    margin: auto;
    color: rgba(255,255,255,.9);
}

.about-header h1{
    font-size: 55px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* RESPONSIVO */
@media(max-width: 768px) {

    .about {
        padding: 60px 15px;
    }

    .about-header {
        padding-top: 30px;
        padding-bottom: 100px;
    }

    .about .section-head h2 {
        font-size: 32px;
    }

    .about .text {
        font-size: 16px;
        line-height: 1.8;
    }

    .about-image img {
        border-radius: 14px;
    }
}