/* open-sans-regular - vietnamese_latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v18-vietnamese_latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/open-sans-v18-vietnamese_latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v18-vietnamese_latin-regular.woff2") format("woff2"), url("../fonts/open-sans-v18-vietnamese_latin-regular.woff") format("woff"), url("../fonts/open-sans-v18-vietnamese_latin-regular.ttf") format("truetype"), url("../fonts/open-sans-v18-vietnamese_latin-regular.svg#OpenSans") format("svg");
  /* Legacy iOS */
}

/* open-sans-italic - vietnamese_latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/open-sans-v18-vietnamese_latin-italic.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/open-sans-v18-vietnamese_latin-italic.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v18-vietnamese_latin-italic.woff2") format("woff2"), url("../fonts/open-sans-v18-vietnamese_latin-italic.woff") format("woff"), url("../fonts/open-sans-v18-vietnamese_latin-italic.ttf") format("truetype"), url("../fonts/open-sans-v18-vietnamese_latin-italic.svg#OpenSans") format("svg");
  /* Legacy iOS */
}

/* open-sans-700 - vietnamese_latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/open-sans-v18-vietnamese_latin-700.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/open-sans-v18-vietnamese_latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v18-vietnamese_latin-700.woff2") format("woff2"), url("../fonts/open-sans-v18-vietnamese_latin-700.woff") format("woff"), url("../fonts/open-sans-v18-vietnamese_latin-700.ttf") format("truetype"), url("../fonts/open-sans-v18-vietnamese_latin-700.svg#OpenSans") format("svg");
  /* Legacy iOS */
}

/* open-sans-700italic - vietnamese_latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/open-sans-v18-vietnamese_latin-700italic.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/open-sans-v18-vietnamese_latin-700italic.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v18-vietnamese_latin-700italic.woff2") format("woff2"), url("../fonts/open-sans-v18-vietnamese_latin-700italic.woff") format("woff"), url("../fonts/open-sans-v18-vietnamese_latin-700italic.ttf") format("truetype"), url("../fonts/open-sans-v18-vietnamese_latin-700italic.svg#OpenSans") format("svg");
  /* Legacy iOS */
}
html{
	height: 100%;
}
body {
  font-family: 'Open Sans';
  background: white;
}

body.modal-active {
  overflow: hidden;
}

.bg-color-1 {
  background: #ff4b0c !important;
}

.text-color-1 {
  color: #ff4b0c !important;
}

.bg-color-2 {
  background: #21368f !important;
}

.text-color-2 {
  color: #21368f !important;
}

.bg-color-3 {
  background: #b8d337 !important;
}

.text-color-3 {
  color: #b8d337 !important;
}

.icon-scroll,
.icon-scroll:before {
  position: absolute;
  left: 50%;
}

.icon-scroll {
  width: 40px;
  height: 70px;
  bottom: 35px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-box-shadow: inset 0 0 0 1px #fff;
  box-shadow: inset 0 0 0 1px #fff;
  border-radius: 25px;
}

.icon-scroll:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
  animation-name: scroll;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(46px);
    transform: translateY(46px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(46px);
    transform: translateY(46px);
  }
}

figure {
  margin: 0 0 27px;
}

/***
 *      _____                 _     
 *     |  __ \               | |    
 *     | |__) __ _ _ __   ___| |____ 
 *     |  ___/ _` | '_ \ / _ | / __/
 *     | |  | (_| | | | |  __| \__ \
 *     |_|   \__,_|_| |_|\___|_/___/
 *                                  
 *                                  
 */
.btn-blue {
  color: #FFF;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  padding: 15px 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.btn-blue span {
  z-index: 2;
  position: relative;
}

.btn-blue::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #0c4da2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-blue:hover::before {
  opacity: 0;
  -webkit-transform: scale(0.5, 0.5);
  transform: scale(0.5, 0.5);
}

.btn-blue::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 3px solid #0c4da2;
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}

.btn-blue:hover::after {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.btn-all {
  border-radius: 15px;
  background: #c79e70;
  padding: 5px 25px;
  margin-right: 20px;
  font-size: 13px;
  color: white;
}

.btn-all:hover {
  background: #ebba65;
}

.btn-seemore {
  margin: 36px auto 0;
  display: inline-block;
  border-radius: 40px;
  background: #c79e70;
  width: 155px;
  height: 40px;
  line-height: 40px;
  font-size: 13px;
  color: white;
  text-align: center;
}

.btn-seemore:hover {
  background: #ebba65;
}

.main-pagination {
  margin-top: 19px;
  display: inline-block;
}

.main-pagination ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-pagination ul .page-item .page-link {
  color: #000;
  border: 0;
  padding: 9px 12px;
  margin: 0 3px;
  border-radius: 0;
  font-weight: 700;
  border-radius: 4px;
  display: inline-block;
}

.main-pagination ul .page-item.active .page-link {
  background-color: #c79e70;
  color: #fff;
}

.mainMenu .btn-contact {
  border-radius: 50px;
  /* background: #c79e70; */
  background: linear-gradient(rgb(248, 136, 35) 54%, rgb(235, 79, 44) 90%);
  padding: 0 25px;
  margin-right: 20px;
  font-size: 18px;
  color: white;
  height: 50px;
  line-height: 50px;
  min-width: 120px;
  display: block;
  text-align: center;
  margin-top: 15px;
}

.mainMenu .btn-contact:hover {
  background: #0c4da2;
}

.mainMenu ul li a {
  color: white;
}

.panel {
  padding: 8px 0px;
}

.panel .sections .menu li {
  font-size: 15px;
  margin: 0 5px;
}

.panel .sections .menu li a {
  color: black;
}

.panel .sections .menu li:after {
  display: none;
}

.panel .sections .menu li.selected a {
  color: #ff4b0c;
  font-weight: 700;
}

.panel .sections .menu li:hover a {
  color: #ff4b0c;
}

.panel.white {
  background: white !important;
}

.panel.white .btn-contact-us {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  float: right;
}

.panel.white.top .sections>div.right {
  display: flex !important;
  align-items: center;
  height: 68px;
}

.secondary-menu {
  background: #f88823;
  display: block;
}
.secondary-menu .header-search-box{
	display: none;
}
.secondary-menu .header-search-input{
	min-width: calc(100% - 30px);
	height: 30px;
	font-size: 14px;
}
.secondary-menu form{
	display: flex;
}
.secondary-menu-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.secondary-menu-list .secondary-menu-item {
  font-size: 15px;
  color: white;
  height: 60px;
  line-height: 60px;
  cursor: pointer;
}

.secondary-menu-item:hover {}

.secondary-menu-item.has-sub:hover .secondary-menu-sub {
  display: block;
}

.secondary-menu-sub {
  background: white;
  padding: 15px;
  display: none;
}

.secondary-menu-sub li {
  line-height: 35px;
  height: 35px;
  color: black;
  text-align: left;
  border-bottom: solid 1px lightgray;
}

.secondary-menu-sub li:hover {
  color: #ff4d07;
}

.btn-contact-us {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.btn-contact-us span {
  font-size: 14px;
}

.btn-contact-us span i {
  padding-left: 5px;
}

.btn-contact-us .hover {
  display: inline-block;
  background: rgba(0, 0, 0, 0.05);
  width: 25px;
  height: 25px;
  position: absolute;
  right: -7px;
  top: -1px;
  border-radius: 100%;
  -webkit-transition-duration: 0.7s;
  transition-duration: 0.7s;
  border: none;
}

.btn-contact-us:hover {
  position: relative;
  cursor: pointer;
}

.btn-contact-us:hover .hover {
  display: inline-block;
  background: rgba(0, 0, 0, 0.05);
  width: calc(100% + 20px);
  height: 25px;
  top: -1px;
  border-radius: 15px;
  border: none;
}

/***
 *      __  __                
 *     | |  | |               
 *     | |__| | ___  ____  ___  ___
 *     |  __  |/ _ \|  _  \_  \/ _ \
 *     | |  | | (_) | | | | | |  __/
 *     |_|  |_|\___/|_| |_| |_ \___/
 *     Home                            
 *                                  
 */
/* .panel .sections>div {
  width: auto;
} */
.custom-logo-link{
	width: 65px;
}
.section-1 h1 {
  font-size: 55px;
  font-weight: bold;
  text-transform: uppercase;
}

.section-1 p {
  text-align: center;
  color: #fff;
}

.section-1 p.ae-2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0;
}

.section-1 p.ae-3 {
  font-size: 35px;
  font-weight: 700;
	color: #21368f;
}

.section-1 img {
  width: 150px;
  margin-bottom: 25px;
  -webkit-animation: bounceIn;
  animation: bounceIn;
  -webkit-animation-duration: 1500ms;
  animation-duration: 1500ms;
}

@-webkit-keyframes bounceIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.7, 0.7, 0.7);
    transform: scale3d(0.7, 0.7, 0.7);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.7, 0.7, 0.7);
    transform: scale3d(0.7, 0.7, 0.7);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.section-1 .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-position: bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.section-2 h2 {
  font-weight: bold;
  font-size: 45px;
  margin-bottom: 25px;
}

