@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;900&display=swap");
@font-face {
  font-family: neo_sans_intel;
  src: url("../fonts/UTM_Neo_Sans_Intel.ttf");
}
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;
}

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

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

img {
  max-width: 100%;
  height: auto;
  width: auto\9;
}

a, a:link, a:visited {
  color: #FEF5D1;
  text-decoration: none;
}
a:hover, a:link:hover, a:visited:hover {
  color: #FF4148;
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

canvas {
  cursor: pointer;
}

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

strong {
  font-weight: 600;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

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

input, textarea {
  width: 100%;
  outline: none;
  border: 1px solid #cccccc;
  border-radius: 3px;
  vertical-align: baseline;
  background-color: transparent;
  box-shadow: none;
  padding: 5px;
}
input.error, textarea.error {
  border-color: #FF0000;
}

hr {
  width: 100%;
  margin: 10px auto;
  height: 1px;
  background-color: #d2d2d2;
}

sup {
  line-height: 0;
  font-size: 8pt;
}

dl, dd, dt {
  font-weight: normal;
  line-height: 1.5;
}

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

h1 {
  font-size: 24px;
  line-height: 1.5;
}

h2 {
  font-size: 22px;
  line-height: 1.5;
}

h3 {
  font-size: 20px;
  line-height: 1.5;
}

h4 {
  font-size: 18px;
  line-height: 1.5;
}

h5 {
  font-size: 16px;
  line-height: 1.5;
}

.color-white {
  color: #FFF;
}

.highlight {
  color: #be8737;
}

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

.clear {
  clear: both !important;
}

.hide {
  display: none !important;
}

.text-align-center {
  text-align: center;
}

.text-align-left {
  text-align: left;
}

.text-align-right {
  text-align: right;
}

/*------------------------------------------------
** General
**------------------------------------------------*/
body {
  height: 100%;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: none;
  background: #0C0403;
  position: relative;
  color: #FEF5D1;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}

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

.container {
  width: 100%;
  max-width: 1170px;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
}

.button,
a.button {
  display: block;
  width: fit-content;
  padding: 10px 24px;
  background-color: rgba(190, 135, 55, 0.8);
  text-decoration: none;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  box-shadow: none;
  margin: auto;
}
.button:hover,
a.button:hover {
  color: #fff;
  border-color: #be8737;
  background-color: #be8737;
}

.bg-page {
  background-color: #f7fafd;
}

.bg-gray {
  background-color: #f5f8fa;
}

.section {
  padding: 40px 0;
}

.module {
  width: 100%;
  border: 0;
  margin: 0 auto;
  position: relative;
}

.module-header {
  margin: 0 0 40px;
  padding: 0;
  text-align: center;
}

.module-title {
  position: relative;
  padding: 0;
  width: fit-content;
  margin: auto;
  font-size: 26px;
  color: #be8737;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.module-title:after {
  content: "";
  width: 80%;
  height: 2px;
  margin-top: 5px;
  background: #be8737;
}
.module-title.text-left {
  margin-left: 0;
  align-items: flex-start;
}
.module-title.text-right {
  margin-right: 0;
  align-items: flex-end;
}

.module-content {
  padding: 0;
  position: relative;
}

.box {
  position: relative;
}

.box-header {
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
  text-align: center;
}

.box-title {
  position: relative;
  width: 100%;
  padding: 20px 0;
  margin: auto;
  font-size: 26px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  background: url("../images/box-title.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  /*&:before, &:after {
    content: "";
    width: 200px;
    height: 23px;
    background-repeat: no-repeat;
  }
  &:before {
    background-image: url('../images/title_line_left.png');
    background-position: right center;
  }
  &:after {
    background-image: url('../images/title_line_right.png');
    background-position: left center;
  }*/
}
.box-title img {
  margin: auto 15px;
}
.box-title.text-left {
  margin-left: 0;
  align-items: flex-start;
}
.box-title.text-right {
  margin-right: 0;
  align-items: flex-end;
}

.box-description {
  text-align: center;
  color: #be8737;
  font-size: 16px;
}

.heading {
  background-color: #be8737;
  background-image: url(../images/heading_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 220px;
  position: relative;
  overflow: hidden;
}
.heading .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.heading .container h1 {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
}
.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;
}

.breadcrumbs {
  position: relative;
  margin: 0;
  padding: 15px 0 15px;
  text-align: left;
  z-index: 2;
  background: #f7f7f7;
}
.breadcrumbs a {
  color: #be8737;
}
.breadcrumbs a:hover {
  color: #FEF5D1;
}
.breadcrumbs span.item_sep {
  opacity: 0.5;
  margin: 0 5px;
}
.breadcrumbs.brb-header {
  padding: 25px 0;
}
.breadcrumbs.brb-header .container-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.breadcrumbs.brb-header .breadcrumbs-header {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

.more {
  position: relative;
  height: 110px;
}
.more .loading {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99999;
  text-align: center;
}
.more .readmore {
  text-align: center;
  padding: 30px 0;
}

#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: 50%;
  transform: translateY(-50%);
}

.notice {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100%);
  padding: 15px 15px 15px 20px;
  margin: 0;
  text-shadow: initial;
  text-align: left;
  border: 1px solid #dcdcdc;
  color: #FEF5D1;
}
.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;
}
.notice.warning {
  border-left: 3px solid #ff5722;
  background: #fff2ed;
}

.fblike {
  text-align: left;
  padding: 0;
}

.social-date {
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 15px;
}
.social-date .fblike {
  text-align: left;
}
.social-date span.published {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1;
  margin-top: 3px;
}
.social-date span.published: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;
}

/*------------------------------------------------
** Slick
**------------------------------------------------*/
.slick-slider {
  margin: 0;
}
.slick-slider > button {
  width: 50px;
  height: 50px;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.2);
  top: calc(50% - 15px);
}
.slick-slider > button:before {
  font-family: "FontAwesome" !important;
  display: inline-block !important;
  font-size: 14px !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 button {
  width: 30px;
  height: 30px;
}
.slick-slider button:before {
  font-size: 30px;
}
.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: 20px;
  width: 13px;
  height: 13px;
}

