@import url("https://fonts.googleapis.com/css?family=Roboto");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");

*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: none;
}

img {
  max-width: 100%;
  display: initial;
  height: auto;
  width: auto\9;
  /* ie8 */
}

a,
a:link,
a:visited {
  color: #0c55a4;
  text-decoration: none;
  -moz-transition: 0.1s all ease;
  -o-transition: 0.1s all ease;
  -webkit-transition: 0.1s all ease;
  transition: 0.1s all ease;
}

a:hover,
a:link:hover,
a:visited:hover {
  color: #145faa;
  text-decoration: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

canvas {
  cursor: pointer;
}

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

strong {
  font-weight: 700;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  font-weight: 500;
}

h1 {
  font-size: 15pt;
}

h2 {
  font-size: 14pt;
}

h3 {
  font-size: 12pt;
}

.content-detail {
  font-size: 16px;
}

.content-detail ul,
.content-detail ol {
  text-align: left;
  list-style: initial;
  padding-left: 20px;
}

.content-detail ul li,
.content-detail ol li {
  text-align: left;
  display: list-item;
}

.content-detail h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.content-detail p,
.content-detail div,
.content-detail img {
  margin: 5px 0 15px 0;
}

.content-detail img {
  margin: 5px 0;
}

.content-detail table {
  width: 100%;
  background-color: #fffdf6;
  border-collapse: collapse;
  margin: 20px auto;
}

.content-detail table tr {
  border: 1px solid #000;
  color: #000;
  background: #e2e2e2;
}

.content-detail table tr:nth-child(2n + 1) {
  background: #fff;
}

.content-detail table tr:first-child {
  background: #0c55a4;
  color: #fff;
  font-weight: bold;
}

.content-detail table tr td {
  margin: 0;
  padding: 5px 10px;
  border: 1px solid #000;
  vertical-align: middle;
}

.content-detail table tr td ul {
  width: 100%;
}

.content-detail table tr td ul li {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  text-indent: 10px;
}

.content-detail table tr p {
  width: 100%;
  padding: 5px 0;
  margin: 0;
}

.content-detail iframe {
  max-width: 100%;
  width: 100% !important;
}

.rating-page {
  background-color: #f6f6f6;
  width: 100%;
  min-height: 100vh;
}

.rating-page .rating-container {
  max-width: 800px !important;
  margin: 40px auto;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
}

.rating-page .rating-container .rating-success {
  display: none;
}

.rating-page .rating-container .rating-success .image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.rating-page .rating-container .rating-success .image img {
  max-width: 300px;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.rating-page .rating-container .rating-success .action {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rating-page .rating-container .rating-success .action a {
  color: #fff;
}

.rating-page .rating-container .rated-wrap {
  display: flex;
  gap: 20px;
}

.rating-page .rating-container .rated-wrap .image {
  max-width: 250px;
  width: 100%;
  border-right: 1px solid #eee;
}

.rating-page .rating-container .rated-wrap .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1/1;
}

.rating-page .rating-container .rated-wrap .list .item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.rating-page .rating-container .rated-wrap .list .item h3 {
  width: calc(100% - 44px);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rating-page .rating-container .rated-wrap .list .item .is_valid i {
  font-size: 24px;
}

.rating-page .rating-container .rated-wrap .list .item .is_valid.yes i {
  color: #2f80ed;
}

.rating-page .rating-container .rated-wrap .list .item .is_valid.no i {
  color: #ff0000;
}

.rating-page .rating-container .rated-wrap .list .item.rating__reaction {
  margin: 0;
}

.rating-page .rating-container .rated-wrap .list .item.rating__reaction .title {
  width: 50%;
  text-align: unset;
}

.rating-page .rating-container .rated-wrap .list .item.rating__reaction .is_valid {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 10px;
}

.rating-page .rating-container .rated-wrap .list .item.rating__reaction .is_valid i {
  font-size: 24px;
}

.rating-page .rating-container .rated-wrap .list .item.rating__reaction .is_valid svg {
  width: 24px;
  height: 24px;
}

.rating-page .rating-container .rated-wrap .list .item.content {
  align-items: flex-start;
}

.rating-page .rating-container .rated-wrap .list .item.content h3 {
  max-width: 120px;
}

.rating-page .rating-container .rated-wrap .list .item.content .desc {
  text-align: right;
  flex: 1;
}

.rating-page .rating-container .box-header {
  margin-bottom: 20px;
}

.rating-page .rating-container .box-header__title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.rating-page .rating-container .box-header__desc {
  text-align: center;
}

.rating-page .rating-container .rating__list .rating__item {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rating-page .rating-container .rating__list .rating__item .index {
  width: 44px;
  height: 44px;
  border: 1px solid #333;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.rating-page .rating-container .rating__list .rating__item .title {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
}

.rating-page .rating-container .rating__list .rating__item .action {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-page .rating-container .rating__list .rating__item .action label.yes:hover p {
  border: 1px solid #2f80ed;
  color: #2f80ed;
}

.rating-page .rating-container .rating__list .rating__item .action label.yes input:checked~p {
  background-color: #2f80ed;
  color: #fff;
}

.rating-page .rating-container .rating__list .rating__item .action label.no:hover p {
  border: 1px solid #eb5757;
  color: #eb5757;
}

.rating-page .rating-container .rating__list .rating__item .action label.no input:checked~p {
  background-color: #eb5757;
  color: #fff;
}

.rating-page .rating-container .rating__list .rating__item .action label p {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  gap: 8px;
  background-color: #f2f2f2;
  border-radius: 8px;
  color: #4f4f4f;
  border: 1px solid transparent;
}

.rating-page .rating-container .rating__list .rating__item .action label p i {
  font-size: 24px;
}

.rating-page .rating-container .rating__list .rating__item .action label p span {
  font-size: 16px;
}

.rating-page .rating-container .rating__reaction {
  margin: 20px 0;
}

.rating-page .rating-container .rating__reaction .title {
  text-align: center;
  font-weight: 700;
}

.rating-page .rating-container .rating__reaction .reaction__list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -5px;
}

.rating-page .rating-container .rating__reaction .reaction__list .item {
  width: calc(20% - 10px);
  margin: 0 5px;
}

.rating-page .rating-container .rating__reaction .reaction__list .item label {
  display: block;
}

.rating-page .rating-container .rating__reaction .reaction__list .item label input:checked~.wrap {
  background: rgba(47, 128, 237, 0.1);
}

.rating-page .rating-container .rating__reaction .reaction__list .item label input:checked~.wrap .no {
  display: none;
}

.rating-page .rating-container .rating__reaction .reaction__list .item label input:checked~.wrap .yes {
  display: block;
}

.rating-page .rating-container .rating__reaction .reaction__list .item label input:checked~.wrap span {
  color: #2f80ed;
}

.rating-page .rating-container .rating__reaction .reaction__list .item label .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  justify-content: center;
}

.rating-page .rating-container .rating__reaction .reaction__list .item label .wrap .yes {
  display: none;
}

.rating-page .rating-container .rating__reaction .reaction__list .item label .wrap svg {
  width: 50px;
  height: 50px;
}

.rating-page .rating-container .rating__reaction .reaction__list .item label .wrap span {
  margin-top: 10px;
  font-size: 14px;
}

.rating-page .rating-container .rating__reaction .reaction__list .item label .wrap:hover {
  background: rgba(47, 128, 237, 0.1);
}

.rating-page .rating-container .rating__reaction .reaction__list .item label .wrap:hover span {
  color: #2f80ed;
}

.rating-page .rating-container .rating__reaction .reaction__list .item label .wrap:hover .no {
  display: none;
}

.rating-page .rating-container .rating__reaction .reaction__list .item label .wrap:hover .yes {
  display: block;
}

.rating-page .rating-container .action {
  margin-top: 20px;
}

.rating-page .rating-container .action .btn-primary {
  padding: 10px 40px;
  background-color: #2f80ed;
  font-size: 16px;
  font-weight: 700;
  height: auto;
  border: none;
  outline: none;
}

.rating-page .rating-container #rating-content::placeholder {
  color: #000;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: none;
  background: #fff;
  position: relative;
  color: #000;
  /*font-family: "Helvetica", sans-serif;*/
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.79;
}

input {
  outline: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  vertical-align: baseline;
  box-shadow: none;
}

.button,
a.button {
  padding: 17px 25px;
  background-color: #0c55a4;
  text-decoration: none;
  color: #fff !important;
  line-height: 1;
  display: inline-block;
  max-width: 100%;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-shadow: none;
  transition: 0.3s;
  text-transform: uppercase;
  font-size: 0.875em;
  letter-spacing: 0.06px;
  border-radius: 3px;
  font-weight: 400;
}

.button:hover,
a.button:hover {
  color: #fff;
  border-color: #fff;
  background-color: #145faa;
}

.button:after,
a.button:after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}

.no-data {
  text-align: center;
  padding: 10px 0;
}

.clear {
  clear: both;
}

.page {
  width: 100%;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  overflow: hidden;
}

.container .row {
  margin: 0;
}

.container:after {
  display: block;
  content: "";
  clear: both;
}

.logo img {
  height: 70px;
}

/*------------------------------------------------
** HEADER
**------------------------------------------------*/
.hotline {
  position: absolute;
  right: 10px;
  height: 100%;
  display: flex;
}

.hotline .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.hotline .inner a {
  display: flex;
  align-items: center;
  font-weight: 100;
  text-align: right;
  line-height: initial;
  padding: 0;
}

.hotline .inner a.number {
  font-size: 26px;
}

.hotline .inner a:hover {
  color: yellow;
}

.hotline .inner:hover:before {
  display: none;
}

header {
  width: 100%;
  height: 50px;
  padding: 0;
  background: #0c55a4;
}

header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

header .inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

header .inner .item {
  margin: 0;
  padding: 0 20px 0 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

header .inner .item .fa {
  color: #e2e2e2;
  font-size: 20px;
  margin-right: 10px;
}

header .inner .item .fa.fa-mobile {
  font-size: 30px;
}

header .inner .item .fa.fa-map-marker {
  font-size: 30px;
}

header .inner .item a {
  display: block;
  color: #e2e2e2;
  font-size: 15px;
}

header .inner.header-topbar {
  justify-content: space-between;
  gap: 16px;
}

header .header-topbar__item {
  padding-right: 0;
}

header .header-topbar__item--address {
  flex: 1;
  justify-content: flex-end;
}

header .header-topbar__item--address a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/*------------------------------------------------
** Menu
**------------------------------------------------*/
nav.main_menu {
  position: relative;
  z-index: 99;
  width: 100%;
  height: 100px;
  transition: 0.3s;
}

nav.main_menu .menu_inner {
  width: 100%;
  background: #fff;
}

nav.main_menu .menu_inner .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  overflow: initial;
}

nav.main_menu .menu_inner .main_menu__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

nav.main_menu .menu_inner .main_menu__cta {
  display: flex;
  align-items: center;
}

nav.main_menu .menu_inner .main_menu__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 0 14px;
  border-radius: 999px;
  background: #0c55a4;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

nav.main_menu .menu_inner .main_menu__cta-btn:hover {
  background: #145faa;
  color: #fff;
}

nav.main_menu .menu_inner .main_menu__cta-btn i {
  font-size: 14px;
}

nav.main_menu.stick {
  height: 60px;
  transition: 0.3s;
}

nav.main_menu.stick .menu_inner {
  position: fixed;
  top: 0;
  height: 50px;
  /* box-shadow: 0 0 5px #000; */
}

/* nav.main_menu.stick .menu_inner .logo img {
  height: 55px;
} */

nav.main_menu.stick .menu_inner .main_menu ul.menunav li a {
  line-height: 60px;
}

.main_menu ul.menunav {
  padding: 0;
  list-style: none;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  flex-grow: 1;
}

.main_menu ul.menunav li {
  margin: 0;
  padding: 0;
  position: relative;
}

.main_menu ul.menunav li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 16px;
  line-height: 100px;
  text-align: center;
  color: #333;
  font-size: 15px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.main_menu ul.menunav li.active,
.main_menu ul.menunav li:hover {
  background: initial;
}

.main_menu ul.menunav li.active a,
.main_menu ul.menunav li:hover a {
  background: initial;
  color: #145faa;
}

.main_menu ul.menunav li.contact a {
  color: #db2016;
  font-weight: 700;
}

.main_menu ul.menunav li ul.level1 {
  position: absolute;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px);
  background: #145faa;
  padding: 10px;
  z-index: 9;
  min-width: 160px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.main_menu ul.menunav li ul.level1 li {
  width: 100%;
}

.main_menu ul.menunav li ul.level1 li a {
  line-height: 25px;
  text-align: left;
  font-size: 14px;
  padding: 8px 16px;
}

.main_menu ul.menunav li ul.level1 li a .fa {
  margin-right: 8px;
  color: #9c9c9c;
}

.main_menu ul.menunav li ul.level1 li:hover {
  background: none;
}

.main_menu ul.menunav li:hover ul.level1 {
  visibility: visible !important;
  opacity: 1 !important;
  transition: 0.3s all ease !important;
  transform: translateY(0px) !important;
  left: 0;
}

.main_menu ul.menunav li:hover ul.level1 li {
  padding: 0 10px;
}

.main_menu ul.menunav li:hover ul.level1 li a {
  color: #fff;
  padding: 0;
  line-height: 40px;
  text-align: left;
  font-size: 14px;
}

.main_menu ul.menunav li:hover ul.level1 li a .fa {
  height: initial;
  margin-right: 8px;
  color: #fff;
}

.main_menu ul.menunav li:hover ul.level1 li a:hover {
  color: #0c55a4;
}

.main_menu ul.menunav li:hover ul.level1 li:hover,
.main_menu ul.menunav li:hover ul.level1 li.active {
  background: #0d62b5;
}

.main_menu ul.menunav li:hover ul.level1 li:hover a,
.main_menu ul.menunav li:hover ul.level1 li.active a {
  color: #fff;
}

.main_menu ul.menunav li ul.submenu_inner {
  width: 100%;
}

.main_menu ul.menunav li ul.submenu_inner li.submenu {
  display: block;
  width: 25%;
  float: left;
  padding: 0 20px;
  text-align: left;
  border-right: 1px solid #e6e6e6;
}

.main_menu ul.menunav li ul.submenu_inner li.submenu a.title {
  font-size: 18px;
}

.main_menu ul.menunav li ul.submenu_inner li.submenu:hover {
  background: none;
}

.main_menu ul.menunav li ul.submenu_inner li.submenu:last-child {
  border-right: 0;
}

.main_menu ul.menunav li ul.submenu_inner:after {
  display: block;
  content: "";
  clear: both;
}

.main_menu ul.menunav li ul.submenu_inner li ul.submenu_level1 {
  display: block;
  position: relative;
}

.main_menu ul.menunav li ul.submenu_inner li ul.submenu_level1 li {
  display: block;
}

.main_menu ul.menunav li ul.submenu_inner li ul.submenu_level1 li a {
  line-height: 25px;
}

.main_menu ul.menunav li ul.submenu_inner li ul.submenu_level1 li:hover {
  background: none;
}

.main_menu.stick ul.menunav li a {
  line-height: 60px;
}

@media only screen and (max-width: 1150px) {
  .main_menu ul.menunav li a {
    padding: 0 8px;
  }
}

.lang-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.lang-inner .item {
  width: 40px;
  height: 30px;
  position: relative;
  overflow: hidden;
  /*border-radius: 5px;*/
  margin: 0 5px;
  cursor: pointer;
}

.lang-inner .item a {
  padding: 0 !important;
}

.lang-inner .item img {
  max-width: initial;
  height: 30px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.lang-inner .item.jp {
  border: 1px solid #cecece;
}

.lang-inner .item:hover {
  border-color: #145faa;
}

.lang-inner .li_cart {
  margin-right: 5px;
}

.li_cart a.view_cart {
  display: none;
  position: relative;
  line-height: initial;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.li_cart a.view_cart .fa {
  color: #145faa;
  background: #fff;
  border-radius: 50%;
  padding: 0;
  height: initial;
}

.li_cart a.view_cart .fa:before {
  font-size: 25px;
}

.li_cart a.view_cart:hover .fa {
  color: #0c55a4;
}

.li_cart a.view_cart.active {
  display: flex;
}

.li_cart:hover {
  background: transparent;
}

.rd-mobilepanel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* height: 50px; */
  /* background: #fff; */
  color: #000;
  -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
  z-index: 1009;
}

.rd-mobilepanel .rd-mobilepanel_toggle {
  background: none;
  border: none;
  /*display: inline-block;*/
  padding: 0;
  outline: none;
  outline-offset: 0;
  cursor: pointer;
  -webkit-appearance: none;
  /*position: fixed;
  top: 0;
  left: 4px;*/
  width: 90px;
  height: 50px;
}

.rd-mobilepanel .rd-mobilepanel_toggle span {
  cursor: pointer;
  width: 24px;
  height: 4px;
  background-color: #000;
  backface-visibility: hidden;
  border-radius: 2px;
  position: relative;
  display: block;
  margin: auto;
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.rd-mobilepanel .rd-mobilepanel_toggle span:before,
.rd-mobilepanel .rd-mobilepanel_toggle span:after {
  content: "";
  position: absolute;
  left: 0;
  top: -8px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 24px;
  height: 4px;
  background-color: #000;
  backface-visibility: hidden;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-transform-origin: 1.71429px center;
  -ms-transform-origin: 1.71429px center;
  -o-transform-origin: 1.71429px center;
  -webkit-transform-origin: 1.71429px center;
  transform-origin: 1.71429px center;
  -moz-transform-origin: 1.71429px center;
  -ms-transform-origin: 1.71429px center;
  -o-transform-origin: 1.71429px center;
  -webkit-transform-origin: 1.71429px center;
  transform-origin: 1.71429px center;
}

.rd-mobilepanel .rd-mobilepanel_toggle span:after {
  top: 8px;
}

.rd-mobilepanel .rd-mobilepanel_toggle.active span {
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.rd-mobilepanel .rd-mobilepanel_toggle.active span:before,
.rd-mobilepanel .rd-mobilepanel_toggle.active span:after {
  top: 0;
  width: 15px;
}

.rd-mobilepanel .rd-mobilepanel_toggle.active span:before {
  -webkit-transform: rotate3d(0, 0, 1, -40deg);
  transform: rotate3d(0, 0, 1, -40deg);
}

.rd-mobilepanel .rd-mobilepanel_toggle.active span:after {
  -webkit-transform: rotate3d(0, 0, 1, 40deg);
  transform: rotate3d(0, 0, 1, 40deg);
}

.rd-mobilepanel .rd-mobilepanel_title {
  display: none;
  float: left;
  margin: 5px 0 0 55px;
  color: #000;
  font-size: 20px;
  line-height: 48px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.rd-mobilepanel .logo {
  /*width: calc(100% - 204px);*/
  width: calc(100% - 50px);
  text-align: left;
}

.rd-mobilepanel .logo img {
  height: calc(100% - 10px);
  margin: 5px auto;
}

.rd-mobilepanel .lang {
  width: 90px;
}

.rd-mobilepanel .lang .lang-inner {
  justify-content: flex-end;
}

.rd-mobilepanel .lang .lang-inner .item {
  width: 30px;
  height: 30px;
}

.rd-mobilepanel .lang .lang-inner .item img {
  height: 100%;
  margin: auto;
  left: 50%;
}

.rd-mobilemenu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1008;
  text-align: left;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.rd-mobilemenu .rd-mobilemenu_ul {
  position: fixed;
  z-index: 99;
  top: 60px;
  margin: 0;
  left: 0;
  bottom: -20px;
  width: 0;
  padding: 24px;
  color: #666;
  background: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 20px;
  overflow: auto;
  -moz-transform: translateX(-270px);
  -ms-transform: translateX(-270px);
  -o-transform: translateX(-270px);
  -webkit-transform: translateX(-270px);
  transform: translateX(-270px);
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -moz-transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  -o-transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  -webkit-transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

.rd-mobilemenu .rd-mobilemenu_ul li {
  line-height: 21px;
}

.rd-mobilemenu .rd-mobilemenu_ul li>a {
  display: block;
  padding: 0;
  color: #000;
  font-size: 16px;
  line-height: 45px;
}

.rd-mobilemenu .rd-mobilemenu_ul li>a i {
  float: right;
  margin-top: 7px;
  width: 45px;
  text-align: center;
  font-size: 30px;
  color: #888;
}

.rd-mobilemenu .rd-mobilemenu_ul li ul.level1 li a {
  font-size: 14px;
  line-height: 35px;
}

.rd-mobilemenu .rd-mobilemenu_ul li ul.level1 li a i {
  float: left;
  margin-top: 3px;
  width: 25px;
  font-size: 25px;
}

.rd-mobilemenu .rd-mobilemenu_ul li:hover a,
.rd-mobilemenu .rd-mobilemenu_ul li:hover i,
.rd-mobilemenu .rd-mobilemenu_ul li.active a,
.rd-mobilemenu .rd-mobilemenu_ul li.active i {
  color: #0c55a4;
}

.rd-mobilemenu .rd-mobilemenu_ul li:hover ul.level1 a,
.rd-mobilemenu .rd-mobilemenu_ul li:hover ul.level1 i,
.rd-mobilemenu .rd-mobilemenu_ul li.active ul.level1 a,
.rd-mobilemenu .rd-mobilemenu_ul li.active ul.level1 i {
  color: #000;
}

.rd-mobilemenu .rd-mobilemenu_ul li:hover ul.level1 li.active a,
.rd-mobilemenu .rd-mobilemenu_ul li:hover ul.level1 li.active i,
.rd-mobilemenu .rd-mobilemenu_ul li.active ul.level1 li.active a,
.rd-mobilemenu .rd-mobilemenu_ul li.active ul.level1 li.active i {
  color: #0c55a4;
}

.rd-mobilemenu .rd-mobilemenu_ul li:hover a,
.rd-mobilemenu .rd-mobilemenu_ul li:hover i {
  background: #efefef;
}

.rd-mobilemenu .rd-mobilemenu_ul hr {
  background: #dbdbdb;
}

.rd-mobilemenu.active {
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.rd-mobilemenu.active .rd-mobilemenu_ul {
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  min-width: 270px
}

/*------------------------------------------------
** Slick
**------------------------------------------------*/
.slick-slider {
  margin: 0;
}

.slick-slider .slick-list .slick-track {
  display: flex;
  /*flex-wrap: wrap;*/
}

.slick-slider>button {
  width: 50px !important;
  height: 50px !important;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.2);
  top: calc(50% - 25px);
}

.slick-slider>button:before {
  font-family: "FontAwesome" !important;
  display: inline-block !important;
  font-size: 16px !important;
  line-height: 1.1 !important;
}

.slick-slider>button.slick-prev:before {
  content: "\f053";
}

.slick-slider>button.slick-next:before {
  content: "\f054";
}

.slick-slider>button:hover,
.slick-slider>button:focus {
  background-color: rgba(0, 0, 0, 0.8);
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
  width: 40px;
  height: 40px;
}

.slick-slider .slick-prev:before,
.slick-slider .slick-next:before {
  font-size: 40px;
}

.slick-slider .slick-prev {
  left: 0;
}

.slick-slider .slick-next {
  right: 0;
}

.slick-slider .slick-dots {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 20px;
}

.slick-slider .slick-dots button:before {
  font-size: 16px;
  width: 16px;
  height: 16px;
}

.slide-for {
  background: #dedede;
  /*height: 520px;*/
  overflow: hidden;
  margin: 0 !important;
}

.slide-for p,
.slide-for div,
.slide-for img {
  margin: 0 !important;
}

.slide-for .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.slide-for .slick-list .slick-track {
  width: 100%;
  height: 100%;
}

.slide-for .slick-list .slick-track .slick-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-for .slick-list .slick-track .slick-slide a {
  display: block;
  width: 100%;
  height: 75%;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: 50% 50% !important;
}

.slide-for .slick-list .slick-track .slick-slide a img {
  visibility: hidden;
}

.slide-for button {
  top: calc(100% - 50px);
  width: 50px !important;
  height: 50px !important;
  margin: 0;
  background-color: #0c55a4;
}

.slide-for button:before {
  font-family: "FontAwesome" !important;
  display: inline-block !important;
  font-size: 16px !important;
  line-height: 1.1 !important;
}

.slide-for button:hover,
.slide-for button:focus {
  /*background-color: #f1a700;*/
  background-color: #75bce7;
}

.slide-for button.slick-next {
  right: 0;
}

.slide-for button.slick-next:before {
  content: "\f054";
}

.slide-for button.slick-prev {
  left: calc(100% - 100px);
}

.slide-for button.slick-prev:before {
  content: "\f053";
}

.slide-nav {
  height: 150px;
  overflow: hidden;
  margin: 0 !important;
}

.slide-nav p,
.slide-nav div,
.slide-nav img {
  margin: 0 !important;
}

.slide-nav .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.slide-nav .slick-list .slick-track {
  width: 100%;
  height: 100%;
}

.slide-nav .slick-list .slick-track .slick-slide {
  position: relative;
  height: 100%;
  cursor: pointer;
  padding: 5px;
  opacity: 0.6;
  transition: 250ms;
}

.slide-nav .slick-list .slick-track .slick-slide.slick-center,
.slide-nav .slick-list .slick-track .slick-slide:hover {
  opacity: 1;
}

.slide-nav .slick-list .slick-track .slick-slide span {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: 50% 50% !important;
}

.slide-nav .slick-list .slick-track .slick-slide span img {
  visibility: hidden;
}

.slide-nav button {
  top: 5px;
  width: 50px !important;
  height: calc(100% - 5px) !important;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.6);
}

.slide-nav button:before {
  font-family: "FontAwesome" !important;
  color: #717171;
  display: inline-block !important;
  font-size: 16px !important;
  line-height: 1.1 !important;
}

.slide-nav button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.slide-nav button:hover:before {
  color: #000;
}

.slide-nav button.slick-next {
  right: 0;
}

.slide-nav button.slick-next:before {
  content: "\f054";
}

.slide-nav button.slick-prev {
  left: 0;
}

.slide-nav button.slick-prev:before {
  content: "\f053";
}

.responsive .item .inner {
  padding: 0 5px;
}

.responsive .item .inner a.image {
  padding-top: 56.25%;
}

/*------------------------------------------------
** General
**------------------------------------------------*/
.cover {
  position: relative;
}

.cover .video {
  position: relative;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
}

section {
  padding: 60px 0;
}

.head-title {
  margin: 0 0 40px;
  padding: 0;
  text-align: center;
}

.head-title h1,
.head-title span {
  position: relative;
  padding: 10px 0;
  font-size: 33px;
  color: #145faa;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 5px;
  font-family: "Quicksand", sans-serif;
}

.head-title h1:after,
.head-title span:after {
  /*content: '';*/
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background: #145faa;
}

.head-title.left {
  float: initial !important;
  text-align: left;
}

.head-title.left span:after {
  left: 0;
}

.head-title.right {
  float: initial !important;
  text-align: right;
}

.head-title.right span:after {
  left: 50%;
}

.heading {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.heading .heading__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.heading:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  bottom: 0;
  z-index: 1;
  /*background: rgba(0,0,0,0.3);*/
}

.heading .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  font-family: "Quicksand", sans-serif;
}

.heading .container h1 {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.heading .container .content {
  position: relative;
  margin: 0;
  text-align: left;
  z-index: 2;
  text-transform: uppercase;
  font-size: 20px;
}

.heading .container .content a {
  color: #fff;
}

.heading .container .content a:hover {
  text-decoration: underline;
}

.heading .container .content span {
  line-height: 1.5;
}

.heading .container .content span.item_sep {
  opacity: 0.5;
  margin: 0 15px;
}

.gioi-thieu .heading {
  /*background-image: url('../images/heading_about.jpg') !important;*/
}

.nuoc-uong-ion-kiem .heading {
  /*background-image: url('../images/heading_ionkiem.jpg') !important;*/
}

.tuyen-dung .heading {
  /*background-image: url('../images/heading_tuyendung.jpg') !important;*/
}

.load_more {
  text-align: center;
}

.load_more .fa-angle-down {
  font-size: 10em;
  cursor: pointer;
}

.load_more .fa-angle-down:hover {
  color: #145faa;
}

.readmore {
  text-align: center;
  padding: 20px 0 0;
}

.readmore a {
  position: relative;
  vertical-align: middle;
  z-index: 1000;
  background: #0c55a4;
  color: #fff !important;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.36);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  padding: 10px 24px;
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.readmore a:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #3a3a3a;
  background: #75bce7;
  -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;
}

.readmore a:hover {
  color: #fff !important;
}

.readmore a:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.module {
  border: 0;
  margin: 0 auto 0;
  overflow: hidden;
  /* background: #fff; */
  position: relative;
}

.module .moduletitle {
  padding: 0px 0 20px;
  margin-bottom: 30px;
  font-size: 30px;
  position: relative;
}

.module .moduletitle h1 {
  font-size: 40px;
  line-height: 40px;
}

.module .moduletitle h1:before {
  bottom: 0;
  content: "";
  height: 2px;
  position: absolute;
  width: 100px;
  background: #00a1e5 none repeat scroll 0 0;
}

.module .moduletitle.center h1:before {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.module .modulecontent {
  padding: 0;
  /* background: #fff; */
  position: relative;
}

.module .modulecontent:after {
  display: block;
  content: "";
  clear: both;
}

/*------------------------------------------------
** Main
**------------------------------------------------*/
#main-body {
  min-height: 400px;
  position: relative;
  z-index: 1;
}

#main-body #center {
  margin: 0 380px 0 0;
}

#main-body #right {
  float: right;
  width: 100%;
  max-width: 300px;
}

#main-body #full {
  width: 100%;
}

#main-content {
  margin: 30px 0;
}

#main-content:after {
  display: block;
  content: "";
  clear: both;
}