.section-2 p {
  line-height: 1.333;
  z-index: 2;
}

.section-2 span {
  font-size: 14px;
}

.section-2 .hi-icon-wrap {
  text-align: center;
  margin: 0 auto;
}

.section-2 .hi-icon-wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.section-2 .hi-icon-wrap ul li {
  margin: 20px 0px;
}

.section-2 .hi-icon {
  display: inline-block;
  font-size: 0px;
  cursor: pointer;
  width: 70px;
  height: 70px;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  animation: shadow-pulse 3s infinite;
  -webkit-animation: shadow-pulse 3s infinite;
}

@-webkit-keyframes shadow-pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0px #b8d337;
    box-shadow: 0 0 0 0px #b8d337;
  }

  50% {
    -webkit-box-shadow: 0 0 0 15px rgba(184, 211, 55, 0.5);
    box-shadow: 0 0 0 15px rgba(184, 211, 55, 0.5);
  }

  100% {
    -webkit-box-shadow: 0 0 0 25px rgba(184, 211, 55, 0);
    box-shadow: 0 0 0 25px rgba(184, 211, 55, 0);
  }
}

@keyframes shadow-pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0px #b8d337;
    box-shadow: 0 0 0 0px #b8d337;
  }

  50% {
    -webkit-box-shadow: 0 0 0 15px rgba(184, 211, 55, 0.5);
    box-shadow: 0 0 0 15px rgba(184, 211, 55, 0.5);
  }

  100% {
    -webkit-box-shadow: 0 0 0 25px rgba(184, 211, 55, 0);
    box-shadow: 0 0 0 25px rgba(184, 211, 55, 0);
  }
}

.section-2 .hi-icon:after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.section-2 .hi-icon:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 0;
}

.section-2 .hi-icon-effect .hi-icon {
  color: #fff;
  border: 1px solid #b8d337;
}

.section-2 .hi-icon-effect .hi-icon:after {
  top: -2px;
  left: -2px;
  padding: 2px;
  z-index: -1;
  background: #b8d337;
  opacity: 0;
}

.section-2 .hi-icon-effect .hi-icon:hover {
  opacity: 1;
  color: #b8d337;
}

.section-2 .hi-icon-effect .hi-icon:hover::after {
  opacity: 1;
  background: #b8d337;
}

.section-2 .hi-icon-comfort:before {
  background: url("../images/ico-01.png");
  background-size: 27px;
  background-repeat: no-repeat;
  background-position: 50%;
}

.section-2 .hi-icon-light:before {
  background: url("../images/ico-02.png");
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: 50%;
}

.section-2 .hi-icon-security:before {
  background: url("../images/ico-03.png");
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: 50%;
}

.section-2 .hi-icon-entertaiment:before {
  background: url("../images/ico-04.png");
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: 50%;
}

#solution-details .homa-solution-title,
#homaInLife-details .homa-solution-title {
  height: 70vh;
  position: relative;
  display: table;
  width: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

#solution-details .homa-solution-title .homa-solution-content,
#homaInLife-details .homa-solution-title .homa-solution-content {
  height: 100%;
  width: 100%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

#solution-details .homa-solution-title .homa-solution-content h1,
#homaInLife-details .homa-solution-title .homa-solution-content h1 {
  padding: 15px 100px;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

#solution-details .homa-card,
#homaInLife-details .homa-card {
  color: black;
  padding: 40px;
  position: relative;
  top: -60px;
  text-align: left;
  background: white;
  -webkit-box-shadow: 0px 8px 15px #dedede;
  box-shadow: 0px 8px 15px #dedede;
}

#solution-details .homa-card p,
#homaInLife-details .homa-card p {
  font-size: 14px;
  line-height: 25px;
}

#solution-details .homa-card p:last-child,
#homaInLife-details .homa-card p:last-child {
  margin: 0;
}

#solution-details .homa-card .line,
#homaInLife-details .homa-card .line {
  width: 150px;
  margin: 15px auto;
  height: 3px;
  background: #bb9368;
}

#solution-details .homa-card .homa-card-title,
#homaInLife-details .homa-card .homa-card-title {
  text-align: center;
}

#solution-details .homa-card .homa-card-title h2,
#homaInLife-details .homa-card .homa-card-title h2 {
  font-weight: bold;
}

#support h3 {
  top: 15px;
  width: 100%;
}

#support .workwith-mobile {
  background: #fff;
}

#support .workwith-mobile h2,
#support .workwith-mobile h3 {
  color: #000;
}

/* CATALOGUE */
#sinh-vien .homa-catalogue-mobile {
  display: none;
}

#sinh-vien .homa-catalogue-mobile .catalogue-item .catalogue-item-content-list div {
  height: calc(100% / 7) !important;
}

#sinh-vien .homa-catalogue-desktop {
  display: block;
}

