/*------------------------------------------------------------------
[ Owner Section ]
-------------------------------------------------------------------*/
.owner {
    padding-top: 50px;
    padding-bottom: 70px;
    background-color: #f8f9fa;
}

.owner .section-title {
    position: relative;
    margin-bottom: 45px;
}

.owner .section-title span {
    font-size: 14px;
    color: #ca1515;
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.owner__content {
    padding: 30px;
    position: relative;
    height: 100%;
}

.owner__text h4 {
    color: #111111;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 24px;
    position: relative;
    padding-bottom: 15px;
}

.owner__text h4:after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 70px;
    background: #ca1515;
    content: "";
}

.owner__text p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444444;
}

.owner__social {
    margin-top: 30px;
}

.owner__social a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background: #f2f2f2;
    font-size: 15px;
    color: #111111;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 6px;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.owner__social a:hover {
    background: #ca1515;
    color: #ffffff;
}

.owner__gallery {
    height: 100%;
    padding: 10px;
}

.owner__pic {
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: all 0.3s;
}

.owner__pic img {
    transition: all 0.5s;
    width: 100%;
}

.owner__pic:hover img {
    transform: scale(1.05);
}

.owner__quote {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding: 30px 0;
}

.owner__quote i {
    font-size: 30px;
    color: #ca1515;
    margin-bottom: 10px;
}

.owner__quote p {
    font-size: 18px;
    color: #111111;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.owner__quote span {
    font-size: 14px;
    color: #ca1515;
    font-weight: 600;
}

.primary-btn a.site-btn {
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    background: #ca1515;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s;
}

.primary-btn a.site-btn:hover {
    background: #e1313d;
}

/* Media query for tablets and below */
@media (max-width: 991px) {
    .owner__content {
        padding: 20px 0;
        margin-bottom: 30px;
    }
    
    .owner__gallery {
        padding: 0;
    }
}

/* Media query for mobile phones */
@media (max-width: 767px) {
    .owner__pic {
        margin-bottom: 15px;
    }
    
    .owner__quote p {
        font-size: 16px;
    }
    
    .owner .section-title {
        margin-bottom: 30px;
    }
}