#loading {
  display: none;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 9;
}

#loading img {
  position: relative;
  margin: 0 auto;
  top: 40%;
}

.notice {
  display: none;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px 15px 15px 20px;
  margin: 0;
  text-shadow: initial;
  text-align: left;
  border: 1px solid #dcdcdc;
}

.notice.success {
  border-left: 3px solid #7ad03a;
  background: #f8fdf5;
}

.notice.info {
  border-left: 3px solid #02a0d2;
  background: #f2fafd;
}

.notice.error {
  border-left: 3px solid #bf0000;
  background: #fdf5f5;
}

.form {
  /*.notice{display: none;}
  .notice.success {
  	width: 93%;
  	padding: 10px 0 10px 45px;
  	border-top: 2px solid #0F61CE;
  	border-bottom: 2px solid #0F61CE;
  	margin: 0 0 20px 5px;
  	font-weight: 400;
  	background: #D7E8FF url(../images/notice-info.png) no-repeat 10px center;
  	font-size: 10pt;
  	color: #000;
  }
  .notice.error {
  	width: 93%;
  	padding: 10px 0 10px 45px;
  	border-top: 2px solid #BF0000;
  	border-bottom: 2px solid #BF0000;
  	margin: 0 0 20px 5px;
  	font-weight: 400;
  	background: #FFEAEA url(../images/notice-alert.png) no-repeat 10px center;
  	font-size: 10pt;
  	color: #BF0000;
  }*/
}

