﻿body {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Roboto', Arial, sans-serif, serif; }
  body.hideLoader #preloader {
    visibility: hidden;
    opacity: 0; }

ul, p {
  margin: 0;
  padding: 0; }

ul {
  list-style: none; }
img{max-width: 100%}
a:hover,
a:focus,
a:active {
  text-decoration: none; }

input[type=text],
input[type="email"] {
  -webkit-appearance: none; }

.overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 200;
  transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .overlay.show {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0); }

#preloader {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  background-color: #fff;
  z-index: 999999;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #01700a;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 9999; }
  #loader:before {
    content: "";
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #11a51d;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite; }
  #loader:after {
    content: "";
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #09e81b;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg); } }

.line-clamp {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; }

.lc-4 {
  -webkit-line-clamp: 4; }

.overlay-mobile {
  position: fixed;
  z-index: 300;
  width: 100%;
  left: 0;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden; }
  .overlay-mobile.show {
    opacity: 1;
    visibility: visible; }

.container--02 {
  padding: 0 !important;
  position: relative;
}

.mr-20 {
  margin-right: 20px; }

.mb-10 {
  margin-bottom: 10px !important; }

.mb-15 {
  margin-bottom: 15px !important; }

.mb-20 {
  margin-bottom: 20px !important; }

.mb-50 {
  margin-bottom: 50px !important; }

.mt-0 {
  margin-top: 0 !important; }

.mt-10 {
  margin-top: 10px !important; }

.mt-150 {
  margin-top: 150px !important; }

.pt-0 {
  padding-top: 0 !important; }

.grid {
  margin: 0 -7px;
  overflow: hidden; }

.grid-item {
  display: inline-block;
  padding: 0 7px;
  width: 50%;
  float: left; }

.grid--02 {
  margin: 0 -15px; }

.grid-item--02 {
  padding: 0 15px; }

.grid-item.grid-3 {
  margin-bottom: 20px; }

.header {
  position: relative;
  padding: 30px 0 0; }

/*********************************************dropdown*****************************************/
.dropdown {
  position: relative;
  cursor: pointer; }

.dropdown-child {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  margin-top: 2px;
  background-color: #fff; }
  .dropdown-child.show {
    display: block; }

/*********************************************trigger*****************************************/
#main-menu-trigger {
  width: 20px;
  height: 14px;
  line-height: 1px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 210; }
  #main-menu-trigger span {
    display: inline-block;
    height: 2px;
    width: 20px;
    background-color: #000;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  #main-menu-trigger:after, #main-menu-trigger:before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #000;
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  #main-menu-trigger:after {
    top: auto;
    bottom: 0; }
  #main-menu-trigger.active span {
    margin-left: 20px;
    opacity: 0; }
  #main-menu-trigger.active:after {
    -webkit-transform: rotateZ(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotateZ(-135deg);
    bottom: 7px; }
  #main-menu-trigger.active:before {
    top: 5px;
    -webkit-transform: rotateZ(135deg);
    -ms-transform: rotate(135deg);
    transform: rotateZ(135deg); }

