/*
 * eduPASS CSS styles
 */
body {
	color: #000000;
	background-color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 28px;
}
h1, h2, h3, h4, h5 {
    font-family: 'Exo 2', sans-serif;
	color: #001024;
	font-weight: 700;
}
h1 {
	font-size: 62px;
	margin-bottom: 1em;
}
h2 {
	font-size: 54px;
	margin-bottom: 1em;
}
h3 {
	font-size: 42px;
	margin-bottom: 0.25em;
}
h4 {
	font-size: 32px;
}
h5 {
	font-size: 24px;
}
b, strong {
    font-weight: 700;
}
li {
	padding-bottom: 0.25em;
}
ul {
	padding-left: 1em;
	margin: 0;
}
a {
	color: #a43716;
	transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
}
a:hover {
	color: #e2b5a4;
	text-decoration: none;
}
a:focus  {
	outline: 0;
}
table {
  border-spacing: 1;
  border-collapse: collapse;
  background: white;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
table * {
  position: relative;
}
table td, table th, table tr {
  padding-left: 8px;
  border: 1px solid #ececec;
  
}
table thead tr {
  height: 60px;
  background: #36304a;
}
table tbody tr {
  height: 50px;
}
table td, table th {
  text-align: left;
}
tbody tr:nth-child(even) {
	background: rgb(150,150,150,0.1);
}
tbody tr:hover {
  background: rgb(40,40,40,0.1);
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }
input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: none;
}
.logo {
	margin-right: 2em;
}
.cursor-pointer{
  cursor: pointer;
}
.logo img {
	max-width: 276px;
	width: 100%;
}
.footer-logo img {
	max-width: 180px;
	width: 100%;
}
.navbar {
	height: 130px;
	padding: 0 3em;
	background: #fff;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.10);
	-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.10);
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.10);
}
.navbar-light .navbar-nav .nav-link {
    color: #082952;
	font-family: 'Exo 2', sans-serif;
	font-size: 14px;
	white-space: nowrap;
	transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .current-menu-item .nav-link,
.navbar-light .navbar-nav .current-menu-parent .nav-link,
.navbar-light .navbar-nav .current-post-ancestor .nav-link{
    color: #bb5333;
}
.navbar-light .navbar-toggler {
	border-color: transparent;
	outline: none;
}
.navbar-light .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(8, 41, 82, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-toggler-icon:hover {
	background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(187, 83, 51, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-nav {
	font-size: 16px;
	font-weight: 700;
	line-height: 18px;
}
.navbar-nav .nav-item {
	height: 130px;
	padding: 0;
	text-align: center;
}
.navbar-nav .nav-item .nav-link::after {
	content: ' ';
	display: block;
	width: 70px;
	margin: 5px auto 0 auto;
	border: 1px solid #bb5333;
	transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
    opacity: 0;
}
.navbar-nav .nav-item .nav-link:hover::after {
	content: ' ';
	display: block;
	width: 70px;
	margin: 10px auto 0 auto;
	border: 1px solid #bb5333;
	opacity: 1;
}
.navbar-nav .nav-link {
	padding: 45px 15px 25px 15px;
	margin-top: 30px;
}
.top-item{
	background-repeat: no-repeat; 
	background-position: top 30px center;
	background-size: 30px;
	transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
}
.top-item:hover{
	background-repeat: no-repeat; 
	background-position: top 30px center;
}
.navbar-nav li:hover>.dropdown-menu {
  display: block;
}
.menu-search-wrapper {
	display:flex;
	align-items: center;
	flex-direction: row-reverse;
}
.dropdown-menu {
	margin: 0;
	padding: 1em 0;
	left: 50%;
	right: auto;
	transform: translate(-50%, 0);
	border: transparent;
	border-radius: 0;
	background: rgba(187, 83, 51, 1);
}
.dropdown-menu:before {
	content: '';
	width: 0px;
	height: 0px;
	border-left: 13px solid transparent;
	border-right: 13px solid transparent;
	border-bottom: 9px solid #BB5333;
	display: inline-block;
	position: absolute;
	top: -9px;
	left: 50%;
	right: auto;
	transform: translate(-50%, 0);
}
.dropdown-menu .sub-menu-item {
	padding: 0;
}
.dropdown-item {
	padding: 0.75em 2em;
	color: #fff;
	border-bottom: 1px solid #fff;
}
.dropdown-item:last-child {
	border-bottom: transparent;
}
.dropdown-item:focus, .dropdown-item:hover {
	color: #fff;
	background-color: rgb(255,255,255,0.3);
}
.dropdown-toggle::after {
	display: none;
}
.navbar .fa-search {
	font-size: 18px;
	color: #082952;
	padding: 1em;
	margin-left: 2em;
}
.navbar .fa-search:hover {
	transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	color: #bb5333;
}
.prev, .next {
	color: #000;
}
.btn {
	padding: 0.5em 2.5em;
	border-radius: 0;
}
.btn-outline-primary {
    color: #1c3664;
    border-color: #082952;
}
.btn-outline-primary:hover {
	color: #cb8e77;
    background-color: #fff;
    border-color: #cb8e77;
}
.btn-outline-primary:not(:disabled):not(.disabled):active {
	background-color: #001024;
	border-color: #001024;
	color: #fff;
}
.navbar-nav-accordion {
	margin: 2em 0;
}
.navbar-nav-accordion .card {
	background-color: transparent;
	border-radius: 0;
	border: transparent;
	
}
.navbar-nav-accordion .card .card-header  {
	border-radius: 0;
	background: transparent;
	padding: 0;
	margin: 0;
	position: relative;
	border-bottom: 1px solid rgba(0,0,0,.125);
	
}
.navbar-nav-accordion .card .card-header a {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	padding: 1em 0;
	width: 80%;
	text-align: left;
}
.navbar-nav-accordion .card .card-header a:active, .navbar-nav-accordion .card .card-header a:focus, .navbar-nav-accordion .card .card-body a:active, .navbar-nav-accordion .card .card-body a:focus  {
	text-decoration: none;
	outline:0;
}
.plus-minus-toggle {
	position: absolute;
    top: 0;
	right: 0;
	height: 80px;
	width: 80px;
	cursor: pointer;
}
.plus-minus-toggle:before,.plus-minus-toggle:after {
    background: #872000;
    content: '';
    height: 5px;
    right: 30px;
    position: absolute;
    top: 50%;
    width: 21px;
    transition: transform 500ms ease;
}
.plus-minus-toggle:after {
    transform-origin: center;
}
.plus-minus-toggle.collapsed:after {
      transform: rotate(90deg);
}
.plus-minus-toggle.collapsed:before {
      transform: rotate(180deg);
}
.navbar-nav-accordion .card .card-header a:hover {
	text-decoration: none;
	color: #872000;
}
.navbar-nav-accordion .card .card-body {
	padding: 0;
}
.navbar-nav-accordion .card .card-body a {
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	text-align: left;
	width: 100%;
	border-bottom: 1px solid rgba(0,0,0,.125);
}
.navbar-nav-accordion .card .card-body a:hover {
	background-color: rgba(255, 255, 255, 0.3);
	text-decoration: none;
}
.close {
	display: none;
}
.error-404 {
	padding: 6em 0;
}
.error-404 h2 {
	color: #082952;
	font-size: 72px;
	margin-bottom: 0.25em;
}
.error-404 p {
	color: #082952;
	font-size: 32px;
	margin-bottom: 2em;
	font-family: 'Exo 2', sans-serif;
}
.error-404 .btn-primary {
	background-color: #BB5333;
	border: 1px solid #BB5333;
	height: 46px;
	line-height: 26px;
	margin-left: 0.5em;
}
.error-404 .btn-primary:hover {
	background-color: #a43716;
	border: 1px solid #a43716;
}
.error-404 .btn-primary:focus {
	background-color: #8a2507;
	border: 1px solid #8a2507;
}
.scroll-down {
	display: flex;
	flex-direction: column;
	margin: 5em auto 0;
	width: 24px;
	cursor: pointer;
}
.scroll-down img {
	display: block;
	width: 100%;
	margin-bottom: 1em;
}
.bounce {
	-moz-animation: bounce 2s infinite;
	-webkit-animation: bounce 2s infinite;
	animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  60% {
    transform: translateY(-6px);
  }
}
/* Search */

#search {
    position: fixed;
    top: 130px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    
    -webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;

    -webkit-transform: translate(0px, 0px) scale(0, 0);
	-moz-transform: translate(0px, 0px) scale(0, 0);
	-o-transform: translate(0px, 0px) scale(0, 0);
	-ms-transform: translate(0px, 0px) scale(0, 0);
	transform: translate(0px, 0px) scale(0, 0);
  
    opacity: 0;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
	-o-transform: translate(0px, 0px) scale(1, 1);
	-ms-transform: translate(0px, 0px) scale(1, 1);
	transform: translate(0px, 0px) scale(1, 1); 
    opacity: 1;
	z-index: 999;
}

#search input[type="search"] {
    position: absolute;
    top: 30%;
    width: 100%;
	font-family: 'Exo 2', sans-serif;
    color: #001024;
    background: rgba(0, 0, 0, 0);
    font-size: 62px;
	line-height: 82px;
    font-weight: 300;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
}
#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
}
#search .to-close {
    position: fixed;
    top: 60px;
    right: 60px;
	opacity: 1;
	padding: 10px;
	width: 30px;
	height: 30px;
	background: url(../images/cross-out.svg) no-repeat;
	background-size: 30px 30px;
}
#search .to-close img {
	width: 30px;
	height: 30px;
}
.middle-text {
	margin-top: 130px;
	margin-bottom: 2em;
}
.middle-text hr:last-child {
	border-top: transparent;
}
.middle-text .search-result {
	color: #e2b5a4;
}
.article-image {
	margin: 0 auto;
}
.article-image img {
	width: 100%;
}
.wp-block-image {
	margin: 2em 0;
}
footer a {
	color: #1c3664;
}

