/* ############### */
/* ############### */
/*     index page  */
/* ############### */
/* ############### */
.index-page {
    display: flex;
    flex-direction: column;
    overflow: hidden !important;
}

.index-page header {
    height: 70px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
}

.index-page .indexHeader .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.indexHeader .logo .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.indexHeader .title span {
    color: rgb(0, 128, 107);
}

.indexHeader .title span:nth-child(1) {
    font-size: 22px;
    font-family: 'B Sina' !important;

}

.indexHeader .title span:nth-child(2) {
    font-size: 14px;
    position: relative;
    top: -5px;
    z-index: 9999;
}

.indexHeader .contact {
    position: relative;
    left: 100px;
    width: 600px;
    justify-content: space-between;
    z-index: 99999 !important;
}

.indexHeader .contact span {
    font-size: 12px;
}

@media screen and (max-width:950px) {
    .indexHeader .contact {
        position: relative;
        left: 80px;
        width: 530px;
        justify-content: space-between;
    }
}

@media screen and (max-width:850px) {
    .indexHeader .contact {
        position: absolute;
        left: 10px !important;
        width: 420px;
        justify-content: space-between;
    }
}

@media screen and (max-width:850px) {
    .indexHeader .contact {
        justify-content: flex-end;
        width: auto;
        left: 0px;
        gap: 3px !important;
    }

    .indexHeader .contact>* {
        gap: 0px !important;
    }

    .indexHeader .contact img {
        max-width: 25px;
    }

    .indexHeader .contact .text {
        position: absolute;
        padding: 10px 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.158);
        top: 40px;
        left: 0;
        background-color: white;
        border-radius: 5px;
        opacity: 0;
        visibility: hidden;
        z-index: 9999 !important;
    }

}

@media screen and (max-width:400px) {
    .indexHeader .logo .imgBox {
        display: none !important;
    }
}

.showUserNavbar {
    display: none;
}

/* ################## */
/* ################## */
/*       u nav        */
/* ################## */
/* ################## */
.uNav {
    display: flex;
    background-color: white;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10px;
    transition: 0.5s !important;
}

.uNav ul {
    display: flex;
}

.uNav ul>li {
    margin-right: 10px;
}

.uNav ul>li:first-child {
    margin-right: 70px;
}

.uNav>li a {
    color: black;
    font-size: 14px;
}

.uNav ul>li a {
    display: inline-block !important;
    padding: 3px 15px !important;
    padding: 5px;
    font-size: 14px;
    text-align: center;
    color: black;
}

.activeNav {
    border-bottom: 5px solid var(--primary);
}

@media screen and (max-width:570px) {
    .banner {
        height: 90vh !important;
    }

    .uNav {
        height: 0px;
        overflow: hidden;
    }

    .showUserNavbar {
        display: block !important;
    }

    .uNav ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 10px !important;
    }

    .uNav ul li {
        border: none !important;
        width: 100px;
        text-align: center;
    }

    .uNav ul>li {
        margin-right: 0px;
        margin: 5px 0px;
    }

    .uNav ul>li:first-child {
        margin-right: 0px;
    }

}

/* ################## */
/* slide show */
/* ################## */
.banner {
    width: 100%;
    height: 84vh;
    position: relative;
    background-color: lightblue;
    overflow: hidden !important;
}

.slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.slideshow>div {
    width: 100%;
    height: 100%;
    position: absolute;
    animation: slider 70s infinite;
    opacity: 0;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}

.slideshow>div:nth-child(2) {
    animation-delay: 10s;
}

.slideshow>div:nth-child(3) {
    animation-delay: 20s;
}

.slideshow>div:nth-child(4) {
    animation-delay: 30s;
}

.slideshow>div:nth-child(5) {
    animation-delay: 40s;
}

.slideshow>div:nth-child(6) {
    animation-delay: 50s;
}

.slideshow>div:nth-child(7) {
    animation-delay: 60s;
}