.form input[type="text"],
.form textarea {
  display: inline-block;
  outline: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 15px 0px 15px 15px;
  background: white;
  border: 1px solid #d4d4d4;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-family: "Roboto";
  color: #3498d9;
  margin-bottom: 30px;
  font-size: 11pt;
  line-height: 1.2;
}

.form input[type="text"].error,
.form textarea.error {
  border: 1px solid red;
}

.form input.submit {
  width: 200px;
  height: 70px;
}

.section-wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  line-height: 0;
  will-change: transform;
  z-index: 1;
  overflow: hidden;
}

.section-wave svg {
  fill: #e1eafd;
  width: 100%;
  height: 20px;
}

.section-wave-white svg {
  fill: #fff;
}

.slider {
  position: relative;
  background: #0c55a4;
}

.slider:after {
  position: absolute;
  width: 100%;
  height: 95px;
  /*content: '';*/
  left: 0;
  bottom: 0;
  background: url("../images/header_wave.png") repeat-x center bottom;
}

.slider .slideshow-container .slick-slide {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
}

.slider .slideshow-container .slick-slide img {
  visibility: hidden;
}

.box-intro {
  /*padding: 80px 0;*/
  position: relative;
  /*&:after {
  	position: absolute;
  	width: 100%;
  	height: 50%;
  	content: '';
  	background: rgba($color_page_bg, 1);
  	left: 0;
  	bottom: 0;
  	z-index: 0;
  }*/
}

.box-intro .contentWrapper {
  display: flex;
  flex-wrap: wrap;
  /*padding-bottom: 60px;*/
  z-index: 1;
  position: relative;
}

.box-intro .contentWrapper .image {
  position: relative;
  width: 50%;
  height: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
}

.box-intro .contentWrapper .image .video {
  /*position: relative;*/
  width: 100%;
  height: 100%;
}

.box-intro .contentWrapper .image .video .video-cover {
  display: block;
  position: relative;
  /*top: 0;
    left: 0;*/
  width: 100%;
  height: 100%;
}

.box-intro .contentWrapper .image .video .video-cover .icon {
  position: absolute;
  top: calc(50% - 33px);
  left: calc(50% - 33px);
  font-size: 140px;
  color: #fff;
  will-change: transform;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  background: url("../images/img-play.png") no-repeat center/cover;
  width: 66px;
  height: 66px;
  animation: zoomIcon 1.5s infinite linear;
}

.box-intro .contentWrapper .image .video .video-cover .icon:hover {
  transform: scale(1.2);
}

.box-intro .contentWrapper .image .video .video-cover img {
  visibility: hidden;
}

.box-intro .contentWrapper .content {
  width: 47%;
  margin: 0 3% 0 0;
  display: flex;
  flex-direction: row;
  /*align-items: center;*/
  justify-content: center;
}

.box-intro .contentWrapper .content .desc {
  text-align: left;
  /*box-shadow: 0px 8px 59px 0px rgba(6,30,52,0.1);*/
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  /*padding: 44px 40px 40px 40px;*/
  /*a.button{
   	border-radius: 30px;
   	margin: 10px auto 0;
   }*/
}

.box-intro .contentWrapper .content .desc p {
  margin: 5px 0;
  color: #5c5c5c;
  text-align: justify;
}

.box-intro .contentWrapper .content .desc a {
  font-weight: 600;
}

.box-intro .contentWrapper .content .range {
  display: flex;
  flex-wrap: wrap;
  margin: 15px 0 0;
  /* box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.1); */
  /* padding: 20px 15px; */
  /* background-color: #0c55a4; */
  color: #fff;
  border-radius: 10px;
}

.box-intro .contentWrapper .content .range .item {
  width: 100%;
  /* margin: 10px 0; */
}

