/*general*/
:root{
    --brandColorGreen: #388fa3;
    --brandColorBlue: #1b1464;
    --brandColorGreenSelection: #41a4ba;

    --darkerGreen: #0e5869;
}

@font-face {
    font-family: Noto-sans;
    src: url("font/NotoSans-Regular.ttf");
}
@font-face {
    font-family: Noto-sans;
    src: url("font/NotoSans-Bold.ttf");
    font-weight: bold;
}
    
@font-face {
    font-family: Noto-sans;
    src: url("font/NotoSans-Italic.ttf");
    font-style: italic;
}

@font-face {
    font-family: Noto-sans-black;
    src: url("font/NotoSans-Black.ttf");
}

@font-face{
    font-family: 'Playfair';
    src: url("font/PlayfairDisplay-Regular.ttf");
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: #eee;
    font-family: Noto-sans, Arial, Helvetica, sans-serif;
    margin: 0;
}

a{
    cursor: pointer;
}

h1{
    margin: 0;
    font-size: 3em;
}

h2{
    font-size: 2em;
    text-transform: uppercase;
}

h3{
    font-size: 1.5em;
}

ol{
    padding-left: 1em;
}

section{
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 2px 2px 2px gray;
    margin-bottom: 50px;
    padding: 1px 50px 50px 50px;
}

.align-right{
    text-align: right;
}

.breadcrumbs{
    font-size: 1.4em;
}
.breadcrumbs a{
    color: #fff;
    padding: 3px;
}
.breadcrumbs a:hover{
    background-color: var(--brandColorGreenSelection);
    border-radius: 3px;
    color: #fff;
}

a.button{
    background-color: var(--brandColorGreen);
    border-radius: 20px;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
}
a.button:hover{
    background-color: var(--brandColorGreenSelection);
}

.first-section{
    border-radius: 0;
    box-shadow: none;
    padding: 50px;
}

.flexbox{
    align-items: center;
    display: flex;
    justify-content: center;
}

.wrapper{
    margin-left: 10%;
    margin-right: 10%;
}

/*header*/
header{
    background-color: #fff;
    padding-top: 15px;
    position: fixed;
    transition: padding-top 0.3s ease;
    top: 0;
    width: 100%;
    z-index: 1;
    margin-bottom: 30px;
}

.burger-menu{
    display: none;
}
.burger-menu img{
    width: 30px;
}

.header-2{
    overflow: scroll;
    white-space: nowrap;
}

.header-1,
.header-2 > ul{
    align-items: center;
    display: flex;
    list-style: none;
    justify-content: center;
    padding-left: 0;
}

.header-2 ul{
    background-color: var(--brandColorGreen);
    margin-bottom: 0px;
}
.header-2 a{
    color: #fff;
    display: block;
    font-family: Noto-sans-black;
    font-size: 15pt;
    padding: 10px 20px;
    text-decoration: none;
}
.header-2 ul li:hover > a{
    background-color: #fff;
    border-radius: 3px;
    color: #5a5c5b;
}
.header-2 ul li:active > a{
    background-color: var(--darkerGreen);
    color: #fff;
}

.header-2 ul li ul{
    border-radius: 0px 0px 4px 4px;
    list-style: none;
    opacity: 0;
    padding-left: 0;
    position: absolute;
    text-wrap: wrap;
    transition: visiblity 0s, opacity 0.1s linear;
    visibility: hidden;
}
.header-2 ul li:hover ul{
    opacity: 1;
    visibility: visible;
}

.logo img{
    margin-right: 30px;
    width: 100px;
}

.logo-text{
    border-left: 3px solid;
    line-height: 40px;
    padding-left: 2em;
}
.logo-text a{
    font-weight: bold;
    text-decoration: none;
}
.logo-text a .text-1{
    color: var(--brandColorBlue);
    font-size: 28pt;
    text-transform: uppercase;
}
.logo-text a .text-2{
    color: var(--brandColorGreen);
    font-family: 'Playfair', Times, serif;
    font-size: 17pt;
}

