html {
	font-size:16px;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  font-size: 1rem;

}

a {
  color: #1977cc;
  text-decoration: none;
}

a:hover {
  color: #3291e6;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:  Calibri, Helvetica, Arial, Verdana, and Times New Roman;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1977cc;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1977cc;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 2px solid #ffffff;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 1.5rem;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #298ce5;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}



/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  height: 50px;
  font-size: 1rem;
  transition: all 0.5s;
  z-index: 996;
  width: 100%;
}

#topbar .language .language-mt {
	height:32px;
	width: 32px;
	background: url("../img/flags/Flag-Malta.png") center center no-repeat;
	padding: 5px;
	margin: 8px 10px 8px 0px;
	background-size: cover;
	cursor: pointer;
	opacity: 0.5;
}

#topbar .language .language-en {
	height:32px;
	width: 32px;
	background: url("../img/flags/Flag-United-Kingdom.png") center center no-repeat;
	padding: 5px;
	margin: 8px 0px 8px 0px;
	background-size: cover;
	cursor: pointer;
	opacity: 0.5;
}

#topbar .language .selected  {
	opacity: 1;
}

#topbar .language .language-mt:hover,
#topbar .language .language-en:hover {
	opacity: 1;
}

#topbar .agAccessibilityTools {
	color: #444444;
	cursor: pointer;
}

#topbar .agAccessibilityTools i {
	font-size: 1.25rem;	
}

#topbar .fontsize-resize {
	margin: 10px 5px;	
	cursor: pointer;
	font-weight: 800;
	line-height:24px;
}

#topbar .fontsize-resize.decrease{
	font-size: 18px;
	padding-top:4px;	
}

#topbar .fontsize-resize.increase{
	font-size: 24px;	
}

#topbar .fontsize-resize span{
	font-weight: 800;
	font-size: 24px;	
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #444444;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #1977cc;
}

#topbar .contact-info i {
  color: #1977cc;
  padding-right: 4px;
  margin-left: 15px;
  line-height: 0;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: #437099;
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #1977cc;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 50px;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  font-size: 2rem;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #2c4964;
}

#header .logo img {
  max-height: 40px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #2c4964;
  white-space: nowrap;
  transition: 0.3s;
  border-bottom: 2px solid #fff;
  padding: 5px 2px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 0.75rem;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #1977cc;
  border-color: #1977cc;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: none;
  color: #082744;
  border: none;
}

.navbar .dropdown ul a i {
  font-size: 0.75rem;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #1977cc;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #2c4964;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 0.85rem;
  color: #2c4964;
  border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #1977cc;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 0.65rem
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #1977cc;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


#hero {
  width: inherit;
  height: 90vh;
  /* background: url("../img/bgServitium-01.jpg") top center; */
  background: url("../img/bgServitium-02.png");
  background-color: #ffffff;
  /* background-size: cover; */
}


#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  /* color: #000000; */
  color: #2c4964;
  top: 50%;
}


#hero h2 {
  color: #2c4964;
  margin: 10px 0 0 0;
  font-size: 1.3rem;
}



@media (min-width: 1280px) {
  #hero {
    background-attachment: fixed;
    background-size:65% auto;
    background-position-x: right;
    background-position-y: center;
    background-repeat: no-repeat;
    margin-bottom: -100px;
    margin-top: 50px;
  }
}

@media (max-width: 1279px) {
  #hero {
    margin-bottom: 0;
    /* height: 100vh; */
    background-size:90% auto;
    background-position-x: center;
    background-position-y: bottom;
    background-repeat: no-repeat;
  }

  #hero .container {
    padding-bottom: 63px;
  }

  #hero h1 {
    text-align: center;
  }

  #hero h1 br{content:' ';}
  #hero h1 br:after{content:' ';}

  #hero h2 {
    font-size: 1rem;
    line-height: 1.3rem;
    margin-bottom: 30px;
  }

}

