﻿@font-face {
    font-family: "GT America Regular";
    src: url("../font/GT-America-Standard-Regular-1.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Albertus Medium";
    font-style: normal;
    font-weight: 400;
    src: url('../font/Albertus-Medium-1.ttf') format('truetype');
}

.banner {
    width: 100%;
    height: 300px;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../dyi2eiqum/image/upload/f_auto,q_auto,w_1600/v1718627537/valueaddedcourse_header_bx1egb.png');
}

.banner-text {
    height: 270px;
    width: 100%;
    position: absolute;
    top: 15%;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.banner-text h1 {
    text-align: center;
    width: 100%;
    color: whitesmoke;
    font-size: 52px;
    font-weight: 400;
    padding-top: 20px;
    font-family: "Albertus Medium";
}

.banner-text a {
    text-decoration: none;
    padding: 7px 15px;
    background: #992728;
    border: none;
    outline: none;
    color: white;
    font-family: "Albertus Medium";
}

.body-section {
    display: flex;
    width: 100%;
    height: auto;
    align-items: flex-start;
    justify-content: flex-start;
}

.left_menu {
    width: 20%;
    height: auto;
    position: relative;
}

.left_menu .viewItems {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.left_menu .viewItems a {
    text-decoration: none;
    color: grey;
    font-size: 1.02rem;
    padding: 30px 40px;
    border-bottom: 1px solid grey;
    font-family: "Albertus Medium";
}

.left_menu .viewItems .master {
    color: #992728 !important;
    border-bottom: none !important;
}

.left_menu .viewItems .active {
    background: black;
    color: white;
}

.main_content .section-1 p {
    font-size: 15px;
    padding: 10px 0;
}

.main_content .section-1 p span {
    color: #992728;
}

.main_content .head h2 {
    font-size: 2.6rem;
    font-family: "Albertus Medium";
    font-weight: medium;
}
.main_content .head {
    margin-bottom: 20px;
}

.main_content section {
    width: 100%;
}

.main_content section .sub-head {
    background-color: #992728;
    color: white;
    font-family: "Albertus Medium";
    font-size: 20px;
    padding: 16px 32px;
}

.main_content section .sub-head span {
    font-size: 14px;
    margin-top: 10px;
    font-family: "GT America Regular";
}

.main_content section .content {
    padding: 22px 16px;
}

.main_content section .content ul li {
    font-family: "GT America Regular";
    margin-bottom: 20px;
}
.main_content section .content ul li a{
    text-decoration: none;
    color: black;
}
.main_content section .content ul li a:hover{
    text-decoration: underline;
    color: #992728;
}

.main_content section .content h3{
    font-size: 16px;
    font-family: "GT America Regular";
    text-align: center;
    color: #AEAEAE;
}


/* Mobile Responsiveness */
@media (max-width: 450px) {
    :root {
      --heading-size: 32px;
    }
    .main_content .head h2{
        font-size: var(--heading-size);
    }
    .main_content section .content{
        padding: 0;
    }
    .main_content section .content ul{
        list-style-position: inside;
        padding: 0;
    }
    .main_content section .content ul li{
        font-size: 18px;
        line-height: 1.3;
        text-align: justify;
    }
    .main_content section .sub-head{
        padding: 12px 10px;
    }

}  