/*
	General styles
*/
@font-face {
  font-family: "AvertaStd";
  src: url("../fonts/AvertaStd/Intelligent Design - AvertaStdCY-Light_1.otf");
  font-weight: 300;
}
@font-face {
  font-family: "AvertaStd";
  src: url("../fonts/AvertaStd/Intelligent Design - AvertaStdCY-Regular_3.otf");
}
@font-face {
  font-family: "AvertaStd";
  src: url("../fonts/AvertaStd/Intelligent Design - AvertaStdCY-Bold_1.otf");
  font-weight: bold;
}
@font-face {
  font-family: "UTM-Avo";
  src: url("../fonts/UTM-Avo/UTM Avo.ttf");
}
@font-face {
  font-family: "UTM-Avo";
  src: url("../fonts/UTM-Avo/UTM AvoBold.ttf");
  font-weight: bold;
}
body {
  font-family: "AvertaStd", "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
  scroll-behavior: smooth;
  max-width: 100%;
}

h1 {
  font-style: italic;
  font-weight: bold;
  font-size: 40px;
}

h2 {
  font-size: 20px;
}

a,
a:focus,
a:visited {
  text-decoration: none;
  color: #2e639e;
  outline-style: none;
}

a:hover {
  text-decoration: underline;
}

.touchonly {
  display: none;
}

html.touch .touchonly {
  display: block;
}

.noselect,
.noselect * {
  -ms-user-select: none;
      user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
}

.doselect,
.doselect *:not(.noselect) {
  -ms-user-select: text;
      user-select: text;
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -o-user-select: text;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

img {
  max-width: 100%;
}

video {
  max-width: 100%;
  width: 100%;
  outline-style: none;
  display: block;
}
video:focus {
  outline-style: none;
}

/* Could Use thise as well for Individual Controls */
footer {
  padding-top: 100px;
}

.header-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.44)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.44), rgba(255, 255, 255, 0));
  z-index: 9;
}
.header-page .header_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 154px;
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}
.header-page .header_wrap .header_nav .mobile-logo {
  display: none;
}
.header-page .header_wrap .mobile-header {
  display: none;
}
.header-page.sticky .header_wrap {
  height: 80px;
}

.main_nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.main_nav .item {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.main_nav .item > a {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  padding: 15px;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}
.main_nav .item.active a::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 82px;
  height: 1px;
  margin-left: -41px;
  background-color: #fff;
}

.loader-bg {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99991;
  background-color: black;
}

.loader {
  position: absolute;
  top: calc(50% - 75px);
  left: calc(50% - 75px);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(45deg, transparent, transparent 40%, #e5f403);
  -webkit-animation: animate 2s linear infinite;
          animation: animate 2s linear infinite;
}

@-webkit-keyframes animate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-filter: hue-rotate(360deg);
            filter: hue-rotate(360deg);
  }
}

@keyframes animate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-filter: hue-rotate(360deg);
            filter: hue-rotate(360deg);
  }
}
.loader:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  background: #000;
  border-radius: 50%;
  z-index: 1000;
}

.loader:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: linear-gradient(45deg, transparent, transparent 40%, #e5f403);
  border-radius: 50%;
  z-index: 1000;
  z-index: 1;
  -webkit-filter: blur(30px);
          filter: blur(30px);
}

.main_page {
  width: 100%;
  overflow-x: hidden;
  text-align: center;
}

.section-fullscreen {
  width: 100%;
  height: 100vh;
}

.dtv-box {
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
  clear: both;
  position: relative;
}

.slider_hide_arrow .slick-arrow {
  display: none !important;
}

/** Text Animation **/
@-webkit-keyframes fadeInUpSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpSD {
  -webkit-animation-name: fadeInUpSD;
  animation-name: fadeInUpSD;
}

.slick-active .slide-content {
  -webkit-animation-name: fadeInUpSD;
          animation-name: fadeInUpSD;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  opacity: 1;
  width: 100%;
  padding: 10px 20px 30px 0;
}

/* Text Animation End **/
#setion1_slider {
  height: 100vh;
}
#setion1_slider .item {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
#setion1_slider .item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 820px;
  max-width: 90%;
  height: 318px;
  background-image: url("../imgs/section1/s1-bg-text.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: translate(-50%, -245px);
          transform: translate(-50%, -245px);
  z-index: 2;
}
#setion1_slider .item .the_sun {
  position: absolute;
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