@media (max-width: 992px) {
  #hero {
    margin-bottom: 0;
    /* height: 100vh; */
    background-size:90% auto;
    background-position-x: center;
    background-position-y: bottom;
    background-repeat: no-repeat;
  }

  #hero .container {
    padding-bottom: 63px;
  }

  #hero h1 {
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: center;
  }

  #hero h1 br{content:' ';}
  #hero h1 br:after{content:' ';}

  #hero h2 {
    font-size: 1rem;
    line-height: 1.3rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 400px) {
  #hero {
    margin-bottom: 0;
    height: 65vh; 
    background-size:90% auto;
    background-position-x: center;
    background-position-y: bottom;
    background-repeat: no-repeat;
  }

  #hero .container {
    padding-bottom: 63px;
  }

  #hero h1 {
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: center;
  }

  #hero h1 br{content:' ';}
  #hero h1 br:after{content:' ';}

  #hero h2 {
    font-size: 1rem;
    line-height: 1.3rem;
    margin-bottom: 30px;
  }
}


@media (max-height: 600px) {
  #hero {
    height: 110vh;
  }
}

/*
#hero {
  width: 100%;
  height: 90vh;
  background: url("../img/bgServitium-01.jpg") top center;
  background-size: cover;
  margin-bottom: -200px;
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3rem;
  text-transform: uppercase;
  color: #2c4964;
}

#hero h2 {
  color: #2c4964;
  margin: 10px 0 0 0;
  font-size: 1.3rem;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero {
    margin-bottom: 0;
    height: 100vh;
  }

  #hero .container {
    padding-bottom: 63px;
  }

  #hero h1 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  #hero h2 {
    font-size: 1rem;
    line-height: 1.3rem;
    margin-bottom: 30px;
  }
}

@media (max-height: 600px) {
  #hero {
    height: 110vh;
  }
} */

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f1f7fd;
}

.section-title {
  text-align: left;
  padding-bottom: 5px;
}

.section-title h2 {
  /* font-size: 2.5rem; */
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 150px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  /*left: calc(50% - 60px);*/
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #1977cc;
  bottom: 0;
  /*left: calc(50% - 20px);*/
}

.section-title p {
  /* margin-bottom: 0; */
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 10px 0;
  background-color: #f1f7fd;
  min-height: 40px;
  margin-top: 127px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 112px;
  }
}

.breadcrumbs h2 {
  font-size: 1rem;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.75rem;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 5rem 3rem;
  background: #1977cc;
  border-radius: 10px;
  color: #fff;
  min-height: 250px;
}

.why-us .content h3 {
  font-weight: 700;
  font-size: 2rem
  /*margin-bottom: 30px;*/
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us ul li {
  text-align: start;
  font-size: 1rem;
  color: #848484;
  list-style-type: square;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 0.75rem;
}

.why-us .content .more-btn:hover {
  color: #1977cc;
  background: #fff;
}

.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
  box-shadow: 3px -3px 10px 5px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}

.why-us .icon-boxes .icon-box i {
  font-size: 2.2rem;
  color: #1977cc;
  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 30px 0;
  font-variant: small-caps;
}

.why-us .icon-boxes .icon-box p {
  font-size: 1rem;
  color: #848484;
}

/*--------------------------------------------------------------
# General Headings
--------------------------------------------------------------*/
/* @media (min-width: 1024px) {
	body { font-size: 1rem; }
	.services h2 .search h2 { font-size: 2rem; }
	.services h2 .search h3 { font-size: 1.5rem; }
}*/

body { font-size: 1rem; }
.services h2 .search h2 { font-size: 2rem; }
.services h2 .search h3 { font-size: 1.5rem; }

.services h3 {
  font-weight: 700;
  color: #2c4964;
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
	background-color: #000000; 
	padding-top:0px !important; 
	padding-bottom: 0px !important
}

.about .section-bg {
	background-color: #ffffff; 
}

.about .content {
	background-color: #ffffff;	
}

.about .icon-boxes h4 {
  font-size: 1rem;
  color: #4b7dab;
  margin-bottom: 15px;
}