/*********************************************search*****************************************/
.search-wrapper {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background-color: rgba(1, 112, 10, 0.9);
  padding: 0 5%;
  text-align: center;
  z-index: 100;
  transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .search-wrapper form {
    top: 50%;
    position: relative;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%); }
  .search-wrapper input:focus {
    outline: none; }
  .search-wrapper input[type='text'] {
    color: #fff;
    border: none;
    outline: none;
    border-bottom: 3px solid #fff;
    padding: 5px 0;
    background-color: transparent;
    width: calc(100% - 10% - 38px); }
    .search-wrapper input[type='text']::-webkit-input-placeholder {
      color: #fff; }
    .search-wrapper input[type='text']:-ms-input-placeholder {
      color: #fff; }
    .search-wrapper input[type='text']::placeholder {
      color: #fff; }
  .search-wrapper input[type='submit'] {
    margin-left: 10px;
    color: #fff;
    font-family: fontAwesome;
    font-size: 28px;
    background-color: transparent;
    border: none;
    vertical-align: middle;
    padding: 0;
    cursor: pointer; }
  .search-wrapper.active {
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0); }

.search {
  top: 34px;
  left: 20px;
  position: absolute;
  cursor: pointer; }

.search--02 {
  top: 43px; }

/*********************************************logo*****************************************/
.logo {
  position: relative;
  text-align: center;
  height: 54px;
  border-bottom: 3px solid #3ab044; }
  .logo img {
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    display: block;
    margin: 0 auto;
    width: 107px;
    z-index: 10; }

.logo--02 {
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  margin-top: 0;
  height: 109px;
  border-bottom: none; }
  .logo--02 img {
    margin-top: 10px;
    width: auto; }

/*********************************************main-menu*****************************************/
.nav-wrapper {
  top: 0;
  left: 0;
  position: fixed;
  width: 60%;
  height: 100%;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  overflow-y: auto;
  padding-bottom: 20px;
  z-index: 210; }
  .nav-wrapper.show {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
    .nav-wrapper.show #search {
      left: 20px; }
.main-menu ul {
    margin-bottom: 0;}

.main-menu ul li:not(.logo-item) a {
  display: block;
  font-size: 14px;
  background-color: #01700a;
  color: #fff;
  font-weight: 700;
  padding: 15px 0 15px 15px;
  text-transform: uppercase;
  border-bottom: 2px solid #fff; }

.main-menu ul li.logo-item {
  position: relative;
  display: none;
  width: 169px;
  height: 83px; }
  .main-menu ul li.logo-item a img {
    top: 28px;
    left: 0;
    position: absolute; }

.main-menu ul li {
  position: relative; }
  .main-menu ul li.search-item {
    display: none; }
  .main-menu ul li .menu-icon {
    color: #fff;
    top: 16px;
    right: 15px;
    position: absolute; }

/*********************************************static-item*****************************************/
.static-item.container {
    padding: 0;}
.iconbox-01 {
  color: #fff;
  font-size: 14px;
  padding: 8px 10px 5px; }
  .iconbox-01 span {
    font-size: 14px;
    font-weight: 700;
    margin-left: 3px; }

.left-info {
  background-color: #11a51d; }

.right-info > ul > li {
  margin-bottom: 8px; }
  .right-info > ul > li:first-child {
    margin-bottom: 5px; }

.right-info > ul .info-item {
  color: #333233;
  font-size: 13px;
  padding: 0 10px; }
  .right-info > ul .info-item.language img {
    margin: 0 3px; }

.sub-language {
  top: calc(100% + 5px);
  left: 10px;
  border: 1px solid #ccc;
  background-color: #fff;
  margin-bottom: 10px; }
  .sub-language li {
    margin: 5px 0; }

/*********************************************hero-section*****************************************/
.hero-section__banner {
  width: 100%; }

.hero-section {
  position: relative;
  z-index: 0;
  margin-bottom: 5px; }

.banner-list {
  background-color: #00900a;
  padding: 30px 15px 0; 
  position: absolute;
  bottom: 0;
  z-index: 99;
}

.banner-item {
  margin-bottom: 30px; }

.textbox {
  border-radius: 12px;
  border: 1px solid #fff;
  overflow: hidden; }
  .textbox .textbox__link {
    display: block; }
  .textbox .textbox__media {
    width: 100%; }
  .textbox .textbox__title {
    background-color: #fff;
    color: #01700a;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 0; }

    #myCarousel .carousel-item > img {
    left: 50%;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    height: 160px;
    width: auto;
    position: relative;}

/*********************************************booking*****************************************/
.booking {
  background-color: #e5f5e6; }

.booking-control {
  font-size: 0;
  position: relative;
  margin-bottom: 15px; }
  .booking-control:before {
    content: '';
    display: block;
    width: 50%; }

.booking-control-item {
  text-align: center;
  color: #01700a;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  padding: 10px 0;
  width: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff; }
  .booking-control-item .booking__icon {
    display: none;
    margin-left: 2px; }
  .booking-control-item.active {
    background-color: #01700a;
    color: #fff; }

.booking-form {
  position: relative; }
  .booking-form input[type='submit'] {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    width: 120px;
    height: 38px;
    border-radius: 4px;
    background-color: #01700a;
    border: none; }

.form-group {
  overflow: hidden;
  position: relative; }

.form-group__text {
  color: #181818;
  line-height: 38px; }

.form-group__icon {
  top: 11px;
  right: 7px;
  position: absolute; }

.form-group__select,
.form-group__input {
  font-size: 12px;
  font-weight: 700;
  padding: 10px 7px;
  width: 60%;
  float: right; }
  .form-group__select:focus,
  .form-group__input:focus {
    outline: none; }

.form-group__input {
  outline: none;
  border: 1px solid #aaa; }

.booking-content {
  padding-bottom: 15px; }

.ticket-content {
  margin: 0 auto;
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  width: calc(100%);
  background-color: #e5f5e6;
  min-height: 100%;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden; }
  .ticket-content.active {
    z-index: 0; }

/*********************************************news*****************************************/
.news {
  background-color: #fff; }

.news--02 {
  background-color: #f1f7f1; }

.news--03 {
  padding-top: 50px; }

.news__content {
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 22px; }

#news__content-02 {
  -webkit-box-shadow: none;
  box-shadow: none; }

.news__menu {
  text-align: center;
  margin-bottom: 22px; }
  .news__menu li {
    display: inline-block;
    position: relative;
    overflow: hidden;
    margin: 0 15px; }
    .news__menu li:before {
      content: '';
      display: block;
      width: 100%;
      right: 100%;
      bottom: 0;
      position: absolute;
      border-bottom: 2px solid #01700a;
      -webkit-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    .news__menu li a {
      display: inline-block;
      padding: 15px 0 5px;
      color: #232323;
      font-size: 14px; }
    .news__menu li.active a {
      font-weight: 700; }
    .news__menu li.active:before {
      -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
      transform: translateX(100%); }

.mid-content {
  margin-bottom: 20px; }

.right-content {
  padding: 0 15px; }

.textbox--02 {
  border-radius: 0;
  border: 0;
  position: relative; }
  .textbox--02 .textbox__text {
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    margin: 0 auto;
    padding: 10px 15px;
    background-color: rgba(1, 164, 14, 0.78); }
  .textbox--02 .textbox__title {
    background-color: transparent;
    color: #fff;
    text-align: left; }
  .textbox--02 .textbox__subtitle {
    color: #fff; }

.news__title {
  color: #00ad0e;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px; }

.news__list {
  font-size: 0;
  margin: 0 -10px 10px; }
  .news__list li {
    width: 100%;
    display: inline-block;
    padding: 0 10px;
    margin-bottom: 10px; }

.textbox--03 {
  position: relative;
  border-radius: 0;
  border: 0;
  width: 100%; }
  .textbox--03 .textbox__media {
    width: 35%;
    float: left;
    position: relative; }
    .textbox--03 .textbox__media img {
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      position: absolute; }
    .textbox--03 .textbox__media:after {
      content: '';
      display: block;
      padding-top: 77%;
      position: relative; }
  .textbox--03 .textbox__title {
    padding: 0;
    color: #1d1d1d;
    font-size: 14px;
    font-weight: 700;
    text-align: left; }
  .textbox--03 .textbox__subtitle {
    color: #6e6e6e;
    font-size: 12px; }
  .textbox--03 .textbox__text {
    float: right;
    width: 60%; }

.textbox--04, .textbox--06, .textbox--08 {
  border: 0;
  border-radius: 0; }
  .textbox--04 .textbox__media, .textbox--06 .textbox__media, .textbox--08 .textbox__media {
    position: relative; }
    .textbox--04 .textbox__media img, .textbox--06 .textbox__media img, .textbox--08 .textbox__media img,
    .textbox--04 .textbox__media iframe, .textbox--06 .textbox__media iframe, .textbox--08 .textbox__media iframe {
      z-index: 1;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      position: absolute; }
    .textbox--04 .textbox__media:after, .textbox--06 .textbox__media:after, .textbox--08 .textbox__media:after {
      content: '';
      display: block;
      padding-top: 61%;
      position: relative; }
  .textbox--04 .textbox__title, .textbox--06 .textbox__title, .textbox--08 .textbox__title {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    margin: 11px 12px 32px;
    padding: 0;
    background-color: transparent; }

.news__total-link {
  display: block;
  color: #6c6c6c;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px; }
  .news__total-link i {
    font-size: 13px;
    color: #00ad0e;
    line-height: 17px;
    margin-left: 3px; }

.tab {
  display: none; }
  .tab.active {
    display: block; }

/*********************************************information*****************************************/
.information {
  margin-bottom: 30px;
  background-color: #fff; }

.support {
  margin-bottom: 15px; }

.textbox--05 {
  text-align: center; }
  .textbox--05 .textbox__media {
    width: 75px;
    height: 75px;
    margin-bottom: 15px; }
  .textbox--05 .textbox__title {
    color: #252525;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px; }
  .textbox--05 .textbox__subtitle {
    color: #478749;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px; }
  .textbox--05 .social {
    margin-bottom: 15px; }
    .textbox--05 .social .social-item {
      margin-right: 5px; }
      .textbox--05 .social .social-item:last-child {
        margin-right: 0; }

.title {
  color: #01700a;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
  display: table;
  text-align: center;
  margin: 0 auto 20px; }
  .title:after {
    content: '';
    display: block;
    width: 50%;
    height: 1px;
    background-color: #069f13;
    left: 50%;
    bottom: 0;
    position: absolute;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%); }

.statistical {
  background-color: #f1f7f1; }
  .statistical .text {
    color: #232323;
    font-size: 14px;
    padding: 15px 0; }
  .statistical .text--02 {
    color: #14a12e;
    font-size: 14px;
    font-weight: 700; }
  .statistical .text--03 {
    color: #232323;
    font-size: 12px;
    padding: 15px 0; }

footer {
  padding: 50px 0;
  background-color: #1c4c25;
  color: #fff; }

.footer__text {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 30px; }
  .footer__text b {
    font-size: 14px; }

.footer-social {
  margin-bottom: 45px; }
  .footer-social .item {
    display: inline-block;
    margin: 0 14px; }

.copyright {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 15px; }

.back-top {
  font-size: 14px;
  cursor: pointer; }
  .back-top .back__icon {
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 33px;
    height: 33px;
    text-align: center;
    margin-left: 20px;
    font-size: 25px;
    vertical-align: middle; }

.header--02 .static-item {
  display: none; }

.header--02 .left-info {
  top: 0;
  left: 15px;
  right: auto; }

.header--02 #main-menu-trigger,
.header--02 .search--02 {
  top: 134px;
  bottom: 15px;}

.header--02 #main-menu-trigger:after,
.header--02 #main-menu-trigger:before,
.header--02 #main-menu-trigger span {
  background-color: #fff;
  }

  .header--02 .search--02 {
  top: 120px;
  color: #fff; }

.header__title {
  background-color: #01700a !important;
  color: #fff !important;
  text-align: center;
  padding: 10px 0 !important;
}

.nav-wrapper-02 {
  position: static;
  width: auto;
  height: auto;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  padding-bottom: 0; }
  .nav-wrapper-02 .main-menu {
    width: calc(50% - 45px);
    display: inline-block;
    margin: 10px 0; }
    .nav-wrapper-02 .main-menu ul li:not(.logo-item) {
      text-align: center; }
      .nav-wrapper-02 .main-menu ul li:not(.logo-item) a {
        color: #01700a;
        background-color: #fff;
        padding: 15px 20px;
        font-size: 11px;
        display: inline-block; }
    .nav-wrapper-02 .main-menu.main-menu-right {
      float: right; }

.menu-left-slider {
  position: static; }


.main-menu .swiper-button-prev, .swiper-button-next {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    -moz-background-size: 27px 44px;
    -webkit-background-size: 27px 44px;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}

.main-menu .swiper-icon {
  width: 10px;
  height: 20px;
  left: 5px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAPCAYAAADd/14OAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsSAAALEgHS3X78AAAAv0lEQVQoz43RPUoDURSG4WfMgGDjDtyHNlnAjRxIrY2dRbQSxNImmi1ol0awusW0KcRNWOgK4goUtAkyXMdxvva8cL4fBqjJeVz9A+xigeeqBzrAOa5SxGvdAYxwiW0cpYgPqApoD7e4SxGr9q1uQVMcYpYi1uWnusl5B3O84CRFfHV5rrHEY4p46GtgC8fYb3I+7QN/wmw8TnCRIt7/BFupb3Bfpv5VeNHjdYr47ASLZc42y7wN3frJEDU5j78BqpE/Prm+IqsAAAAASUVORK5CYII=);
  background-repeat: no-repeat !important;
  margin-top: -20px; }
  .swiper-icon.swiper-button-next {
    left: auto;
    right: 5px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAANCAYAAACQN/8FAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsSAAALEgHS3X78AAAAsElEQVQoz4WRvQkCQRCFv5PDDszFwBKsQKMNXgWKgWCkgaiIkYGRP2BuD8IIW4RNmGkBV4CY7MEGt3cTDcM3jzfzMm/WA9bAzkkFiWo56Q3cgLs3G6TArGy8WRs4AAVwctKvEowWRsAU2DjpmwQD3AHOwMNJzyQY4AxYAF1gnwSjhQkwzxsUl0FxWOfxEjxa09VbJ33KeR4B8R/HlX/0Zn3gCFyd9Kqyk4esV8CsLus/C7c8+eyENcAAAAAASUVORK5CYII=); }

.hero-section--02 {
  z-index: 99999999;
  margin-bottom: 0;
  height: 100%; }

.hero-section__menu {
  width: 210px;
  background-color: #fff;
  top: 0;
  left: 0;
  bottom: 0;
  position: fixed;
  z-index: 99999;
  transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

  .hero-section__menu .static-item .right-info .menu-top-menu-container {
    margin-top: 0;}
  .hero-section__menu ul li {
    position: relative; }
    .hero-section__menu ul li a {
      width: 100%;
      display: inline-block;
      color: #fff;
      font-size: 14px;
      padding: 8px 16px;
      border-bottom: 1px solid #fff;
      -webkit-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      background-color: #11a51d; }
      .hero-section__menu ul li a img {
        margin-right: 5px;
        width: 25px;
        height: 25px; }
    .hero-section__menu ul li.active > a {
      background-color: #ff872f; }
    .hero-section__menu ul li.active .menu-icon {
      transform: rotateZ(360deg);
      -ms-transform: rotateZ(360deg);
      -moz-transform: rotateZ(360deg);
      -webkit-transform: rotateZ(360deg); }
    .hero-section__menu ul li .sub-menu li a {
      padding-left: 25px; }
  .hero-section__menu .static-item .right-info li a {
    background-color: #fff !important; }
  .hero-section__menu.show {
    transform: translateX(0);
    -ms-transform: translateX(0);
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0); }
   .hero-section--02 .hero-section__menu ul#menu-menu-chinh >li.home:before{
        background-image: url("img/home.png");
    }

    .hero-section--02 .hero-section__menu ul#menu-menu-chinh >li.introduce:before{
        background-image: url("img/introduce.png");
    }

    .hero-section--02 .hero-section__menu ul#menu-menu-chinh >li.pricing:before{
        background-image: url("img/pricing.png");
         width: 33px;
    }

    .hero-section--02 .hero-section__menu ul#menu-menu-chinh >li.service:before{
        background-image: url("img/service.png");
    }

    .hero-section--02 .hero-section__menu ul#menu-menu-chinh >li.library:before{
        background-image: url("img/library.png");
         width: 30px;
    }

    .hero-section--02 .hero-section__menu ul#menu-menu-chinh >li.new:before{
        background-image: url("img/news.png");
         width: 30px;
    }

    .hero-section--02 .hero-section__menu ul#menu-menu-chinh >li.contact:before{
        background-image: url("img/contact.png");
         width: 25px;
    }

.menu-icon {
  top: 11px;
  right: 1px;
  position: absolute;
  color: #000;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }

.sub-menu {
  display: none; }

.new-item__title {
  display: table;
  margin: 0 auto 25px;
  position: relative;
  color: #222;
  font-size: 18px;
  font-weight: 700; }
  .new-item__title:after {
    content: '';
    display: block;
    height: 2px;
    width: 50%;
    background-color: #11a51d;
    top: 100%;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%); }

.textbox--06 {
  position: relative;
  margin-bottom: 14px; }
  .textbox--06 .textbox__text {
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background-color: rgba(0, 132, 11, 0.5);
    padding: 10px 15px;
    z-index: 99999999; }
    .textbox--06 .textbox__text .textbox__title {
      margin: 0;
      color: #fff;
      font-size: 14px;
      font-weight: 700; }

.new-item {
  margin-bottom: 10px;
  background-color: #fff;
  padding: 20px 0; }

.new-item__link {
  color: #00820a;
  font-size: 14px;
  display: table;
  margin: 0 auto;
  padding: 10px 30px;
  border: 1px solid #11a51d;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .new-item__link:hover {
    color: #fff;
    background-color: #11a51d; }

.footer--02 .footer__text span {
  display: block; }

.footer-top {
  border-bottom: 1px solid #fff; }

.post {
  overflow: hidden;
  position: relative; }

.post__title {
  display: inline-block;
  background-color: #11a51d;
  color: #fff;
  position: relative;
  font-size: 18px;
  padding: 0 16px 0 8px;
  margin-bottom: 17px;
  line-height: 36px; }
  .post__title:after {
    content: "";
    top: calc(100% - 2px);
    left: 13px;
    position: absolute;
    display: block;
    border: 12px solid transparent;
    border-top-color: #11a51d; }
  .post__title:before {
    content: '';
    display: block;
    width: 100vw;
    top: 100%;
    left: 0;
    position: absolute;
    height: 2px;
    background-color: #11a51d; }

.post__link {
  top: 7px;
  right: 0;
  position: absolute; }
  .post__link a {
    color: #141414;
    font-size: 12px; }

.post__link-icon {
  -webkit-transform: rotateZ(45deg);
  -ms-transform: rotate(45deg);
  transform: rotateZ(45deg);
  color: #11a51d;
  width: 18px;
  height: 18px;
  margin-left: 8px; }
  .post__link-icon:after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    top: -3px;
    right: 3px;
    position: absolute;
    border: 1px solid #11a51d;
    border-radius: 50%;
    transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg); }

.breadcrumb {
  background-color: #fff;
  padding: 0;
  font-size: 0; }
  .breadcrumb li {
    display: inline-block;
    margin-right: 10px; }
    .breadcrumb li a {
      color: #11a51d;
      font-size: 14px;
      padding: 0 10px 0 0;
      border-right: 1px solid #ccc; }
    .breadcrumb li:last-child a {
      color: #323232;
      border-right-color: #11a51d;
      border-right: none; }

.breadcrumb--02 {
  padding: 0 10px; }

.textbox--07 {
  margin-bottom: 30px;
  border-radius: 0;
  border: none; }
  .textbox--07 .textbox__title {
    background-color: transparent;
    color: #191919;
    text-align: left;
    font-size: 14px;
    font-weight: 700; }
  .textbox--07 .textbox__description {
    color: #000;
    font-size: 14px; }

.tab--02.active {
  display: block !important; }

.booking__description {
  font-size: 14px;
  margin-bottom: 30px;
  padding: 0 15px; }
  .booking__description b {
    color: #2e2e2e;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block; }

.booking__content {
  padding: 0 35px;
  margin-bottom: 40px; }

.form {
  max-width: 370px;
  margin: 0 auto; }
  .form label {
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 5px; }
  .form input[type="text"] {
    font-size: 14px;
    width: 100%;
    padding: 7px 15px;
    margin-bottom: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px; }
    .form input[type="text"]::-webkit-input-placeholder {
      color: #cbcbcb;
      font-size: 14px; }
    .form input[type="text"]:-ms-input-placeholder {
      color: #cbcbcb;
      font-size: 14px; }
    .form input[type="text"]::placeholder {
      color: #cbcbcb;
      font-size: 14px; }
  .form textarea {
    width: 100%;
    min-height: 126px;
    margin-bottom: 18px; }
  .form input[type=submit] {
    border-radius: 2px;
    background-color: #006c35;
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 0;
    border: none;
    cursor: pointer; }

.form__title {
  color: #11a51d;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  max-width: 370px;
  margin: 0 auto;
  padding: 20px 20px 0; }

.form--02 {
  padding: 0 20px 20px 20px; }
  .form--02 input[type=submit] {
    background-color: #11a51d; }

.form--03 {
  padding: 0 20px 20px 20px; }

.booking__info {
  border-radius: 3px;
  max-width: 370px;
  margin: 0 auto 25px; }

.booking__info-title {
  background-color: #e5f5e6;
  color: #01700a;
  font-size: 15px;
  font-weight: 500;
  padding: 20px 30px; }
  .booking__info-title .booking__icon {
    margin-left: 20px;
    color: #01700a;
    display: none; }

.booking__info-group {
  background-color: #01700a;
  color: #fff;
  padding: 25px 30px;
  overflow: hidden; }

.booking__info-item {
  color: #fff;
  margin-bottom: 12px; }
  .booking__info-item span {
    font-size: 11px;
    display: inline-block; }
  .booking__info-item div {
    font-size: 15px;
    font-weight: 700; }

.booking__reset {
  color: #333;
  font-weight: 700;
  font-size: 13px;
  border-radius: 4px;
  background-color: #fff;
  width: 120px;
  height: 33px;
  text-align: center;
  line-height: 33px;
  float: right;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .booking__reset:hover {
    color: #01700a; }

.room__menu {
  font-size: 0; }
  .room__menu li {
    background-color: #f2f2f2; }
    .room__menu li a {
      text-align: center;
      font-size: 14px;
      color: #000;
      font-size: 18px;
      font-weight: 500;
      padding: 12.5px 55px;
      display: block; }
    .room__menu li:last-child {
      margin-right: 0; }
    .room__menu li.active {
      background-color: #e5f5e6; }
      .room__menu li.active a {
        color: #01700a; }

.room__info {
  margin-bottom: 50px; }

.room__info-content {
  background-color: #e5f5e6;
  padding: 35px 30px 30px; }

.textbox--08 .textbox__title {
  color: #222;
  font-size: 14px;
  font-weight: 700;
  margin: 15px 0 5px; }

.textbox--08 .textbox__subtitle {
  color: #838383;
  font-size: 14px;
  margin-bottom: 5px; }

.textbox--08 .textbox__description {
  color: #222;
  font-size: 14px; }

.post--02 .post__title {
  color: #11a51d;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  background-color: transparent; }
  .post--02 .post__title:after, .post--02 .post__title:before {
    display: none; }

.post--02 .post__subtitle {
  color: #2f2f2f;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px; }

.post--02 .post__src {
  font-size: 14px; }

.textbox--09 {
  border-radius: 0;
  margin-bottom: 30px; }
  .textbox--09 .textbox__title {
    color: #2f2f2f;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    padding: 0;
    margin-bottom: 17px; }
  .textbox--09 .textbox__media {
    margin-bottom: 20px; }
    .textbox--09 .textbox__media > * {
      width: 100%; }
  .textbox--09 .textbox__description {
    color: #2f2f2f;
    font-size: 14px;
    font-weight: 400; }
    .textbox--09 .textbox__description img {
    width: 100%;
    height: auto;}

.relative {
  margin-bottom: 60px; }

.relative__title {
  color: #11a51d;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 0;
  border-bottom: 1px solid #d2d2d2; }

.relative__list li {
  padding: 10px 0;
  border-bottom: 1px solid #d2d2d2;
  font-size: 14px;
  font-weight: 700; }
  .relative__list li a {
    color: #626262; }

.post--03 .post__title {
  color: #5f5f5f;
  font-size: 24px;
  font-weight: 700;
  background-color: transparent;
  padding: 0; }
  .post--03 .post__title:after, .post--03 .post__title:before {
    display: none; }

.post--03 .post__subtitle {
  color: #101010;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px; }

.post--03 .post__content table {
  width: 100%;
  border: none; }
  .post--03 .post__content table tr {
    border-bottom: 1px solid #d2d2d2;
    border-top: none; }
  .post--03 .post__content table td a {
    padding: 10px 15px 10px 0;
    display: block; }
  .post--03 .post__content table thead td {
    width: 50%;
    color: #11a51d;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 0 5px; }
  .post--03 .post__content table tbody td a {
    color: #11a51d;
    font-size: 12px; }
  .post--03 .post__content table tbody td:last-child {
    color: #000;
    font-size: 14px; }

.tuyendung__logo {
  margin-bottom: 20px;
  padding: 0 15px; }

.post--04 {
  padding: 0 15px; }
  .post--04 .post__title {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    background-color: transparent;
    margin-bottom: 0;
    padding: 0; }
    .post--04 .post__title:after, .post--04 .post__title:before {
      display: none; }
  .post--04 .post__subtitle {
    color: #11a51d;
    font-size: 14px;
    margin-bottom: 15px; }
  .post--04 .post__content {
    font-size: 14px; }

.content__right {
  background-color: #f1f5f7;
  margin-bottom: 40px; }

.content__right--02 {
  background-color: transparent; }

.contact-item {
  margin-bottom: 15px; }
  .contact-item span {
    color: #323232;
    font-size: 14px;
    display: block; }
    .contact-item span:last-child {
      color: #11a51d;
      font-size: 18px; }

.about__menu {
  border: 1px solid #01700a;
  margin-bottom: 20px; }
  .about__menu li a {
    display: block;
    color: #fff;
    background-color: #01700a;
    border-bottom: 1px solid #fff;
    padding: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .about__menu li a:hover {
      background-color: #fff;
      color: #01700a; }
    .about__menu li.current_page_item a {
      background-color: #fff;
      color: #01700a; }
  .about__menu li:last-child a {
    border-bottom: none; }

@media (min-width: 480px) {
    .nav-wrapper-02 .main-menu {
      padding: 10px 0;
    }

    .header--02 #main-menu-trigger{
      top: 138px;}
    .header--02 .search--02 {
      top: 124px;
    }
  }

@media (min-width: 560px) {
  .news__list li {
    width: 33.33%; } }

@media (min-width: 768px) {
  .nav-wrapper {
    width: 290px; }
    .nav-wrapper.nav-wrapper-02 {
      width: 100%; }
      .nav-wrapper-02 .main-menu {
        padding: 0;
      }
  .grid-item {
    width: 25%; }
  .grid-item.grid-3 {
    width: 33.333333%; }
  #main-menu-trigger {
    right: 40px;}
  .search {
    left: 40px;}
  .search-wrapper input[type='text'] {
    width: 50%;
    padding: 10px 0; }
  .search-wrapper input[type='submit'] {
    font-size: 38px; }
  .textbox .textbox__title {
    font-size: 18px; }
  .copyright {
    margin-bottom: 0; }
  .textbox--07 {
    position: relative; }
    .textbox--07 .textbox__media {
      position: relative;
      width: 35%; }
      .textbox--07 .textbox__media img {
        width: 100%; }
    .textbox--07 .textbox__text {
      top: 50%;
      right: 0;
      position: absolute;
      transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      width: 60%; }
  .booking__info {
    margin: 0; }
  .booking__info-title {
    font-size: 18px; }
  .booking__info-item span {
    font-size: 14px; }
  .booking__info-item div {
    font-size: 18px; }
  .booking__reset {
    font-size: 16px; }
  .room__menu li {
    display: inline-block;
    margin-right: 10px; }
    .room__menu li a {
      display: inline-block;
      padding: 12.5px 30px;
      text-align: left; }
  .tuyendung__logo {
    margin-bottom: 20px; }
    #myCarousel .carousel-item > img {
   	 height: 260px;
 	} }

@media (min-width: 849px) {
  .nav-wrapper-02 .main-menu {
	    padding: 0;
	    margin: 10px 0 30px;
  	}
}

@media (min-width: 992px) {
   .container--02 {
    padding: 0 15px !important;}
  .header {
    z-index: 99;
    padding: 10px 0 0; }
    .header--02 {
        z-index: 999999999999;
    }
    .header__title {
      padding: 3px 0 !important;
    }
  .row.no-gutters > [class^="col-"],
  .row.no-gutters > [class*=" col-"] {
    padding: 0; }
  .search {
    display: none; }
  .search-item .search {
    color: #000;
    display: block;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    position: absolute;
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    margin: -15px 0 0 5px; }
  .support {
    margin-bottom: 0; }
  .grid-item--02 {
    width: 50%; }
  .iconbox-01 {
    display: inline-block; }
  .main-menu-wrapper > .logo {
    display: none; }
  #main-menu-trigger {
    display: none; }
  .nav-wrapper {
    position: static;
    width: auto;
    height: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    padding-bottom: 0;
    overflow-y: visible; }
    .nav-wrapper .main-menu > ul {
      text-align: center;
      padding-bottom: 7px;
      margin: 0;
      border-bottom: 4px solid #3ab044; }
      .nav-wrapper .main-menu > ul li:not(.logo-item) {
        display: inline-block; }
        .nav-wrapper .main-menu > ul li:not(.logo-item) a {
          padding: 10px 15px;
          background-color: #fff;
          color: #000;
          border: none;
          -webkit-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
          border-radius: 4px;
          margin: 0 3px; }
          .nav-wrapper .main-menu > ul li:not(.logo-item) a:hover, .nav-wrapper .main-menu > ul li:not(.logo-item) a.active {
            color: #fff;
            background-color: #01700a; }
      .nav-wrapper .main-menu > ul > li {
        padding-bottom: 3px; }
        .nav-wrapper .main-menu > ul > li.logo-item {
          display: inline-block; }
        /*.nav-wrapper .main-menu > ul > li .menu-icon {
          display: none; }*/
  .static-item {
    top: 10px;
    left: 0;
    right: 0;
    position: absolute; }
  .static-item.container {
        padding: 0 15px;}
  .right-info {
    float: left; }
  .left-info {
    top: 103px;
    right: 15px;
    position: absolute; }
  .right-info {
    float: right; }
    .right-info > ul {
      display: inline-block;
      font-size: 0; }
      .right-info > ul > li {
        display: inline-block;
        margin-bottom: 0; }
        .right-info > ul > li > a {
          border-right: 1px solid #ccc; }
  .sub-language {
    margin-bottom: 0; }
  .hero-section {
    margin-bottom: 0;
    overflow: hidden;
    max-height: calc(100vh - 294px); }

    .hero-section__banner-wrapper {
        position: relative;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

  .banner-list {
    left: 0;
    right: 0;
    bottom: 20px;
    position: absolute;
    bottom: 20px;
    z-index: 2;
    background-color: transparent;
    padding: 0; }
  .banner-item {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 0; }
    .banner-item:hover {
      transform: translateY(-11px);
      -webkit-transform: translateY(-11px);
      -ms-transform: translateY(-11px);
      -moz-transform: translateY(-11px); }
  .booking-form {
    margin-top: 15px; }
  .booking-content {
    padding-bottom: 0; }
  .booking-control {
    padding-right: 30px !important;
    margin-bottom: 0; }
  .booking-control-item {
    text-align: left;
    display: block;
    width: 100%;
    padding: 20px 0 20px 15px;
    position: relative; }
    .booking-control-item.active .booking__icon {
      display: inline-block; }
    .booking-control-item.active:after {
      opacity: 0; }
  .form-group__input--02,
  .form-group__input-03 {
    padding: 10px 7px;
    width: 84px;
    float: right; }
  .form-group__input--03 {
    width: 38px; }
  .form-group__text {
    font-size: 13px; }
  .news__list {
    margin: 0; }
    .news__list li {
      width: 100%;
      padding: 0;
      margin-bottom: 20px; }
  .right-content {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 10px 0 0; }
  .mid-content {
    margin-bottom: 0; }
  .textbox--03 .textbox__text {
    float: none;
    top: 50%;
    right: 0;
    position: absolute;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%); }
  .news__total-link {
    margin-bottom: 0; }
  .tab.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%; }
  #page-facebook {
    width: 100% !important; }
  .header--02 .static-item {
    display: block; }
  .nav-wrapper-02 .main-menu {
    width: 100%;
    margin: 0; }
  .main-menu--02 ul {
    border-bottom: 0 !important;
    padding-bottom: 28px !important; }
    .main-menu--02 ul li:not(.logo-item) {
      margin: 0 22px; }
    .main-menu--02 ul li.logo-item {
      width: 99px; }
      .main-menu--02 ul li.logo-item a img {
        top: 18px; }
  .main-menu--02 .search-item {
    margin: 0 !important; }
  .main-menu--02 a {
    font-size: 14px !important;
    color: #333 !important;
    border-radius: 0 !important;
    padding: 5px 0 !important;
    border-bottom: 2px solid transparent !important; }
    .main-menu--02 li.active a{
      background-color: transparent !important;
      color: #11a51d !important;
      border-bottom: 2px solid #11a51d !important; }
    .main-menu--02 a:hover {
      background-color: transparent !important; }
  .hero-section--02 {
    position: relative;
    overflow: hidden; }
    .hero-section--02 .hero-section__menu {
      position: absolute;
      transform: translateY(0);
      -ms-transform: translateY(0);
      -moz-transform: translateY(0);
      -webkit-transform: translateY(0);
      background-color: transparent;
      left: auto; }
      .hero-section--02 .hero-section__menu ul li {
        background-color: transparent; }
        .hero-section--02 .hero-section__menu ul li a {
        background-color: rgba(17, 165, 29, 0.8) }
        .hero-section--02 .hero-section__menu ul li a:hover {
        background-color: rgba(255, 135, 47, 0.8) }
        .hero-section--02 .hero-section__menu ul li .sub-menu {
          display: block;
          top: 0;
          left: 100%;
          position: absolute;
          visibility: hidden;
          opacity: 0;
          -webkit-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
          width: 200%;
          font-size: 0; }
          .hero-section--02 .hero-section__menu ul li .sub-menu li {
            display: inline-block;
            width: 50%; }
            .hero-section--02 .hero-section__menu ul li .sub-menu li a {
              padding: 10px 16px; }
            .hero-section--02 .hero-section__menu ul li .sub-menu li:last-child a {
              border-bottom: 1px solid #fff; }
        .hero-section--02 .hero-section__menu ul li:hover >.sub-menu {
          visibility: visible;
          opacity: 1; }
        .hero-section--02 .hero-section__menu ul li:hover > a {
          background-color: #ff872f; }
        .hero-section--02 .hero-section__menu ul li:last-child a {
          border-bottom: 0; }
      .hero-section--02 .hero-section__menu .static-item {
        display: none; }
    .hero-section--02 .hero-section__banner {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      position: absolute; }
  .footer--02 .footer-top {
    overflow: hidden;
    margin-bottom: 15px; }
  .footer--02 .footer__text {
    float: left;
    text-align: left !important;
    margin-bottom: 15px; }
    .footer--02 .footer__text span {
      display: inline-block;
      margin: 0 20px 0 0; }
    .footer--02 .footer__text b:first-child {
      display: block; }
  .footer--02 .footer-social {
    float: right;
    margin-bottom: 15px; }
  .textbox--08 .textbox__title {
    font-size: 14px; }
  .post--03 .post__content table td a {
    padding: 15px 15px 15px 0; }
  .content__left {
    width: 70%;
    padding-right: 40px;
    float: left; }
  .content__left--02 {
    width: 60%; }
  .content__right {
    width: 30%;
    float: left; }
  .content__right--02 {
    width: 40%; }
    #myCarousel .carousel-item > img {
    height: 100%
  	}  }

@media (min-width: 1200px) {
  .form-group__input--03 {
    width: 41px;
    padding: 10px 5px; }
  .form-group__text {
    font-size: 16px; }
  .form-group--02 {
    padding-left: 20px; }
    .form-group--02 input {
      width: 45px; }
  .form-group--03 {
    margin-right: -10px; }
    .form-group--03 input {
      width: 50px; }
  .booking-form input[type='submit'] {
    margin-left: 20px;
    width: 120px; } }
/**
 * ADD MORE
*/
/**
* CUSTOM
*/
.aovua-top-nav li {display: inline-block;}
.aovua-top-nav li:hover ul.sub-menu{
    display: block;
}
.aovua-top-nav li ul.sub-menu {
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
    display: none;
    float: none;
    font-size: 1em;
    right: 1px;
    list-style: outside none none;
    margin: 0px 0 0;
    padding: 1px 10px;
    position: absolute;
    text-align: right;
    white-space: nowrap;
    top: 36px;
    z-index: 1000;
}

.aovua-top-nav  li{
    padding: 6px;
}

.aovua-top-nav  li a,
.aovua-top-nav  li a:visited,
.aovua-top-nav  li a:link{
    color: #06502b;
    font-size: 0.8em;
    position: relative;
    text-transform: uppercase;
}

.card-title-in-tab{
    color: #000;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    margin: 11px 12px 32px;
    padding: 0;
    background-color: transparent;
}
.img-cover{
    height: 142px;
    overflow: hidden;
}

.menu-top-menu-container {
    margin-top: -8px;
    position: relative;
    z-index: 999;
}

.menu-top-menu-container .navbar {
    padding-right: 0;
}

.menu-top-menu-container .navbar .navbar-nav li a.dropdown-item {
    font-size: 14px;
    padding: 5px 10px;
}

#menu-item-9999999999 {
    padding-right: 18px;
    position: relative;
}
.news__menu li a {
    color: #232323;
    display: inline-block;
    font-size: 14px;
    padding: 15px 0 5px;
    text-transform: uppercase;
}
.nav-pills .nav-link.active {
    color: #01700a!important;
    font-weight: bold;
    display: inline-block;
    font-size: 14px;
    padding: 15px 0 5px;
    background: none!important;
}
.nav-wrapper .main-menu > ul li.search-item a{ display: none;}
.left-info {
    top: 109px;
}

.search-wrapper {
    z-index: 1000;
}
.navi mt-4 div {
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #000;
}

.navi mt-4 div a {
  font-size: 14px;
  color: #11a51d;
}

.navi mt-4 div:last-child {
  border-right: none;
}

.navi mt-4 div:last-child a {
  color: #333;
}

.navi-before {
    background-color: #ccc !important;
    height: 17px !important
    margin-bottom: 0 !important;
    padding: 0 !important
    width: 1px; 
}

#menu-menu-chinh,
#menu-main-menu {
    margin-bottom: 0;
}

#menu-menu-chinh .menu-icon,
#menu-main-menu .menu-icon {
    display: none;
}

.phone span {
    color: inherit !important;
    text-decoration: none !important;
}

.navi-home { height: 35px; overflow: hidden; display: inline-block;}
.navi-location { height: 35px; overflow: hidden; display: inline-block; margin: 0 0 0 -16px;}
.navi a { display: inline-block; background-color: #00a038; color: #fff; padding: 0 10px; margin: 0; vertical-align: middle; height: 35px; line-height: 35px; clear: both;}
/*.navi-before { width: 18px; background: url(img/navi-before.png); display: inline-block; background-color: transparent !important; padding: 0!important;}*/
.navi-after { width: 18px; background: url(img/navi-after.png);  display: inline-block;background-color: transparent !important; padding: 0 !important;}

.navi-location {
    margin: 0;
}

.navi-location:last-child a {
    color: #333
}

.navi-after {
    display: none !important;
}

.navi a {
    background-color: transparent;
    color: #11a51d;
    height: 26px;
    line-height: 26px;
}

.navi a:hover {
    text-decoration: none;
}

.navi-before {
    background-color: #ccc !important;
    height: 17px !important;
    margin-bottom: 0;
    padding: 0 !important;
    width: 1px !important; 
}
.main-menu--02 .swiper-container,
.main-menu-right .swiper-container {
    position: static;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    z-index: 1;
}

.main-menu--02 .swiper-wrapper,
.main-menu-right .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.main-menu--02 .swiper-slide,
.main-menu-right .swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

#myCarousel {
    height: 100%;
}

#myCarousel .carousel-inner {
    height: 100%;
}

#myCarousel .carousel-item {
    height: 100%;
}

 .hero-section--02 .hero-section__menu ul li.menu-item:before {
        content: '';
        display: block;
        width: 25px;
        height: 25px;
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        top: 5px;
        left: 10px;}

.hero-section--02 .hero-section__menu ul.primary-menu >li.home:before{
    background-image: url("img/home.png");
}

.hero-section--02 .hero-section__menu ul.primary-menu >li.introduce:before{
    background-image: url("img/introduce.png");
}

.hero-section--02 .hero-section__menu ul.primary-menu >li.pricing:before{
    background-image: url("img/pricing.png");
     width: 33px;
}

.hero-section--02 .hero-section__menu ul.primary-menu >li.service:before{
    background-image: url("img/service.png");
}

.hero-section--02 .hero-section__menu ul.primary-menu >li.library:before{
    background-image: url("img/library.png");
     width: 30px;
}

.hero-section--02 .hero-section__menu ul.primary-menu >li.new:before{
    background-image: url("img/news.png");
     width: 30px;
}

.hero-section--02 .hero-section__menu ul.primary-menu >li.contact:before{
    background-image: url("img/contact.png");
     width: 25px;
}

.hero-section--02 .hero-section__menu ul.primary-menu >li.service-02:before{
    background-image: url("img/service-02.png");
}

.hero-section--02 .hero-section__menu ul.primary-menu >li.pagoda:before{
    background-image: url("img/chua.png");
     width: 30px;
}

.hero-section__menu >ul > li > a {
    padding-left: 56px !important;
}