@charset "UTF-8";
@font-face {
  font-family: 'Roboto-Regular';
  src: url("../webfonts/Roboto-Regular.ttf");
}
@font-face {
  font-family: 'iciel';
  src: url("../webfonts/iciel_pacifico.ttf");
}
body {
  font-size: 14px;
  font-family: "Roboto", Arial, sans-serif;
  position: relative;
  overflow-x: hidden;
  color: #333;
}

.wapper {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #fff;
}

@media screen and (min-width: 1400px) {
  .wapper {
    max-width: 100%;
  }
}
img {
  max-width: 100%;
}

.div-table {
  display: table;
  width: 100%;
}

.div-table-cell {
  display: table-cell;
  vertical-align: middle;
}

.flex-row {
  -js-display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.flex-row-top {
  -js-display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: top;
  -ms-flex-align: top;
  align-items: top;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.flex-col {
  max-height: 100%;
}

.flex-left {
  margin-right: auto;
}

.flex-right {
  margin-left: auto;
}

.div-table {
  display: table;
  width: 100%;
}

.div-table-cell {
  display: table-cell;
  width: 100%;
}

.visible-767 {
  display: none;
}

.vertical {
  display: table;
  height: 100%;
  width: 100%;
}

.middle {
  display: table-cell;
  vertical-align: middle;
}

.left {
  float: left;
}

.right {
  float: right;
}

.box-img-center {
  position: relative;
  overflow: hidden;
}

.img-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-height: 100%;
}

.img-zoom {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transition: .6s all ease;
  -webkit-transition: .6s all ease;
  -moz-transition: .6s all ease;
  -ms-transition: .6s all ease;
  -o-transition: .6s all ease;
}

.img-zoom:hover {
  transform: scale(1.15);
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transition: .6s all ease;
  -webkit-transition: .6s all ease;
  -moz-transition: .6s all ease;
  -ms-transition: .6s all ease;
  -o-transition: .6s all ease;
}

.img-op {
  opacity: 1;
  transition: .6s all ease;
  -webkit-transition: .6s all ease;
  -moz-transition: .6s all ease;
  -ms-transition: .6s all ease;
  -o-transition: .6s all ease;
}

.img-op:hover {
  opacity: 0.8;
  transition: .6s all ease;
  -webkit-transition: .6s all ease;
  -moz-transition: .6s all ease;
  -ms-transition: .6s all ease;
  -o-transition: .6s all ease;
}

.img-mirror {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  opacity: 0.9;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.img-mirror:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  content: '';
  -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, -100%, 0);
  transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
}

.img-mirror:hover:after {
  webkit-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
  transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}

.img-mirror:hover {
  opacity: 1;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a:hover {
  text-decoration: none;
}

a:focus {
  text-decoration: none;
  outline: none;
}

a, button, input {
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=search],
textarea {
  border: 1px solid #b5b5b5;
  padding: 8px 15px;
  font-size: 14px;
  color: #757575;
  border-radius: 0;
  font-family: 'Roboto', sans-serif;
}

button,
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=search]:focus,
textarea:focus {
  border-color: #fbf063;
  outline: none;
}

.float-full {
  width: 100%;
  float: left;
}

/*detail css customer*/
.content-standard-ck p {
  display: block;
  -webkit-margin-before: 0.7em;
  -webkit-margin-after: 0.7em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
}
.content-standard-ck table > thead > tr > th, .content-standard-ck table > tbody > tr > th, .content-standard-ck table > tfoot > tr > th, .content-standard-ck table > thead > tr > td, .content-standard-ck table > tbody > tr > td, .content-standard-ck table > tfoot > tr > td {
  border: 1px solid #eee;
}
.content-standard-ck table > thead > tr > th, .content-standard-ck table > tbody > tr > th, .content-standard-ck table > tfoot > tr > th, .content-standard-ck table > thead > tr > td, .content-standard-ck table > tbody > tr > td, .content-standard-ck table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #eee;
  text-align: left;
  font: 13px/18px "Tahoma Regular";
}
.content-standard-ck table tr:hover {
  background-color: #F8FAFB;
}
.content-standard-ck ol, .content-standard-ck ul {
  padding-left: 20px;
}
.content-standard-ck ol li, .content-standard-ck ul li {
  list-style: inherit;
}
.content-standard-ck iframe {
  width: 100%;
}

@media (max-width: 480px) {
  .content-standard-ck iframe {
    height: auto;
  }
}
.container {
  max-width: 1170px;
}

.tab-content > .active {
  opacity: 1;
}

.price .price-old {
  color: #666666;
  padding-right: 15px;
  font-weight: 400;
  text-decoration: line-through;
}
.price .price-market {
  color: #fb0000;
  font-weight: 400;
  font-size: 18px;
}

.breadcrumb {
  background-color: transparent;
  margin-bottom: 10px;
}
.breadcrumb a {
  color: #666;
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
}
.breadcrumb a:hover {
  color: #333;
}

.breadcrumb-item.active a {
  color: #333;
}

/*detail css customer*/
.content-standard-ck p {
  display: block;
  -webkit-margin-before: 0.7em;
  -webkit-margin-after: 0.7em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
}
.content-standard-ck table > thead > tr > th, .content-standard-ck table > tbody > tr > th, .content-standard-ck table > tfoot > tr > th, .content-standard-ck table > thead > tr > td, .content-standard-ck table > tbody > tr > td, .content-standard-ck table > tfoot > tr > td {
  border: 1px solid #eee;
}
.content-standard-ck table > thead > tr > th, .content-standard-ck table > tbody > tr > th, .content-standard-ck table > tfoot > tr > th, .content-standard-ck table > thead > tr > td, .content-standard-ck table > tbody > tr > td, .content-standard-ck table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #eee;
  text-align: left;
  font: 13px/18px "Tahoma Regular";
}
.content-standard-ck table tr:hover {
  background-color: #F8FAFB;
}
.content-standard-ck ol, .content-standard-ck ul {
  padding-left: 20px;
  margin-bottom: 10px;
}
.content-standard-ck ol li, .content-standard-ck ul li {
  list-style: inherit;
  margin-bottom: 10px;
}
.content-standard-ck iframe {
  width: 100%;
}
.content-standard-ck img {
  margin-bottom: 10px;
}

@media (max-width: 480px) {
  .content-standard-ck iframe {
    height: auto;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 4.3px !important;
  }
}
@media (max-width: 767px) {
  .hidden-767 {
    display: none;
  }

  .visible-767 {
    display: block;
  }

  .flex-row-top {
    display: block;
  }
  .flex-row-top .flex-col {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0px !important;
  }

  .box-img-center {
    height: auto !important;
  }

  .img-center {
    position: relative !important;
    width: 100% !important;
  }
}
.btn-style-1, .btn-style-2 {
  white-space: nowrap;
  color: #29aae1;
  display: inline-block;
  font-size: 16px;
  padding: 12px 24px 12px 0px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .btn-style-1, .btn-style-2 {
    font-size: 12px;
  }
}

