.container{
	display: block;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
.d-flex{
	display: flex;
}
.flex-wrap{
	flex-wrap: wrap;
}
.align-items-center{
	align-items: center;
}
.justify-content-center{
	justify-content: center;
}
.justify-content-between{
	justify-content: space-between;
}
.text-white{
	color: #fff;
}
.d-inline-block{
	display: inline-block;
}
#header{
	padding: 10px 0;
	background: #9e9e99;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	font-size: 18px;
}
#header .row{
	align-items: center;
}
.header__logo a img{
	max-height: 133px
}
.header__name-company h1{
	font-size: 26px;
    text-transform: uppercase;
    color: #FFDF00;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
    line-height: 40px
}
.header__name-company h1 span{
	color: red;
	display: block;
	font-size: 40px;
}
.header__slogan p{
	font-size: 18px;
    color: #fff;
    font-style: italic;
    font-family: 'Coiny', cursive;
}
.header__contact ul li{
    border-left: 1px solid #FFDF00;
    padding-left: 6px;
}


.header__contact__hotline .hotline-contact, .header__contact__hotline .hotline-email{
	margin-left: 10px;
}
.header__contact__hotline h6{
	margin-bottom: 0;
    font-weight: 700;
    font-size: 18px;
    color: #FFDF00;
    letter-spacing: 1px;
}
.header__contact__hotline a{
	font-size: 15px;
    color: #000;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    padding-left: 27px;
}
.header__contact__hotline .hotline-contact a:after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	background: url(../images/icon-telephone-9.png) left center no-repeat;
	background-size: contain;
    
}
.header__contact__hotline i {
	font-size: 33px;
	color: #FFDF00;
}
.header-sm {
	background-color: #FFDF00;
	padding: 2px 50px 2px 10px;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
	-o-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	display: none;
}

.header-sm .logo img {
    height: 40px;
    width: auto;
}

#hamburger {
	background-color: transparent;
}

/*---menu---*/
.menu {
	background-color: #fee239;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 1024;
}
.navigation{
	position: relative;
}