.about .icon-boxes h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c4964;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #8dc2f1;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #1977cc;
  font-size: 1.75rem;
}

.about .icon-box:hover .icon {
  background: #1977cc;
  border-color: #1977cc;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.3em;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #1977cc;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 1.3rem;
  font-size: 1rem;
}

.about .image-box {
  background: url("../img/bgServitium-About-02-White.png") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}


.about .readmore a {
  color: #ffffff;
  background-color: #1977cc;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.about .readmore a:hover {
  background-color: #298ce5;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #f1f7fd;
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  background: #1977cc;
  color: #fff;
  border-radius: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
}

.counts .count-box span {
  font-size: 2rem;
  display: block;
  font-weight: 600;
  color: #082744;
  padding-top: 1rem;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 1.3rem;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

@media (max-height: 800px)
#services {
    height: auto;
}
@media (min-width: 1024px)
#services {
    background-attachment: fixed;
}

#services::before {
	content: "";
	background: url(../img/bgInstitutions.jpg);
	background-size: cover;
	position: absolute;
	top:0px;
	right:0px;
	left:0px;
	bottom:0px;
	width: 100%;
	opacity: 0.1;    
}

#services {
   position: relative;   
}

#services .icon-boxes {
    margin-top: 15px;
}

#services .icon-box {
    padding: 20px 20px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

#services .icon-box:hover {
	background-color:#dbedff;	
}


#services .icon-box .icon {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-size: 2rem;
    line-height: 2rem;
    color: #2487ce;
}

#services .icon-box .icon svg, #services .icon-box .icon svg path {
  width: 3rem;
  height: 3rem;
  fill: #2487ce;
}


#services .icon-box:hover .icon svg, #services .icon-box:hover .icon svg path {
	fill: #175f92;
}

#services .icon-box .title {
	height: 4rem;
	color: #2487ce;
}

#services .icon-box .title h4 {
	font-weight: 500;
	font-size: 1.5rem;  
}

#services .icon-box .title h4:hover {
  cursor: pointer;
  text-decoration: underline;
}

#services .icon-box:hover .title h4 {
	color: #175f92;
	font-size: 1.5rem;
}


/* #services .icon-box .description .link::before {
  content: "\00BB \ ";
  display:inline-block;
  text-decoration: none;
}

#services .icon-box .description .link:hover:before { 
  /* color: red; */
  /* display:inline-block;
  text-decoration: none;
} */ 


#services .icon-box .description
{
  font-size: 0.9rem;
  line-height: 1.2rem;
  margin-bottom: 0;	
  color: #5c7387;
  word-wrap: break-word;
}


#services .icon-box .description .link {
    font-size: 0.9rem;
    line-height: 1.2rem;
    margin-bottom: 0;	
	  color: #5c7387;
    white-space: nowrap;
}

#services .icon-box .description .link:hover {
  cursor: pointer;
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Search - Free Text
--------------------------------------------------------------*/
.searchfree .search-form, .searchinstitution .search-form {
  width: 100%;
}

.searchfree .search-form .form-group, 
.searchinstitution .search-form .form-group {
  padding-bottom: 8px;
}

.searchfree .search-form .validate, 
.searchinstitution .search-form .validate {
  display: none;
  color: #b71313;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 0.9rem;
}

.searchfree .search-form .error-message, 
.searchinstitution .search-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.searchfree .search-form .loading, 
.searchinstitution .search-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.searchfree .search-form .loading:before, 
.searchinstitution .search-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.searchfree .search-form input,
.searchfree .search-form textarea,
.searchfree .search-form select,
.searchinstitution .search-form input,
.searchinstitution .search-form textarea,
.searchinstitution .search-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 1rem;
  padding: 10px !important;
}

.searchfree .search-form input:focus,
.searchfree .search-form textarea:focus,
.searchfree .search-form select:focus,
.searchinstitution .search-form input:focus,
.searchinstitution .search-form textarea:focus,
.searchinstitution .search-form select:focus {
  border-color: #1977cc;
}