.overlay-nav{
    background-color: #000;
    height: 100%;
    opacity: 0.7;
    position: fixed;
    transition: width 0.3s ease;
    width: 0%;
}

/*footer*/
footer{
    background-color: var(--brandColorBlue);
    color: #fff;
    padding-bottom: 50px;
}
footer .wrapper > div{
    display: flex;
    padding-top: 30px;
}
footer img{
    width: 107px;
}
footer .footer-text{
    margin-left: 30px;
}
footer .footer-text a{
    color: #fff;
}
footer .contact .row div{
    display: inline-block;
}
footer .contact .row .left{
    width: 80px;
}
footer .wrapper{
    position: relative;
}
footer .social-media{
    bottom: 0;
    position: absolute;
    right: 0;
}
footer .social-media a{
    padding: 0px 10px;
}
footer .social-media img{
    vertical-align: middle;
    width: 30px;
}
footer .social-media .youtube{
    width: 37px;
}
footer .social-media .tiktok{
    width: 25px;
}

/*for javascript*/
/*header fixed*/
.header-fixed{
    padding-top: 5px !important;
}
.header-logo-fixed{
    width: 60px !important;
}
.header-text-div-fixed{
    line-height: 25px !important;
}
.header-text-1-fixed{
    font-size: 20pt !important;
}
.header-text-2-fixed{
    font-size: 12pt !important;
}
.header-2-ul-fixed{
    margin-top: 0 !important;
}

/*submenu*/
.showSubmenu{
    opacity: 1 !important;
    visibility: visible !important;
}
.selectedMenu{
    background-color: var(--darkerGreen);
    color: #fff;
}

/*news-pagination*/
.current-page{
    background-color: var(--brandColorGreen) !important;
    color: #fff !important;
    font-weight: bold;
}

/*home*/
/*home-banner*/
.home-banner{
    padding-top: 0px;
}
.home-banner .image-div{
    position: relative;
}
.home-banner img{
    width: 100%;
}
.home-banner .flexbox{
    flex-direction: column;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}
.home-banner .button-banner-2,
.home-banner .button-banner-3{
    margin-top: 30%;
}

.home-banner .button-banner-2 a,
.home-banner .button-banner-3 a{
    background-color: var(--brandColorGreen);
    border-radius: 4px;
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    padding: 10px;
    text-decoration: none;
}
.home-banner a:hover {
    background-color: var(--brandColorGreenSelection);
}

/*study-home*/
.study-home{
    padding: 50px;
}
.study-home h1{
    color: var(--brandColorGreen);
    text-align: center;
}
.study-home h1 img{
    vertical-align: middle;
    width: 65px;
}
.study-home ul{
    display: flex;
    list-style: none;
    justify-content: center;
    padding-left: 0;
}
.study-home a{
    font-size: x-large;
    margin: 10px 10px;
    text-wrap: nowrap;
}
.study-home a:hover{
    background-color: var(--brandColorGreenSelection);
}

/*news-home*/
.news-home{
    padding: 50px;
}
.news-home .wrapper .news-home-title{
    background-color: var(--brandColorGreen);
    border-radius: 3px;
    display: inline-block;
    font-size: xx-large;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 10px;
}
.news-home .wrapper .news-home-title a{
    color: #fff;
    text-decoration: none;
}
.news-home .wrapper .news-home-title img{
    vertical-align: middle;
    width: 65px;
}
.news-home .wrapper .content{
    background-color: initial;
    display: flex;
    justify-content: center;
}
.news-home .wrapper .content > div{
    margin-right: 10px;
    width: 100%;
}
.news-home .wrapper .content img{
    width: 100%;
}
.news-home .wrapper .content img{
    border: 3px solid transparent;
}
.news-home .wrapper .content img:hover{
    border: 3px solid var(--brandColorGreenSelection);
}
.news-home .wrapper .content a{
    color: #222;
    text-decoration: none;
}
.news-home .wrapper .content .news-home-date{
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: underline;
}


