/* Reset and Base Styles */
body {
    background: #fff;
    margin: 0;
    padding: 0;
}

/* Font Classes */
.OpenSansSemiBold {
    font-family: OpenSansSemiBold;
}

.OpenSansLight {
    font-family: OpenSansLight;
}

.OpenSansRegular {
    font-family: OpenSansRegular;
}

.OpenSansBold {
    font-family: OpenSansBold;
}

/* Main Container */
.about-wrap {
    margin: 6px 40px 0px 20px;
    max-width: 1200px;
}

.afor_ctech {
    color: #505050;
}

/* About Section */
.about-wrap .about-text {
    font-size: 18px;
    line-height: 35px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-wrap .about-main {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
}

/* Publishers Section */
.publishers {
    display: flex;
    flex-direction: row;
}

.publishers ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 0px;
    margin: 0px;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.publishers li {
    list-style: none;
    margin: 50px 30px 0px 0px;
    line-height: 24px;
    justify-content: center;
    display: inline-block;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
}

.publishers li img {
    max-width: 100%;
    height: auto;
}

.publishers .name {
    color: #d01E25;
    font-size: 18px;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 10px;
}

.publishers .role {
    color: #505050;
    font-size: 16px;
    display: flex;
    justify-content: center;
    text-align: center;
}

/* Newsletter Link */
a.newsletter-link {
    background-color: #00979b;
    color: #fff;
    padding: 8px;
    display: inline-block;
    text-decoration: none;
}

a.newsletter-link:hover {
    background-color: #007a7d;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-wrap {
        margin: 6px 20px 0px 20px;
    }
    
    .about-wrap .about-text,
    .about-wrap .about-main {
        font-size: 16px;
        line-height: 28px;
    }
    
    .publishers ul {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .publishers li {
        margin: 30px 15px 0px 15px;
    }
    
    .publishers .name {
        font-size: 16px;
    }
    
    .publishers .role {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .about-wrap {
        margin: 6px 15px 0px 15px;
    }
    
    .about-wrap .about-text,
    .about-wrap .about-main {
        font-size: 14px;
        line-height: 24px;
    }
    
    .publishers ul {
        flex-direction: row;
        justify-content: center;
    }
    
    .publishers li {
        margin: 20px 10px 0px 10px;
    }
    
    .publishers li img {
        max-width: 80px;
    }
    
    .publishers .name {
        font-size: 12px;
    }
    
    .publishers .role {
        font-size: 11px;
    }
}