:root {
  --mauchinh: #005FB5;
  --mauphu: #29C0C8;
  --mau1: #EBB714;
  --mauvang: #FFCB01;
  
  --tile: calc(100vw/2500);
}

@font-face {
  font-family: 'SVN-Avenir Next Rounded';
  src: url('fonts/SVN-AvenirNextRoundedBold.woff2') format('woff2'),
      url('fonts/SVN-AvenirNextRoundedBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SVN-Avenir Next Rdd Dmi';
  src: url('fonts/SVN-AvenirNextRddDmi.woff2') format('woff2'),
      url('fonts/SVN-AvenirNextRddDmi.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}




body{
  font-family: 'SVN-Avenir Next Rounded';
  font-weight: normal;
}

.main {
  position: relative;
}

.nav {
	
  justify-content: space-around;
    padding: calc(47 * var(--tile)) 8px;
    transition: all 1s ease;
    position: relative;
    z-index: 9999;
    background-color: #fff;
}

.nav li {
  justify-content: center;
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.nav li:not(:last-child) {
  border-right: 4px solid #04629e;
}

.nav a {
  color: #04629e;
    padding: 3px;
    font-family: 'SVN-Avenir Next Rounded';
    font-size: calc(28 * var(--tile));
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
}
.nav a:hover{
  color: var(--mauvang);
}

.nav-link.active{
  color: #006e43;
}

.last-item-menu{
  text-align: right !important;
  margin-right: 8px !important;
}


.nav .header_logo{
  border-right: 0 !important;
}
.nav .header_logo img{
  height: 45px;
}
.sticky{
	position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999;
    background-color: #fff;
	transition: all 1s ease;
}
.header{
  padding: 10px 40px;
    background: linear-gradient(to right, var(--mauchinh) 0%, var(--mauphu) 100%);
    height: unset !important;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
}
.header .left{
  display: inline-block;
  width: 74%;
  vertical-align: top;
}
.header .right{
  display: inline-block;
  width: 25%;
  vertical-align: top;
  padding: 10px 10px;
}
.header .left img{
  
}
.header .right img{
  
}

.header .text{
  font-family: 'SVN-Avenir Next Rounded';
    font-size: calc(19* var(--tile));;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
	position: unset !important;
}

.form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
}

.form-signin .checkbox {
  font-weight: 400;
}

.form-signin .form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
}

.form-signin .form-control:focus {
  z-index: 2;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

body {
  position: relative;
  font-size: calc(24 * var(--tile));
}
/*
.light {
  background-image: url("../images/light.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;

}
*/

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(-360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(-360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}


@-moz-keyframes spin2 {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin2 {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin2 {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


@keyframes maybay {
  from {
      left: 120%;
  }
  to {
      left: -25%;
  }
}

@keyframes moveleftright {
  0% {
    transform: translatex(0);
  }
  50% {
    transform: translatex(-40px);
  }
}

@keyframes moveupdown{
  50% { transform: translateY(-15px); }
}
@keyframes moveupdown2{
  50% { transform: translateY(-15px) scaleX(-1); }
}
@keyframes moveupdown3 {
  50% {
    transform: translateY(-15px) rotate(20deg);
    -webkit-transform: translateY(-15px) rotate(20deg);
    -moz-transform: translateY(-15px) rotate(20deg);
    -ms-transform: translateY(-15px) rotate(20deg);
    -o-transform: translateY(-15px) rotate(20deg);
  }
}

@keyframes rotateLeftRight{
  50% {
    transform: rotate(20deg);
  }
}

@keyframes blend {
  100% {
   opacity: 0.4;
}
}

@-webkit-keyframes fadeInUpCenter {
  0% {
    transform: translate(-50%,calc(15 * var(--tile)));
    -webkit-transform: translate(-50%,calc(15 * var(--tile)));
    -moz-transform: translate(-50%,calc(15 * var(--tile)));
    -ms-transform: translate(-50%,calc(15 * var(--tile)));
    -o-transform: translate(-50%,calc(15 * var(--tile)));
}

  100% {
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
}
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}


@-webkit-keyframes cloudsleft {
  0% {
    left: -100%;
  }
  100% {
    left: 120%;
  }
}
@-moz-keyframes cloudsleft {
  0% {
    left: -100%;
  }
  100% {
    left: 120%;
  }
}
@-ms-keyframes cloudsleft {
  0% {
    left: -100%;
  }
  100% {
    left: 120%;
  }
}
@keyframes cloudsleft {
  0% {
    left: -100%;
  }
  100% {
    left: 120%;
  }
}

@keyframes shake-slow {
  2% {
      transform: translate(-2px, 9px) rotate(-1.5deg)
  }

  4% {
      transform: translate(-7px, 10px) rotate(2.5deg)
  }

  6% {
      transform: translate(-5px, -9px) rotate(0.5deg)
  }

  8% {
      transform: translate(-4px, 6px) rotate(-1.5deg)
  }

  10% {
      transform: translate(8px, 9px) rotate(1.5deg)
  }

  12% {
      transform: translate(10px, 5px) rotate(-1.5deg)
  }

  14% {
      transform: translate(-1px, 5px) rotate(-0.5deg)
  }

  16% {
      transform: translate(2px, -2px) rotate(-0.5deg)
  }

  18% {
      transform: translate(1px, 10px) rotate(0.5deg)
  }

  20% {
      transform: translate(9px, 5px) rotate(-1.5deg)
  }

  22% {
      transform: translate(8px, -6px) rotate(2.5deg)
  }

  24% {
      transform: translate(-5px, -5px) rotate(3.5deg)
  }

  26% {
      transform: translate(-3px, -8px) rotate(2.5deg)
  }

  28% {
      transform: translate(5px, 0px) rotate(-0.5deg)
  }

  30% {
      transform: translate(5px, -8px) rotate(3.5deg)
  }

  32% {
      transform: translate(3px, -4px) rotate(0.5deg)
  }

  34% {
      transform: translate(5px, 0px) rotate(1.5deg)
  }

  36% {
      transform: translate(8px, -3px) rotate(2.5deg)
  }

  38% {
      transform: translate(5px, 5px) rotate(2.5deg)
  }

  40% {
      transform: translate(9px, 2px) rotate(-0.5deg)
  }

  42% {
      transform: translate(6px, -7px) rotate(2.5deg)
  }

  44% {
      transform: translate(10px, -8px) rotate(3.5deg)
  }

  46% {
      transform: translate(6px, -1px) rotate(1.5deg)
  }

  48% {
      transform: translate(2px, 7px) rotate(-1.5deg)
  }

  50% {
      transform: translate(5px, 6px) rotate(1.5deg)
  }

  52% {
      transform: translate(8px, 10px) rotate(-1.5deg)
  }

  54% {
      transform: translate(-8px, 6px) rotate(-0.5deg)
  }

  56% {
      transform: translate(3px, 7px) rotate(-0.5deg)
  }

  58% {
      transform: translate(9px, 4px) rotate(2.5deg)
  }

  60% {
      transform: translate(3px, -7px) rotate(-0.5deg)
  }

  62% {
      transform: translate(-5px, 1px) rotate(3.5deg)
  }

  64% {
      transform: translate(9px, 0px) rotate(2.5deg)
  }

  66% {
      transform: translate(-1px, -4px) rotate(1.5deg)
  }

  68% {
      transform: translate(7px, -1px) rotate(-2.5deg)
  }

  70% {
      transform: translate(-5px, 5px) rotate(1.5deg)
  }

  72% {
      transform: translate(8px, 5px) rotate(2.5deg)
  }

  74% {
      transform: translate(-9px, 8px) rotate(-0.5deg)
  }

  76% {
      transform: translate(-8px, -6px) rotate(-0.5deg)
  }

  78% {
      transform: translate(-8px, 9px) rotate(-0.5deg)
  }

  80% {
      transform: translate(-8px, -2px) rotate(2.5deg)
  }

  82% {
      transform: translate(-8px, -1px) rotate(-1.5deg)
  }

  84% {
      transform: translate(-2px, 4px) rotate(0.5deg)
  }

  86% {
      transform: translate(-5px, 4px) rotate(-0.5deg)
  }

  88% {
      transform: translate(1px, 5px) rotate(-2.5deg)
  }

  90% {
      transform: translate(7px, 6px) rotate(3.5deg)
  }

  92% {
      transform: translate(-4px, 7px) rotate(-2.5deg)
  }

  94% {
      transform: translate(-6px, 10px) rotate(1.5deg)
  }

  96% {
      transform: translate(-1px, 1px) rotate(-1.5deg)
  }

  98% {
      transform: translate(-5px, 0px) rotate(1.5deg)
  }

  0%,100% {
      transform: translate(0, 0) rotate(0)
  }
}



@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(2px, 1px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(-1px, -2px) rotate(-2deg);
  }
  20% {
    -webkit-transform: translate(-3px, 0px) rotate(3deg);
  }
  30% {
    -webkit-transform: translate(0px, 2px) rotate(0deg);
  }
  40% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    -webkit-transform: translate(2px, 1px) rotate(-2deg);
  }
  80% {
    -webkit-transform: translate(-1px, -1px) rotate(4deg);
  }
  90% {
    -webkit-transform: translate(2px, 2px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(1px, -2px) rotate(-1deg);
  }
}

@-webkit-keyframes cloudsright {
  0% {
    right: -100%;
  }
  100% {
    right: 120%;
  }
}


@-moz-keyframes cloudsright {
  0% {
    right: -100%;
  }
  100% {
    right: 120%;
  }
}
@-ms-keyframes cloudsright {
  0% {
    right: -100%;
  }
  100% {
    right: 120%;
  }
}
@keyframes cloudsright {
  0% {
    right: -100%;
  }
  100% {
    right: 120%;
  }
}



.img-full{
  width: 100%;
  height: auto;
}
.img-full-2{
  width: auto;
  height: 100%;
}
.section{
  position: relative;
  margin: auto;
  /*border: 1px solid #000;*/
}

.menu-products{
  position: fixed;
  top: -150px;
  right: 35px;
  z-index: 999;
  background-color: #fff;
  border-radius: 10px;
  list-style: none;
  margin: 0;
  padding: 10px;
  text-align: right;
  text-transform: uppercase;
  transition: all 1s ease;
  opacity: 0;
  font-size: calc(28 * var(--tile));;
}
.menu-products.show{
 top: calc(220 * var(--tile));
  transition: all 1s ease;
  opacity: 1;
}
.menu-products li{
  
}
.menu-products li:not(:last-child){
  border-bottom: 2px solid #0056a3;
}
.menu-products li a{
  color: #0056a3;
    font-weight: 700;
}
.menu-products li:hover a{
  color: #006e43;
}



.menu-more{
  position: fixed;
    top: -150px;
    right: 35px;
    z-index: 999;
    background-color: #fff;
    border-radius: 10px;
    list-style: none;
    margin: 0;
    padding: 10px;
    text-align: right;
    text-transform: uppercase;
    transition: all 1s ease;
    opacity: 0;
    font-size: calc(28 * var(--tile));
    right: calc(500 * var(--tile));
}
.menu-more.show{
  top: calc(220 * var(--tile));
  transition: all 1s ease;
  opacity: 1;
}
.menu-more li{
  
}
.menu-more li:not(:last-child){
  border-bottom: 2px solid #0056a3;
}
.menu-more li a{
  color: #0056a3;
    font-weight: 700;
}
.menu-more li:hover a{
  color: #006e43;
}

.btn_menu{
  width: 35px;
    vertical-align: middle;
    cursor: pointer;
}


@keyframes pulse2 {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  60% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada2 {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.section1 .title{
  width: calc(1014 * var(--tile));
    position: absolute;
    top: calc(285 * var(--tile));
    left: calc(5 * var(--tile));
    
}

.section1 .title2{
  width: calc(909 * var(--tile));
    position: absolute;
    top: calc(396 * var(--tile));
    left: calc(5 * var(--tile));
    
}

.section1 .shield{
  width: calc(240 * var(--tile));
    position: absolute;
    top: calc(217 * var(--tile));
    right: calc(-117 * var(--tile));
    
}

.section1 .vongtron1{
  width: calc(500 * var(--tile));
    position: absolute;
    top: calc(270 * var(--tile));
    left: calc(260 * var(--tile));
   
}

.section1 .vongtron2{
  width: calc(600 * var(--tile));
    position: absolute;
    top: calc(210 * var(--tile));
    left: calc(660 * var(--tile));
    
}

.section1 .vongtron3{
  width: calc(500 * var(--tile));
    position: absolute;
    top: calc(270 * var(--tile));
    right: calc(260 * var(--tile));
    
}

.section1 .title_pulse{
  -webkit-animation: tada2 3s ease infinite;
  animation: tada2 3s ease infinite;
}

.section1 .qua1{
  width: calc(614 * var(--tile));
    position: absolute;
    top: calc(439 * var(--tile));
    left: calc(1115 * var(--tile));
    
}

.section1 .qua2{
  width: calc(641 * var(--tile));
    position: absolute;
    top: calc(145 * var(--tile));
    left: calc(1530 * var(--tile));
}

.section1 .qua1_text{
  width: calc(398 * var(--tile));
    position: absolute;
    top: calc(922 * var(--tile));
    left: calc(1037 * var(--tile));
    
}

.section1 .qua2_text{
  width: calc(320 * var(--tile));
    position: absolute;
    top: calc(663 * var(--tile));
    left: calc(1770 * var(--tile));
}

.section1 .qua3{
  width: calc(340 * var(--tile));
    position: absolute;
    top: calc(418 * var(--tile));
    right: calc(338 * var(--tile));

}
.section2 .nen{
  width: calc(740* var(--tile));
    position: absolute;
    top: calc(65* var(--tile));
    left: calc(386* var(--tile));

}

.section2 .nen2{
  width: calc(840* var(--tile));
    position: absolute;
    top: calc(-205* var(--tile));
    left: calc(80* var(--tile));
}

.section2 .nen3{
  width: calc(840* var(--tile));
    position: absolute;
    top: calc(45* var(--tile));
    left: calc(-175* var(--tile));
}

.section1 .sao{
  width: 100%;
    position: absolute;
    top: calc(140 * var(--tile));
    left: 0;
}


.section1 .btn_thamgia{
  position: absolute;
    width: calc(730 * var(--tile));
    left: calc(5 * var(--tile));
    top: calc(610 * var( --tile));
    cursor: pointer;
}

.section1 .text{
  width: calc(760 * var(--tile));
    position: absolute;
    top: calc(710 * var(--tile));
    left: calc(365 * var(--tile));
    
}

.section1 .text2{
  width: calc(430 * var(--tile));
    position: absolute;
    top: calc(725 * var(--tile));
    right: calc(290 * var(--tile));
    
}

.section1 .tenlua{
  width: calc(250 * var(--tile));
    position: absolute;
    top: calc(450 * var(--tile));
    right: calc(-150 * var(--tile));
    animation: shake-slow 30s ease-in-out infinite;
}



.section1 .hanhtinh{
  width: calc(230 * var(--tile));
    position: absolute;
    top: calc(50 * var(--tile));
    right: calc(80 * var(--tile));
    animation: rotateLeftRight 4s ease infinite;
}

.section1 .maybay{
  width: calc(148 * var(--tile));
    position: absolute;
    top: calc(520 * var(--tile));
    left: calc(1390 * var(--tile));
    
}

.section1 .note{
  width: calc(1260 * var(--tile));
    position: absolute;
    bottom: calc(30 * var(--tile));
    right: calc(40 * var(--tile));
}


.section2 .title_pulse{
  -webkit-animation: tada2 3s ease infinite;
  animation: tada2 3s ease infinite;
}


.section2 .title{
  width: calc(480* var(--tile));
    position: absolute;
    top: calc(57* var(--tile));
    right: calc(26* var(--tile));
}

.section2 .title2{
  width: calc(830* var(--tile));
    position: absolute;
    top: calc(160* var(--tile));
    right: calc(20* var(--tile));
}

.section2 .title3{
  width: calc(1000 * var(--tile));
    position: absolute;
    top: calc(220 * var(--tile));
    left: calc(450 * var(--tile));
}

.section2 .vongtron1{
  width: calc(500 * var(--tile));
    position: absolute;
    top: calc(330 * var(--tile));
    left: calc(260 * var(--tile));
}

.section2 .vongtron2{
  width: calc(500 * var(--tile));
    position: absolute;
    top: calc(330 * var(--tile));
    left: calc(714 * var(--tile));
}

.section2 .vongtron3{
  width: calc(500 * var(--tile));
    position: absolute;
    top: calc(330 * var(--tile));
    right: calc(260 * var(--tile));
}

.section2 .qua1{
  width: calc(375* var(--tile));
    position: absolute;
    top: calc(65* var(--tile));
    left: calc(317* var(--tile));
}

.section2 .qua2{
  width: calc(289* var(--tile));
    position: absolute;
    top: calc(330* var(--tile));
    left: calc(50* var(--tile));
}

.section2 .qua3{
  width: calc(270* var(--tile));
    position: absolute;
    top: calc(351* var(--tile));
    left: calc(627* var(--tile));
}

.section2 .qua4{
  width: calc(330* var(--tile));
    position: absolute;
    top: calc(450* var(--tile));
    left: calc(330* var(--tile));
}

.section2 .qua1_text{
  width: calc(200* var(--tile));
    position: absolute;
    top: calc(40* var(--tile));
    left: calc(555* var(--tile));
}

.section2 .qua2_text{
  width: calc(135* var(--tile));
    position: absolute;
    top: calc(300* var(--tile));
    left: calc(30* var(--tile));
}

.section2 .qua3_text{
  width: calc(185* var(--tile));
    position: absolute;
    top: calc(560* var(--tile));
    left: calc(730* var(--tile));

}

.section2 .qua4_text{
 width: calc(255* var(--tile));
    position: absolute;
    top: calc(588* var(--tile));
    left: calc(77* var(--tile));

}

.section2 .sao{
  width: 100%;
    position: absolute;
    top: calc(0 * var(--tile));
    left: 0;
}


.section2 .btn_muangay{
  position: absolute;
    width: calc(450* var(--tile));
    right: calc(35* var(--tile));
    top: calc(614* var(--tile));
    cursor: pointer;
}

.section3 .btn_thamgia{
  position: absolute;
    width: calc(490* var(--tile));
    left: calc(369* var(--tile));
    top: calc(410* var(--tile));
    cursor: pointer;
}

.section2 .text{
  width: calc(500* var(--tile));
    position: absolute;
    top: calc(725* var(--tile));
    right: calc(26* var(--tile));

}

.section2 .text2{
  width: calc(430 * var(--tile));
    position: absolute;
    top: calc(725 * var(--tile));
    right: calc(290 * var(--tile));
}


.section2 .tenlua{
 width: calc(250* var(--tile));
    position: absolute;
    top: calc(685* var(--tile));
    left: calc(954* var(--tile));
    
	
}
.section2 .tenluaanimation{
animation: shake-slow 30s ease-in-out infinite;
	
}

.section2 .hanhtinh{
  width: calc(130 * var(--tile));
    position: absolute;
    top: calc(0 * var(--tile));
    right: calc(690 * var(--tile));
}

.section2 .maybay{
  width: calc(160 * var(--tile));
    position: absolute;
    top: calc(87 * var(--tile));
    left: calc(0 * var(--tile));
}

.section2 .note{
  width: calc(1260 * var(--tile));
    position: absolute;
    bottom: calc(30 * var(--tile));
    right: calc(40 * var(--tile));
}





.section3-bg .traidat{
  position: absolute;
    top: calc(-70 * var(--tile));
    right: calc(-35 * var(--tile));
    width: calc(1200 * var(--tile));
    -webkit-animation: spin2 30s linear infinite;
  -moz-animation: spin2 30s linear infinite;
  animation: spin2 30s linear infinite;
}

.section3-bg .tenlua{
  position: absolute;
    top: calc(-70 * var(--tile));
    right: calc(-35 * var(--tile));
    width: calc(1200 * var(--tile));
    -webkit-animation: spin 15s linear infinite;
  -moz-animation: spin 15s linear infinite;
  animation: spin 15s linear infinite;
}

.section3 .note{
  width: calc(900 * var(--tile));
    position: absolute;
    bottom: calc(30 * var(--tile));
    right: calc(40 * var(--tile));
}


.section3 .logo{
  width: calc(420 * var(--tile));
    position: absolute;
    top: calc(180 * var(--tile));
    left: calc(250 * var(--tile));
}

.section3 .title1{
  width: calc(500* var(--tile));
    position: absolute;
    top: calc(85* var(--tile));
    left: calc(410* var(--tile));
    
}

.section3 .title2{
  width: calc(1095* var(--tile));
    position: absolute;
    top: calc(160* var(--tile));
    left: calc(58* var(--tile))
}
.section3 .title3{
  width: calc(855* var(--tile));
    position: absolute;
    top: calc(305* var(--tile));
    left: calc(178* var(--tile));
}

.section3 .video{
  width: calc(741* var(--tile));
    position: absolute;
    top: calc(60* var(--tile));
    right: calc(15* var(--tile));
    cursor: pointer;
}

.section3 .btn_khampha{
  width: calc(400 * var(--tile));
  position: absolute;
  top: calc(685 * var(--tile));
  right: calc(360 * var(--tile));
  cursor: pointer;
}


.section3 .sua{
  width: calc(858* var(--tile));
    position: absolute;
    top: calc(440* var(--tile));
    right: calc(-32* var(--tile));
}

.section3 .circle{
  width: calc(40 * var(--tile));
    position: absolute;
    top: calc(130 * var(--tile));
    left: calc(1330 * var(--tile));
}

.section3 .arrow_down{
  width: calc(22 * var(--tile));
    position: absolute;
    top: 7%;
    left: calc(10 * var(--tile));
}


.section3 .title{
  width: calc(550 * var(--tile));
    position: absolute;
    top: calc(330 * var(--tile));
    left: calc(450 * var(--tile));
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-animation: fadeInUpCenter 2s 0s both alternate infinite;
    animation: fadeInUpCenter 2s 0s both alternate infinite;
}

.section3 .tv{
  width: calc(750 * var(--tile));
    position: absolute;
    top: calc(190 * var(--tile));
    left: calc(1000 * var(--tile));
}



.section3 .maybaydo{
  position: absolute;
    width: calc(120 * var(--tile));
    left: calc(105 * var(--tile));
    top: calc(400 * var( --tile));
}

.section3 .maybayxanh{
  position: absolute;
    width: calc(200 * var(--tile));
    right: calc(-50* var(--tile));
    top: calc(480 * var( --tile));
}


.section3 .maybaytrang{
  position: absolute;
    width: calc(200 * var(--tile));
    left: calc(850 * var(--tile));
    top: calc(700 * var( --tile));
}

.section3 .maybayvang{
  position: absolute;
    width: calc(250 * var(--tile));
    right: calc(0 * var(--tile));
    top: calc(750 * var( --tile));
}

.section3 .may{
  width: calc(2600 * var(--tile));
    position: absolute;
    top: calc(620 * var(--tile));
    /*left: calc(-400* var(--tile));*/
    animation: cloudsleft 40s infinite linear;
}

.section3 .may2{
  width: calc(4000 * var(--tile));
    position: absolute;
    top: calc(420 * var(--tile));
    /*left: calc(-200* var(--tile));*/
    animation: cloudsleft 80s infinite linear;
}


.section3-bg .embe{
  width: calc(300 * var(--tile));
    position: absolute;
    bottom: calc(250 * var(--tile));
    left: calc(1400 * var(--tile));
}

.section3-bg .ban{
  width: calc(1300 * var(--tile));
    position: absolute;
    bottom: calc(250 * var(--tile));
    left: calc(550 * var(--tile));
}

.section3-bg .lonsua{
  width: calc(400 * var(--tile));
    position: absolute;
    bottom: calc(260 * var(--tile));
    left: calc(640 * var(--tile));
}


.section3-bg .bg-bottom1{
  position: absolute;
  bottom: 0;
  left: calc(0 * var(--tile));
  width: 100%;
}
.section3-bg .bg-bottom2{
  position: absolute;
  bottom: 0;
  left: calc(0 * var(--tile));
  width: 100%;
}

.section3-bg .text-footer{
  position: absolute;
    bottom: calc(120 * var(--tile));
    left: 0;
    color: var(--mauchinh);
    width: 100%;
    text-align: center;
    font-family: 'Open Sans';
    font-size: calc(25 * var(--tile));
}

.noscroll { overflow-y: hidden !important; }


.modalForm{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(0 0 0 / 74%);
    display: none;
    overflow-y: auto;
    inset: 0;
    z-index: 9999;
}


.formBox{
  
  position: absolute;
    top: 50%;
    width: calc(700 * var( --tile));
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #ffffff;
    padding: calc(40 * var(--tile));
    border-radius: calc(35 * var(--tile));
    box-shadow: 6px 6px 12px #7c7c7c;
    transition: all 1s ease; 
}
.formBox .formTitle{
  text-align: center;
    font-size: calc(55 * var(--tile));
    color: #0074BA;
    line-height: 1.3;
    margin-bottom: calc(0 * var(--tile));
}

.formBox .formSubTitle{
  text-align: center;
    font-size: calc(25 * var(--tile));
    color: #000000;
    line-height: 1;
    margin-bottom: calc(30 * var(--tile));
}

.formBox .inputText{
  
}

.formBox label {
  margin-bottom: 0;
  padding-left: calc(30 * var(--tile));
  color: #FFCB01;
}

input[name=phone]::placeholder {
    font-size: calc(16 * var(--tile));
    text-transform: capitalize;
    line-height: 1.5;
}

.formBox .btn_close{
  border-radius: 50%;
    padding: calc(25 * var(--tile));
    width: calc(100 * var(--tile));
    height: calc(100 * var(--tile));
    box-shadow: 6px 6px 12px #7c7c7c;
    cursor: pointer;
    position: absolute;
    background-color: #fff;
    top: calc(-30 * var(--tile));
    right: calc(-30 * var(--tile));
}

.formBox .btn_close img{
  width: calc(50 * var(--tile));
}
.formBox .inputText option {
  padding: 12px;
}


.formBox .inputText .input-custom{
  border: 0;
    font-size: calc(20 * var(--tile));
    color: #7a7a7a;
    padding: calc(15 * var(--tile)) calc(30 * var(--tile));
    width: 100%;
    margin-bottom: calc(20 * var(--tile));
    border-radius: calc(35 * var(--tile));
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 1px solid #FFCB01;
  }
.formBox .inputBtn{
  text-align: center;
}
.formBox .inputBtn .btn-custom{
  border: 2px solid #0188E1;
  color: #ffffff;
  padding: calc(15 * var(--tile)) calc(50 * var(--tile));
  border-radius: calc(35 * var(--tile));
  background-color: #0188E1;
  font-size: calc(28 * var(--tile));
  line-height: 1;
  outline: none;
}

.formBox .inputBtn .btn-custom:hover{
  border: 2px solid #0074BA;
    color: #fff;
    background-color: #0074BA;

}

.formBox .inputBtn .btn-custom:disabled{
  background-color: #9b9b9b;
  border: 2px solid #9b9b9b;
}

.SumoSelect {
  display: block;
  position: relative;
  outline: 0;
  width: 100%;
}

.SumoSelect .select-all>span i, .SumoSelect>.optWrapper.multiple>.options li.opt span i{
  width: 20px;
  height: 20px;
}
.SumoSelect .select-all>label, .SumoSelect>.CaptionCont, .SumoSelect>.optWrapper>.options li.opt label{
  padding-left: 0px;
}

.SumoSelect>.optWrapper>.options li.group>label {
  color: #000;
}

.SumoSelect>.optWrapper>.options li.opt label {
  color: #7a7a7a;
}


.cta_follow_box{
    position: absolute;
    top: 50%;
    width: calc(700 * var( --tile));
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #FFCB01;
    border-radius: calc(35 * var(--tile));
}
.cta_follow_box .left{
  display: inline-block;
    width: 50%;
    float: left;
    padding: calc(30 * var(--tile));
}
.cta_follow_box .right{
  display: inline-block;
    width: 50%;
    float: right;
    text-align: center;
    padding: calc(30 * var(--tile));
}

.cta_follow_box .text{
  color: #fff;
  font-size: calc(30 * var(--tile));
}

.cta_follow_box .qrcode{

}

.cta_follow_box .btn_follow{
    width: 100%;
}

.cta_follow_box .btn_follow a{
  display: block;
    padding: calc(15 * var(--tile)) calc(15 * var(--tile));
    border-radius: calc(35 * var(--tile));
    background-color: #fff;
    font-size: calc(36 * var(--tile));
    line-height: 1;
    outline: none;
    margin-top: calc(25 * var(--tile));
    box-shadow: 6px 11px 19px #7c7c7c;
    text-decoration: none;
    color: var(--mauchinh);
}

.cta_follow_box .btn_follow:hover a{
  color: #ffffff;
  background-color: var(--mauchinh);
}

.moveRight{
  transform: translate(-25%,-50%);
  transition: all 1s ease;
}
.moveLeft{
  transform: translate(-75%,-50%);
  transition: all 1s ease;
}

.section4 .text-footer, .section1 .text-footer{
  position: absolute;
  bottom: calc(45 * var(--tile));
  left: 0;
  color: #fff;
  width: 100%;
  text-align: center;
}

.location-box{
    position: absolute;
    top: calc(1580 * var(--tile));
    width: calc(720 * var( --tile));
    left: calc(145 * var( --tile));
    background-color: #fff;
    padding: calc(20 * var(--tile));
    border-radius: calc(35 * var(--tile));
    height: calc(800 * var( --tile));
    overflow: hidden;
    opacity: 0;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    top: calc(1880 * var(--tile));
}
.show-list{
  top: calc(280 * var(--tile));
  opacity: 1;
  transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
}

.location-list{
  overflow-y: auto;
  height: calc(950 * var( --tile));
  width: 100%;
  height: 100%;
  padding-bottom: 100px;
}

.location-box .location-item{
 
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: calc(10 * var(--tile));
  margin-bottom: calc(15 * var(--tile));
  cursor: pointer;
}
.location-box .location-item:hover{
  background-color: #E0EEF6;
}
.location-box .location-item.active{
  background-color: #E0EEF6;
}

.location-box .location-item .stt{
  display: inline-block;
    width: calc(70 * var(--tile));
    vertical-align: top;
    padding-right: calc(19 * var(--tile));
}
.location-box .location-item .stt .number{
  width: calc(50 * var(--tile));
    height: calc(50 * var(--tile));
    background-color: #2D62AD;
    color: #fff;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    border-radius: 50%;
    padding: calc(15 * var(--tile)) 0;
}

.location-box .location-item .info{
  display: inline-block;
    width: calc(550 * var(--tile));
    vertical-align: top;
    padding-top: calc(15 * var(--tile));
}
.location-box .location-item .info .name{
  line-height: 1;
  font-weight: 700;
  color: #2D62AD;
  font-size: calc(26 * var(--tile));
}
.location-box .location-item .info .address{
  line-height: 1.3;
  font-weight: 400;
  color: #2D62AD;
  padding-top: calc(10 * var(--tile));
}
.location-list::-webkit-scrollbar{
  width: 12px;
  border-radius: 10px;
  background-color: #dce8f7;
}
.location-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #CEDBEC;
}

.location-list::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #dce8f7;
}



.section2{
	width: calc(1920 * var(--tile));
    height: calc(905 * var(--tile));
    top: 50%;
    transform: translateY(calc(-50% - (60 * var(--tile))));

}
.section3{
	width: calc(1920 * var(--tile));
    height: calc(905 * var(--tile));
    top: 50%;
    transform: translateY(calc(-50% - (60 * var(--tile))));
}

.section1{
	width: calc(1920 * var(--tile));
    height: calc(1080 * var(--tile));
    top: 50%;
    transform: translateY(calc(-50% - (60 * var(--tile))));
}
.section2-bg{
	background-image: url('../../images/pc/section2/bg1.png');
	background-repeat: no-repeat;
	background-size: cover;
  background-position: bottom;
}
.section5-bg{
	background-image: url('../../images/pc/section5/bg1.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}
.section3-bg{
	background-image: url('../../images/pc/section3/bg2.png');
	background-repeat: no-repeat;
	background-size: cover;
  background-position: bottom;
}
.section4-bg{
	background-image: url('../../images/pc/section5/bg1.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}

.section1-bg{
	background-image: url('../../images/pc/section1/bg1.png');
	background-repeat: no-repeat;
	background-size: cover;
}

.nav-link{
	/*background-image: 
    linear-gradient(to right, red,orange,yellow,green,blue,indigo,violet, red); 
  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;  
  animation: rainbow-animation 1500s linear infinite;*/
  /*animation: color-change 4s infinite;*/
}

@keyframes color-change {
  0% { color: #006E43; }
  25% { color: #00AEEF; }
  50% { color: #EFB600; }
  75% { color: #0058AF; }
  100% { color: #006E43; }
}


@keyframes rainbow-animation {
    to {
        background-position: 4500vh;
    }
}
.mainview {
    overflow: hidden;
}

.input_khac{
  border: 1px solid #ffcb01;
    border-radius: 10px;
    padding: 0 10px;
    line-height: 2;
    color: #7a7a7a;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 1px solid #FFCB01;

}
.input_khac::placeholder{
  color: #a4a4a4;
    font-size: 13px;
    line-height: 1.2;
}

.notice_box{
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: rgb(0 0 0 / 72%);
}
.notice{
  position: absolute;
  top: 50%;
  width: calc(700 * var( --tile));
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #ffffff;
  padding: calc(40 * var(--tile));
  border-radius: calc(35 * var(--tile));
  box-shadow: 6px 6px 12px #7c7c7c;
  transition: all 1s ease;
}

.notice .formTitle{
  font-family: 'SVN-Avenir Next Rounded';
  text-align: center;
  font-size: calc(40 * var(--tile));
  color: #0074BA;
  line-height: 1.3;
  margin-bottom: calc(30 * var(--tile));
}
.notice .text{
  font-size: 20px;
  margin-bottom: 23px;
}
.notice .btn_redirect{
  text-align: center;
}
.notice .btn{
  border-radius: 25px;
}

.SumoSelect>.optWrapper>.options li label {
  text-overflow: unset !important;

}

.section3-bg .footer{
 width: 100%;
    position: absolute;
    bottom: 80px;
    left: 0;
    z-index: 999;
}