/* Partner Shadow box */

.column-box-partners:hover, .refinance-data:hover, .aga-khan-box:hover, .aau-box:hover, .open-society-box:hover, .fullbright-box:hover, .conacyt-box:hover, .colfuturo-box:hover, .international-student-box:hover, .world-bank-box:hover, .mpower-box:hover, .peo-box:hover{
	 box-shadow: 1px 1px 5px 2px gainsboro;
}
.tab-link{
	 text-decoration:underline;
	cursor:pointer;
}
.active-tab-link{
	color:#005689!important;
}

.tools-section{
	background-color: #f2f2f2;
    padding: 30px 0;
}
.tools-section h3{
	color: #a43716;
    font-size: 24px;
}
.tools-section .tool{
	background-color: #fff;
    padding: 30px;
    margin-top: 30px;
}
.tools-section .tool a{
	color: #000;
    font-size: 18px;
    font-weight: bold;
	width: 75%;
}
.tools-section .tool-title{
	display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.home-page-news .post-content h3{
	color: #a43716;
    font-size: 22px;
}
.home-page-news .post-content{
	padding: 1.5em 20px;
}
.home-page-news .post-content a:hover, .tools-section h3 a:hover{
	text-decoration: underline;
	color: #a43716;
}

.home-page-news .post-content h5:hover, .tools-section .tool a:hover{
	color: #bb5333;
}
.home-page-news .post-content .post-image{
	margin: 0;
	background-size: contain;
	height: 250px;
}

@media (max-width: 767px) {  
	h1 {
		font-size: 42px;
		margin-bottom: 2em;
	}
	h2 {
		font-size: 36px;
		margin-bottom: 1em;
	}
	h3 {
		font-size: 30px;
		margin-bottom: 0.25em;
	}
	h4 {
		font-size: 26px;
	}
	h5 {
		font-size: 22px;
	}
	.logo {
		width: 40%;
		margin: 0;
	}
	.navbar .fa-search {
		margin: 0;
	}
	#search input[type="search"] {
		font-size: 36px;
		line-height: 42px;
	}
	.tools-section .tool-title img{
		height: fit-content;
	}
}
@media (min-width: 1200px) {  
	.navbar-nav-accordion {
		display: none;
	}
}
@media screen and (max-width: 1199px) {
	.navbar-collapse {
	  background: #BB5333;
	  position: absolute;
	  top: 0;
	  right: 0;
	  left: 0;
	  min-height: 100vh;
	  padding: 3em 2em;
	}
	.close {
		display: block;
		color: #fff;
		opacity: 1;
		font-size: 48px;
		position: absolute;
		top: 35px;
		right: 60px;
		outline: none;
		transition: all 0.3s ease-out;
		-moz-transition: all 0.3s ease-out;
		-webkit-transition: all 0.3s ease-out;
	}
	.close:hover {
		color: #872000;
		text-shadow: none;
		outline: none;
	}
	.navbar-nav {
		display: none;
	}
	.menu-search-wrapper {
		flex-direction: row;
	}
	
}