@keyframes slider {
    10% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    40% {
        transform: scale(1.2);
    }
}

.bannerOverlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #1b2422b6;
    z-index: 5550 !important;
}

.bannerOverlay .bannerTitle {
    position: relative;
    top: 70px;
    right: 100px;
    width: 700px;
}

.bannerOverlay .bannerTitle h1:nth-child(1) {
    font-family: 'B Sina' !important;
    font-size: 90px;
    text-shadow: 2px 5px 3px rgba(24, 24, 24, 0.459);
}

.bannerOverlay .bannerTitle h1 {
    color: white;
}

.bannerOverlay .bannerTitle h1:nth-child(2) {
    color: var(--orange);
    position: relative;
    top: -30px;
}

.bannerOverlay .bannerTitle p {
    color: white;
    position: relative;
    top: -20px;
}

.searchStudent {
    background-color: white;
    border-radius: 5px;
    align-items: center;
    padding: 10px;
    display: grid;
    align-items: center;
    grid-template-columns: 150px auto 40px;
}

.searchStudent span {
    display: block;
    width: 200px;
    font-size: 18px;
    padding-right: 10px;
}

.searchStudent input {
    display: block;
    font-size: 18px;
}

.searchStudent div {
    font-size: 23px;
}

@media screen and (max-width:992px) {
    .bannerOverlay .bannerTitle {
        position: relative;
        top: 50px;
        right: 50px;
        width: 500px;
    }

    .bannerOverlay .bannerTitle h1:nth-child(1) {
        font-size: 70px;
    }

    .bannerOverlay .bannerTitle p {
        font-size: 14px;
    }
}

@media screen and (max-width:768px) {
    .bannerOverlay .bannerTitle {
        position: relative;
        top: 50px;
        right: 50px;
        width: 400px;
    }

    .bannerOverlay .bannerTitle h1:nth-child(1) {
        font-size: 70px;
    }

    .bannerOverlay .bannerTitle p {
        font-size: 14px;
    }

    .searchStudent {
        background-color: white;
        border-radius: 5px;
        align-items: center;
        padding: 10px;
        display: grid;
        grid-template-columns: 120px auto 40px;
    }

    .searchStudent span {
        display: block;
        width: 120px;
        padding-right: 5px;
    }

    .searchStudent input {
        font-size: 15px;
    }
}

@media screen and (max-width:500px) {
    .searchStudent {
        grid-template-columns: auto !important;
        width: 90% !important;
    }

    .searchStudent span {
        display: none !important;
    }

    .searchStudent div {
        display: none !important;
    }

    .searchStudent input {
        font-size: 15px;
    }

    .bannerTitle {
        width: 90% !important;
        right: 20px !important;
    }

    .bannerOverlay .bannerTitle h1:nth-child(1) {
        font-family: 'B Sina' !important;
        font-size: 60px !important;
        text-shadow: 2px 5px 3px rgba(24, 24, 24, 0.459);
    }

    .bannerOverlay .bannerTitle h1:nth-child(2) {
        color: var(--orange);
        position: relative;
        top: -20px;
        font-size: 19px !important;
    }

    .bannerOverlay .bannerTitle p {
        width: 90%;
    }
}

@media screen and (max-width:400px) {
    .bannerOverlay .bannerTitle h1:nth-child(1) {
        font-size: 50px !important;
    }

    .bannerOverlay .bannerTitle h1:nth-child(2) {
        top: -15px;
        font-size: 16px !important;
    }

    .bannerOverlay .bannerTitle p {
        width: 90%;
        margin-top: 20px;
        font-size: 13px !important;
    }
}

/* ################# */
/* ################# */
/*     features      */
/* ################# */
/* ################# */
.featuresBox {
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    position: relative;
    left: 0;
    top: 0;
    overflow: hidden !important;
}

.featuresBox h1 {
    margin-top: 20px;
    text-align: center;
}