.searchfree .search-form input,
.searchfree .search-form select,
.searchinstitution .search-form input,
.searchinstitution .search-form select {
  height: 44px;
}

.searchfree .search-form textarea,
.searchinstitution .search-form textarea {
  padding: 10px 12px;
}

.searchfree .search-form button[type=button],
.searchinstitution .search-form button[type=button] {
  background: #1977cc;
  border: 0;
  padding: 10px 25px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
  cursor: pointer;
}

.searchfree .search-form button[type=button]:disabled,
.searchinstitution .search-form button[type=button]:disabled {
  background: #ed3c0d;
}


.searchfree .search-form button[type=button]:hover,
.searchinstitution .search-form button[type=button]:hover {
  background: #1c84e3;
}

#SearchResults {
  background: #ffffff;
  max-height: 250px;
  box-sizing: border-box;
  border: 1px solid #dee2e6;
  /* position: absolute; */
  /* top: 51px; */
  box-shadow: 0 4px 6px 0 rgba(0,0,0,0.1);
  overflow-y: scroll;
  
}

#SearchResults .resultItem {
width: 100%;
/* height: 100px; */
display: flex;
cursor: pointer;
}

#SearchResults .resultItem:hover {
background-color: #dbedff !important;
}

#SearchResults.resultHidden {
  display: none !important;
}

#SearchResults .resultSummary {
  font-size: 0.9rem;
  font-weight: 500;
  font-style: italic;
}

#SearchResults .resultItemService {
  font-size: 1rem;
  font-weight: 600;
  color: #2c4964;
}

#SearchResults .resultItemInstitution {
  font-size: 0.9rem;
  font-weight: 500;
  font-style: italic;
}

#SearchResults .highlightSearchMatch {
  background:#1977cc; 
  color: #ffffff;
  padding:1px; 
  border:#1977cc dotted 1px; 
}

/*--------------------------------------------------------------
# institutions
--------------------------------------------------------------*/
.institutions::before {
	content: "";
	background: url(../img/bgInstitutions.jpg);
	background-size: cover;
	position: absolute;
	top:0px;
	right:0px;
	left:0px;
	bottom:0px;
	width: 100%;
	opacity: 0.2;    
}

.institutions {
   position: relative;   
}

.institutions .card-deck{
  display: flex;
/*  justify-content: center;
  align-items: center; */
  /*flex-wrap: wrap; */
  flex-flow: row wrap;
  align-items: stretch;
}

.institutions .card-deck-error{
  color: #ee4636;
  font-weight: 600;
}

.institutions .data {
  position: relative;
  background-color: #ffffff;
  box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08);
  padding: 20px 10px;
  border-radius: 10px;  
/*  max-width: 325px; */
/*  width: 325px; */
  height: auto;
  margin: 10px;
  box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  overflow: hidden; 
  height: 160px;
}

.institutions .data:hover {
  background-color: #dbedff !important;
}


.institutions .data .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.institutions .data .pic img {
  transition: ease-in-out 0.3s;
}

.institutions .data:hover img {
  transform: scale(1.1);
}

.institutions .data .data-info {
  padding: 0px 10px;
}

.institutions .data h4 {
  font-weight: 525;
  margin-bottom: 5px;
  font-size: 1.2rem;
  color: #1977cc;
  min-height: 3rem;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.institutions .data h4:hover {
  text-decoration: underline;
  cursor: pointer;
}

.institutions .data span {
  display: block;
  font-size: 1rem;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.institutions .data span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b2c8dd;
  bottom: 0;
  left: 0;
}

.institutions .data p {
  margin: 10px 0 0 0;
  font-size: 0.85rem;
  line-height: 1.1rem;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.institutions .data button.readmore {
  background: transparent;
  border: 0;
  padding: 5px 5px;
  color: #1977cc;
  transition: 0.4s;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
}

.institutions .data .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  float: right;
}

.institutions .data .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #a0bcd5;
}