/*about*/
/*vision-mission*/
.vision-mission-title{
    background-image: url("../images/pageTitle/page-title-about.jpg");
    background-size: cover;
    color: #fff;
    text-align: center;
}
.vision-mission h2{
    text-align: center;
}
.vision-mission .moto{
    font-size: 18pt;
    font-style: italic;
    margin-top: 20px;
    text-align: center;
}
.vision-mission ol li{
    margin-bottom: 1em;
}

/*history*/
.history-title{
    background-image: url("../images/pageTitle/page-title-about.jpg");
    background-size: cover;
    color: #fff;
    text-align: center;
}

.history h3,
.history div .image-div{
    text-align: center;
}
.history > div{
    padding-bottom: 3em;
}
.history img{
    max-width: 100%;
}
.history .history-text{
    text-align: justify;
    vertical-align: top;
}

/*leaders*/
.leaders-title{
    background-image: url("../images/pageTitle/page-title-about.jpg");
    background-size: cover;
    color: #fff;
    text-align: center;
}

.leaders{
    padding-top: 50px;
}
.leaders img{
    border-radius: 60px;
    box-shadow: 1px 2px 2px #222;
    width: 120px;
}
.leaders .block{
    border: 1px solid gray;
    box-shadow: 1px 1px 1px black;
    display: inline-block;
    margin-bottom: 25px;
    padding: 15px;
    width: 45%;
}
.leaders .block:hover{
    background-color: var(--brandColorGreenSelection);
}
.leaders .block > div{
    display: inline-block;
}
.leaders .block .image-div{
    text-align: center;
    width: 40%;
}
.leaders .block .leaders-name-div{
    position: relative;
    top: 15px;
    vertical-align: top;
    width: 55%;
}
.leaders .block .leaders-name-div .leaders-name{
    font-weight: bold;
    font-size: 1em;
}

/*foundation*/
.foundation-title{
    background-image: url("../images/pageTitle/page-title-about.jpg");
    background-size: cover;
    color: #fff;
    text-align: center;
}

.foundation{
    padding-top: 50px;
}
.foundation img{
    border-radius: 60px;
    box-shadow: 1px 2px 2px #222;
    width: 120px;
}
.foundation .block{
    border: 1px solid gray;
    box-shadow: 1px 1px 1px black;
    display: inline-block;
    margin-bottom: 25px;
    padding: 15px;
    width: 45%;
}
.foundation .block:hover{
    background-color: var(--brandColorGreenSelection);
}
.foundation .block > div{
    display: inline-block;
}
.foundation .block .image-div{
    text-align: center;
    width: 40%;
}
.foundation .block .foundation-name-div{
    position: relative;
    top: 15px;
    vertical-align: top;
    width: 55%;
}
.foundation .block .foundation-name-div .foundation-name{
    font-weight: bold;
    font-size: 1em;
}

/*lecturers*/
.lecturers-title{
    background-image: url("../images/pageTitle/page-title-about.jpg");
    background-size: cover;
    color: #fff;
    text-align: center;
}

.lecturers .section-title{
    cursor: pointer;
    font-size: 1.5em;
    padding: 15px 0px;
}
.lecturers .section-title:hover{
    background-color: var(--brandColorGreenSelection);
    border-radius: 3px;
    color: #fff;
}
.lecturers .section-title .arrow-div{
    display: inline-block;
    width: 1em;
}

