:root {
	--main-color: #060096;
  	--sub-color: #c5c7dc;
  	--bg-color: #eaf4fe;
  	--body-color: #000;
  	--menu-bg: #060096;
  	--menu-color: #fff;
  	--line-color: #e3e3e3;
  	--grey-bold: #737272;
  	--grey: #f6f6f6;
  	--red: #da2827;
  	--orange: orange;
  	--blue: #0c6285;
  	--gradient: linear-gradient(90deg,#104e73 0,#097696 100%);
  	--btn-color: #f79031;
  	--myfont: 'Open Sans', sans-serif;
  	--hover-color: orange;
}
html {
	scrollbar-width: thin;
}
body{
	font-family: var(--myfont);
	color: var(--body-color);
	font-size: 14px;
	line-height: 24px;
}
*,
*:before,
*:after {
  	box-sizing: border-box;
}
a {text-decoration: none;color: var(--body-color)}
a:hover {text-decoration: none;color: var(--main-color)}
p{margin-bottom: 0}
.h1, .h2, .h3, h1, h2, h3 {
  	margin: 0;
}
button:focus {
  outline: unset;
}
input:focus-visible {
  outline: unset;
}
.fullwidth{width: 100%;}
.fullheight{height: 100%;}
.container-fluid, .row {
  	margin-left: 0;
  	margin-right: 0;
  	padding: 0;
}
.no-padding{padding: 0;}
.center{text-align: center;}
.show991{display: none;}
.show767{display: none;}
.show480{display: none;}
.clear10{clear: both;height: 10px;}
.clear20{clear: both;height: 20px;}
.clear40{clear: both;height: 40px;}
.flex{display: flex;}
.flex-bw{display: flex;justify-content: space-between;}
.flex-se{display: flex;justify-content: space-evenly;}
.editor {
	max-width: 100%;
}
.editor img, .editor table, .editor iframe {
	max-width: 100%;
}
.editor iframe {
	width: 100%;
	min-height: 400px;
}
.editor p,
.editor h1,
.editor h2,
.editor h3,
.editor h4,
.editor h5 {
	margin-bottom: 10px;
}
.editor br {
	margin-bottom: 5px;
}
img {
	width: auto;
	height: auto;
}
ul{list-style-type: none;padding: 0;margin: 0}
.no-padding-right{padding-right: 0;}
.no-padding-left{padding-left: 0;}
.items-center {
	display: flex;
	align-items: center;
}
.justify-content-center {
	display: flex;
	align-items: center;
	justify-content: center;
}
.form-control {
	border: 1px solid var(--line-color);
	border-radius: 0;
	box-shadow: unset;
	height: 40px;
	font-size: var(--font-size-small);
}
.form-control:focus, .form-control:focus-visible {
	outline: none;
	box-shadow: none;
}
.webkit-line-clamp-1 {
    width: 500px;
    overflow: hidden;
    white-space: nowrap; 
    text-overflow: ellipsis;
}
.webkit-line-clamp-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    line-height: 22px;
    -webkit-line-clamp: 2;
    height: 44px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.webkit-line-clamp-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 22px;
    -webkit-line-clamp: 3;
    height: 68px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.webkit-line-clamp-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 19px;
    -webkit-line-clamp: 4;
    height: 78px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.mt-10 {
	margin-top: 10px;
}
.mt-15 {
	margin-top: 15px;
}
.mt-20 {
	margin-top: 20px;
}
.mt-30 {
	margin-top: 30px;
}
.mt-40 {
	margin-top: 40px;
}
.mb-10 {
	margin-bottom: 10px;
}
.mb-15 {
	margin-bottom: 15px;
}
.mb-20 {
	margin-bottom: 20px;
}
.mb-30 {
	margin-bottom: 30px;
}
.mb-40 {
	margin-bottom: 40px;
}
.title-sweet {
	font-weight: 600;
	font-size: 22px;
	display: inline-block;
	margin-top: 15px;
	margin-bottom: 5px;
}
.border-radius-10 {
	border-radius: 10px;
}
.white-bg {
	background-color: #fff;
}
section.has-bg .white-bg {
	padding: 10px;
	box-shadow: 0 0 20px -9px #e1e1e1;
}
/**************************************************
 * 
 * **/
.bg-overlay {
	background-color: #000000c4;
	z-index: 4;
	top: 0;
	left: 0;
	position: fixed;
	overflow: auto;
	width: 100vw;
	height: 100vh;
	opacity: 0;
	visibility: hidden;
}
.bg-overlay.active {
	opacity: 1;
	visibility: visible;
}
.first-menu {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.first-menu > li {
	position: relative;
}
.first-menu > li > a {
	font-size: 12x;
	font-weight: 700;
	padding: 8px 0;
	display: flex;
	align-items: center;
	color: var(--menu-color);
	text-transform: uppercase;
}
.p-help {
	margin-left: 5px;
}
.seccond-menu {
	position: absolute;
	left: 0;
	top: 100%;
	background: #fff;
	z-index: 9;
	width: 220px;
	height: 0;
	box-shadow: 0 0 20px -10px #0000008f;
	opacity: 0;
	overflow: hidden;
}
.seccond-menu > li > a {
	padding: 8px 14px;
	width: 100%;
	display: inline-block;
	font-weight: 600;
}
.seccond-menu > li:hover > a {
	background: var(--main-color);
	color: var(--menu-color);
}
.first-menu > li:hover .seccond-menu {
	opacity: 1;
	height: auto;
	transition: all .3s ease-out;
}
.first-menu > li:last-child .seccond-menu {
	left: unset;
	right: 0;
}
.white-cl {
	color: white;
}
.red-cl {
	color: var(--red);
}
#modalSearch .modal-content {
  	padding: 40px;
}
#modalSearch .modal-content input {
	border: none;
	border-radius: 0;
  	border-bottom: 1px solid var(--line-color);
	box-shadow: unset;
	font-size: 13px;;
}
#modalSearch .modal-content form {
	position: relative;
}
.set-20-svg {
	position: absolute;
	top: 0;
	right: 0;
	color: var(--main-color);
	font-size: 22px;
	height: 43px;
	width: 43px;
	text-align: center;
	padding: 0;
	font-weight: 900;
	background: none;
	border: none;
}
.set-20-svg svg {
	width: 20px;
	height: 20px;
	fill: #111111111;
}
.modal-open {
	padding: 0 !important;
}
header {
	
}
.header-top {
	padding: 10px 0;
}
.header-bottom {
	background-color: var(--menu-bg);
}
header.header-fixed .header-bottom, header.header-fixed .header-bottom-mobile {
	position: fixed;
	width: 100%;
	z-index: 2;
	top: 0;
	left: 0;
	box-shadow: 0 0 6px -2px #000;
}
.pagi {
	gap: 4px;
}
.pagi a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: #f2f2f2;
}
.pagi a:hover, .pagi a.active {
	background: var(--main-color);
	color: #fff;
}
.breadcrumbs {
  	padding: 8px 0;
}
.section-breadcrumbs {
	height: 300px;
	background-color: var(--main-color);
	background-image: var(--background);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.breadcrumbs span > a, .breadcrumbs span {
	color: #fff;
}
.breadcrumbs span.space {
	margin: 0 6px;
}
.breadcrumbs span.active {
	color: var(--red);
	font-weight: 600;
}
.breadcrumbs .main-title {
	margin-bottom: 10px;
}
.section-breadcrumbs .container {
	height: 100%;
}
.box-breadcrumbs {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	background: #000000a6;
	padding: 20px;
}
.box-tit-page {
	margin-bottom: 20px;
	border-bottom: 1px solid var(--red);
}
.tit-page {
	display: inline-block;
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: 700;
	line-height: 28px;
}
.grid-main-column {
	display: grid;
	grid-template-columns: calc(100% - 340px) 325px;
	grid-gap: 15px;
}
.item .name {
	font-weight: 600;
}
.main-block {
	margin-bottom: 40px;
}
.main-title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
	padding-left: 20px;
	line-height: 26px;
}
.main-title:before {
	content: '';
	position: absolute;
	width: 9px;
	height: 100%;
	left: 0;
	top: 0;
	background: var(--main-color);
	border-radius: 20px;
}
.item.item-news .block-details .date {
	color: var(--grey-bold);
}
.form-search {
	background: #fff;
	height: 40px;
	overflow: hidden;
	border: 1px solid var(--line-color);
}
.form-search > input {
	border: none;
	outline: 0;
}
.form-search > button {
	border: none;
	background: none;
	outline: 0;
	height: 100%;
	box-shadow: unset !important;
}
.register-member {
	border: 1px solid var(--main-color);
	background: var(--main-color);
	color: #fff;
	height: 86px;
	overflow: hidden;
	cursor: pointer;
}
.register-member span {
	width: 80px;
	height: 100%;
	background: #fff;
}
.register-member .flex.items-center {
	width: 100%;
	height: 100%;
}
.register-member div.center {
	width: calc(100% - 80px);
}
.register-member div.center .name-re {
	font-size: 16px;
	text-transform: uppercase;
}
.register-member div.center .sub-re {
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
}
.aside-list {
	display: grid;
	grid-template-columns: 100%;
	grid-gap: 20px;
}
.aside-list.grid-for-item .item.item-news {
	display: grid;
	grid-template-columns: 110px 1fr;
	grid-gap: 10px;
}
.aside-list .item.item-news .block-details .name {
	font-size: 14px;
	line-height: 22px;
	font-weight: 500;
}
#datetimepickerContainer {
	position: relative;
}
#datetimepickerContainer .perfect-datetimepicker {
	width: 100%;
	border-color: var(--line-color);
}
#datetimepickerContainer .perfect-datetimepicker .buttonpane {
	border-color: var(--line-color);
}
.calendar-myset {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--main-color);
	left: 0;
	top: 0;
	z-index: 1;
	padding: 15px;
	padding-right: 20px;
	display: none;
	border-radius: 4px;
}
.calendar-myset .editor.white-cl a {
	color: #fff !important;
}
.btn-close-myset {
	position: absolute;
	right: 2px;
	top: 2px;
	background: #ccc;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.social-media {
	background-color: #eef3f7;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
} 
.social-top {
  	position: relative;
  	width: 100%;
  	height: 60px;
}
.social-top:before {
	position: absolute;
	width: 100%;
	height: 100%;
	content: '';
  	background-image: url('../img/bn-social.jpg');
  	background-size: cover;
  	background-repeat: no-repeat;
  	background-position: center;
}
.social-top:after {
	position: absolute;
	width: 100%;
	height: 100%;
	content: '';
  	background-color: #00000096;
}
.social-top .block-details {
	padding: 10px 20px;
	width: 100%;
	height: 100%;
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	z-index: 1;
}
.social-top .name {
	font-weight: 700;
}
.social-bot {
	padding: 20px 10px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 1px;
}
.item-social a {
	padding: 5px;
	width: 100%;
	display: inline-block;
}
.item-social img {
	width: 18px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(8%) saturate(7468%) hue-rotate(245deg) brightness(109%) contrast(94%);
}
.item-social .name {
	text-transform: uppercase;
	font-size: 12px;
}
.footer-top {
	background: #eaeaea;
	padding: 10px 0;
}
.menu-ft {
	display: flex;
	gap: 20px;
}
.grid-footer {
	display: grid;
	grid-template-columns: calc(75% - 15px) calc(25% - 15px);
	grid-gap: 30px;
	position: relative;
  	z-index: 1;
}
.grid-content-ft {
	display: grid;
	grid-template-columns: calc(50% - 15px) calc(50% - 15px);
	grid-gap: 30px;
}
.footer-bottom {
	padding: 40px 0;
	line-height: 32px;
	background-image: var(--background);
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}
.footer-bottom:before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #063ad5b8;
}
.tit-col-ft {
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
}
.ul-col-ft li a {
	color: #fff;
}
.modal .close {
	position: absolute;
	right: 10px;
	top: 10px;
}
#modalRegisterMember .main-title {
	margin: 0;
	margin-top: 10px;
}
.modal .btn.btn-primary {
	background: #000;
	border-color: #000;
}
#modalRegisterMember .modal-header {
	padding-bottom: 0;
	border: none;
}
#modalRegisterMember .modal-content {
	background-image: var(--background);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom;
	position: relative;
	background-color: #f0ddc3;
}
#modalRegisterMember .form-control {
	color: #000;
	border-color: transparent;
	background: #00000017;
}
#modalRegisterMember .form-control::placeholder {
	color: #000;
}
#modalRegisterMember.modal.fade.in {
	display: flex !important;
	align-items: center;
}
.btn-view-detail {
	padding: 8px 34px;
	font-size: 12px;
	text-transform: uppercase;
	color: #fff;
	background: var(--main-color);
	border: 1px solid var(--main-color);
	border-radius: 4px;
	overflow: hidden;
	display: inline-block;
	margin-top: 40px;
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px transparent;
	position: relative;
	transition: color 0.3s ease-out;
}
.btn-view-detail > span {
	font-size: 18px;
  	margin-left: 6px;
}
.btn-view-detail::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
	transition: -webkit-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
	transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.btn-view-detail:hover {
	color: var(--main-color);
	-webkit-transform: scaleX(1);
  	transform: scaleX(1);
}
.btn-view-detail:hover::before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}
.modal-dialog.modal-dialog-centered {
	margin: auto;
}
.item .name,
.item .desc {
	text-align: justify;
}
.item .webkit-line-clamp-2, 
.item .webkit-line-clamp-3, 
.item .webkit-line-clamp-4 {
	text-align: left;
}
#back-to-top {
	position: fixed;
	right: 15px;
	bottom: 100px;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #aeace1;
	cursor: pointer;
	border-radius: 4px;
	z-index: 1;
	box-shadow: 0 0 8px -5px #fff;
	opacity: 0;
	transition: all .5s ease-out;
}
#back-to-top:hover {
	color: #fff;
	background: #060096;
}
#back-to-top.active {
	opacity: 1;
	transition: all .5s ease-in;
}
.block-gkpv > a {
	width: 100%;
	background: var(--main-color);
	height: 64px;
	border-radius: 10px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease-out;
}
.block-gkpv > a > h2 {
	font-size: 22px;
  	font-weight: 600;
}
.block-gkpv > a:hover {
	background: var(--sub-color);
	color: #000;
	transition: all .3s ease-in;
}