.institutions .data .social a i {
  color: #fff;
  font-size: 0.9rem;
  margin: 0 2px;
}

.institutions .data .social a:hover {
  background: #1977cc;
}

.institutions .data .social a+a {
  margin-left: 8px;
}



.institutions .pagination {
 justify-content: right !important;
}

.institutions .pagination-outer{ text-align: center; }
 .institutions .pagination{
    /*font-family: 'Poppins', sans-serif;*/
    padding: 5px 15px;
    
    position: relative;
	 justify-content: right !important;
	 
    /*box-shadow: 0 0 10px rgba(0,0,0,0.3);*/
}
.institutions .pagination li a.page-link{
    color: #1977cc;
    background: #eee;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: calc(2rem + 5px);
    height: calc(2rem + 5px);
    width: calc(2rem + 5px);
    padding: 0;
    margin: 0 5px;
    border: none;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    text-align: center;
    z-index: 1;
    transition: all 0.4s ease 0s;
}
.institutions .pagination li:first-child a.page-link,
.institutions .pagination li:last-child a.page-link{
    color: #2c4964;
    font-size: 1rem;
    line-height: calc(2rem + 5px);
    font-weight: 400;
    
}



.institutions .pagination li a.page-link:hover,
.institutions .pagination li a.page-link:focus,
.institutions .pagination li.active a.page-link:hover,
.institutions .pagination li.active a.page-link{
    color: #2c4964;
    background: transparent;
}
.institutions .pagination li a.page-link:before{
    content: '';
    background-color: #2c4964;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px #2c4964;
    opacity: 0;
    transform: scale(2);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.4s ease 0s;
}
.institutions .pagination li a.page-link:hover:before,
.institutions .pagination li a.page-link:focus:before,
.institutions .pagination li.active a.page-link:hover:before,
.institutions .pagination li.active a.page-link:before{
    opacity: 1;
    background-color: transparent;
    transform: scale(0.85);
}
@media only screen and (max-width: 480px){
    .institutions .pagination{
        font-size: 0;
        display: inline-block;
    }
    .institutions .pagination li{
        display: inline-block;
        vertical-align: top;
        margin: 10px 0;
    }
}




/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
#contact::before {
    content: ""; 
    background: url(../img/bgInstitutions.jpg);
    background-size: cover;
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    width: 100%;
    opacity: 0.1;
}

#contact {
  position: relative;
}

#contact .data {
  background-color: #ffffff;
  box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08);
  padding: 20px 20px;
  border-radius: 10px;
  height: auto;
  margin: 10px;
  box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
}


#contact .contactusimagepanel {
  min-height: 150px;
  text-align: center;
  vertical-align: middle;
}

.contact .contactusimagepanel svg,
.contact .contactusimagepanel svg path {
  width: 15rem;
  height: 15rem;
  
  fill: #1977cc;
}

#contact label {  
  font-weight: 500;
  font-size: 0.85rem;  
}

#contact input {
  font-size: 0.85rem;
  border: 1px solid #cecece;
  border-right: 3px solid #1977cc;
}

#contact input::placeholder {  
  font-weight: 500;
  font-size: 0.85rem;
}

#contact textarea {
  font-size: 0.85rem;
  border-right: 3px solid #1977cc;
  resize: none;
}

#contact textarea::placeholder {  
  font-weight: 500;
  font-size: 0.85rem;
}

#contact .btn-send,   
#contact .btn-home {  
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  width: 100%;
  background-color: #1977cc;
  color: #ffffff;
}

#contact .invalid-feedback {
  color: #ed3c0d;
}

#contact .form-control.is-invalid, 
#contact .was-validated .form-control:invalid {
  border-color:  #ed3c0d;
  background-image: none;
}

#contact .form-control.is-valid, 
#contact .was-validated .form-control:valid
{
  border: 1px solid #cecece;
  border-right: 3px solid #1977cc;
  background-image: none;
}