.btn-style-2 {
  color: #fff;
}

.view-all {
  text-align: right;
}
.view-all .read-more {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #1c2373;
  transition: .6s all ease;
  -webkit-transition: .6s all ease;
  -moz-transition: .6s all ease;
  -ms-transition: .6s all ease;
  -o-transition: .6s all ease;
  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;
}
.view-all .read-more:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #1c2373;
  height: 1px;
  -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;
}
.view-all .read-more:hover {
  transition: .6s all ease;
  -webkit-transition: .6s all ease;
  -moz-transition: .6s all ease;
  -ms-transition: .6s all ease;
  -o-transition: .6s all ease;
}
.view-all .read-more:hover:before {
  right: 0px;
}

.view-all-1 .view-more-news {
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  background: #1c2373;
  padding: 10px 22px;
  border-radius: 30px;
  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.3s;
  transition-duration: 0.3s;
}
.view-all-1 .view-more-news:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2232a5;
  -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.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 30px;
}
.view-all-1 .view-more-news:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: .3s;
  transition-duration: 0.3s;
}

.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #222c9d;
  -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: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-sweep-to-right:active,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:hover {
  color: #fff;
}

.hvr-sweep-to-right:active:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.collapse:not(.show) {
  display: block;
}


.buttom-action a {
  width: 130px;
  height: 42px;
  color: #1c2373;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 39px;
  border: 1px solid #1c2373;
  display: inline-block;
  position: relative;
}
.buttom-action a .icon-detail {
  position: absolute;
  background: url("../images/icon_cart_product.png") no-repeat center;
  width: 20px;
  height: 25px;
  right: 5px;
  top: 5px;
}
.buttom-action a:hover .icon-detail {
  background: url("../images/icon_cart_product_hover.png") no-repeat center;
}
.buttom-action .buy-detail {
  background: #1c2373;
  color: #fff;
}

.slider-banner-index {
  width: 100%;
  float: left;
}

.banner-homepage {
  position: relative;
  z-index: 98;
  text-align: left;
}
@media (max-width: 991px) {
  .banner-homepage {
    background-size: 100%;
  }
}
@media (max-width: 767px) {
  .banner-homepage {
    background-size: cover;
  }
}

.banner-homepage {
  height: 485px;
}
@media (max-width: 1300px) {
  .banner-homepage {
    height: initial;
  }
  .banner-homepage img {
    min-width: 100%;
  }
}