.slide-for {
  background: #dedede;
  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: calc(100% * 3 / 4);
  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: rgba(190, 135, 55, 0.7);
}
.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: #be8737;
}
.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: 3px;
  opacity: 0.5;
  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.slick-center .image, .slide-nav .slick-list .slick-track .slick-slide:hover .image {
  border: 1px solid #989898 !important;
}
.slide-nav .slick-list .slick-track .slick-slide span {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slide-nav .slick-list .slick-track .slick-slide span img {
  visibility: hidden;
}
.slide-nav > button {
  top: 3px;
  width: 50px;
  height: calc(100% - 6px);
  margin: 0;
  background-color: rgba(255, 255, 255, 0.85);
}
.slide-nav > button:before {
  font-family: "FontAwesome";
  color: #717171;
  display: inline-block;
  font-size: 16px;
  line-height: 1.1;
}
.slide-nav > button:hover, .slide-nav > button:focus {
  background-color: white;
}
.slide-nav > button:hover:before, .slide-nav > button:focus:before {
  color: #000;
}
.slide-nav > button.slick-next {
  right: 0;
  border-right: 3px solid #d2d2d2;
}
.slide-nav > button.slick-next:before {
  content: "\f054";
}
.slide-nav > button.slick-prev {
  left: 0;
  border-left: 3px solid #d2d2d2;
}
.slide-nav > button.slick-prev:before {
  content: "\f053";
}

/*------------------------------------------------
** HEADER
**------------------------------------------------*/
.menunav {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 60px;
  list-style: none;
  position: relative;
  text-align: center;
}
.menunav li {
  margin: 0 auto;
  padding: 0;
  position: relative;
  height: 100%;
}
.menunav li a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  text-align: center;
  color: #FEF5D1;
  font-family: neo_sans_intel;
  font-size: 18px;
  white-space: nowrap;
  text-transform: uppercase;
}
.menunav li:hover, .menunav li.active {
  position: relative;
}
.menunav li:hover a, .menunav li.active a {
  color: #be8737;
}
.menunav li:hover a {
  color: #FFF;
}
.menunav ul.level1 {
  position: absolute;
  left: 0;
  min-width: 200px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px);
  background: #FFF;
  padding: 10px 0;
  z-index: 9;
  margin-top: 0;
  margin-bottom: 10px;
  box-shadow: 0px 0px 15px -5px;
}
.menunav ul.level1:before {
  content: '';
  position: absolute;
  left: 10px;
  top: -15px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid #FFF;
}
.menunav ul.level1 li {
  width: 100%;
  margin: 0;
}
.menunav ul.level1 li a {
  line-height: 35px;
  text-align: left;
  padding: 0 20px;
  color: #FEF5D1;
  background-color: #FFF;
}
.menunav ul.level1 li a .fa {
  margin-right: 8px;
  color: #9c9c9c;
}
.menunav ul.level1 li:hover:after, .menunav ul.level1 li.active:after {
  height: 0;
}
.menunav li:hover ul.level1 {
  visibility: visible;
  opacity: 1;
  transition: 0.3s all ease;
  transform: translateY(0px);
  left: 0;
}
.menunav li:hover ul.level1 li a {
  padding: 0 20px;
  text-align: left;
}
.menunav li:hover ul.level1 li a .fa {
  margin-right: 8px;
  color: #FEF5D1;
}
.menunav li:hover ul.level1 li.active a, .menunav li:hover ul.level1 li:hover a {
  color: #be8737;
}
.menunav li:hover ul.level1 li.active a .fa, .menunav li:hover ul.level1 li:hover a .fa {
  color: #be8737;
}
.menunav ul.level1 li:hover ul.level2 {
  visibility: visible !important;
  opacity: 1 !important;
  transition: 0.3s all ease !important;
}
.menunav ul.level1 li:hover ul.level2 li a {
  padding: 0 20px;
  color: #FEF5D1;
}
.menunav ul.level1 li:hover ul.level2 li a .fa {
  margin-right: 8px;
  color: #FEF5D1;
}
.menunav ul.level1 li:hover ul.level2 li.active a, .menunav ul.level1 li:hover ul.level2 li:hover a {
  color: #be8737;
}
.menunav ul.level1 li:hover ul.level2 li.active a .fa, .menunav ul.level1 li:hover ul.level2 li:hover a .fa {
  color: #be8737;
}
.menunav li ul.submenu_inner {
  width: 100%;
  display: flex;
}
.menunav li ul.submenu_inner li.submenu {
  display: block;
  width: calc(100% / 3);
  padding: 0 20px;
  text-align: left;
  border-right: 1px solid #e6e6e6;
}
.menunav li ul.submenu_inner li.submenu a.title {
  font-size: 18px;
}
.menunav li ul.submenu_inner li.submenu:hover {
  background: none;
}
.menunav li ul.submenu_inner li.submenu:last-child {
  border-right: 0;
}
.menunav li ul.submenu_inner:after {
  display: block;
  content: '';
  clear: both;
}
.menunav li ul.submenu_inner li ul.submenu_level {
  display: block;
  position: relative;
}
.menunav li ul.submenu_inner li ul.submenu_level li {
  display: block;
  margin-bottom: 15px;
}
.menunav li ul.submenu_inner li ul.submenu_level li a {
  line-height: 20px;
  font-weight: 100;
}
.menunav li ul.submenu_inner li ul.submenu_level li:hover a, .menunav li ul.submenu_inner li ul.submenu_level li.active a {
  color: #be8737;
}

