﻿/* GLOBAL
-------------------------------------------------- */

body,
html,
#wrapper {
	width: 100%;
	overflow-x: hidden;
}

body {
	color: #5a5a5a;
	background-color: transparent !important;
	overflow-x: hidden;
}

body.no-scroll {
	overflow: hidden;
}

h1 {
	margin-bottom: 1rem;
}

h2,
h3 {
	margin-bottom: 1.25rem;
}

p {
	line-height: 1.75rem;
	margin-bottom: 1.75rem;
}

ul,
ol {
	margin-bottom: 18px;
	margin-left: 18px;
}

em {
	font-style: italic;
}

.hidden {
	display: none !important;
}

.visible {
	display: inline-block !important;
}

.btn-primary {
	border-color: #242d74;
	background-color: #242d74;
}

.button-blue {
  background-color: #0e3252; /* Blue */
  border-radius: 12px;
  color: white;
  padding: 10px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  transition-duration: 0.4s;
}

.button-blue:visited {
  color: white;
}

.button-blue:hover {
  background-color: #E28001; /* Orange */
  color: white;
}

@media only screen and (max-width: 1105px) {
	#mel-hide {
		display: none;
	}
}

#main-content ol,
#main-content ul {
	padding: 0 1.5rem;
	margin-bottom: 1.75rem;
	padding-left: 36px;
}

#main-content ol li {
	list-style: block inside;
}

#main-content ol ol {
	list-style-type: lower-alpha;
}

#main-content ul {
	list-style: square outside;
}

#main-content ul.list-unstyled {
	list-style: none;
}

#main-content ul li {
	margin-bottom: .5rem;
}

#main-content ul li ul {
	list-style: circle inside;
}

#main-content .list-group {
	padding: 0;
}

/* ACCESSIBILITY OPTIONS
-------------------------------------------------- */

#accessibility-options {
	position: fixed;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	padding: 8px 0;
	background-color: #353535;
}

#accessibility-options .inner {
	max-width: 1170px;
}

#accessibility-options .inner ul {
	margin: 0;
}

#accessibility-options .inner ul li {
	float: left;
	margin-right: 10px;
}

#accessibility-options .inner a {
	color: #fff;
}

/* FORM
-------------------------------------------------- */

#wrapper form label {
	font-weight: bold;
}

form label.required:after {
	display: inline-block;
	content: "*";
	color: #ee0000;
}

/* WRAPPER
-------------------------------------------------- */

#wrapper {
	border-top: 5px solid #0e3252;

}

@media (min-width: 868px) {
	#wrapper {
		margin: 10px 0 0 0;
	}
}

/* HEADER
-------------------------------------------------- */

.header {
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	height: 62px;
}

.header>.inner {
	width: 100%;
	height: 100%;
	max-width: 1170px;
	padding: 0 15px 0 160px;
	margin: 0 auto;
}

@media (min-width: 868px) {
	.header {
		height: 92px;
	}

	.header>.inner {
		float: 0 15px 0 210px;
	}
}

/* LOGO CONTAINER
-------------------------------------------------- */

#logo-container {
	float: left;
	display: table;
	width: 130px;
	height: 100%;
	padding-left: 95px;
	padding-right: 250px;
	margin-left: -260px;
}

#logo-container a {
	display: table-cell;
	vertical-align: middle;
}

#logo-container img {
	height: 42px;
}

@media (min-width: 868px) {
	#logo-container {
		width: 220px;
		margin-left: -235px;
	}

	#logo-container img {
		height: 52px;
	}
}


/* MEL TOPNAV CONTAINER
-------------------------------------------------- */

#mel-topnav {
	display: table;
	padding-top: 20px;
}

/* QUICK EXIT BUTTON CONTAINER
-------------------------------------------------- */

#exit-container {
	float: left;
	display: table;
	width: 130px;
	height: 100%;
	/* padding-left: 15px; */
	margin-left: -160px;
}

#exit-container a {
	display: table-cell;
	vertical-align: middle;
}

#exit-container img {
	height: 42px;
}

#exit-wide {
	height: 50px;
	margin-top: 10px;
}

@media (min-width: 868px) {
	#exit-container {
		width: 220px;
		margin-left: -235px;
	}

	#exit-container img {
		height: 50px;
	}
}

/* NAV BAR MEL
-------------------------------------------------- */

.header {
	font-size: 16px !important;
}

.navbar-links {
	display: none;
}

.navbar-links ul {
	list-style: none;
	font-size: 14px;
	font-weight: normal;
	position: absolute;
	top: 2.5rem;
	right: 0;
	background: #fff;
	z-index: 1;
	width: 250px;
	padding: 10px;
}