@media (min-width: 1400px) {
  .banner-homepage {
    height: 690px;
  }
  .banner-homepage img {
    height: 100%;
    object-fit: cover;
  }
}
.cont-banner-top {
  color: #4a4a4a;
  padding-top: 15.3rem;
}
@media (max-width: 991px) {
  .cont-banner-top {
    padding-top: 10.3rem;
  }
}
.cont-banner-top .title {
  margin: 0;
  font-size: inherit;
  position: relative;
  z-index: 9;
}
.cont-banner-top .title span.text-top {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 4.8em;
  margin: auto;
  font-weight: 400;
}
@media (min-width: 1440px) {
  .cont-banner-top .title span.text-top {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .cont-banner-top .title span.text-top {
    font-size: 23px;
    line-height: 30px;
  }
}
.cont-banner-top .desc {
  margin-bottom: 3.5rem;
}
.cont-banner-top .desc b {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 4.8em;
  color: #14a9e3;
  font-weight: 800;
  line-height: 1.2;
}
@media (min-width: 1440px) {
  .cont-banner-top .desc b {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .cont-banner-top .desc b {
    font-size: 23px;
    line-height: 30px;
  }
}
@media (min-width: 1440px) {
  .cont-banner-top {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  .cont-banner-top {
    font-size: 4.3px !important;
    padding-top: 14em;
  }
}
@media (max-width: 767px) {
  .cont-banner-top {
    margin-top: -190px;
    position: relative;
    z-index: 99;
    padding-top: 9em;
    margin-bottom: 70px;
  }
}
.cont-banner-top .line-standard {
  display: block;
  height: 3px;
  width: 160px;
  background: #29aae1;
}

.custom-dots {
  position: absolute;
  top: 64%;
  max-width: 940px;
  left: 0px;
  right: 0px;
  margin: auto;
  list-style: none;
}
.custom-dots li {
  display: inline-block;
  margin: 0px 4px;
}
.custom-dots li button {
  outline: none;
  text-indent: -8000px;
  border: 1px solid #29aae1;
  width: 13px;
  height: 13px;
  background: #fff;
}
.custom-dots li.slick-active button {
  background: #29aae1;
}
.custom-dots li:first-child {
  margin-left: 0px;
}
@media (max-width: 991px) {
  .custom-dots {
    max-width: 640px;
  }
}
@media (max-width: 767px) {
  .custom-dots {
    max-width: initial;
    padding: 0px 30px;
  }
}
@media (max-width: 767px) {
  .custom-dots {
    position: relative;
    top: -30px;
  }
}

#banner-index {
  width: 100%;
  float: left;
  position: relative;
}

.slick-dots {
  width: 100px;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
}
@media all and (max-width: 767px) {
  .slick-dots {
    bottom: 0px;
  }
}
.slick-dots li {
  width: 5px;
}

.slick-prev:before,
.slick-next::before {
  position: absolute;
  z-index: 9;
  top: 13px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: border-color 0.2s ease;
  -moz-transition: border-color 0.2s ease;
  -ms-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
@media all and (max-width: 767px) {
  .slick-prev:before,
  .slick-next::before {
    display: none;
  }
}

.slick-prev:before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.slick-next {
  right: 85px;
}

.slick-prev {
  left: 85px;
}

.slick-dots li {
  margin: 0 10px;
}

.slick-dots li button:before {
  font-size: 14px;
  color: #b4b9be;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  color: #fff;
  opacity: 1;
}

.banner-inpage {
  position: relative;
  min-height: 325px;
}
.banner-inpage .img-banner {
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .banner-inpage .img-banner {
    height: 325px;
  }
}
.banner-inpage .img-banner img {
  min-width: 100%;
}
@media (max-width: 767px) {
  .banner-inpage .img-banner img {
    object-fit: cover;
    object-position: center;
    height: 100%;
  }
}
.banner-inpage .ctn-banner {
  position: absolute;
  top: 0px;
  bottom: 0px;
}
.banner-inpage .ctn-banner h2 {
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 51px;
  letter-spacing: -0.5px;
  margin: 5rem 0px 4rem 0;
}
@media (max-width: 992px) {
  .banner-inpage .ctn-banner h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .banner-inpage .ctn-banner h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
.banner-inpage .ctn-banner p {
  color: #ffffff;
  font-size: 36px;
  font-weight: 300;
  line-height: 42px;
  letter-spacing: -0.5px;
}
@media (max-width: 992px) {
  .banner-inpage .ctn-banner p {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .banner-inpage .ctn-banner p {
    font-size: 18px;
    line-height: 22px;
  }
}
.banner-inpage .ctn-banner .circle-number span {
  color: #ffffff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 5.5rem;
  font-weight: 300;
  padding: 19px 13px 18px 13px;
  display: inline-block;
  text-align: center;
  border: 9px solid #ffdb00;
}
@media (max-width: 992px) {
  .banner-inpage .ctn-banner .circle-number span {
    padding: 17px 15px 16px 13px;
    border: 5px solid #ffdb00;
    font-size: 33px;
  }
}

/*!
  menu mobile
*/
.menu-bar-mobile {
  position: fixed;
  height: 100%;
  width: 300px;
  background: #fff;
  z-index: 9999999;
  box-shadow: 1px 0px 1px #ccc;
  overflow-y: scroll;
  display: none;
}

.logo-menu {
  float: left;
  width: 100%;
  text-align: center;
}
.logo-menu img {
  width: 80px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.menu-bar-lv-1 {
  float: left;
  width: 100%;
  position: relative;
}
.menu-bar-lv-1 a {
  float: left;
  width: 100%;
  height: 40px;
  line-height: 30px;
  background: #fff;
  margin-bottom: 1px;
  padding: 5px 15px;
  font-size: 14px;
  border-top: 1px solid #ebebeb;
  color: #3e3e3e;
}
.menu-bar-lv-1 a:hover {
  box-shadow: 0px 0px 2px #443333;
}
.menu-bar-lv-1 span {
  position: absolute;
  right: 10px;
  top: 4px;
  width: 30px;
  height: 30px;
  font-size: 17px;
  text-align: center;
  padding-top: 9px;
  cursor: pointer;
  transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
}

.menu-bar-lv-2, .menu-bar-lv-3 {
  position: relative;
  float: left;
  width: 100%;
  display: none;
}

.menu-bar-lv-2 a {
  position: relative;
  float: left;
  width: 100%;
  padding: 5px 15px;
}
.menu-bar-lv-2 i:last-child {
  margin-right: 7px;
}

.menu-bar-lv-3 a {
  position: relative;
  float: left;
  width: 100%;
  padding: 5px 33px;
}

.rotate-menu {
  transform: rotate(180deg);
  top: 10px !important;
}

.menu-btn-show {
  position: absolute;
  width: 28px;
  height: 27px;
  float: left;
  margin-right: 15px;
  cursor: pointer;
  right: 15px;
  top: 130px;
  z-index: 9999;
}
.menu-btn-show .border-style {
  width: 100%;
  height: 4px;
  background: #40322B;
  float: left;
  margin-bottom: 5px;
  border-radius: 10px;
  transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
}

.fixed-box .menu-btn-show .border-style {
  /*background: #fff;*/
  background: #38a7e0;
}

.box-login-logout {
  float: left;
  width: 100%;
  position: relative;
  background: #f9f9f9;
}

.boder-rotate {
  position: absolute;
  left: 50%;
  height: 40px;
  width: 1px;
  background: #ebebeb;
  transform: rotate(30deg);
}

.box-login-logout i {
  margin-right: 6px;
}
.box-login-logout .left {
  float: left;
  width: 50%;
  height: 40px;
  line-height: 40px;
  padding-left: 15px;
  font-size: 15px;
  border-top: 1px solid #ebebeb;
}

.shadow-open-menu {
  position: fixed;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.51);
  z-index: 999;
  display: none;
}

.menu-btn-show.active .border-style {
  background: #fff;
  display: none;
}
.menu-btn-show.active .border-style:first-child {
  transform: rotate(42deg);
  margin-top: 5px;
  display: block;
}
.menu-btn-show.active .border-style:last-child {
  transform: rotate(-42deg);
  margin-top: -9px;
  display: block;
}

@media screen and (min-width: 992px) {
  .menu-btn-show {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .menu-btn-show {
    display: block;
  }

  .main-menu, .hide-mobile {
    display: none;
  }

  .menu-btn-show {
    top: 80px;
    right: 1%;
  }
}
@media screen and (max-width: 360px) {
  .menu-bar-mobile {
    width: 250px;
  }
}
/*Main menu ngang*/
.main-menu > ul {
  margin: 0 auto;
  width: 100%;
  list-style: none;
  padding: 0;
  position: relative;
  box-sizing: border-box;
  text-align: left;
}
.main-menu > ul:before {
  content: "";
  display: table;
}
.main-menu > ul:after {
  content: "";
  display: table;
  clear: both;
}
.main-menu > ul > li {
  float: initial;
  padding: 0;
  margin: 0;
  display: inline-block;
  position: relative;
}
.main-menu > ul > li a {
  text-decoration: none;
  padding: 15px 12px 15px 12px;
  display: block;
  font-size: 14px;
  position: relative;
  color: #1c2373;
  transition: .6s all ease;
  -webkit-transition: .6s all ease;
  -moz-transition: .6s all ease;
  -ms-transition: .6s all ease;
  -o-transition: .6s all ease;
  height: 44px;
  text-transform: uppercase;
  font-family: 'Roboto';
  font-weight: 600;
}
.main-menu > ul > li:first-child a {
  margin-left: 0px;
}
.main-menu > ul > li:hover > a, .main-menu > ul > li.active > a {
  color: #262f9c;
}
.main-menu > ul > li:last-child a {
  margin-right: 0px;
}
.main-menu > ul > li:hover > ul {
  display: block;
  transition: .6s all ease;
  -webkit-transition: .6s all ease;
  -moz-transition: .6s all ease;
  -ms-transition: .6s all ease;
  -o-transition: .6s all ease;
}
.main-menu > ul > li > ul {
  display: none;
  width: 200px;
  background-color: #fff;
  padding: 0px;
  position: absolute;
  z-index: 99;
  left: 0px;
  margin: 0px;
  list-style: none;
  box-sizing: border-box;
  text-align: left;
  box-shadow: 0px 2px 3px rgba(154, 142, 142, 0.48);
  transition: .6s all ease;
  -webkit-transition: .6s all ease;
  -moz-transition: .6s all ease;
  -ms-transition: .6s all ease;
  -o-transition: .6s all ease;
}
.main-menu > ul > li > ul:before {
  content: "";
  display: table;
}
.main-menu > ul > li > ul:after {
  content: "";
  display: table;
  clear: both;
}
.main-menu > ul > li > ul > li {
  margin: 0;
  padding-bottom: 0;
  list-style: none;
  width: 100%;
  float: left;
  display: block;
  position: relative;
}
.main-menu > ul > li > ul > li a {
  padding: 15px 15px 8px 15px;
  width: 100%;
  display: block;
  border-bottom: 1px solid rgba(204, 204, 204, 0.63);
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  margin: 0px;
}
.main-menu > ul > li > ul > li > ul {
  padding: 0;
  margin: 0px;
  list-style: none;
  box-sizing: border-box;
  position: absolute;
  left: 130%;
  min-width: 210px;
  background-color: #fff;
  top: 0px;
  box-shadow: 0px 0px 5px #ccc;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  visibility: hidden;
  opacity: 0;
}
.main-menu > ul > li > ul > li:hover > a {
  background: #dee2e6;
}
.main-menu > ul > li > ul > li:hover > ul {
  left: 100%;
  visibility: visible;
  opacity: 1;
}
.main-menu > ul > li > ul > li > ul:before {
  content: "";
  display: table;
}
.main-menu > ul > li > ul > li > ul:after {
  content: "";
  display: table;
  clear: both;
}
.main-menu > ul > li > ul > li > ul > li {
  float: left;
  width: 100%;
  padding: 0px 0;
  margin: 0;
  border-bottom: 1px solid #ebebeb;
}
.main-menu > ul > li > ul > li .fa-caret-right {
  position: absolute;
  right: 11px;
  top: 12px;
  color: #fff;
}
.main-menu > ul > li > ul > li > ul > li a {
  border: 0;
}
.main-menu > ul > li > ul > li > ul > li a:hover {
  background: #dee2e6;
}
.main-menu > ul > li > ul.normal-sub {
  width: 200px;
  left: auto;
  padding: 5px 20px 9px 20px;
  background: rgba(8, 132, 57, 0.78);
  border-top: 5px solid #178544;
}
.main-menu > ul > li > ul.normal-sub > li {
  width: 100%;
}
.main-menu > ul > li > ul.normal-sub > li a {
  border: 0;
  padding: 1em 0;
  border: 0;
  padding: 9px 0px;
  border-bottom: 1px solid rgba(226, 222, 222, 0.31);
  color: #dad1d1;
}
.main-menu > ul > li > ul.normal-sub > li a:hover {
  color: #fff;
}
.main-menu > ul > li > ul.normal-sub > li:last-child a {
  border-bottom: none;
}
.main-menu > ul > li:last-child > ul {
  right: 0px;
  left: initial;
}

.normal-sub li a:before {
  content: "•";
  line-height: 0;
  margin-right: 10px;
  font-size: 19px;
  position: static;
  color: #27AE61;
  margin-top: 9px;
  float: left;
}

.main-menu > ul > li:hover > a:before, .main-menu > ul > li:hover > a:after {
  width: 50%;
  border-radius: 0;
  -moz-transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-duration: 0.7s;
  display: none;
}
.main-menu > ul > li > a:after {
  content: "";
  height: 1px;
  position: absolute;
  right: 20px;
  width: 0;
  top: 75%;
  margin-top: 0px;
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  background: #ccc;
  display: none;
}
.main-menu > ul > li > a:before {
  content: "";
  height: 1px;
  position: absolute;
  left: 20px;
  width: 0;
  top: 75%;
  margin-top: 0px;
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  display: none;
  background: #ccc;
}
.main-menu > ul > li.active > a:before, .main-menu > ul > li.active > a:after {
  width: 50%;
}

#header, .header-top {
  width: 100%;
  float: left;
}

.header-top {
  background: url("../images/bg_hd.jpg") no-repeat center center;
  height: 125px;
  border-bottom: 1px solid #1c2373;
}

.logo-ht {
  margin: 0;
  width: 180px;
  margin-top: 20px;
  float: left;
}
@media (max-width: 1200px) {
  .logo-ht {
    width: 100px;
  }
}
.logo-ht .logo-ht-content {
  height: 88px !important;
  display: block;
}
.logo-ht .logo-ht-content .img-center {
  right: inherit;
  width: inherit !important;
}

.narbar-main {
  float: right;
}

.languaes-register {
  text-align: right;
  margin-top: 20px;
}
.languaes-register .languaes-hd, .languaes-register .register-hd {
  display: inline-block;
}
@media (max-width: 992px) {
  .languaes-register {
    margin-right: 150px;
  }
}

.register-hd ul li a {
  color: #1c2373;
  font-size: 14px;
  font-weight: 500;
}
.register-hd ul li a:hover {
  color: #262f9c;
}

.make-calendar {
  float: right;
  text-align: center;
  height: 34px;
  display: block;
  margin-top: 10px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .make-calendar {
    margin-left: 10px;
  }
}
@media (max-width: 992px) {
  .make-calendar {
    position: absolute;
    top: 0px;
    right: 10px;
  }
}
.make-calendar a {
  background-color: #1c2373;
  color: #fff;
  text-transform: uppercase;
  padding: 6px 35px;
  border-radius: 35px;
  box-shadow: 1px 1px 8px 3px #e0e0e0;
  display: block;
  text-shadow: 2px 4px 4px #0c1246;
  font-weight: 600;
}
.make-calendar a:hover {
  background: #111837;
}
@media (max-width: 1200px) {
  .make-calendar a {
    padding: 6px 15px;
  }
}

#nav {
  margin-top: 15px;
}

#banner-homepage {
  position: relative;
}
#banner-homepage .owl-nav {
  margin: 0;
}
#banner-homepage .owl-nav button {
  position: absolute;
  top: 40%;
  font-size: 40px;
  opacity: .5;
}
#banner-homepage .owl-nav button:hover {
  background: transparent;
  color: #000;
  opacity: 1;
}
#banner-homepage .owl-nav button:focus {
  outline: none;
}
#banner-homepage .owl-nav button.owl-prev {
  left: 10px;
}
#banner-homepage .owl-nav button.owl-next {
  right: 10px;
}
#banner-homepage .owl-dots {
  position: absolute;
  bottom: 30px;
  margin: auto;
  left: 0;
  right: 0;
}