.features {
    width: 100%;
    min-height: 500px;
    overflow: hidden !important;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

.features .feature {
    width: 250px !important;
    height: 200px !important;
    padding-top: 30px !important;
}

.featuresBox .bubbles1 {
    width: 700px;
    height: 700px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: -500px;
    z-index: -1;
    background-color: rgba(230, 207, 173, 0.13);
}

.featuresBox .bubbles2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: absolute;
    bottom: -5px;
    right: -50px;
    z-index: -2;
    background-color: rgba(230, 207, 173, 0.329);
}

.featuresBox .bubbles3 {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    position: absolute;
    top: 50;
    left: 100px;
    z-index: -1;
    background-color: rgba(173, 230, 225, 0.432);
}

/* @media screen and () {
    
} */
/* ################## */
/* ################## */
/*      about us      */
/* ################## */
/* ################## */
.aboutBox {
    display: flex;
    gap: 10px;
    padding: 20px;
    height: 620px !important;
    overflow: hidden;
}

.aboutBox div:nth-child(1) {
    width: 40%;
    padding: 40px;
}

.aboutBox div:nth-child(2) {
    width: 60%;
    padding: 40px;
}

.aboutBox .imgBox {
    width: 80%;
    height: 600px;
    position: relative;
}

.aboutBox .imgBox img {
    width: 100%;
    height: 100%;
    box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.212);
    position: relative;
    object-fit: cover;
    display: block;
}

.aboutBox .imgBox::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 50px;
    width: 85%;
    height: 520px;
    background-color: rgba(35, 89, 121, 0.658);
    z-index: -1;
    transform: rotate(-7deg);
}

.aboutBox .about {
    padding: 40px;
}

.about a {
    width: 150px;
    height: 45px;
    border-radius: 60px;
    background-color: var(--primary);
    text-decoration: none;
    color: white;
    display: block;
    text-align: center;
    line-height: 45px;
    position: relative;
    right: 20px;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.685);
}

.aboutBox .about h1 {
    border-bottom: 2px solid #1b2422b6;
}

@media screen and (max-width:992px) {
    .aboutBox div:nth-child(1) {
        width: 50%;
        padding: 40px;
    }

    .aboutBox div:nth-child(2) {
        width: 50%;
        padding: 40px;
    }

    .aboutBox .imgBox {
        width: 80%;
        height: 500px;
        position: relative;
    }

    .aboutBox .imgBox::after {
        content: '';
        position: absolute;
        left: 30px;
        top: 50px;
        width: 85%;
        height: 420px;
    }
}

@media screen and (max-width:800px) {
    .aboutBox div:nth-child(1) {
        width: 50%;
        padding: 10px;
        display: none !important;
    }

    .aboutBox div:nth-child(2) {
        width: 100%;
        padding: 10px;
    }

}