#contact .thankyouicon{
  color: #1977cc;
}

#contact .thankyoutitle{
  color: #1977cc;
  font-size: 1.5rem;

}

/* -- OLD -- */

.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 1rem;
  color: #1977cc;
  float: left;
  width: 44px;
  height: 44px;
  background: #d6e9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c4964;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 1rem;
  color: #4b7dab;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #1977cc;
  color: #fff;
}

.contact .search-form {
  width: 100%;
  background: #fff;
}

.contact .search-form .form-group {
  padding-bottom: 8px;
}

.contact .search-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .search-form .error-message br+br {
  margin-top: 25px;
}

.contact .search-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .search-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .search-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .search-form input,
.contact .search-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 1rem;
}

.contact .search-form input {
  height: 44px;
}

.contact .search-form textarea {
  padding: 10px 12px;
}

.contact .search-form button[type=submit] {
  background: #1977cc;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .search-form button[type=submit]:hover {
  background: #1c84e3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 1rem;
  background: #f1f7fd;
}

#footer .footer-top {
  padding: 30px 0 30px 0;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 1.3rem;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 1rem;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #1c84e3;
  font-size: 1.5rem;
  line-height: 1.5rem;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #1977cc;
}

#footer .footer-menu {
  border-bottom: 1px solid #cecece66;
  margin: 0 50px 0 50px;
}

#footer .footer-menu a {
  font-size: 0.85rem;
  font-weight: 600;
}

#footer .footer-menu a:hover {
  text-decoration: underline;
}

#footer .copyright,
#footer .credits {
  padding-top: 5px;
  font-size: 0.85rem;
  color: #444444;
}

#footer .credits a {
  font-size: 0.85rem;
  font-weight: 600;
}

#footer .credits a:hover {
  text-decoration: underline;
}

/* #footer .social-links a { */
  /* font-size: 18px; */
  /* display: inline-block; */
  /* background: #1977cc; */
  /* color: #fff; */
  /* line-height: 1; */
  /* padding: 8px 0; */
  /* margin-right: 4px; */
  /* border-radius: 50%; */
  /* text-align: center; */
  /* width: 36px; */
  /* height: 36px; */
  /* transition: 0.3s; */
/* } */

#footer .social-links a {
  font-size: 1.5rem;
  display: inline-block;
  color: #1977cc;
  line-height: 1.5rem;
  padding: 8px 0;
  margin-right: 4px;
  text-align: center;
  width: 2rem;
  height: 2rem;
  transition: 0.3s;
}

#footer .social-links a:hover {
  /* background: #1c84e3; */
  color: #1977cc;
  text-decoration: none;
}


/*--------------------------------------------------------------
# Institution Detail
--------------------------------------------------------------*/

.institutiondetail::before {
  content: "";
  background: url(../img/bgInstitutions.jpg) ;
  background-size: cover;
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  width: 100%;
  opacity: 0.2;  
  z-index: -1;
}

#institutiondetail section {
  padding: 20px !important;
}

.institutiondetail h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c4964;
}

.institutiondetail h5 {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #858585
}

.institutiondetail h5 span.offeredbylabel {
  font-weight: 500;  
}

.institutiondetail .noshow {
  display: none;
}

.institutiondetail .data {
  background-color: #ffffff;
  border-radius: 10px;
  padding:1.5rem;
  height: auto;  
  box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
}

.institutiondetail .datadisclaimer {
  background-color: #f1f7fd;
  border-radius: 10px;
  padding:1.5rem;
  height: auto;  
  box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  color: #444444;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: justify;
}

.institutiondetail .datadisclaimer a {
  color: #444444;
  font-weight: bold;
}

.institutiondetail .datadisclaimer a:hover {
  text-decoration: underline;
}

.institutiondetail>.container {
  position: relative;
  display: block;
}

.institutiondetail .card-deck .data {
  background-color: #ffffff;
  border-radius: 10px;
  padding:1.0rem 0.75rem 0.75rem 0.75rem; 
  height: auto;  
  box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
}