#main, .layout-main {
  width: 100%;
  float: left;
}

.title-m {
  width: 100%;
  float: left;
  position: relative;
  z-index: 9;
}
.title-m h2 {
  color: #1c2373;
  font-size: 48px;
  font-family: 'iciel';
  margin-bottom: 25px;
  text-align: right;
}
@media (max-width: 992px) {
  .title-m h2 {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .title-m h2 {
    font-size: 40px;
  }
}
.title-m .bg-tt {
  background: url("../images/bg_tt.png");
  height: 8px;
  width: 100%;
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

.desc {
  color: #333333;
  font-size: 14px;
  font-family: 'Roboto';
}

.introduce-index {
  padding: 70px 0px 0px 0px;
  background: url("../images/bg_introduce.jpg");
  -webkit-background-size: cover;
  background-size: cover;
}
@media (max-width: 992px) {
  .introduce-index {
    padding: 50px 0px 0px 0px;
  }
}
@media (max-width: 767px) {
  .introduce-index {
    padding: 30px 0px 0px 0px;
  }
}

.box-img-intro {
  height: 520px;
}
@media (max-width: 767px) {
  .box-img-intro {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .box-content-intro {
    margin-bottom: 10px;
  }
}

.desc-intro {
  text-align: right;
  line-height: 36px;
}
@media (max-width: 992px) {
  .desc-intro {
    line-height: 24px;
  }
}

.make-calendar-index {
  padding: 0;
  background: url("../images/bg_dl.jpg") center;
  -webkit-background-size: cover;
  background-size: cover;
  height: 680px;
}

.content-mci {
  color: #fff;
  padding-top: 66px;
}
@media (max-width: 992px) {
  .content-mci {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .content-mci {
    padding-top: 30px;
  }
}
.content-mci .title-m h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 51px;
  text-align: left;
}
@media (max-width: 992px) {
  .content-mci .title-m h2 {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .content-mci .title-m h2 {
    margin-bottom: 30px;
  }
}

.time-work {
  width: 100%;
  float: left;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .time-work {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .time-work {
    margin-bottom: 30px;
  }
}
.time-work table tr {
  width: 100%;
  float: left;
}
.time-work table tr td:nth-child(1) {
  width: 56%;
  float: left;
  font-size: 18px;
  font-weight: 600;
}
.time-work table tr td:nth-child(2) {
  width: 20%;
  float: left;
}
.time-work table tr td:nth-child(3) {
  width: 12%;
  float: left;
}
.time-work table tr td:nth-child(4) {
  width: 12%;
  float: left;
}
.time-work table tr:nth-child(2) td:nth-child(1) {
  font-size: 14px;
  font-weight: 400;
}

.content-register {
  width: 100%;
  float: left;
}
.content-register .form-group {
  margin-bottom: 20px;
  text-align: left;
}
.content-register .form-group input {
  width: 100%;
  height: 42px;
  border: none;
  outline: 0;
  padding: 0 13px;
  font-size: 14px;
  border-radius: 3px;
  color: #000;
  font-style: italic;
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 767px) {
  .content-register .form-group input {
    background: #fff;
  }
}
.content-register .form-group textarea {
  width: 100%;
  border: none;
  outline: 0;
  padding: 12px 13px;
  font-size: 14px;
  color: #000;
  font-style: italic;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.5);
  min-height: 135px;
}
@media (max-width: 767px) {
  .content-register .form-group textarea {
    background: #fff;
  }
}
.content-register .form-group input.button {
  width: 116px;
  background: #fbaf5d;
  text-align: center;
  text-transform: uppercase;
  font-style: inherit;
  font-weight: 500;
  cursor: pointer;
}
.content-register .form-group input.button:hover {
  background: #d79256;
}

.content-register .form-group input::placeholder,
.content-register .form-group textarea::placeholder {
  color: #000;
  opacity: 1;
}

.content-register .form-group input:-ms-input-placeholder,
.content-register .form-group textarea:-ms-input-placeholder {
  color: #000;
}

.content-register .form-group input::-webkit-input-placeholder,
.content-register .form-group textarea::-webkit-input-placeholder {
  color: #000;
}

.content-register .form-group input::-moz-placeholder,
.content-register .form-group textarea::-moz-placeholder {
  color: #000;
}

.product-index {
  padding: 0;
  background: url("../images/bg_sp.jpg") center;
  -webkit-background-size: cover;
  background-size: cover;
  max-height: 660px;
}

.title-pdi {
  padding-top: 85px;
}
@media (max-width: 992px) {
  .title-pdi {
    padding-top: 65px;
  }
}
@media (max-width: 767px) {
  .title-pdi {
    padding-top: 45px;
  }
}
.title-pdi h2 {
  width: 300px;
  text-align: center;
  margin: auto;
  background: #fff;
  z-index: 9;
  position: relative;
}
@media (max-width: 992px) {
  .title-pdi h2 {
    width: 260px;
  }
}
@media (max-width: 767px) {
  .title-pdi h2 {
    width: 220px;
  }
}

.content-pdi {
  margin: 20px 0px 0px 0px;
}

.menu-pdi {
  margin: auto;
  border: none;
  text-align: center;
  display: block;
}
.menu-pdi .nav-item {
  position: relative;
  display: inline-block;
}
.menu-pdi .nav-item:before {
  content: '/';
  font-size: 17px;
  padding: 1px 2px;
  color: #6d6d6d;
  position: absolute;
  left: -8px;
}
.menu-pdi .nav-item .nav-link {
  border: none;
  padding: 0 8px;
  color: #333333;
  font-size: 18px;
  font-weight: 300;
}
.menu-pdi .nav-item .nav-link:hover {
  color: #1c2373;
}
.menu-pdi .nav-item .nav-link.active {
  color: #1c2373;
}
.menu-pdi .nav-item:first-child:before {
  display: none;
}

@media (max-width: 1200px) {
  .tab-content-pdi {
    margin: 0 30px;
  }
}

.item-owl-pdi .box-images-pdi {
  height: 254px !important;
  margin-bottom: 25px;
}
.item-owl-pdi .box-images-pdi img {
  width: inherit !important;
}
@media (max-width: 575px) {
  .item-owl-pdi .box-images-pdi {
    width: inherit !important;
  }
}
.item-owl-pdi .info-owl-pdi {
  text-align: center;
}
.item-owl-pdi .info-owl-pdi h4 {
  margin-bottom: 15px;
}
.item-owl-pdi .info-owl-pdi h4 a {
  color: #010101;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
}
.item-owl-pdi .info-owl-pdi h4 a:hover {
  color: #1c2373;
}
.item-owl-pdi .info-owl-pdi .price-pdi {
  margin-bottom: 8px;
}
.item-owl-pdi .info-owl-pdi .product-add {
  margin-bottom: 7px;
}
.item-owl-pdi .info-owl-pdi .product-add a {
  color: #1c2373;
  font-weight: 300;
  border-bottom: 1px solid #707070;
  padding-bottom: 7px;
}

.owl-product-index .owl-nav .owl-prev {
  position: absolute;
  top: 30%;
  left: -40px;
  background: url(../images/next.png) no-repeat !important;
  font-size: 0px;
  width: 27px;
  height: 37px;
  border-radius: 0px;
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -webkit-transform: rotate(180deg);
  /* Safari */
  transform: rotate(180deg);
}
.owl-product-index .owl-nav .owl-prev span {
  display: none;
}
.owl-product-index .owl-nav .owl-next {
  position: absolute;
  top: 30%;
  right: -40px;
  background: url(../images/next.png) no-repeat !important;
  font-size: 0px;
  width: 27px;
  height: 37px;
  border-radius: 0px;
}
.owl-product-index .owl-nav .owl-next span {
  display: none;
}

.title-ni {
  padding-top: 70px;
}
@media (max-width: 992px) {
  .title-ni {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .title-ni {
    padding-top: 30px;
  }
}

.content-ni {
  width: 100%;
  float: left;
  padding: 30px 0px 60px 0px;
}
@media (max-width: 992px) {
  .content-ni {
    padding: 20px 0px 50px 0px;
  }
}
@media (max-width: 767px) {
  .content-ni {
    padding: 10px 0px 40px 0px;
  }
}

.item-new {
  width: 33.33%;
  float: left;
}
.item-new .box-images-ni {
  height: 286px;
}
.item-new .box-images-ni .triangle {
  position: absolute;
  z-index: 9;
  bottom: 0px;
  right: 0px;
  left: 0px;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 12px 12px;
  border-color: transparent transparent #fff transparent;
}
@media (max-width: 1200px) {
  .item-new .box-images-ni a img {
    object-fit: cover;
    height: 100%;
  }
}
.item-new .box-info-ni {
  height: 286px;
  background: url("../images/bg_new1.jpg");
  overflow: hidden;
  padding: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .item-new .box-info-ni {
    height: auto;
  }
}
@media (max-width: 1200px) {
  .item-new .box-info-ni {
    padding: 10px;
  }
}
.item-new .box-info-ni h5 {
  height: 60px;
  overflow: hidden;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .item-new .box-info-ni h5 {
    height: auto;
  }
}
.item-new .box-info-ni h5 a {
  color: #010101;
  line-height: 30px;
  font-size: 16px;
  font-weight: 600;
}
.item-new .box-info-ni h5 a:hover {
  color: #1c2373;
}
@media (max-width: 1200px) {
  .item-new .box-info-ni h5 a {
    line-height: 20px;
  }
}
.item-new .box-info-ni .time-user {
  margin-bottom: 15px;
}
.item-new .box-info-ni .time-user span {
  padding-right: 15px;
}
@media (max-width: 1200px) {
  .item-new .box-info-ni .time-user span {
    padding-right: 10px;
  }
}
.item-new .box-info-ni .time-user span i {
  padding-right: 5px;
}
.item-new .box-info-ni .desc-ni {
  line-height: 30px;
  color: #000;
  font-size: 14px;
  font-weight: 300;
  height: 120px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .item-new .box-info-ni .desc-ni {
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .item-new .box-info-ni .desc-ni {
    height: auto;
  }
}
.item-new .box-info-ni .desc-ni p {
  margin-bottom: 5px;
}
.item-new .box-info-ni .view-all {
  text-align: left;
}
.item-new .box-info-ni .view-all .read-more {
  color: #1c2373;
  font-weight: 600;
  font-style: italic;
}
@media (max-width: 767px) {
  .item-new {
    width: 100%;
  }
}

.item-new2 .box-images-ni {
  height: 286px;
}
.item-new2 .box-images-ni .triangle {
  bottom: inherit;
  top: 0;
  border-width: 12px 12px 0 12px;
  border-color: #fff transparent transparent transparent;
}
.item-new2 .box-images-ni:first-child {
  display: none;
}
@media (max-width: 767px) {
  .item-new2 .box-images-ni:first-child {
    display: block;
  }
}
.item-new2 .box-images-ni:last-child {
  display: block;
}
@media (max-width: 767px) {
  .item-new2 .box-images-ni:last-child {
    display: none;
  }
}
.item-new2 .box-info-ni {
  background: url("../images/bg_new2.jpg");
}
.item-new2 .box-info-ni h5 a {
  color: #fff;
}
.item-new2 .box-info-ni h5 a:hover {
  color: #ccc;
}
.item-new2 .box-info-ni .time-user {
  color: #fff;
}
.item-new2 .box-info-ni .desc-ni {
  color: #fff;
}
.item-new2 .box-info-ni .view-all .read-more {
  color: #fff;
}
.item-new2 .box-info-ni .view-all .read-more:before {
  background: #fff;
}

footer {
  width: 100%;
  float: left;
  background: url("../images/bg_new2.jpg");
}

.layout-footer {
  width: 100%;
  float: left;
}

.contact-ft {
  padding: 90px 0px 40px 0px;
}
@media (max-width: 992px) {
  .contact-ft {
    padding: 70px 0px 40px 0px;
  }
}
@media (max-width: 767px) {
  .contact-ft {
    padding: 50px 0px 40px 0px;
  }
}

.title-ft h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .title-ft h3 {
    margin-bottom: 10px;
  }
}

.content-ft {
  color: #fff;
}
.content-ft p {
  margin-bottom: 5px;
}

@media (max-width: 992px) {
  .company-information {
    margin-bottom: 20px;
  }
}

.content-memu-ft {
  margin-bottom: 20px;
}
.content-memu-ft ul li {
  margin-bottom: 10px;
}
.content-memu-ft ul li a {
  color: #fff;
}
.content-memu-ft ul li a:hover {
  color: #ccc;
}

.newsletters-text {
  color: #fff;
  font-style: italic;
  line-height: 24px;
  font-size: 12px;
}

.content-newsletters form .form-group {
  margin-bottom: 10px;
}
.content-newsletters form .form-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  color: #fff;
  border: none;
  border-radius: 5px;
}
.content-newsletters form button {
  background: #fbaf5d;
  border: none;
  border-radius: 5px;
  padding: 5px 25px 5px 25px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
}
.content-newsletters form button:hover {
  background: #e29e53;
}

.menu-social-copy-ft {
  color: #fff;
}

.logo-ft {
  position: relative;
  z-index: 9;
}

.line-ft {
  height: 2px;
  width: 100%;
  background: #fff;
}

.content-logo-ft {
  height: 80px;
  overflow: inherit;
  width: 90px;
  margin: auto;
  background: #1c2373;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
}
@media (max-width: 992px) {
  .content-logo-ft {
    width: 80px;
  }
}

.content-mscf {
  height: 75px;
  padding-top: 30px;
}
@media (max-width: 992px) {
  .content-mscf {
    height: auto;
    padding-top: 60px;
    padding-bottom: 10px;
  }
}

.menufooter-ft ul li {
  padding-right: 8px;
  display: inline-block;
}
.menufooter-ft ul li a {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.menufooter-ft ul li a:hover {
  color: #ccc;
}

.social-ft {
  padding-left: 40px;
}
@media (max-width: 992px) {
  .social-ft {
    padding-left: 0px;
  }
}
.social-ft ul li {
  padding: 0 5px;
  display: inline-block;
}
.social-ft ul li a {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.social-ft ul li a:hover {
  color: #ccc;
}

.copyright {
  text-align: right;
}
@media (max-width: 575px) {
  .copyright {
    text-align: left;
  }
}

@media screen and (max-width: 1200px) {
  .main-menu > ul > li a {
    padding: 15px 5px 15px 5px;
  }
}
@media (max-width: 565px) {
  .row12 .col-12 {
    margin-bottom: 10px;
  }
}
.products-in-content {
  width: 100%;
  float: left;
}

.title-pro-list,
.content-pro-list {
  width: 100%;
  float: left;
}

.title-pro-list {
  padding-top: 30px;
}
.title-pro-list .title-m h2 {
  text-align: center;
}

.content-pro-list .row {
  padding-bottom: 30px;
}

.item-product-list {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .item-product-list .box-images-pdi {
    height: auto !important;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .item-product-list .box-images-pdi a img {
    width: 100% !important;
  }
}

.menu-category {
  width: 100%;
  float: left;
}
.menu-category ul {
  text-align: center;
}
.menu-category ul li {
  position: relative;
  display: inline-block;
}
.menu-category ul li:before {
  content: '/';
  font-size: 17px;
  padding: 1px 2px;
  color: #6d6d6d;
  position: absolute;
  left: -8px;
}
.menu-category ul li a {
  border: none;
  padding: 0 8px;
  color: #333333;
  font-size: 18px;
  font-weight: 300;
}
.menu-category ul li a:hover {
  color: #1c2373;
}
.menu-category ul li:first-child:before {
  display: none;
}
.menu-category ul li.active a {
  color: #1c2373;
}

.products-in-content {
  width: 100%;
  float: left;
}

.title-pro-list,
.content-pro-list {
  width: 100%;
  float: left;
}

.title-pro-list {
  padding-top: 30px;
}
.title-pro-list .title-m h2 {
  text-align: center;
}

.content-pro-list .row {
  padding-bottom: 30px;
}

.item-product-list {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .item-product-list .box-images-pdi {
    height: auto !important;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .item-product-list .box-images-pdi a img {
    width: 100% !important;
  }
}

.menu-category {
  width: 100%;
  float: left;
}
.menu-category ul {
  text-align: center;
}
.menu-category ul li {
  position: relative;
  display: inline-block;
}
.menu-category ul li:before {
  content: '/';
  font-size: 17px;
  padding: 1px 2px;
  color: #6d6d6d;
  position: absolute;
  left: -8px;
}
.menu-category ul li a {
  border: none;
  padding: 0 8px;
  color: #333333;
  font-size: 18px;
  font-weight: 300;
}
.menu-category ul li a:hover {
  color: #1c2373;
}
.menu-category ul li:first-child:before {
  display: none;
}
.menu-category ul li.active a {
  color: #1c2373;
}

.content-detail-product {
  padding: 55px 0px 50px 0px;
}

#Zoom-1 .mz-expand div a {
  text-indent: 9000px !important;
  color: #000 !important;
  opacity: 0;
}

html body .mz-expand div:last-child a, html body .mz-expand div:first-child a {
  text-indent: 9000px !important;
  color: #000 !important;
  opacity: 0;
}

.mz-expand a {
  text-indent: 9000px !important;
  color: #000 !important;
  opacity: 0;
}

.mz-zoom-window div:last-child, .mz-zoom-window div:first-child {
  text-indent: 9000px !important;
  color: #000 !important;
  opacity: 0;
}
.mz-zoom-window a {
  text-indent: 9000px !important;
  color: #000 !important;
  opacity: 0;
}

.mz-figure span {
  text-indent: 9000px !important;
  color: #000 !important;
  opacity: 0;
}
.mz-figure div:first-child, .mz-figure div:last-child {
  text-indent: 9000px !important;
  color: #000 !important;
  opacity: 0;
}
.mz-figure span:first-child {
  text-indent: 9000px !important;
  color: #000 !important;
  opacity: 0;
}

.mz-zoom-window span, .mz-active span {
  text-indent: 9000px !important;
  color: #000 !important;
  opacity: 0;
}

.big-img {
  text-align: center;
  max-height: 500px;
  overflow: hidden;
  text-align: center;
  width: 100%;
  margin-top: 0px;
  position: relative;
  border: 1px solid #ebebeb;
  padding: 10px;
}

.thumb-img {
  text-align: center;
  float: left;
  width: 100%;
}
.thumb-img a {
  border: 1px solid #ebebeb;
  padding: 3px;
  height: 50px;
  overflow: hidden;
}

a[data-zoom-id] img, .mz-thumb img {
  border: 0;
  box-shadow: none;
  box-sizing: border-box;
  width: initial;
  height: 100%;
}

.selectors {
  float: left;
  width: 100%;
  margin-top: 30px;
}

.img-detail-product .owl-carousel .owl-nav.disabled {
  display: block;
}

#owl-detail {
  opacity: 1;
  display: block;
  width: 400px;
  margin: 30px auto;
  display: inline-block !important;
  float: initial;
}
#owl-detail .owl-item a {
  width: 71px;
  height: 71px;
  border: 1px solid #ebebeb;
  text-align: center;
}
#owl-detail .owl-prev {
  position: absolute;
  left: -17px;
  bottom: 30px;
  font-size: 22px;
  color: #000;
  background: none;
  border-radius: 0px;
}
#owl-detail .owl-prev:focus {
  outline: none;
}
#owl-detail .owl-next {
  position: absolute;
  right: -17px;
  bottom: 30px;
  font-size: 22px;
  color: #000;
  background: none;
  border-radius: 0px;
}
#owl-detail .owl-next:focus {
  outline: none;
}

.mz-thumb-selected img {
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
}

#owl-detail .owl-item .mz-thumb-selected {
  border: 1px solid #000;
}