.section2 {
  background-color: #0a1839;
}
.section2 .item {
  width: 100vw;
  height: 100vh;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../imgs/section2/room-dark.png");
}
.section2 .item.light {
  background-image: url("../imgs/section2/room-light.png");
}
.section2 .item .control {
  position: absolute;
  top: 50%;
  left: 25%;
  width: 224px;
  max-width: 80%;
  cursor: pointer;
}
.section2 .item-1 ._sub {
  width: 58px;
  height: auto;
  position: absolute;
  left: 50%;
  margin-left: -29px;
}
.section2 .item-1 .hand {
  top: 106px;
  -webkit-animation: handzoom 1s infinite;
          animation: handzoom 1s infinite;
}
.section2 .item-1 .sunshine {
  top: 105px;
  width: 65px;
}
.section2 .item-3 .line {
  position: absolute;
  left: 25%;
  top: -25vh;
  width: 40px;
  height: 150vh;
  background-image: url(../imgs/section2/line.png);
  background-repeat: repeat-y;
  background-size: contain;
  background-position: center;
  -webkit-transform: rotate(33deg);
          transform: rotate(33deg);
  cursor: pointer;
}
.section2 .item-3 .line.line_right {
  left: 75%;
  -webkit-transform: rotate(-33deg);
          transform: rotate(-33deg);
}
.section2 .item-4 {
  position: relative;
}
.section2 .item-4 .led-rgb {
  position: absolute;
  bottom: 80px;
  left: 50%;
  width: 300px;
  margin-left: -150px;
}