.institutiondetail .card-deck .data:hover {
  background-color: #dbedff !important;
}

.institutiondetail .data p {
  color: #444444;
}

.institutiondetail .data .datadescription {
  color: #444444;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

section.institutiondetail  {
  padding: 20px 0px !important;
}

.institutiondetail h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c4964;
  margin-bottom: 15px;
}


.institutiondetail .row-shown {
  display: flex !important;
}

.institutiondetail .row-hidden {
  display: none !important;
}

.institutiondetail .section-shown {
  display: block !important;
}

.institutiondetail .section-hidden {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .institutiondetail .institutiondetailpanelcontact {
    order: 1;
  }

  .institutiondetail .institutiondetailpanelobjectives{
   order: 2;
  }
}

.institutiondetail .data .data-info {
  padding: 0px 10px;
}


.institutiondetail .data button.readmore {
  background: transparent;
  border: 0;
  padding: 5px 5px;
  color: #1977cc;
  transition: 0.4s;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
}

.institutiondetail .data button.readmore:hover {
 text-decoration: underline;
}

.institutiondetail .legislationnameurl   {
  color: #1977cc;
  font-weight: 600;  
  cursor: pointer;  
}

.institutiondetail .legislationnameurl:hover   {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Service Type Detail
--------------------------------------------------------------*/

.servicetypedetail::before {
  content: "";
  background: url(../img/bgInstitutions.jpg) ;
  background-size: cover;
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  width: 100%;
  opacity: 0.2;  
  z-index: -1;
}

#servicetypedetail section {
  padding: 20px !important;
}

.servicetypedetail h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c4964;
}

.servicetypedetail h5 {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #858585
}

.servicetypedetail h5 span.offeredbylabel {
  font-weight: 500;  
}

.servicetypedetail .noshow {
  display: none;
}

.servicetypedetail .data {
  background-color: #ffffff;
  border-radius: 10px;
  padding:1.5rem;
  height: auto;  
  box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
}

.servicetypedetail>.container {
  position: relative;
  display: block;
}

.servicetypedetail .card-deck .data {
  background-color: #ffffff;
  border-radius: 10px;
  padding:1.0rem 0.75rem 0.75rem 0.75rem; 
  height: auto;  
  box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
}

.servicetypedetail .card-deck .data:hover {
  background-color: #dbedff !important;
}


section.servicetypedetail  {
  padding: 20px 0px !important;
}

.servicetypedetail h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c4964;
  margin-bottom: 15px;
}


.servicetypedetail .row-shown {
  display: flex !important;
}

.servicetypedetail .row-hidden {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .servicetypedetail .servicetypedetailpanelcontact {
    order: 1;
  }

  .servicetypedetail .servicetypedetailpanelobjectives{
   order: 2;
  }
}

.servicetypedetail .data .data-info {
  padding: 0px 10px;
}

.servicetypedetail li {
  list-style-type: square !important;
  color: #1977cc;
}

.servicetypedetail .data span.link
{
  color: #1977cc;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
}

.servicetypedetail .data span.link:hover
{
  text-decoration: underline;
}

.servicetypedetail .data button.readmore {
  background: transparent;
  border: 0;
  padding: 5px 5px;
  color: #1977cc;
  transition: 0.4s;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
}

.servicetypedetail .data button.readmore:hover {
 text-decoration: underline;
}

.servicetypedetail .data .sortlinklabel {
  font-size: 0.85rem;
  font-weight: 600;
}

.servicetypedetail .data .sortlink {
  color: #1977cc;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
}

.servicetypedetail .data .sortlink:hover {
  text-decoration: underline;
 }

/*--------------------------------------------------------------
# SERVICE DETAIL
--------------------------------------------------------------*/


#servicedetail section {
  padding: 20px !important;
}

.servicedetail h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c4964;
}

.servicedetail h5 {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #858585
}