.mz-thumb:hover:not(.mz-thumb-selected) img {
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
}

.no-cssfilters-magic .mz-thumb:hover:not(.mz-thumb-selected) img {
  opacity: 1;
  filter: alpha(opacity=1);
}

.detail-detail-product {
  text-align: center;
}
@media (max-width: 767px) {
  .detail-detail-product {
    text-align: left;
    margin-bottom: 10px;
  }
}

.title-product-detail {
  color: #000000;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.code-product {
  margin-bottom: 20px;
  color: #000;
  font-size: 14px;
}

.price-detail {
  margin-bottom: 15px;
}
.price-detail .price-buy {
  color: #e1001a;
  font-size: 24px;
}
.price-detail .price-buy .title-buy {
  color: #000;
  font-size: 14px;
}

.product-info-quantity {
  margin-bottom: 15px;
}
.product-info-quantity label {
  display: inline-block;
  padding-right: 10px;
  color: #333333;
  font-size: 14px;
}
.product-info-quantity .box-qty {
  display: inline-block;
}

.buttom-action {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .buttom-action a {
    padding-left: 10px;
  }
}
.buttom-action .buy-detail {
  margin-right: 10px;
}
@media (max-width: 360px) {
  .buttom-action .buy-detail {
    margin-right: 5px;
  }
}
.buttom-action .add-detail {
  padding-right: 30px;
}