@media (max-width: 991px) {
	.secondary-menu .header-search-box{
		display: block;
	}
  #sinh-vien .homa-catalogue-mobile {
    display: block;
	  height: 100%;
  }

  #sinh-vien .homa-catalogue-desktop {
    display: none;
  }

  
	.secondary-menu{
		top: 67px;	
	}
	.secondary-menu.active11{
		display: block;
		position: fixed;
		width: 100%;
	}
	.secondary-menu.active11 .secondary-menu-list{
		flex-direction: column;
		
	}
	.secondary-menu-list .menu-item-has-children .sub-menu {
		display: none;
		position: relative;
		margin: 0;
	}
	.secondary-menu-list .menu-item-has-children .sub-menu.active {
		display: block;
		
	}
	.contact .contact-social{
		margin-bottom: 15px;
	}
	.contact .content{
		overflow: auto;
	}
}

#sinh-vien .homa-catalogue-background,
#sinh-vien .homa-catalogue-background-big,
#sinh-vien .homa-catalogue-background-big div,
#sinh-vien .homa-catalogue-background-big::after,
#sinh-vien .homa-catalogue-background-lines,
#sinh-vien .homa-catalogue-background-divided {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#sinh-vien .homa-catalogue-background {
  z-index: 1;
}

#sinh-vien .homa-catalogue-background-big {
  z-index: 1;
  overflow: hidden;
}

#sinh-vien .homa-catalogue-background-big div {
  z-index: 1;
  background-size: cover;
}

#sinh-vien .homa-catalogue-background.active .homa-catalogue-background-big div {
  -webkit-transition: -webkit-transform 30s linear;
  transition: -webkit-transform 30s linear;
  transition: transform 30s linear;
  transition: transform 30s linear, -webkit-transform 30s linear;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

#sinh-vien .homa-catalogue-background-big::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0.2;
}

#sinh-vien .homa-catalogue-background.active .homa-catalogue-background-big::after {
  opacity: 1;
}

#sinh-vien .homa-catalogue-background-lines {
  z-index: 3;
}

#sinh-vien .homa-catalogue-background.active .homa-catalogue-background-lines {
  opacity: 0.8;
}

#sinh-vien .homa-catalogue-background-lines div {
  position: absolute;
  top: 0;
  bottom: 0;
}

#sinh-vien .homa-catalogue-background-lines div:first-of-type {
  right: calc(100% / 7);
}

#sinh-vien .homa-catalogue-background-lines div:nth-of-type(2) {
  right: calc((100% / 7) * 2);
}

#sinh-vien .homa-catalogue-background-lines div:nth-of-type(3) {
  right: calc((100% / 7) * 3);
}

#sinh-vien .homa-catalogue-background-lines div:nth-of-type(4) {
  right: calc((100% / 7) * 4);
}

#sinh-vien .homa-catalogue-background-lines div:nth-of-type(5) {
  right: calc((100% / 7) * 5);
}

#sinh-vien .homa-catalogue-background-lines div:nth-of-type(6) {
  right: calc((100% / 7) * 6);
}

#sinh-vien .homa-catalogue-background-lines div:nth-of-type(7) {
  right: calc((100% / 7) * 7);
}

#sinh-vien .homa-catalogue-background-lines div:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background-color: #c59b6d;
}

#sinh-vien .homa-catalogue-background-divided {
  z-index: 2;
  overflow: hidden;
}

#sinh-vien .homa-catalogue-background-divided>div {
  width: calc((100% / 7) * 1);
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

#sinh-vien .homa-catalogue-background-divided>div::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.15);
}

#sinh-vien .homa-catalogue-background-divided>div:first-of-type {
  right: 0;
  background-position: right center;
}

#sinh-vien .homa-catalogue-background-divided>div:nth-of-type(2) {
  right: calc((100% / 7) * 1);
  background-position: right calc((100% / 7) * 1) center;
}

#sinh-vien .homa-catalogue-background-divided>div:nth-of-type(3) {
  right: calc((100% / 7) * 2);
  background-position: right calc((100% / 7) * 2) center;
}

#sinh-vien .homa-catalogue-background-divided>div:nth-of-type(4) {
  right: calc((100% / 7) * 3);
  background-position: right calc((100% / 7) * 3) center;
}

#sinh-vien .homa-catalogue-background-divided>div:nth-of-type(5) {
  right: calc((100% / 7) * 4);
  background-position: right calc((100% / 7) * 4) center;
}

#sinh-vien .homa-catalogue-background-divided>div:nth-of-type(6) {
  right: calc((100% / 7) * 5);
  background-position: right calc((100% / 7) * 5) center;
}

#sinh-vien .homa-catalogue-background-divided>div:nth-of-type(7) {
  right: calc((100% / 7) * 6);
  background-position: right calc((100% / 7) * 6) center;
}


#sinh-vien .homa-catalogue-background-divided>div>div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 500%;
  background-size: cover;
}

#sinh-vien .homa-catalogue-background-divided>div:first-of-type div {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

#sinh-vien .homa-catalogue-background-divided>div:nth-of-type(2) div {
  -webkit-transform: translateX(20%);
  transform: translateX(20%);
}

#sinh-vien .homa-catalogue-background-divided>div:nth-of-type(3) div {
  -webkit-transform: translateX(40%);
  transform: translateX(40%);
}

#sinh-vien .homa-catalogue-background-divided>div:nth-of-type(4) div {
  -webkit-transform: translateX(60%);
  transform: translateX(60%);
}

#sinh-vien .homa-catalogue-background-divided>div:last-of-type div {
  -webkit-transform: translateX(80%);
  transform: translateX(80%);
}

#sinh-vien .homa-catalogue-title {
  text-align: center;
}

#sinh-vien .homa-catalogue-title h2 {
  font-size: 45px;
  text-transform: uppercase;
  margin-bottom: 45px;
}

#sinh-vien .homa-catalogue-text {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

#sinh-vien .homa-catalogue-links {
  position: relative;
  top: -90px;
}

#sinh-vien .homa-catalogue-links-item {
  position: absolute;
  width: calc(100% / 7);
  padding: 30px;
  text-align: center;
}

#sinh-vien .homa-catalogue-links-item:hover {
  cursor: pointer;
}

#sinh-vien .homa-catalogue-links-item:hover .homa-catalogue-links-item-title h4 {
  color: #c59b6d;
}

#sinh-vien .homa-catalogue-links-item:first-of-type {
  right: 0;
}

#sinh-vien .homa-catalogue-links-item:nth-of-type(2) {
  right: calc((100% / 7) * 1);
}

#sinh-vien .homa-catalogue-links-item:nth-of-type(3) {
  right: calc((100% / 7) * 2);
}

#sinh-vien .homa-catalogue-links-item:nth-of-type(4) {
  right: calc((100% / 7) * 3);
}

#sinh-vien .homa-catalogue-links-item:nth-of-type(5) {
  right: calc((100% / 7) * 4);
}

#sinh-vien .homa-catalogue-links-item:nth-of-type(6) {
  right: calc((100% / 7) * 5);
}

#sinh-vien .homa-catalogue-links-item:nth-of-type(7) {
  right: calc((100% / 7) * 6);
}

/* #sinh-vien .homa-catalogue-links-item:last-of-type {
  right: calc((100% / 7) * 7);
} */