.box-intro .contentWrapper .content .range .item .icon-unit {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.box-intro .contentWrapper .content .range .item .icon-unit .icon-unit-left {
  width: 50px;
  padding: 0 15px 0 0;
  display: flex;
  align-items: center;
}

.box-intro .contentWrapper .content .range .item .icon-unit .icon-unit-body {
  width: calc(100% - 50px);
  padding-right: 30px;
  text-align: left;
  /*display: flex;
  align-items: center;*/
}

.box-intro .contentWrapper .content .range .item .icon-unit .icon-unit-body span {
  font-weight: 500;
}

.box-video {
  padding-top: 0;
  position: relative;
  text-align: center;
}

.box-video:before {
  background: url("https://livedemo00.template-help.com/wt_prod-19657/images/breadcrumbs-image-2.jpg") no-repeat center/cover;
  position: absolute;
  width: 100%;
  height: 50%;
  /*content: '';*/
  left: 0;
  bottom: 0;
  z-index: 0;
}

.box-video:after {
  position: absolute;
  width: 100%;
  height: 50%;
  content: "";
  background: #f5f6fa;
  left: 0;
  bottom: 0;
  z-index: 0;
}

.box-video iframe {
  width: 100%;
  max-width: 800px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.box-properties {
  padding: 100px 0;
  background: #f5f6fa url("../images/img_properties_bg.png") no-repeat center/cover;
  /*background: rgba($color_page_bg, 1);*/
}

.box-properties .contentWrapper .imageWrapper {
  display: flex;
  /*flex-direction: row;*/
  flex-wrap: wrap;
  justify-content: space-around;
}

.box-properties .contentWrapper .imageWrapper .image {
  width: 200px;
}

.box-properties .contentWrapper .imageWrapper .image.pro2,
.box-properties .contentWrapper .imageWrapper .image.pro4 {
  margin-top: 150px;
}

.box-product .head-title {
  margin-bottom: 20px;
}

.box-reason {
  background: url("../images/img_demo1.jpg") no-repeat center/cover;
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.box-reason:before {
  display: none;
}

.box-reason .head-title span {
  color: #413f40;
}

.box-reason .contentWrapper .content {
  /*background: url('../images/img_bottle.svg') no-repeat center/contain;*/
  display: flex;
  flex-direction: column;
}

.box-reason .contentWrapper .content .image img.mb {
  display: none;
}

.box-reason .contentWrapper .content .box {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.box-reason .contentWrapper .content .box .box-item {
  display: flex;
  flex-direction: row-reverse;
  width: calc(50% - 30px);
  margin-top: -10px;
}

.box-reason .contentWrapper .content .box .box-item .line {
  width: calc(35% - 15px);
  margin-left: 15px;
  background: url("../images/line_left.png") no-repeat top/contain;
}

.box-reason .contentWrapper .content .box .box-item .text {
  width: calc(50% + 15px);
  text-align: right;
  text-transform: uppercase;
}

.box-reason .contentWrapper .content .box .box-item .text span {
  font-size: 32px;
  line-height: 1;
}

.box-reason .contentWrapper .content .box .box-item .text p {
  font-size: 20px;
}

.box-reason .contentWrapper .content .box .box-item.odd {
  flex-direction: row;
  margin-left: calc(50% + 30px);
}

.box-reason .contentWrapper .content .box .box-item.odd .line {
  margin: 0 15px 0 0;
  background: url("../images/line_right.png") no-repeat top/contain;
}

.box-reason .contentWrapper .content .box .box-item.odd .text {
  text-align: left;
}

.box-reason .contentWrapper .content .box .box-item:first-child {
  margin-top: 10px;
}

.box-generator {
  position: relative;
  padding: 120px 0;
}

.box-generator .contentWrapper {
  display: flex;
  flex-wrap: wrap;
}

.box-generator .contentWrapper .image {
  position: relative;
  width: 50%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.box-generator .contentWrapper .image img {
  max-width: 300px;
}

.box-generator .contentWrapper .content {
  width: 47%;
  margin: 0 0 0 3%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.box-generator .contentWrapper .content .desc {
  text-align: center;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.box-generator .contentWrapper .content .desc p {
  margin: 5px 0 30px;
  text-align: justify;
}

.box-generator .contentWrapper .content .desc a.button {
  /*border-radius: 30px;*/
  margin: 10px auto 0;
}

.box-generator:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: #f5f6fa;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.box-about .contentWrapper .head-title {
  margin-bottom: 0px;
}

.box-about .contentWrapper p.company-en {
  font-size: 25px;
  color: #0c55a4;
  text-align: center;
}

.box-about .contentWrapper .inner {
  display: flex;
  flex-direction: row;
  padding: 40px 0 0;
}

.box-about .contentWrapper .inner .text {
  width: 50%;
  padding-right: 15px;
}

.box-about .contentWrapper .inner .text ul li {
  background: url("../images/bullet.png") no-repeat left 7px;
  margin-bottom: 10px;
  padding-left: 20px;
}

.box-about .contentWrapper .inner .text ul li b {
  font-weight: 600;
}

.box-about .contentWrapper .inner .image {
  width: 50%;
  padding-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-mission {
  background: #f5f6fa;
}

.box-mission .inner {
  /*background: url('../images/img_frame.svg') no-repeat center/contain;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  .box {
  	background: url('../images/img_box.svg') no-repeat center/contain;
  	width: 530px;
  	height: 530px;
  	.icon {
  		text-align: center;
  		img {width: 200px;}
  	}
  }*/
}

.box-mission .inner .box {
  position: relative;
  overflow: hidden;
  padding: 0 0 90px 0;
  margin-bottom: -25px;
  display: flex;
}

.box-mission .inner .box .aside {
  width: 33.3333333333%;
  height: 100%;
  padding: 30px;
  background-color: #fff;
  /*background: url('../images/img_box.svg') no-repeat center/contain;*/
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  text-align: center;
}

.box-mission .inner .box .aside img {
  width: 100%;
  max-width: 250px;
}

.box-mission .inner .box .divider {
  position: relative;
  padding: 25px 20px 0;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
}

.box-mission .inner .box .divider:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid #286efc;
  border-radius: 50%;
}

.box-mission .inner .box .divider:after {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 300vh;
  background: #ddd;
  min-height: 100px;
}

.box-mission .inner .box .main {
  width: 50%;
}

.box-mission .inner .box .main .title {
  font-size: 35px;
  color: #145faa;
}

.box-mission .inner .box .main .subtitle {
  font-size: 20px;
  color: #145faa;
  line-height: 1.2;
}

.box-mission .inner .box .main ul li {
  background: url("../images/bullet.png") no-repeat left 7px;
  margin-bottom: 10px;
  padding-left: 20px;
}

.box-mission .inner .box .main ul li b {
  font-weight: 600;
}

.box-award .inner p {
  color: #145faa;
}

.box-award .inner .imagesWrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

.box-award .inner .imagesWrapper .image {
  width: calc(50% - 30px);
  margin: 15px;
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.1);
}

.box-contact {
  /*background: url('../images/footer_wave.png') repeat-x center bottom, url('../images/img_contact_bg.jpg') no-repeat center/cover;*/
  /*padding-bottom: 115px;
  margin-bottom: -100px;*/
  background: url("../images/img_contact_bg.jpg") no-repeat center/cover;
}

.box-contact .container {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: row;
}

.box-contact .container .map {
  width: 65%;
  min-height: 400px;
  height: 400px;
  background: #d2d2d2;
  border: 1px solid #d1d1d1;
}

.box-contact .container .map iframe {
  width: calc(100% - 1px);
  height: 100%;
}

.box-contact .container .info {
  width: 30%;
  max-width: 400px;
  margin-left: 5%;
}

.box-quality {
  padding-bottom: 80px;
}

.box-quality .slick-track {
  display: flex;
}

.box-quality .slick-slider .slick-dots {
  bottom: -20px;
}

.box-quality .item {
  padding: 20px;
}

.box-quality .item .item-wrap {
  display: block;
  width: 100%;
  padding-top: 100%;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border: 1px solid #ccc;
}

.box-quality .item .item-wrap img {
  display: none;
}

.box-map {
  padding: 0 15px;
}

.box-map .container {
  max-width: 1620px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  padding: 50px;
  box-shadow: 0 0 35px #ddd;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.box-map .container .map-item {
  width: calc(50% - 10px);
}

.box-map .container .map-item .head-title {
  margin-bottom: 6px;
}

.box-map .container .map-item .contact_address {
  padding: 20px 0px;
  text-align: center;
}

.box-map .container .map-item .contact_address .single-contact-info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 60px;
}

.box-map .container .map-item .contact_address .single-contact-info .fa {
  width: 15px;
  height: 15px;
  line-height: 15px;
  color: #f9461d;
  margin-right: 6px;
  margin-top: 8px;
  font-size: 14px;
}

#sidebar {
  float: right;
  width: 100%;
  max-width: 300px;
  will-change: min-height;
}

#sidebar .sidebar__inner {
  /*padding: 10px;*/
  position: relative;
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0);
  will-change: position, transform;
}

.sidebar {
  padding: 0;
}

.sidebar:before {
  display: block;
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #d4d4d4;
}

.sidebar h5 {
  letter-spacing: 0.1em;
  font-size: 20px;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 30px;
}

.sidebar .contactWrapper {
  padding: 0;
}

.sidebar.sb_contact .item {
  margin: 0 0 20px 0;
}

.sidebar.sb_contact .item .title {
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(21, 21, 21, 0.4);
  margin-left: 40px;
}

.sidebar.sb_contact .item .desc {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #ebebeb;
  padding: 0 0 30px 0;
}

.sidebar.sb_contact .item .desc .fa {
  color: #0c55a4;
  font-size: 25px;
  width: 30px;
  margin-right: 10px;
}

.sidebar.sb_contact .item .desc .fa.fa-mobile {
  font-size: 40px;
}

.sidebar.sb_contact .item .desc .fa.fa-map-marker {
  font-size: 35px;
}

.sidebar.sb_contact .item .desc a {
  display: block;
  width: calc(100% - 40px);
  color: #333;
}

.sidebar.sb_contact .item .desc a.phone {
  font-size: 20px;
}

.sidebar.sb_contact .item:last-child .desc {
  border-bottom: 0;
}

.map {
  background: #ccc;
  width: 100%;
  height: 450px;
  border: 1px solid #ebebeb;
}

.map iframe {
  width: 100%;
  height: 100%;
}

/*------------------------------------------------
** breadcrumbs
**------------------------------------------------*/
.breadcrumbs {
  position: relative;
  margin: 0;
  padding: 15px 0 15px;
  text-align: left;
  z-index: 2;
  text-transform: uppercase;
  background: #f7f7f7;
}

.breadcrumbs a:hover {
  color: #0c55a4;
}

.breadcrumbs span {
  line-height: 1.5;
}

.breadcrumbs span.item_sep {
  opacity: 0.5;
  margin: 0 15px;
}

.relative {
  padding: 40px 0 20px;
  border-top: 1px solid #e9e9e9;
}

.relative h2 {
  font-size: 30px;
  line-height: 40px;
  padding-left: 15px;
  margin-left: 15px;
  margin-bottom: 20px;
  position: relative;
}

.relative h2:before {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  background: #0c55a4;
}

/*------------------------------------------------
** News
**------------------------------------------------*/
#news-category,
#news-detail {
  padding: 0;
}

#news-category .heading,
#news-detail .heading {
  background-image: url("../../uploads/static/slides/slides_1.png");
}

.social-date {
  margin-bottom: 10px;
  padding: 10px 0;
}

.social-date .fblike {
  float: left;
  border: 0;
  padding: 0;
}

.social-date span.published {
  float: right;
  position: relative;
  display: block;
  line-height: 20px;
}

.social-date span.published:before {
  position: absolute;
  content: "\f017";
  font-family: "FontAwesome";
  font-size: 16px;
  left: -20px;
  top: 0;
  color: #5bc8a5;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #b4b4b4;
}

.article-5 .heading {
  background-image: url(../images/heading_HU121.jpg) !important;
}

.news.news_list {
  width: 100%;
}

.news.news_list .head_title {
  text-align: center;
  margin: 40px auto;
}

.news.news_list .head_title h2 {
  text-transform: uppercase;
  font-size: 30px;
  color: #0c55a4;
}

/* .news.news_list .module .modulecontent {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px 0;
} */

.news.news_list .item {
  margin: 0 30px 60px;
  width: calc(50% - 60px);
  border-radius: 3px;
  overflow: hidden;
}

.news.news_list .item a.image {
  display: block;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: 50% 50% !important;
}

.news.news_list .item a.image img {
  /* visibility: hidden;
  display: none; */
}

.news.news_list .item span.date {
  color: #a9a9a9;
  font-size: 14px;
  display: block;
  text-align: right;
  margin: 5px 0;
}

.news.news_list .item .blog-dsc {
  padding: 0 20px 20px;
}

.news.news_list .item .blog-dsc a.category {
  padding: 5px 0px;
  color: #e75248;
  font-size: 12px;
  text-transform: uppercase;
}

.news.news_list .item .blog-dsc a.category:hover {
  color: #000;
}

.news.news_list .item .blog-dsc h4.title {
  margin: 15px 0 0;
}

.news.news_list .item .blog-dsc h4.title a {
  display: block;
  line-height: 1.4;
  margin: 5px 0;
}

.news.news_list .item .blog-dsc .description {
  overflow: hidden;
}

.news.news_list .item:hover {
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.1);
}

.news.news_list .item:hover a.image:before {
  opacity: 1;
}

.news.news_list .item:hover a.image:after {
  opacity: 0.2;
}

.news.news_list .item.col {
  width: 100%;
  display: flex;
  flex-direction: row;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.news.news_list .item.col a.image {
  width: 300px;
  height: initial;
  position: relative;
}

.news.news_list .item.col a.image img {
  visibility: hidden;
}

.news.news_list .item.col .blog-dsc {
  width: calc(100% - 300px);
  padding: 0 0 0 20px;
}

.news.news_list .item.col .blog-dsc h4.title {
  margin: 0;
}

.news.news_list .item.col .blog-dsc h4.title a {
  margin: 0;
}

.news.news_list .item.col .blog-dsc .description {
  height: initial;
  font-weight: 700;
}

.news.news_list .item.col:hover a.image:before {
  opacity: 1;
}

.news.news_list .item.col:hover a.image:after {
  opacity: 0.5;
}

.news.news_list .item.col:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #e1e1e1;
}

.news.news_list .item.col:last-child:after {
  height: 0;
}

.news.news_list .item_first {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}

.news.news_list .item_first a.image {
  display: block;
  height: initial;
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 420px;
  overflow: hidden;
}

.news.news_list .item_first a.image img {
  width: 100%;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news.news_list .item_first .blog-dsc {
  position: absolute;
  width: 100%;
  height: 30%;
  overflow: hidden;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news.news_list .item_first .blog-dsc h4.title a {
  color: #145faa;
  font-weight: 400;
  font-size: 22px;
}

.news.news_list .item_first .blog-dsc h4.title a:hover {
  color: #75bce7;
}

.news.news_list .item_first .blog-dsc .description {
  color: #eaeaea;
  font-weight: 700;
}

.news.news_list .item_first:hover .blog-dsc {
  background: rgba(0, 0, 0, 0.85);
}

.news.news_list .published {
  text-align: right;
  padding: 0 0 10px 0;
  color: #ccc;
}

.news.news_detail {
  padding: 0 0 80px;
}

.news.news_detail .moduletitle {
  padding: 0 0 20px 0;
}

.news.news_detail .moduletitle h1 {
  font-size: 25px;
  line-height: 1.1;
}

.news.news_detail .item .description {
  font-weight: 700;
  font-size: 16px;
  padding: 0 0 20px;
  margin-bottom: 15px;
}

.news.news_detail .item .content img {
  max-width: 100%;
  margin: 15px auto 10px auto;
}

.news.news_detail .item .article {
  display: none;
}

.news.news_detail .item .article h3.title {
  font-size: 30px;
  line-height: 50px;
  text-transform: uppercase;
}

.news.news_detail .fblike {
  text-align: left;
}

.news.relative .row {
  display: flex;
  flex-wrap: wrap;
}

.news.relative .item .blog-dsc h4.title {
  margin: 0;
}

.news.relative .item .blog-dsc .description {
  font-weight: 300;
}

.news.featured {
  display: flex;
  flex-direction: row;
  padding: 40px 0 20px;
}

.news.featured .left {
  width: 50%;
  height: 100%;
}

.news.featured .left .item {
  display: block;
  width: 100%;
  padding: 0 20px 0 0;
  margin: 0;
}

.news.featured .left .item a.image {
  width: initial;
  height: 400px;
  background-size: cover;
  background-position: center;
}

.news.featured .left .item a.image img {
  visibility: hidden;
}

.news.featured .left .item .blog-dsc {
  width: 100%;
  padding: 0;
}

.news.featured .left .item .blog-dsc a.category {
  padding: 10px 0 0px;
  display: inline-block;
}

.news.featured .left .item .blog-dsc h4.title {
  margin: 0;
}

.news.featured .right {
  width: 50%;
  height: 100%;
}

.news.featured .right .item {
  float: left;
  width: 50%;
  height: 100px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  margin: 0 0 30px 0;
  padding: 0;
}

.news.featured .right .item a.image {
  display: block;
  width: 35%;
  height: 100%;
}

.news.featured .right .item .blog-dsc {
  width: 65%;
  height: 100%;
  padding: 0 20px;
}

.news.featured .right .item .blog-dsc h4.title {
  margin: 0;
}

.news.featured .right .item .blog-dsc h4.title a {
  margin: 0;
  line-height: 1.2;
}

.news.featured .right .item:after {
  height: 0;
}

.news.home {
  padding: 60px 0;
}

.news.home .container {
  overflow: initial;
}

.news.home .head_title {
  display: block;
}

.news.home .head_title .title {
  padding-bottom: 30px;
}

.news.home .row {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
}

.news.home .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 0;
  margin: 0;
  height: 100%;
}

.news.home .item .blog-dsc {
  padding: 0 20px 20px;
}

.news.home .item:after {
  height: 0;
}

.news.latest .head-title {
  margin-bottom: 10px;
}

.news.latest .head-title span {
  font-size: 30px;
}

.news.latest .item {
  width: 100%;
  margin: 0 0 15px 0;
}

.news.group {
  display: block;
}

.news.group .modulecontent {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
}

.news.group .modulecontent .item {
  float: left;
  width: calc(25% - 30px);
  padding: 0 15px;
  border: 1px solid #e4e4e4;
  margin: 15px;
  border-radius: 5px;
}

.news.group .modulecontent .item a.image {
  position: relative;
}

.news.group .modulecontent .item a.image img {
  visibility: visible;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}

.news.group .modulecontent .item a.image:before,
.news.group .modulecontent .item a.image:after {
  display: none;
}

.news.group .modulecontent .item .blog-dsc h4.title {
  text-align: center;
}

.news.group .modulecontent .item:hover {
  box-shadow: 0 0 5px 1px #e4e4e4;
}

.news.group .modulecontent .item:hover .blog-dsc h4.title a {
  color: #0c55a4;
}

/* .content-detail{
	text-align: left;
	font-size: 16px;
	ul, ol {
		text-align: left;
		list-style: initial;
		padding-left: 20px;
		li{
			text-align: left;
			display: list-item;
		}
	}
	p, div, img{
		margin: 5px 0 10px 0;
	}
	img{
		margin: 5px 0 10px 0;
	}
	table{
		width: 100%;
		max-width: 100%;
		margin: 20px auto;
	}
} */
.box_profile {
  padding: 40px 0;
  margin-top: 40px;
  border-top: 1px solid #dedede;
}

.box_profile .profile-list .profile-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.box_profile .profile-list .profile-item .image {
  width: 250px;
  padding: 0 15px 0 0;
  text-align: center;
}

.box_profile .profile-list .profile-item .image img {
  border-radius: 4px;
  width: 100%;
  max-width: 250px;
}

.box_profile .profile-list .profile-item .profile {
  width: calc(100% - 250px);
}

.box_profile .profile-list .profile-item .profile .title {
  font-size: 16px;
  font-weight: 600;
}

.box_profile .profile-list .profile-item .profile ul,
.box_profile .profile-list .profile-item .profile ol {
  list-style: initial;
  margin-left: 20px;
}

/*------------------------------------------------
** Shop
**------------------------------------------------*/
#shop {
  padding: 0;
}