@-webkit-keyframes handzoom {
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes handzoom {
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.section3 {
  padding-top: 2vw;
  padding-bottom: 3.5vw;
}
.section3 .section_title {
  font-family: "AvertaStd";
  margin-bottom: 3vw;
}
.section3 .section_title ._big {
  font-weight: 600;
}
.section3 .photos .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section3 .photos .row:first-child {
  margin-bottom: 3vw;
}
.section3 .photos .row:first-child .left {
  width: 50%;
  padding-right: 1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.section3 .photos .row:first-child .left ._txt {
  font-size: 24px;
  text-align: right;
  font-weight: 300;
}
.section3 .photos .row:first-child .right {
  position: relative;
  padding: 0.5vw 0 1.4vw 1.5vw;
}
.section3 .photos .row:first-child .right ._txt {
  font-weight: 600;
  font-size: 36px;
  color: #0dac69;
  margin-bottom: 1vw;
  margin-top: 0.5vw;
}
.section3 .photos .row:first-child .right::before {
  content: "";
  background: #ececec;
  position: absolute;
  width: 200%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.section3 .photos .row:nth-child(2) .left {
  width: 63%;
  position: relative;
  padding: 1vw 0vw 1.3vw 0;
}
.section3 .photos .row:nth-child(2) .left ._txt {
  font-weight: 600;
  font-size: 36px;
  color: #0dac69;
  margin-bottom: 1vw;
}
.section3 .photos .row:nth-child(2) .left::before {
  content: "";
  background: #ececec;
  position: absolute;
  width: 200%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
}
.section3 .photos .row:nth-child(2) .right {
  padding-left: 3%;
}
.section3 .photos .row:nth-child(2) .right ._txt {
  font-size: 24px;
  text-align: left;
  font-weight: 300;
  margin-top: 1vw;
  margin-bottom: 1.5vw;
}
.section3 .photos .row img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.section3 .s3-box {
  width: 770px;
  max-width: 98%;
  margin: 0 auto;
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 30px;
  line-height: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  font-weight: 300;
  font-family: "AvertaStd";
}
.section3 .s3-box b {
  font-weight: 600;
}
.section3 .s3-box::before {
  content: "";
  position: absolute;
  left: 6%;
  top: 0;
  width: 135px;
  height: 105px;
  background-image: url("../imgs/icons/s3-1.1.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.section3 .s3-box::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 142px;
  height: 112px;
  background-image: url("../imgs/icons/s3-2.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.section4 {
  background-color: #dfdfdf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.s4-box {
  position: relative;
  width: 100%;
  z-index: 1;
}
.s4-box .overlay_video_s4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #dfdfdf;
  z-index: 2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.s4-box .overlay_video_s4 ._title {
  font-size: 40px;
  color: #a2a2a2;
}
.s4-box .play_video_s4 {
  width: 215px;
  height: 215px;
  background-image: url("../imgs/icons/play_video.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;
}

.section5 {
  background: -webkit-gradient(linear, left bottom, left top, from(#0a142e), to(#0a142e));
  background: linear-gradient(0deg, #0a142e 0%, #0a142e 100%);
  height: 75vh;
  position: relative;
  overflow: hidden;
}
.section5 .dtv-box {
  position: unset;
  position: initial;
}
.section5 .dtv-box .section_title {
  font-size: 20px;
  margin-bottom: 0;
  z-index: 1;
  margin-top: 3%;
}
.section5 .dtv-box .section_title .text-gradient {
  font-family: "AvertaStd";
}
.section5 .dtv-box video {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section5 .dtv-box .list_check {
  margin: 25px 0 0 0;
  padding: 0 5%;
  z-index: 1;
  position: absolute;
  bottom: 15%;
  width: 1120px;
}
.section5 .dtv-box .list_check .item {
  font-size: 20px;
  margin-bottom: 20px;
  font-family: "AvertaStd";
  text-align: center;
}
.section5 .dtv-box .list_check .item:last-child {
  margin-bottom: 0;
}

.section_title {
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
  max-width: 750px;
  margin: 0 auto 25px;
}
.section_title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 160px;
  margin-left: -80px;
  height: 3px;
  background: linear-gradient(45deg, #13ac69, #72c48c);
}
.section_title.light {
  color: #fff;
}
.section_title .bold {
  font-weight: 600;
}

.text-gradient {
  display: block;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  background: -webkit-linear-gradient(45deg, #47af71, #d6ece0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.list_check {
  text-align: left;
  list-style: none;
  list-style-position: inside;
}
.list_check .item {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 25px;
}

.section6 {
  background-image: url("../imgs/section6/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 75vh;
  margin-bottom: 4%;
}
.section6 .s6_content {
  height: 100%;
}
.section6 .s6_content .txt {
  position: absolute;
  left: 20%;
  top: 6%;
  width: 30%;
  max-width: 450px;
  z-index: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
.section6 .s6_content .child {
  position: absolute;
  bottom: -7%;
  left: 50%;
  margin-left: -33%;
  width: 74%;
}

.section7 {
  padding-top: 100px;
}
.section7 .owl-nav {
  opacity: 0;
  z-index: -1;
}

.setion7_nav {
  list-style: none;
  max-width: calc(100% - 30px);
  width: 546px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding: 0;
  padding: 0 15px 46px;
  margin: 20px auto;
}
.setion7_nav .slick-list {
  overflow: visible;
  padding: 0 !important;
  width: 100%;
}
.setion7_nav .slick-list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-transform: none !important;
          transform: none !important;
}
.setion7_nav::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 22px;
  background-image: url("../imgs/section7/time_line.jpg");
  background-size: cover;
  background-position: center top;
}
.setion7_nav .item a {
  width: 62px;
  height: 62px;
  line-height: 48px;
  color: #fff;
  font-size: 15px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  position: relative;
}
.setion7_nav .item a.sang {
  background-color: #3f94ca;
  border: 5px solid #91c2e1;
}
.setion7_nav .item a.trua {
  background-color: #c9c9c9;
  border: 5px solid #e0e0e0;
}
.setion7_nav .item a.trua::before {
  border-color: #c9c9c9 transparent transparent;
}
.setion7_nav .item a.chieu {
  background-color: #f6bf37;
  border: 5px solid #fada8d;
}
.setion7_nav .item a.chieu::before {
  border-color: #f6bf37 transparent transparent;
}
.setion7_nav .item.slick-current a.sang {
  background-color: #3f94ca;
  border: 5px solid #91c2e1;
}
.setion7_nav .item.slick-current a.trua {
  background-color: #c9c9c9;
  border: 5px solid #e0e0e0;
}
.setion7_nav .item.slick-current a.trua::before {
  border-color: #c9c9c9 transparent transparent;
}
.setion7_nav .item.slick-current a.chieu {
  background-color: #f6bf37;
  border: 5px solid #fada8d;
}
.setion7_nav .item.slick-current a.chieu::before {
  border-color: #f6bf37 transparent transparent;
}

.section-7 {
  padding: 40px 0;
}
.section-7 .section_title {
  font-family: "AvertaStd";
  margin-bottom: 10px;
}
.section-7 .section_title ._big {
  font-weight: 600;
}
.section-7 .photos .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.section-7 .photos .row img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.section-7 .photos .row .left {
  width: 60%;
  padding-right: 10px;
}
.section-7 .photos .row .left img {
  height: 100%;
}
.section-7 .photos .row .right {
  width: 40%;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section8 {
  background-color: #f1f1f1;
  padding-top: 70px;
  padding-bottom: 30px;
  height: 100vh;
  min-height: 920px;
  width: 100vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.section8 > .dtv-box {
  height: 100%;
  overflow: hidden;
}
.section8 .section_title {
  font-family: "AvertaStd";
  margin-bottom: 20px;
}

.setion8_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding-bottom: 20px;
  padding-left: 0;
  width: 70%;
}
.setion8_nav .item {
  width: 25%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.setion8_nav .item a {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 30% 11% 0 11%;
  position: relative;
  text-decoration: none;
  color: #707070;
  font-size: 16px;
  font-weight: 600;
}
.setion8_nav .item a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -15%;
  width: 30%;
  height: 60%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.setion8_nav .item a.sang:after {
  background-image: url("../imgs/section8/taptrung-1.png");
}
.setion8_nav .item a.trua:after {
  background-image: url("../imgs/section8/giailao-1.png");
}
.setion8_nav .item a.chieu:after {
  background-image: url("../imgs/section8/nangsuat-1.png");
}
.setion8_nav .item:hover a, .setion8_nav .item.active a {
  color: #0f1931;
}
.setion8_nav .item:hover a.sang:after, .setion8_nav .item.active a.sang:after {
  background-image: url("../imgs/section8/taptrung-2.png");
}
.setion8_nav .item:hover a.trua:after, .setion8_nav .item.active a.trua:after {
  background-image: url("../imgs/section8/giailao-2.png");
}
.setion8_nav .item:hover a.chieu:after, .setion8_nav .item.active a.chieu:after {
  background-image: url("../imgs/section8/nangsuat-2.png");
}

.setion8_slider .owl-dots {
  height: 0;
}

.setion9_slider {
  position: relative;
}
.setion9_slider .item {
  position: relative;
}
.setion9_slider .item .content {
  position: absolute;
  top: 200px;
  right: 50%;
  margin-left: -600px;
}
.setion9_slider .item .content .text-gradient {
  font-size: 60px;
  font-weight: bold;
  line-height: 130%;
}
.setion9_slider .item img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.has_button .owl-nav button {
  position: absolute;
  top: 50%;
  margin-top: -41px;
  height: 82px;
  width: 52px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  outline-style: none;
}
.has_button .owl-nav button:hover {
  opacity: 1;
}
.has_button .owl-nav button span {
  display: none;
}
.has_button .owl-nav button.owl-prev {
  left: 50px;
  background-image: url("../imgs/icons/prev.png");
}
.has_button .owl-nav button.owl-next {
  right: 50px;
  background-image: url("../imgs/icons/next.png");
}

.section10 {
  max-height: 950px;
  overflow: hidden;
  padding-top: 50px;
}

.list_feature_mobile {
  display: none;
}

.section10-box {
  width: 1374px;
  height: 1374px;
  max-width: 100%;
  margin: 0 auto;
  background: -webkit-gradient(linear, left top, right top, from(#ffd97c3d), to(#a3d7f563));
  background: linear-gradient(90deg, #ffd97c3d 0%, #a3d7f563 100%);
  min-height: 950px;
  border-radius: 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section10-box .list_feature {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 1100px;
  margin-left: -550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.section10-box .list_feature .item {
  width: 20%;
  max-width: 178px;
  text-align: center;
}
.section10-box .list_feature .item ._img {
  width: 98px;
  height: 98px;
  -o-object-fit: contain;
     object-fit: contain;
}
.section10-box .list_feature .item ._text {
  font-size: 17px;
  font-weight: 600;
  margin-top: 15px;
}
.section10-box .list_feature .item:nth-child(1), .section10-box .list_feature .item:nth-child(5) {
  margin-top: 220px;
}
.section10-box .list_feature .item:nth-child(2), .section10-box .list_feature .item:nth-child(4) {
  margin-top: 80px;
}
.section10-box .list_feature .item:nth-child(3) {
  margin-top: 45px;
}
.section10-box .s10_product {
  width: 66.66%;
  height: 66.66%;
  background-color: #fff;
  border-radius: 50%;
}
.section10-box .s10_product .section_title {
  font-size: 28px;
  line-height: 37px;
  margin-top: 50px;
}
.section10-box .s10_product .section_title .bold {
  font-size: 40px;
  line-height: 53px;
}
.section10-box .s10_product ._product img {
  max-width: 100%;
}

#setion11_slider .item {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
#setion11_slider .item ._text {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -60px;
  width: 566px;
  margin-left: -283px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 600;
  line-height: 53px;
}
#setion11_slider .item ._text ._sub {
  font-size: 32px;
  font-weight: 400;
}

.section12 {
  padding-top: 60px;
}
.section12 .section_title {
  font-family: "AvertaStd";
}
.section12 .section_title ._big {
  font-weight: 600;
}

.section13 {
  margin-bottom: 60px;
  background-image: url("../imgs/section13/s13-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding: 60px 0;
  height: 80vh;
}
.section13 ._title {
  font-size: 32px;
  font-weight: 400;
  line-height: 43px;
  margin-bottom: 35px;
  color: #fff;
  text-transform: uppercase;
}
.section13 .show_mobile {
  display: none;
}

.section-19 {
  padding: 40px 0;
}
.section-19 .section_title {
  font-family: "AvertaStd";
  font-size: 18px;
  text-transform: none;
  line-height: 24px;
}
.section-19 .section_title ._big {
  font-size: 24px;
  font-weight: 600;
}

.section14 {
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.section14 ._title {
  text-align: center;
  margin-bottom: 20px;
}
.section14 ._title img {
  max-width: 620px;
  margin-bottom: 15px;
}
.section14 ._title .text {
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}
.section14 ._title .text:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 160px;
  margin-left: -80px;
  height: 3px;
  background: linear-gradient(45deg, #13ac69, #72c48c);
}
.section14 .box_view_all {
  display: block;
  clear: both;
  margin-top: 35px;
  text-align: center;
}
.section14 .box_view_all .view_all {
  color: #0dac69;
  font-size: 21px;
}
.section14 .box_view_all .view_all:hover {
  text-decoration: underline;
}

.setion14_slider .item {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 480px;
  text-align: center;
  font-family: "AvertaStd";
}
.setion14_slider .item img {
  width: 300px;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: 0 auto;
  max-width: 100%;
  -webkit-transition: width 2s;
  transition: width 2s;
  -webkit-transition-timing-function: cubic-bezier(0.06, 0.57, 0.93, 0.82);
          transition-timing-function: cubic-bezier(0.06, 0.57, 0.93, 0.82);
}
.setion14_slider .item .title {
  font-size: 24px;
  line-height: 27px;
  font-weight: 600;
  color: #0f1931;
  margin-bottom: 12px;
}
.setion14_slider .item .param {
  font-size: 14px;
  line-height: 18px;
  color: #707070;
}
.setion14_slider .item .view_now {
  margin: 15px auto 0;
  padding: 4px 18px;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#13ac69), to(#72c48c));
  background: linear-gradient(90deg, #13ac69, #72c48c);
  min-width: 102px;
  line-height: 26px;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
}
.setion14_slider.has_button .owl-nav button {
  background-repeat: no-repeat;
}
.setion14_slider.has_button .owl-nav button.owl-prev {
  left: 0;
  background-image: url(../imgs/icons/prev_gray.png);
}
.setion14_slider.has_button .owl-nav button.owl-next {
  right: 0;
  background-image: url(../imgs/icons/next_gray.png);
}

.section15 {
  padding: 60px 0;
  background-image: url("../imgs/section15/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.section15 .section_title {
  font-family: "AvertaStd";
}
.section15 .section_title ._big {
  font-weight: 600;
}
.section15 .box_app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 974px;
  margin: 40px auto 0;
}
.section15 .box_app > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 50%;
}
.section15 .box_app > div .item {
  width: 50%;
}
.section15 .box_app .second {
  margin-top: 125px;
}

.section16 {
  padding: 50px 0;
  font-family: "AvertaStd";
}
.section16 .section_title {
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
}

.box_uudiem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 40px;
}
.box_uudiem .child_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
}
.box_uudiem .child_box .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 15px 0;
}
.box_uudiem .child_box .item img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 10px 35px;
}
.box_uudiem .child_box .item .text {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-align: left;
  width: 100%;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.box_uudiem .child_box._left .item img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.box_uudiem .child_box._left .item .text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  text-align: right;
}

.footer_page {
  background-image: url("../imgs/section13/s13-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0 40px;
  font-family: "UTM-Avo";
}

.footer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.footer-box .footer-col {
  width: 50%;
}
.footer-box .footer-col .f_logo {
  margin-bottom: 15px;
}

.footer_form {
  background-color: #fff;
  max-width: 440px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
}
.footer_form > * {
  display: block;
  width: calc(100% - 40px);
  margin: 8px 0;
  border: none;
}
.footer_form input,
.footer_form input:focus,
.footer_form textarea,
.footer_form textarea:focus {
  font-family: "AvertaStd";
  font-weight: 300;
  background-color: #e5e5e5;
  font-size: 20px;
  line-height: 26px;
  color: #0f1931;
  padding: 5px 15px;
  outline-style: none;
}
.footer_form .box_submit {
  text-align: center;
  margin-top: 20px;
}
.footer_form .box_submit button,
.footer_form .box_submit button:focus {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#13ac69), to(#72c48c));
  background: linear-gradient(90deg, #13ac69, #72c48c);
  min-width: 102px;
  border-radius: 50px;
  border: none;
  display: inline-block;
  outline-style: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 8px 22px;
  cursor: pointer;
}

.f_group {
  margin: 15px 0 25px;
}
.f_group * {
  color: #fff;
  font-size: 16px;
  line-height: 20px;
}
.f_group .title {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.f_group_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.f_group_flex > * {
  margin-right: 25px !important;
}

.dtv-icon {
  position: relative;
  padding-left: 32px;
  margin: 8px 0 8px;
}
.dtv-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
}
.dtv-icon.dtv-home::before {
  background-image: url("../imgs/icons/i-home.png");
}
.dtv-icon.dtv-phone::before {
  background-image: url("../imgs/icons/i-phone.png");
}
.dtv-icon.dtv-mail::before {
  background-image: url("../imgs/icons/i-mail.png");
}
.dtv-icon.dtv-web::before {
  background-image: url("../imgs/icons/i-web.png");
}

#call_me > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#call_me .btn-loader {
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid #39865d;
  width: 25px;
  height: 25px;
  -webkit-animation: spin 2s linear infinite;
  display: none;
  /* Safari */
  animation: spin 2s linear infinite;
  margin-right: 5px;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media screen and (max-width: 768px) {
  .dtv-box {
    width: 500px;
  }

  .header-page .header_wrap {
    height: 70px;
    padding: 20px 30px 0;
  }
  .header-page .header_wrap .header_logo a img {
    height: 40px;
  }
  .header-page .header_wrap .header_nav {
    position: fixed;
    height: 100vh;
    top: 0;
    left: -101%;
    background: #121d3b;
    width: 100%;
    -webkit-transition: left 0.5s;
    transition: left 0.5s;
  }
  .header-page .header_wrap .header_nav .mobile-logo {
    display: block;
    height: 80px;
    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;
  }
  .header-page .header_wrap .header_nav .mobile-logo a img {
    height: 45px;
  }
  .header-page .header_wrap .header_nav .main_nav {
    padding: 3%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header-page .header_wrap .header_nav .main_nav .item {
    height: 40px;
    padding: 10px 0 10px 0;
    text-align: center;
  }
  .header-page .header_wrap .header_nav .main_nav .item a {
    text-transform: none;
  }
  .header-page .header_wrap .header_nav .main_nav .item.active a::before {
    content: unset;
    content: initial;
  }
  .header-page .header_wrap .header_nav .main_nav .item.active {
    background: #57bc81;
  }
  .header-page .header_wrap .mobile-header {
    display: block;
    z-index: 1;
  }
  .header-page .header_wrap .mobile-header a img {
    height: 25px;
  }
  .header-page.sticky .header_wrap {
    height: 70px;
  }

  .section-1 .m-lumi-img {
    display: block !important;
    left: 13% !important;
    top: 36% !important;
    width: 74% !important;
  }
  .section-1 .lumi-img {
    display: none;
  }
  .section-1 .sun-img {
    left: 8%;
    top: 33%;
    width: 15%;
    max-width: 15vw;
    margin-left: -7.5%;
  }

  .setion2 {
    overflow: inherit !important;
    height: auto;
  }
  .setion2 #myVideo {
    position: inherit;
    top: 0;
  }
  .setion2 .room-light,
  .setion2 .room-dark {
    position: absolute;
    width: 100vw;
    height: 100%;
    max-width: none;
    top: 0;
  }
  .setion2 .room-pc,
  .setion2 .vroom-pc {
    display: none;
  }
  .setion2 .room-mobile,
  .setion2 .vroom-mobile {
    display: block;
  }
  .setion2 .filter-effect {
    position: inherit;
    height: auto;
  }
  .setion2 .mobile-fixed-footer {
    display: block;
  }
  .setion2 .session2-control {
    left: 50px;
  }
  .setion2 .session2-control .session2-control-block {
    height: 200px;
  }
  .setion2 .session2-control .session2-control-block .phone1,
  .setion2 .session2-control .session2-control-block .phone2 {
    width: 95px;
    height: 100%;
    background-repeat: no-repeat;
  }
  .setion2 .session2-control .session2-control-block .hand-origin {
    width: 40px;
    height: 40px;
    top: 97px;
    left: 30px;
  }
  .setion2 .session2-control .session2-control-block .hand-touch {
    width: 40px;
    height: 40px;
    top: 55px;
    left: 27px;
  }
  .setion2 .session2-control .session2-control-block .text1 {
    width: 170px;
    top: -145px;
    left: 54px;
  }
  .setion2 .session2-control .session2-control-block .text2 {
    width: 170px;
    top: -105px;
    left: 54px;
  }
  .setion2 .session2-control .session2-control-block .text3 {
    width: 170px;
    top: -75px;
    left: 54px;
  }
  .setion2 .session2-control .session2-control-block .head {
    width: 100%;
    height: 100%;
    left: -35px;
    top: 25px;
  }
  .setion2 .session2-control .session2-control-block .voice {
    width: 20vw;
    height: 5vh;
    top: 12%;
    left: 40%;
  }
  .setion2 .session2-control .session2-control-block .voice-text {
    width: 65px;
    height: 23px;
    left: -15px;
    top: 15px;
  }

  .section3-pc {
    opacity: 0;
  }

  .section3 {
    padding-top: 10vw;
    padding-bottom: 8.5vw;
  }
  .section3 .section_title {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 6vw;
  }
  .section3 .photos .row:first-child {
    margin-bottom: 10vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .section3 .photos .row:first-child .left {
    width: 100%;
    padding: 2vw 4vw 0;
  }
  .section3 .photos .row:first-child .left ._txt {
    text-align: center;
    font-size: 20px;
  }
  .section3 .photos .row:first-child .right {
    padding: 0;
  }
  .section3 .photos .row:first-child .right ._txt {
    font-size: 24px;
    margin-bottom: 4vw;
  }
  .section3 .photos .row:first-child .right::before {
    content: unset;
    content: initial;
  }
  .section3 .photos .row:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section3 .photos .row:nth-child(2) .left {
    width: 100%;
    padding: 1vw 0;
  }
  .section3 .photos .row:nth-child(2) .left ._txt {
    font-size: 26px;
    margin-bottom: 4vw;
  }
  .section3 .photos .row:nth-child(2) .left::before {
    content: unset;
    content: initial;
  }
  .section3 .photos .row:nth-child(2) .right {
    padding: 3vw 15vw 0;
  }
  .section3 .photos .row:nth-child(2) .right ._txt {
    font-size: 20px;
    text-align: center;
    margin: 0 -5vw;
  }
  .section3 .photos .row img {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
  .section3 .s3-box {
    font-size: 20px;
    line-height: 26px;
    padding: 4% 18%;
  }
  .section3 .s3-box::before {
    left: 15%;
    top: 0;
    width: 70px;
    height: 60px;
  }
  .section3 .s3-box:after {
    right: 8%;
    bottom: 5%;
    width: 70px;
    height: 60px;
  }

  .section5 {
    padding: 15px 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .section5 .dtv-box {
    padding: 0 10%;
  }
  .section5 .dtv-box .list_check {
    -webkit-padding-start: 0;
       -moz-padding-start: 0;
            padding-inline-start: 0;
    text-align: justify;
    position: initial;
    width: 100%;
    padding: 0;
    margin-bottom: 35px;
  }
  .section5 .dtv-box .list_check .item {
    font-size: 18px;
    line-height: 1.4;
  }
  .section5 .dtv-box .text-gradient {
    font-size: 38px;
    line-height: 38px;
    padding: 1% 20%;
  }
  .section5 .dtv-box .section_title {
    font-size: 18px;
  }
  .section5 .dtv-box .section_title::before {
    left: 50%;
    width: 20%;
    margin-left: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 2px;
  }
  .section5 .dtv-box video {
    position: initial;
    -webkit-transform: scale(1.7);
            transform: scale(1.7);
    margin: 50px 0;
  }

  .section6 {
    height: 500px;
  }
  .section6 .section6_title {
    font-size: 32px;
  }
  .section6 .section6_title ._big {
    font-size: 44px;
  }
  .section6 .s6_content img {
    max-width: 150%;
    bottom: -10%;
    right: -25%;
  }
  .section6 .s6_content .child {
    left: -10%;
    margin-left: 0;
    height: 80%;
    width: auto;
  }
  .section6 .s6_content .txt {
    left: 10%;
    top: 10%;
    width: 55%;
  }

  .section-7 {
    padding: 5% 0;
  }
  .section-7 .dtv-box .section_title {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 10px;
    margin-top: 20px;
  }
  .section-7 .dtv-box .setion7_nav {
    margin: 20px auto;
  }
  .section-7 .dtv-box .setion7_nav::before {
    width: calc(100% - 30px);
  }
  .section-7 .dtv-box .setion7_slider {
    min-height: 400px;
  }
  .section-7 .dtv-box .setion7_slider .item img {
    max-height: 500px;
    height: 60vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-7 .dtv-box .photos .row {
    display: block;
  }
  .section-7 .dtv-box .photos .row .left {
    width: 100%;
    padding: 0;
  }
  .section-7 .dtv-box .photos .row .left img {
    margin-top: 5px;
  }
  .section-7 .dtv-box .photos .row .right {
    width: 100%;
    padding: 0;
  }
  .section-7 .dtv-box .photos .row .right img {
    margin-top: 5px;
  }
  .section-7 .dtv-box .photos > img {
    padding: 0 5%;
  }

  .section8 {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-height: auto;
    padding: 30px 0;
  }
  .section8 .section_title {
    font-size: 18px;
  }
  .section8 .setion8_nav {
    width: 100%;
  }
  .section8 .setion8_nav .item {
    width: 30%;
  }
  .section8 .setion8_nav .item a {
    font-size: 14px;
    padding: 70% 5px 5px;
  }
  .section8 .setion8_nav .item a::after {
    width: 45px;
  }
  .section8 .owl-carousel .owl-item img {
    max-height: 500px;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .has_button .owl-nav button {
    width: 15px;
    height: 30px;
    background-repeat: no-repeat !important;
    background-size: 15px 30px !important;
    margin-top: 0px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .section9 .item img {
    height: auto;
  }
  .section9 .owl-nav .owl-prev {
    left: 2% !important;
  }
  .section9 .owl-nav .owl-next {
    right: 2% !important;
  }

  .section10 {
    height: 100vh;
    padding-top: 0px;
    max-height: 100vh;
  }
  .section10 .list_feature_mobile {
    display: block;
    left: 0;
    width: 85vw;
    margin: auto;
    max-width: 100%;
    height: 50vh;
    padding-top: 3vh;
  }
  .section10 .list_feature_mobile .item {
    width: 50%;
    height: 14vh;
    max-width: 50%;
    text-align: center;
    display: inline-block;
    float: left;
    margin: 5px 0 !important;
  }
  .section10 .list_feature_mobile .item:first-child {
    width: 100%;
    max-width: 100%;
  }
  .section10 .list_feature_mobile .item ._img {
    height: 9vh;
    margin-bottom: 1vh;
  }
  .section10 .list_feature_mobile .item ._text {
    font-size: 12px;
    font-weight: bold;
  }

  .section10-box {
    position: absolute;
    max-width: 126vw;
    -webkit-transform: translateX(-13vw);
            transform: translateX(-13vw);
    left: 0;
    bottom: 0;
    height: 50vh;
    min-height: auto;
    display: block;
    border-radius: 50%;
  }
  .section10-box .s10_product {
    width: 100vw;
    height: 36vh;
    padding-bottom: 40px;
    padding-top: 40px;
    position: absolute;
    bottom: 0;
    border-radius: 50% 50% 0 0;
    -webkit-transform: translateX(13vw);
            transform: translateX(13vw);
  }
  .section10-box .s10_product .section_title {
    font-size: 13px;
    margin-top: 10px;
    position: absolute;
    top: -13vh;
    width: 100%;
  }
  .section10-box .s10_product .section_title .bold {
    font-size: 20px;
    line-height: 15px;
  }
  .section10-box .s10_product ._product img {
    max-width: 85vw;
    margin-right: 5vw;
  }
  .section10-box .list_feature {
    position: relative;
    display: none;
    left: 0;
    width: 80vw;
    margin: 0;
    padding: 15px;
    max-width: 100%;
    height: 50vh;
  }
  .section10-box .list_feature .item {
    width: 50%;
    max-width: 50%;
    text-align: center;
    display: inline-block;
    float: left;
    margin: 5px 0 !important;
  }
  .section10-box .list_feature .item:first-child {
    width: 100%;
    max-width: 100%;
  }
  .section10-box .list_feature .item ._img {
    width: 60px;
    height: 60px;
  }
  .section10-box .list_feature .item ._text {
    font-size: 12px;
  }
  .section10-box .section10-backdrop .bg1 {
    height: 20vh;
  }

  #setion11_slider .item ._text {
    width: 320px;
    margin-left: -160px;
    font-size: 34px;
    line-height: 42px;
  }

  .section-11 .description #s-1 h4,
  .section-11 .description #s-2 h4,
  .section-11 .description #s-3 h4,
  .section-11 .description #s-4 h4 {
    font-size: 24px;
  }
  .section-11 .description #s-1 ._sub,
  .section-11 .description #s-2 ._sub,
  .section-11 .description #s-3 ._sub,
  .section-11 .description #s-4 ._sub {
    font-size: 22px;
    font-weight: 300;
    line-height: 25px;
  }

  .section12 .section_title {
    padding: 0 12%;
    font-size: 18px;
  }
  .section12 .section_title::before {
    height: 2px;
    bottom: -4px;
  }
  .section12 .section_title ._big {
    font-size: 20px;
  }

  .section13 {
    padding: 0;
    margin-bottom: 30px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .section13 ._title {
    padding: 0 15px;
    font-size: 28px;
    font-weight: 400;
    line-height: 38px;
  }
  .section13 .show_mobile {
    display: block;
  }
  .section13 .show_mobile img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .section14 {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 70px;
  }
  .section14 ._title {
    padding: 0 10%;
  }
  .section14 ._title .text {
    font-weight: 300;
    font-size: 17px;
    padding: 0 5% 10px;
    line-height: 24px;
  }
  .section14 ._title img {
    max-width: 100%;
    margin-bottom: 5px;
  }

  .setion14_slider .item {
    min-height: 300px;
    padding: 0 10px;
  }
  .setion14_slider .item .title {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 24px;
    min-height: 100px;
  }
  .setion14_slider .item img {
    width: 200px;
    height: 160px;
    -webkit-transition: width 1s;
    transition: width 1s;
  }
  .setion14_slider .item .param {
    font-size: 12px;
    line-height: 16px;
  }
  .setion14_slider .item .view_now {
    margin-top: 20px;
    font-size: 16px;
    padding: 4px 18px;
  }

  .section15 .box_app {
    padding: 0 15%;
  }
  .section15 .box_app > div {
    width: 100%;
    display: block;
  }
  .section15 .box_app > div .item {
    width: 100%;
  }
  .section15 .box_app > div.left {
    margin-top: 80px;
  }
  .section15 .box_app > div .second {
    margin-top: 40px;
  }

  .section16 {
    padding: 60px 15px;
  }
  .section16 .dtv-box {
    padding: 0 5%;
  }
  .section16 .child_box .item {
    padding-bottom: 0;
  }
  .section16 .child_box .item img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    min-width: 100px;
    height: 70px;
    margin: 10px 10px;
  }
  .section16 .child_box .item .text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
  }

  .box_uudiem {
    display: block;
    width: 100%;
  }
  .box_uudiem .child_box {
    width: 100%;
  }
  .box_uudiem .child_box._left .item {
    padding-bottom: 0;
  }
  .box_uudiem .child_box._left .item img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    min-width: 100px;
    height: 70px;
    margin: 10px 10px;
  }
  .box_uudiem .child_box._left .item .text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
  }

  .section18 .section_title {
    font-size: 20px;
  }
  .section18 .section_title strong {
    font-size: 30px;
    line-height: 30px;
  }

  .section-19 {
    padding-bottom: 0;
  }
  .section-19 .section19-video .nhom-den-vd-title {
    height: 42px;
    text-align: center;
    margin: auto;
    margin-top: 15px;
    font-size: 13px;
  }
  .section-19 .section19-video .nhom-den-vd-title .tt {
    color: #32aa6c;
    font-weight: bold;
  }
  .section-19 .section19-video .nhom-den-vd-title .sub-tt {
    color: gray;
  }
  .section-19 .section_title ._big {
    font-size: 20px;
  }

  .footer_page {
    padding: 25px 0 20px;
    background-image: url("../imgs/footer-bg.png");
  }

  .footer-box {
    display: block;
  }
  .footer-box .footer_form {
    padding: 30px 5px;
  }
  .footer-box .footer_form input {
    font-size: 16px;
  }
  .footer-box .footer-col {
    max-width: 100%;
    width: calc(100% - 70px);
    margin: auto;
    margin-top: 20px;
  }
  .footer-box .footer-col.footer_right {
    width: calc(100% - 90px);
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .footer-box .f_group * {
    font-size: 14px;
  }

  .show-mobile {
    display: inline;
  }

  .show-pc {
    display: none;
  }
}

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