@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');
@import url("https://fonts.googleapis.com/css?family='Belinda New':100,100i,300,300i,400,400i,500,500i,700,700i,900,900i");

html {
    font-size: 16px;
/*    font-size: calc(1em + 0.5vw); */
}

:root {
    --main-width: 1280px;
    --main-side-margin: 1rem;
    --main-side-padding: 1rem;
}

body {
    font-size: 1.25rem;
    scroll-behavior: smooth;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #69699b;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

ul[class], ol[class] {
    list-style: none;
}

input, button, textarea, select {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    background: transparent;
    cursor: pointer;
}

.main_container {
    width: 100%;
    max-width: var(--main-width);
    padding: 0 var(--main-side-padding);
    margin: 0 auto;
}

/* Main navigation bar */
.header_navigation {
/*    position: relative; */
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.header_wrapper{
    font-family: 'Roboto', sans-serif;
    background-color: #246598; /* old dark blue #1f2851 */
    box-shadow: rgba(149, 149, 149, 0.15) 0 0.1875rem 0.625rem;
}

.main_navigation {
    width: 100%;
    max-width: var(--main-width);
    padding: 0 var(--main-side-padding);
    margin: 0 auto;
}

.navigation_bar {
    padding: var(--main-side-padding);
    height: 5.9rem;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.navigation_bar a:hover, .dropdown:hover .dropdown:focus-within {
    background-color: #81c2ea; /* old hover blue #009dff */
}

.navigation_logo {
    display: flex;
    z-index: 110;
}

.navigation_menu {
    display: flex;
    align-items: center;
}

.navigation_list {
    padding: 0;
    order: 0;

    display: flex;
    align-items: center;
    flex-direction: row;
    column-gap: 1rem;
}

.navigation_item {
    width: 100%;
}

.navigation_link {
    display: flex;
    align-items: center;
    column-gap: 0.7rem;

    font-size: 1.15rem;
    cursor: pointer;
    position: relative;
    padding: 0.35rem 0.75rem;
    border-radius: 0.25rem; /* 4px */
    color: #ffffff;
    width: 100%;
}

.navigation_link:hover {
  background-color: #81c2ea;
}

.nav_link_icon {
    display: flex;
    padding: 0.5rem;
}

.nav_link_title {
    padding-bottom: 0.1875rem;
}

.nav_link_desc {
    color: #9595bf; /* lavender */
    font-size: 0.8175rem;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.5em;
    max-height: 3em;
}

.dropdown_list .navigation_link:hover .navigation_link_icon {
    background-color: #ffffff;
    opacity: 0.9;
}

.navigation_signin {
    display: flex;
    align-items: center;

    cursor: pointer;
    position: relative;
    white-space: nowrap;
    background-color: #98cd04; /* lime green */
    padding: 0.35rem 0.75rem;
    border-radius: 0.25rem; /* 4px; */
    color: #FFFFFF;
}

.navigation_signin:hover {
    background-color: #80b404; /* lime green */
}

/* Custom toggle(checkbox) for the mobile version */
/*
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    display: none;
    opacity: 0;
    pointer-events: none;
}

#navigation_toggle:checked ~ .navigation_extras label,
#navigation_toggle:not(:checked) ~ .navigation_extras label {
    display: none;
}
*/
.navigation_extras {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    color: #69699b; /* purple */
    z-index: 110;
    order: 1;
}

/* Dropdown */
.dropdown_container {
    position: absolute;
    background-color: #ffffff;
    top: calc(100% + .1rem);
    right: calc(50% - 35rem);
    border: 0.0625rem solid #000000; /* 1px */
    border-radius: 0.3125rem; /* 5px; */
    box-shadow: rgba(149, 149, 149, 0.15) 0 0.1875rem 0.625rem;
    display: none;
}

.dropdown_list {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    max-width: 18.75rem;
    min-width: 12.5rem;
    overflow: hidden;
    width: 100%;
    row-gap: 1rem;
    padding: 0.5rem;
}

.dropdown_list .navigation_link {
    padding: 0.60rem 0.75rem;
}

.dropdown_list .navigation_link:hover {
  background-color: #81c2ea;
}

.navigation_divider {
    display: flex;
    width: 100%;
    height: 0.0625rem; /* 1px; */
    margin: 0.125rem auto;
    background: #e2e2f2;
}

.navigation_title {
    color: #767686;
    padding-left: 0.75rem;
    font-size: 0.75rem; /* 12px; */
}

.dropdown_input:not(:checked) ~ .dropdown_container {
    display: none;
}

.dropdown_input:checked ~ .dropdown_container {
    display: flex;
    flex-direction: row;
    column-gap: 1rem;
}

.dropdown_input:checked ~ .dropdown_container:before,
.dropdown_input:not(:checked) ~ .dropdown_container:before {
    position: fixed;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    z-index: -1;
    cursor: auto;
    pointer-events: none;
}

.dropdown_input:checked ~ .dropdown_container:before {
    pointer-events: auto;
}

* {
  box-sizing: border-box;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 1rem;
  border: none;
  outline: none;
  color: #ffffff;
  background-color: inherit;
  font: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

.dropbtn:after {
  padding-top:0.375rem;
  color:white;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff; /* #f9f9f9; */
  width: 70%; /*  width: 100%; */
  left: 0;
  z-index: 1;
  border-radius: 0.5rem;
  border: 0.0625rem solid #000000;
  box-shadow: 0 0.5rem 1rem 0 rgba(0,0,0,0.2);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
  margin: 0 15% 0 15%;
}

/* Three equal columns that float next to each other */
.column {
  float: left;
  width: 33.333%;
  padding: 0.625rem; /* 10px; */
  background-color: #ffffff;
  height: 25rem; /* 400px; */
  border-radius: 0.5rem; /* 8px; */
}

/* Style links inside the columns */
.column a {
  float: none;
  color: #ffffff;
  padding: 1rem; /* 16px; */
  text-decoration: none;
  display: block;
  text-align: left;
  border-radius: 0.5rem; /* 8px; */
}

/* Add a background color on hover */
.column a:hover {
  background-color: #81c2ea;
}

.navlink .dropbtn {
    display: flex;
    align-items: center;
    column-gap: 0.7rem;

    cursor: pointer;
    position: relative;
    white-space: nowrap;
    padding: 0.35rem 0.75rem;
    border-radius: 0.25rem; /* 4px; */
    color: #ffffff;
    width: 100%;
}

#dd:hover .navlink:hover {
  border-radius: 0.25rem; /* 4px; */
  background-color: #81c2ea; /* #009dff; */
}
/* End Dropdown */

.d-none{display:none!important}
#translation-links{padding:0;margin:0}
#translation-links li{position:relative;margin:0;list-style:none;line-height: 1.5}
#translation-links ul{padding:0.625rem 0;margin:0;position:absolute;top:100%;right:0;width:18.75rem;background:#fff;display:none;height:25rem;overflow-y:scroll;z-index: 20;}
#translation-links ul li{margin:0}
#translation-links ul li a{display:block;text-decoration:none;padding:.75rem 1.5rem;color:#0276be}
#translation-links ul li a:hover{background:var(--lightgray);color:var(--brandcolor)}
#translate-button{padding:0; border:0; color:#fff; font-weight:400; gap:0.9375rem; height:3rem; font-size:0.875rem; background:#009DFF; width:3.75rem; border-radius:0.0625rem; display:flex; align-items:center; justify-content:center;}
#translate-button{background-color:#ffffff}
#translate-button:visited{background-color:#ffffff}
#translate-button:hover{background-color:#81c2ea}
#search-toggle-desktop:hover img{filter: brightness(0) saturate(100%) invert(100%) sepia(55%) saturate(0%) hue-rotate(232deg) brightness(106%) contrast(106%);}

iframe.goog-te-banner-frame{ display: none !important;}
body {position: static !important; top:0px !important;}
.goog-logo-link {display:none !important;} 
.goog-te-gadget{color: transparent !important;}
.goog-te-gadget-icon{background:none !important;}
.goog-te-gadget-simple{background-color:transparent !important;border-left: none !important;border-top: none !important;border-bottom: none !important;border-right: none !important;padding-top: 0px !important;padding-bottom: 0px !important;}
.goog-te-gadget-simple .goog-te-menu-value {color: #f35225 !important;}
.goog-te-gadget-simple .goog-te-menu-value span {color: #f35225 !important; border-left: 0px !important;}
.goog-te-gadget-simple .goog-te-menu-value img {display:none !important;}

[lang="en"] #translate-reset{display: none}
[data-lang="English"]{background:#f9f9f9}
div.skiptranslate{display:none !important}

#main{position:relative; padding:1rem 0 2rem;}

.rz-btns-container{display: none;}
.rz-btns-container{line-height:1.5!important; font-size:1rem; opacity:0; background:#fff; padding:0.25rem; box-shadow:0 0.125rem 0.625rem rgba(21, 0, 56, 0.08); border:0.0625rem solid rgba(21, 0, 56,.1); transform:translateY(10px); transition:all .2s; position:absolute; top:0; right:0; z-index:9; white-space:nowrap}
.rz-btns-stacked{padding:0.375rem 0.375rem 0!important}

.left-top{top:0!important;right:auto!important;left:0!important;z-index:9;position:absolute}
.left-top .rz-btns-container{position:relative!important}
.center-top{top:0!important;right:50%!important;transform:translate(50%, 0)!important;z-index:9;position:absolute}
.center-top .rz-btns-container{position:relative!important}
.right-center{top:50%!important;right:0!important;transform:translate(0, -50%)!important;z-index:9;position:absolute}
.right-center .rz-btns-container{position:relative!important}
.right-bottom{top:auto!important;right:0!important;bottom:0!important;z-index:9;position:absolute}
.right-bottom .rz-btns-container{position:relative!important}
.center-bottom{top:auto!important;right:50%!important;bottom:0!important;transform:translateX(50%)!important;z-index:9;position:absolute}
.center-bottom .rz-btns-container{position:relative!important}
.center-center{top:50%!important;right:50%!important;transform:translate(50%, -50%)!important;z-index:9;position:absolute}
.center-center .rz-btns-container{position:relative!important}
.left-bottom{top:auto!important;right:auto!important;left:0!important;bottom:0;z-index:9;position:absolute}
.left-bottom .rz-btns-container{position:relative!important}
.left-center{top:50%!important;right:auto!important;left:0!important;transform:translate(0, -50%)!important;z-index:9;position:absolute}
.left-center .rz-btns-container{position:relative!important}

.rz-btns-container a{display:inline-block!important}
.rzBtn{text-transform:capitalize; cursor:pointer; text-decoration:none; position:relative; line-height:1.5!important; display:inline-block!important; letter-spacing:0!important; padding:0.4375rem 0.875rem; background:#fff!important; color:#000!important; font-weight:bold!important; font-size:1rem; white-space:nowrap; text-align:center; border:0.0625rem solid #e6e6e6; transition:all .2s; font-family:Roboto,sans-serif}
.rz-btns-stacked a,.rz-btns-stacked .rzBtn{display:block!important; margin-bottom:0.375rem; text-decoration:none}
.rzBtn:hover{background:#eee!important;border-color:#ccc;color:#000!important;text-decoration:none}
.rzBtn-sm{font-size:0.875rem!important; padding:0.3125rem 0.625rem!important}
.rzBtn-xs{font-size:0.75rem!important;padding:0.1875rem 0.375rem!important}

.container{display:table; width:72.375rem; max-width:72.375rem;}
.center-top{top:0!important;right:50%!important;transform:translate(50%, 0)!important;z-index:9;position:absolute}
.center-top .rz-btns-container{position:relative!important}

.tr{display:table-row;}
.td{display:table-cell;}

#depts{position: relative;padding: 4.5rem 0;}
.depts-in{display:grid; grid-template-columns:repeat(2, 1fr); gap:1.5rem; row-gap:3rem;}
.depts-in{display:flex; flex-direction:column;}

.dept-card{display:flex; flex-direction:row-reverse; border-radius:4rem 0; align-items:center; gap:1.5rem; background:linear-gradient(0deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.30) 100%), linear-gradient(90deg, #FFB200 0%, #F04D0F 100%); text-decoration:none;}
.dept-card:hover{text-decoration: none;}

#h-jm-welcome{font-family: Roboto, sans-serif; background: linear-gradient(to right, #75b5d9, #3d85c6);} /* #9fc5e8, #3d85c6 */

.dept-card1{background: linear-gradient(0deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.30) 100%), linear-gradient(90deg, #befbfe 0%, #afffc5 100%);}
.dept-card2{background: linear-gradient(0deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.30) 100%), linear-gradient(90deg, #dfb9f6 0%, #cf97ed 100%);}
.dept-card3{background: linear-gradient(0deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.30) 100%), linear-gradient(90deg, #cf97ed 0%, #f191c5 100%);}
.dept-card4{background: linear-gradient(0deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.30) 100%), linear-gradient(90deg, #fdba6b 0%, #f68470 100%);}
.dept-card5{background: linear-gradient(0deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.30) 100%), linear-gradient(90deg, #86bae0 0%, #dfb9f6 100%);}
.dept-card6{background: linear-gradient(0deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.30) 100%), linear-gradient(90deg, #afffc5 0%, #fcf68b 100%);}
.dept-card7{background: linear-gradient(0deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.30) 100%), linear-gradient(90deg, #fcf68b 0%, #fdba6b 100%);}
.dept-card8{background: linear-gradient(0deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.30) 100%), linear-gradient(90deg, #f191c5 0%, #fdba6b 100%);}

.dept-info{display:flex; flex-direction:column; align-items:start; gap:0.90625rem; padding:0.625rem 1.25rem 0.625rem 0;}
.dept-title{display:block; color:#111522; font-size:2.25rem; line-height:1.2; font-weight:600;}
.dept-desc{color:#111522; font-size:1.125rem; line-height:1.35; font-weight:400; text-align:left; margin: 0;}
.dept-link{color:#111522 !important; font-size:0.875rem; font-weight:700; display:block; text-decoration:none;}
.dept-img{width:16.25rem; max-width:100%; height:20.5rem; margin: -3.625rem auto 0;flex-shrink:0;}

.dept-card{display:block; padding:2rem 1.5rem 0;}
.dept-info{padding: 0;}
.dept-img{margin:1.875 auto 0;}

/** modal social **/
.modal {z-index: 100000}
.modal .modal-dialog{transition:transform cubic-bezier(0.86,0,0.07,1);transform:scale(.98)!important;opacity:1!important}
.modal.show .modal-dialog{transition:transform .3s cubic-bezier(0.86,0,0.07,1);transform:translateY(0%)!important;}
.modal-content {border-radius: 0.625rem; overflow:hidden; border:0;}
.modal-header {background:#d2d2d2; border-radius:0.625rem 0.625rem 0 0 ; font-size:1.125rem; line-height:1.4;}
.share-btns{display:flex;gap:0.5rem; justify-content:center; z-index:500}
.share-btns a {display:flex; text-decoration:none; border-radius:100%; height:2.75rem; width:2.75rem; z-index:500; outline-offset:0; outline:0.125rem solid transparent; transition:all .3s;}
.share-btns svg {width:1rem; height:1rem; margin:auto; fill:#fff; z-index:500}
.btn-linkedin {background: #0077b5; z-index:500}
.btn-linkedin:hover {border-color:#0077b5; outline:0.125rem solid #0077b5; outline-offset:0.125rem; z-index:500}
.btn-facebook {background: #3b5998; z-index:500}
.btn-facebook:hover {border-color:#3b5998; outline:0.125rem solid #3b5998; outline-offset:0.125rem; z-index:500}
.btn-instagram {background: #000000; z-index:500}
.btn-instagram:hover {border-color:#000000; outline:0.125rem solid #000000; outline-offset:0.125rem; z-index:500}
.btn-youtube {background: #ff0000; z-index:500}
.btn-youtube:hover {border-color:#ff0000; outline:0.125rem solid #ff0000; outline-offset:0.125rem; z-index:500}
.modal .btn{font-size:1rem!important; font-weight:bold!important; padding:.6rem 1.2rem!important; border:0!important; line-height:1.4!important; text-transform:none!important; letter-spacing:0!important; color:#000!important; border:0!important;}
.modal .btn.p-0{padding:0!important}
.modal .btn-inverse:focus{box-shadow:0 0 0 .2rem rgba(0,0,0,.25)}
.floating-share-btn {position:fixed; z-index:99999; top:calc(50% - 2rem); right:0; border-radius:0; border:0; background:#fff; width:4rem; height:4rem; box-shadow:0 0.25rem 1.5rem rgba(0,0,0,0.15),0 0.125rem 0.375rem rgba(0,0,0,0.05);text-align:center; border-radius:0.375 0 0 0.375rem}

/* news-section */
#homepage #news{position:relative; padding:4.4375rem 0 4.3125rem; background:linear-gradient(110deg, rgba(255, 178, 0, 0.10) 0%, rgba(102, 62, 242, 0.10) 100%), #fff;}
#homepage #news .section-header{display:flex; align-items:center; justify-content:center; margin-bottom:1.25rem;}
#homepage #news .tiny-carousel{display:flex; align-items:stretch; gap:1.5rem;}
#homepage #news .tiny-item{flex:1;}
#homepage .news{flex:1; position:relative; overflow:hidden; border-radius:0.5rem; text-decoration:none; display:flex; flex-direction:column; align-items:stretch; height:100%; transition:all .4s;}
#homepage #news-list{margin: 0 0 4.0625rem;}
#homepage .news-banner{min-height:23.25rem; opacity:1; position:relative; border-radius:4rem 0;}
#homepage .news-banner::before{content:""; position:absolute; inset:0; border-radius:4rem 0; background:linear-gradient(90deg, #86bae0 0%, #86bae0 100%); opacity:0.35; transition:all .4s;}
#homepage .news-info{flex:1; padding:2rem 0.0625rem 0.4375rem; display:flex; flex-direction:column; gap:1.5625rem; transition:all .4s;}
#homepage .news-date{position:absolute; bottom:0; left:0; padding:0.4375rem 1rem; border-radius:0.3125rem; display:flex; color:#fff; font-size:0.75rem; font-weight:400; background:rgba(31, 40, 81, 0.70); backdrop-filter:blur(6px); border-radius:0 0.5rem 0 0;}
#homepage .news-date span{display:block; color:#2E2309; font-size:2rem; font-weight:700; line-height:1.35; font-family:Roboto, sans-serif;}
#homepage 
#homepage .news-title{font-size:1.5625rem; font-weight:600; color:#032F46; text-transform:capitalize; display:-webkit-box; -webkit-line-clamp:1; -webkit-box-orient:vertical; overflow:hidden; margin:0 0 1.5625rem 0;}
#homepage .news-details{font-family:Roboto, sans-serif; font-size:1rem; font-weight:400; color:#3D465C; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;}
#homepage .news-link{font-weight:400; text-transform:capitalize; text-decoration:none; margin-top:auto; display:inline-block; width:fit-content; text-decoration:none; color:#6D7892; position:relative; font-size:0.75rem;}
#homepage .news-link img{width: 20px;}
#homepage .news:hover .news-banner::before{opacity: 0;}
#homepage .news:hover{text-decoration: none;}

#homepage #news .section-link{display: block !important;width: fit-content;margin:0 auto;}

@media only screen and (main-width: 320px) {
 font-size: 0.9375rem; /* 15px xxs */
}

@media only screen and (min-width: 480px) {
 font-size: 1rem; /* 16px xs */
}

@media only screen and (min-width: 576px) {
 font-size: 1.0625rem; /* 17px sm or 600px */
}

@media only screen and (min-width: 768px) {
 font-size: 1.125rem; /* 18px md */
}

@media only screen and (min-width: 992px) {
 font-size: 1.1875rem; /* 19px lg */
}

@media only screen and (min-width: 1025px) {
 font-size: 1.25rem; /* 20px xl or 1200px */
}

@media only screen and (min-width: 1312px) {
 font-size: 1.3125rem; /* 21px xxl or 1400px */
}

/*
@media screen and (min-width: 900px) {
    font-size: calc(1em + 0.5vw);

    .dropdown_input:checked ~ .dropdown_container {
        display: flex;
        flex-direction: column;
    }

    #navigation_toggle:checked ~ .navigation_extras label,
    #navigation_toggle:not(:checked) ~ .navigation_extras label {
        display: flex;
    }

    #navigation_toggle:not(:checked) ~ .navigation_extras label .navigation_close,
    #navigation_toggle:checked ~ .navigation_extras label .navigation_open {
        display: none;
    }

    .navigation_container .navigation_list {
        position: fixed;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        top: -100%;
        left: 0;
        padding: 4rem 1rem 1rem 1rem;
        row-gap: 1rem;
        transition: .3s;
        overflow-y: scroll;
        max-height: 100%;
        z-index: -1;
        background-color: #ffffff;
        box-shadow: rgba(149, 149, 149, 0.15) 0 0.1875rem 0.625rem;
    }

    .navigation_list .navigation_link {
        padding: 0.60rem 1rem;
    }

    #navigation_toggle:checked ~ .navigation_container .navigation_list {
        top: 0;
    }

    #navigation_toggle:not(:checked) ~ .navigation_extras label .navigation_open,
    #navigation_toggle:checked ~ .navigation_extras label .navigation_close {
        display: flex;
        cursor: pointer;
    }

    .dropdown_container {
        position: relative;
        box-shadow: none;
        top: unset;
    }

    .dropdown_list {
        min-width: 100%;
    }

    .footer_bar {
        flex-direction: column;
        row-gap: 1.5rem;
        align-items: center;
    }

    .footer_socials {
        order: -1;
    }
}

@media only screen and (min-width: 768px) {
    font-size: 1rem;
}

@media screen and (max-width: 767px) {
    font-size: 0.6rem;

    .column {
      width: 100%;
      height: auto;
    }
}
*/