#shop .heading {
  background-image: url("../images/heading_sanpham.jpg");
}

#shop .shop_list,
#shop .shop_detail {
  padding-top: 80px;
}

.shop.shop_list .modulecontent {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 0 -20px;
}

.shop.shop_list .item {
  position: relative;
  margin: 20px 0;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  width: 25%;
}

.shop.shop_list .item .image {
  position: relative;
  /*background: url('../images/bg_circle.png') no-repeat center/auto 80%;*/
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
}

.shop.shop_list .item .image img {
  max-width: 200px;
  visibility: hidden;
  /*background-repeat: no-repeat;
  background-size: auto 80%;
  background-position: center;*/
}

.shop.shop_list .item .image .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  opacity: 0;
  overflow: hidden;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.shop.shop_list .item .image .overlay ul.detail {
  width: calc(100% - 40px);
  margin: auto;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  text-align: center;
}

.shop.shop_list .item .image .overlay ul.detail li {
  display: inline-block;
  width: 40%;
  margin: 0;
  padding: 0;
}

.shop.shop_list .item .image .overlay ul.detail li a {
  display: block;
  text-align: center;
  position: relative;
  line-height: 30px;
  min-height: initial;
}

.shop.shop_list .item .image .overlay ul.detail li a:hover {
  text-decoration: underline;
}

.shop.shop_list .item .image .overlay ul.detail li:last-child {
  width: 58%;
}

.shop.shop_list .item .image .overlay ul.detail li:last-child a:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 1px;
  height: 15px;
  background: #333;
}

.shop.shop_list .item .image:after {
  content: "";
  position: absolute;
  display: block;
  width: 23px;
  height: 23px;
  background-color: rgba(40, 110, 252, 0.08);
  right: 0;
  top: 0;
  transform: translateY(20px);
  border-radius: 50%;
  will-change: transform;
  animation: bubble 1.5s ease-in-out 0s infinite normal;
}

.shop.shop_list .item .info {
  padding: 20px 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex-grow: 1;
}

.shop.shop_list .item .info .title {
  margin: 0 0 5px 0;
  font-weight: 600;
}

.shop.shop_list .item .info .title a {
  font-size: 20px;
}

.shop.shop_list .item .info .price {
  font-size: 18px;
  line-height: 28px;
}

.shop.shop_list .item .info .price.init {
  font-size: 14px;
  color: #8a8a8a;
  font-weight: normal;
  text-decoration: line-through;
  margin-left: 10px;
}

.shop.shop_list .item .info .button {
  margin-top: 10px;
  padding: 10px 25px;
  background-color: #bf0000;
  font-weight: 600;
}

.shop.shop_list .item .info .button i {
  margin-right: 10px;
}

.shop.shop_list .item:hover .image {
  background-size: auto 110%;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.shop.shop_list .item:hover .image .overlay {
  opacity: 1;
  bottom: 15px;
}

.shop.shop_category {
  padding: 80px 0;
}

.shop.shop_category .item {
  margin-bottom: 40px;
}

.shop.shop_category .item h3 {
  text-align: center;
  font-size: 20px;
  font-weight: normal;
  line-height: 2.2;
}

.shop.shop_category .item h3 .count {
  color: #00a1e5 !important;
  margin-left: 5px;
}

.shop.shop_category .item img {
  opacity: 1;
}

.shop.shop_category .item img:hover {
  opacity: 0.5;
}

.shop.shop_detail {
  padding: 40px 10px;
}

.shop.shop_detail .modulecontent {
  display: flex;
  flex-direction: row;
}

.shop.shop_detail .image {
  padding: 0 60px 60px 0;
  max-width: 350px;
}

.shop.shop_detail .info {
  flex-grow: 1;
}

.shop.shop_detail .info .detail {
  position: relative;
}

.shop.shop_detail .info .detail .title {
  color: #6a0d03;
  font-size: 26px;
  padding-bottom: 10px;
}

.shop.shop_detail .info .detail .cart {
  color: #fff;
  border: 1px solid #0c55a4;
  background: #0c55a4;
  opacity: 1;
  margin: 30px 0;
}

.shop.shop_detail .info .detail .cart:hover {
  opacity: 0.8;
}

.shop.shop_detail .info .detail label {
  width: 80px;
  font-weight: 300;
}

.shop.shop_detail .info .detail input[type="number"] {
  width: 50px;
  padding: 0 5px;
  border: 1px solid #ccc;
}

.shop.shop_detail .info label {
  width: 80px;
  font-weight: 300;
  font-size: initial;
}

.shop.shop_detail .info input[type="number"] {
  width: 50px;
  padding: 0 5px;
  border: 1px solid #ccc;
}

.shop.shop_detail .fblike {
  padding: 30px 0;
}

.shop.shop_list.relative .image {
  padding: 0;
}

.shop.shop_cart_detail {
  padding: 40px 0 120px;
}

.shop.shop_cart_detail .modulecontent {
  /*.notice{
  	display: none;
  	&.success {
  		width: 93%;
  		padding: 10px 0 10px 45px;
  		border-top: 2px solid #49B452;
  		border-bottom: 2px solid #49B452;
  		margin: 0 0 20px 5px;
  		font-weight: bold;
  		background: #D7EED9 url(../images/notice-info.png) no-repeat 10px center;
  		font-size: 10pt;
  		color: #49B452;
  	}
  	&.error {
  		width: 93%;
  		padding: 10px 0 10px 45px;
  		border-top: 2px solid #BF0000;
  		border-bottom: 2px solid #BF0000;
  		margin: 0 0 20px 5px;
  		font-weight: bold;
  		background: #FFEAEA url(../images/notice-alert.png) no-repeat 10px center;
  		font-size: 10pt;
  		color: #BF0000;
  	}
  }
  #loading {
  	display: none;
  	background: rgba(0, 0, 0, 0.5);
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	text-align: center;
  	img {
  		position: relative;
  		margin: 0 auto;
  		top: 40%;
  	}
  }*/
}

.shop.shop_cart_detail .modulecontent .show_cart {
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.1);
  position: relative;
}

.shop.shop_cart_detail .modulecontent table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.shop.shop_cart_detail .modulecontent table thead {
  border-bottom: 1px solid #f1f1f1;
  background: #f7f7f7;
}

.shop.shop_cart_detail .modulecontent table thead tr th {
  font-size: 15px;
  height: 60px;
  vertical-align: middle;
  text-align: center;
  color: #565656;
  text-transform: uppercase;
  font-weight: normal;
  padding: 0 5px;
}

.shop.shop_cart_detail .modulecontent table thead tr th.col_num {
  width: 30px;
}

.shop.shop_cart_detail .modulecontent table thead tr th.col_quantity {
  width: 88px;
}

.shop.shop_cart_detail .modulecontent table thead tr th.col_price,
.shop.shop_cart_detail .modulecontent table thead tr th.col_total {
  width: 100px;
}

.shop.shop_cart_detail .modulecontent table tbody tr {
  border-bottom: 1px solid #f5f5f5;
}

.shop.shop_cart_detail .modulecontent table tbody tr td {
  padding: 15px 0px;
  font-size: 14px;
  color: #565656;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #f5f5f5;
}

.shop.shop_cart_detail .modulecontent table tbody tr td:nth-child(1) {
  padding-left: 10px;
}

.shop.shop_cart_detail .modulecontent table tbody tr td:nth-child(1) .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.shop.shop_cart_detail .modulecontent table tbody tr td:nth-child(1) .content .img {
  width: 100px;
  margin-right: 50px;
}

.shop.shop_cart_detail .modulecontent table tbody tr td:nth-child(1) .content .img img {
  width: 100%;
}