#sinh-vien .homa-catalogue-links-item-title h5 {
  margin-bottom: 10px;
  font-weight: 400;
}

#sinh-vien .homa-catalogue-links-item-title>a {
  display: block;
}

#sinh-vien .homa-catalogue-links-item-title>a img {
  margin-bottom: 15px;
}

#sinh-vien .homa-catalogue-links-item-links {
  font-size: 19px;
  opacity: 0;
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
}

#sinh-vien .homa-catalogue-links-item:hover {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#sinh-vien .homa-catalogue-links-item:hover .homa-catalogue-links-item-links {
  opacity: 0.65;
}

#sinh-vien .homa-catalogue-links-item a {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#sinh-vien .homa-catalogue-links-item a:hover {
  color: #c79e70;
}

#about h2 {
  font-size: 53px;
}

#about .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-position: bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

#chuong-trinh-dao-tao .homa-product-title .fix-12-12 {
  height: 100% !important;
  display: table;
}

#chuong-trinh-dao-tao .homa-product-title .homa-product-content {
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}

#chuong-trinh-dao-tao .homa-product-title .homa-product-content div {
  padding: 15px 150px;
  float: right;
}

#chuong-trinh-dao-tao .homa-product ul li {
  width: 100%;
  height: calc(50vh - 35px);
  border: 1px solid #c79e70;
}

#chuong-trinh-dao-tao .homa-product-item:hover .example {
  width: 100%;
  height: calc(100vh / 2 - 37px);
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(50% 0, 100% 0, 100% 50%, 100% 100%, 50% 100%, 0 100%, 0 50%, 0 0);
  clip-path: polygon(50% 0, 100% 0, 100% 50%, 100% 100%, 50% 100%, 0 100%, 0 50%, 0 0);
}

#chuong-trinh-dao-tao .homa-product-item:hover figcaption div img {
  bottom: calc(50% - 50px);
  left: calc(50% - 60px);
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
  opacity: 0;
}

#chuong-trinh-dao-tao .homa-product-item {
  position: relative;
  height: 100%;
  text-align: center;
}

#chuong-trinh-dao-tao .homa-product-item .example {
  position: absolute;
  width: 300px;
  height: 260px;
  top: calc(50% - 145px);
  left: calc(50% - 150px);
  z-index: 2;
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}

#chuong-trinh-dao-tao .homa-product-item figcaption {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 3;
  bottom: 0;
  padding: 30px;
}

#chuong-trinh-dao-tao .homa-product-item figcaption div {
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
}

#chuong-trinh-dao-tao .homa-product-item figcaption div img {
  position: absolute;
  bottom: calc(50% - 90px);
  left: calc(50% - 60px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

#chuong-trinh-dao-tao .homa-product-item figcaption div h4 {
  position: absolute;
  margin: 0;
  letter-spacing: 1px;
  z-index: 1;
  color: #000;
  width: 100%;
  text-align: center;
  bottom: 0;
  left: 0;
  line-height: 36px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#chuong-trinh-dao-tao .homa-product-item:hover figcaption {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}

#chuong-trinh-dao-tao .homa-product-item:hover figcaption div h4 {
  color: #fff;
  bottom: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

#chuong-trinh-dao-tao .homa-product-title {
  height: 350px;
  position: relative;
  display: table;
  width: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

#chuong-trinh-dao-tao .homa-product-title .homa-product-text {
  height: 100%;
  width: 100%;
  display: table-cell;
  vertical-align: middle;
}

#chuong-trinh-dao-tao .homa-product-title .homa-product-text .text-wrap {
  float: right;
  padding-right: 120px;
}

#chuong-trinh-dao-tao .homa-product-title .homa-product-text .text-wrap p {
  margin-bottom: 5px;
  font-size: 15px;
}

#page-details h2 {
  font-size: 30px;
}

#page-details .homa-product-title {
  height: 350px;
  position: relative;
  display: table;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#page-details .homa-product-title .homa-product-content {
  height: 100%;
  width: 100%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

#page-details .homa-product-title .homa-product-content h2 {
  padding: 15px 0;
  font-weight: bold;
  min-width: 520px;
  margin: 0 auto;
  display: inline-block;
}

.post-item-2 {
  width: 100%;
  margin-bottom: 20px;
  background: #fff;
  padding: 9px;
}

.post-item-2 .post-thumbnail {
  position: relative;
  overflow: hidden;
}

.post-item-2 .post-thumbnail::after {
  content: "";
  padding-bottom: 70%;
  display: block;
}

.post-item-2 .post-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.post-item-2 .post-info {
  text-align: left;
}

.post-item-2 .post-info .date {
  font-size: 13px;
  color: #000;
  margin: 13px 0;
}

.post-item-2 .post-info .title {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
	height: 36px;
}

.post-item-2:hover {
  cursor: pointer;
}

#page-details .homa-page-details {
  color: #000;
  padding: 45px 15px 38px;
}

#page-details .homa-page-details .gallery {
  margin-left: -6px;
  margin-right: -6px;
}

#page-details .homa-page-details .gallery>[class*='col-'] {
  padding-left: 6px;
  padding-right: 6px;
}

#page-details .homa-page-details p {
  line-height: 1.5;
  text-align: justify;
}

#page-details .homa-page-details .banner-bottom {
  width: 100%;
}

#page-details .homa-page-details table {
  margin-bottom: 27px;
  min-width: 576px;
}

#page-details .homa-page-details table tr,
#page-details .homa-page-details table th,
#page-details .homa-page-details table td {
  text-align: left !important;
}


#page-details .homa-page-details table th:first-child {
  text-align: center;
}

.contact-us-form .close svg {
  fill: #000;
}

.contact-us-form .content {
  overflow-y: hidden;
  color: #000;
}

