/*
 * General
 */
a {
	text-decoration: none;
	color: var(--bs-dark);
}
.card.rounded {
	border-radius: 1rem !important;
}


/*
 * Navbar
 */
 .underline-animation {
	background: linear-gradient(currentColor 0 0) 0 100% /var(--d, 0) 3px no-repeat;
	transition: 0.5s;
}

.underline-animation:hover {
	--d: 100%;
	color: var(--bs-tertiary) !important;
}

.underline-animation-active {
	color: var(--bs-tertiary) !important;
	border-bottom: 3px solid var(--bs-tertiary);
	padding-bottom: .2rem;
}

.navbar {
	position: fixed;
	z-index: 999;
	width: 100%;
	border-top: 4px solid var(--bs-tertiary);
	background-color: var(--bs-white);
}

.navbar.nav-homepage.scrolled {
	background-color: var(--bs-tone-16);
	opacity: 1;
	transition: background-color 200ms linear;
}

.navbar .nav-item > .nav-link.active {
	--d: 100%;
	color: var(--bs-tertiary) !important;
	background: linear-gradient(currentColor 0 0) 0 100% /var(--d, 0) 3px no-repeat;
}

.navbar-mobile-content {
	background-color: var(--bs-tertiary);
}

.navbar .nav-item .nav-link {
	font-family: 'IBM-Medium';
	color: #000;
	padding-bottom: .2rem;
	padding-top: .1rem;
}

.navbar .nav-item .nav-link:hover, .navbar .nav-item .nav-link:focus, .navbar .nav-item .nav-link:active {
	color: var(--bs-tertiary) !important;
}

.navbar .nav-item a.lang {
	font-family: var(--bs-font-nav);
	text-decoration: none;
	color: #fff;
}

.navbar .nav-item a.lang.active {
	color: var(--bs-tertiary) !important;
}

.dropdown-hover-content {
	display: none;
	position: absolute;
}

.dropdown-hover:hover .dropdown-hover-content {
	display: block;
	background-color: white;
}
.dropdown-hover:hover a.dropdown-item:active
{
	color: #000 !important;
	background-color: var(--bs-primary);
}

.navbar .nav-item a.lang.text-dark
{
	color: #000 !important;
}

.main_nav li a.dropdown-item:active,
.main_nav li a.dropdown-item.active {
	color: #FFFFFF;
}
.main_nav li a:hover,
.main_nav li.active a
{
	color: var(--bs-primary);
}
.main_nav li.active::after
{
	background: var(--bs-primary);
}
.search-input-nav{
	width: 160px;
}

.btn {
	border-radius: 0.6rem;
	padding: 0.5rem 1.2rem;
}
.form-control {
	border-radius: 2rem;
}
.form-control-xl {
	min-height: calc(2em + 1rem + 2px);
	padding: 1rem 1.5rem;
	font-size: 1.2rem;
	border-radius: 3rem !important;
}
a.badge {
	border-radius: 1.5rem;
	text-decoration: none;
	margin: 0.3rem;
	padding: 0.5rem 0.6rem 0.4rem 0.6rem;
}
.badge-secondary {
	background-color: var(--bs-tone-09)!important;
	color: var(--bs-primary) !important;
}

.notification {
	position: fixed;
	width: 300px;
	right: -500px;
	box-shadow: 0px 0px 10px 3px black;
	height: 100%;
	top: 0px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	z-index: 10;
}

.notification.show {
	right: 0px;
}

.icon-home
{
	vertical-align: unset;
}

/*
 * Footer
 */


.dropdown-slide-down {
	max-height: 0px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	background-color: var(--bs-tone-16);
	border-radius: 10px;
	border: 0px;
	width: max-content;
}

.dropdown-slide-down.show {
	max-height: 500px;
	border: 1px solid var(--bs-gray-dark);
}

.dropdown-user-slide-down {
	max-height: 0px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	background-color: var(--bs-tone-16);
	border-radius: 10px;
	border: 0px;
	width: max-content;
}

.dropdown-user-slide-down.show {
	max-height: 500px;
	border: 3px solid var(--bs-tone-13);
}

.bg-footer {
	background-color: var(--bs-tone-03) !important;
	/* background: url('../img/bg/footer.png');
	background-size: cover;
	background-position: center left; */
}

a.text-url
{
	color: var(--bs-tertiary) !important;
	 text-decoration: underline !important;
	
}

/* 
 * Font Sizes
 */

.fs-small { font-size: 90%; }
.fs-smaller { font-size: 80%; }
.fs-normal { font-size: 1rem; }
.fs-big { font-size: 120%; }
.fs-bigger { font-size: 140%; }


/*
|--------------------------------------------------------------------------
| Text line limit
|--------------------------------------------------------------------------
*/
.text-1-line {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.text-2-line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.text-3-line {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.text-4-line {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.text-5-line {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.text-6-line {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.text-7-line {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.text-8-line {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.text-9-line {
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-course .card-header {
	height: 160px;
}

.bg-btn-primary {
	background-color: #B98A24 !important;
}


.line-border-left {
	position: absolute;
	top: 0;
	width: 5px;
	height: 100%;
	left: -10px;
	background-color: var(--bs-tone-05) !important;
}

.line-border-left-title {
	position: absolute;
	top: -5%;
	width: 2px;
	height: 100%;
	left: -10px;
	background-color: var(--bs-tone-05) !important;
}

.detail-line-border-left {
	height: fit-content;
	position: relative;
}

.detail-border-underline {
	position: relative;
}

.line-underline {
	height: 4px;
	position: inherit;
	display: block;
	width: 17%;
	left: 41%;
	background-color: var(--bs-tone-05);
}

.line-underline-cat {
	height: 4px;
	position: inherit;
	display: block;
	width: 10%;
	left: 45%;
	background-color: var(--bs-tone-05);
}

.line-underline-text-cat {
	height: 4px;
	position: inherit;
	display: block;
	width: 12%;
	background-color: var(--bs-tone-05);
}

.img-home-backgroud {
	width: 100%;
	top: 0;
	position: absolute;
	z-index: -1;
	/* height: 535; */
	object-fit: contain;
	right: 0;
	left: 0;
	max-height: 40vw;
}

.text-left
{
	text-align: left;
}

.line-footer {
	padding: 10px;
	margin-right: 20px;
	width: 1px;
	border-right: 1px solid;
	color: var(--bs-tone-04);
	opacity: 0.2;
}

.btn-dark.active {
	color: #fff !important;
	background-color: #212529 !important;
	border-color: #212529 !important;
}

.btn-dark.inactive {
	border: 2px solid #212529;
	color: #212529;
	background-color: transparent;
}

@media (min-width: 576px) {

}

@media (min-width: 768px) {
	
}

@media (min-width: 992px) {

}

@media (min-width: 1200px) {
	.search-input-nav{
		width: 320px;
	}
}

@media (min-width: 1400px) {

}