.navbar-links ul li {
	margin: 15px 0;
	white-space: nowrap;
}

.navbar-links ul li a {
	color: #0e3252;
	text-decoration: none;
	font-size: 1.25em;
	display: block;
}

.nav-menu ul li a {
	font-size: 14px;
}

.navbar-links ul li a:hover {
	color: orange;
}

.toggle-button {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	cursor: pointer;
	top: 0;
	right: 0;
	margin: 10px;
}

.bar1,
.bar2,
.bar3 {
	height: 3px;
	width: 100%;
	background-color: black;
	border-radius: 25px;
	transition: 0.4s;
}

/* Transform the bars into an "X" when the toggle button is clicked */
.change .bar1 {
	top: 50%;
	transform: rotate(-45deg) translate(-10px, 2px);
}

.change .bar2 {
	opacity: 0;
}

.change .bar3 {
	top: 50%;
	transform: rotate(45deg) translate(-10px, -2px);
}

@media only screen and (min-width: 1104px) {
	#mel-nav {
		display: none;
	}
}

/* MAIN CONTENT
-------------------------------------------------- */

#main-content {
	max-width: 1170px;
	margin: 2rem auto 4rem auto;
	padding: 0px 70px 0px 20px;
	outline: none;
}

.primary .lead-para p a,
.secondary .lead-para p a {
	color: #fff;
	text-decoration: underline;
}

.icon.md {
	height: 48px;
}

.icon.sm {
	height: 28px;
}

.tab-content .card {
	margin-bottom: 1rem;
}

.card .card-header {
	/* padding: 0; */
	background-color: #eaf0f6;
}

.card .card-header h2,
.card .card-header h2 a,
.card .card-header h3,
.card .card-header h3 a {
	display: block;
	margin-bottom: 0;
	/* font-size: 1.25rem; */
	font-size: 1rem;
	font-weight: bold;
	color: #282828;
}

.card .card-header h3 a {
	/* font-size: 1.15rem; */
}

.card .card-header h2 a,
.card .card-header h3 a {
	/* padding: .75rem; */
}

.card .card-body {
	position: relative;
}

@media (min-width: 62em) {
	#main-content {
		/*min-height: 576px;*/
		margin: 4rem auto 6rem auto;
	}

	.primary .lead-para,
	.secondary .lead-para {
		margin-top: -4rem;
	}
}

/* FOOTER
-------------------------------------------------- */

footer {
	display: inline-block;
	width: 100%;
	max-width: none !important;
	text-align: center;
	background-color: #f8f8f8;
}

footer .container {
	max-width: 1170px;
}

footer .icon-seal {
	display: inline-block;
	position: relative;
	width: 100%;
	text-align: center;
}

footer .icon-seal img {
	margin: -24px 0 12px 0;
	width: 80px;
}

footer .site-links {
	padding: 1rem 0;
	margin-left: 0;
}

footer .site-links a.color {
	color: #b12229;
}

footer .site-links li {
	padding: 4px 0;
}

footer .oc-links {
	width: 100%;
	padding-top: 20px;
	margin-left: 0;
	margin-top: 20px;
	color: #343a40;
	border-top: 1px solid #ddd;
	list-style: none;
}

footer .oc-links li {
	padding: 4px 0;
}

footer .social {
	display: inline-block;
	margin: 0 auto;
	list-style: none;
}

footer .social li {
	float: left;
	margin-left: 20px;
}

footer .social li:first-child {
	margin-left: 0;
}

footer .social li a,
footer .social li span {
	float: left;
	width: 100%;
	height: 20px;
}

footer .social li a img,
footer .social li span img {
	float: left;
	height: 100%;
}

