/******** import Warnock font ********/
@font-face {
    font-family: 'Arial';
    src: url('../webfonts/iCiel Medium.ttf') format('truetype'),
        /* Safari, Android, iOS */
}

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');

/******************************/
/*     01. General Styles     */
/******************************/
body,
html {
    width: 100%;
    height: 100%;
}

body,
p {
    color: #787976;
    font-family: "Arial", sans-serif;
    font-weight: 200;
    font-style: normal;
}

h1 {
    color: #23408f;
    font: 700 2.5rem/3rem "Arial", sans-serif;
}

h2 {
    color: #23408f;
    font: 700 1.75rem/2.125rem "Arial", sans-serif;
}

h3 {
    color: #23408f;
    font: 700 1em "Arial", sans-serif;
}

h4 {
    color: #23408f;
    font: 700 1.25rem/1.625rem "Arial", sans-serif;
}

h5 {
    color: #23408f;
    font: 700 1.125rem/1.5rem "Arial", sans-serif;
}

h6 {
    color: #23408f;
    font: 700 1rem/1.375rem "Arial", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.container ul li {
    padding-top: 8px;
    padding-bottom: 8px;
}

.container strong {
    font-weight: bold;
}

.container a {
    color: #007bff;
}

.toc ul li {
    font-weight: bold;
}

/* .toc ul li ul li {
    color: #23408f;
}

.toc ul li ul li:hover {
    cursor: pointer;
} */


/*************************/
/*     11. Copyright     */
/*************************/
.copyright {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    background-color: #23408f;
    text-align: center;
    vertical-align: bottom;
    position: absolute;
    width: 100%;
    left: 0;
}

.copyright p,
.copyright a {
    color: #dfe5ec;
    text-decoration: none;
    vertical-align: middle;
    margin-bottom: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.5rem;
}

.copyrighttext {
    margin-top: 1rem;
}

.hide-on-mobile {
    display: none;
}
.copyright .p-small {
    opacity: 0.8;
    font-weight: 200;
}
.copyrighttext {
    margin-top: 1rem;
}
/********************************/
/*     box title     */
/********************************/
.box-title {
    display: flex;
    align-items: center;
}

.box-title h2 {
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 20px;
}

.box-title label {
    float: left;
    color: #fff;
    background: #f5b700;
    border-radius: 4px;
    padding: 5px 12px;
    margin-right: 16px;
    font-size: 16px;
    line-height: 24px;
    vertical-align: middle;
}

label {
    font-weight: 500;
}

/********************************/
/*     region dropdown menu     */
/********************************/
#region-dropdown {
    z-index: 999;
    position: absolute;
    height: 53px;
    line-height: 16px;
    background-color: rgba(35, 64, 143, 0.95);
    vertical-align: middle;
}

#region-dropdown ul {
    list-style-type: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#region-dropdown li {
    float: left;
}

#region-dropdown li a,
.dropdown-btn {
    width: 100%;
    display: inline-block;
    color: #dfe5ec;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    text-align: center;
    padding: 15px 40px;
    text-decoration: none;
}

#region-dropdown .arrow {
    border: solid #dfe5ec;
    border-width: 0 1.5px 1.5px 0;
    display: inline-block;
    padding: 3px;
    margin: 3px;
}

#region-dropdown .down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

#region-dropdown li.dropdown {
    display: inline-block;
}

#region-dropdown .dropdown-content {
    display: none;
    min-width: 50vw;
    top: 100px;
    left: 0;
    background-color: #f9f9f9;
    min-width: 166px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

#region-dropdown .dropdown-content a {
    width: 100%;
    color: #23408f;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-bottom: 0.5px #CCCCCC solid;
}

#region-dropdown .dropdown-content a:hover {
    background-color: #EEEEEE;
}

#region-dropdown .dropdown:hover .dropdown-content {
    display: block;
}

/* mobile version */
@media only screen and (max-width: 500px) {

    /*region dropdown menu*/
    #region-dropdown {
        width: 260px;
    }

    #region-dropdown li a,
    .dropdown-btn {
        width: 150px;
        font-size: 14px;
        padding: 15px 0;
    }
}

/*********************/
/*    03. Header     */
/*********************/
.header {
    margin: 0 auto;
}

.header h1 {
    padding-top: 5rem;
    text-align: center;
    font-size: 26px;
}

/* mobile version */
@media only screen and (max-width: 500px) {

    .header h1 {
        font-size: 18px;
    }

    .header h2 {
        font-size: 18px;
    }
}

/*********************/
/*    04. Content     */
/*********************/
img {
    width: 100%;
    max-width: 800px;
}

/* mobile version */
@media only screen and (max-width: 500px) {
    p {
        text-align: justify;
    }
}

@media (max-width: 992px) and (min-width: 501px) {
    .header h1 {
        font-size: 24px;
    }

    .header h2 {
        font-size: 18px;
    }

    p {
        text-align: justify;
    }
}