/* ################ */
/* ################ */
/*      genus       */
/* ################ */
/* ################ */
.genus-title{
    text-align: center;
}
.allGenus{
    display: block;
    margin: auto;
    width: 200px;
    text-align: left;
    position: relative;
    top: -40px;
    color: black;
}
.allGenus::after{
    content: '';
    position: absolute;
    left: -10px;
    padding: 3px;
    top: -4px;
    width: 135px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.397);
    border-radius: 10px;
}
@media screen and (max-width:768px) {
    .allGenus{
        top: -100px;
        left: 40px;
    }
}
.genus {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.genus #main{
    position: absolute;
    top: 25%;
    left: 55%;
}
.genus #side1,
.genus #side2,
.genus #side3{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.295);
}
#side1{
    height: 250px;
    width: 200px;
    position: absolute;
    transform: translateX(0px) scale(1.5);
    z-index: 99;
    border: 3px solid var(--primary);
    transition: all .5s;
}
#side2{
    height: 250px;
    width: 200px;
    position: absolute;
    transform: translateX(-130px);
    z-index: 9;
    border: 3px solid var(--primary);
    transition: all .5s;
}
#side3{
    height: 250px;
    width: 200px;
    position: absolute;
    transform: translateX(130px);
    z-index: 9;
    border: 3px solid var(--primary);
    transition: all .5s;
}
#side1 img,#side2 img,#side3 img{
    object-fit: cover;
}
#pre{
    height: 30px;
    width: 100px;
    border: 2px solid gray;
    font-family: arial;
    font-size: 15px;
    color:gray;
    text-align: center;
    line-height: 30px;
    position: absolute;
    top:50%;
    left: 20%;
}
#pre:hover{
    cursor: pointer;
}
#nex{
    height: 30px;
    width: 100px;
    border: 2px solid gray;
    font-family: arial;
    font-size: 15px;
    color:gray;
    text-align: center;
    line-height: 30px;
    position: absolute;
    top:50%;
    right: 20%;
}
#nex:hover{
    cursor: pointer;
}
@media screen and (max-width:992px){
    .genus #nex{
        right: 5% !important;
    }
    .genus #pre{
        left: 5% !important;
    }
    #side1,#side2,#side3{
        height: 200px;
        width: 150px;
    }
    .genus #main{
        left: 60%;
    }
}
@media screen and (max-width:768px) {
    .genus #nex{
        right: 31% !important;
        top: 90% !important;
    }
    .genus #pre{
        top: 90% !important;
        left: 30% !important;
    }
}
@media screen and (max-width:600px) {
    .genus #nex{
        right: 21% !important;
        top: 90% !important;
    }
    .genus #pre{
        top: 90% !important;
        left: 20% !important;
    }
    #side1,#side2,#side3{
        height: 200px;
        width: 120px;
        border: none;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.26);
    }
    .genus #main{
        left: 63%;
    }
}
.genus .side-info{
    width: 100%;
    height: 20px;
    background-color: #00806bee;
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden !important;
}
.genus .side-info > *{
    opacity: 0;
    display: block;
    border: 1px solid orange;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    color: white;
    margin-top: 5px;
    font-size: 12px;
}
.genus .side-info > span:first-child{
    background-color: orange;
    color: black;
}
.genus .slide:hover .side-info{
    height: 130px;
}
.genus .slide:hover .side-info > *{
    opacity: 1;
}
.genusBox{
    gap: 120px;
}
.genus-container{
    width: 250px !important;
    height: 250px !important;
    position: relative;
}
.genus-container .imgBox{
    width: 95%;
    height: 95%;
    overflow: hidden;
    border-radius: 50%;
}
.genus-container .imgBox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.genus-container .info{
    position: absolute;
    bottom: 0px;
    z-index: 2;
    display: flex;
}

.genus-container .info .detail{
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    min-height: 50px;
    background-color: #333;
    z-index: -1;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width:600px) {
    .genus-container .info .detail{
        padding: 15px 5px !important;
        bottom: -55px !important;
    }
}
/* ################# */
/* ################# */
/*        news       */
/* ################# */
/* ################# */
.news {
    width: 100%;
    min-height: 300px;
    display: flex;
    padding: 20px 30px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
}
.news img{
    max-width: 100%;
    /* height: 100%; */
    /* object-fit: cover; */
    border-radius: 20px;
}
@media screen and (max-width:600px){
    .news{
        min-height: 300px;
    }
    .news img{
        max-width: 150%;
    }
}

/* ################# */
/* ################# */
/*       footer      */
/* ################# */
/* ################# */
.footer {
    margin-top: 20px;
    width: 100%;
    padding: 50px 30px;

    background-color: var(--primary);
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.footer .info h1 {
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.616);
}

.footer .links h2 {
    font-size: 22px;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.616);
}

.footer .links span {
    color: white;
}

.footer .info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.966);
}

.footer .social {
    margin-top: 20px;
}

.footer .social span {
    font-weight: bold;
}

.footer .social .socialIcons i {
    font-size: 22px;
}

.footer .social span {
    font-size: 14px;
}

.footer .logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}

.footer .logo img {
    border-right: 5px solid var(--primary-dark);
    border-left: 5px solid var(--primary-dark);
    border-radius: 50%;
    max-width: 150px;
}