.shop.shop_cart_detail .modulecontent table tbody tr td:nth-child(1) .content .text {
  flex-grow: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.shop.shop_cart_detail .modulecontent table tbody tr td:nth-child(1) .content .text p.title {
  color: #0c55a4;
  font-size: 16px;
  margin-bottom: 20px;
}

.shop.shop_cart_detail .modulecontent table tbody tr td:nth-child(1) .content .text .action {
  display: flex;
  flex-wrap: wrap;
}

.shop.shop_cart_detail .modulecontent table tbody tr td:nth-child(1) .content .text .action p.btn-delete .button {
  width: 77px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop.shop_cart_detail .modulecontent table tbody tr td:nth-child(1) .content .text .action p.btn-delete .button .fa {
  margin-right: 8px;
}

.shop.shop_cart_detail .modulecontent table tbody tr td:nth-child(1) .content .text .action input[type="number"] {
  width: 75px;
  height: 35px;
  margin: 0 10px 0 0;
  text-align: center;
  border: 1px solid #cccccc;
  border-radius: 5px;
}

.shop.shop_cart_detail .modulecontent table tbody tr td:nth-child(1) .content .text .action input[type="number"]::-webkit-inner-spin-button {
  opacity: 1;
}

.shop.shop_cart_detail .modulecontent table tbody tr td.col_price,
.shop.shop_cart_detail .modulecontent table tbody tr td.col_total {
  text-align: right;
  /*color: #ff0000;
  font-weight: bold;*/
  font-size: 16px;
  padding-right: 10px;
}

.shop.shop_cart_detail .modulecontent table tbody tr td.col_total {
  border-right: 0px;
}

.shop.shop_cart_detail .modulecontent .note {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.shop.shop_cart_detail .modulecontent .note a {
  font-weight: 600;
}

.shop.shop_cart_detail .modulecontent .note p {
  text-align: right;
  color: #ff0000;
  font-weight: 600;
}

.shop.shop_cart_detail .modulecontent .info {
  /*border-bottom: 2px solid $color_page;*/
  background: #f7f7f7;
  border-top: 1px solid #f1f1f1;
  margin-bottom: 20px;
}

.shop.shop_cart_detail .modulecontent .info .total {
  text-align: right;
}

.shop.shop_cart_detail .modulecontent .info .total h1 {
  float: left;
  width: calc(100% - 150px);
  border-right: 1px solid #f5f5f5;
  text-align: center;
  height: 56px;
  line-height: 56px;
  color: #0c55a4;
  font-size: 20px;
  text-transform: uppercase;
}

.shop.shop_cart_detail .modulecontent .info .total p {
  height: 56px;
  color: #0c55a4;
  font-size: 20px;
  line-height: 56px;
  width: 150px;
  float: right;
  padding-right: 10px;
}

.shop.shop_cart_detail .modulecontent .empty {
  height: 100px;
}

.shop.shop_cart_detail .modulecontent .empty h1 {
  width: 100%;
  height: 100%;
  line-height: 100px;
  font-size: 16px;
  text-transform: uppercase;
  color: #1db12f;
  text-align: center;
}

.shop.shop_cart_detail .modulecontent .cart_order {
  width: 100%;
  background: #fff;
  padding: 0;
  text-align: center;
  margin: 40px 0 0;
  position: relative;
}

.shop.shop_cart_detail .modulecontent .cart_order p {
  text-align: left;
}

.shop.shop_cart_detail .modulecontent .cart_order .row .col {
  padding-left: 0;
}

.shop.shop_cart_detail .modulecontent .cart_order .row .col input,
.shop.shop_cart_detail .modulecontent .cart_order .row .col textarea {
  padding: 10px 0;
}

.shop.shop_cart_detail .modulecontent .cart_order .row .col>label {
  left: 0;
  font-size: 20px;
}

.shop.shop_cart_detail .modulecontent .cart_order .button {
  margin-top: 30px;
  padding: 10px 25px;
  background-color: #bf0000;
  font-weight: 600;
}

.shop.shop_cart_detail .more {
  float: left;
  width: 30%;
  min-width: 285px;
  margin-top: 50px;
}

.shop.shop_cart_detail .more .support {
  border: 1px solid #cdcccc;
  border-radius: 5px;
  padding: 20px;
  padding-left: 77px;
  font-size: 15px;
  background: url(../images/icon-dat-hang.png) no-repeat 26px 50%;
}

.shop.shop_cart_detail .more .commit {
  margin-top: 30px;
  border: 1px solid #cdcccc;
  border-radius: 5px;
  padding: 20px;
}

.shop.shop_cart_detail .more .commit p {
  padding: 15px 0px;
  padding-left: 78px;
}

.shop.shop_cart_detail .more .commit p.cam-ket {
  background: url(../images/icon-tich.png) no-repeat left center/contain;
}

.shop.shop_cart_detail .more .commit p.gia-tot {
  background: url(../images/icon-gia-tot.png) no-repeat left center/contain;
}

.shop.shop_cart_detail .more .commit p.mien-phi {
  background: url(../images/icon-giao-hang.png) no-repeat left center/contain;
}

.shop .cart {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #fff;
  width: 150px;
  margin: 10px auto;
}

.shop .cart:hover {
  color: #ccc;
  border-color: #ccc;
}

.item-fly-product {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 1px solid #c0c0c0;
  border-radius: 100%;
  position: absolute;
  z-index: 9999999;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  animation: mymove 1.8s infinite;
}

@keyframes mymove {
  0% {
    -webkit-transform: scale(0.2);
    -moz-transform: scale(0.2);
    -ms-transform: scale(0.2);
    -o-transform: scale(0.2);
    transform: scale(0.2);
  }

  25% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  75% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    -o-transform: scale(0.1);
    transform: scale(0.1);
  }
}

@keyframes bubble {
  0% {
    transform: translate(0, 0);
  }

  20% {
    transform: translate(-5px, -10px);
  }

  40% {
    transform: translate(10px, -20px);
  }

  60% {
    transform: translate(-5px, -30px);
  }

  80% {
    transform: translate(10px, -40px);
  }

  100% {
    opacity: 0;
  }
}

/*------------------------------------------------
** Multimedia
**------------------------------------------------*/
.multimedia.multimedia_list {
  /*padding: 60px 0;*/
}

.multimedia.multimedia_list .list_item:after {
  content: " ";
  clear: both;
  display: block;
}

.multimedia.multimedia_list .list_item .item {
  /*float: left;*/
  display: inline-block;
  margin: 0 21px 10px;
  position: relative;
  width: calc(33% - 44px);
  max-width: 360px;
}

.multimedia.multimedia_list .list_item .item .image {
  max-width: 360px;
  height: 225px;
  overflow: hidden;
  position: relative;
  background: #f7f7f7;
  border: 1px solid #f1f1f1;
}

.multimedia.multimedia_list .list_item .item .image img {
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.multimedia.multimedia_list .list_item .item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: rgba(0, 161, 229, 0.8);
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.multimedia.multimedia_list .list_item .item .overlay .detail {
  color: white;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.multimedia.multimedia_list .list_item .item .overlay .detail .read_more {
  color: yellow;
  font-size: 20px;
}

.multimedia.multimedia_list .list_item .item .overlay .detail .read_more:hover {
  color: #ccc;
}

.multimedia.multimedia_list .list_item .item .overlay .detail .title {
  white-space: nowrap;
  color: #fff;
  font-size: 16px;
  padding: 5px 20px;
  /*border: 1px solid $color_page_2;*/
  background: #75bce7;
  border-radius: 20px;
}

.multimedia.multimedia_list .list_item .item .overlay .detail .title:hover {
  background: #75bce7;
}

.multimedia.multimedia_list .list_item .item span.title {
  display: block;
  height: 60px;
  line-height: 30px;
  overflow: hidden;
}

.multimedia.multimedia_list .list_item .item span.title i {
  float: right;
  color: #949494;
}

.multimedia.multimedia_list .list_item .item:hover .overlay {
  height: calc(100% - 60px);
}

.multimedia.multimedia_list ul.da-thumbs li {
  width: calc(33.3333333333% - 30px);
}

.multimedia.multimedia_list ul.da-thumbs li span {
  display: block;
  padding: 10px 0;
}

/*------------------------------------------------
** Contact
**------------------------------------------------*/
.box-agency {
  padding: 80px 0 50px;
}

.box-agency .contentWrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 30px;
}

.box-agency .contentWrapper .search {
  width: calc(50% - 30px);
  margin-right: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.1);
}

.box-agency .contentWrapper .search label {
  margin-bottom: 5px;
  font-weight: 600;
}

.box-agency .contentWrapper .search select {
  margin-bottom: 10px;
  height: 35px;
}

.box-agency .contentWrapper .search .info-agency {
  padding-top: 20px;
}

.box-agency .contentWrapper .search .info-agency ul li {
  background: url("../images/bullet.png") no-repeat left 7px;
  margin-bottom: 10px;
  padding-left: 20px;
}

.box-agency .contentWrapper .search .info-agency ul li b {
  font-weight: 600;
}

.box-agency .contentWrapper .map {
  width: 50%;
}

.box-agency .contentWrapper table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.box-agency .contentWrapper table thead {
  border-bottom: 1px solid #f1f1f1;
  background: rgba(0, 161, 229, 0.5);
}

.box-agency .contentWrapper table thead tr th {
  font-size: 14px;
  height: 60px;
  vertical-align: middle;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-weight: normal;
  padding: 0 5px;
}

.box-agency .contentWrapper table tbody tr {
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
}

.box-agency .contentWrapper table tbody tr td {
  padding: 5px 10px;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #f5f5f5;
}

.box-agency .contentWrapper table tbody tr:nth-child(odd) {
  background: rgba(239, 239, 239, 0.9);
}

.box-agency .contentWrapper table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.9);
}

.box-agency .contentWrapper table tbody tr:hover {
  background: rgba(208, 208, 208, 0.9);
}

.box-agency.home {
  background-color: #f5f6fa;
  padding-bottom: 120px;
}

#contact_inner {
  width: 100%;
  background: #f5f6fa;
  padding: 80px 0 120px;
}

#contact_inner .contact {
  background: #fff;
  padding: 50px;
  box-shadow: 0 0 35px #ddd;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

#contact_inner input[type="text"],
#contact_inner input[type="email"],
#contact_inner textarea {
  display: inline-block;
  outline: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 15px 0px 15px 15px;
  background: white;
  border: 1px solid #d4d4d4;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-family: "Roboto";
  color: #3498d9;
  margin-bottom: 20px;
  font-size: 11pt;
  font-weight: normal;
  line-height: 1.2;
}

#contact_inner input[type="text"].error,
#contact_inner input[type="email"].error,
#contact_inner textarea.error {
  border: 1px solid red;
}

#contact_inner input[type="submit"] {
  background: #f9461d none repeat scroll 0 0 !important;
  border: 1px solid #f9461d !important;
  color: #fff !important;
  font-size: 14px;
  padding: 10px 30px !important;
  text-transform: capitalize;
  transition: all 0.2s ease 0s;
  border-radius: 30px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
}

#contact_inner .contact-info {
  width: 40%;
  float: left;
  margin-right: 10%;
  text-align: left;
}

#contact_inner .contact-info ul.contact-list li {
  position: relative;
  margin-bottom: 15px;
  height: 60px;
  overflow: hidden;
}

#contact_inner .contact-info ul.contact-list li a,
#contact_inner .contact-info ul.contact-list li span {
  display: block;
  font-size: 16px;
  line-height: 3;
  color: #000;
}

#contact_inner .contact-info ul.contact-list li img {
  width: 50px;
  margin-right: 15px;
  float: left;
}

#contact_inner .contact-info ul.contact-list li .fa {
  width: 50px;
  height: 50px;
  float: left;
  margin-right: 15px;
  background: #cccccc;
  text-align: center;
  position: relative;
}

#contact_inner .contact-info ul.contact-list li .fa:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #0c55a4;
}

#contact_inner .contact-info ul.contact-list li:after {
  display: block;
  content: " ";
  clear: both;
}

#contact_inner .contact-info ul.contact-list h3 {
  margin-bottom: 10px;
  color: #000;
}

#contact_inner .contact-form {
  width: 50%;
  float: right;
  position: relative;
}

#contact {
  padding: 0;
}

#contact .heading {
  background-image: url("../images/heading_contact.jpg");
}

#contact .contact h2.title {
  font-style: normal;
  font-size: 35px;
  line-height: 1.16;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.015em;
  text-align: inherit;
  color: #404040;
  margin-top: 10px;
}

#contact .contact input.text::-ms-clear {
  display: none;
}

#contact .map {
  background: #ccc;
}

#contact .map iframe {
  width: 100%;
  height: 100%;
}

/*------------------------------------------------
** Faqs
**------------------------------------------------*/
.section-faqs .module {
  overflow: initial;
}

.section-faqs .container {
  max-width: 900px;
  padding-bottom: 100px;
}

.box-main-content {
  padding: 20px;
}

.box-main-content .list_qa .qa_item {
  border-left: 3px solid #0c55a4;
  padding: 15px 15px 15px 20px;
  margin-bottom: 30px;
  font-size: 16px;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 15px 0px #e8e8e8;
  overflow: hidden;
}

.box-main-content .list_qa .qa_item .box-qa-question {
  color: #0c55a4;
  font-weight: 600;
  line-height: 1.5;
  padding-bottom: 8px;
}

.box-main-content .list_qa .qa_item .box-qa-datetime {
  font-size: 14px;
  padding: 10px 0;
}

.box-main-content .list_qa .qa_item section {
  padding: 0;
}

.box-main-content .list_qa .qa_item:last-child {
  margin: 0;
}

.box-main-content .form-info {
  padding: 15px 0;
}

.box-main-content .form-info>div>.row {
  padding-bottom: 20px;
}

.box-main-content .form-info>div>.row label {
  padding-bottom: 8px;
}

.box-main-content .form-info .header-info {
  color: #0c55a4;
  font-size: 30px;
  padding: 10px 0;
  font-weight: 600;
}

.box-main-content .form-info .form-info-submit {
  border-radius: 5px;
  background-color: #0c55a4;
  border: 0;
  padding: 15px 40px;
  margin: 0;
  font-weight: 600;
}

.box-main-content .form-info .star-info {
  color: #fc4850;
}

.box-main-content .form-info .form-input {
  width: 100%;
  font-size: 16px;
  height: 39px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.box-main-content .form-info .form-input select,
.box-main-content .form-info .form-input input {
  border: 1px solid #afb3b6;
  padding: 5px 10px;
  width: 100%;
  background-color: #e4edf3;
  height: 39px;
}

.box-main-content .content-title {
  font-size: 22px;
  font-weight: 600;
}

.box-main-content .content-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f1f1f1;
}

.box-main-content .content-date .extra {
  display: flex;
}

.box-main-content .content-date .extra .lbl-data {
  display: flex;
  align-items: center;
  padding-right: 30px;
}

.box-main-content .content-date .extra .lbl-data img {
  padding-right: 8px;
}

.box-main-content .content-date .extra .fblike {
  text-align: left;
  width: 138px;
}

.box-main-content .content-description {
  padding: 10px 0;
  font-weight: 600;
}

.box-main-content .content-detail {
  text-align: left;
  font-size: 16px;
  text-align: justify;
}

.box-main-content .content-detail ul,
.box-main-content .content-detail ol {
  text-align: left;
  list-style: initial;
  padding-left: 20px;
}

.box-main-content .content-detail ul li,
.box-main-content .content-detail ol li {
  text-align: left;
  display: list-item;
}

.box-main-content .content-detail p,
.box-main-content .content-detail img {
  margin: 5px 0 10px 0;
}

.box-main-content .content-detail table {
  width: 100%;
  max-width: 100%;
}

.box-main-content .content-detail hr {
  background-color: #779dae;
  margin-bottom: 15px;
}

.box-main-content .content-detail iframe {
  max-width: 100%;
}

.form {
  box-shadow: 0 0 15px -5px #b1b1b1;
  padding: 30px;
  margin-bottom: 30px;
}

.form input[type="text"],
.form input[type="email"],
.form textarea {
  display: inline-block;
  outline: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 22px 0px 22px 20px;
  background: #edf4f8;
  border: 1px solid #fbfbfb;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 20px;
  color: #3498d9;
  margin-bottom: 20px;
  font-size: 11pt;
  line-height: 1.2;
}

.form input[type="text"].error,
.form input[type="email"].error,
.form textarea.error {
  border: 1px solid red;
}

.form a.button {
  color: #fff;
  width: 120px;
  font-size: 15px;
  padding: 10px 0;
}

.form a.button:hover {
  color: #fff;
}

#faqs .heading {
  background-image: url("../images/heading_faqs.jpg");
}

.faqs {
  margin-bottom: 30px;
}

.faqs .box-main-content {
  padding: 0;
}

.faqs .head_title {
  text-align: center;
  margin: 40px auto;
}

.faqs .head_title h2 {
  text-transform: uppercase;
  font-size: 30px;
}

.faqs.faqs-list .module-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.faqs.faqs-list .item {
  margin-bottom: 30px;
  border-radius: 5px;
  box-shadow: 0 0 15px -5px #909090;
  padding: 16px 22px;
}

.faqs.faqs-list .item .wrap {
  position: relative;
  overflow: hidden;
}

