body {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.woff2') format('woff2'),
        url('../fonts/OpenSans-Regular.woff') format('woff');
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    font-family: 'Open Sans', Arial, sans-serif;

}

.hero {
    width: 100%;
    height: 440px;
    position: relative;
    display: flex;
    align-items: end;
    padding: 0 0 2rem 0;
    background: url(../img/learning-center/background.png) no-repeat center;
    background-size: cover;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 60px;
    font-weight: 600;
}


/* Logo styling */
.logo {
    font-weight: bold;
    font-size: 28px;
    color: #000;
    letter-spacing: 1px;
    text-decoration: none;
    line-height: 1.1;
}

/* Button styling */
.btn-login,
.btn-demo {
    background-color: #F7941D;
    color: white;
    border: none;
    padding: 8px 25px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.section-title {
    font-size: 40px;
    padding: 50px 0 30px 0;
}

.content-section {
    padding: 8rem 0;
}

.blog-card {
    border: 1px solid #e17523;
    border-radius: 0px 0 20px 20px;
    overflow: hidden;
    height: 100%;
}

.blog-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    padding: 2rem;
    align-items: center;
    display: flex;
    background: linear-gradient(90deg, rgba(59, 167, 204, 1) 0%, rgba(3, 78, 175, 1) 100%);
}

.blog-image img {
    width: 100%;
    height: auto;
}

.blog-content {
    padding: 20px 20px 20px 20px;
}

.blog-tag {
    display: inline-block;
    margin-bottom: 10px;
    background-color: #E17523;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.blog-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-meta {
    color: #000;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
}

@media (max-width: 991.9px) {

    .news-line-1,
    .news-line-2,
    .news-line-3 {
        display: grid;
        gap: 3rem;
    }

    .news-line-1 .col-md-4,
    .news-line-2 .col-md-4,
    .news-line-3 .col-md-4 {
        width: 100%;
    }
}

@media (max-width: 575.9px) {
    h3.blog-title {
        font-size: 20px !important;
        line-height: 1.2;
    }
}