.footer .info {
    width: 35%;
}

.info h1 {
    color: white;
    font-size: 22px;
}

.footer .links {
    width: 35%;
}

@media screen and (max-width:768px) {
    .footer .logo {
        display: none !important;
    }

    .footer .info {
        width: 50%;
    }

    .footer .links {
        width: 45%;
    }
}

@media screen and (max-width:500px) {
    .footer {
        flex-direction: column;
    }

    .footer .info {
        width: 100%;
    }

    .footer .links {
        width: 100%;
    }
}

.custome-card {
    border-top: 5px solid var(--primary);
    display: flex;
    flex-direction: column;
    background-color: white;
    box-shadow: 0px 3px 10px rgba(128, 128, 128, 0.336);
    padding: 10px;
}

/* ############# */
/* ############# */
/* student detail */
/* ############# */
/* ############# */
.stuDetail {
    padding: 40px;
}
.stuDetail .detailPaper{
    border: 1px solid rgba(37, 37, 37, 0.171);
    border-radius: 50px;
    width: 800px;
    min-height: 50vh;
    margin-top: 40px;
}
.stuDetail .profile {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    top: -70px;
    outline-offset: 3px;
    outline: 3px solid var(--primary);
} 
.stuDetail img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.stuDetail table,
.stuDetail table th,
.stuDetail table td{
    border-collapse: collapse;
}
.stuDetail table th,
.stuDetail table td{
    min-width: 75px !important;
}
.stuDetail .scores{
    width: 100% !important;
    overflow: hidden;
    overflow-x: auto;
}
.stuDetail table{
    margin: auto;
    text-align: center;
    width: 90% !important;
}
.stuDetail table tr:nth-child(odd){
    background-color: rgba(211, 211, 211, 0.438);
}
@media screen and (max-width:830px) {
    .stuDetail .detailPaper{
        width: 100% !important;
    }
}
/* prinnt */
.print{
    position: relative;
    right: 20px !important;
    cursor: pointer;
    top: 10px;
}
.socre-table table th,
.socre-table table td{
    min-width: 70px !important;
}
.socre-table table tr:nth-child(odd){
    background-color: lightgray;
}
.sign{
    padding: 0px 135px !important;
}


/* print all */
.generalExamTable{
    width: 80% !important;
}
.generalExam table{
    width: 100% !important;
    margin: auto;
}
.generalExam table th,
.generalExam table td,
.generalExam table {
    border: 1px solid rgba(0, 0, 0, 0.507);
    border-collapse: collapse;
    text-align: center;
}



/* featureDetail */
.featureDetail,
.about {
    margin-top: 10px;
    background-color: white;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: url('../images/logo/cover.png') no-repeat center center /cover;
}

/* about */
.about p {
    width: 50% !important;
}

@media screen and (max-width:768px) {
    .about p {
        width: 75% !important;
    }
}


@media screen and (max-width:500px) {
    .about p {
        width: 100% !important;
    }
}



/* ############ */
/* ############ */
/* ############ */
/*     print    */
/* ############ */
/* ############ */
/* ############ */
@media only screen {
    .printBody{
        padding: 10px;
    }
}
.print-header{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.print-header .text span{
    display: block;
    text-align: center;
}
.print-header .logo img{
    max-width: 130px;
}
.print-body table,.print-body th,.print-body td{
    border: 1px solid rgba(37, 37, 37, 0.795);
    border-collapse: collapse;
}
.print-body table{
    margin: auto;
    width: 80%;
    text-align: center;
}
.print-body table tr:nth-child(even){
    background-color: rgba(128, 128, 128, 0.171) !important;
}
.tableCaption{
    text-align: right !important;
}
.socre-table table,.socre-table th,.socre-table td{
    border: 1px solid rgba(37, 37, 37, 0.795);
    border-collapse: collapse;
}
.socre-table table{
    margin: 20px auto;
    width: 80%;
    text-align: center;
}