@media only screen and (max-width: 1100px) {
  .menunav li a {
    padding: 0 10px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) {
  .menunav li a {
    padding: 0 10px;
    font-size: 14px;
  }
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 126px;
  z-index: 990;
  transition: all 0.3s ease-in-out;
}
header .header {
  width: 100%;
  height: 60px;
  position: relative;
  transition: all 0.3s ease-in-out;
  background: url("../images/menu_bg.png") no-repeat center bottom;
}
header .container-wrapper {
  height: 100%;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
header .container-wrapper .img_mn {
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .container-wrapper .img_mn.mn_left {
  left: 0;
  transform: translateX(-60%);
}
header .container-wrapper .img_mn.mn_right {
  right: 0%;
  transform: translateX(60%);
}
header .logo {
  height: 100%;
  padding: 5px;
}
header .logo img {
  height: 100%;
}
header .main_menu {
  height: 100%;
  width: 100%;
  max-width: 800px;
  margin: auto;
}
header.stick {
  height: 60px;
}
header.stick .header {
  position: fixed;
  transition: all 0.3s ease-in-out;
}
header.stick .header .container-wrapper .img_mn {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: -50%;
}

.rd-panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 56px;
  background: url("../images/menu_bg.png") no-repeat center top;
  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-panel .rd-panel-left {
  height: 100%;
  display: flex;
  flex-direction: row;
}
.rd-panel .rd-panel-right {
  height: 100%;
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
}
.rd-panel .rd-panel-right a {
  display: block;
  height: 100%;
  margin: 0 5px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.rd-panel .rd-panel-right a:hover img {
  visibility: hidden;
}
.rd-panel .rd-panel-right img {
  height: 100%;
  max-width: initial;
}
.rd-panel .rd-panel_toggle {
  background: none;
  border: none;
  display: inline-block;
  padding: 0;
  outline: none;
  outline-offset: 0;
  cursor: pointer;
  -webkit-appearance: none;
  width: 50px;
  height: 55px;
}
.rd-panel .rd-panel_toggle span {
  cursor: pointer;
  width: 24px;
  height: 4px;
  background-color: #be8737;
  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-panel .rd-panel_toggle span:before, .rd-panel .rd-panel_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: #be8737;
  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-panel .rd-panel_toggle span:after {
  top: 8px;
}
.rd-panel .rd-panel_toggle.active span {
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  height: 0;
}
.rd-panel .rd-panel_toggle.active span:before, .rd-panel .rd-panel_toggle.active span:after {
  top: 8px;
  width: 35px;
  left: 0;
}
.rd-panel .rd-panel_toggle.active span:before {
  -webkit-transform: rotate3d(0, 0, 1, -40deg);
  transform: rotate3d(0, 0, 1, -40deg);
}
.rd-panel .rd-panel_toggle.active span:after {
  top: -12px;
  -webkit-transform: rotate3d(0, 0, 1, 40deg);
  transform: rotate3d(0, 0, 1, 40deg);
}
.rd-panel .logo {
  height: 100%;
  padding: 5px;
}
.rd-panel .logo img {
  height: 100%;
  max-width: initial;
}

.rd-menu {
  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-menu .menunav {
  display: block;
}
.rd-menu .menunav li {
  height: auto;
}
.rd-menu .menunav li a {
  text-align: left;
}
.rd-menu ul {
  position: fixed;
  z-index: 99;
  top: 55px;
  margin: 0;
  left: 0;
  bottom: -20px;
  width: 0;
  padding: 24px;
  color: #666;
  background: rgba(22, 25, 30, 0.98);
  /*background: url('../images/menu_bg.png') repeat center/cover;*/
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 30px;
  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-menu ul li {
  line-height: 21px;
}
.rd-menu ul li a:not([href]):not([tabindex]) {
  color: #000;
}
.rd-menu ul li a, .rd-menu ul li .mm-image {
  display: block;
  padding: 0;
  color: #FFF;
  font-weight: 500;
  line-height: 35px;
  text-transform: uppercase;
}
.rd-menu ul li ul {
  display: block;
  position: initial;
  width: 100%;
  padding: 0;
  background: transparent;
}
.rd-menu ul li ul .mm-image {
  display: none;
}
.rd-menu ul li ul li a {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  display: flex;
  align-items: center;
  text-transform: unset;
}
.rd-menu ul li ul li a i {
  width: 20px;
  font-size: 16px;
  padding-left: 5px;
}
.rd-menu ul li ul li ul.submenu_level li a {
  font-weight: 400;
}
.rd-menu ul li ul li:hover a {
  color: #707070;
}
.rd-menu ul li:hover a, .rd-menu ul li.active a {
  color: #be8737;
}
.rd-menu ul li:hover ul.level1 a, .rd-menu ul li.active ul.level1 a {
  color: #FEF5D1;
}
.rd-menu ul li:hover ul.level1 li.active a, .rd-menu ul li.active ul.level1 li.active a {
  color: #707070;
}
.rd-menu ul.level1 {
  position: initial;
  visibility: initial;
  opacity: initial;
  background: transparent;
  box-shadow: none;
}
.rd-menu ul.level1 li a {
  padding: 0 0 5px 0;
  background: transparent;
  line-height: 30px;
}
.rd-menu.active {
  right: 0;
  background: rgba(0, 0, 0, 0.5);
}
.rd-menu.active ul {
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  width: 250px;
}
.rd-menu.active ul li ul {
  width: 100%;
}
.rd-menu ul.level2 {
  position: initial;
  visibility: visible;
  opacity: 1;
  background: transparent;
  box-shadow: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0 0 30px;
}

@media only screen and (max-width: 800px) {
  .rd-menu ul {
    height: 270px;
  }
  .rd-menu.active ul {
    width: 100%;
  }
}
@media only screen and (max-width: 400px) {
  .rd-panel .logo {
    display: none;
  }
}
/*------------------------------------------------
** Main
**------------------------------------------------*/
.main-body {
  min-height: 400px;
  position: relative;
  z-index: 1;
}
.main-body #center {
  width: 100%;
  max-width: calc(100% - 390px);
  padding-left: 60px;
}

.main-content {
  margin-top: -100px;
  margin-bottom: -200px;
  background: url("../images/bg_bottom.png") no-repeat center bottom;
}
.main-content .main-content-wrapper {
  padding: 166px 0 280px;
  background: url("../images/bg_top.png") no-repeat center top;
}
.main-content .main-content-wrapper .main-content-inner {
  background: url("../images/bg_center.png") repeat-y center;
  width: 100%;
  margin: auto;
}
.main-content .main-content-wrapper .main-content-inner .main-content-width {
  max-width: 996px;
  margin: auto;
}

#main {
  display: flex;
  flex-wrap: wrap;
}
#main #center {
  width: calc(100% - 370px);
  padding-right: 30px;
}
#main #sidebar {
  width: 100%;
  max-width: 370px;
  will-change: min-height;
}
#main #sidebar .sidebar__inner {
  position: relative;
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0);
  will-change: position, transform;
}
#main #sidebar .sidebar__inner .banner {
  width: 100%;
  padding-bottom: 10px;
}
#main .sidebar {
  padding: 0;
}

.box-main .container-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.box-main .container-wrapper .block {
  display: flex;
  flex-wrap: wrap;
}
.box-main .container-wrapper .block.block-left {
  width: 300px;
  padding-right: 30px;
}
.box-main .container-wrapper .block.block-main {
  width: calc(100% - 300px);
}

.box-relative {
  padding: 0px;
  margin-top: -200px;
}
.box-relative .box-title {
  width: 100%;
  border: 0;
  justify-content: center;
}
.box-relative .box-title span {
  white-space: nowrap;
  margin: -5px 10px 0;
}

