/*-------------------------*/
/* $Catalog 
---------------------------*/
/** 
 * Color
 * Button
 * Navigation bar
 * Body
 * Footer
 * Table Styles
**/

*{
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
    max-height: fit-content;
}


body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    color:#333333;
    word-wrap: break-word;
}


p {
    line-height: 1rem;
    letter-spacing: 0;
}

a {
    text-decoration: none;
}

/*-------------------------*/
/* $Color 
---------------------------*/

.bg-color--primary {
    background-color: #3e83a7;
}

.bg-color--secondary {
    background-color: #ffc107;
}

.bg-color--tertiary{
	background-color:#0c425e;
}

.bg-color--quaternary{
	background-color: #CC9900;
}

.bg-color--grey{
	background-color: #999999;
}

.color--primary {
    color: #3e83a7;
}

.color--secondary {
    color: #ffc107;
}

.color--tertiary{
	color:#0c425e;
}

.color--quaternary{
	color: #CC9900;
}

.color--grey{
	color: #999999;
}

/*-------------------------*/
/* $Button 
---------------------------*/
.btn{
    white-space: nowrap;
    transition: background-color 0.3s;
}


.btn.btn--primary{
    color:#ffffff;
	background-color: #3e83a7;
    top: 0px;
    left: 0px;
}
.btn.btn--primary.btn--hover,
.btn.btn--primary:hover{
    color:#ffffff;
	background-color: #0c425e;
}


.btn.btn--primary-outline{
    color:#ffffff;
	background-color: #3e83a7;
    border:1px solid #ffffff;

}
.btn.btn--primary-outline.btn--hover,
.btn.btn--primary-outline:hover{
    color:#ffffff;
	background-color: #0c425e;
}


.btn.btn--secondary{
    color:#0c425e;
	background-color:#ffc107;
    border:1px solid #ffc107;
}
.btn.btn--secondary.btn--hover,
.btn.btn--secondary:hover{
    color:#ffffff;
	background-color: #3e83a7;
    border:1px solid #ffc107;
}

.btn.btn--tertiary{
    color:#ffffff;
	background-color:#0c425e;
}
.btn.btn--tertiary.btn--hover,
.btn.btn--tertiary:hover{
    color:#ffffff;
	background-color: #34A0A4;
}

.btn.btn--quaternary{
    color:#ffffff;
	background-color: #CC9900;
}
.btn.btn--quaternary.btn--hover,
.btn.btn--quaternary:hover{
    color:#ffffff;
	background-color: #996600;
}

.btn.btn--grey{
    color:#ffffff;
	background-color: #999999;
}
.btn.btn--grey.btn--hover,
.btn.btn--grey:hover{
    color:#ffffff;
	background-color: #333333;
}

.btn.btn--orange-delight{
    color:#0c425e;
	background-color:#ffc107;
}
.btn.btn--orange-delight.btn--hover,
.btn.btn--orange-delight:hover{
    color:#ffffff;
	background-color: #CC9900;
}



/*-------------------------*/
/* $Navigation bar
---------------------------*/
/* top area */
.top-area{
    position: relative;
    padding: 0.5rem;
    text-align: right;
    color: #333333;
}

.top-area a{
    color: #333333;
}

.top-area a:hover,
.top-area a:active{
    color: #333333;
    background-color: #e6e6e6;
    padding: 4px;
    border-radius: 4px;
}


/* logo bar*/

.logo-bar{
    padding: 0.5rem;
    display: block;
}

.ntulogo{
    width: 80px;
}

.titleeng{
    position: relative;
    font-size: smaller;
    word-spacing: 0.1rem;
    text-indent: 2px;
}


/* title */
.Titleborder{
    position: relative;
    border-left:8px solid #ffc107;
    padding-left: 8px;
}


@media only screen and (max-width: 991.98px) and (max-width: 760px),
  (min-device-width: 760px) {
    .ntulogo {
        width: 80px;
        padding-bottom: 8px;
        }

    .brand-768, .ntulogo {
        justify-self: center;
        text-align: center;
    }
    .top-menu{
        position: inline-block;
        justify-content: center;
    }
}

@media only screen and (min-width: 992px) {
    .ntulogo {
    position: relative;
    float: left;
    }

    .brand-title{
        padding-top: 12px;
    }
}


/* go TOP */

.goTOP a{
    color: #ffffff;
}

.goTOP {
    position: fixed;
    z-index: 1;
    bottom: 10px;
    right: 10px;
    opacity: 0.8;
  }



/* dropdown-item*/


.dropdown-item.active,
.dropdown-item:focus,
.dropdown-item:hover{
    --bs-dropdown-link-active-bg: #999999;
}

/*-------------------------*/
/* $Body
---------------------------*/

.card-footer a{
    color:#3e83a7;
}
.card-footer a:hover{
    color:#ffffff;
    background-color: #3e83a7;
    padding: 4px;
}

#NTUinternship a{
    color:#0c425e;
}
#NTUinternship a:hover{
    color:#ffffff;
    background-color: #0c425e;
    padding: 4px;
}