.navigation,
.navigation ul,
.navigation ul li,
.navigation ul li a {
	list-style: none;
	line-height: 0;
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.navigation ul li ul li {
	-webkit-box-shadow: 0px 0px 25px 0px rgba(50, 50, 50, 0.21);
	box-shadow: 0px 0px 25px 0px rgba(50, 50, 50, 0.21);
}

.navigation ul {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.navigation:after,
.navigation > ul:after {
	content: "";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.navigation > ul > li {
	display: table-cell;
	width: 1%;
}

.navigation > ul > li > a {
	color: #000;
    display: block;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    padding: 0 10px;
    white-space: nowrap;
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    overflow: hidden;
    font-weight: 400;
    height: 35px;
    padding-top: 4px;
}

.navigation ul li:first-child a {
	margin-left: 0
}

.navigation ul li:last-child a {
	margin-right: 0;
}
.navigation > ul > li.active,.navigation > ul > li:hover {
	background-color: #9e9e99;
}
.navigation > ul > li.active > a, .navigation > ul > li:hover > a{
	color: #fff;
}

.navigation > ul > li.active > a:hover:before,
.navigation > ul > li.active > a:focus:before,
.navigation > ul > li.active > a:active:before {
	display: none;
}

.navigation ul ul {
	position: absolute;
	left: -9999px;
	top: 40px;
	width: 200px;
	z-index: 999;
	padding-top: 15px;
	opacity: 0;
	-webkit-transition: top 0.2s ease, opacity 0.2s ease-in;
	-o-transition: top 0.2s ease, opacity 0.2s ease-in;
	transition: top 0.2s ease, opacity 0.2s ease-in;
}

.navigation ul ul ul {
	width: auto;
}

.navigation.align-right ul ul {
	text-align: right;
}

.navigation > ul > li > ul::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-bottom-color: #FFDF00;
	top: -1px;
	left: 30%;
}

.navigation.align-right > ul > li > ul::after {
	left: auto;
	right: 20px;
}

.navigation ul ul ul::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border: 7px solid transparent;
	border-right-color: #FFDF00;
	top: 12px;
	left: -8px;
}

.navigation.align-right ul ul ul::after {
	border-right-color: transparent;
	border-left-color: #387002;
	left: auto;
	right: -4px;
}

.navigation > ul > li:hover > ul {
	top: 28px;
	left: -25px;
	opacity: 1;
}

.navigation.align-right > ul > li:hover > ul {
	left: auto;
	right: 0;
}

.navigation ul ul ul {
	padding-top: 0;
	padding-left: 6px;
}

.navigation.align-right ul ul ul {
	padding-right: 6px;
}

.navigation ul ul > li:hover > ul {
	left: 200px;
	top: 0;
	opacity: 1;
}

.navigation.align-right ul ul > li:hover > ul {
	left: auto;
	right: 100%;
	opacity: 1;
}

.navigation ul ul li a {
	background-color: #FFDF00;
	border-bottom: 1px solid #FFDF00;
	color: #000;
	font-size: 13px;
	font-weight: 300;
	text-decoration: none;
	padding: 0 10px 0 25px;
	line-height: 36px;
	width: 200px;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: 700;
}

.navigation ul ul li:last-child a {
	border-bottom: none;
}

.navigation ul ul li a::before {
	font: normal normal normal 10px/1 FontAwesome;
	content: "\f101";
	position: absolute;
	top: 14px;
	left: 10px;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.navigation ul ul li:hover > a,
.navigation ul ul li > a:hover,
.navigation ul ul li > a:focus {
	background-color: #9e9e99;
	color: #fff;
}

.navigation ul ul li.active > a {
	background-color: #9e9e99;
	color: #000;
}

.navigation ul ul li:hover > a::before,
.navigation ul ul li > a:hover:before,
.navigation ul ul li > a:focus:before {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

.navigation ul ul li.active > a::before {
	color: #000;
}

/*---frm-search---*/
.menu__search{
	position: absolute;
	right: -20px;
	top: 10px;
}
.menu__search span i{
	color: #fff;
}
.frm-search{
    position: absolute;
    top: 28px;
    right: -5px;
    width: 300px;
    padding: 5px;
    background-color: #ffffffaa;
    border: solid 1px silver;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

/*---slider---*/
.slider,  .main-slider{
	position: relative;
}
.main-slider .item{
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	height: calc(100vh - 165px);
}
.main-slider .item .content{
	max-width: 800px;
}
.main-slider .item img{
	width: auto;
    display: block;
    margin: auto;
    max-width: 150px;
}
.main-slider .item .title{
    font-size: 40px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.55);
    text-shadow: 2px 2px 0px #fff, 5px 5px 0px rgba(0,0,0,0.2);
    color: #FFDF00;
}
.main-slider .item .sub-title{
	position: relative;
}
.main-slider .item .sub-title .bg{
    background-color: rgb(255 255 255 / 66%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.main-slider .item .sub-title .text{
	font-size: 32px;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 3px;
    z-index: 99;
    position: relative;
    color: #666563;
}

.main-slider .owl-item.active img {
    animation-fill-mode: both;
    animation: slideInDown 1.5s;
    animation-delay: 0.15s;
}
.main-slider .owl-item.active .title {
    animation-fill-mode: both;
    animation: zoomIn 1.75s;
    animation-delay: 0.25s;
}
.main-slider .owl-item.active .sub-title .bg {
    animation-fill-mode: both;
    animation-delay: 4s;
    animation: fadeInLeftBig 3s;
    /* animation: fade-in-bottom 1s cubic-bezier(.39, .575, .565, 1) 1s both; */
}
.main-slider .owl-item.active .sub-title .text {
    animation-fill-mode: both;
    animation-delay: 4.5s;
    animation: fadeInRightBig 3s;
}

.main-slider .owl-nav{
	right: 0;
	left: auto;
}
.main-slider .owl-controls .owl-nav div.owl-prev, .main-slider .owl-controls .owl-nav div.owl-next{
	position: static;
	line-height: unset !important;
	font-size: 30px;
	background-color: #FFDF00;
	-webkit-transition: all 1s ease;
    transition: all 1s ease;
}
.main-slider .owl-controls .owl-nav div.owl-prev:before, .main-slider .owl-controls .owl-nav div.owl-next:before{
	display: none;
}
.main-slider .owl-controls .owl-nav div.owl-prev:hover, .main-slider .owl-controls .owl-nav div.owl-next:hover{
	background: #9e9e99;
	color: #000;
}

/*---projetc-special---*/
.box-content{
	padding: 20px 0;
}
.box-content h3{
	text-transform: uppercase;
	font-size: 25px;
	font-weight: 400;
	color: #000;
}
.box-content p a{
	font-size: 14px;
    border-radius: 5px;
    background-color: #FFDF00;
    color: #ffffff;
    padding: 10px 26px;
    font-weight: 500;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}
.box-content p a:hover{
	background: #9e9e99;
	color: #000;
}

.da-thumbs li {
	position: relative;
	margin-bottom: 30px;
}
.da-thumbs li a,
.da-thumbs li a img {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
}
.da-thumbs li a {
	overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.da-thumbs li a > div {
	position: absolute;
	background: rgb(255 192 0 / 70%);
	width: 100%;
	height: 100%;
	padding: 20px;
}
.da-thumbs li a div.custom-hover-object {
	position: absolute;
	background: #333;
	background: rgba(255,255,255,0.7);
	width: 100%;
	height: 100%;
}
.da-thumbs li a div .project-group__info {
	text-transform: uppercase;
	font-weight: normal;
	color: rgba(255,255,255,0.9);
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	
}
.da-thumbs li a div .project-group__info h4{
	font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
}
.da-thumbs li a div .project-group__info p{
	font-size: 14px;
    text-transform: none;
}
.da-thumbs li a div.custom-hover-object .project-group__info {
	color: rgba(75,75,75,0.9);
	text-shadow: 1px 1px 1px rgba(255,255,255,0.2);
	border-bottom: 1px solid rgba(0,0,0,0.5);
	box-shadow: 0 1px 0 rgba(255,255,255,255.1), 0 -10px 0 rgba(0,0,0,0.3);
}
.project-group__cat{
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;

}
.project-group__cat__icon{
	font-size: 25px;
    margin-right: 10px;
    position: absolute;
    bottom: 10px;
    left: 10px !important;
    z-index: 999;
    top: auto !important;
}
.project-group__cat__show{
	text-align: right;
    font-weight: 500;
    position: absolute;
    top: auto !important;
    bottom: 10px;
    right: 10px;
    left: auto !important;
    z-index: 999;
    max-width: 80%;
}
.project-group__caption{
	padding: 15px;
    box-shadow: 0px 6px 12px 2px rgba(0,0,0,0.07);
    background-color: #fff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.project-group__caption {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.project-group__caption li{
	box-shadow: none;
	margin-bottom: 0;
	width: 50%;
}
.project-group__caption li:last-child{
	border-left: 1px solid #ccc;
	text-align: right;
}
.project-group__caption h4{
	margin-bottom: 0;
    height: 45px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.project-group__caption h4 a{
	margin: 0;
    font-size: 14px;
    font-weight: bold;
    color: #3f3f3f;
}
.project-group__caption p{
    padding-left: 10px;
    line-height: normal;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 23px;
    height: 45px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/*---blogcat-home---*/
.blogcat-home .item{
    border: 0 none;
    min-height: 400px;
}
.blogcat-home .item a.img-wrapper {
    display: block;
    position: relative;
    border-radius: 8px;
}
.blogcat-home .item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.blogcat-home .item a.img-wrapper:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #262626;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    border: 1px solid #262626;
    border-radius: 8px;
}
.blogcat-home .item .caption {
    position: relative;
    top: -40px;
    background: #fff;
    width: 80%;
    margin: 0 auto;
    padding: 10px 0;
    z-index: 2;
}
.blogcat-home .item .caption h3 {
    margin: 0 0 10px 0;
    text-align: center;
    color: #FFDF00;
    font-size: 18px;
    font-weight: 700;
    padding: 0 20px;
}
.blogcat-home .item p {
    padding: 0 7px;
    margin-bottom: 20px;
    text-align: justify;
    font-size: 14px;
}
.blogcat-home .read-more {
    position: absolute;
    bottom: 25px;
    display: block;
    padding: 0 20px;
    color: #FFDF00;
    right: 50px;
    z-index: 9;
}
.blogcat-home .item:hover a.img-wrapper:after {
    visibility: visible;
    opacity: .5;
}

/*---resgiter-answer---*/
.resgiter-answer{
	background-image: url(../images/register-answer.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 211px
}
.resgiter-answer .row{
	min-height: 211px;
}
.resgiter-answer a{
	font-size: 2rem;
	color: #fff;
	background-color: #FFDF00;
	border: 2px solid #fff;
	border-radius: 20px;
	padding: 15px;
	text-transform: uppercase;
	font-weight: 700;
    text-align: center;
    line-height: 23px;
}

/*---footer---*/
footer h5{
	line-height: 28px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
}
footer h5:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	border: 1px solid #fff;
	width: 30%; 
	height: 2px;
}
.footer__info p i{
	width: 20px;
	text-align: center;
}
.footer__project{
	margin: 0 -5px;
}
.footer__project li{
	width: 33.333%;
	padding:  0 5px;
	margin-bottom: 10px
}
.footer__pro__group a{
	display: block;
	position: relative;
	-webkit-transition: all 1s ease;
    transition: all 1s ease;
}
.footer__pro__group a span{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(255 192 0 / 40%);
	opacity: 0;
}
.footer__pro__group a span i{
	color: #fff;
}
.footer__pro__group a:hover span{
	-webkit-transition: all 1s ease;
    transition: all 1s ease;
    opacity: 1;
}
.footer__service ul li .sub-menu{
	display: none;
}
.footer__service ul li a{
	color: #fff;
}
.copyright{
	background-color: #FFDF00;
	color: #fff;
	padding: 10px 0;
}
.copyright a{
	color: #fff;
	text-decoration: underline;
	font-weight: 500;
}

/*---page---*/
.page-archive h2.section-title{
    font-size: 30px;
}


.page-archive .item {
    transition: 0.3s;
}
.page-archive .item:hover{
	transition: 0.3s;
    box-shadow: 0 1px 12px 0 rgba(0,0,0,.12);
    transform: translateY(-5px);
}
.zoom, .rotate {
    overflow: hidden;
}
.zoom:hover img {
    transform: scale(1.1,1.1);
    transition: 0.5s;
}
.overflow-hidden {
    overflow: hidden;
}
.d-block {
    display: block!important;
}
.object-cover {
    object-fit: cover;
}
.w-100 {
    width: 100%!important;
}
.page-archive .item img{
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.bg-light {
    background-color: #9e9e99!important;
    padding: .5rem!important;
    border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}
.mb-2, .my-2 {
    margin-bottom: .5rem!important;
}
.small, small {
    font-size: 80%;
    font-weight: 400;
}
.share a{
	font-size: 19px;
	margin-right: 0.5rem
}
.share a img{
	width: 20px !important;
}
.facebook {
    color: #3b5999;
}
.bg-light h5{
	height: 46px;
    overflow: hidden;
    line-height: 24px;
    margin-bottom: 5px !important;
}
.bg-light h5 a{
	color: #000;
}
.bg-light h5 a:hover{
	color: #000
}
.time-post, .time-post a{
	color: #000;
}
.time-post:hover, .time-post a:hover{
	color: #ff0000;
}
.page-pagi ul li a{
	background-color: #FFDF00;
	color: #fff;
}
.page-pagi ul li a:hover, .page-pagi ul li span, .page-pagi ul li span:hover{
	background-color: #9e9e99;
	color: #000;
	font-weight: bold
}

.related-post h6 {
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
}

.others {
	border-left: 1px solid #FFDF00;
}

ul.list-other {
	margin: 5px 0 5px 13px;
	padding: 0;
	width: auto;
}

ul.list-other li {
	list-style: square;
	color: #FFDF00;
	font-size: 14px;
	line-height: 18px;
	font-weight: normal;
	margin-bottom: 5px;
}

ul.list-other li a {
	color: #000;
}

ul.list-other li a:hover {
	color: #FFDF00;
}

.page-single h2.title-post{
	font-size: 25px;
    text-align: center;
    color: #000;
}
.share-single ul *{
	margin-bottom: 0 !important;
}
.share-single ul li.zalo div{
	margin-top: 11px;
}
.info-cat{
	margin-top: 25px;
}
.info-cat i{
    color: #FFDF00;
    margin-right: 15px;
    font-size: 25px;
}
.info-cat__gr p{
	font-size: 16px;
}
.page-single .detail-product{
	margin-top: 20px;
}
.section-body p i{
	width: 25px;
	text-align: center
}
.main-blog .item img{
	border-radius: 0;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.main-blog .owl-dots{
	text-align: center;
}
.main-blog .owl-dots .owl-dot span{
	width: 15px !important;
	height: 15px !important;
	background-color: #9e9e99;
}
.main-blog .owl-dots .owl-dot.active span, .main-blog .owl-dots .owl-dot:hover span{
	background-color: #FFDF00;
}

.project-home__cat {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.project-home__cat h3 {
    font: 600 18px/20px 'Roboto',sans-serif;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    padding: 10px;
    background-color: #FFDF00;
    width: 80%;
    position: relative;
    margin-bottom: 0;
}
.project-home__cat h3:after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(100% + 0%);
    border-left: 40px solid #FFDF00;
    border-top: 40px solid transparent;
    height: 100%;
}
.project-home__cat a {
    width: 20%;
    color: #000;
    background-color: #9e9e99;
    padding: 10px;
    text-align: center;
    font: 600 18px/20px 'Roboto',sans-serif;
    display: block;
}
.project-home__cat a:hover{
	background-color: #000;
	color: #fff;
}
.overview {
        padding-top: 50px;
    padding-bottom: 41px;
    position: relative;
    background: url(../images/bg-overview.png) no-repeat top center;
    background-size: cover;
    overflow: hidden;
}
.overview h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    z-index: 9;
}
.overview .old-text {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    position: relative;
    z-index: 9;
}
 .overview p {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #fff;
    padding-right: 105px;
    margin-bottom: 65px;
    position: relative;
    z-index: 9;
}
.btn-registration {
    color: #000;
    background: #fff;
    border-radius: 50px;
    width: 364px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    -webkit-user-select: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    white-space: nowrap;
    font-size: 23px;
    transition: opacity .5s ease;
    font-weight: 600 !important;
    z-index: 1;
    overflow: hidden;
    padding-left: 0;
    position: relative;
    justify-content: center;
}
.btn-registration:before {
    content: "";
    border-radius: 45px;
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .04);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    transition: all .5s ease-out;
}
 .btn-registration .icon {
    width: 54px;
    height: 54px;
    border-radius: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease-in-out;
    position: absolute;
    right: 10px;
    top: 10px;
    background: #fff;
}
 .overview video {
    height: 702px;
    position: absolute;
    top: -205px;
    right: -270px;
    z-index: -1;
}
.d-inline{
	display: inline;
}
.d-none{
	display: none;
}

/*---responsive---*/
@media screen and (max-width:1200px) {
	.header__name-company h1{
		font-size: 22px;
	}
	.header__name-company h1 span{
		font-size: 28px;
	}
	.header__contact ul{
		display: block !important;
	}
	.header__contact ul li{
		width: 100%
	}
	.navigation ul{
		padding-right: 18px;
	}
	.navigation > ul > li > a {
		font-size: 12px;
	}
	.menu__search{
		right: 0;
	}
	.project-group__caption{
		flex-direction: column;
	}
	.project-group__caption li{
		width: 100%;
	}
	footer{
		font-size: 13px;
	}
	footer h5{
		font-size: 15px;
	}
	footer h5:after{
		width: 20%;
	}
	.header__contact__hotline .img-contact{
		background-size: contain;
	}
	.header__contact__hotline a{
		font-size: 12px;
		letter-spacing: unset;
	}
	.blogcat-home .item .caption h3{
		font-size: 18px;
	}
}
@media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }
}
@media screen and (max-width:991px) {
	footer h5{
		margin-top: 10px;
	}
	#header, .menu{
		display: none;
	}
	.header-sm{
		display: block;
	}
	.search-mobile{
		position: absolute;
		top: 10px;
		right: 60px;
		z-index:999;
	}
	.search-mobile__icon {
		font-size: 20px;
	    position: relative;
	    color: #fff;
	}
	.frm-search{
		top: 34px;
	}
	.slider{
		margin-top: 44px;
	}
	.page-title{
		margin-top: 44px;
		padding: 10px 0;
	}
	.main-slider .item{
		height: calc(100vh - 44px);
	}
	footer h5:after{
		width: 10%;
	}
	.resgiter-answer a{
		font-size: 20px;
	}
	footer, .footer{
		padding:  0;
	}
	.project-home__cat h3{
		width: 70%;
	}
	.project-home__cat a{
		width: 30%;
	}
}
@media (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }
}
@media screen and (max-width:767px) {
	 .overview {
        background: url(../images/bg-overview-mb.png) no-repeat top center;
        padding-top: 90px;
        background-size: cover;
        padding-bottom: 35px;
    }
	.main-slider .item .title{
		font-size: 30px;
	}
	.main-slider .item .sub-title .text{
		font-size: 22px;
	}
	.resgiter-answer a{
		font-size: 15px;
	}
	.box-content h3{
		font-size: 20px;
		line-height: 22px;
	}
	.blogcat-home .item .caption h3{
		font-size: 22px;
	}
    .overview h1 {
        text-align: center;
        font-size: 23px;
        line-height: 32px;
        text-transform: lowercase;
    }
    .overview h1 .old-text {
        font-size: 23px;
        line-height: 32px;
        font-weight: 700;
        text-transform: initial;
    }
    .overview p {
        font-size: 16px;
        font-weight: 300;
        line-height: 20px;
        text-align: center;
        padding: 0;
        margin-bottom: 15px;
    }
    .btn-registration {
        width: 315px;
        height: 60px;
        border-radius: 35px;
        padding: 0;
        display: flex;
        text-align: center;
        font-size: 20px;
        margin: auto;
        align-items: center;
    }
    .btn-registration .icon {
        width: 44px;
        height: 44px;
        border-radius: 44px;
        right: 8px;
        top: 8px;
    }	
}
@media screen and (max-width:736px) {
	.project-home__cat h3{width:65%;font-size: 16px;}
	.project-home__cat h3:after{
		right: -39px;
		left: auto;
	}
    .project-home__cat a{width:35%; padding-left: 35px; font-size:16px;}
}
@media (max-width:375px){
    .project-home__cat h3, .project-home__cat a{font-size: 13px;}
}
@media screen and (max-width:360px) {
	.box-content h3 {
	    font-size: 17px;
	}
	.box-content p a{
		font-size: 12px;
		padding: 10px;
	}
	footer h5 {
	    font-size: 17px;
	}
}
@media screen and (max-width:320px) {
	.search-mobile .frm-search{
		width: 254px;
	}
	.project-home__cat a{font-size: 11px;}
}
.zalo-container:not(.right) {
    left: 20px !important;
}