.faqs.faqs-list .item .wrap .content {
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.faqs.faqs-list .item .wrap .published {
  text-align: right;
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.faqs.faqs-list .item .wrap .published span {
  position: relative;
  padding-left: 20px;
  line-height: 1.22;
}

.faqs.faqs-list .item .wrap .published span:before {
  position: absolute;
  content: "\f017";
  font-family: "FontAwesome";
  font-size: 16px;
  left: 0;
  top: 0;
  color: #5bc8a5;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #b4b4b4;
}

.faqs.faqs-list .item.active .wrap {
  color: #000;
}

.faqs.faqs-list .item.active .wrap .title {
  color: #75bce7;
}

/*------------------------------------------------
** FOOTER
**------------------------------------------------*/
footer {
  z-index: 1;
  position: relative;
}

footer .section-wave {
  top: 0;
  bottom: initial;
  transform: translateY(-100%);
}

footer .container {
  /* background: #e1eafd; */
  max-width: 100%;
  text-align: center;
  padding: 30px 20px 0;
  overflow: hidden;
}

footer .container .container_inner {
  max-width: 950px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
  padding: 60px 0;
  text-align: left;
  font-family: "Quicksand", sans-serif;
}

footer .container .container_inner h3 {
  font-size: 20px;
  color: #145faa;
  margin-bottom: 10px;
  line-height: 1.4;
}

footer .container .container_inner a {
  color: #000;
}

footer .container .container_inner a:hover {
  color: #0c55a4;
}

footer .container .container_inner .company {
  width: 30%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  /*p {background: url('../images/icon_pos.png') no-repeat left 6px;padding-left: 30px;margin-bottom: 10px;max-width:320px}
  p:nth-child(3) {background: url('../images/icon_phone.png') no-repeat left center;}
  p:nth-child(4) {background: url('../images/icon_mail.png') no-repeat left center;}*/
}

footer .container .container_inner .company img {
  width: 150px;
  margin-right: 20px;
}

footer .container .container_inner .company p {
  margin-bottom: 6px;
  max-width: 320px;
}

footer .container .container_inner .company .fa {
  margin-right: 8px;
}

footer .container .container_inner .services {
  width: 30%;
  padding: 0 15px;
}

footer .container .container_inner .services ul li a {
  display: block;
  margin-bottom: 6px;
}

footer .container .container_inner .services ul li a i {
  margin-right: 5px;
}

footer .container .container_inner .newsletter {
  width: 30%;
  max-width: 460px;
  padding-right: 30px;
  position: relative;
}

footer .container .container_inner .newsletter #newsletter {
  display: block;
  position: relative;
  z-index: 3;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  width: 100%;
}

footer .container .container_inner .newsletter #newsletter .form_label {
  width: 100%;
  padding: 2px 67px 2px 50px;
  margin: 12px 0 0;
  background: rgb(255, 255, 255);
  border: 1px solid #145faa;
  border-radius: 3px;
  position: relative;
  display: flex;
  flex-direction: row;
}

footer .container .container_inner .newsletter #newsletter .form_label:before {
  content: "\f003";
  position: absolute;
  top: 9px;
  left: 13px;
  height: 22px;
  font: 300 25px/25px "FontAwesome";
  color: #145faa;
}

footer .container .container_inner .newsletter #newsletter .form_label .form_input {
  color: #000000;
  display: block;
  width: 100%;
  min-width: 90px;
  font-size: 15px;
  line-height: 16px;
  height: 40px;
  border: 0;
  padding: 0;
  margin: 0;
  font-weight: normal;
}

footer .container .container_inner .newsletter #newsletter .form_label .form_input:focus {
  box-shadow: none;
}

footer .container .container_inner .newsletter #newsletter .form_label.error {
  border: 1px solid #bf0000;
}

footer .container .container_inner .newsletter #newsletter .form_submit {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  color: #fff;
  background: #145faa;
  width: 70px;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  padding: 0;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 0;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

footer .container .container_inner .newsletter #newsletter .form_submit:hover {
  background: #0c55a4;
}

footer .container .footer-info {
  /* border-top: 1px solid #d8e3fd; */
  padding-top: 20px;
  padding-bottom: 10px;
}

footer .container .footer-info .container_inner {
  padding: 0;
}

footer .container .footer-info .container_inner.footer-grid {
  align-items: center;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 24px;
}

footer .container .footer-info .footer-brand {
  max-width: 520px;
}

footer .container .footer-info .footer-brand h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

footer .container .footer-info .footer-contact {
  max-width: 520px;
}

footer .container .footer-info .footer-contact .phone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

footer .container .footer-info .footer-contact .phone .mail {
  padding-left: 30px;
}

@media only screen and (max-width: 991px) {
  header .header-topbar__item--address {
    display: none;
  }

  nav.main_menu .menu_inner .main_menu__cta {
    display: none;
  }

  footer .container .footer-info .container_inner.footer-grid {
    flex-direction: column;
  }
}

footer .container .footer-info .text label {
  margin-bottom: 5px;
  font-size: 16px;
  color: #000;
}

footer .container .footer-info .text p {
  padding-left: 30px;
  margin-bottom: 10px;
}

footer .container .footer-info .text .address {
  background: url("../images/icon_pos.png") no-repeat left center;
}

footer .container .footer-info .text .phone {
  background: url("../images/icon_phone.png") no-repeat left center;
}

footer .container .footer-info .text .mail {
  background: url("../images/icon_mail.png") no-repeat left center;
  padding-left: 30px;
}

footer .container .footer-info .text .dkkd {
  padding: 0;
}

footer .container .footer-info .text .dkkd .fa {
  margin: 0 12px 0 2px;
}

footer .container .copyright {
  margin-top: 10px;
  padding: 10px 0;
  border-top: 1px solid #d8e3fd;
}

/*------------------------------------------------
** PAGING
**------------------------------------------------*/
.pagination {
  margin: 20px auto 10px;
  text-align: center;
  padding: 0;
  list-style: none;
}

.pagination li {
  display: inline-block;
}

.pagination li span,
.pagination li a {
  font: 14px/24px sans-serif;
  display: inline-block;
  padding: 0px 9px;
  margin-right: 4px;
  border-radius: 3px;
  border: solid 1px #c0c0c0;
  background: #e9e9e9;
  box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.8),
    0px 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 0.875em;
  font-weight: normal;
  text-decoration: none;
  color: #717171;
  text-shadow: 0px 1px 0px rgb(255, 255, 255);
}

.pagination li a:hover {
  background: #fefefe;
  background: -webkit-gradient(linear,
      0% 0%,
      0% 100%,
      from(#fefefe),
      to(#f0f0f0));
  background: -moz-linear-gradient(0% 0% 270deg, #fefefe, #f0f0f0);
}

.pagination li.active span {
  border: none;
  background: #616161;
  box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.5),
    0px 1px 0px rgba(255, 255, 255, 0.8);
  color: #f0f0f0;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
}

.pagination .limit {
  margin: 10px auto;
}

.pagination .limit select {
  border-radius: 3px;
  min-width: 50px;
}

/*------------------------------------------------
** BOX ACTION
**------------------------------------------------*/
.box_action {
  width: 60px;
  text-align: center;
  display: block;
  position: fixed;
  bottom: 245px;
  right: 18pt;
  z-index: 99;
  padding: 10px 0;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3pt 12pt;
  background: #fff;
  visibility: hidden;
}

.box_action .gotop {
  display: none;
  opacity: 0.6;
  width: 40px;
  height: 40px;
  margin: 0 auto 0;
  background: #75bce7;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: height 450ms ease;
  -moz-transition: height 450ms ease;
  -ms-transition: height 450ms ease;
  -o-transition: height 450ms ease;
  transition: height 450ms ease;
  border-radius: 50%;
  border: 1px solid rgba(144, 148, 156, 0.36);
}

.box_action .gotop:before {
  position: absolute;
  content: "\f106";
  font-family: "FontAwesome";
  top: 0;
  left: 2px;
  font-size: 40px;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  height: 100%;
  line-height: 34px;
}

.box_action .gotop:hover {
  opacity: 1;
}

.box_action .gotop.active {
  display: block;
}

.box-balon {
  display: block;
  width: 350px;
  /*height: 200px;*/
  position: fixed;
  right: 100px;
  bottom: 0px;
  z-index: 9999;
  border-left: 1px solid #949494;
  border-right: 1px solid #949494;
  border-bottom: 1px solid #949494;
}

.box-balon .message {
  float: left;
  font-size: 14px;
  margin-left: 5px;
  margin-top: 5px;
  text-transform: uppercase;
  text-align: center;
}

.box-balon .balon-close {
  width: 100%;
  height: 30px;
  clear: both;
  background: url(../images/bg-tip.png) repeat-x;
}

.box-balon .balon-close .close-tip {
  width: 20px;
  height: 25px;
  float: right;
  margin-right: 4px;
  cursor: pointer;
}

.box-balon .balon-close #balon-delete {
  background: url(../images/but-control.png) no-repeat scroll 4px 9px transparent;
}

.box-balon .balon-close #balon-hide {
  background: url(../images/but-control.png) no-repeat scroll -50px 8px transparent;
}

.box-balon .balon-close #balon-show {
  background: url(../images/but-control.png) no-repeat scroll -20px 8px transparent;
  display: none;
}

.box-balon iframe {
  width: 100%;
}

.open_app {
  overflow: hidden;
  position: fixed;
  right: 5px;
  bottom: -320px;
  transition: bottom 500ms ease;
  z-index: 999;
  max-width: 310px;
  width: 100%;
}