.data-label {
  font-size: 0.85rem;
  font-weight: 600;
  font-style: italic;
  color: #2c4964;
}


.servicedetail .data {
  background-color: #ffffff;
  border-radius: 10px;
  padding:1.5rem;
  height: auto;  
  box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
}

.servicedetail .datadisclaimer {
  background-color: #f1f7fd;
  border-radius: 10px;
  padding:1.5rem;
  height: auto;  
  box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  color: #444444;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: justify;
}

.servicedetail .datadisclaimer a {
  color: #444444;
  font-weight: bold;
}

.servicedetail .datadisclaimer a:hover {
  text-decoration: underline;
}

.servicedetail>.container {
  position: relative;
  display: block;
}


.servicedetail .row-shown {
  display: inline; 
  /*flex !important;*/
}

.servicedetail .row-hidden {
  display: none !important;
}

.servicedetail .section-shown {
  display: block !important;
}

.servicedetail .section-hidden {
  display: none !important;
}


.servicedetail .link,
.servicedetail .extlink,
.servicedetail .data span.visitwebsite,
#servicemoreinformation a {
  color: #1977cc;
  cursor: pointer;
  min-height: 2.5rem;
}


.servicedetail .link:hover,
.servicedetail .extlink:hover,
.servicedetail .data span.visitwebsite:hover,
#servicemoreinformation a:hover  {
  text-decoration: underline;
}

.servicedetail .legislationname {
  font-weight: 600;  
}

.servicedetail .legislationnameurl   {
  color: #1977cc;
  font-weight: 600;  
  cursor: pointer;  
}

.servicedetail .legislationnameurl:hover   {
  text-decoration: underline;
}

.servicedetail .legislationprovision {
  font-size: 0.9rem;
}


/*--------------------------------------------------------------
# PAGE 
--------------------------------------------------------------*/


#pagedetail section {
  padding: 20px !important;
}

.pagedetail h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c4964;
}

.pagedetail h5 {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #858585
}


.data-label {
  font-size: 0.85rem;
  font-weight: 600;
  font-style: italic;
  color: #2c4964;
}

.pagedetail .data {
  background-color: #ffffff;
  border-radius: 10px;
  padding:1.5rem;
  height: auto;  
  box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
}

.pagedetail>.container {
  position: relative;
  display: block;
}

.pagedetail .link,
#pagemoreinformation a {
  color: #1977cc;
  cursor: pointer;
}


.pagedetail .link:hover,
#pagemoreinformation a:hover  {
  text-decoration: none;
}

.pagedetail p {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  font-size: 1rem;
}

.pagedetail br {
  line-height: 5rem;
  display: block;
  margin: 10px 0;
}

/*--------------------------------------------------------------
# LEFT CATEGORY GROUP MENU 
--------------------------------------------------------------*/

.menuitem {
  font-size: 0.98rem;
  line-height: 1.5rem;
  color: #1977cc;
  padding-left:0.25rem;
  padding-right:0.25rem;
  padding-bottom:0.3rem;
  border-radius:5px;
  vertical-align: middle;
}

.menuitem:hover {
  color: #175f92;
  cursor: pointer;
}

.menuitem:hover .icon svg,
.menuitem:hover .icon svg path { 
	fill: #175f92;
}


.menuitem .icon {
  margin-bottom: 5px;
  padding-top: 10px;
  padding-left: 5px;
  padding-right: 5px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: #1977cc;
}

.menuitem .icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #1977cc;
}

.menuitem .icon svg path {
  width: 1.5rem;
  height: 1.5rem;
  fill: #1977cc;
}

.menuitem.selected {
  background-color: #dadada;
}

.menuitem.selected .icon {
  margin-bottom: 5px;
  padding-top: 10px;
  padding-left: 5px;
  padding-right: 5px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: #1977cc;
}

.menuitem.selected .icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #1977cc;
}

.menuitem.selected .icon svg path {
  width: 1.5rem;
  height: 1.5rem;
  fill: #1977cc;
}