.bar-right {
  width: fit-content;
  text-align: center;
  display: block;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  z-index: 99;
}
.bar-right .bar-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bar-right .images {
  width: 60%;
}
.bar-right .images .image {
  width: 100%;
  margin-bottom: 10px;
  padding-top: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #4b1d04;
}
.bar-right .group-button {
  width: 100%;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.bar-right .group-button a {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.bar-right .group-button a img {
  width: 100%;
}

/*------------------------------------------------
** Boxes
**------------------------------------------------*/
.box-head {
  background: url("../images/header_art_bg.jpg") no-repeat center/cover;
  height: 970px;
  position: relative;
  overflow: hidden;
}
.box-head .container-wrapper {
  height: 100%;
}
.box-head .box-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding-top: 24%;
}
.box-head .box-body .image {
  position: relative;
}
.box-head .box-body .image .light_text {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.box-head .box-body .image .light_text span.light_t {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: url(../images/light.png) top left no-repeat;
  content: '';
  -webkit-background-clip: content;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: content;
  -moz-text-fill-color: transparent;
  animation: animatedlighttext 2s linear infinite;
  -moz-animation: animatedlighttext 2s linear infinite;
  -webkit-animation: animatedlighttext 2s linear infinite;
  z-index: 2;
}
.box-head .box-body .icon-play {
  margin-top: 20px;
  text-align: center;
}
.box-head .box-body .icon-play img {
  animation: zoomIcon 1.5s infinite linear;
}
.box-head .box-body .header-art {
  margin-left: -20%;
}

.box-download {
  margin-top: -130px;
  position: relative;
  z-index: 11;
}
.box-download ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.box-download ul li {
  max-width: 25%;
  padding: 10px 5px;
}
.box-download ul li a {
  display: block;
  background-size: cover;
}
.box-download ul li a:hover img {
  visibility: hidden;
}

@media only screen and (max-width: 800px) {
  .box-head {
    height: 700px;
  }
  .box-head:before {
    left: calc(50%);
  }
  .box-head .box-body {
    width: 100%;
  }
  .box-head .box-body .title-page {
    width: 450px;
  }
  .box-head .box-body .icon-play img {
    width: 80px;
  }

  .box-download ul {
    justify-content: space-evenly;
  }
  .box-download ul li {
    max-width: 50%;
  }
  .box-download ul li img {
    max-width: 200px;
  }
  .box-download ul li.li_down {
    display: block;
    padding-right: 0;
  }
}
@media only screen and (max-width: 600px) {
  .box-head {
    height: 500px;
  }
  .box-head .box-body .title-page {
    width: 290px;
  }
  .box-head .box-body .icon-play img {
    width: 60px;
  }

  .box-download {
    margin-top: -80px;
  }
}
@media only screen and (max-width: 500px) {
  .box-head {
    height: 400px;
  }
  .box-head .box-body {
    /*.title-page { width: 100px; }*/
  }
  .box-head .box-body .icon-play img {
    width: 50px;
  }

  .box-download {
    margin-top: -60px;
  }
  .box-download ul {
    justify-content: center;
  }
  .box-download ul li img {
    max-width: 160px;
  }
}
@media only screen and (max-width: 400px) {
  .box-head {
    height: 300px;
  }
  .box-head .box-body .title-page {
    width: 200px;
  }
  .box-head .box-body .icon-play img {
    width: 40px;
  }

  .box-download {
    margin-top: -40px;
  }
  .box-download ul li img {
    max-width: 140px;
  }
}
.box-slider .slick-track {
  display: flex;
}
.box-slider .slick-slider .slick-dots {
  bottom: 20px;
}
.box-slider .item {
  /*min-height: 320px;*/
  height: auto;
  display: flex;
}
.box-slider .item .image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.box-slider .item .image a {
  display: block;
  width: 100%;
  height: 100%;
}
.box-slider .item .image a img {
  visibility: hidden;
  max-height: 100%;
}

.box-slider.featured .box-title:before, .box-slider.featured .box-title:after {
  margin-bottom: 8px;
}
.box-slider.featured .item a img {
  visibility: visible;
}
.box-slider.featured .slick-slider .slick-prev, .box-slider.featured .slick-slider .slick-next {
  width: 50px;
  height: 76px;
  background-color: transparent;
  background-image: url("../images/btn_prev.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.box-slider.featured .slick-slider .slick-prev:before, .box-slider.featured .slick-slider .slick-next:before {
  display: none !important;
}
.box-slider.featured .slick-slider .slick-next {
  background-image: url("../images/btn_next.png");
}

@media only screen and (max-width: 600px) {
  .box-slider.featured .box-title img {
    width: 100px;
  }
  .box-slider.featured .box-title:before, .box-slider.featured .box-title:after {
    margin-bottom: 0;
  }
  .box-slider.featured .slick-slider .slick-prev, .box-slider.featured .slick-slider .slick-next {
    width: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .box-slider.featured {
    padding-top: 10px;
    padding-bottom: 40px;
  }
}
.box-news-all {
  padding: 40px 0 0;
}
.box-news-all .container-wrapper {
  overflow: hidden;
}
.box-news-all .box-body {
  display: flex;
  flex-wrap: wrap;
}
.box-news-all .box-slider {
  width: 50%;
}
.box-news-all .box-slider .slick-slider {
  height: 100%;
}
.box-news-all .box-slider .slick-slider .slick-list {
  height: 100%;
}
.box-news-all .box-slider .slick-slider .slick-list .slick-track {
  height: 100%;
}
.box-news-all .box-slider .slick-dots li {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.box-news-all .box-slider .slick-dots li button {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.box-news-all .box-slider .slick-dots li button:before {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: '';
  background-color: #FFF;
  border-radius: 10px;
  opacity: 1;
}
.box-news-all .box-slider .slick-dots li.slick-active {
  width: 40px;
}
.box-news-all .box-slider .slick-dots li.slick-active button {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.box-news-all .box-slider .slick-dots li.slick-active button:before {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 40px;
}
.box-news-all .box-slider .item .image {
  position: relative;
  width: 100%;
  height: 100%;
}
.box-news-all .box-slider .item .image a {
  background-image: url("../images/frame.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-size: 100% 100%;
  height: 100%;
}
.box-news-all .contentWrapper {
  width: 50%;
  padding-left: 20px;
}
.box-news-all .contentWrapper .nav-tabs-custom {
  position: relative;
}
.box-news-all .contentWrapper .nav-tabs-custom .nav-tabs {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  border: 0;
  background-image: url("../images/tit-news.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.box-news-all .contentWrapper .nav-tabs-custom .nav-tabs li a {
  margin-right: 25px;
  font-family: neo_sans_intel;
  font-size: 16px;
  font-weight: 600;
  color: #FEF5D1;
  text-transform: uppercase;
}
.box-news-all .contentWrapper .nav-tabs-custom .nav-tabs li a.active, .box-news-all .contentWrapper .nav-tabs-custom .nav-tabs li a:hover {
  color: #be8737;
}
.box-news-all .contentWrapper .nav-tabs-custom .tab-content {
  padding: 10px 0 0;
}
.box-news-all .contentWrapper .nav-tabs-custom .tab-content .item {
  padding: 5px;
  margin-bottom: 5px;
  display: flex;
  flex-wrap: wrap;
  background: rgba(117, 43, 49, 0.16);
  overflow: hidden;
}
.box-news-all .contentWrapper .nav-tabs-custom .tab-content .item .image {
  width: 80px;
  min-height: 60px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.box-news-all .contentWrapper .nav-tabs-custom .tab-content .item .image img {
  display: none;
}
.box-news-all .contentWrapper .nav-tabs-custom .tab-content .item .content {
  width: calc(100% - 80px);
  padding-left: 15px;
}
.box-news-all .contentWrapper .nav-tabs-custom .tab-content .item .content .category-date {
  display: flex;
  align-items: center;
  color: #be8737;
  font-size: 14px;
  font-weight: 400;
}
.box-news-all .contentWrapper .nav-tabs-custom .tab-content .item .content .category-date a {
  color: #be8737;
}
.box-news-all .contentWrapper .nav-tabs-custom .tab-content .item .content .category-date a:hover {
  color: #FEF5D1;
}
.box-news-all .contentWrapper .nav-tabs-custom .tab-content .item .content .category-date span {
  font-size: 14px;
}
.box-news-all .contentWrapper .nav-tabs-custom .tab-content .item .content .category-date span.line {
  font-size: 10px;
  color: #dfdfdf;
  margin: 2px 5px 0;
}
.box-news-all .contentWrapper .nav-tabs-custom .tab-content .item .content .title a {
  font-size: 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.box-news-all .contentWrapper .nav-tabs-custom .tab-content .item .content .title a:hover {
  color: #be8737;
}
.box-news-all .contentWrapper .nav-tabs-custom .tab-content .item:last-child {
  margin: 0;
}
.box-news-all .contentWrapper .nav-tabs-custom .tab-content .item:hover .image {
  transform: scale(1.1);
}
.box-news-all .contentWrapper .nav-tabs-custom .tab-content .view-more {
  position: absolute;
  right: 20px;
  top: 10px;
}
.box-news-all .contentWrapper .nav-tabs-custom .tab-content .view-more img {
  height: 25px;
}

@media only screen and (max-width: 1000px) {
  .box-news-all {
    padding: 10px 0 0;
    max-width: 700px;
    margin: auto;
  }
  .box-news-all .box-slider {
    width: 100%;
  }
  .box-news-all .contentWrapper {
    width: 100%;
    padding: 20px 0 0 0;
  }
}
@media only screen and (max-width: 600px) {
  .box-news-all .box-body .contentWrapper .nav-tabs-custom .nav-tabs li a {
    margin-right: 15px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 500px) {
  .box-news-all .box-body .contentWrapper .nav-tabs-custom .nav-tabs {
    padding: 10px;
  }
  .box-news-all .box-body .contentWrapper .nav-tabs-custom .nav-tabs li a {
    margin-right: 12px;
    font-size: 14px;
  }
  .box-news-all .box-body .contentWrapper .tab-content .view-more {
    right: 10px;
  }
}
@media only screen and (max-width: 400px) {
  .box-news-all .box-body .contentWrapper .nav-tabs-custom .nav-tabs li a {
    margin-right: 10px;
    font-size: 12px;
  }
  .box-news-all .box-body .contentWrapper .tab-content .view-more {
    top: 14px;
  }
  .box-news-all .box-body .contentWrapper .tab-content .view-more img {
    height: 18px;
  }
}
.box-column-1x4 {
  padding: 40px 0 0;
}
.box-column-1x4 .box-body .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.box-column-1x4 .box-body .inner .item {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% / 4 - 16px);
  padding: 0;
  margin: 0 0 16px;
  height: auto;
  transition: all .5s ease-in-out;
}
.box-column-1x4 .box-body .inner .item a {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.box-column-1x4 .box-body .inner .item:hover {
  /*transform: translate3d(0, -10px, 0);*/
}
.box-column-1x4 .box-body .inner .item:hover img {
  visibility: hidden;
}

@media only screen and (max-width: 800px) {
  .box-column-1x4 {
    padding: 30px 0 0;
  }
}
@media only screen and (max-width: 700px) {
  .box-column-1x4 .box-body .inner .item {
    width: calc(100% / 2 - 5px);
  }
}
.box-champion {
  padding-bottom: 60px;
}
.box-champion .box-body {
  background: url("../images/art_bg.png") no-repeat center/cover;
  height: 500px;
  position: relative;
}
.box-champion .slideshow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.box-champion .slideshow .item {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
}
.box-champion .slideshow .item .intro {
  width: 60%;
  padding-left: 40px;
  padding-bottom: 60px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  z-index: 99;
}
.box-champion .slideshow .item .intro .summary {
  width: calc(100% - 130px);
  padding: 30px;
  font-size: 14px;
  color: #FFF;
}
.box-champion .slideshow .item .intro .skills {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
.box-champion .slideshow .item .intro .skills img {
  margin: 0 0.5rem;
}
.box-champion .slideshow .item .intro .video {
  width: 80%;
  text-align: center;
}
.box-champion .slideshow .item .intro .video img {
  margin: auto;
  animation: zoomIcon 1.5s infinite linear;
}
.box-champion .slideshow .item .art {
  width: 40%;
  position: relative;
}
.box-champion .slideshow .item .art img {
  max-width: initial;
  position: absolute;
  right: 0;
  bottom: 0;
}
.box-champion .slideshow .item .art.dieuthuyen img {
  right: -100px;
}
.box-champion .slideshow .slick-list {
  height: 100%;
  overflow: initial;
}
.box-champion .slideshow .slick-list .slick-track {
  height: 100%;
}
.box-champion .slideshow-thumb {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(50%);
  z-index: 2;
}
.box-champion .slideshow-thumb .slick-list {
  max-width: calc(128px *5);
  padding: 0 !important;
  margin: auto;
}
.box-champion .slideshow-thumb .slick-list .slick-track .item {
  cursor: pointer;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.box-champion .slideshow-thumb .slick-list .slick-track .item.slick-center {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}

@media only screen and (max-width: 1300px) {
  .box-champion .container {
    padding: 0;
  }
}
@media only screen and (max-width: 1100px) {
  .box-champion .slideshow .item .art img {
    height: calc(100% + 40px);
    right: -50px;
  }
}
@media only screen and (max-width: 1000px) {
  .box-champion {
    padding-top: 0;
    padding-bottom: 60px;
  }
  .box-champion .slideshow .item .intro .skills img {
    width: 70px;
  }
  .box-champion .slideshow .item .art img {
    height: calc(100% + 40px);
    right: -150px;
  }
  .box-champion .slideshow .item .art.luubi img {
    right: -100px;
  }
  .box-champion .slideshow .item .art.dieuthuyen img {
    right: -250px;
  }
}
@media only screen and (max-width: 800px) {
  .box-champion .box-body {
    height: 450px;
  }
  .box-champion .slideshow .item .intro {
    padding-left: 10px;
    align-items: flex-start;
  }
  .box-champion .slideshow .item .intro .title img {
    width: 100px;
  }
  .box-champion .slideshow .item .intro .summary {
    width: 100%;
    padding: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .box-champion .slideshow .item .intro .skills {
    padding-top: 10px;
    justify-content: flex-start;
  }
  .box-champion .slideshow .item .intro .skills img {
    width: 60px;
    margin: 0 0.2rem 0 0;
  }
  .box-champion .slideshow .item .intro .video {
    width: 60%;
  }
  .box-champion .slideshow .item .intro .video img {
    width: 60px;
  }
}
@media only screen and (max-width: 700px) {
  .box-champion .slideshow .item .art.lubo img {
    right: -280px;
  }
}
@media only screen and (max-width: 600px) {
  .box-champion .box-title img {
    width: 180px;
  }
  .box-champion .slideshow .item .intro {
    padding-left: 10px;
    align-items: flex-start;
  }
  .box-champion .slideshow .item .intro .title img {
    width: 80px;
  }
  .box-champion .slideshow .item .intro .summary {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .box-champion .slideshow .item .intro .skills {
    padding-right: 95px;
  }
  .box-champion .slideshow .item .intro .skills img {
    width: 55px;
    margin: 0 0.5rem 0.5rem 0;
  }
  .box-champion .slideshow .item .intro .video {
    text-align: left;
  }
  .box-champion .slideshow .item .intro .video img {
    margin: 0;
  }
  .box-champion .slideshow .item .art.luubi img {
    right: -120px;
  }
  .box-champion .slideshow .item .art.dieuthuyen img {
    right: -300px;
  }
}
@media only screen and (max-width: 500px) {
  .box-champion .box-body {
    height: 400px;
  }
  .box-champion .slideshow .item .intro .skills {
    padding-right: 50px;
  }
}
@media only screen and (max-width: 400px) {
  .box-champion .slideshow .item .intro .skills {
    padding-right: 0px;
  }
}
/*------------------------------------------------
** Typo
**------------------------------------------------*/
.content-detail {
  font-size: 16px;
  font-weight: 400;
}
.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: 0 0 15px 0;
}
.content-detail img {
  margin: 5px 0;
}
.content-detail table {
  width: 100%;
  max-width: 100%;
  margin: 5px auto 20px auto;
  font-size: 14px;
  border-collapse: collapse;
}
.content-detail table tr td {
  margin: 0;
  padding: 5px 10px;
  vertical-align: middle;
  border: 1px solid #be8737;
}
.content-detail table tr td ul {
  width: 100%;
  padding: 0;
}
.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;
}
.content-detail table tr:first-child td {
  background: #800d00;
  padding: 20px 5px;
  font-weight: 700;
}
.content-detail table tr:nth-child(2n + 1) {
  background: rgba(255, 255, 255, 0.1);
}
.content-detail iframe {
  max-width: 100%;
  width: 100% !important;
}

/*------------------------------------------------
** Components
**------------------------------------------------*/
.news.news-list .module-header {
  margin: 0;
}
.news.news-list .module-header ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-bottom: 1px solid #dfdfdf;
  padding: 10px 0 0;
}
.news.news-list .module-header ul li {
  padding-right: 5px;
}
.news.news-list .module-header ul li a {
  display: block;
  padding: 20px;
  text-transform: uppercase;
  color: #FEF5D1;
  position: relative;
}
.news.news-list .module-header ul li.active a, .news.news-list .module-header ul li:hover a {
  color: #be8737;
}
.news.news-list .module-header ul li.active a:after, .news.news-list .module-header ul li:hover a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #be8737;
  left: 0;
  bottom: -1px;
}
.news.news-list .module-content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  padding: 30px 0;
}
.news.news-list .item {
  width: calc(100%/3 - 30px);
  height: 100%;
  margin: 0 15px 30px;
  background: rgba(117, 43, 49, 0.16);
  /*.image-wrap { overflow: hidden; }*/
}
.news.news-list .item .item-wrap {
  width: 100%;
  height: 100%;
}
.news.news-list .item .image {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  background-color: rgba(190, 135, 55, 0.1);
  position: relative;
  padding-top: calc(100% * 9/16);
}
.news.news-list .item .image a {
  display: block;
  background-image: url("../images/article_frame.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-size: 100% 100%;
  padding-top: calc(100% * 9/16);
  height: 100%;
  overflow: hidden;
  position: absolute;
  height: calc(100% + 18px);
  width: calc(100% + 16px);
  top: -14px;
  left: -14px;
}
.news.news-list .item .image a img {
  visibility: hidden;
  display: none;
}
.news.news-list .item .content {
  padding: 15px;
}
.news.news-list .item .title {
  height: 52px;
  padding: 0;
  margin: 0;
}
.news.news-list .item .title a {
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 26px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news.news-list .item .description {
  font-weight: normal;
  padding: 10px 0 0 0;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news.news-list .item .published {
  display: none;
}
.news.news-list .item .view-more {
  margin: 40px 0;
  text-align: right;
  font-size: 13px;
}
.news.news-list .item:hover {
  /*.image { transform: scale(1.1); }*/
}
.news.news-list .item:hover .view-more a {
  color: #fff !important;
}
.news.news-list .item.column {
  width: 100%;
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}
.news.news-list .item.column .item-wrap {
  display: flex;
  flex-wrap: wrap;
}
.news.news-list .item.column .image-wrap {
  width: 30%;
  max-width: 300px;
  min-width: 120px;
}
.news.news-list .item.column .content {
  width: 70%;
  min-width: calc(100% - 300px);
  max-width: calc(100% - 120px);
  padding: 0 0 0 10px;
}
.news.news-list .item.column .content .title {
  margin: 0;
  height: initial;
  border: 0;
  padding: 0;
}
.news.news-list .item.column:last-child {
  margin: 0 0 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.news.news-list .view-more {
  margin: 30px 0;
}
.news.news-list .view-more a:hover {
  color: #fff;
}
.news.news-detail .module {
  max-width: 760px;
}
.news.news-detail .module-header {
  margin: 0;
  padding: 30px 0 10px;
}
.news.news-detail .module-content {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 20px 0 30px;
}
.news.news-detail .title {
  font-family: neo_sans_intel;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #be8737;
  text-align: left;
}
.news.news-detail .social-date {
  border: 1px solid #707070;
  border-width: 1px 0;
  margin-top: 15px;
  padding-bottom: 5px;
}
.news.news-detail .description {
  font-weight: 500;
  margin: 0 0 10px;
}

@media only screen and (max-width: 900px) {
  .news.news-list .module-header ul {
    justify-content: space-between;
    padding: 0 10px;
  }
  .news.news-list .module-header ul li a {
    padding: 10px;
  }
  .news.news-list .module-content {
    padding: 10px;
  }
  .news.news-list .item {
    width: calc(100%/2 - 30px);
  }
  .news.news-detail .module-header {
    padding: 10px;
  }
  .news.news-detail .module-content {
    padding: 10px;
  }
  .news.news-detail .module-title h1 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 700px) {
  .news.news-list .item {
    width: calc(100%);
    margin: 0 0 20px;
    padding: 15px 5px 10px 15px;
  }
  .news.news-list .item .item-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
  .news.news-list .item .item-wrap .image-wrap {
    width: 30%;
    max-width: 300px;
    min-width: 120px;
  }
  .news.news-list .item .item-wrap .image-wrap .image a {
    top: -8px;
    left: -8px;
    width: calc(100% + 11px);
    height: calc(100% + 10px);
  }
  .news.news-list .item .item-wrap .content {
    width: 70%;
    min-width: calc(100% - 300px);
    max-width: calc(100% - 120px);
    padding: 0 0 0 10px;
  }
  .news.news-list .item .item-wrap .content .title {
    margin: 0;
    height: initial;
    border: 0;
    padding: 0;
  }
  .news.news-list .item .item-wrap .description {
    -webkit-line-clamp: 2;
  }
  .news.news-detail .module-header {
    padding: 10px;
  }
  .news.news-detail .module-content {
    padding: 10px;
  }
  .news.news-detail .module-title h1 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 400px) {
  .news.news-list .module-header ul li a {
    padding: 10px 5px;
    text-transform: initial;
  }
}
.download .item {
  width: 100%;
}
.download h3 {
  font-size: 18px;
  font-weight: 600;
  color: #be8737;
  margin-top: 10px;
}
.download .box-note {
  border: 1px solid rgba(190, 135, 55, 0.3);
  border-radius: 15px;
  padding: 20px;
}
.download .box-download {
  margin-top: 30px;
  width: 100%;
  overflow-x: auto;
}
.download table {
  width: 100%;
  min-width: 500px;
  margin-bottom: 50px;
}
.download table td {
  vertical-align: middle;
}
.download table td p {
  margin: 0;
}

/*------------------------------------------------
** Recruitment
**------------------------------------------------*/
#sidebar {
  float: right;
  width: 100%;
  max-width: 300px;
  will-change: min-height;
}
#sidebar .sidebar__inner {
  width: 100%;
  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: calc(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;
}

/*------------------------------------------------
** FOOTER
**------------------------------------------------*/
footer.footer1 {
  background: url("../images/footer.png") no-repeat center top/cover;
  position: relative;
  color: #FFF;
  height: 396px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
footer.footer1 .footer-inner {
  width: 100%;
}
footer.footer1 .footer-inner .container-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  min-height: 190px;
}
footer.footer1 .footer-inner a {
  color: inherit;
}
footer.footer1 .footer-inner .title {
  padding: 10px 0 12px;
  margin-bottom: 10px;
  position: relative;
  text-transform: uppercase;
}
footer.footer1 .footer-inner .title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 25%;
  height: 2px;
  background-color: rgba(190, 135, 55, 0.1);
}
footer.footer1 .footer-inner .footer-intro {
  /*max-width: 550px;*/
  padding-right: 20px;
}
footer.footer1 .footer-inner .footer-intro .wrap {
  padding: 15px 0;
}
footer.footer1 .footer-inner .footer-intro .logo {
  max-width: 200px;
}
footer.footer1 .footer-inner .footer-social ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
footer.footer1 .footer-inner .footer-social ul li {
  margin-left: 2rem;
}
footer.footer1 .footer-inner .footer-social ul li img {
  max-width: 70px;
}

@media only screen and (max-width: 900px) {
  footer.footer1 .footer-inner .container-wrapper .footer-intro {
    padding: 0;
    text-align: center;
  }
  footer.footer1 .footer-inner .footer-social ul {
    justify-content: center;
  }
  footer.footer1 .footer-inner .footer-social ul li {
    margin: 0 5px;
  }
}
@media only screen and (max-width: 800px) {
  .footer1 .footer-inner {
    /*.container-wrapper { 
    	padding: 10px 6px;
    	justify-content: center; 
    }
    .footer-intro {
    	width: 100%;
    	max-width: 400px;
    	padding: 0;
    }*/
  }
  .footer1 .footer-inner .footer-contact {
    width: 100%;
    padding: 0;
  }
  .footer1 .footer-inner .footer-contact .title {
    padding-top: 30px;
    margin-bottom: 12px;
  }
  .footer1 .footer-inner .footer-contact ul li {
    padding: 8px 0 0;
    font-size: 15px;
  }
  .footer1 .footer-inner .footer-contact ul li .fa {
    width: 15px;
  }
}
@media only screen and (max-width: 500px) {
  footer.footer1 .footer-inner .container-wrapper {
    flex-direction: column;
  }
}
/*------------------------------------------------
** Error
**------------------------------------------------*/
.page-error {
  width: 100%;
  height: 100%;
  border-top: 10px solid #be8737;
}
.page-error p {
  display: block;
  text-align: center;
  font-size: 24px;
}
.page-error .content-wrapper {
  padding: 10px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-error .content-wrapper .image {
  padding-top: 5%;
}
.page-error .content-wrapper .content {
  margin: auto;
}
.page-error .content-wrapper .content h1 {
  font-weight: 700;
  font-size: 15rem;
  line-height: 1;
  color: #be8737;
}
.page-error .content-wrapper .content a.back {
  margin-top: 20px;
  font-size: 25px;
  color: #be8737;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-error .content-wrapper .content a.back .fa {
  font-size: 20px;
}
.page-error .content-wrapper .content a.back:hover {
  color: #FEF5D1;
}
.page-error .content-wrapper .content .note {
  font-size: 16px;
}

/*------------------------------------------------
** Popup
**------------------------------------------------*/
.popup {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.popup .width {
  display: block;
  position: absolute;
  width: fit-content;
  max-width: 90%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
}
.popup .width .inner {
  margin: auto;
  padding: 0 35px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .width .inner .content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.popup .width .inner .content label {
  width: 100%;
  text-align: left;
  color: #310000;
  font-weight: 500;
}
.popup .width .inner .content input[type="text"], .popup .width .inner .content .input {
  width: 100%;
  height: 52px;
  padding: 0 20px;
  color: #FFF;
  background: url("../images/txt_bg.jpg") no-repeat center/100% 100%;
  margin-bottom: 20px;
  border: 0;
}
.popup .width .inner .content input[type="text"].giftcode, .popup .width .inner .content .input.giftcode {
  background: url("../images/txt_giftcode.jpg") no-repeat center/100% 100%;
}
.popup .width .inner .content .input {
  padding: 0 10px 0 20px;
  margin-bottom: 0;
}
.popup .width .inner .content select {
  width: 100%;
  height: 100%;
  color: #FFF;
  background: transparent;
  border: 0;
}
.popup .width .inner .content select option {
  color: #000;
}
.popup .width .inner .content a {
  cursor: pointer;
  display: block;
  margin-top: 30px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.popup .width .inner .content a:hover img {
  visibility: hidden;
}
.popup .width .popup-close {
  background: url("../images/popup_close.png") no-repeat center/contain;
  width: 54px;
  height: 54px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 1;
}

/*------------------------------------------------
** MORE
**------------------------------------------------*/
.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 29px;
  width: 68px;
  height: 68px;
  display: none;
  align-items: center;
  justify-content: center;
  color: #414C5B;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  background: #ffffff;
  display: none;
  border-radius: 50px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}
.scroll-to-top:hover {
  color: #ffffff;
  background: #be8737;
}
.scroll-to-top.active {
  display: flex;
}

.overlay-bg {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 2000;
}
.overlay-bg img {
  position: fixed;
  top: calc(50% - 58px);
  left: calc(50% - 58px);
  z-index: 20001;
}

.contact-fixed {
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 999;
  width: fit-content;
}
.contact-fixed .inner {
  display: flex;
  flex-direction: column;
  float: left;
  align-items: left;
  justify-content: left;
}
.contact-fixed .inner .phone {
  position: relative;
  padding: 3px 20px;
  border-radius: 3px;
  font-weight: 600;
  line-height: 0;
  margin-right: 10px;
  margin-bottom: 10px;
}
.contact-fixed .inner .phone .fa {
  color: #FFF;
  background: rgba(69, 162, 216, 0.6);
  border-radius: 50%;
  padding: 11px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  text-align: center;
  margin-right: 10px;
  animation: 1s ease-in-out 0s normal none infinite running ring;
}
.contact-fixed .inner .phone .ring {
  animation: 1.2s ease-in-out 0s normal none infinite running ring-circle;
  background: rgba(69, 162, 216, 0.6);
  border-radius: 100%;
  height: 70px;
  left: 10px;
  opacity: 0.15;
  position: absolute;
  top: -7px;
  transform-origin: 50% 50% 0;
  transition: all 0.5s ease 0s;
  width: 70px;
}
.contact-fixed .inner .phone:hover .fa, .contact-fixed .inner .phone:hover .ring {
  background: #45a2d8;
}
.contact-fixed .inner .phone.quick {
  margin-bottom: 20px;
}
.contact-fixed .inner .phone.quick .fa {
  padding: 15px;
  font-size: 25px;
  background: rgba(255, 0, 0, 0.6);
}
.contact-fixed .inner .phone.quick .ring {
  background: rgba(255, 0, 0, 0.6);
}
.contact-fixed .inner .phone.quick:hover .fa, .contact-fixed .inner .phone.quick:hover .ring {
  background: red;
}

@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);
  }
}
@keyframes animatedlighttext {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
@-webkit-keyframes animatedlighttext {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
/*------------------------------------------------
** MEDIA ONLY SCREEN
**------------------------------------------------*/
@media only screen and (max-width: 1600px) {
  .bar-right img {
    width: 150px;
  }
}
@media only screen and (max-width: 1400px) {
  .bar-right img {
    width: 120px;
  }
  .bar-right .group-button {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 1200px) {
  .bar-right {
    display: none;
  }
}
@media only screen and (max-width: 1100px) {
  .main_menu .plugin-search {
    width: 240px;
  }
}
@media only screen and (max-width: 1000px) {
  .box-header .box-title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 800px) {
  .main-content {
    padding: 10px 0;
    margin-bottom: -300px;
  }
  .main-content .main-content-wrapper {
    padding-bottom: 230px;
  }
}
@media only screen and (max-width: 700px) {
  .box-header {
    margin: 0 0 20px;
  }
  .box-header .box-title {
    font-size: 28px;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 600px) {
  .page {
    padding-top: 56px;
  }
  .page .rd-menu,
  .page .rd-panel {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .page header {
    display: none;
  }
  .page nav.main_menu {
    display: none;
  }

  .heading .container h1 {
    font-size: 30px;
  }

  .heading {
    height: 250px;
  }
}
@media only screen and (max-width: 400px) {
  .page header .header-top .header_address {
    flex-direction: column;
  }
  .page header .header-top .header_address .item_address {
    padding-bottom: 6px;
  }
  .page header .header-top .header_address .item_address .item_text p {
    display: flex;
  }
  .page header .header-top .header_address .item_address .item_text p span {
    display: block;
    margin: 0 6px;
  }

  .popup .width .inner .content input[type="text"] {
    height: 40px;
  }
  .popup .width .inner .content .btn-gift {
    margin-top: 10px;
  }
}

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