.open_app .box_hotro {
  background: #0c55a4;
  color: #fff;
  line-height: 40px;
  padding: 0 15px;
  cursor: pointer;
  font-size: 15px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.open_app .box_hotro .hideface:before {
  border-style: solid;
  border-width: 0.25em 0.25em 0 0;
  content: "";
  display: inline-block;
  height: 15px;
  top: 18px;
  transform: rotate(-45deg);
  vertical-align: top;
  width: 15px;
  right: 14px;
  position: absolute;
}

.open_app.active {
  bottom: 0px;
}

.open_app.active .box_hotro .hideface:before {
  top: 9px;
  transform: rotate(132deg);
}

.icon_zalo {
  width: 60px;
  height: 60px;
  text-align: center;
  display: block;
  position: fixed;
  bottom: 88px;
  right: 18pt;
  z-index: 99;
  padding: 10px 0;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3pt 12pt;
  background: #3498db;
}

.icon_zalo a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.icon_zalo a img {
  height: 50px;
}

.icon_zalo:hover {
  background: #145faa;
}

.icon_facebook {
  width: 60px;
  height: 60px;
  text-align: center;
  display: block;
  position: fixed;
  bottom: 165px;
  right: 18pt;
  z-index: 99;
  padding: 10px 0;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3pt 12pt;
  background: #3f78e0;
}

.icon_facebook a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.icon_facebook a img {
  height: 50px;
}

.icon_facebook:hover {
  background: #145faa;
}

.more {
  position: relative;
}

.more .loading {
  display: none;
  /*background: rgba(0, 0, 0, 0.5); */
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99999;
  text-align: center;
}

.more .readmore {
  text-align: center;
  padding: 30px 0;
}

.contact-fixed {
  position: fixed;
  right: 20px;
  bottom: 10px;
  z-index: 999;
}

.contact-fixed .inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-fixed .inner .phone {
  position: relative;
  /*padding: 3px 20px;*/
  border-radius: 3px;
  font-weight: 600;
  line-height: 0;
  margin: 10px;
  /*border: 1px solid #208f5c;*/
}

.contact-fixed .inner .phone .fa {
  color: #fff;
  background: #31d256;
  border-radius: 50%;
  padding: 10px;
  margin: 2px 0 0 19px;
  animation: 1s ease-in-out 0s normal none infinite running ring;
  font-size: 35px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
}

.contact-fixed .inner .phone .number {
  color: #31d256;
}

.contact-fixed .inner .phone .ring {
  animation: 1.2s ease-in-out 0s normal none infinite running ring-circle;
  background-color: #31d256;
  border-radius: 100%;
  height: 85px;
  left: 1px;
  opacity: 0.1;
  position: absolute;
  top: -18px;
  transform-origin: 50% 50% 0;
  transition: all 0.5s ease 0s;
  width: 85px;
}

.contact-fixed .inner .button {
  padding: 15px 20px;
  border: 1px solid #fff;
  background: #bf0000;
  color: #fff;
}

.iframe-video {
  width: 100%;
  padding-top: 56.25% !important;
  position: relative;
}

.iframe-video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.popup-home {
  background: rgba(0, 0, 0, 0.76);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease 0s;
  z-index: 999999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-home h1 {
  margin-bottom: 20px;
  text-align: center;
}

.popup-home .popup-inner {
  background: linear-gradient(180deg, white, rgb(122, 205, 255));
  box-shadow: 0 0 7px 1px #222222;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 550px;
  background-color: #fff;
  z-index: 9999999;
  overflow: hidden;
}

.popup-home .popup-inner .popup-close {
  position: absolute;
  height: 30px;
  width: 30px;
  top: 10px;
  right: 10px;
  cursor: pointer;
  display: block;
  font-size: 30px;
  opacity: 1;
  line-height: 20px;
  color: #000000;
  z-index: 99;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-home .popup-inner .popup-close i {
  font-size: 20px;
}

.popup-home .popup-inner .inner {
  padding: 0;
  position: relative;
}

.popup-home .popup-inner .inner .left img {
  height: 100%;
}

.popup-home .popup-inner .inner .right {
  padding: 16px;
}

.popup-home .popup-inner .inner .right .contact-form {
  padding: 20px 10px 0;
}

.popup-home .popup-inner .inner .right .box-title {
  font-size: 26px;
  text-align: center;
}

.popup-home .popup-inner .inner .right .form {
  margin: 0;
  box-shadow: initial;
}

.popup-home .popup-inner .inner .right .form p {
  text-align: center;
}

.popup-home .popup-inner .inner label {
  color: #000;
  margin: 20px 0 5px;
}

.popup-home .popup-inner .inner input,
.popup-home .popup-inner .inner textarea {
  color: #000;
}

.popup-home .popup-inner .inner input::placeholder,
.popup-home .popup-inner .inner textarea::placeholder {
  color: #000;
}

.popup-home .popup-inner .inner select {
  width: 100%;
  color: #000;
  outline: none;
  border: 1px solid #cccccc;
  border-radius: 3px;
  vertical-align: baseline;
  background-color: transparent;
  box-shadow: none;
  padding: 5px;
}

.popup-home .popup-inner .inner select option {
  color: #0c55a4;
}

.popup-home .popup-inner .inner .group {
  margin-top: 15px;
}

.popup-home .popup-inner .inner .group.first-child {
  margin-top: 0;
}

.popup-home .popup-inner .inner .button {
  margin: 20px auto auto;
}

.popup-home .popup-inner .money {
  margin-bottom: 10px;
}

.popup-home .popup-inner p {
  margin-bottom: 5px;
}

.popup-home .popup-inner p.online {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}

.popup-home .popup-inner p.noidung {
  margin-top: 15px;
}

.popup-home.active {
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}

.popup-home .online,
.popup-home .no-online {
  display: none;
}

.popup-home .online.active,
.popup-home .no-online.active {
  display: block;
}

/* materialize */
.collapsible {
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  margin: 0.5rem 0 1rem 0;
}

.collapsible li {
  position: relative;
}

.collapsible li .collapsible-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.5;
  padding: 1rem;
  background-color: #fff;
  border-bottom: 1px solid #f1f1f1;
  color: #145faa;
}

.collapsible li .collapsible-body {
  display: none;
  border-bottom: 1px solid #ddd;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 2rem;
}

.collapsible li .collapsible-body dl {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 0 0 10px;
  border-bottom: 1px solid #f1f1f1;
  margin: 10px 0 0 0;
}

.collapsible li .collapsible-body dl:last-child {
  border: 0;
}

.collapsible li .collapsible-body dl dt {
  width: 50%;
  text-align: left;
  font-weight: 300;
}

.collapsible li .collapsible-body dl dd {
  width: 50%;
  text-align: right;
}

.collapsible li:after {
  position: absolute;
  top: 10px;
  right: 0;
  font-family: FontAwesome;
  content: "\f107";
}

.collapsible li.active:after {
  content: "\f106";
  right: 10px;
}

.collapsible.popout {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.collapsible.popout>li {
  /*-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);*/
  margin: 0 24px;
  -webkit-transition: margin 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: margin 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collapsible.popout>li.active {
  -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18),
    0 4px 15px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  margin: 16px 0;
}

/*------------------------------------------------
** MEDIA ONLY SCREEN
**------------------------------------------------*/
@media (min-width: 992px) {
  .section-wave svg {
    height: 45px;
  }
}

@media only screen and (max-width: 1200px) {
  .page {
    padding-top: 56px;
  }

  .page .rd-mobilemenu,
  .page .rd-mobilepanel {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .page .main_menu {
    display: none;
  }

  .page .slider {
    /* margin-top: 0; */
  }

  nav.top {
    display: none;
  }

  header {
    display: none;
  }

  .box-map .container .map-item {
    width: 100%;
  }
}

@media only screen and (max-width: 1100px) {
  .box-intro .contentWrapper .content {
    width: 57%;
  }

  .box-intro .contentWrapper .image {
    width: 40%;
  }

  .box-properties .contentWrapper .imageWrapper .image {
    width: calc(33.3333333333% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }

  .box-properties .contentWrapper .imageWrapper .image.pro4 {
    margin-top: 0;
  }

  .shop.shop_list .item {
    width: 33.3333333333%;
  }
}

@media only screen and (max-width: 1000px) {
  .head-title span {
    font-size: 25px;
  }

  header .company .name p {
    font-size: 18px;
  }

  .box-intro .contentWrapper .content {
    width: 47%;
  }

  .box-intro .contentWrapper .content .range .item {
    width: 100%;
  }

  .box-intro .contentWrapper .image {
    width: 50%;
  }

  #main-body #main-content {
    display: flex;
    flex-direction: column-reverse;
  }

  #main-body #main-content #center {
    margin: 0;
  }

  #main-body #main-content #sidebar {
    float: initial;
    max-width: 100%;
    will-change: initial;
  }

  #main-body #main-content #sidebar .sidebar__inner {
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    position: relative !important;
    transform: initial !important;
  }

  #main-body #main-content #sidebar .sidebar__inner .sidebar_contact:before {
    display: none;
  }

  #main-body #main-content #sidebar .sidebar__inner .news.latest .modulecontent {
    display: flex;
    flex-wrap: wrap;
  }

  #main-body #main-content #sidebar .sidebar__inner .news.latest .item {
    width: calc(50% - 60px);
    margin: 0 30px;
  }

  #news .sidebar {
    display: none;
  }

  .box_intro .contentWrapper {
    justify-content: center;
  }

  .box_intro .contentWrapper .image {
    width: initial;
  }

  .box_intro .contentWrapper .content {
    width: 100%;
    margin: 30px 0;
  }

  .box_intro .contentWrapper .content .range .item {
    margin-bottom: 30px;
  }

  .sidebar.sb_contact h5 {
    padding-top: 30px;
  }

  .shop.shop_cart_detail .more {
    float: initial;
    width: 100%;
    display: flex;
    padding-bottom: 30px;
    justify-content: space-evenly;
  }

  .shop.shop_cart_detail .more .support {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .shop.shop_cart_detail .more .commit {
    margin: 0;
  }

  .box_contact {
    padding: 0;
  }

  .box_contact .container {
    flex-direction: column-reverse;
  }

  .box_contact .container .map {
    width: 100%;
  }

  .box_contact .container .info {
    width: 90%;
    max-width: initial;
  }

  .rating-page .rating-container .box-header__title {
    font-size: 20px;
  }

  .rating-page .rating-container .rating__list .rating__item {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
  }

  .rating-page .rating-container .rating__list .rating__item .action {
    width: 100%;
    margin-top: 0;
  }

  .rating-page .rating-container .rating__list .rating__item .action label p {
    padding: 4px 8px;
  }

  .rating-page .rating-container .rating__list .rating__item .action label p i {
    font-size: 14px;
  }

  .rating-page .rating-container .rating__list .rating__item .action label p span {
    font-size: 14px;
  }

  .rating-page .rating-container .rating__list .rating__item .title {
    font-size: 14px;
  }

  .rating-page .rating-container .rating__list .rating__item .index {
    width: 30px;
    height: 30px;
  }

  .rating-page .rating-container .rating__reaction .reaction__list {
    flex-wrap: wrap;
  }

  .rating-page .rating-container .rating__reaction .reaction__list .item {
    width: auto;
  }

  .rating-page .rating-container .rating__reaction .reaction__list .item .wrap svg {
    width: 30px !important;
    height: 30px !important;
  }

  .rating-page .rating-container .rating__reaction .reaction__list .item .wrap span {
    font-size: 12px !important;
  }

  .rating-page .rating-container .rated-wrap .image {
    display: none;
  }

  .rating-page .rating-container .rated-wrap .list .item {
    align-items: flex-start;
  }

  .rating-page .rating-container .rated-wrap .list .item h3 {
    white-space: unset;
    overflow: unset;
    text-overflow: unset;
    text-align: left !important;
    width: 100%;
    flex: 1;
  }

  .rating-page .rating-container .rated-wrap .list .item>* {
    display: block !important;
  }

  .rating-page .rating-container .rated-wrap .list .item>* .is_valid {
    text-align: left !important;
  }

  .rating-page .rating-container .rated-wrap .list .item.content .desc {
    text-align: left;
  }

  .rating-page .rating-container .rated-wrap .list .item .is_valid {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
  }

  .rating-page .rating-container {
    margin: 20px 0;
  }

  .rating-page .banner img {
    height: 56px;
    object-fit: cover;
  }
}

@media only screen and (max-width: 900px) {
  .box-intro .contentWrapper .content {
    width: 100%;
    margin: 0;
  }

  .box-intro .contentWrapper .content .range {
    margin-bottom: 30px;
  }

  .box-intro .contentWrapper .content .range .item {
    width: 50%;
  }

  .box-intro .contentWrapper .image {
    width: 100%;
  }

  .box-generator {
    padding: 60px 0;
  }

  .box-generator .contentWrapper {
    flex-direction: column;
  }

  .box-generator .contentWrapper .image {
    width: 100%;
    padding-bottom: 40px;
  }

  .box-generator .contentWrapper .content {
    width: 100%;
    margin: 0 0 30px;
  }

  .box-agency .contentWrapper .search {
    width: 100%;
    margin: 0 0 30px;
  }

  .box-agency .contentWrapper .map {
    width: 100%;
  }

  footer .container .container_inner {
    max-width: 780px;
  }

  footer .container .container_inner .company {
    width: 40%;
    margin-bottom: 30px;
  }

  footer .container .container_inner .company .footer_logo {
    display: none;
  }

  footer .container .container_inner .services {
    width: 40%;
    padding: 0;
  }

  footer .container .container_inner .newsletter {
    width: 100%;
    padding: 0;
    margin: auto;
  }
}

@media only screen and (max-width: 767px) {
  .box-about .contentWrapper .inner {
    flex-direction: column;
  }

  .box-about .contentWrapper .inner .text,
  .box-about .contentWrapper .inner .image {
    width: 100%;
    padding: 0;
  }

  .box-mission .inner {
    max-width: 600px;
    margin: auto;
  }

  .box-mission .inner .box {
    flex-wrap: wrap;
    padding: 30px 30px 65px 65px;
  }

  .box-mission .inner .box .aside {
    width: 100%;
  }

  .box-mission .inner .box .divider {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
  }

  .box-mission .inner .box .main {
    width: 100%;
  }

  .box-award .inner .imagesWrapper .image {
    width: calc(50% - 30px);
  }

  .box-properties .contentWrapper .imageWrapper .image {
    width: calc(50% - 40px);
    margin: 20px !important;
  }

  /* .news.news_list .item {
    width: calc(100% - 60px);
    margin: 0 30px 30px;
  } */

  #main-body #sidebar .sidebar__inner .news.latest .item {
    width: 100%;
    margin: 0 0 30px;
  }

  .shop.shop_list .item {
    width: 50%;
  }

  #contact_inner .contact {
    padding: 30px;
  }
}

@media only screen and (max-width: 700px) {
  header .company .name p {
    font-size: 15px;
  }

  #main-body #main-content #sidebar .sidebar__inner .news.latest .item {
    width: 100%;
    margin: 0;
  }

  .shop.shop_detail .modulecontent {
    flex-direction: column;
  }

  .shop.shop_detail .modulecontent .image {
    padding-right: 0;
  }

  .news.news_list .item.col {
    flex-direction: column;
  }

  .news.news_list .item.col a.image {
    width: 100%;
  }

  .news.news_list .item.col .blog-dsc {
    width: 100%;
    padding: 0;
  }

  .news.news_list .item.col .blog-dsc h4.title {
    margin: 10px 0;
  }

  footer .container .container_inner .footer_logo {
    display: none;
  }

  footer .container .container_inner .text_inner {
    padding: 0;
  }
}

@media only screen and (max-width: 600px) {
  .box-intro .contentWrapper .content .range .item {
    width: 100%;
  }

  .box-reason .container {
    padding: 0;
  }

  .box-reason .contentWrapper .content .image {
    padding-right: 15px;
  }

  .box-reason .contentWrapper .content .image img.pc {
    display: none;
  }

  .box-reason .contentWrapper .content .image img.mb {
    display: block;
    width: 100%;
  }

  .shop.shop_cart_detail .more {
    flex-direction: column;
  }

  .shop.shop_cart_detail .more .commit {
    margin-top: 30px;
  }

  .box-balon {
    display: none;
  }

  footer .container .container_inner .company {
    width: 100%;
  }

  footer .container .container_inner .services {
    width: 100%;
    margin-bottom: 30px;
  }

  footer .container .container_inner .newsletter {
    width: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 550px) {
  header .company {
    display: none;
  }

  .box-award .inner .imagesWrapper .image {
    width: calc(100% - 30px);
  }

  .box-properties .contentWrapper .imageWrapper .image {
    width: calc(100% - 40px);
    max-width: 350px;
    margin: 20px 0 !important;
  }

  .shop.shop_list .item {
    width: 100%;
  }

  #contact_inner .contact {
    padding: 20px 10px;
  }

  #contact_inner .contact .contact {
    box-shadow: initial;
    padding: 0;
  }

  .box-map .container {
    padding: 20px;
  }
}

@media only screen and (max-width: 360px) {
  header .container .wrapper .logo {
    padding: 15px 10px 0 10px;
  }

  header .container .wrapper .logo a img {
    width: 50px;
    height: auto;
  }
}

@keyframes zoomIcon {
  25% {
    transform: scale(1.1, 1.1);
  }

  50% {
    transform: scale(1.2, 1.2);
  }

  75% {
    transform: scale(1.1, 1.1);
  }
}

@keyframes mymove {
  0% {
    -webkit-transform: scale(0.2);
    -moz-transform: scale(0.2);
    -ms-transform: scale(0.2);
    -o-transform: scale(0.2);
    transform: scale(0.2);
  }

  25% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  75% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    -o-transform: scale(0.1);
    transform: scale(0.1);
  }
}

@keyframes ring {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }

  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }

  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }

  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }

  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }

  50% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }

  100% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
}

@keyframes ring-circle {
  0% {
    opacity: 0.1;
    transform: rotate(0deg) scale(0.5) skew(1deg);
  }

  30% {
    opacity: 0.5;
    transform: rotate(0deg) scale(0.7) skew(1deg);
  }

  100% {
    opacity: 0.6;
    transform: rotate(0deg) scale(1) skew(1deg);
  }
}

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