.lecturers .lecturers-block{
    height: auto;
    margin-top: 2em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.lecturers{
    padding-top: 50px;
}
.lecturers img{
    border-radius: 60px;
    box-shadow: 1px 2px 2px #222;
    width: 120px;
}
.lecturers .block{
    border: 1px solid gray;
    box-shadow: 1px 1px 1px black;
    display: inline-block;
    margin-bottom: 25px;
    padding: 15px;
    width: 45%;
}
.lecturers .block:hover{
    background-color: var(--brandColorGreenSelection);
}
.lecturers .block > div{
    display: inline-block;
}
.lecturers .block .image-div{
    text-align: center;
    width: 40%;
}
.lecturers .block .lecturers-name-div{
    position: relative;
    top: 15px;
    vertical-align: top;
    width: 55%;
}
.lecturers .block .lecturers-name-div .lecturers-name{
    font-weight: bold;
    font-size: 1em;
}

/*study*/
/*study page*/
.study{
    background-image: url("../images/pageTitle/page-title-study.jpg");
    background-size: cover;
}
.study h1{
    text-align: center;
    color: #fff;
}

/*study/major*/
.study-major-title{
    background-image: url("../images/pageTitle/page-title-study.jpg");
    background-size: cover;
    color: #fff;
    text-align: center;
}

.academic-title{
    font-size: 2em;
}

.school-of-leadership td{
    text-align: center !important; /*nullifier from admission-tuition-fee class*/
}

.course h2{
    display: block;
    position: relative;
    text-align: left;
}
.course .align-right{
    font-size: 0.5em;
    font-weight: normal;
    position: absolute;
    right: 0;
    top: 20px;
}

.course-table-button{
    background-color: var(--brandColorGreen);
    color: #fff;
    cursor: pointer;
    padding: 10px;
}
.course-table-button:hover{
    background-color: #2a6e7d;
}

.course-table,
.simulation-table,
.school-of-leadership-simulation-table{
    height: auto;
    max-height: 0;
    overflow: hidden;
    padding: 0px 2em;
    transition: max-height 0.3s ease;
}
.course-table table,
.simulation-table table,
.school-of-leadership-simulation-table table{
    border-collapse: collapse;
    margin-bottom: 30px;
    width: 100%;
}
.course-table th,
.simulation-table th,
.school-of-leadership-simulation-table th{
    background-color: #5a9bd5;
    color: #fff;
}
.course-table th,
.course-table td,
.simulation-table th,
.simulation-table td,
.school-of-leadership-simulation-table th,
.school-of-leadership-simulation-table td{
    padding: 5px;
}
.course-table th:nth-child(odd),
.course-table td:nth-child(odd){
    width: 10%;
}
.course-table tr:nth-child(even){
    background-color: #deeaf6;
}
.course-table tr:hover,
.simulation-table td:hover,
.school-of-leadership-simulation-table td:hover{
    background-color: #96cbfa;
}
.course-table td{
    border-bottom: 1px solid #a1c5e7;
}
.course-table td:nth-child(odd){
    text-align: center;
}

.simulation-table table,
.school-of-leadership-simulation-table table{
    text-align: center;
}
.simulation-table th,
.simulation-table td,
.school-of-leadership-simulation-table th,
.school-of-leadership-simulation-table td{
    border: 1px solid #a1c5e7;
}
.simulation-table .colored,
.school-of-leadership-simulation-table .colored{
    background-color: #deeaf6;
}

.school-of-leadership-simulation-table{
    max-height: 1500px;
}

.lecturer-study > div{
    display: flex;
    margin-bottom: 10px;
}
.lecturer-study img{
    border-radius: 50px;
    margin-right: 30px;
    width: 100px;
}
.lecturer-study .lecturer-study-name-div{
    position: relative;
    top: 10px;
}
.lecturer-study .lecturer-study-name{
    font-size: 2em;
}

/*research*/
/*journal*/
.journal-title{
    background-image: url("../images/pageTitle/page-title-research.jpg");
    background-size: cover;
    color: #fff;
    text-align: center;
}

.journal > div{
    margin-bottom: 3em;
}
.journal .button-div{
    text-align: center;
}

/*news*/
/*news-list*/
.news-title{
    background-image: url("../images/sea.jpg");
    background-size: cover;
    color: #fff;
    text-align: center;
}

.news a{
    text-decoration: none;
}
.news img{
    width: 55%;
}
.news-pagination{
    padding: 25px;
    text-align: center;
}
.news-pagination a{
    border: 2px solid var(--brandColorGreen);
    border-radius: 5px;
    color: var(--darkerGreen);
    display: inline-block;
    font-size: 1.1em;
    padding: 1em;
    text-decoration: none;
}
.news-pagination a:hover{
    background-color: var(--brandColorGreenSelection);
    color: #fff;
}

/*news-detail*/
.news-detail-title .breadcrumbs{
    font-size: 1em;
}
.news-detail-title .breadcrumbs a{
    color: #222;
}

.news-detail .news-detail-image-div{
    text-align: center;
    margin-bottom: 3em;
}
.news-detail img{
    width: 70%;
}

.news-detail-button-div{
    display: flex;
    justify-content: center;
    margin-top: 3em;
}

.news-detail-button{
    background-color: var(--brandColorGreen);
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    margin: 1em;
    padding: 1em;
    text-decoration: none;
}
.news-detail-button:hover{
    background-color: var(--brandColorGreenSelection);
}

/*admission*/
/*admission page*/
.admission h2{
    text-align: center;
}
.admission img{
    width: 100%;
}
.admission .main-poster{
    margin-bottom: 3em;
}
.admission .flexbox > div:nth-child(1),
.admission .flexbox > div:nth-child(2){
    margin-right: 1em;
}
.admission .flexbox div img{
    border: 3px solid transparent;
}
.admission .flexbox div img:hover{
    border: 3px solid var(--brandColorGreenSelection);
}

.quick-link li{
    margin-bottom: 0.5em;
}

/*schedule*/
.admission-schedule-title{
    background-image: url("../images/pageTitle/page-title-admission.jpg");
    background-size: cover;
    color: #fff;
    text-align: center;
}

.admission-schedule h2{
    text-align: center;
}

.admission-schedule table{
    border-collapse: collapse;
}

.admission-schedule table tr:hover{
    background-color: var(--brandColorGreenSelection);
}

.admission-schedule table th{
    background-color: var(--brandColorGreen);
    color: #fff;
}
.admission-schedule table th:nth-child(1){
    border-right: 2px solid var(--brandColorGreenSelection);
}
.admission-schedule table th,
.admission-schedule table td{
    padding: 10px;
}
.admission-schedule table td{
    border-bottom: 1px solid;
}
.admission-schedule table td:nth-child(even){
    text-align: right;
}

/*procedure*/
.admission-procedure-title{
    background-image: url("../images/pageTitle/page-title-admission.jpg");
    background-size: cover;
    color: #fff;
    text-align: center;
}

.admission-procedure h2{
    text-align: center;
}
.admission-procedure h3,
.admission-procedure ol{
    margin: 0;
}
.admission-procedure table{
    border-collapse: collapse;
}
.admission-procedure table tr:hover{
    background-color: var(--brandColorGreenSelection);
}

.admission-procedure table th{
    background-color: var(--brandColorGreen);
    color: #fff;
}
.admission-procedure table th:nth-child(1){
    border-right: 2px solid var(--brandColorGreenSelection);
}
.admission-procedure table th,
.admission-procedure table td{
    padding: 15px;
}
.admission-procedure table td{
    border-bottom: 1px solid;
}
.admission-procedure table th:nth-child(1),
.admission-procedure table td:nth-child(1){
    text-align: right;
    vertical-align: top;
}

/*requirement*/
.admission-requirement-title{
    background-image: url("../images/pageTitle/page-title-admission.jpg");
    background-size: cover;
    color: #fff;
    text-align: center;
}

.admission-requirement-information-div{
    padding-bottom: 13px;
}

.admission-requirement table{
    border-collapse: collapse;
}
.admission-requirement table tr:hover{
    background-color: var(--brandColorGreenSelection);
    color: #fff;
}
.admission-requirement th{
    background-color: var(--brandColorGreen);
    color: #fff;
}
.admission-requirement td{
    border-bottom: 1px solid #000;
}
.admission-requirement th:nth-child(1),
.admission-requirement td:nth-child(1){
    text-align: right;
    vertical-align: top;
    width: 2em;
}
.admission-requirement th,
.admission-requirement td{
    padding: 10px;
}

/*tuition-fee*/
.admission-tuition-fee-title{
    background-image: url("../images/pageTitle/page-title-admission.jpg");
    background-size: cover;
    color: #fff;
    text-align: center;
}

.admission-tuition-fee h2{
    text-align: center;
}
.admission-tuition-fee .table-div{
    overflow: scroll;
    width:100%;
}
.admission-tuition-fee table{
    border-collapse: collapse;
    width: 100%;
}
.admission-tuition-fee table th{
    background-color: var(--brandColorGreen);
    color: #fff;
}
.admission-tuition-fee table th:nth-child(1),
.admission-tuition-fee table th:nth-child(2),
.admission-tuition-fee table th:nth-child(3),
.admission-tuition-fee table th:nth-child(4){
    border-right: 2px solid var(--brandColorGreenSelection);
}
.admission-tuition-fee table th:nth-child(3),
.admission-tuition-fee table th:nth-child(4){
    background-color: var(--darkerGreen);
}


.admission-tuition-fee table th,
.admission-tuition-fee table td{
    padding: 10px;
}
.admission-tuition-fee table td{
    border-bottom: 1px solid #000;
}

.admission-tuition-fee table tbody:hover .group{
    background-color: var(--brandColorGreenSelection);
    color: #fff;
}
.admission-tuition-fee table tr:hover{
    background-color: var(--brandColorGreenSelection);
    color: #fff;
}
.admission-tuition-fee table td:nth-child(1),
.admission-tuition-fee table td:nth-child(3),
.admission-tuition-fee table td:nth-child(4){
    text-align: right;
    text-wrap: nowrap;
}

.admission-tuition-fee .s2-table tr th{
    background-color: var(--brandColorGreen);
}
.admission-tuition-fee .s2-table .second-head th{
    background-color: var(--darkerGreen);
}
.admission-tuition-fee .s2-table tr td:nth-child(3),
.admission-tuition-fee .s2-table tr td:nth-child(4),
.admission-tuition-fee .s2-table tr td:nth-child(5),
.admission-tuition-fee .s2-table tr td:nth-child(6){
    text-align: right;
    text-wrap: nowrap;
}

/*Page 404*/
.page-404{
    display: flex;
    justify-content: center;
}
.page-404 div{
    text-align: center;
}

/*mobile view*/
@media screen and (max-width: 700px){
    /*general*/
    h1{
        font-size: 2em;
    }

    section{
        border-radius: 3px;
        padding: 1px 15px 50px 15px;
    }

    header{
        position: fixed;
        padding-bottom: 10px;
    }

    footer .wrapper > div{
        display: block;
    }
    footer .footer-image{
        padding-top: 30px;
    }
    footer .footer-text{
        margin-left: 0;
        margin-top: 30px;
    }
    footer .social-media{
        display: block;
        margin-top: 30px;
        position: unset;
    }
    footer .social-media a{
        padding: 0px 20px 0px 0px;
    }

    .breadcrumbs{
        font-size: 1em;
    }

    .first-section{
        border-radius: 0;
        margin-top: 0;
        padding: 20px;
    }

    .wrapper{
        margin-left: 4%;
        margin-right: 4%;
    }

    /*header*/
    .burger-menu{
        background-color: #ccc;
        border-radius: 3px;
        cursor: pointer;
        display: inline;
        margin-left: 17px;
        padding: 5px;
    }

    .header-2{
        max-height: 600px;
        left: 0;
        position: absolute;
        transition: all 0.3s ease;
        visibility: hidden;
        width: 0%;
        z-index: 2;
    }
    .header-2 a{
        display: inline;
        font-size: 12pt;
    }
    .header-2 ul{
        display: block;
        margin-top: 0;
        margin-bottom: 0;
    }
    .header-2 ul li{
        padding: 10px 20px;
    }
    .header-2 ul li ul{
        margin-left: 20px;
        margin-top: 15px;
        opacity: 1;
        position: relative;
        visibility: visible;
    }
    .header-2,
    .overlay-nav{
        margin-top: 10px;
    }

    .logo img{
        margin-left: 10px;
        margin-right: 12px;
        width: 80px;
    }
    .logo-text{
        line-height: 20px;
        padding-left: 15px;
        width: 55%;
    }
    .logo-text a{
        font-size: 18pt;
    }
    .logo-text a .text-1{
        font-size: 0.8em;
    }
    .logo-text a .text-2{
        font-size: 10pt;
    }

    /*home*/
    /*home-banner*/
    .home-banner .button-banner-2,
    .home-banner .button-banner-3{
        margin-top: 6em;
    }
    .home-banner .button-banner-2 a,
    .home-banner .button-banner-3 a{
        font-size: 0.7em;
        padding: 5px;
    }

    /*study-home*/
    .study-home{
        padding: 20px 10px 10px 10px;
    }
    .study-home h1 img {
        width: 50px;
    }
    .study-home a{
        border-radius: 10px;
        font-size: 1em;
        margin-left: 0;
        padding: 5px;
    }
    
    /*news-home*/
    .news-home{
        padding: 20px 10px 10px 10px;
    }
    .news-home .wrapper .news-home-title{
        font-size: 1.5em;
    }
    .news-home .wrapper .news-home-title img{
        width: 40px;
    }
    .news-home .wrapper .content{
        display: initial;
    }
    .news-home .wrapper .content div{
        margin-bottom: 50px;
        margin-right: 0;
    }
    .news-home .wrapper .content img{
        border: 3px solid transparent;
    }
    .news-home .wrapper .content img:hover{
        border: 3px solid var(--brandColorGreenSelection);
    }

    /*about*/
    /*history*/
    .history img{
        padding-left: 0;
    }
    .history .history-text{
        text-align: unset;
    }

    /*leaders*/
    .leaders .block{
        width: 88%;
    }
    .leaders .block img{
        border-radius: 37px;
        width: 75px;
    }
    .leaders .block .leaders-name-div{
        top: 0px;
    }

    /*foundation*/
    .foundation .block{
        width: 88%;
    }
    .foundation .block img{
        border-radius: 37px;
        width: 75px;
    }
    .foundation .block .leaders-name-div{
        top: 0px;
    }

    /*lecturers*/
    .lecturers .section-title{
        background-color: var(--brandColorGreen);
        color: #fff;
        font-size: 1.3em;
        padding: 10px;
    }
    
    .lecturers .lecturers-block .block{
        width: 88%;
    }
    .lecturers .lecturers-block img{
        border-radius: 37px;
        width: 75px;
    }
    .lecturers .lecturers-block .lecturers-name-div{
        top: 0px;
    }

    /*study*/
    /*study/major*/
    .course-table{
        padding: 0;
    }

    .lecturer-study .lecturer-study-name-div{
        top: 15px;
    }

    .lecturer-study .lecturer-study-name{
        font-size: 1.5em;
    }

    /*news*/
    /*news-list*/
    .news img{
        width: 100%;
    }
    .news-pagination{
        padding: 25px 10px;
    }
    .news-pagination a{
        font-size: 0.8em;
    }

    /*news-detail*/
    .news-detail img{
        width: 100%;
    }
    .news-detail-content-div{
        word-wrap: break-word;
    }

    /*admission*/
    /*pmb*/
    .admission .flexbox{
        display: inline;
    }
    .admission .flexbox div:nth-child(1),
    .admission .flexbox div:nth-child(2){
        margin-right: 0;
    }
    .admission .flexbox div{
        margin-top: 2em;
    }
}

/*tablet*/
@media screen and (max-width: 1000px){
    /*home*/
    /*home-banner*/
    .study-home ul{
        display: initial;
        text-align: center;
    }
    .study-home ul li{
        padding: 1em 0;
    }
}