.contact-us-form .visible {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.overlay {
  position: fixed;
  top: 0;
  z-index: 301;
  display: none;
  overflow: auto;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}

.hamburger-menu-button {
  margin-top: 20px;
  width: 40px;
  height: 40px;
  padding: 6px;
  display: block;
  position: relative;
  float: right;
  z-index: 100;
  border: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  text-indent: 100%;
  color: transparent;
  background: none;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  z-index: 303;
}

.hamburger-menu-button:focus {
  outline: 0;
  border: 0;
}

.hamburger-menu-button-open {
  top: 50%;
  margin-top: -1px;
  left: 50%;
  margin-left: -12px;
}

.hamburger-menu-button-open,
.hamburger-menu-button-open::before,
.hamburger-menu-button-open::after {
  position: absolute;
  width: 24px;
  height: 2px;
  background: black;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.hamburger-menu-button-open::before,
.hamburger-menu-button-open::after {
  left: 0;
  content: "";
}

.hamburger-menu-button-open::before {
  top: 6px;
}

.hamburger-menu-button-open::after {
  bottom: 6px;
}

.hamburger-menu-button-close {
  background: transparent;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.hamburger-menu-button-close::before {
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}

.hamburger-menu-button-close::after {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}

.contact {
  width: 100%;
  height: 100%;
}

.contact h2,
.contact p {
  color: #000;
  text-align: left;
}

.contact h2 {
  font-size: 28px;
}

.contact p {
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 0;
}

.contact p span {
  width: 100px;
  float: left;
}

.contact .group-text {
  margin-bottom: 32px;
}

.contact .contact-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact .contact-social a:first-child {
  margin-right: 23px;
}

.contact .contact-social a i {
  font-size: 28px;
  color: #000;
}

.contact .contact-form {
  height: 75vh;
  width: 100%;
  padding: 40px 40px 60px 40px;
  background: #fff;
  -webkit-box-shadow: 5px 7px 10px #ccc;
  box-shadow: 5px 7px 10px #ccc;
  position: relative;
  text-align: left;
}

.contact-form .text {
  display: table;
  height: calc(100% - 170px);
  width: 100%;
}
.contact-form .custom-logo-link img{
	width: 150px;
}
.contact-form .text>div {
  display: table-cell;
  vertical-align: middle;
}

.contact-form .group {
  position: relative;
  margin: 25px 0px;
}

.contact-form .error small {
  opacity: 1;
}

.contact-form .error input {
  border-bottom: 1px solid red;
}

.contact .contact-form h1 {
  color: #0c4da2;
}

.contact .contact-form small {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 11px;
  color: red;
  text-align: right;
  right: 5px;
  top: 10px;
  opacity: 0;
}

.contact .contact-form .group textarea {
  resize: none;
}

.contact-form .group input,
.contact-form .group textarea {
  background: none;
  color: #a9a9a9;
  font-size: 15px;
  padding: 10px 10px 10px 0px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #a9a9a9;
}

.contact-form .group input:focus,
.contact-form .group textarea:focus {
  outline: none;
}

.contact-form .group input:focus~label,
.contact-form .group input:valid~label,
.contact-form .group textarea:focus~label,
.contact-form .group textarea:valid~label {
  top: -13px;
  font-size: 11px;
  color: #1f90cf;
  left: 0px;
}

.contact-form .group input:focus~.bar:before,
.contact-form .group textarea:focus~.bar:before {
  width: 100%;
}

.contact-form .group input[type="password"] {
  letter-spacing: 0.3em;
}

.contact-form .group label {
  color: #a9a9a9;
  font-size: 14px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
}

.contact .contact-form .btn-submit {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.contact .contact-form .btn-submit div {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  float: right;
}

.contact .contact-form .btn-submit div span {
  font-size: 14px;
  color: #4d4d4d;
  text-transform: uppercase;
  font-weight: 500;
}

.contact .contact-form .btn-submit div span i {
  padding-left: 5px;
}

.contact .contact-form .btn-submit div .hover {
  display: inline-block;
  background: rgba(0, 0, 0, 0.05);
  width: 25px;
  height: 25px;
  position: absolute;
  right: -7px;
  top: -2px;
  border-radius: 100%;
  -webkit-transition-duration: 0.7s;
  transition-duration: 0.7s;
  border: none;
}

.contact .contact-form .btn-submit div:hover {
  position: relative;
  cursor: pointer;
}

.contact .contact-form .btn-submit div:hover .hover {
  position: absolute;
  display: inline-block;
  background: rgba(0, 0, 0, 0.05);
  width: calc(100% + 20px);
  height: 25px;
  top: -2px;
  border-radius: 15px;
  border: none;
}

#trang-chu-post .flex {
  -ms-flex-line-pack: justify;
  align-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.post-item {
  background: rgba(255, 255, 255, 0.7);
  width: calc((100% - 14px)/3);
  height: 400px;
  position: relative;
  overflow: hidden;
}

.post-item .post-thumbnail {
  position: relative;
  height: 250px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.post-item .post-info {
  text-align: left;
  padding: 15px;
}

.post-item .post-info .date {
  font-size: 13px;
  color: #000;
  margin: 13px 0;
}

.post-item .post-info .title {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

}

.post-item i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.post-large-item {
  background: rgba(255, 255, 255, 0.7);
  height: 400px;
  position: relative;
}

.post-large-item a {
  /* height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; */
}

.post-large-item .post-thumbnail {
  position: relative;
  height: 250px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.post-large-item .post-info {
  text-align: left;
  height: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 15px;
}

.post-large-item .post-info .date {
  font-size: 16px;
  color: #000;
  margin: 10px 0;
}

.post-large-item .post-info .description {
  	color: gray;
  	font-size: 14px;
}

.read-more-btn-normal {
  	background: #f88823ad;
  	border-radius: 5px;
  	color: white;
  	padding: 5px 20px;
  	font-size: 13px;
  	width: 150px;
	padding: 10px 25px;

}

.read-more-text {
  color: #ff4d07;
  font-size: 13px;
  position: absolute;
  left: 15px;
  bottom: 15px;
}

.read-more-btn-fixed {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #f88823ad;
  border-radius: 5px;
  color: white;
  padding: 10px 25px;
  font-size: 13px;
}
.section-5 .read-more-btn-fixed{
	background: #f88823;
	padding: 10px 25px;
}
.title-divider {
  width: 70px;
  height: 3px;
  background: #f88823;
  margin-bottom: 15px;
}

.post-large-item .post-info .title {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-2 {
  background: #d7d7d7;
  padding: 15px 0;
}

.footer-2 .copyright {
  color: #000;
  font-weight: 400;
}

.footer-2 .social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer-2 .social-icon a:not(:last-child) {
  margin-right: 27px;
}

.footer-2 .social-icon a i {
  color: #000;
  font-size: 23px;
}

.footer-2.style-2 {
  background: transparent;
  border-top: solid 1px white;
}

.footer-2.style-2 .copyright {
/*   color: white; */
	color : #21368f;
}

.footer-2.style-2 .social-icon a i {
  color : #21368f;
}

.js-tabs .nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 36px;
  max-width: 850px;
}

.js-tabs .tab {
  height: 50px;
  line-height: 50px;
  padding: 0 35px;
  color: #c79e70;
  border-radius: 50px;
  border: 1px solid #c79e70;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  flex: 1;
  text-align: center;
}

.js-tabs .tab:not(:last-child) {
  margin-right: 12px;
}

.js-tabs .tab:focus,
.js-tabs .tab:hover,
.js-tabs .tab.active {
  background: #c79e70;
  color: #fff;
}

.js-tabs .panels {
  display: block;
}

.js-tabs .tab-panel {
  display: none;
}

.js-tabs .tab-panel.active {
  display: block;
}

.our-student-title,
.our-event-title {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 25px;
}


.student {
  padding: 30px 12px 25px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  min-height: 393px;
  margin-top: 15px;
  margin-bottom: 15px;
}

a.student-modal:hover .student {
  box-shadow: 0 3px 5px rgb(0 0 0 / 27%);
}

.student img {
  width: 150px !important;
  height: 150px !important;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
}

.student .student-info h4 {
  font-size: 16px;
  margin-bottom: 26px;
  font-weight: 700;
  color: #000;
	display: -webkit-box;
  	-webkit-line-clamp: 3;
  	-webkit-box-orient: vertical;
  	overflow: hidden;
  	text-overflow: ellipsis;
}

.student .student-info p {
  	font-size: 14px;
  	display: -webkit-box;
  	-webkit-line-clamp: 6;
  	-webkit-box-orient: vertical;
  	overflow: hidden;
  	text-overflow: ellipsis;
	height: 126px;
}
.popup-video .post-thumbnail{
	height: auto;
}
.event-item {
  background: #fff;
  border-radius: 8px;
  padding: 9px;
}

.event-item .event-image {
  position: relative;
  margin-bottom: 24px;
}

.event-item .event-image::after {
  content: "";
  padding-bottom: 80%;
  display: block;
}

.event-item .event-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.event-item .event-title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 29px;
}



.video-item {
  margin-bottom: 20px;
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.video-item .video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

#hinhanh-panel .grid {
  margin-left: -5px;
  margin-right: -5px;
}

#hinhanh-panel .grid>[class*='col-'] {
  padding-left: 5px;
  padding-right: 5px;
}

.portfolio-item {
  position: relative;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.portfolio-item::after {
  content: "";
  padding-bottom: 100%;
  display: block;
}

.portfolio-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.portfolio-item .portfolio-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  z-index: 2;
}

.portfolio-item .portfolio-overlay i {
  font-size: 22px;
  color: #fff;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.btn-home {
  position: fixed;
  right: 15px;
  bottom: 35px;
  z-index: 999;
  -webkit-animation: floatAnimation 1.5s 0s linear alternate infinite;
  animation: floatAnimation 1.5s 0s linear alternate infinite;
}

.btn-home a {
  margin: 0 auto 5px;
  background: #1877f2;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  -webkit-animation: pulseAnimation 1.5s infinite 3s cubic-bezier(0.25, 0, 0, 1);
  animation: pulseAnimation 1.5s infinite 3s cubic-bezier(0.25, 0, 0, 1);
  -webkit-box-shadow: 0 0 0 0 white;
  box-shadow: 0 0 0 0 white;
}

.btn-home a .button-wrap {
  border: 1px solid #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
}

.btn-home a i {
  font-size: 28px;
  color: #fff;
  line-height: 60px;
}

.phone-wiggle {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(54%, #f88823), color-stop(90%, #eb4f2c));
  background: linear-gradient(180deg, #f88823 54%, #eb4f2c 90%);
  position: fixed;
  left: 70px;
  bottom: 20px;
  z-index: 999;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  -webkit-animation: pulseAnimation 1.5s infinite 3s cubic-bezier(0.25, 0, 0, 1), floatAnimation 1.5s 0s linear alternate infinite;
  animation: pulseAnimation 1.5s infinite 3s cubic-bezier(0.25, 0, 0, 1), floatAnimation 1.5s 0s linear alternate infinite;
  -webkit-box-shadow: 0 0 0 0 white;
  box-shadow: 0 0 0 0 white;
}

.phone-wiggle .button-wrap {
  border: 1px solid #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
}

.phone-wiggle .button-wrap i {
  font-size: 28px;
  color: #fff;
  line-height: 60px;
}

.messenger-wiggle {
  background: #0084ff;
  position: fixed;
  left: 70px;
  bottom: 110px;
  z-index: 999;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  -webkit-animation: pulseAnimation 1.5s infinite 3s cubic-bezier(0.25, 0, 0, 1), floatAnimation 1.5s 0s linear alternate infinite;
  animation: pulseAnimation 1.5s infinite 3s cubic-bezier(0.25, 0, 0, 1), floatAnimation 1.5s 0s linear alternate infinite;
  -webkit-box-shadow: 0 0 0 0 white;
  box-shadow: 0 0 0 0 white;
}

.messenger-wiggle .button-wrap {
  border: 1px solid #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
}

.messenger-wiggle .button-wrap i {
  font-size: 28px;
  color: #fff;
  line-height: 60px;
}
.view-wiggle {
  background: #fff;
  position: fixed;
  left: 70px;
  bottom: 200px;
  z-index: 999;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  -webkit-animation: pulseAnimation 1.5s infinite 3s cubic-bezier(0.25, 0, 0, 1), floatAnimation 1.5s 0s linear alternate infinite;
  animation: pulseAnimation 1.5s infinite 3s cubic-bezier(0.25, 0, 0, 1), floatAnimation 1.5s 0s linear alternate infinite;
  -webkit-box-shadow: 0 0 0 0 white;
  box-shadow: 0 0 0 0 white;
}

.view-wiggle .button-wrap {
	border: 1px solid #21368f;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	text-align: center;
	padding: 7px;
	display: flex;
	align-items: center;
}

.view-wiggle .button-wrap i {
  font-size: 28px;
  color: #fff;
  line-height: 60px;
}
@-webkit-keyframes floatAnimation {
  50% {
    -webkit-transform: translateY(-px);
    transform: translateY(-px);
  }

  100% {
    -webkit-transform: translateY(-18px);
    transform: translateY(-18px);
  }
}

@keyframes floatAnimation {
  50% {
    -webkit-transform: translateY(-px);
    transform: translateY(-px);
  }

  100% {
    -webkit-transform: translateY(-18px);
    transform: translateY(-18px);
  }
}

@-webkit-keyframes pulseAnimation {
  to {
    -webkit-box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

@keyframes pulseAnimation {
  to {
    -webkit-box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

.section-3 .wrap {
  padding-left: 15px;
  padding-right: 15px
}

.section-3 .col-6-10 .flex {
  height: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.section-5 h2 {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-align: left;
}

.album-item,
.work-item {
  width: 100%;
  background: rgba(255, 255, 255, 1);
  /* border-radius: 9px; */
  height: auto;
  /* margin-bottom: 25px; */
}

.album-item .post-thumbnail,
.work-item .post-thumbnail {
  margin-bottom: 15px;
  position: relative;
}

.album-item .post-thumbnail i,
.work-item .post-thumbnail i {
  font-size: 38px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}

.album-item:hover .post-thumbnail i,
.work-item:hover .post-thumbnail i {
  opacity: 1;
}

.album-item .post-thumbnail::after,
.work-item .post-thumbnail::after {
  content: "";
  display: block;
  padding-bottom: 70%;
}

.album-item .post-info h3 {
  /* text-align: center; */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.work-item .post-info h3 {
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-5 .flex.fixedSpaces {
  margin-left: -6px;
  margin-right: -6px;
}

.section-5 .flex.fixedSpaces>[class*='col-'] {
  padding-left: 6px;
  padding-right: 6px;
}

.section-6 .contact-image {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-6 .contact-info {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  text-align: left;
  padding: 45px;
}

.section-6 .contact-info .group-text {
  margin-bottom: 24px;
}

.section-6 .contact-info .contact-social {
  margin-bottom: 24px;
}

.section-6 .contact-info .contact-social a i {
  font-size: 28px;
  color: #fff;
}

.section-6 .contact-info .contact-social a:first-child {
  margin-right: 23px;
}

.section-6 .btn {
  display: inline-block;
  border-radius: 5px;
  /* background: #c79e70; */
  background: linear-gradient(rgb(248, 136, 35) 54%, rgb(235, 79, 44) 90%);
  min-width: 155px;
  height: 40px;
  line-height: 40px;
  font-size: 13px;
  color: white;
  text-align: center;
}
.section-6 .btn:hover{
	cursor: pointer;
}
#ve-chung-toi .flex {
  padding: 60px;
}

.modal-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: none;
  padding: 0;
  margin: 0;
}

.modal-popup.show {
  display: block;
}

.modal-popup .modal-body {
  padding: 0;
  margin: 0;
  position: relative;
}

.modal-popup.modal-middle {
  background: rgba(0, 0, 0, 0.6);
  width: 100vw;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-popup.modal-middle.show {
  display: flex;
}

.modal-popup.modal-middle .modal-body {
  width: 500px;
}

.modal-popup.modal-left {
  top: auto;
  left: 0;
  bottom: 0;
  transform: translate(0, 0);
	z-index: 999999;
}

.modal-popup.modal-left .modal-body {
  width: 250px;
}

.modal-popup.modal-right {
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  transform: translate(0, 0);
}

.modal-popup.modal-right .modal-body {
  width: 250px;

}

.modal-close {
  position: absolute;
  top: 0;
  width: 35px;
  right: 0;
  height: 35px;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  line-height: 35px;
  font-size: 20px;
	z-index: 9999;
}

.modal-close:hover {
  cursor: pointer;
}

#modal-container {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(0);
  z-index: 1;
  z-index: 999;
}

#modal-container.one-modal {
  transform: scaleY(0.01) scaleX(0);
  animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.one-modal .modal-background .modal {
  transform: scale(0);
  animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.one-modal.out {
  transform: scale(1);
  animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container.one-modal.out .modal-background .modal {
  animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#modal-container .modal-background {
  display: table-cell;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  vertical-align: middle;
}

#modal-container .modal-background .modal {
  background: white;
  display: inline-block;
  border-radius: 3px;
  font-weight: 300;
  position: relative;
  width: 100%;
  padding: 50px 10px 25px 25px;
  max-width: 500px;
}

#modal-container .modal-background .modal.fullscreen {
  max-width: 100%;
  background: transparent;
  width: 100%;
  height: 100%;
}

#modal-container .modal-background .modal.fullscreen .close {
  font-size: 28px;
  color: #ffffff;
  right: 20px;
  top: 10px;
}

#modal-container .modal-background .modal.fullscreen .modal-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

#modal-container .modal-background .modal .close {
  position: absolute;
  top: 0px;
  right: 0;
  font-size: 18px;
  color: #000;
  z-index: 9;
  padding: 10px 15px;
}

#modal-container .modal-background .modal .close:hover {
  cursor: pointer;
}

#modal-container .modal-background .modal .modal-content {
  height: 100%;
  width: 100%;
  overflow: auto;
  padding-right: 18px;
}

#modal-container .modal-background .modal h2 {
  font-size: 25px;
  line-height: 25px;
  margin-bottom: 15px;
  color: #000;
}

#modal-container .modal-background .modal p {
  font-size: 18px;
  line-height: 22px;
  color: #000;
}

#modal-container .modal-background .modal .modal-svg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 3px;
}

#modal-container .modal-background .modal .modal-svg rect {
  stroke: #fff;
  stroke-width: 2px;
  stroke-dasharray: 778;
  stroke-dashoffset: 778;

}

@keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(1) scaleX(1);
  }
}

@keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(0.005) scaleX(0);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes zoomOut {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}



.sv-item {
  /* margin-bottom: 25px; */
  padding: 15px 10px 7px;
  /* border-radius: 9px; */
  transition: all 0.3s;
  background: #fff;
}

.sv-item:hover {
  cursor: pointer;


}

.sv-item .sv-thumbnail {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto 15px;
}

.sv-item .sv-info .title {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

#sukien-panel .post-item {
  margin-bottom: 5px;
}

.btn-backhome {
  height: 45px;
  line-height: 45px;
  background-color: #000000;
  color: #fff;
  border-radius: 25px;
  display: inline-block;
  width: 120px;
  text-align: center;
  margin: 35px auto 0;
}


.search-icon {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: solid 1px #ccc;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon i {
  font-size: 16px;
  padding: 0;
  color: #a9a9a9;
}

.search-icon:hover {
  cursor: pointer;

  border: solid 1px #000;
}

.search-icon:hover i {
  color: #000;
}

.btn-open {
  height: 35px;
  padding: 0 45px;
  line-height: 35px;
  border-radius: 35px;
}

#searchForm {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-form {
  width: 100%;
}

.search-form .group {
  width: 100%;
  max-width: 350px;
  margin-right: 15px;
}

.sidebarTrigger i {
  font-size: 24px;
}

.search-page-title span {
  font-weight: 400;
}

.panel .sections .menu {
  display: flex;
  align-items: center;
}

header {
  padding: 0 !important;
	box-shadow: 2px 2px 5px #808080;
}

.header-search-box {
  border: solid 1px rgb(230, 230, 230);
  border-radius: 10px;
  background-color: rgb(245, 245, 245);
  border-radius: 5px;
  padding: 5px 15px;
}
.header-search-box button{
	border: 0;
	outline: 0;
	background: transparent;
}
.header-search-input {
  border: none;
  background: transparent;
  font-size: 12px;
  min-width: 200px;
}

.header-search-input:focus {
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
}

.header-search-icon {
  color: #ff4d07;
}

.text-shadow {
  text-shadow: 2px 2px rgb(48, 48, 48);
}

.banner-search-box {
  /* background: white; */
  border-radius: 10px;
  height: 40px;
  padding-left: 10px;
  position: relative;
  text-align: left;
  margin-top: 20px;
}

.banner-search-input {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	background-color: rgb(245, 245, 245);
  padding-left: 15px;
  width: calc(100% - 70px);
  height: 100%;
  color: gray;
	border: solid 1px rgb(230, 230, 230)
}

.banner-search-input:focus {
  outline: none;
}

.search-append {
  	width: 70px;
  	background: #f88823ad;
  	height: 100%;
  	top: 0;
  	text-align: center;
  	position: absolute;
  	right: 0;
  	border-top-right-radius: 10px;
  	border-bottom-right-radius: 10px;
	outline: 0;
	border: 0;
}
.search-append:hover, .search-append:focus{
	border: 0;
	outline: 0;
}
.search-append:hover{
	cursor: pointer;
}
.banner-search-icon {
  font-size: 20px;
  line-height: 40px;
}

.one-line {
  line-height: 1.5;
  height: 1.5em;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.two-line {
  line-height: 1.5;
  height: 3em;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.three-line {
  line-height: 1.5;
  max-height: 4.5em;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.four-line {
  line-height: 1.5;
  max-height: 6em;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.five-line {
  line-height: 1.5;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.section-sub-title {
  position: relative;
  margin-bottom: 30px;
}

.section-sub-title h2 {
  text-align: left;
  color: black;
}

.slide .background-overlay-white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 2;
}

.ratio-16-9 {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

.ratio-4-3 {
  width: 100%;
  padding-top: 75%;
  position: relative;
}

.relative {
  position: relative;
}



.slide-left-arrow {
  text-align: center;
  position: absolute;
  left: -20px;
  top: 50%;
  background: #f88823ad;
  z-index: 20;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transition: .2s ease;
  -webkit-transition: .2s ease;
  cursor: pointer;

}

.slide-left-arrow i {
  color: white;
  font-size: 20px;
  line-height: 40px;
}

.slide-left-arrow:hover {
  border-radius: 25px;
}

.slide-right-arrow {
  text-align: center;
  position: absolute;
  right: -20px;
  top: 50%;
  background: #f88823ad;
  z-index: 20;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transition: .2s ease;
  -webkit-transition: .2s ease;
  cursor: pointer;
}

.slide-right-arrow i {
  color: white;
  font-size: 20px;
  line-height: 40px;
}

.slide-right-arrow:hover {
  border-radius: 25px;
}

.events-album,
.video-clips {
  margin-bottom: 25px;
}


.college-item {
  display: flex;
  margin-bottom: 15px;
}

.college-item .college-image {
  flex-basis: 30%;
}

.college-item .college-image img {
  width: 100%;
}

.college-item .college-info {
  text-align: left;
  padding: 10px 20px;
  flex-basis: 70%;
}

.college-item .college-info .college-name {
  font-size: 18px;
  font-weight: bold;
  color: #ff4d07;
  margin-bottom: 5px;
}

.college-item .college-info .college-title {
  margin-bottom: 20px;
}

.college-item .college-info .college-phone {
  font-size: 14px;
  margin-bottom: 5px;
}

.college-item .college-info .college-email {
  font-size: 14px;
}

.college-apply-button {
  background: #ff4d07;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 30px;
  margin-top: 20px;
  margin-bottom: 20px;
  cursor: pointer;
}

.college-apply-button:hover {
  box-shadow: 2px 2px 4px lightgray;
}

.footer-style-2 {
  padding-top: 40px;
	position: relative;
	color : #21368f;
}
/* .footer-style-2:after{
	content: "";
  	background: rgba(54, 52, 53, 0.7);
  	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
} */
.footer-style-2 .fix-12-12{
	position: relative;
	z-index: 2;
}
.footer-style-2 .footer-company {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-style-2 .footer-company img {
  width: 80px;
}

.footer-style-2 .footer-company .name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.footer-style-2 .footer-company .company-name {
  margin-left: 10px;
}

.footer-info-group {
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-info-group-item {
  margin-bottom: 10px;
}

.footer-info-group-item .info-title {
  font-weight: bold;
}

.border-right-white {
  border-right: solid 1px white;
}

.footer-detail-info {
  padding-top: 20px;
  padding-bottom: 20px;
}

.page-section-title-2 {
  text-align: center;
  color: #056aae;
  padding: 20px 0;
}

.career-item {
  display: flex;
  background: white;
  padding: 8px;
  margin-bottom: 15px;
}

.career-item .career-image {
  flex-basis: 30%;
}

.career-item .career-info {
  text-align: left;
  padding: 0 8px;
}

.career-item .career-info .career-name {
  font-weight: bold;
  color: #ff4d07;
  margin-bottom: 10px;
  font-size: 14px;
}

.career-item .career-info .career-des {
  font-size: 13px;
}

.career-item .career-info .career-address {
  font-weight: bold;
  font-size: 13px;
}

.page-section-content {
  line-height: 2em;
}

.reason-list {}

.reason-item {
  display: flex;
  margin-bottom: 10px;
}

.reason-item .reason-number {
  height: 40px;
  color: white;
  background: #ff4d07;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  margin-right: 10px;
  padding: 0 10px;
	
  position: relative;
  top: 5px;
}

.reason-item .reason-des{
	line-height: 1.5
}
.collapsible {
  background-color: white;
  color: #ff4d07;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 15px;
  font-weight: bold;
  border: solid 1px #ff4d07;
  margin-bottom: 10px;
  border-radius: 8px;
}


.collapsible.active,
.collapsible:hover {
  background-color: #ff4d07;
  color: white;
}

.collapsible:after {
  content: '\002B';
  color: #ff4d07;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.collapsible.active:after {
  content: "\2212";
  color: white;
}

.collap-content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: white;

}

.collap-content p {
  margin-bottom: 20px;
  margin-top: 10px;
}

.news-cate-group {
  margin-bottom: 40px;
}

.news-cate-list-item {
  
}
.news-cate-list-item .news-item-info {
  padding: 60px 30px 60px 40px;
  background: rgba(255, 255, 255, 0.8);
}

.news-item-info .news-item-title {
  color: black;
  font-size: 24px;
  text-transform: uppercase;
  text-align: left;
}

.news-item-info .news-item-des {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: left;
}
.search-page-title{
	color: #1877f2;
	margin-bottom: 35px;
}

.section-5 .news-cate-list-item-2 .news-item-info .news-item-title{
	color: #fff;
}
.section-5 .news-cate-list-item-2 .news-item-info .news-item-title:hover{
	    color: #ff4b0c;
}
.section-5 .news-cate-list-item-2 .news-item-info .news-item-des{
	color: #fff;
	min-height: 110px;
}
.section-5 .news-cate-list-item-2 .news-item-info{
	background: transparent;
}
.icon-scroll-arrow,
.icon-scroll-arrow:before {
  position: absolute;
  left: 50%;
}

.icon-scroll-arrow {
  width: 40px;
  height: 40px;
  border-left: none;
  border-top: none;
  border-right: 2px #000 solid;
  border-bottom: 2px #000 solid;
	transform: translatex(-50%) rotate(45deg);
  bottom: 35px;
  left: 50%;

}

.icon-scroll-arrow:before {
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  margin: -10px 0 0 -10px;
  border-left: none;
  border-top: none;
  border-right: 1px #000 solid;
  border-bottom: 1px #000 solid;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: arrowScroll;
}

@keyframes arrowScroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-10px, -10px);
  }
}
.news-cate-item{
	position: relative;
}
.news-cate-item img{
	width: 100%;
}
.news-cate-item .col-5-12{
	position: absolute;
	bottom: 0;
	left: 0;
	height: auto;
	width: 100%;
}
.news-cate-item .news-item-info .news-item-title{
	height: auto;
}
.news-cate-item .news-item-info{
	width: 100%;
	height: 100%;
}
.news-cate-list-item-2{
	position: relative;
}
.news-cate-list-item-2 .col-6-12{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
}
.d-none{
	display: none !important;
}
.d-block{
	display: block !important;
}

@media (min-width: 992px){
	.d-lg-block{
		display: block !important;
	}
	.d-lg-none{
		display: none !important;
	}
	.news-cate-item .col-5-12{
		top: 0;
		bottom: auto;
		height: 100%;
		width: 50%;
		
	}
	.news-cate-list-item-2 .news-item-info {
	  padding: 60px 30px 60px 40px;
		
	}
}

/*# sourceMappingURL=custom.css.map */