@media (min-width: 768px) {
	footer {
		text-align: left;
		padding-bottom: .75rem;
	}

	footer .site-links {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	footer .site-links li {
		padding: 1rem;
		text-align: center;
	}

	footer .oc-links li {
		display: inline-block;
	}

	footer .oc-links>li:last-child {
		float: right;
	}
}

/* LIST GROUP
-------------------------------------------------- */

.list-group.blue .list-group-item {
	margin-bottom: .2rem;
	color: #fff;
	font-weight: bold;
	background-color: #242d74;
}

.list-group.blue .list-group-item:hover {
	background-color: #1f2663;
}

.tab-pane .card {
	border: 1px solid #242d74;
}

.tab-pane .card-header {
	background-color: #242d74;
}

.tab-pane .card-header h2 a {
	font-size: 1rem;
	color: #fff;
	font-weight: bold;
}

/* WRAPPER - VIDEO
-------------------------------------------------- */

.video-wrapper {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	/*max-width: 50%;
	padding-bottom: 56.25%; /* 16:9 */
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* CUSTOM
-------------------------------------------------- */

.heading-banner {
	margin: 0px 0px 25px !important;
}

.content-box-title-acc2 {
	height: 40px !important;
}

.generic-table {
	border-collapse: separate;
	border-spacing: 2px;
}

.generic-table th[scope=col] {
	font-weight: bold;
}

.sectionnh {
	vertical-align: top;
	margin-bottom: 0px !important;
	padding: 0px;
	border-top: solid 0px white !important;
	overflow: unset !important;
}

.secondary .caption h1 {
	display: inline-block;
	padding: 1rem 2rem;
	color: #fff;
	background-color: rgba(199, 44, 65, 0.8);
}

.mb {
	margin-bottom: 10% !important;
}

.mbhome {
	margin-bottom: 2% !important;
}

.ml {
	margin-left: 30px;
	line-height: 30px;
}

.btn-block {
	/* width: 7% !important;*/

}

.liststyle li {
	list-style: square inside !important;
	margin-left: 20px;
}

.liststyle2 {
	list-style: square outside !important;
}

ul.navigation,
ul.site-links,
.dropdown li {
	list-style: none !important;
}

.lkc {
	color: #fff !important;
}

.ModHIVContactUsFormC {
	padding-left: 100px;
	padding-right: 100px;
	padding-bottom: 50px;
}

.ModHIVContactUsFormC input[type=submit] {
	width: 150px !important;
}

.welcome-hdr {
	float: right;
	width: 57%;
	background-color: rgba(255, 255, 255, 0.9);
	padding: 15px;
}

.page-title {
	float: left;
}

.languageBox {
	float: right;
	vertical-align: middle;
	display: inline-block;
	white-space: nowrap;
	height: 40px;
	line-height: 40px;
	/*margin:22px 15px 0 0;*/
	padding: 0;
}

.header_element {
	position: relative;
}

.headp {
	float: right;
}

.header_element .element_box {
	position: absolute;
	right: -7px;
	top: 100%;
	background-color: #272C2C;
	filter: alpha(opacity=0);
	opacity: 0;
	z-index: -1;
	white-space: nowrap;
	margin-top: 25px;
	border: none;
	transition: all ease-in 100ms;
	-moz-transition: all ease-in 100ms;
	-webkit-transition: all ease-in 100ms;
	-o-transition: all ease-in 100ms;
	-ms-transition: all ease-in 100ms;
}

.header_element .element_box.login:before,
.header_element .element_box.searchBox:before {
	border-style: solid;
	border-width: 7px;
	border-color: transparent transparent #272C2C transparent;
	width: 0px;
	height: 0px;
	position: absolute;
	content: "";
	top: -14px;
	/*right: 15px;*/
	right: 25px;
	filter: alpha(opacity=0);
	opacity: 0;
	z-index: -1;
	transition: border ease-in 100ms;
	-moz-transition: border ease-in 100ms;
	-webkit-transition: border ease-in 100ms;
	-o-transition: border ease-in 100ms;
	-ms-transition: border ease-in 100ms;
}

.header_element.Open .element_box.login:before,
.header_element.Open .element_box.searchBox:before {
	filter: alpha(opacity=100);
	opacity: 1;
	z-index: 1000;
}

.header_element.Open .element_box {
	filter: alpha(opacity=100);
	opacity: 1;
	z-index: 1000;
	height: 40px;
}

.search_ps.header_element div {
	display: none;
}

.search_ps.header_element.Open div {
	display: block;
}

.headp.header_element div {
	display: none;
}

.headp.header_element.Open div {
	display: block;
}

/**********************************************/

.float-parent-element {
	width: 100%;
}

.float-child-element {
	float: left;
	width: 50%;
}

#leftbox {
	float: left;
	width: 33%;
	height: auto;
}

#middlebox {
	float: left;
	width: 33%;
	height: auto;
}

#rightbox {
	float: right;
	width: 33%;
	height: auto;
}

.h-100 {
	height: auto !important;
}

.agencyList {
	overflow-y: scroll;
	max-height: 600px;
}

.catList {
	display: inherit;
}

.column {
	float: left;
	width: 50%;
	padding: 10px;
}

.row:after {
	content: "";
	display: table;
	clear: both;
}

div.infoPane>p {

	line-height: 20px;
	margin-bottom: 10px;
	font-size: 14px;
}

.hdrColor {
	color: #2C539E;
}