.support-detail ul {
  padding: 0;
  text-align: center;
}
.support-detail ul li {
  height: 42px;
  background: #ebebeb;
  line-height: 41px;
  width: 275px;
  text-align: center;
  margin: auto;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .support-detail ul li {
    text-align: left;
    padding-left: 10px;
    margin: 0px 0px 10px 0px;
  }
}
.support-detail ul li a {
  color: #333;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}
.support-detail ul .bg-sp:before {
  background: #d7d7d7;
}

.title-pd-content {
  color: #333333;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-detail-relation,
.commemt-pdc,
.relation-products {
  width: 100%;
  float: left;
}

.title-rp-detail {
  width: 100%;
  float: left;
  padding: 0;
  margin-bottom: 20px;
}
.title-rp-detail .title-m h2 {
  font-size: 30px;
}
.title-rp-detail .title-m .bg-tt {
  top: 22px;
}

.content-rp-detail {
  width: 100%;
  float: left;
  padding: 0px 0px 50px 0px;
}

.news-in-content {
  padding: 35px 0px 0px 0px;
}

.item-new-list {
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .item-new-list {
    margin-bottom: 20px;
  }
}
.item-new-list:hover {
  box-shadow: 0px 0px 10px 10px rgba(128, 128, 128, 0.3);
  transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
}
.item-new-list .box-images-nl {
  height: 235px;
}
@media (max-width: 1200px) {
  .item-new-list .box-images-nl a img {
    object-fit: cover;
    height: 100%;
  }
}
.item-new-list .box-info-nl {
  height: 265px;
  overflow: hidden;
  padding: 18px 20px 20px 30px;
}
@media (max-width: 992px) {
  .item-new-list .box-info-nl {
    padding: 15px 20px 20px 20px;
  }
}
@media (max-width: 767px) {
  .item-new-list .box-info-nl {
    height: auto;
    padding: 10px;
  }
}
.item-new-list .box-info-nl h5 {
  font-size: 14px;
  margin-bottom: 10px;
  height: 38px;
  overflow: hidden;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .item-new-list .box-info-nl h5 {
    height: auto;
  }
}
.item-new-list .box-info-nl h5 a {
  color: #1c2373;
  text-transform: uppercase;
  font-weight: 600;
}
.item-new-list .box-info-nl h5 a:hover {
  color: #222;
}
.item-new-list .box-info-nl .time-user {
  margin-bottom: 15px;
  color: #888888;
  font-size: 12px;
}
.item-new-list .box-info-nl .time-user span {
  padding-right: 10px;
}
.item-new-list .box-info-nl .time-user span i {
  padding-right: 5px;
}
.item-new-list .box-info-nl .desc-nl {
  line-height: 21px;
  height: 65px;
  overflow: hidden;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .item-new-list .box-info-nl .desc-nl {
    height: auto;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .item-new-list .box-info-nl .view-all-1 a {
    padding: 8px 15px;
  }
}

.item-new-list2 .box-images-nl:first-child {
  display: none;
}
@media (max-width: 767px) {
  .item-new-list2 .box-images-nl:first-child {
    display: block;
  }
}
.item-new-list2 .box-images-nl:last-child {
  display: block;
}
@media (max-width: 767px) {
  .item-new-list2 .box-images-nl:last-child {
    display: none;
  }
}

.page-pagination {
  text-align: center;
  padding-bottom: 70px;
}
@media (max-width: 992px) {
  .page-pagination {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .page-pagination {
    padding-bottom: 30px;
  }
}
.page-pagination .pagination {
  display: inline-flex;
}
.page-pagination .pagination li {
  padding: 0 3px;
}
.page-pagination .pagination li a {
  color: #000;
  border: 1px solid #1c2373;
  padding: 10px 15px;
}
@media (max-width: 767px) {
  .page-pagination .pagination li a {
    padding: 5px 8px;
  }
}
.page-pagination .pagination li:hover a {
  background-color: #1c2373;
  border-color: #1c2373;
  color: #fff;
}
.page-pagination .pagination li.active a {
  background-color: #1c2373;
  border-color: #1c2373;
}

.title-detail {
  font-size: 18px;
  color: #333333;
  text-transform: uppercase;
}

.time-detail-new {
  margin-bottom: 15px;
  color: #888888;
  font-size: 12px;
}
.time-detail-new span {
  padding-right: 10px;
}
.time-detail-new span i {
  padding-right: 5px;
}

.commemt-pdc,
.relation-news {
  width: 100%;
  float: left;
}

.title-rn-detail {
  width: 100%;
  float: left;
  padding: 0;
  margin-bottom: 20px;
}
.title-rn-detail .title-m h2 {
  font-size: 30px;
}
.title-rn-detail .title-m .bg-tt {
  top: 22px;
}

.content-rn-detail {
  width: 100%;
  float: left;
}
.content-rn-detail .owl-about-re {
  position: relative;
}
.content-rn-detail .owl-about-re .owl-nav {
  margin: 0;
}
.content-rn-detail .owl-about-re .owl-nav button {
  position: absolute;
  top: 25%;
  opacity: .5;
}
.content-rn-detail .owl-about-re .owl-nav button:hover {
  background: transparent;
  color: #000;
  opacity: 1;
}
.content-rn-detail .owl-about-re .owl-nav button:focus {
  outline: none;
}
.content-rn-detail .owl-about-re .owl-nav button span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  font-size: 0px;
}
.content-rn-detail .owl-about-re .owl-nav button.owl-prev {
  left: -20px;
}
@media (max-width: 1200px) {
  .content-rn-detail .owl-about-re .owl-nav button.owl-prev {
    left: 0px;
  }
}
.content-rn-detail .owl-about-re .owl-nav button.owl-prev span {
  transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.content-rn-detail .owl-about-re .owl-nav button.owl-next {
  right: -20px;
}
@media (max-width: 1200px) {
  .content-rn-detail .owl-about-re .owl-nav button.owl-next {
    right: 0px;
  }
}
.content-rn-detail .owl-about-re .owl-nav button.owl-next span {
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.content-rn-detail .owl-about-re .owl-dots {
  position: absolute;
  bottom: 30px;
  margin: auto;
  left: 0;
  right: 0;
}

.item-about-re {
  margin-top: 20px;
}

.banner-in,
.main-in {
  width: 100%;
  float: left;
}

.breadcrumbs {
  background: #f9f9f9;
}

.content-detail-about {
  margin-bottom: 20px;
}
.content-detail-about .title-m h2 {
  text-align: center;
}

.restaurant-about {
  padding: 0px 0px 60px 0px;
}

.title-ab h2 {
  text-transform: uppercase;
  font-size: 18px;
  color: #010101;
  margin-bottom: 20px;
}

.content-ab .owl-about-in {
  position: relative;
}
.content-ab .owl-about-in .owl-nav {
  margin: 0;
}
.content-ab .owl-about-in .owl-nav button {
  position: absolute;
  top: 35%;
  opacity: .5;
}
.content-ab .owl-about-in .owl-nav button:hover {
  background: transparent;
  color: #000;
  opacity: 1;
}
.content-ab .owl-about-in .owl-nav button:focus {
  outline: none;
}
.content-ab .owl-about-in .owl-nav button span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  font-size: 0px;
}
.content-ab .owl-about-in .owl-nav button.owl-prev {
  left: -20px;
}
@media (max-width: 1200px) {
  .content-ab .owl-about-in .owl-nav button.owl-prev {
    left: 0px;
  }
}
.content-ab .owl-about-in .owl-nav button.owl-prev span {
  transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.content-ab .owl-about-in .owl-nav button.owl-next {
  right: -20px;
}
@media (max-width: 1200px) {
  .content-ab .owl-about-in .owl-nav button.owl-next {
    right: 0px;
  }
}
.content-ab .owl-about-in .owl-nav button.owl-next span {
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.content-ab .owl-about-in .owl-dots {
  position: absolute;
  bottom: 30px;
  margin: auto;
  left: 0;
  right: 0;
}

.item-about-in .box-images-abi {
  height: 260px;
  margin-bottom: 20px;
}
.item-about-in .info-owl-abi h4 {
  text-align: center;
  font-size: 14px;
}
.item-about-in .info-owl-abi h4 a {
  color: #000;
  text-transform: uppercase;
}

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