
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    overflow: hidden;
}



/* About Us Section
--------------------------------*/
#quienes {
    background: url("../img/about-bg.jpg") center top no-repeat;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
}

#quienes::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9;
}

#about .container {
    position: relative;
    z-index: 10;
}
#about .about-col {
    background: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}
#about .about-col .img {
    position: relative;
}
#about .about-col .img img {
    border-radius: 4px 4px 0 0;
}
#about .about-col .icon {
    width: 64px;
    height: 64px;
    text-align: center;
    position: absolute;
    background-color: #247abc;
    border-radius: 50%;
    border: 4px solid #fff;
    left: calc(50% - 32px);
    bottom: -30px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#about .about-col i {
    font-size: 28px;
    line-height: 0;
    color: #fff;
    transition: 0.3s;
}
#about .about-col:hover .icon {
    background-color: #fff;
}
#about .about-col:hover i {
    color: #247abc;
}
#about .about-col h2 {
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: 0;
    margin: 40px 0 12px 0;
}
#about .about-col h2 a {
    color: #000;
}
#about .about-col h2 a:hover {
    color: #247abc;
}
#about .about-col p {
    font-size: 14px;
    line-height: 24px;
    color: #333;
    margin-bottom: 0;
    padding: 0 20px 20px 20px;
}

/* Services Section
--------------------------------*/
#services {
    background: #fff;
    background-size: cover;
    padding: 40px 0 60px 0;
}
#services .box {
    margin-bottom: 30px;
}
#services .icon {
    float: left;
}

#services .icon i {
    color: #247abc;
    font-size: 40px;
    line-height: 0;
    transition: 0.5s;

}
#services .title {
    margin-left: 60px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 18px;
}
#services .title a {
    color: #111;
}
#services .title:hover a {
    color: #247abc;
}
#services .description {
    font-size: 14px;
    margin-left: 60px;
    line-height: 24px;
    margin-bottom: 0;
}