@media(max-width: 1199px){
	.first-menu, .menu-and-call.flex.items-center {
		gap: 10px;
	}
	.first-menu > li > a {
		font-size: 11px;
	}
	#back-to-top { 
		right: 8px;
	}
}
@media(max-width: 991px){
	.hide991 {
		display: none;
	}
	.show991 {
		display: block;
	}
	.header-mobile {
		width: 100%;
	}
	.header-bottom-mobile {
		background-color: var(--menu-bg);
		height: 60px;
		display: flex;
		align-items: center;
	}
	.btn-search-head {
		background: var(--menu-color);
		border: none;
		width: 32px;
	    height: 32px;
	    border-radius: 100%;
	    position: relative;
		display: flex;
		align-items: center;
		justify-content: center;;
	}
	.btn-search-head i {
		font-size: 18px;
		position: relative;
	  	z-index: 1;
	  	color: var(--main-color);
	}
	.btn-search-head:before {
		content: '';
	    width: 42px;
	    height: 42px;
	    position: absolute;
	    left: -5px;
	    top: -5px;
	    background: var(--menu-color);
	    opacity: .2;
	    border-radius: 100%;
	}
	.menu-bar {
	  	cursor: pointer;
	}
	.menu-bar i {
		font-size: 24px;
		color: var(--menu-color);
	}
	#nav-mobile {
		position: fixed;
		top: 0;
		left: -100px;
		width: 0;
		height: 100%;
		background: #fff;
		z-index: 99;
		opacity: 0;
		visibility: hidden;
		transition: all .5s ease;
	}
	#nav-mobile.active {
		left: 0;
		width: 520px;
		max-width: 80%;
		opacity: 1;
		visibility: visible;
		transition: all .5s ease;
	}
	.first-menu-mob > li {
		width: 100%;
		position: relative;
	}
	.first-menu-mob > li > a {
		width: 100%;
		height: 44px;
		display: flex;
		align-items: center;
		padding-left: 15px;
		padding-right: 4px;
		font-weight: 600;
		text-transform: uppercase;
		border-bottom: 1px solid var(--line-color);
	}
	.first-menu-mob > li.has-sub > a {
		width: calc(100% - 44px);
	}
	.p-help-mob {
		width: 44px;
		height: 44px;
		position: absolute;
		right: 0;
		top: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		border-left: 1px solid var(--line-color);
		border-bottom: 1px solid var(--line-color);
		cursor: pointer;
	}
	.p-help-mob svg {
		width: 20px;
		margin: 0;
	}
	.seccond-menu-mob {
		height: 0;
		opacity: 0;
		visibility: visible;
		transition: all .5s ease;
	}
	.seccond-menu-mob > li > a {
		width: 100%;
		height: 44px;
		display: flex;
		align-items: center;
		border-bottom: 1px solid var(--line-color);
		padding-left: 30px;
		padding-right: 4px;
	}
	.first-menu-mob > li.active > .seccond-menu-mob {
		height: auto;
		opacity: 1;
		visibility: visible;
		transition: all .5s ease;
	}
	.logo-nav {
		width: 140px;
	}
	.head-nav-mob {
		padding: 10px;
		border-bottom: 1px solid var(--line-color);
		background: var(--menu-bg);
	}
	.close-nav-mob {
		font-size: 18px;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.logo-text > a > p {
		color: var(--menu-color);
	}
	.logo-text-big {
	  	font-size: 18px;
	  	font-weight: 700;
	}
	.grid-main-column {
		display: grid;
		grid-template-columns: calc(100% - 275px) 260px;
		grid-gap: 15px;
	}
	section.has-bg .white-bg {
		padding: 10px;
	}
	/*.aside-list .item.item-news .block-details .name {
		font-size: 13px;
		line-height: 18px;
	}*/
	.main-block {
	  	margin-bottom: 20px;
	}
	.main-title {
		font-size: 16px;
		line-height: 26px;
		margin-bottom: 20px;
	}
	.social-bot {
		grid-template-columns: 1fr 1fr;
	}
}
@media(max-width: 767px){
	.show767 {
		display: block;
	}
	.hide767 {
		display: none;
	}
	.grid-main-column {
		grid-template-columns: 100%;
	}
	.header-bottom-mobile  > .container {
		width: 100%;
	}
	.grid-footer {
		grid-template-columns: 100%;
	}
	/*.aside-list .item.item-news .block-details .name {
		font-size: 15px;
		line-height: 22px;
	}*/
	.social-bot {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
	#result-register .main-block {
		margin-bottom: 0;
	}
}
@media(max-width: 480px){
	.hide480 {
		display: none !important;
	}
	.show480 {
		display: block;
	}
	.grid-content-ft {
		grid-template-columns: 100%;
	}
	/*.aside-list .item.item-news .block-details .name {
	    font-size: 14px;
	    line-height: 20px;
  	}*/
  	.item-social .name {
  		font-size: 10px;
  	}
  	.footer-bottom {
  		line-height: 26px;
  	}
  	.editor iframe {
		width: 100%;
		min-height: 300px;
	}
}
.first-menu a{font-size:12px;}
.register-member div.center .name-re{font-size:14px;}
.register-member div.center .sub-re,
.block-gkpv > a > h2{font-size:18px;}