/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- About
- Services
- Details
- Projects
- Works
- Testimonials
- Questions
- Contact
- Footer 
- Copyright
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/*****************************************
Colors:
- Backgrounds, navbar - black #24262a
- Backgrounds - light gray #f7f9fb
- Buttons, icons - blue #5146f9
- Headings text - black #24262a
- Body text - dark gray #4d5055
******************************************/

/*------------------------------------------------------------------
    IMPORT FONTS
-------------------------------------------------------------------*/
@font-face {
  font-family: 'Open Sans';
  src: url('../webfonts/Open_Sans/OpenSans-VariableFont_wdth,wght.ttf') format('truetype');
}
@font-face {
    font-family: 'Noto Sans JP';
    src: url('../webfonts/Noto_Sans_JP/NotoSansJP-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Noto Sans JP';
    src: url('../webfonts/Noto_Sans_JP/NotoSansJP-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Noto Sans JP';
    src: url('../webfonts/Noto_Sans_JP/NotoSansJP-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Noto Sans JP';
    src: url('../webfonts/Noto_Sans_JP/NotoSansJP-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/**************************/
/*     General Styles     */
/**************************/
:root {
  --primary: #ffffff;
  --primary-light: #eae9f1;
  --primary-bright: #f4f4f8;
  --secondary: #5146f9;
  --tertiary: #2f2f81;
  --gradient: linear-gradient(to right, #5146f9, #2f2f81);
}
body,
html {
    width: 100%;
	height: 100%;
	background-color: #2f2f81;
}

body, p {
	color: #24262a;
	font: 400 1rem/1.625rem;
	font-family: 'Open Sans', 'Noto Sans JP', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', 'Noto Sans JP', sans-serif;
}

h1 {
  font-size: 60px;
  font-weight: 500;
}

h2 {
  font-size: 30px;
  font-weight: 500;
  padding-left: 0.5em;
  border-left: 5px solid #5146f9;
}
h2 small {
  font-size: 0.7em;
  color: #5146f9;
  margin-bottom: 0.25em;
  display: block;
}

h3 {
  font-size: 24px;
  font-weight: 500;
}

h4 {
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 2rem;
}

h5 {
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 1.625rem;
}

h6 {
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.375rem;
}

.p-large {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.p-small {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.li-space-lg li {
	margin-bottom: 0.5rem;
}

a {
	color: #2f2f81;
	text-decoration: none;
}

a:hover {
	color: #4d5055;
	text-decoration: underline;
}

button {
  font-family: 'Open Sans', 'Noto Sans JP', sans-serif;
}

p, ul, h4 {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	background-color: #ffffff;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1rem;
	padding: 0.5em 0;
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
}

.navbar .navbar-brand {
	margin-right: 0;
	padding-top: 0.25rem;
	padding-bottom: 0.5rem;
}

.navbar .logo-image img {
	color: #24262a;
}
@media only screen and (max-width: 540px) {
  .navbar .logo-image img {
    width: 320px;
    height: auto;
  }
}
@media only screen and (max-width: 390px) {
  .navbar .logo-image img {
    width: 260px;
    height: auto;
  }
}

.navbar .logo-text {
	color: #24262a;
	font-weight: 500;
	font-size: 1.575rem;
	line-height: 1rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 4.75rem; /* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	overflow-y: auto;
	visibility: hidden;
	padding-right: 1rem;
	padding-left: 1rem;
	background-color: #ffffff;
	transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .nav-item .nav-link {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #24262a;
	text-decoration: none;
	transition: all 0.2s ease;
}

.navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
	color: #5146f9;
}

/* navbar-nav-sub */

@media (min-width: 1025px){
#navbarsExampleDefault {
	position: relative;
	bottom: -10px;
}

#navbarsExampleDefault .navbar-nav {
  position: absolute;
	top: -10px;
	right: 0px;
}

#navbarsExampleDefault .navbar-nav.navbar-nav-sub {
  position: absolute;
	top: -48px;
	right: 0px;
	font-size: 0.9em;
}
}
.navbar .navbar-nav.navbar-nav-sub .nav-item a {
  color: #666;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav.navbar-nav-sub .nav-link:focus,
.navbar-light .navbar-nav.navbar-nav-sub .nav-link:hover,
.navbar .dropdown-item:focus, .dropdown-item:hover,
.navbar .navbar-nav.navbar-nav-sub .dropdown-item:focus, .navbar .navbar-nav.navbar-nav-sub .dropdown-item:hover {
  color: #5146f9;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@keyframes fadeDropdown {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
	}
}

.navbar .dropdown-menu {
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	border: none;
	background-color: #ffffff;
}

.navbar .dropdown-item {
  color: #222;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 0.875rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  text-decoration: none;
}

.navbar .dropdown-item:hover {
  background-color: #ffffff;
  color: #5146f9;
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	margin: 0.5rem auto 0.5rem auto;
	border: none;
	background-color: #eae9f1;
}

.navbar .dropdown-item .badge {
  color: #fff;
  font-size: 0.75rem;
}

.navbar .dropdown-item:hover .badge {
  color: #fff;
}
/* end of dropdown menu */

.navbar .fa-stack {
	width: 2em;
	margin-right: 0.25rem;
	font-size: 0.75rem;
}

.navbar .fa-stack-2x {
	color: #5146f9;
	transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
	color: #ffffff;
}

.navbar .fa-stack:hover .fa-stack-1x {
	color: #5146f9;
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}


/******************/
/*     Header     */
/******************/
.header {
	/*padding-top: 7rem;
	padding-bottom: 5.5rem;
	background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../image/header-background.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;*/
	position: relative;
}
.header #carouselExampleFade {
	position: relative;
}
.header #carouselExampleFade > .container {
	position: absolute;
	top: 40%;
	right: 0;
	z-index: 1;
}
@media (max-width:992px) {
  .header #carouselExampleFade > .container {
	top: 35%;
  }
}
@media (max-width:576px) {
  .header #carouselExampleFade > .container {
    top: 28%;
  }
}

.header .card {
  padding: 15px;
  border-radius: 0;
  background-color: rgba(126, 112, 246, 0.7)
}
@media (max-width:576px) {
  .header .card {
    padding: 5px;
  }
}

/* Section Background */
.bgCarousel {
  height: 50vh;
  position: relative;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}
@media (max-width:992px) {
  .bgCarousel {
     height: 40vh;
  }
}
@media (max-width:576px) {
  .bgCarousel {
    height: 36vh;
  }
.header .card h4 {
  font-size: calc(0.975rem + .3vw)!important;
}
.header .card .btn {
  font-size: calc(0.725rem + .3vw)!important;
}
}

.bgCarousel__item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.bgCarousel__item:nth-child(1) {
  background-image: url(../image/home01.jpg);
}

.bgCarousel__item:nth-child(2) {
  background-image: url(../image/home02.jpg);
}

.bgCarousel__item:nth-child(3) {
  background-image: url(../image/home03.jpg);
}


/******************/
/*     Footer     */
/******************/
.footer {
	padding-bottom: 3rem;
	background-color: #7272a7;
}
.footer h6,
.footer a {
	color: #f8f9fa !important;
}
.bottom {
	background-color: #2f2f81;
}
.bottom a {
	color: #ffffff;
}
.bottom a:focus, .bottom a:hover {
	color: #8d88cf;
}

.footer .fa-stack {
	width: 2em;
	margin-bottom: 1.25rem;
	margin-right: 0.375rem;
	font-size: 1.5rem;
}

.footer .fa-stack .fa-stack-1x {
    color: #ffffff;
	transition: all 0.2s ease;
}

.footer .fa-stack .fa-stack-2x {
	color: #5146f9;
	transition: all 0.2s ease;
}

.footer .fa-stack:hover .fa-stack-1x {
	color: #5146f9;
}

.footer .fa-stack:hover .fa-stack-2x {
    color: #ffffff;
}


/*********************/
/*     Copyright     */
/*********************/
.copyright {
	padding-top: 1rem;
	padding-bottom: 1rem;
	background-color: #2f2f81;
}

.copyright .p-small {
	color: #ffffff;
}

.copyright a {
	color: #ffffff;
}

.copyright a:focus, .copyright a:hover {
  color: #8d88cf;
}


/******************************/
/*     Back To Top Button     */
/******************************/
a.back-to-top {
	position: fixed;
	z-index: 999;
	right: 12px;
	bottom: 12px;
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 30px;
	background: #888 url("../image/up-arrow.png") no-repeat center 47%;
	background-size: 18px 18px;
	text-indent: -9999px;
}

a:hover.back-to-top {
	background-color: #5146f9;
}


/********************/
/*      Topics      */
/********************/
.topics {
  background-color: #ffffff;
}
.topics .card {
  padding: 18px;
  border-radius: 0;
}
.topics .card.ict {
  border: 2px solid #5146f9;
}
.topics .card.ict h4 i {
  color: #5146f9;
}
.topics .card.hospis {
  border: 2px solid #00b3b5;
}
.topics .card.hospis h4 i {
  color: #00b3b5;
}

/***********************/
/*     Information     */
/***********************/
.information .container-fluid .row>div {
  background-color: #eae9f1;
}
.information .container-fluid .row>div:nth-child(2), .information .container-fluid .row>div:nth-child(4), .information .container-fluid .row>div:nth-child(5), .information .container-fluid .row>div:nth-child(7) {
  background-color: #f4f4f8;
}
@media only screen and (max-width: 992px) {
  .information .container-fluid .row>div:nth-child(4), .information .container-fluid .row>div:nth-child(5), .information .container-fluid .row>div:nth-child(8) {
    background-color: #eae9f1;
  }
  .information .container-fluid .row>div:nth-child(2), .information .container-fluid .row>div:nth-child(3), .information .container-fluid .row>div:nth-child(6), .information .container-fluid .row>div:nth-child(7) {
    background-color: #f4f4f8;
  }
}
@media only screen and (max-width: 540px) {
  .information .container-fluid .row>div:nth-child(3), .information .container-fluid .row>div:nth-child(5), .information .container-fluid .row>div:nth-child(7) {
    background-color: #eae9f1;
  }
  .information .container-fluid .row>div:nth-child(4), .information .container-fluid .row>div:nth-child(6), .information .container-fluid .row>div:nth-child(8) {
    background-color: #f4f4f8;
  }
}
.information .container-fluid .row>div:nth-child(1) {
  z-index: 10;
}
.information .container-fluid .row>div:nth-child(2) {
  z-index: 9;
}
.information .container-fluid .row>div:nth-child(3) {
  z-index: 8;
}
.information .container-fluid .row>div:nth-child(4) {
  z-index: 7;
}
.information .container-fluid .row>div:nth-child(5) {
  z-index: 6;
}
.information .container-fluid .row>div:nth-child(6) {
  z-index: 5;
}
.information .container-fluid .row>div:nth-child(7) {
  z-index: 4;
}
.information .container-fluid .row>div:nth-child(8) {
  z-index: 3;
}

/* Gradient Border And Background On Icons */
.information .fas {
  padding: 15px 0;
  background: -webkit-linear-gradient(top, #5146f9, #2f2f81);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Dropdown Menu */
.information .dropdown-menu {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.navbar .dropdown .dropdown-menu,
.information .dropdown .dropdown-menu {
  animation: fadeDropdown 0.2s; /* required for the fade animation */
}
@-webkit-keyframes fadeDropdown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeDropdown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 10.5rem;
	padding-bottom: 4rem;
	background-color: #24262a;
	background-image: url(../image/page.jpg);
	background-size: cover;
	background-position: right center;
	background-repeat: no-repeat;
}

.ex-header h1 {
	font-size: 36px;
	color: #ffffff;
}
@media (max-width:575.98px) {
.ex-header {
  padding-top: 8.5rem;
}
.ex-header h1 {
  font-size: 28px;
}
}
@media (max-width:991.98px) {
.ex-header {
  padding-top: 9.5rem;
}
}

.ex-basic-1 {
  background-color: #ffffff;
}
.ex-basic-1 p {
  line-height: 1.625rem;
  padding-bottom: 0.5rem;
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .media-body {
	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #f7f9fb;
}

/**********************/
/*        Form        */
/**********************/
.form-group {
	position: relative;
	margin-bottom: 1.25rem;
}

.label-control {
	position: absolute;
	top: 0.875rem;
	left: 1.5rem;
	color: #7d838a;
	opacity: 1;
	font-size: 0.875rem;
	line-height: 1.375rem;
	cursor: text;
	transition: all 0.2s ease;
}

.form-control-input:focus + .label-control,
.form-control-input.notEmpty + .label-control,
.form-control-textarea:focus + .label-control,
.form-control-textarea.notEmpty + .label-control {
	top: 0.125rem;
	color: #4d5055;
	opacity: 1;
	font-size: 0.75rem;
	font-weight: 700;
}

.form-control-input,
.form-control-select {
	display: block; /* needed for proper display of the label in Firefox, IE, Edge */
	width: 100%;
	padding-top: 1.125rem;
	padding-bottom: 0.125rem;
	padding-left: 1.5rem;
	border: 1px solid #cbcbd1;
	background-color: #ffffff;
	color: #4d5055;
	font-size: 0.875rem;
	line-height: 1.875rem;
	transition: all 0.2s;
	-webkit-appearance: none; /* removes inner shadow on form inputs on ios safari */
}

.form-control-select {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	height: 3.25rem;
	color: #7d838a;
}

select {
    /* you should keep these first rules in place to maintain cross-browser behavior */
    -webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: url('../image/down-arrow.png');
    background-position: 96% 50%;
    background-repeat: no-repeat;
    outline: none;
}

.form-control-textarea {
	display: block; /* used to eliminate a bottom gap difference between Chrome and IE/FF */
	width: 100%;
	height: 14rem; /* used instead of html rows to normalize height between Chrome and IE/FF */
	padding-top: 1.5rem;
	padding-left: 1.3125rem;
	border: 1px solid #cbcbd1;
	background-color: #ffffff;
	color: #4d5055;
	font-size: 0.875rem;
	line-height: 1.5rem;
	transition: all 0.2s;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
	border: 1px solid #a1a1a1;
	outline: none; /* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
	border: 1px solid #a1a1a1;
}

.checkbox {
	font-size: 0.75rem;
	line-height: 1.25rem;
}

input[type='checkbox'] {
	vertical-align: -10%;
	margin-right: 0.5rem;
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.25rem;
	border: 1px solid #5146f9;
	border-radius: 32px;
	background-color: #5146f9;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	border: 1px solid #24262a;
	background-color: transparent;
	color: #24262a;
}


/*************************/
/*     Media Queries     */
/*************************/	
@media only screen and (max-width: 428px) {
  .offcanvas-collapse {
  top: 3.75rem; /* adjusts the height between the top of the page and the offcanvas menu */
	}
}
@media only screen and (max-width: 540px) {
  h1 {
    font-size: 30px;
  }
  .para {
    width: 100%;
  }
  .swiper-container {
    width: 92%;
  }
  .swiper-button-prev {
    left: -16px;
    width: 22px;
    background-size: 22px 34px;
  }
  .swiper-button-next {
    right: -16px;
    width: 22px;
    background-size: 22px 34px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer>div>div {
		flex-direction: column;
  }
}

/* Min-width 768px */
@media (min-width: 768px) {

	/* Extra Pages */
	.ex-basic-1 .text-box {
		padding: 1.75rem 2rem 0.875rem 2rem;
	}
	/* end of extra pages */
}
/* end of min-width 768px */


/* Min-width 1025px */
@media (min-width: 1025px) {
	
	/* General Styles */
	.h2-heading {
		width: 35.25rem;
		margin-right: auto;
		margin-left: auto;
	}

	.p-heading {
		width: 46rem;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of general styles */


	/* Navigation */
	.navbar {
		padding-top: 0.75rem;
		background-color: #ffffff;
		box-shadow: none;
		transition: all 0.2s;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-top: 0.5rem;
		background-color: #ffffff;
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: #ffffff;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		-webkit-transform: none;
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}
	
	.navbar .nav-item .nav-link {
		padding-right: 0.625rem;
		padding-left: 0.625rem;
	}

	.navbar .dropdown-menu {
		margin-top: 0.25rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}
	
	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}
	/* end of navigation */


	/* Extra Pages */
	.ex-basic-1 {
		min-height: 50vh;
	}
	/* end of extra pages */
}
/* end of min-width 1025px */

/******************/
/*     Button     */
/******************/
.btn {
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out
}
.btn {
  border-radius: 0;
  font-weight: 700
}
.btn-group-lg > .btn,
.btn-lg {
  padding: 10px 18px;
  font-size: 18px;
  line-height: 1.3333333;
  border-width: 2px
}
.btn-xlg {
  padding: 16px 24px;
  font-size: 24px;
  line-height: 1.3333333;
  border-width: 3px
}
a.btn-default,
.btn-default {
  background-color: #5146f9;
  border-color: #5146f9;
  color: #fff;
  transition: background-color .2s ease-out, border-color .2s ease-out
}
a.btn-default:hover,
a.btn-default:focus,
a.btn-default:active,
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
  background-color: rgba(81, 70, 249, 0.6);
  border-color: #5146f9;
  color: #fff;
  transition: background-color .3s ease-in, border-color .3s ease-in
}
a.btn-default-transparent,
.btn-default-transparent {
  border-color: #5146f9;
  color: #5146f9;
  background-color: transparent;
  transition: background-color .2s ease-out, border-color .2s ease-out
}
a.btn-default-border,
.btn-default-border {
  border-color: #5146f9;
  color: #5146f9;
  background-color: #fff;
  transition: background-color .2s ease-out, border-color .2s ease-out
}
a.btn-default-transparent:hover,
a.btn-default-transparent:focus,
a.btn-default-transparent:active,
.btn-default-transparent:hover,
.btn-default-transparent:focus,
.btn-default-transparent:active,
a.btn-default-border:hover,
a.btn-default-border:focus,
a.btn-default-border:active,
.btn-default-border:hover,
.btn-default-border:focus,
.btn-default-border:active {
  color: #fff;
  background-color: #5146f9;
  background-color: rgba(81, 70, 249, 0.6);
  border-color: #5146f9;
  border-color: rgba(81, 70, 249, 0.8);
  transition: background-color .3s ease-in, border-color .3s ease-in
}
a.btn-default-light-transparent,
.btn-default-light-transparent {
  border-color: #fff;
  color: #fff;
  background-color: transparent;
  transition: background-color .2s ease-out, border-color .2s ease-out
}
a.btn-default-light-transparent:hover,
a.btn-default-light-transparent:focus,
a.btn-default-light-transparent:active,
.btn-default-light-transparent:hover,
.btn-default-light-transparent:focus,
.btn-default-light-transparent:active {
  color: #000;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.6);
  border-color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  transition: background-color .3s ease-in, border-color .3s ease-in
}
a.btn-default-dark-transparent,
.btn-default-dark-transparent {
  border-color: #000;
  color: #000;
  background-color: transparent;
  transition: background-color .2s ease-out, border-color .2s ease-out
}
a.btn-default-dark-transparent:hover,
a.btn-default-dark-transparent:focus,
a.btn-default-dark-transparent:active,
.btn-default-dark-transparent:hover,
.btn-default-dark-transparent:focus,
.btn-default-dark-transparent:active {
  color: #fff;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.6);
  border-color: #000000;
  border-color: rgba(0, 0, 0, 0.8);
  transition: background-color .3s ease-in, border-color .3s ease-in
}
a.btn-home {
  background-color: rgba(127, 94, 255, 0.75);
  border-color: #fff;
  color: #fff;
  font-weight: normal;
  transition: background-color .2s ease-out, border-color .2s ease-out
}
a.btn-home:hover,
a.btn-home:focus,
a.btn-home:active {
  background-color: rgba(81, 70, 249, 0.85);
  color: #fff;
  transition: background-color .3s ease-in, border-color .3s ease-in
}
a.btn-hosp,
.btn-hosp {
  background-color: #00b3b5;
  border-color: #00b3b5;
  color: #fff;
  transition: background-color .2s ease-out, border-color .2s ease-out;
  padding: 10px 2em;
}
a.btn-hosp:hover,
a.btn-hosp:focus,
a.btn-hosp:active,
.btn-hosp:hover,
.btn-hosp:focus,
.btn-hosp:active {
  background-color: rgba(0, 179, 181, 0.6);
  border-color: #00b3b5;
  color: #fff;
  transition: background-color .3s ease-in, border-color .3s ease-in
}
a.btn-general,
.btn-general {
  background-color: #ff6600;
  border-color: #ff6600;
  color: #fff;
  transition: background-color .2s ease-out, border-color .2s ease-out;
  padding: 10px 2em;
}
a.btn-general:hover,
a.btn-general:focus,
a.btn-general:active,
.btn-general:hover,
.btn-general:focus,
.btn-general:active {
  background-color: rgba(205, 102, 0, 0.6);
  border-color: #ff6600;
  color: #fff;
  transition: background-color .3s ease-in, border-color .3s ease-in
}

/********************/
/*      Twitter     */
/********************/
.twitter-widget {
  border: 2px solid #1d9bf0;
}
.twitter-widget h4 {
  padding: 18px 0 0 18px;
}
.twitter-widget h4 i {
  color: #1d9bf0;
}

/********************/
/*     Original     */
/********************/
.table {
	border-bottom: 1px solid #dee2e6;
}
ol.manual {
	margin-left: 1.5em;
} 
ol.manual li {
    list-style: outside;
    list-style-type: decimal !important;
} 
dl.news {
  margin-bottom: .25em;
  padding: .5em;
  border-bottom: dashed 1px #999
}
dl.news dt, dl.news dd {
  text-align: left
}
dl.news dt {
  padding: .35em 0;
  color: #5146f9;
  position: relative
}
dl.news dd {
  color: #1f1f1f;
  padding: .35em 0
}
dl.news dd p {
  line-height: inherit !important
}
dl.news dd p:last-of-type {
  margin-bottom: 0 !important
}
dl.news a,
dl.news a:visited {
  color: #1f1f1f;
  text-decoration: underline !important;
  transition: all .3s ease
}
dl.news a:hover {
  color: #888;
  text-decoration: none !important;
  transition: all .3s ease
}
dl.news:last-child {
  margin-bottom: 0
}
@media screen and (min-width:991px) {
  dl.news dt {
    clear: left;
    float: left;
    width: 9.5em
  }
  dl.news dd {
    margin-left: 9.5em
  }
}
dl.news span
{
  color: #fff;
  font-size: 0.875em;
  font-weight: 500;
  margin-left: 1.5em;
  padding: 0.25em 0.75em;
  display: inline-block;
  text-align: center;
}
dl.news span.hosp,
.hosp {
  color: #fff;
  background-color: #00b3b5;
}
dl.news span.general,
.general {
  color: #fff;
  background-color: #ff6600;
}

.badge {
	border-radius: 0;
}


.text-primary {
  color: #5146f9 !important
}
.bg-primary {
  background-color: #eae9f1 !important
}
.btn-primary {
  color: #fff;
  background-color: #5146f9;
  border-color: #5146f9
}
.btn-primary:hover {
  color: #fff;
  background-color: #5146f9;
  border-color: #2f2f81
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #fff;
  background-color: #5146f9;
  border-color: #2f2f81;
  box-shadow: 0 0 0 .25rem rgba(81, 70, 249, .5)
}
.btn-check:active + .btn-primary, .btn-check:checked + .btn-primary, .btn-primary.active, .btn-primary:active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #2f2f81;
  border-color: #2f2f81
}
.btn-check:active + .btn-primary:focus, .btn-check:checked + .btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .25rem rgba(81, 70, 249, .5)
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #5146f9;
  border-color: #5146f9
}


.btn-outline-primary {
  color: #5146f9;
  border-color: #5146f9
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #5146f9;
  border-color: #5146f9
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  box-shadow: 0 0 0 .25rem rgba(47, 47, 129, .5)
}
.btn-check:active + .btn-outline-primary, .btn-check:checked + .btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
  color: #fff;
  background-color: #5146f9;
  border-color: #5146f9
}
.btn-check:active + .btn-outline-primary:focus, .btn-check:checked + .btn-outline-primary:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus, .btn-outline-primary:active:focus {
  box-shadow: 0 0 0 .25rem rgba(47, 47, 129, .5)
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #5146f9;
  background-color: transparent
}

.alert-primary {
  color: #2f2f81;
  background-color: #eae9f1;
  border-color: #b6d4fe
}
.alert-primary .alert-link {
  color: #06357a
}

.list-group-item-primary {
  color: #2f2f81;
  background-color: #eae9f1
}
.list-group-item-primary.list-group-item-action:focus, .list-group-item-primary.list-group-item-action:hover {
  color: #2f2f81;
  background-color: #b0b5d0
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #2f2f81;
  border-color: #2f2f81
}

.link-primary {
  color: #5146f9
}
.link-primary:focus, .link-primary:hover {
  color: #2f2f81
}

.border-primary {
  border-color: #5146f9 !important
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #5146f9
}


/**********************/
/*       for IE       */
/**********************/
@media all and (-ms-high-contrast: none){
 .information .fas {
    color: #5146f9;
  }
 .navbar-nav a:hover {
    background-color: rgba(255,255,255,0);
  }
 .footer a:hover, .footer .fab:hover {
	color: #eae9f1;
  }
}
