#about {
    margin-top: 100px;
    margin-bottom: 50px;
}


#about .cta {
    font-size: 1.5em;
    border: 2px solid #CB2235;
    display: inline-block;
    padding: 30px;
    border-radius: 25px;
    margin: 0;
    transition: background .5s, color .5s;
    color: #CB2235;
}

#about .cta:hover {
    background: #CB2235;
    color: white;
}

#about h1 {
    font-size: 3em;
}

#about .content {
    width: 100%;
}

#about p {
    line-height: 25px;
    text-align: justify;
}

#about img {
    float: none !important;
    display: block;
}

.about-section {
    position: relative;
    overflow: hidden;
    padding: 50px 30px 50px 30px;
}

.about-section:before {
    content: "";
    display: block;
    height: 105%;
    width: 105%;
    position: absolute;
    top: -3%;
    left: -1%;
    background: rgba(255, 255, 255, .8);
    filter: blur(4px);
    z-index: 1;
}

.about-section img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    min-height: 100%;
}

.about-section h2, .about-section p {
    position: relative;
    z-index: 1;
}

.about-section h2 {
    font-size: 3em;
}

.about-section p {
    line-height: 25px;
    margin-top: 15px;
    text-align: justify;
    max-width: 1000px;
}

.team {
    text-align: left !important;
    padding: 30px;
    margin: 25px 0 0 0 !important;
}

.team .member {
    min-width: 300px;
    margin: 30px 0 30px 0;
}

.team h2 {
    font-size: 3em !important;
    margin-bottom: 50px !important;
}

@media(max-width: 1000px) {
    .about-section h2 { font-size: 2em;
    .team .member {
        width: 100% !important;
        text-align: center;
    }
}