* {
    margin: 0px;
    padding: 0px;
}
@font-face {
    font-family: 'UTM Swiss Condensed';
    src: url('/uploads/fonts/UTM Swiss CondensedBold.ttf');
    font-weight: bold;
    font-style:italic;
}
.cl {
    clear: both;
}
.paddingleftright {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.paddingleftright5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}
.paddingleftright10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}
a {
    color: #56A5D5;
    text-decoration: none;
}
a:hover {
    color: #96c5ee;
    text-decoration: none;
}
body {
    background: #f3f3f5;
    font-size: 18px;
}
.d-flex{
	display: flex;
}
.flex-wrap{
	flex-wrap: wrap;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
.header {
    display: flex;
    background: #414a5c;
    padding: 10px 0px;
    height: 90px;
    line-height: 40px;
	flex-direction: column;
	justify-content: center;
}
.header__wraper{
	align-items: center;
}
.menutop {
    list-style: none;
    display: flex;
    justify-content: right;
    margin: 0;
}
.menutop li {
}
.menutop li a {
    text-decoration: none;
    color: #fff;
    padding: 0 20px;
	display: inline-block;
	line-height: 90px;
	height: 90px;
}
.activea {
    background: #2d3646;
    font-weight: bold;
}
.menuleft {
    background: #fff;
    border-radius: 5px;
}
.menuleft ul {
    list-style: none;
    margin-bottom: 0px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.menuleft ul li {
    padding-left: 10px;
    padding-right: 10px;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #ccc;
}
.menuleft ul li:hover {
    background: #f4f5f7;
}
.menuleft ul li:hover a {
    color: #c02a22;
}
.menuleft ul li a {
    text-decoration: none;
    padding: 10px 0px;
    font-size: 14px;
    color: #a71c14;
}
.menuleft ul li:last-child {
    border-bottom: 0px;
    border-radius: 0px 0px 5px 5px;
}
.menuleft ul li:first-child {
    border-radius: 5px 5px 0px 0px;
}
.slider__item{
	position: relative;
}
.slider__content{
	position: absolute;
	top:0;
	right: 50px;
	height: 100%;
	padding:30px 40px;
	max-width: calc(48vw - 50px);
	color:#fff;
	background: #00000091;
}
.slider__title{
	position: relative;
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: 2px solid #fff;
	transform: translateX(100%);
	opacity:0;
	transition: all 0.5s 0.5s;
}
.slider__title:after{
	content:"";
	width: 00%;
	height: 3px;
	display: inline-block;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all 0.5s 1s;
}
.slider__description{
	margin: 20px 0;
    text-align: justify;
	opacity:0;
	transform: translateY(50%);
	transition: all 0.5s 1s;
}
.slider__viewmore{
	color:#fff;
	float: right;
	opacity:0;
	transition: all 0.5s 1.5s;
}
/*
.active .slider__item .slider__title{
    animation: slideInRight; 
    animation-duration: 1s; 
    animation-delay: 0.7s; 
}
*/
.active .slider__item .slider__title{
	opacity:1;
	transform: translateX(0%);
}
.active .slider__item .slider__title:after{
	width: 40%;
}
.active .slider__item .slider__description{
	opacity:1;
	transform: translateY(0%);
}
.active .slider__item .slider__viewmore{
	opacity:1;
}
.carousel-control.left.slider__left, .carousel-control.right.slider__right{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 80px;
	background: #5b6880;
	background-image: none;
}
.owl-nav{
    height: 0;
    margin: 0!important;
}
.maincontent{
	padding:40px 0;
}
.maincontent-fluid{
    padding-left:0;
    padding-right:0;
}
.bg_drblue{
	background: #41495c;
	color:#fff;
}

.about__title{
	font-size:20px;
	font-weight: bold;
	border-bottom:1px solid #232a34;
	padding-bottom:5px;
	margin-bottom:10px;
}
.about__description{
	line-height: 34px;
	text-align: justify;
	font-size: 18px;
	margin-bottom: 25px;
}
.services{
	display: flex;
	flex-direction: column;
	/*justify-content: center;*/
	height: 100%;
}
.service{
    color:#fff;
	font-size: 20px;
	font-weight: bold;
	text-transform: uppercase;
	border-left: 8px solid;
	border-bottom: 2px solid;
	margin-bottom: 20px;
	padding: 0 0 0px 10px;
}
.service:hover{
    text-decoration: underline;
    color: #fff;
}
.service--blue, .service:nth-child(1){
	border-color: #3373ba;
}
.service--red, .service:nth-child(2){
	border-color: #a71c14;
}
.service--yellow, .service:nth-child(3){
	border-color: #d7bc04;
}
.service--white, .service:nth-child(4){
	border-color: #fff;
}

.footer {
    background: #cccccc;
    padding: 40px 0px;
    color: #010101;
}
.footer a:hover{
    color: #1358a4;
}
.footer__image{
	display: block;
}
.footer__menu{
	list-style: none;
	border-left: 1px solid;
}
.footer__menu--blue, .footer__menu--blue .footer__item--heading{
	border-left-color: #3373ba;
}
.footer__menu--red, .footer__menu--red .footer__item--heading{
	border-left-color: #a71c15;
}
.footer__menu--yellow, .footer__menu--yellow .footer__item--heading{
	border-left-color: #d6bc03;
}
.footer__item--heading{
	font-weight: bold;
	font-family: "UTM Swiss Condensed";
	text-transform: uppercase;
	font-size: 20px;
	margin-bottom: 10px;
	border-left: 5px solid;
	padding: 5px 0 4px 10px;
	border-bottom: 3px solid transparent;
}
.footer__item{
	padding-left: 15px;
	margin-bottom: 5px;
}
.footer__item a{
	color: #010101;
}
.footer__item a:hover{
	color: #3373ba;
}
.vae_info a{
    color: #000;
    text-decoration: underline;
}
.category__title{
    font-family: "UTM Swiss Condensed";
    font-size: 22px;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 1px solid #fff;
    /*margin: 0 0 20px 0;*/
    margin: 0 0 40px 0;
}

.team__item{
    cursor:pointer;
	gap:15px;
    margin-bottom: 50px;
}
.team__img{
    flex: 0 0 100px;
}
.team__img img{
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 0 10px #00000091;
    transition: all 0.3s;
}
.team__item:hover img{
    box-shadow: 0 9px 12px #00000091;
    transform: translateY(-10px);
}
.team__content{
    /*padding-left: 15px;*/
    /*text-align: justify;*/
}
.team__content a{
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
    display: inline-block;
}
.team__content p{
    
}
#team_modal{
    color: #333;
}
.team__content p, .news__content p{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news__content p{
    text-align: justify;
}
.hover_scale_img {
    overflow: hidden;
}
.hover_scale_img img {
    transition: all 0.3s;
}
.hover_scale_img:hover img {
    transform: scale(1.1);
}
.news__item {
    margin-bottom: 40px;
}
.news__img img{
    max-width: 100%;
}
.news__content a{
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    display: inline-block;
    margin: 10px 0;
}
.lienhe__text a{
    color:#fff;
}
.lienhe__text a:hover{
    text-decoration: underline;
}
.article__title{
    font-family: "UTM Swiss Condensed";
    font-size: 22px;
    padding-bottom: 8px;
    border-bottom: 1px solid #fff;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: space-between;
}
.article__title a{
    color: #fff;
    font-size: 18px;
}
.article__title a:hover{
    text-decoration: underline;
}
.news__other__title {
    margin: 40px 0 30px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 22px;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
}
.news__title{
    color:#fff;
    font-size: 22px;
    display: inline-block;
    font-weight:bold;
    margin: 8px 0;
}

.menu__button{
    display: none;
    position: absolute;
    bottom: 5px;
    right: 15px;
}
.menu__button{
    width: 40px;
    height: 30px;
    position: absolute;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}
.menu__button span{
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
.menu__button span:nth-child(1) {
    top: 0px;
}

.menu__button span:nth-child(2) {
    top: 13px;
}

.menu__button span:nth-child(3) {
    top: calc(100% - 3px);
}

.menu__button.active span:nth-child(1) {
    top: 18px;
    transform: rotate(135deg);
}

.menu__button.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu__button.active span:nth-child(3) {
    top: 18px;
    transform: rotate(-135deg);
}
.header__menu{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.lang__select{
    color: #fff;
    padding-left: 3px;
}
.lang__select.-mobile{
    display: none;
}
.lang__item{
    color: #fff;
    padding: 0 5px;
}
.lang__item:hover {
    color: #fff;
    text-decoration: underline;
}

/*.doitacleft {
    margin-top: 40px;
}
.doitacleft_rows {
    height: 90px;
    overflow: hidden;
    text-align: center;
    width: 48%;
    margin-bottom: 4%;
    margin-right: 4%;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    padding: 10px 0px;
}
.doitacleft_rows p {
    margin-bottom: 0px;
}
.doitacleft_rows_chan {
    margin-right: 0%;
}
.title {
    margin-bottom: 0px;
    font-size: 17px;
    font-weight: bold;
}
.title a {
    color: #a71c14;
}
.date {
    margin-bottom: 0px;
    color: #7c7f85;
}
.img img {
    width: 100%;
}
.content_tintuc {
    margin-top: 30px;
}

.short {
    text-align: justify;
    padding: 5px 0px;
}
.pachitiet_a {
    color: #d8514a;
    font-weight: bold;
}
.pachitiet_a {
    color: #a71c14;
}
.rows_home_le {
    width: 49%;
    margin-right: 2%;
}
.rows_home_chan {
    width: 49%;
    margin-right: 0%;
}
.rows_home {
    margin-bottom: 4%;
}

.orther {
    margin-left: 20px;
}*/
