/*================================================
DM About Area CSS
=================================================*/
.dm-about-content span {
    font-size: var(--fontSize);
    font-weight: 400;
    display: inline-block;
    margin-bottom: 15px;
    color: var(--optionalColor);
}
  
.dm-about-content h3 {
    font-size: 42px;
    margin-bottom: 15px;
}
  
.dm-about-content .about-btn {
    margin-top: 30px;
}
.dm-about-image {
    margin-top: 30px;
    text-align: center;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
    .dm-about-content h3 {
        font-size: 25px;
    }
    .dm-about-content .about-btn {
        margin-top: 25px;
    }
    .dm-about-image {
        margin-top: 30px;
        text-align: center;
    }
}

