@charset "utf-8";
/* CSS Document */
@-webkit-keyframes shine {
  100% {left: 125%;}
}
@keyframes shine {
  100% {left: 125%;}
}
.hover2{position: relative;cursor: pointer;}
.hover2:before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
	z-index: 2;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  transition: all 0.3s ease;
}

.hover2:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 2s;
}


/* Zoom In #1 */
.hover1 {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}
.hover1:hover{

	-webkit-animation: 1s;
	animation: 3s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
  transition: .5s ease-in-out;
	
}


.hover-zoom-in-slider {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.hover-zoom-in-slider:hover{
  -webkit-animation: .5s;
   animation: 3s;

  -webkit-transform: scale(1.1);
  transform: scale(1.1);transition: .5s ease-in-out;
}

/*
.imgcbt{
	transform: scale(1);
	transition: .3s ease-in-out;
}
.imgcbt:hover{
	transform: scale(1.1);transition: all .5s;
}
*/


/* Zoom In #1 */
.hover01 {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 1.2s ease-in-out;
	transition: 1.2s ease-in-out;
}
.hover01:hover{
/*
	 -webkit-animation: 1s;
	 animation: 3s;
*/
	-webkit-transform: scale(1);
	transform: scale(1.1);transition: 1.2s ease-in-out;
	
}

/* Zoom In #2 */
.hover02 {
	width: 300px;
	height: auto;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover02:hover img {
	width: 350px;
}

/* Zoom Out #1 */
.hover03 {
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover03:hover {
	-webkit-transform: scale(1);
	transform: scale(1);
}

/* Zoom Out #2 */
.hover04 {
	width: 400px;
	height: auto;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover04:hover{
	width: 350px;
}

/* Slide */
.hover05 {
	margin-left: 30px;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover05:hover{
	margin-left: 0;
}

/* Rotate */
.hover06 {
	-webkit-transform: rotate(15deg) scale(1.4);
	transform: rotate(15deg) scale(1.4);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover06:hover{
	-webkit-transform: rotate(0) scale(1);
	transform: rotate(0) scale(1);
}

/* Blur */
.hover07 {
	-webkit-filter: blur(3px);
	filter: blur(3px);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover07 :hover{
	-webkit-filter: blur(0);
	filter: blur(0);
}

/* Gray Scale */
.hover08 {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover08:hover{
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}

/* Sepia */
.hover09{
	-webkit-filter: sepia(100%);
	filter: sepia(100%);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover09:hover{
	-webkit-filter: sepia(0);
	filter: sepia(0);
}

/* Blur + Gray Scale */
.hover10{
	-webkit-filter: grayscale(0) blur(0);
	filter: grayscale(0) blur(0);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover10:hover{
	-webkit-filter: grayscale(100%) blur(3px);
	filter: grayscale(100%) blur(3px);
}

/* Opacity #1 */
.hover11{
	opacity: 1;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover11:hover{
	opacity: .5;
}

/* Opacity #2 */
.hover12{
	background: #1abc9c;
}
.hover12 img {
	opacity: 1;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover12:hover img {
	opacity: .5;
}

/* Flashing */
.hover13:hover img {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
@-webkit-keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}
@keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}


/* Circle */
.hover15{
	position: relative;
}
.hover15::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255,255,255,.2);
	border-radius: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.hover15:hover::before {
	-webkit-animation: circle .75s;
	animation: circle .75s;
}
@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
@keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}


/*----------------------- Scroll ------------------------*/

/*@keyframes movebtn {
  0% {
    transform: translateY(-10px);
  }
  25% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(10px);
  }
  75% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-10px);
  }
}*/


/*--------------------------  images  ---------------------------------*/

@keyframes imagesctoi {
  0% {
    transform: translateY(-5px);
  }
  25% {
    transform: translateY(5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(-5px);
  }
}



/*----------------------------------	grow shadow hover	---------------------------------------------*/

.hover-grow { width: 100%; }

/* Grow Shadow */
.hover-grow-shadow {
  border-radius: 20px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, .5);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}
.hover-grow-shadow:hover, .hover-grow-shadow:focus, .hover-grow-shadow:active {
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, .4);
  -webkit-transform: scale(1.1);
  transform: scale(1.03);
}




/*-------------------------------------- Grow -Shadow 1 ---------------------------------------------*/


/* Grow Shadow */
.hvr-grow-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}
.hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
  box-shadow: 5px 5px 5px -5px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}



/*----------- hover IMG gioi thieu -------------*/


.hover-gioith{
	transition: all 1.2s;
}
.hover-gioith:hover{
	margin-top: -20px;
	transition: all 1.2s;
	margin-bottom: 20px;
}




/*-----------------------------Overlay SP----------------------------------------------*/



.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0px;
  background-color: rgba(0, 0, 0, .5);
/*	background: linear-gradient(358.75deg,rgba(247,119,140,.3) 1.2%,rgba(247,119,140,.3) 82.62%,rgba(0,0,0,0) 99.06999999999999%);*/
  overflow: hidden;
  width: 100%;
  height: 0px;
  transition: all .3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sp:hover .overlay {
  height: 100%;
/*  background: linear-gradient(90deg, rgba(25,96,209,.7) 0%, rgba(190,81,237,.7) 62%, rgba(220,94,167,.7) 100%);*/
/*	background: linear-gradient(180deg, rgba(7,29,55,1) 0%, rgba(52,89,123,1) 62%, rgba(59,93,123,1) 100%);*/
background-color: rgba(0, 0, 0, .5);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.text-overlay{
	color: white;
	width: 100%;
  font-size: 20px;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;  
  padding: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  font-family: var(--font-medium);

}


/* Radial Out */
.hvr-radial-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
/*  background: #e1e1e1;*/
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-radial-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  border-radius: 50px;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-radial-out:hover, .hvr-radial-out:focus, .hvr-radial-out:active {
  color: white;
}
.hvr-radial-out:hover:before, .hvr-radial-out:focus:before, .hvr-radial-out:active:before {
  -webkit-transform: scale(2);
  transform: scale(2);
}




/*------------------------------------------------------------------*/

/* Pulse Shrink */
@-webkit-keyframes hvr-pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes hvr-pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.hvr-pulse-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pulse-shrink:hover, .hvr-pulse-shrink:focus, .hvr-pulse-shrink:active {
  -webkit-animation-name: hvr-pulse-shrink;
  animation-name: hvr-pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
/*-------------------------------------------------------------------------------------*/

/* Rectangle Out */
.hvr-rectangle-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
/*  background: #e1e1e1;*/
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-rectangle-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  border-radius: 0px 20px 20px 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-rectangle-out:hover, .hvr-rectangle-out:focus, .hvr-rectangle-out:active {
  color: #fff;
}
.hvr-rectangle-out:hover:before, .hvr-rectangle-out:focus:before, .hvr-rectangle-out:active:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}


/*--------------------------------------------  -----------------------------------------*/

/* Bounce In */
.hvr-bounce-in1 {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-in1:hover, .hvr-bounce-in1:focus, .hvr-bounce-in1:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  z-index: 10;
  box-shadow: 0px 0px 3px 1px rgba(235, 70, 48, .5);
}



/*---------------------------------------------------------------------------------------------*/

/* Right-to-Left Color Swap Link Hover Effect*/

.Swap-Link {
  background-image: linear-gradient(
    to right,
    #54b3d6,
    #54b3d6 50%,
    #000 50%
  );
  background-size: 200% 100%;
  background-position: -100%;

  display: inline-block;
  padding: 5px 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

.Swap-Link:before{
  content: '';
  background: #54b3d6;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

.Swap-Link:hover {
 background-position: 0;
}
.Swap-Link:hover .Swap-Link i{
 color: #54b3d6;
}
.Swap-Link:hover::before{
  width: 100%;
}


/*-----------------------------------------------------------*/

/* Bounce To Right */
.hvr-bounce-to-right-sent-mail {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-right-sent-mail:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bacground-btn-mail-hvr);
  border-radius: var(--radius-send-dknt);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-right-sent-mail:hover, .hvr-bounce-to-right-sent-mail:focus, .hvr-bounce-to-right-sent-mail:active {
  color: white;
}
.hvr-bounce-to-right-sent-mail:hover:before, .hvr-bounce-to-right-sent-mail:focus:before, .hvr-bounce-to-right-sent-mail:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

@media only  screen and (min-width: 1px) and (max-width: 750px){
  .hvr-bounce-to-right-sent-mail:before {
    border-radius: 5px;
  }
}

/* Underline From Left */
.cs1 .hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.cs1 .hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: var(--mau-chinh);/*#FDBCBD*/
  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.cs1 .hvr-underline-from-left:hover:before,.cs1 .hvr-underline-from-left:focus:before,.cs1 .hvr-underline-from-left:active:before {
  right: 0;
}


/* Underline From Left */
.ve-chungtoi .hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.ve-chungtoi .hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: var(--mau-chinh);/*#FDBCBD*/
  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.ve-chungtoi .hvr-underline-from-left:hover:before,.cs1 .hvr-underline-from-left:focus:before,.cs1 .hvr-underline-from-left:active:before {
  right: 0;
}

/* Underline From Left */
.wp-travel-tab-sp .hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.wp-travel-tab-sp .hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: var(--background-loadtab);
  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.wp-travel-tab-sp .hvr-underline-from-left:hover:before,.wp-travel-tab-sp .hvr-underline-from-left:focus:before,.wp-travel-tab-sp .hvr-underline-from-left:active:before {
  right: 0;
}

/* Underline From Center */
.wp-travel-tab-sp .hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.wp-travel-tab-sp .hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: var(--background-loadtab);
  height: 2px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.wp-travel-tab-sp .hvr-underline-from-center:hover:before, .wp-travel-tab-sp .hvr-underline-from-center:focus:before, .wp-travel-tab-sp .hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}

/* Underline From Right */
.wp-travel-tab-sp .hvr-underline-from-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.wp-travel-tab-sp .hvr-underline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  bottom: 0;
  background: var(--background-loadtab);
  height: 2px;
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.wp-travel-tab-sp .hvr-underline-from-right:hover:before, .wp-travel-tab-sp .hvr-underline-from-right:focus:before,.wp-travel-tab-sp .hvr-underline-from-right:active:before {
  left: 0;
}

/*-------------------------------------- load tab 1 --------------------------------*/


/* Underline From Left */
#load-tab-1 .hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
#load-tab-1 .hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: var(--background-loadtab);
  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
#load-tab-1 .hvr-underline-from-left:hover:before,#load-tab-1 .hvr-underline-from-left:focus:before,#load-tab-1 .hvr-underline-from-left:active:before {
  right: 0;
}

/* Underline From Center */
#load-tab-1 .hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
#load-tab-1 .hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: var(--background-loadtab);
  height: 2px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
#load-tab-1 .hvr-underline-from-center:hover:before, #load-tab-1 .hvr-underline-from-center:focus:before, #load-tab-1 .hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}

/* Underline From Right */
#load-tab-1 .hvr-underline-from-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
#load-tab-1 .hvr-underline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  bottom: 0;
  background: var(--background-loadtab);
  height: 2px;
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
#load-tab-1 .hvr-underline-from-right:hover:before, #load-tab-1 .hvr-underline-from-right:focus:before,#load-tab-1 .hvr-underline-from-right:active:before {
  left: 0;
}


/*----------------------------------------- End ---------------------------------------*/

/* Underline From Left to right ---- After */
.mnbig a.hvr-left-right { display: inline-block; position: relative; }
.mnbig a.hvr-left-right:after { content: ''; position: absolute; width: 100%; transform: scaleX(0); height: 2px; bottom: 20px; left: 0; background-color: var(--mau-chu-menu-hover); transform-origin: bottom right; transition: transform 0.25s ease-out; }
.mnbig a.hvr-left-right:hover:after, .mnbig a.hvr-left-right:focus:after, .mnbig a.hvr-left-right:active:after { transform: scaleX(1); transform-origin: bottom left; }

/* Underline From Center */
.mnbig a.hvr-underline-from-center { display: inline-block; vertical-align: middle; -webkit-transform: perspective(1px) translateZ(0); transform: perspective(1px) translateZ(0); box-shadow: 0 0 1px rgba(0, 0, 0, 0); position: relative; overflow: hidden; }
.mnbig a.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 9px;
  background-color: var(--mau-chu-menu-hover);
  height: 2px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.mnbig:hover a.hvr-underline-from-center:before, .mnbig a.hvr-underline-from-center:focus:before, .mnbig a.hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}



/* Rectangle Out */
.lienhe article .hvr-rectangle-out {
/*  display: inline-block;*/
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: var(--mau-background-submitlh);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.lienhe article .hvr-rectangle-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--mau-background-submitlh-hvr);
  padding: 7px 15px;
  border-radius: 0px 0px 0px 0px;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.lienhe article .hvr-rectangle-out:hover,.lienhe article .hvr-rectangle-out:focus,.lienhe article .hvr-rectangle-out:active {
  color: white;
  border-radius: 0px;
}
.lienhe article .hvr-rectangle-out:hover:before,.lienhe article .hvr-rectangle-out:focus:before,.lienhe article .hvr-rectangle-out:active:before {
  -webkit-transform: scale(1);
  transform: scale(1);

}

/* Radial Out */
.link-bao-gia aside a.hvr-radial-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, .0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.link-bao-gia aside a.hvr-radial-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 20%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.link-bao-gia aside a.hvr-radial-out:hover,.link-bao-gia aside a.hvr-radial-out:focus,.link-bao-gia aside a.hvr-radial-out:active {
  color: var(--mau-chu-den);
}
.link-bao-gia aside a.hvr-radial-out:hover:before,.link-bao-gia aside a.hvr-radial-out:focus:before,.link-bao-gia aside a.hvr-radial-out:active:before {
  -webkit-transform: scale(2);
  transform: scale(2);
}

/* Radial Out */
.btn-xemthem-sp-noibat .hvr-radial-out {
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
/*  background: #e1e1e1;*/
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.btn-xemthem-sp-noibat .hvr-radial-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  border-radius: 30px;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-xemthem-sp-noibat .hvr-radial-out:hover, .btn-xemthem-sp-noibat .hvr-radial-out:focus, .btn-xemthem-sp-noibat .hvr-radial-out:active {
  color: white;
}
.btn-xemthem-sp-noibat .hvr-radial-out:hover:before, .btn-xemthem-sp-noibat .hvr-radial-out:focus:before, .btn-xemthem-sp-noibat .hvr-radial-out:active:before {
  -webkit-transform: scale(2);
  transform: scale(2);
}

/* Radial Out */
.btn-xemthem-sp-dmc1 .hvr-radial-out {
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
/*  background: #e1e1e1;*/
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.btn-xemthem-sp-dmc1 .hvr-radial-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  border-radius: 30px;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-xemthem-sp-dmc1 .hvr-radial-out:hover, .btn-xemthem-sp-dmc1 .hvr-radial-out:focus, .btn-xemthem-sp-dmc1 .hvr-radial-out:active {
  color: white;
}
.btn-xemthem-sp-dmc1 .hvr-radial-out:hover:before, .btn-xemthem-sp-dmc1 .hvr-radial-out:focus:before, .btn-xemthem-sp-dmc1 .hvr-radial-out:active:before {
  -webkit-transform: scale(2);
  transform: scale(2);
}

/* Shutter Out Horizontal */
.btn-thanhtoan a.hvr-shutter-out-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
/*  background: #e1e1e1;*/
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.btn-thanhtoan a.hvr-shutter-out-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--mau-background-den);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-thanhtoan a.hvr-shutter-out-horizontal:hover, .btn-thanhtoan a.hvr-shutter-out-horizontal:focus, a.btn-thanhtoan .hvr-shutter-out-horizontal:active {
  color: white;
}
.btn-thanhtoan a.hvr-shutter-out-horizontal:hover:before, .btn-thanhtoan a.hvr-shutter-out-horizontal:focus:before, .btn-thanhtoan a.hvr-shutter-out-horizontal:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}


/* Bounce To Right */
.see-more-about-us .hvr-bounce-to-right {
/*  display: inline-block;*/
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.see-more-about-us .hvr-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--mau-background-chinh-hover);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.see-more-about-us .hvr-bounce-to-right:hover, .see-more-about-us .hvr-bounce-to-right:focus, .see-more-about-us .hvr-bounce-to-right:active {
  color: var(--mau-chu-trang);
}
.see-more-about-us .hvr-bounce-to-right:hover:before, .see-more-about-us .hvr-bounce-to-right:focus:before, .see-more-about-us .hvr-bounce-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}



/* Underline From Left to right ---- After */
.dad-dm2 a.name-dm1.hvr-left-right { position: relative; }
.dad-dm2 a.name-dm1.hvr-left-right:after { content: ''; position: absolute; width: 100%; transform: scaleX(0); height: 2px; bottom: 25px; left: 0; background-color: #000; transform-origin: bottom right; transition: transform 0.25s ease-out; }
.dad-dm2 a.name-dm1.hvr-left-right:hover:after, .dad-dm2 a.name-dm1.hvr-left-right:focus:after, .dad-dm2 a.name-dm1.hvr-left-right:active:after { transform: scaleX(1); transform-origin: bottom left; }


.a-hvr { display: inline-block; position: relative; }
.a-hvr:after { content: ''; position: absolute; width: 100%; transform: scaleX(0); height: 2px; bottom: 0; left: 0; background-color: #fff; transform-origin: bottom right; transition: transform 0.25s ease-out; }
.a-hvr:hover:after, .a-hvr:focus:after, .a-hvr:active:after { transform: scaleX(1); transform-origin: bottom left; }

.hover-fade { position: relative; overflow: hidden; }

.hover-fade:before { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.5); content: ''; z-index: 10; -webkit-transition: -webkit-transform 0.6s; transition: transform 0.6s; -webkit-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0); transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0); }

.hover-fade:hover:before, .item-sp:hover .hover-fade:before { -webkit-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0); transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0); }