@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
@font-face {
  font-family: Font-Regular;
  src: url("./fonts/GoogleSans/GOOGLESANS-REGULAR.TTF") format("truetype");
}

@font-face {
  font-family: Font-Bold;
  src: url("./fonts/GoogleSans/GOOGLESANS-BOLD.TTF") format("truetype");
}

@font-face {
  font-family: Font-Medium;
  src: url("./fonts/GoogleSans/GOOGLESANS-MEDIUM.TTF") format("truetype");
}

@font-face {
  font-family: 'FS-MAGISTRAL-BOOK';
  font-style: normal;
  font-weight: normal;
  src: url("./fonts/FS-MAGISTRAL/FS-MAGISTRAL-BOOK.TTF") format("truetype");
}

@font-face {
  font-family: 'FS-MAGISTRAL-BOOKITALIC';
  font-style: normal;
  font-weight: normal;
  src: url("./fonts/FS-MAGISTRAL/FS-MAGISTRAL-BOOKITALIC.TTF") format("truetype");
}

@font-face {
  font-family: 'FS-MAGISTRAL-BOLD';
  font-style: normal;
  font-weight: 700;
  src: url("./fonts/FS-MAGISTRAL/FS-MAGISTRAL-BOLD.TTF") format("truetype");
}

@font-face {
  font-family: 'FS-MAGISTRAL-BOLDITALIC';
  font-style: normal;
  font-weight: normal;
  src: url("./fonts/FS-MAGISTRAL/FS-MAGISTRAL-BOLDITALIC.TTF") format("truetype");
}

@font-face {
  font-family: 'FS-MAGISTRAL-EXTRABOLD';
  font-style: normal;
  font-weight: normal;
  src: url("./fonts/FS-MAGISTRAL/FS-MAGISTRAL-EXTRABOLD.TTF") format("truetype");
}

@font-face {
  font-family: 'FS-MAGISTRAL-EXTRABOLDITALIC';
  font-style: normal;
  font-weight: normal;
  src: url("./fonts/FS-MAGISTRAL/FS-MAGISTRAL-EXTRABOLDITALIC.TTF") format("truetype");
}

@font-face {
  font-family: 'FS-MAGISTRAL-LIGHT';
  font-style: normal;
  font-weight: normal;
  src: url("./fonts/FS-MAGISTRAL/FS-MAGISTRAL-LIGHT.TTF") format("truetype");
}

@font-face {
  font-family: 'FS-MAGISTRAL-LIGHTITALIC';
  font-style: normal;
  font-weight: normal;
  src: url("./fonts/FS-MAGISTRAL/FS-MAGISTRAL-LIGHTITALIC.TTF") format("truetype");
}

@font-face {
  font-family: 'FS-MAGISTRAL-MEDIUM';
  font-style: normal;
  font-weight: 500;
  src: url("./fonts/FS-MAGISTRAL/FS-MAGISTRAL-MEDIUM.TTF") format("truetype");
}

@font-face {
  font-family: 'FS-MAGISTRAL-MEDIUMITALIC';
  font-style: normal;
  font-weight: normal;
  src: url("./fonts/FS-MAGISTRAL/FS-MAGISTRAL-MEDIUMITALIC.TTF") format("truetype");
}

@font-face {
  font-family: 'ICIELLOUSIANE';
  font-style: normal;
  font-weight: normal;
  src: url("./fonts/ICIELLOUSIANE/ICIELLOUSIANE.TTF") format("truetype");
}

:root {
    --font-normal: "Montserrat";
    --font-bold: "MontserratBold";
    --font-medium: "MontserratBold";
    --font-heading: "MontserratBold";
    --font-title: "MontserratBold";
    --font-second-normal: "Montserrat";
    --font-second-bold: "MontserratBold";
    --font-second-medium: "MontserratBold";
    --font-second-light: "Montserrat";
    --font-icon: "FontAwesome";
    --color-main: #0077B6;
    --color-blue: #1d7dc9;
    --color-text: #333333;
    --color-black: #000;
    --color-white: #fff;
    --bs-gutter-x: 15px;
}

* {
  margin: 0px;
  padding: 0px;
}

*,
::before,
::after {
  box-sizing: border-box;
}

a {
  color: var(--color-text);
  transition: all 0.4s ease 0s;
  display: inline-block;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--color-main);
  transition: all 0.4s ease 0s;
}

a:hover p {
  color: var(--color-text);
}

ul {
  list-style: none;
  margin-bottom: 0px;
  padding-left: 0;
}

.row {
  --bs-gutter-x: 30px;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-second-normal);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  object-fit: cover;
  transition: all .4s;
}

/* img:hover {
    opacity: .8;
} */
strong *,
strong {
  font-family: var(--font-bold);
}

main.overflow {
  overflow-x: hidden;
}

a:not(.item):focus,
a:not(.item):focus-visible,
input,
input:focus,
button,
button:focus,
select,
select:focus,
select:focus-visible,
textarea,
textarea:focus,
textarea:focus-visible {
  box-shadow: none !important;
  /* border: none; */
  outline: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

@media (min-width: 1650px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1650px;
  }
}

@media (max-width: 1649px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 100%;
  }
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-main {
  color: var(--color-main);
}

.column-style-right {
  padding-right: calc((100vw - 1200px) / 2);
}

@media (max-width: 1199px) {
  .column-style-right {
    padding-right: calc((100vw - 992px) / 2);
  }
}

@media (max-width: 991px) {
  .column-style-right {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
}

.column-style-left {
  padding-left: calc((100vw - 1200px) / 2);
}

@media (max-width: 1199px) {
  .column-style-left {
    padding-left: calc((100vw - 992px) / 2);
  }
}

@media (max-width: 991px) {
  .column-style-left {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.vertical-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.padding-right-0 {
  padding-right: 0;
}

.padding-left-0 {
  padding-left: 0;
}

.line-row {
  display: block;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
  height: 1px;
  position: relative;
  margin: 30px 0 50px;
}

.border-top {
  border-top: 1px solid #f0f0f0 !important;
}

.btn-theme, .btn-white, .btn-theme-outline, .btn-black-outline,
.btn-gray-outline, .btn-white-outline, .btn-blue-outline,
.btn-blue, .btn-pink, .btn-red {
  text-align: center;
  padding: 0px 30px;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1;
  height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s;
}

.btn-white {
  background: #fff;
  color: var(--color-main);
  border-color: var(--color-main);
}

.btn-white:hover, .btn-white:focus {
  background: var(--color-main);
  border-color: var(--color-main);
  color: #fff;
}

.btn-theme {
  color: #fff;
  background: var(--color-main);
  text-transform: uppercase;
  font-size: 16px;
  font-family: var(--font-second-medium);
  border-radius: 21px;
  border: 1px solid var(--color-main);
}

.btn-theme:hover, .btn-theme:focus {
  color: var(--color-main);
  background: transparent;
  border-color: var(--color-main);
}

.btn-blue {
  color: #fff;
  background: var(--color-blue);
}

.btn-blue:hover, .btn-blue:focus {
  color: #fff;
  background: var(--color-main);
}

.btn-pink {
  color: #fff;
  background: #ff5f5f;
}

.btn-pink:hover, .btn-pink:focus {
  color: #fff;
  background: var(--color-blue);
}

.btn-red {
  color: #fff;
  background: #db2424;
}

.btn-red:hover, .btn-red:focus {
  color: #fff;
  background: var(--color-main);
}

.btn-theme-outline {
  border: 1px solid var(--color-main);
  color: var(--color-text);
  background: #fff;
}

.btn-theme-outline img {
  margin-left: 12px;
}

.btn-theme-outline:hover, .btn-theme-outline:focus {
  background: var(--color-main);
  color: #fff;
}

.btn-theme-outline:hover img, .btn-theme-outline:focus img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.btn-blue-outline {
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  background: #fff;
}

.btn-blue-outline img {
  margin-left: 10px;
}

.btn-blue-outline:hover, .btn-blue-outline:focus {
  background: var(--color-blue);
  color: #fff;
}

.btn-blue-outline:hover img, .btn-blue-outline:focus img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.btn-white-outline {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-white-outline:hover, .btn-white-outline:focus {
  background: var(--color-main);
  border-color: var(--color-main);
  color: #fff;
}

.btn-black-outline {
  padding: 12px 15px;
  font-size: 15px;
  border-radius: 25px;
  transition: all 0.35s;
  border: 1px solid var(--color-text);
}

.btn-black-outline:before {
  border-radius: 25px;
}

.btn-black-outline:hover, .btn-black-outline:focus {
  background-image: linear-gradient(to right, #f8f658, #f76385, #194b84);
  background-repeat: no-repeat;
  background-origin: border-box;
}

.btn-gray-outline {
  border: 1px solid #cbcbcb;
  color: #333;
  background: #fff;
}

.btn-gray-outline img {
  margin-left: 10px;
}

.btn-gray-outline:hover, .btn-gray-outline:focus {
  background: var(--color-main);
  color: #fff;
  border-color: var(--color-main);
}

.btn-inline {
  color: var(--color-text);
  font-size: 15px;
}

.btn-inline span {
  font-size: 12px;
}

.btn-inline:hover, .btn-inline:focus {
  color: var(--color-main);
}

.btn-theme-inline {
  color: var(--color-main);
}

.btn-theme-inline span {
  color: var(--color-main);
  font-size: 12px;
}

.btn-theme-inline:hover, .btn-theme-inline:focus {
  color: var(--color-text);
}

.btn-arrow-main {
  position: relative;
}

.btn-arrow-main:after {
  content: "";
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
  margin-left: 10px;
  background-image: url(../images/btn-arrow-main.png);
}

.btn-arrow-main:hover:after, .btn-arrow-main:focus:after {
  background-image: url(../images/btn-arrow-blue.png);
}

.btn-arrow, .btn-arrow-white {
  position: relative;
}

.btn-arrow:after, .btn-arrow-white:after {
  content: "";
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  margin-left: 10px;
}

.btn-arrow:after {
  background-image: url(../image/btn-arrow.png);
}

.btn-arrow:hover:after, .btn-arrow:focus:after {
  background-image: url(../image/btn-arrow-white.png);
}

.btn-arrow-white:after {
  background-image: url(../image/btn-arrow-white.png);
}

.btn-readmore, .btn-readmore-theme {
  position: relative;
}

.btn-readmore:after, .btn-readmore-theme:after {
  content: "";
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  margin-left: 3px;
}

.btn-readmore:after {
  background-image: url(../images/arrow-more.png);
}

.btn-readmore:hover:after, .btn-readmore:focus:after {
  background-image: url(../images/arrow-more-white.png);
}

.btn-readmore-theme:after {
  background-image: url(../images/arrow-more-white.png);
}

.btn-readmore-theme:hover:after, .btn-readmore-theme:focus:after {
  background-image: url(../images/arrow-more.png);
}

.btn-down {
  position: relative;
}

.btn-down:after {
  content: "";
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  margin-left: 5px;
  background-image: url(../images/arrow-down-white.png);
}

.btn-down:hover:after, .btn-down:focus:after {
  background-image: url(../images/arrow-down.png);
}

@media (max-width: 575px) {
  .column-3 {
    width: 33.3333333333%;
  }
  .column-3 .icon-box.style-1 {
    margin-bottom: 0;
  }
  .column-3 .icon-box.style-1 .title {
    height: 22px;
    overflow: hidden;
  }
}

.block-grid {
  margin: 0 -15px;
}

@media (min-width: 576px) {
  .block-grid {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .block-grid {
    margin: 0 -7px;
  }
}

.block-grid .block-item {
  padding: 0 15px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .block-grid .block-item {
    padding: 0 7px;
    margin-bottom: 15px;
  }
}

.block-grid.padding-small {
  margin: 0 -10px;
}

.block-grid.padding-small .block-item {
  padding: 0 10px;
}

@media (min-width: 1680px) {
  .block-grid.block-col-7 .block-item {
    width: 14%;
  }
}

@media (max-width: 1679px) and (min-width: 992px) {
  .block-grid.block-col-7 .block-item {
    width: 20%;
  }
}

@media (max-width: 991px) and (min-width: 576px) {
  .block-grid.block-col-7 .block-item {
    width: 50%;
  }
}

.block-grid.block-col-5 {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .block-grid.block-col-5 .block-item {
    width: 20%;
  }
}

@media (max-width: 991px) {
  .block-grid.block-col-5 .block-item {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .block-grid.block-col-4 .block-item {
    width: 25%;
  }
}

@media (max-width: 991px) and (min-width: 576px) {
  .block-grid.block-col-4 .block-item {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .block-grid.block-col-3 .block-item {
    width: 33.33333%;
  }
}

@media (max-width: 991px) and (min-width: 576px) {
  .block-grid.block-col-3 .block-item {
    width: 50%;
  }
}

@media (min-width: 576px) {
  .block-grid.block-col-2 .block-item {
    width: 50%;
  }
}

.block-grid.block-col-1 .block-item {
  width: 100%;
}

#wrapper {
  max-width: 100%;
}

.owl-carousel .owl-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0 !important;
  background: rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.15) !important;
  opacity: 1;
  transition: all 0.35s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.owl-carousel .owl-nav button span {
  display: none;
}

.owl-carousel .owl-nav button:before {
  content: "";
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 9px;
  height: 9px;
}

.owl-carousel .owl-nav .owl-prev {
  left: 10px;
}

.owl-carousel .owl-nav .owl-prev:before {
  background-image: url(../image/owl-prev.png);
}

.owl-carousel .owl-nav .owl-prev:hover:before, .owl-carousel .owl-nav .owl-prev:focus:before {
  background-image: url(../image/owl-prev-hover.png);
}

.owl-carousel .owl-nav .owl-next {
  right: 10px;
}

.owl-carousel .owl-nav .owl-next:before {
  background-image: url(../image/owl-next.png);
}

.owl-carousel .owl-nav .owl-next:hover:before, .owl-carousel .owl-nav .owl-next:focus:before {
  background-image: url(../image/owl-next-hover.png);
}

.image-fit {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.image-fit .image {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.image-fit .image:before {
  content: "";
  display: block;
  padding-bottom: calc(100%);
}

.image-fit .image .image-inner {
  display: inline-block;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 1;
}

.image-fit .image .image-inner img {
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}

.image-fit:hover .image img {
  transform: scale(1.1);
}

@media (min-width: 992px) {
  .column-height-full * {
    height: 100% !important;
  }
  .full-height {
    height: 100%;
  }
  .full-height .image {
    height: 100%;
  }
  .full-height .image a {
    height: 100%;
  }
}

@media (min-width: 768px) {
  .full-column-height > .image {
    height: 100% !important;
  }
  .full-column-height > .image * {
    height: 100% !important;
  }
}

.effect-beat:hover img, .effect-beat:focus img {
  -webkit-animation: beat1 1.5s ease 0s infinite;
  animation: beat1 1.5s ease 0s infinite;
}

@keyframes beat1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
  }
}

@-webkit-keyframes beat1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
  }
}

.effect-hazy:hover img, .effect-hazy:focus img {
  -webkit-animation: hazy 1.5s ease 0s infinite;
  animation: hazy 1.5s ease 0s infinite;
}

@keyframes hazy {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.8;
  }
}

@-webkit-keyframes hazy {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.8;
  }
}

.list-style-1 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 480px) {
  .list-style-1 {
    display: inline-block;
  }
}

.list-style-1 li {
  margin-left: 26px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .list-style-1 li {
    margin-left: 0;
    margin-right: 30px;
  }
}

.list-style-1 li img {
  margin-right: 5px;
  margin-top: -2px;
}

.topbar {
  font-size: 15px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .topbar {
    display: none;
  }
}

.topbar .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar .menu-info {
  display: flex;
  align-items: center;
}

.topbar .menu-info li + li {
  margin-left: 40px;
}

.topbar .menu-info span {
  font-size: 13px;
  color: var(--color-main);
}

.topbar .menu-info strong {
  font-family: var(--font-second-medium);
}

.topbar .social a img {
  width: 14px;
}

.header {
  z-index: 11;
  transition: 0.3s;
  background: #fff;
  position: relative;
}

.header.fixed {
  position: fixed;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  width: 100%;
  top: 0;
}

.header .header-main {
  display: flex;
  align-items: center;
  z-index: 999;
  justify-content: space-between;
}

.header .header-main .logo {
  padding: 19px 0;
}

.header .header-main .logo img {
  max-width: 281px;
  transition: 0.3s;
}

@media (max-width: 1400px) {
  .header .header-main .logo img {
    max-width: 217px;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .header .header-main {
    flex-direction: column;
  }
  .header .header-main .logo {
    padding-bottom: 0;
  }
}

.header-menu {
  display: flex;
  align-items: center;
}

.header-menu ul {
  list-style: none;
  margin-bottom: 0px;
  padding-left: 0;
}

.header-menu .mobile-nav {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 100%;
}

.header-menu .mobile-nav > a {
  color: #fff;
  background: var(--color-main);
  width: 44px;
  height: 44px;
  font-size: 24px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
    flex-wrap: wrap;
  }
  .nav-menu > li {
    padding: 22px 0;
  }
  .nav-menu > li > a {
    padding: 5px 20px;
    font-size: 16px;
    line-height: 1;
    position: relative;
    font-family: var(--font-second-medium);
    height: 42px;
    border-radius: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-menu > li > a:hover, .nav-menu > li > a:focus {
    color: #fff;
    background: var(--color-main);
  }
}

@media (min-width: 992px) and (max-width: 1365px) and (min-width: 1200px) {
  .nav-menu > li > a {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .nav-menu > li > a {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (min-width: 992px) {
  .nav-menu > li > a .text-home {
    display: none;
  }
  .nav-menu > li.active > a {
    color: #fff;
    background: var(--color-main);
  }
  .nav-menu > li .icon-toggleSubmenu {
    display: none;
  }
  .nav-menu > li.menu-dropdown:hover > a {
    color: #fff;
    background: var(--color-main);
  }
  .nav-menu > li > .sub-menu {
    z-index: 99;
    border-radius: 20px;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 992px) and (max-width: 1230px) {
  .nav-menu > li > .sub-menu {
    padding: 0;
    margin: 0;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .nav-menu > li > .sub-menu.fullwidth {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
  }
}

@media (min-width: 992px) and (min-width: 1650px) {
  .nav-menu > li > .sub-menu.fullwidth {
    width: 2041px;
  }
}

@media (min-width: 992px) {
  .nav-menu > li > .sub-menu.fullwidth > .sub-menu-inner {
    width: 100%;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    position: relative;
  }
}

@media (min-width: 992px) and (min-width: 1650px) {
  .nav-menu > li > .sub-menu.fullwidth > .sub-menu-inner {
    width: 1650px;
  }
}

@media (min-width: 992px) {
  .nav-menu > li .sub-menu {
    position: absolute;
    list-style: none;
    min-width: 230px;
    width: 100%;
    background-color: #fff;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    font-size: 16px;
    line-height: 24px;
    color: #000;
  }
    .nav-menu > li:hover .sub-menu {
    opacity: 0;
    visibility: hidden;
  }
  .nav-menu > li .sub-menu li {
    transition: all 0.35s;
    padding: 6px 0;
  }
  .nav-menu > li .sub-menu li.menu-dropdown a:before {
    content: none;
  }
  .nav-menu > li .sub-menu li.menu-dropdown:hover > .sub-menu, .nav-menu > li .sub-menu li.menu-dropdown.active > .sub-menu {
    left: 518px;
    top: 68px;
    max-width: 509px;
    opacity: 1;
    visibility: visible;
    padding-left: 50px;
    background: transparent;
  }
}

@media (min-width: 992px) and (max-width: 1649px) {
  .nav-menu > li .sub-menu li.menu-dropdown:hover > .sub-menu, .nav-menu > li .sub-menu li.menu-dropdown.active > .sub-menu {
    left: 455px;
    max-width: 490px;
  }
}

@media (min-width: 992px) and (max-width: 1365px) {
  .nav-menu > li .sub-menu li.menu-dropdown:hover > .sub-menu, .nav-menu > li .sub-menu li.menu-dropdown.active > .sub-menu {
    max-width: 335px;
    left: 364px;
  }
}

@media (min-width: 992px) and (max-width: 1170px) {
  .nav-menu > li .sub-menu li.menu-dropdown:hover > .sub-menu, .nav-menu > li .sub-menu li.menu-dropdown.active > .sub-menu {
    max-width: 310px;
    left: 310px;
    padding-left: 45px;
  }
}

@media (min-width: 992px) {
  .nav-menu > li .sub-menu a {
    font-family: var(--font-second-medium);
  }
  .nav-menu > li .sub-menu a:hover {
    color: var(--color-main);
  }
  .nav-menu > li:nth-last-child(2) .sub-menu .sub-menu {
    right: 100%;
    left: auto;
  }
  .nav-menu > li .nav-sub-menu {
    max-width: 520px;
    width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1649px) {
  .nav-menu > li .nav-sub-menu {
    max-width: 450px;
  }
}

@media (min-width: 992px) and (max-width: 1365px) {
  .nav-menu > li .nav-sub-menu {
    max-width: 360px;
  }
}

@media (min-width: 992px) and (max-width: 1170px) {
  .nav-menu > li .nav-sub-menu {
    max-width: 310px;
  }
}

@media (min-width: 992px) {
  .nav-menu > li .nav-sub-menu > li {
    position: static;
  }
  .nav-menu > li .nav-sub-menu > li > a {
    position: relative;
    transition: all 0.35s;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .nav-menu > li .nav-sub-menu > li > a:after {
    content: "\f105";
    font-size: 16px;
    font-family: var(--font-icon);
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 0;
    opacity: 0;
    transition: all 0.35s;
  }
  .nav-menu > li .nav-sub-menu > li:hover > a, .nav-menu > li .nav-sub-menu > li:first-child > a {
    padding-left: 35px;
    color: var(--color-main);
  }
  .nav-menu > li .nav-sub-menu > li:hover > a:after, .nav-menu > li .nav-sub-menu > li:first-child > a:after {
    opacity: 1;
    left: 15px;
  }
  .nav-menu > li .nav-sub-menu > li:hover .image, .nav-menu > li .nav-sub-menu > li.active .image {
    opacity: 1;
    visibility: visible;
  }
  .nav-menu > li .tour-menu {
    width: 100%;
    min-height: 430px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: -15px;
  }
}

@media (min-width: 992px) and (min-width: 1650px) {
  .nav-menu > li .tour-menu {
    width: 1650px;
    padding: 0 15px;
  }
}

@media (min-width: 992px) {
  .nav-menu > li .tour-menu .title {
    font-size: 18px;
    text-transform: uppercase;
    font-family: var(--font-second-medium);
    margin-top: 32px;
    margin-bottom: 15px;
    color: var(--color-main);
  }
  .nav-menu > li .tour-menu > .nav-sub-menu {
    max-height: 334px;
    overflow-y: auto;
    padding-right: 13px;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .nav-menu > li .tour-menu > .nav-sub-menu::-webkit-scrollbar {
    width: 5px;
  }
  .nav-menu > li .tour-menu > .nav-sub-menu::-webkit-scrollbar-track {
    border-radius: 2px;
    background: rgba(255, 80, 57, 0.2);
    border-radius: 3px;
  }
  .nav-menu > li .tour-menu > .nav-sub-menu::-webkit-scrollbar-thumb {
    background: var(--color-main);
    border-radius: 3px;
  }
  .nav-menu > li .tour-menu > .nav-sub-menu::-webkit-scrollbar-thumb:hover {
    background: var(--color-main);
    border-radius: 3px;
  }
  .nav-menu > li .tour-menu > .nav-sub-menu > li {
    padding: 0;
    border-bottom: 1px solid #dfdfdf;
    line-height: 41px;
  }
  .nav-menu > li .tour-menu > .nav-sub-menu > li:first-child {
    border-top: 1px solid #dfdfdf;
  }
  .nav-menu > li .tour-menu .image {
    position: absolute;
    right: 0;
    width: 400px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
  }
}

@media (min-width: 992px) and (max-width: 1170px) {
  .nav-menu > li .tour-menu .image {
    width: 320px;
  }
}

@media (min-width: 992px) {
  .nav-menu > li .tour-menu .image .image-inner {
    position: relative;
    overflow: hidden;
  }
  .nav-menu > li .tour-menu .image .image-inner:before {
    display: block;
    content: "";
    padding-bottom: 100%;
  }
  .nav-menu > li .tour-menu .image a {
    display: inline-block;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 1;
  }
  .nav-menu > li .tour-menu .image img {
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .nav-menu > li .blog-submenu {
    display: flex;
    justify-content: center;
    padding: 30px 0;
    width: 100%;
  }
  .nav-menu > li .blog-submenu > div {
    margin: 0 15px;
    text-align: center;
  }
  .nav-menu li.menu-dropdown > a {
    position: relative;
  }
  .nav-menu li.menu-dropdown > a:before {
    position: absolute;
    z-index: 999;
    bottom: -31px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 19px;
    height: 23px;
    background: url(../image/chevron-submenu.png);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .nav-menu li.menu-dropdown .sub-menu li .sub-menu {
    left: 100%;
    top: 0;
  }
  .nav-menu li.menu-dropdown:hover > a:before {
    opacity: 1;
    visibility: visible;
  }
  .nav-menu li.menu-dropdown:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
  }
}

.blog-submenu .post.post-item-1 {
  max-width: 216px;
  width: 100%;
}

.blog-submenu .post.post-item-1 .image {
  max-width: 216px;
  width: 100%;
  border-radius: 5px;
}

.blog-submenu .post.post-item-1 .image:before {
  padding-bottom: 56%;
  height: auto;
}

.blog-submenu .post.post-item-1 .title {
  margin-top: 12px;
  margin-bottom: 0;
  height: 24px;
  overflow: hidden;
  font-size: 16px;
}

.blog-submenu .post.post-item-1:hover .title a {
  color: var(--color-main);
}

body.menu-mobile {
  position: relative;
}

body.menu-mobile:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.header-mobile-menu {
  background: #fff;
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding-bottom: 50%;
  z-index: 2;
  overflow-y: scroll;
  top: 100%;
  left: 0;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.13);
}

.header-mobile-menu ul, .header-mobile-menu ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-mobile-menu .nav-menu {
  padding: 0 15px;
}

.header-mobile-menu .nav-menu > li > a {
  padding: 12px 0;
  height: auto;
}

.header-mobile-menu .nav-menu > li > a span.fa {
  display: none;
}

.header-mobile-menu .nav-menu > li:hover > a, .header-mobile-menu .nav-menu > li:hover > .icon-toggleSubmenu, .header-mobile-menu .nav-menu > li.active > a, .header-mobile-menu .nav-menu > li.active > .icon-toggleSubmenu {
  color: var(--color-main);
}

.header-mobile-menu .nav-menu li {
  position: relative;
  border-bottom: 1px solid #dadada;
}

.header-mobile-menu .nav-menu li .icon-toggleSubmenu {
  position: absolute;
  right: 0px;
  top: 0px;
}

.header-mobile-menu .nav-menu a {
  font-family: var(--font-bold);
  font-size: 16px;
  display: block;
}

.header-mobile-menu .nav-menu .icon-toggleSubmenu {
  display: flex;
  font-size: 10px;
  color: var(--color-text);
  width: 40px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.header-mobile-menu .nav-menu .sub-menu {
  display: none;
  border-top: 1px solid #dadada;
}

.header-mobile-menu .nav-menu .sub-menu .sub-menu a {
  padding-left: 15px;
}

.header-mobile-menu .nav-menu .sub-menu li:last-child {
  border: 0;
}

.header-mobile-menu .nav-menu .sub-menu li a {
  padding: 10px 15px;
  text-transform: none;
  font-family: var(--font-normal);
  position: relative;
  transition: all 0.35s;
}

.header-mobile-menu .nav-menu .sub-menu li a:after {
  content: "\f105";
  font-size: 16px;
  font-family: var(--font-icon);
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 9px;
  opacity: 0;
  transition: all 0.35s;
}

.header-mobile-menu .nav-menu .sub-menu li:hover a, .header-mobile-menu .nav-menu .sub-menu li.active a {
  color: var(--color-main);
  padding-left: 25px;
}

.header-mobile-menu .nav-menu .sub-menu li:hover a:after, .header-mobile-menu .nav-menu .sub-menu li.active a:after {
  opacity: 1;
  left: 15px;
}

.header-mobile-menu .nav-menu .sub-menu li:hover .icon-toggleSubmenu, .header-mobile-menu .nav-menu .sub-menu li.active .icon-toggleSubmenu {
  color: var(--color-main);
}

.header-mobile-menu .nav-menu .sub-menu .tour-menu .title, .header-mobile-menu .nav-menu .sub-menu .nav-sub-menu .image {
  display: none;
}

.header-mobile-menu .nav-menu .sub-menu .infomation {
  padding: 15px;
  padding-left: 25px;
}

.header-mobile-menu .nav-menu .sub-menu .infomation p:last-child {
  margin-bottom: 0;
}

.header-mobile-menu .nav-menu .sub-menu .blog-submenu {
  padding: 15px 15px 0;
}

.header-mobile-menu .nav-menu .sub-menu .blog-submenu .post.post-item-1 {
  margin-bottom: 15px;
}

.header-mobile-menu .nav-menu .sub-menu .blog-submenu .post.post-item-1 .title {
  margin-top: 5px;
}

@media (max-width: 991px) {
  .header {
    position: sticky;
  }
  .header .header-menu .mobile-nav {
    display: block;
    position: absolute;
    right: 15px;
  }
  .header .header-menu .nav-menu {
    display: none;
  }
}

body.home .footer {
  margin-top: 0px;
}

body.search .breadcrumb-main .breadcrumb-image:after {
  content: none;
}

body.search .breadcrumb-main .title-breadcrumb {
  margin-bottom: 22px;
}

.heading-title {
  margin-bottom: 30px;
}

.heading-title .title {
  font-size: 50px;
  font-family: var(--font-title);
}

@media (max-width: 575px) {
  .heading-title .title {
    font-size: 35px;
  }
}

.heading-title .desc {
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
}

.heading-title .button-action {
  margin-top: 30px;
}

.heading-title.style-small .title {
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
}

.heading-title.text-white .title a {
  color: #fff;
}

.heading-title.text-white .line {
  background: #fff !important;
}

.heading-title.text-left {
  margin-bottom: 14px;
}

.heading-title.has-line .title {
  line-height: 1;
  font-family: var(--font-title);
  margin-bottom: -12px;
}

.heading-title.has-line .title a {
  color: var(--color-main);
}

.heading-title.has-icon .title {
  display: flex;
  align-items: center;
}

.heading-title.has-icon .title a {
  margin: 0 15px;
}

.heading-title.has-icon.text-center .title {
  justify-content: center;
}

.heading-title.has-button {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.heading-title.has-button .title {
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 575px) {
  .heading-title.has-button .title {
    width: calc(100% - 90px);
  }
  .heading-title.has-button .title a {
    height: 18px;
    overflow: hidden;
  }
  .heading-title.has-button > a {
    width: 90px;
  }
}

.heading-title.style-1 {
  color: #fff;
}

.heading-title.style-1 .title {
  font-family: var(--font-title);
  font-size: 80px;
  background: url(../image/hp-tour-heading.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

@media (max-width: 1199px) {
  .heading-title.style-1 .title {
    font-size: 50px;
  }
}

.heading-title.style-1 .title a {
  color: #fff;
}

.heading-title.style-1 .desc {
  margin-top: 10px;
  font-size: 20px;
  font-family: var(--font-second-light);
}

.heading-title.style-2 {
  color: #fff;
}

.heading-title.style-2 .title {
  font-family: var(--font-title);
  font-size: 50px;
  background: url(../image/hp-tour-heading-2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.heading-title.style-2 .title a {
  color: #fff;
}

@media (max-width: 575px) {
  .heading-title.style-2 .title {
    font-size: 35px;
  }
}

.hp-top-banner {
  position: relative;
  text-align: center;
  margin-bottom: 38px;
}

.hp-top-banner .banner-wrapper {
  position: relative;
  overflow: hidden;
}

.hp-top-banner .banner-wrapper:before {
  content: "";
  display: block;
  padding-bottom: 28.53%;
}

@media (max-width: 1199px) {
  .hp-top-banner .banner-wrapper:before {
    padding-bottom: 40%;
  }
}

@media (max-width: 991px) {
  .hp-top-banner .banner-wrapper:before {
    height: 542px;
  }
}

.hp-top-banner .banner-wrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hp-top-banner .banner-wrapper .image img {
  width: 100%;
  height: 100%;
}

.hp-top-banner .banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hp-top-banner .banner-content .title {
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

@media (max-width: 991px) {
  .hp-top-banner .banner-content .title {
    font-size: 24px;
  }
}

.hp-top-banner .banner-content .title span {
  font-size: 22px;
  font-family: var(--font-second-medium);
  width: 100%;
  display: block;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .hp-top-banner .banner-content .title span {
    font-size: 16px;
  }
}

.hp-top-banner .title {
  color: #fff;
}

@media (min-width: 1200px) {
  .hp-tour-banner {
    padding-bottom: 30px;
  }
}

@media (max-width: 1199px) {
  .hp-tour-banner {
    padding-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .hp-tour-block {
    padding-bottom: 60px;
  }
}

@media (max-width: 1199px) {
  .hp-tour-block {
    padding-bottom: 15px;
  }
}

.hp-tour-block .heading-title {
  margin-bottom: 35px;
}

@media (min-width: 1200px) {
  .hp-tour-banner-2 {
    padding-bottom: 73px;
  }
}

.hp-tour-banner-2 .heading-title {
  margin-bottom: 35px;
}

.hp-tour {
  background-image: url(../image/bg-hp-tour.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
}

@media (min-width: 1200px) {
  .hp-tour {
    padding-bottom: 55px;
    margin-bottom: 85px;
  }
}

@media (max-width: 1199px) {
  .hp-tour {
    margin-bottom: 45px;
    padding-bottom: 15px;
  }
}

.hp-tour:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #027596;
  opacity: 0.9;
}

.hp-tour .container {
  position: relative;
  z-index: 1;
}

.hp-tour .hp-tour-top {
  margin-bottom: 70px;
}

@media (min-width: 992px) {
  .hp-tour .hp-tour-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.hp-tour .hp-tour-top .heading-title {
  padding-top: 115px;
  margin-bottom: 0px;
}

@media (max-width: 1199px) {
  .hp-tour .hp-tour-top .heading-title {
    padding-top: 45px;
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .hp-tour .hp-tour-top .hp-tour-topright {
    display: none;
  }
}

@media (min-width: 1200px) {
  .hp-tour .hp-tour-content .heading-title {
    margin-bottom: 46px;
  }
}

.hp-blog-info {
  padding-bottom: 45px;
}

@media (max-width: 1199px) {
  .hp-blog-info {
    padding-bottom: 14px;
  }
}

.hp-blog-info .owl-carousel .owl-nav button {
  top: 30%;
  transform: none;
}

.hp-blog-info .owl-carousel .block-item {
  padding: 2px;
}

.footer {
  margin-top: 30px;
  font-size: 16px;
  line-height: 30px;
  position: relative;
}

.footer .hp-banner {
  margin-bottom: -50px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer .hp-banner img.mbBox {
    display: none;
  }
}

@media (max-width: 767px) {
  .footer .hp-banner img.pcBox {
    display: none;
  }
}

.footer .footer-main {
  text-align: center;
  background-image: url(../image/footer-bg.jpg);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 122px 50px 222px;
  color: #fff;
}

@media (max-width: 1365px) {
  .footer .footer-main {
    padding: 120px 50px 60px;
  }
}

@media (max-width: 991px) {
  .footer .footer-main {
    padding: 80px 0px 30px;
  }
}

.footer .footer-main a {
  color: #fff;
}

.footer .logo-footer {
  margin-bottom: 20px;
}

.footer .logo-footer img {
  max-width: 430px;
  width: 100%;
}

@media (max-width: 767px) {
  .footer .logo-footer img {
    max-width: 301px;
  }
}

.footer .col-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px 0;
}

@media (max-width: 991px) {
  .footer .col-menu {
    padding: 10px 0 25px;
  }
}

.footer .col-menu li {
  padding: 5px 20px;
}

@media (max-width: 991px) {
  .footer .col-menu li {
    padding: 5px 10px;
  }
}

.footer .menu-info {
  margin: 0 auto;
  margin-top: 43px;
}

@media (min-width: 576px) {
  .footer .menu-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .footer .menu-info .icon {
    margin-bottom: 10px;
  }
}

@media (min-width: 1250px) {
  .footer .menu-info {
    max-width: 1250px;
  }
}

.footer .menu-info .icon {
  width: 35px;
  height: 40px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width: 575px) {
  .footer .menu-info .icon {
    align-items: center;
    margin-right: 12px;
    width: 20px;
    height: auto;
    margin-top: 5px;
  }
}

.footer .menu-info li {
  display: flex;
  align-items: center;
  padding: 0 15px;
  text-align: left;
}

@media (min-width: 576px) {
  .footer .menu-info li {
    flex-direction: column;
  }
}

@media (min-width: 1366px) {
  .footer .menu-info li {
    padding: 0 30px;
  }
}

.footer .menu-info li img {
  transition: all 0.35s;
}

.footer .menu-info li:hover img, .footer .menu-info li:focus img {
  -webkit-animation: beat1 1.5s ease 0s infinite;
  animation: beat1 1.5s ease 0s infinite;
}

@media (max-width: 991px) and (min-width: 576px) {
  .footer .menu-info {
    flex-wrap: wrap;
    margin-top: 13px;
  }
  .footer .menu-info li {
    width: 50%;
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .footer .menu-info {
    max-width: 355px;
    margin-top: 30px;
  }
  .footer .menu-info li {
    padding: 5px 0;
    align-items: flex-start;
  }
}

.footer .copyright {
  margin-top: 40px;
  padding: 10px 0;
  font-size: 15px;
  line-height: 26px;
}

@media (max-width: 575px) {
  .footer .copyright {
    margin-top: 20px;
  }
}

.footer .copyright .image-copyright {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .copyright .image-copyright img {
  padding: 0 10px;
}

@media (max-width: 575px) {
  .footer .copyright .image-copyright img {
    padding: 0 5px;
  }
}

.footer .copyright .text-copyright {
  font-family: var(--font-normal);
  padding: 22px 0 15px;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social a {
  font-size: 14px;
  border-radius: 100%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-main);
  border: 1px solid var(--color-main);
  margin: 0 2px;
  color: #fff;
  transition: all 0.35s;
}

.social a img {
  max-width: 17px;
  max-height: 20px;
}

.social a:hover, .social a:focus {
  border-radius: 5px;
}

.breadcrumb-main {
  margin-bottom: 50px;
  position: relative;
}

@media (max-width: 991px) {
  .breadcrumb-main {
    margin-bottom: 30px;
  }
}

.breadcrumb-main .breadcrumb-image {
  position: relative;
  overflow: hidden;
}

.breadcrumb-main .breadcrumb-image:before {
  content: "";
  display: block;
  padding-bottom: 28.53%;
}

@media (max-width: 1199px) {
  .breadcrumb-main .breadcrumb-image:before {
    padding-bottom: 40%;
  }
}

@media (max-width: 991px) {
  .breadcrumb-main .breadcrumb-image:before {
    height: 542px;
  }
}

.breadcrumb-main .breadcrumb-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.breadcrumb-main .breadcrumb-image .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.breadcrumb-main .breadcrumb-image .image img {
  width: 100%;
  height: 100%;
}

.breadcrumb-main ul {
  list-style: none;
  margin-bottom: 0px;
  padding-left: 0;
}

.breadcrumb-main .breadcrumb-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 2;
}

.breadcrumb-main .title-breadcrumb {
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #fff;
}

@media (max-width: 991px) {
  .breadcrumb-main .title-breadcrumb {
    font-size: 24px;
  }
}

.breadcrumb-main .title-breadcrumb span {
  font-size: 22px;
  font-family: var(--font-second-medium);
  width: 100%;
  display: block;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .breadcrumb-main .title-breadcrumb span {
    font-size: 16px;
  }
}

.breadcrumb-main ul.breadcrumb {
  margin: 0 0 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: center;
  color: #fff;
}

.breadcrumb-main ul.breadcrumb li {
  font-size: 16px;
  line-height: 36px;
  padding: 5px 0;
}

.breadcrumb-main ul.breadcrumb li span {
  font-weight: 900;
}

.breadcrumb-main ul.breadcrumb li + li {
  margin-left: 10px;
}

.breadcrumb-main ul.breadcrumb a {
  white-space: nowrap;
  color: #fff;
}

.breadcrumb-main ul.breadcrumb a span {
  margin-right: 5px;
}

.breadcrumb-main ul.breadcrumb a:hover {
  color: var(--color-main);
}

.sidebar-right, .sidebar-left {
  position: relative;
}

@media (min-width: 1200px) {
  .sidebar .sidebar-inner {
    top: 110px;
    position: sticky;
  }
}

.block {
  margin-bottom: 30px;
}

.block .block-title {
  font-size: 50px;
  line-height: 50px;
  text-transform: none;
  margin: 0 0 7px;
  font-family: var(--font-title);
}

.block .block-title a {
  color: var(--color-main);
}

@media (max-width: 575px) {
  .block .block-title {
    font-size: 35px;
  }
}

.block .block-content {
  background-color: #fff;
}

.block-related {
  padding-top: 55px;
  padding-bottom: 15px;
}

@media (max-width: 1199px) {
  .block-related {
    padding-top: 30px;
    padding-bottom: 0;
  }
}

.slider-wrapper {
  overflow: hidden;
}

.screenshot_slider {
  margin-bottom: 85px;
  margin-left: -30px;
}

@media (max-width: 767px) {
  .screenshot_slider {
    margin-left: -20px;
  }
}

@media (max-width: 480px) {
  .screenshot_slider {
    margin-left: -8px;
  }
}

.screenshot_slider .owl-stage-outer {
  overflow: visible;
}

.screenshot_slider .owl-stage-outer .owl-stage {
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenshot_slider .owl-stage-outer .owl-stage .owl-item .item {
  position: relative;
  height: 450px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0px 7px 29px 0 rgba(0, 0, 0, 0.07);
  background-color: #4099db;
}

.screenshot_slider .owl-stage-outer .owl-stage .owl-item .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .screenshot_slider .owl-stage-outer .owl-stage .owl-item .item {
    height: 300px;
  }
}

.screenshot_slider .owl-stage-outer .owl-stage .owl-item.active {
  width: 5% !important;
  transition: width 0.5s;
}

.screenshot_slider .owl-stage-outer .owl-stage .owl-item.active.center {
  width: 15.8358% !important;
}

@media (max-width: 480px) {
  .screenshot_slider .owl-stage-outer .owl-stage .owl-item.active.center {
    width: 12% !important;
  }
}

.screenshot_slider .owl-stage-outer .owl-stage .owl-item.active.center .item {
  height: 675px;
}

@media (max-width: 991px) {
  .screenshot_slider .owl-stage-outer .owl-stage .owl-item.active.center .item {
    height: 400px;
  }
}

.screenshot_slider .owl-stage-outer .owl-stage .owl-item.active.center .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot_slider.owl-carousel .owl-nav button {
  border: solid 1px rgba(255, 255, 255, 0.57) !important;
  background: rgba(255, 255, 255, 0.3) !important;
}

.screenshot_slider.owl-carousel .owl-nav button:hover, .screenshot_slider.owl-carousel .owl-nav button:focus {
  background: rgba(255, 80, 57, 0.3) !important;
}

.screenshot_slider.owl-carousel .owl-nav button:hover:before, .screenshot_slider.owl-carousel .owl-nav button:focus:before {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.screenshot_slider.owl-carousel .owl-nav .owl-prev {
  left: 275px;
}

@media (max-width: 1366px) {
  .screenshot_slider.owl-carousel .owl-nav .owl-prev {
    left: 180px;
  }
}

@media (max-width: 1199px) {
  .screenshot_slider.owl-carousel .owl-nav .owl-prev {
    left: 60px;
  }
}

@media (max-width: 767px) {
  .screenshot_slider.owl-carousel .owl-nav .owl-prev {
    left: 40px;
  }
}

@media (max-width: 480px) {
  .screenshot_slider.owl-carousel .owl-nav .owl-prev {
    left: 15px;
  }
}

.screenshot_slider.owl-carousel .owl-nav .owl-prev:before {
  background-image: url(../image/owl-prev-hover.png);
}

.screenshot_slider.owl-carousel .owl-nav .owl-next {
  right: 215px;
}

@media (max-width: 1366px) {
  .screenshot_slider.owl-carousel .owl-nav .owl-next {
    right: 125px;
  }
}

@media (max-width: 1199px) {
  .screenshot_slider.owl-carousel .owl-nav .owl-next {
    right: 0px;
  }
}

.screenshot_slider.owl-carousel .owl-nav .owl-next:before {
  background-image: url(../image/owl-next-hover.png);
}

.gallery-grid + .detail-bottom {
  margin-top: 0;
}

.gallery-grid .gallery-img img {
  width: 100%;
  height: auto;
}

.gallery-grid .gallery-img .image-popup {
  position: relative;
  display: block;
}

.gallery-grid .gallery-img .image-popup:before {
  content: "";
  width: 0;
  height: 100%;
  background: #000;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: .4s all;
}

.gallery-grid .gallery-img .icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #fff;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: .4s all;
}

.gallery-grid .gallery-img .icon img {
  width: 20px;
  height: 20px;
}

.gallery-grid .gallery-img:hover .image-popup:before {
  opacity: 0.3;
  width: 100%;
}

.gallery-grid .gallery-img:hover .icon {
  opacity: 1;
}

.layout-video {
  max-width: 1000px;
  margin: 20px auto 40px;
}

.videoWrapper {
  position: relative;
  padding-bottom: 50%;
  padding-top: 25px;
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tour-search-form-wrap .tour-search-form {
  text-align: left;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 25px;
}

@media (min-width: 992px) {
  .tour-search-form-wrap .tour-search-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 991px) {
  .tour-search-form-wrap .tour-search-form {
    max-width: 60%;
    margin: 0 auto;
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .tour-search-form-wrap .tour-search-form {
    max-width: 80%;
  }
}

@media (max-width: 575px) {
  .tour-search-form-wrap .tour-search-form {
    max-width: 100%;
  }
}

.tour-search-form-wrap .tour-search-form label {
  font-size: 16px;
  color: var(--color-text);
  display: block;
  margin-bottom: 5px;
}

.tour-search-form-wrap .tour-search-form input {
  border: 0;
  background: transparent;
  width: 100%;
  color: #666;
}

.tour-search-form-wrap .tour-search-form input::-webkit-input-placeholder {
  /* Edge */
  color: #666;
}

.tour-search-form-wrap .tour-search-form input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #666;
}

.tour-search-form-wrap .tour-search-form input::placeholder {
  color: #666;
}

@media (min-width: 992px) {
  .tour-search-form-wrap .tour-search-form .form-group {
    width: 28%;
  }
}

@media (max-width: 991px) {
  .tour-search-form-wrap .tour-search-form .form-group {
    border-bottom: 2px solid #d4d4d4;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}

.tour-search-form-wrap .tour-search-form .form-group.date {
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .tour-search-form-wrap .tour-search-form .form-group.date {
    padding-left: 40px;
    margin-right: 40px;
    border-left: 2px solid #d4d4d4;
    border-right: 2px solid #d4d4d4;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .tour-search-form-wrap .tour-search-form .form-group.date {
    padding-left: 10px;
    margin-right: 10px;
  }
}

.tour-search-form-wrap .tour-search-form .form-group.date > div {
  width: 100%;
  position: relative;
}

.tour-search-form-wrap .tour-search-form .form-group.date input {
  padding-left: 1.5rem;
}

.tour-search-form-wrap .tour-search-form .form-group.date input[type="date"] {
  background: transparent url("../image/date-calendar.png") left 0 center no-repeat;
  cursor: pointer;
}

.tour-search-form-wrap .tour-search-form .form-group.date input::-webkit-inner-spin-button {
  display: none;
}

.tour-search-form-wrap .tour-search-form .form-group.date input::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 2.5rem;
  height: 100%;
  top: 0;
  left: 0;
  right: auto;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}

@media (max-width: 991px) {
  .tour-search-form-wrap .tour-search-form .form-group.date .date-return {
    border-left: 2px solid #d4d4d4;
    padding-left: 15px;
  }
}

.tour-search-form-wrap .tour-search-form .form-group .search-address-results, .tour-search-form-wrap .tour-search-form .form-group .search-guests-results {
  position: absolute;
  left: -25px;
  top: 100%;
  padding-top: 24px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

@media (max-width: 991px) {
  .tour-search-form-wrap .tour-search-form .form-group .search-address-results, .tour-search-form-wrap .tour-search-form .form-group .search-guests-results {
    left: 0;
    width: 100%;
  }
}

.tour-search-form-wrap .tour-search-form .form-group .search-address-results ul.listbox, .tour-search-form-wrap .tour-search-form .form-group .search-guests-results ul.listbox {
  list-style: none;
  padding: 0;
  border-radius: 20px;
  border: solid 1px var(--color-main);
  background-color: #fff;
}

.tour-search-form-wrap .tour-search-form .form-group .search-address-results ul.listbox li, .tour-search-form-wrap .tour-search-form .form-group .search-guests-results ul.listbox li {
  font-family: var(--font-second-medium);
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 25px;
}

.tour-search-form-wrap .tour-search-form .form-group .search-address-results ul.listbox li + li, .tour-search-form-wrap .tour-search-form .form-group .search-guests-results ul.listbox li + li {
  border-top: 1px solid #dfdfdf;
}

.tour-search-form-wrap .tour-search-form .form-group .search-address-results ul.listbox li:first-child, .tour-search-form-wrap .tour-search-form .form-group .search-guests-results ul.listbox li:first-child {
  border-radius: 20px 20px 0 0;
}

.tour-search-form-wrap .tour-search-form .form-group .search-address-results ul.listbox li:last-child, .tour-search-form-wrap .tour-search-form .form-group .search-guests-results ul.listbox li:last-child {
  border-radius: 0 0 20px 20px;
}

.tour-search-form-wrap .tour-search-form .form-group.address {
  position: relative;
}

.tour-search-form-wrap .tour-search-form .form-group.address .listbox {
  width: 388px;
  position: relative;
}

@media (max-width: 991px) {
  .tour-search-form-wrap .tour-search-form .form-group.address .listbox {
    width: 100%;
  }
}

.tour-search-form-wrap .tour-search-form .form-group.address .listbox:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 28%;
  border-bottom: 10px solid var(--color-main);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.tour-search-form-wrap .tour-search-form .form-group.address .listbox li:first-child {
  background: var(--color-main);
  color: #fff;
}

.tour-search-form-wrap .tour-search-form .form-group.address .listbox li:first-child a, .tour-search-form-wrap .tour-search-form .form-group.address .listbox li:first-child .icon {
  color: #fff;
}

.tour-search-form-wrap .tour-search-form .form-group.address .listbox li:hover {
  background: var(--color-main);
  color: #fff;
}

.tour-search-form-wrap .tour-search-form .form-group.address .listbox li:hover a, .tour-search-form-wrap .tour-search-form .form-group.address .listbox li:hover .icon {
  color: #fff;
}

.tour-search-form-wrap .tour-search-form .form-group.address .listbox .icon {
  font-size: 12px;
  color: var(--color-main);
  margin-left: 10px;
}

.tour-search-form-wrap .tour-search-form .form-group.address .listbox .box-right {
  display: flex;
  align-items: center;
}

.tour-search-form-wrap .tour-search-form .form-group.address:hover .search-address-results {
  opacity: 1;
  visibility: visible;
}

.tour-search-form-wrap .tour-search-form .form-group.guests {
  position: relative;
}

.tour-search-form-wrap .tour-search-form .form-group.guests .search-guests-results .listbox {
  width: 334px;
  position: relative;
}

@media (max-width: 991px) {
  .tour-search-form-wrap .tour-search-form .form-group.guests .search-guests-results .listbox {
    width: 100%;
  }
}

.tour-search-form-wrap .tour-search-form .form-group.guests .search-guests-results .listbox:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 28%;
  width: 28px;
  height: 14px;
  background: url(../image/guests-results-before.png);
  margin-bottom: -2px;
}

.tour-search-form-wrap .tour-search-form .form-group.guests .search-guests-results .listbox li {
  padding: 8px 25px;
}

.tour-search-form-wrap .tour-search-form .form-group.guests .search-guests-results .listbox ul {
  display: flex;
  align-items: center;
}

.tour-search-form-wrap .tour-search-form .form-group.guests .search-guests-results .listbox ul li {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  border: solid 1px #dfdfdf;
  color: #a5a5a5;
  padding: 0;
  justify-content: center;
  margin-left: 5px;
}

.tour-search-form-wrap .tour-search-form .form-group.guests .search-guests-results .listbox ul li:first-child {
  width: 40px;
  border: 0;
}

.tour-search-form-wrap .tour-search-form .form-group.guests .search-guests-results .listbox ul li img {
  margin-bottom: 5px;
}

.tour-search-form-wrap .tour-search-form .form-group.guests .search-guests-results .listbox ul li:hover {
  border-color: var(--color-main);
}

.tour-search-form-wrap .tour-search-form .form-group.guests .search-guests-results .listbox ul li:hover a {
  color: var(--color-main);
}

.tour-search-form-wrap .tour-search-form .form-group.guests:hover .search-guests-results {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 992px) {
  .tour-search-form-wrap .tour-search-form .button-action {
    width: 15%;
  }
}

.tour-search-form-wrap .tour-search-form .button-action a {
  max-width: 240px;
  width: 100%;
  height: 42px;
  padding: 0 5px;
}

@media (max-width: 991px) {
  .tour-search-form-wrap .tour-search-form .button-action a {
    max-width: 100%;
  }
}

.tour-search-form-wrap .tour-search-form .button-action a span {
  margin-right: 16px;
}

.float-contact {
  position: absolute;
  bottom: 300px;
  right: 43px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 1619px) {
  .float-contact {
    bottom: 30px;
    right: 15px;
  }
}

.float-contact .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.float-contact .icon.call {
  background: #d93536;
  color: #fff;
  font-size: 20px;
}

.float-contact .icon.call:before {
  content: "";
  position: absolute;
  border: 1px solid #d93536;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border-radius: 50%;
  -webkit-animation: pulse 1s linear infinite;
  animation: pulse 1s linear infinite;
}

.float-contact .icon.call:after {
  content: "";
  position: absolute;
  border: 1px solid #d93536;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border-radius: 50%;
  -webkit-animation: pulse 1s linear infinite;
  animation: pulse 1s linear infinite;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.float-contact .icon.zalo {
  background: #0065f7;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.09);
  border: solid 1px #fff;
}

.float-contact .icon.zalo:hover, .float-contact .icon.zalo:focus {
  border-color: #0065f7;
}

.float-contact .icon.facebook {
  background: #4867aa;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.09);
  border: solid 1px #fff;
}

.float-contact .icon.facebook:hover, .float-contact .icon.facebook:focus {
  background: transparent;
  border-color: #4867aa;
  color: #4867aa;
}

.float-contact .icon.email {
  color: #fff;
  background: #ff5039;
  border: 1px solid #ff5039;
  font-size: 18px;
}

.float-contact .icon.email:hover, .float-contact .icon.email:focus {
  background: transparent;
  border-color: #ff5039;
  color: #ff5039;
}

.float-contact .icon.to-top {
  color: #fff;
  background: #99a4ae;
  font-size: 16px;
}

.float-contact .icon.to-top:hover, .float-contact .icon.to-top:focus {
  background: var(--color-main);
  color: #fff;
}

.float-contact .icon.mess {
  color: #fff;
  background: #0083fc;
  width: 52px;
  height: 52px;
  font-size: 35px;
}

.float-contact .icon.mess:hover, .float-contact .icon.mess:focus {
  background: var(--color-main);
  color: #fff;
}

@-webkit-keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.question {
  border-radius: 10px;
  border: dashed 1px #da9e00;
  background-color: #fffaed;
  padding: 27px 30px;
  margin-bottom: 30px;
}

.title-contact {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  font-family: var(--font-second-medium);
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  #form_contact {
    margin-bottom: 30px;
  }
}

#form_contact input, #form_contact select, #form_contact textarea {
  box-sizing: border-box;
  padding: 10px;
  padding-left: 50px;
  border: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 3px;
  outline: none;
  display: block;
  font-size: 15px;
  color: var(--color-text);
  width: 100%;
}

#form_contact input::-webkit-input-placeholder, #form_contact select::-webkit-input-placeholder, #form_contact textarea::-webkit-input-placeholder {
  /* Edge */
  color: var(--color-text);
}

#form_contact input:-ms-input-placeholder, #form_contact select:-ms-input-placeholder, #form_contact textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--color-text);
}

#form_contact input::placeholder, #form_contact select::placeholder, #form_contact textarea::placeholder {
  color: var(--color-text);
}

#form_contact input:focus, #form_contact input:hover, #form_contact select:focus, #form_contact select:hover, #form_contact textarea:focus, #form_contact textarea:hover {
  border-color: var(--color-main);
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}

#form_contact input, #form_contact select {
  height: 40px;
}

#form_contact input[type="file"] {
  padding: 5px;
  padding-left: 50px;
}

#form_contact .note {
  font-size: 15px;
  margin-top: 10px;
}

#form_contact .row {
  margin: 0 -3px;
}

#form_contact .row [class*="col-"] {
  padding: 0 3px;
}

#form_contact .form-group {
  position: relative;
  margin-bottom: 10px;
}

#form_contact .form-group .icon {
  position: absolute;
  left: 4px;
  top: 1px;
  bottom: 1px;
  width: 41px;
  line-height: 40px;
  text-align: center;
  background: rgba(255, 80, 57, 0.1);
  border-radius: 3px 0 0 3px;
}

#form_contact .button-action a {
  margin-bottom: 5px;
}

#form_contact .button-action a.nhapLai {
  font-family: var(--font-second-medium);
  margin-left: 5px;
  border-radius: 21px;
}

#form_contact.style-1 {
  margin-bottom: 15px;
}

#form_contact.style-1 .form-group .icon img {
  width: 21px;
}

@media (min-width: 992px) {
  #form_contact.style-1 .button-action {
    display: flex;
    align-items: center;
  }
  #form_contact.style-1 .button-action .note {
    margin-left: 18px;
  }
}

#form_contact.style-2 {
  margin-bottom: 0;
}

#form_contact.style-2 .row {
  margin: 0 -9px;
}

#form_contact.style-2 .row [class*="col-"] {
  padding: 0 9px;
}

#form_contact.style-2 input, #form_contact.style-2 select {
  min-height: 52px;
  border-radius: 26px;
  border: solid 2px #eaeaea;
}

#form_contact.style-2 textarea {
  padding-top: 5px;
}

#form_contact.style-2 input, #form_contact.style-2 select, #form_contact.style-2 textarea {
  padding-left: 35px;
  font-size: 16px;
}

#form_contact.style-2 input::-webkit-input-placeholder, #form_contact.style-2 select::-webkit-input-placeholder, #form_contact.style-2 textarea::-webkit-input-placeholder {
  /* Edge */
  color: var(--color-text);
}

#form_contact.style-2 input:-ms-input-placeholder, #form_contact.style-2 select:-ms-input-placeholder, #form_contact.style-2 textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--color-text);
}

#form_contact.style-2 input::placeholder, #form_contact.style-2 select::placeholder, #form_contact.style-2 textarea::placeholder {
  color: var(--color-text);
}

#form_contact.style-2 input[type="date"] {
  background: #fff url("../image/date-calendar.png") right 1rem center no-repeat;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

#form_contact.style-2 input[type="date"]::-webkit-inner-spin-button {
  display: none;
}

#form_contact.style-2 input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 2.5rem;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}

#form_contact.style-2 .form-group {
  margin-bottom: 20px;
}

#form_contact.style-2 .form-group .icon {
  font-size: 12px;
  background: transparent;
  left: auto;
  right: 30px;
  width: auto;
  line-height: 52px;
  color: #373636;
  z-index: 0;
}

#form_contact.style-2 .title {
  margin-top: 30px;
  margin-bottom: 20px;
}

#form_contact.style-2 .button-action {
  margin-top: 10px;
}

#form_contact.style-2 .button-action a {
  margin-bottom: 0;
}

.quotation-form .title {
  font-size: 20px;
  font-family: var(--font-second-medium);
  margin-bottom: 22px;
}

.contact-form {
  max-width: 460px;
}

@media (max-width: 991px) {
  .contact-form {
    margin: 0 auto;
  }
}

.contact-form .title {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 37px;
  text-transform: uppercase;
  color: var(--color-main);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .contact-form .title {
    font-size: 26px;
    line-height: 36px;
  }
}

.contact-form .title:before {
  content: "";
  position: absolute;
  width: 63px;
  height: 3px;
  background: var(--color-main);
  bottom: 0;
  left: 0;
}

.contact-form .description {
  font-size: 15px;
  line-height: 23px;
  margin-bottom: 30px;
}

.contact-form .form-control {
  border-radius: 0;
  min-height: 40px;
  margin-bottom: 10px;
}

.contact-form .form-control::-webkit-input-placeholder {
  color: #000;
  font-size: 15px;
}

.contact-form .form-control:-ms-input-placeholder {
  color: #000;
  font-size: 15px;
}

.contact-form .form-control::placeholder {
  color: #000;
  font-size: 15px;
}

.contact-form .btn-theme {
  width: 100%;
  border-radius: 0;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: var(--font-bold);
}

.form-search.full {
  max-width: 1000px;
  margin: -5px auto 25px;
  display: flex;
  font-size: 15px;
  position: relative;
}

@media (max-width: 991px) {
  .form-search.full {
    margin-top: 5px;
  }
}

.form-search.full .search-input {
  background: #FFFFFF;
  border: 1px solid var(--color-main);
  border-radius: 30px;
  height: 42px;
  flex: 1 0 0%;
  padding-left: 20px;
  padding-right: 50px;
}

.form-search.full .search-input::-webkit-input-placeholder {
  color: #000;
  font-size: 15px;
}

.form-search.full .search-input:-ms-input-placeholder {
  color: #000;
  font-size: 15px;
}

.form-search.full .search-input::placeholder {
  color: #000;
  font-size: 15px;
}

.form-search.full .btn-search {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border: 0;
  font-size: 15px;
  text-align: center;
  border-radius: 50%;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.form-search.full .btn-search:hover, .form-search.full .btn-search:focus {
  background: var(--color-text);
}

.list-info {
  font-size: 15px;
  line-height: 22px;
}

.list-info > li {
  padding-bottom: 10px;
}

.list-info > li .icon {
  width: 25px;
  margin-left: 1px;
  color: var(--color-blue);
}

.list-info > li:hover .icon {
  color: var(--color-main);
}

.list-info .text {
  flex: 1;
}

.list-info.style-2 li {
  display: flex;
  padding-bottom: 7px;
  padding-left: 4px;
}

.list-info.style-2 li .icon {
  width: 23px;
  height: 23px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: var(--color-main);
  border: 1px solid var(--color-main);
  margin-right: 10px;
  transition: all 0.35s;
}

.list-info.style-2 li:hover .icon {
  background: var(--color-main);
  color: #fff;
}

.list-info.style-3 li {
  display: flex;
  align-items: flex-start;
}

.list-info.style-3 li .icon {
  margin-top: 3px;
}

.successes-notify {
  text-align: center;
  overflow: visible;
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 22px;
}

@media (max-width: 1199px) {
  .successes-notify {
    padding-top: 30px;
  }
}

.successes-notify .icon {
  font-size: 40px;
  color: #fff;
  background: var(--color-main);
  width: 81px;
  height: 81px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border-radius: 100%;
}

.successes-notify .h2 {
  font-size: 42px;
  line-height: 45px;
  color: var(--color-main);
  font-family: var(--font-second-normal);
  margin-bottom: 12px;
}

.successes-notify .text-red {
  color: var(--color-main);
}

.successes-notify .btn-theme {
  margin-top: 20px;
}

.maps .wrap-map {
  height: 537px;
}

.maps .wrap-map iframe {
  width: 100%;
  height: 100%;
}

.error-404 {
  background-image: url(../image/bg-404.jpg);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  height: 940px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-black);
}

@media (max-width: 1199px) {
  .error-404 {
    height: auto;
  }
}

.error-404 .error-notify {
  max-width: 1180px;
  margin: 100px auto;
  padding: 30px;
}

.error-404 .content-notify {
  margin-top: 40px;
}

.error-404 .content-notify .title {
  font-size: 24px;
  line-height: 40px;
}

.error-404 .content-notify .text {
  font-size: 22px;
  line-height: 38px;
  font-family: var(--font-normal);
}

@media (max-width: 575px) {
  .error-404 .content-notify .text {
    font-size: 18px;
    line-height: 28px;
  }
}

.error-404 .button-action a {
  text-transform: uppercase;
  font-size: 16px;
  padding: 13px 20px;
  margin: 0 3px 10px;
  height: 41px;
  font-family: var(--font-bold);
}

.error-404 .button-action a img {
  margin-left: 5px;
}

.error-404 .button-action a.btn-theme {
  border-color: var(--color-main);
}

.error-404 .button-action a.btn-theme:hover, .error-404 .button-action a.btn-theme:focus {
  border-color: var(--color-blue);
}

.error-404 .button-action a.btn-theme-outline {
  background: transparent;
  color: var(--color-main);
}

.error-404 .button-action a.btn-theme-outline:hover, .error-404 .button-action a.btn-theme-outline:focus {
  background: var(--color-main);
  color: #fff;
}

.page-cart > .title {
  font-size: 30px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.page-cart > .title > a {
  margin-right: 15px;
}

.page-cart > .title span {
  font-size: 16px;
  font-family: var(--font-normal);
  text-transform: none;
  margin-top: 5px;
  display: inline-block;
  vertical-align: middle;
}

.page-cart > .title span a {
  color: var(--color-main);
  font-family: var(--font-bold);
}

.page-cart .entry-title .title {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  padding: 12px;
  padding-left: 56px;
  background: #f2f9ff;
  border-radius: 3px 3px 0px 0px;
  border-bottom: 2px solid var(--color-blue);
  position: relative;
  margin-bottom: 0;
}

.page-cart .entry-title .title .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 100%;
  background: var(--color-blue);
  color: #fff;
  top: 0;
  left: 0;
  font-size: 20px;
  position: absolute;
  border-radius: 3px 3px 0 0;
}

.page-cart .block {
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.17);
  border-radius: 3px;
}

.page-cart .block:last-child {
  margin-bottom: 0;
}

.page-cart .block .block-content {
  padding: 20px 20px 30px;
}

.page-cart .product-list-1 {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #D9D9D9;
}

.page-cart .totalPrice {
  padding: 0 20px 10px;
  overflow: hidden;
}

.page-cart .totalPrice .btn-blue-outline {
  color: var(--color-text);
  font-size: 16px;
  font-family: var(--font-bold);
  text-transform: uppercase;
  height: 40px;
  width: 200px;
  padding: 0;
}

.page-cart .totalPrice .total {
  float: right;
  font-size: 18px;
  font-family: var(--font-bold);
}

@media (max-width: 767px) {
  .page-cart .totalPrice .total {
    width: 100%;
    margin-top: 20px;
  }
}

.page-cart .totalPrice .total span {
  color: #cc0001;
}

.page-cart .customer-details .content {
  padding: 30px 25px;
}

.page-cart .customer-details .nav-tabs {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  border: 0;
}

.page-cart .customer-details .nav-tabs li {
  width: calc(100%/3);
  padding: 0 5px;
  position: relative;
}

.page-cart .customer-details .nav-tabs li.active a {
  background: #FFEFEF;
  border-color: var(--color-main);
}

.page-cart .customer-details .nav-tabs li.active:before {
  display: block;
}

.page-cart .customer-details .nav-tabs li:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: -10px;
  background: #FFEFEF;
  left: 50%;
  display: none;
  border-right: 1px dashed var(--color-main);
  border-bottom: 1px dashed var(--color-main);
  transform: translateX(-50%) rotate(45deg);
}

.page-cart .customer-details .nav-tabs .icon {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
}

.page-cart .customer-details .nav-tabs a {
  height: 124px;
  display: block;
  border: 1px dashed #B8B8B8;
  text-align: center;
  padding: 0 15px;
  background: #F1F1F1;
}

@media (max-width: 767px) {
  .page-cart .customer-details .nav-tabs a {
    height: 92px;
  }
}

.page-cart .customer-details .nav-tabs a span {
  font-size: 16px;
  line-height: 24px;
  font-family: var(--font-bold);
  height: 24px;
  overflow: hidden;
  display: inline-block;
}

@media (max-width: 767px) {
  .page-cart .customer-details .nav-tabs a span {
    display: none;
  }
}

.page-cart .customer-details .tab-content {
  margin-top: 35px;
}

.page-cart .form-cart .row {
  margin: 0 -3px;
}

.page-cart .form-cart .row [class*="col-"] {
  padding: 0 3px;
}

.page-cart .form-cart .form-group {
  margin-bottom: 15px;
}

.page-cart .form-cart .inputBox span {
  font-size: 16px;
  font-family: var(--font-bold);
}

.page-cart .form-cart .inputBox.checkbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.page-cart .form-cart .inputBox.checkbox span {
  height: 42px;
  font-size: 15px;
  padding: 0 10px;
  border-radius: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  border: 1px solid #bbbbbb;
  display: flex;
  align-items: center;
  min-width: 150px;
}

@media (max-width: 767px) {
  .page-cart .form-cart .inputBox.checkbox span {
    min-width: 142px;
  }
}

.page-cart .form-cart .inputBox.checkbox span:hover {
  border-color: var(--color-blue);
}

.page-cart .form-cart textarea, .page-cart .form-cart input {
  margin-top: 3px;
  border: 1px solid #C4C4C4;
  border-radius: 5px;
  width: 100%;
  padding: 10px 14px;
}

.page-cart .form-cart textarea::-webkit-input-placeholder, .page-cart .form-cart input::-webkit-input-placeholder {
  /* Edge */
  font-size: 15px;
}

.page-cart .form-cart textarea:-ms-input-placeholder, .page-cart .form-cart input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: 15px;
}

.page-cart .form-cart textarea::placeholder, .page-cart .form-cart input::placeholder {
  font-size: 15px;
}

.page-cart .form-cart input {
  height: 42px;
}

.page-cart .form-cart input[type="checkbox"] {
  height: 18px;
  width: 18px;
  background: #dfdfdf;
  margin-top: 0;
  margin-right: 10px;
}

.page-cart .form-cart textarea {
  height: 110px;
}

.page-cart .form-cart .paypal .block-content .title {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--color-blue);
}

.page-cart .form-cart .paypal .title-contact {
  color: var(--color-text);
  font-size: 15px;
  margin: 15px 0;
}

.page-cart .form-cart .paypal .contact-info {
  margin-bottom: 40px;
}

.page-cart .form-cart .paypal .bank {
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 30px;
}

@media (min-width: 576px) {
  .page-cart .form-cart .paypal .bank {
    display: flex;
    align-items: flex-start;
  }
}

.page-cart .form-cart .paypal .bank .image {
  width: 140px;
  height: 93px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-right: 20px;
  border: 1px solid #dedede;
}

.page-cart .form-cart .paypal .bank .image img {
  width: 100%;
  height: 100%;
}

.page-cart .form-cart .paypal .bank .content {
  margin-top: -5px;
}

@media (max-width: 575px) {
  .page-cart .form-cart .paypal .bank .content {
    margin-top: 20px;
  }
}

.page-cart .form-cart .paypal .button-action {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 30px;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  margin: 0 20px;
  margin-top: -30px;
}

.page-cart .form-cart .paypal .button-action a {
  margin: 5px;
  text-transform: uppercase;
  font-family: var(--font-bold);
  border-radius: 7px;
  height: 40px;
}

.product-list-1 {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

@media (max-width: 575px) {
  .product-list-1 {
    display: block;
  }
}

.product-list-1 .image {
  border: 2px solid #d8d8d8;
  border-radius: 5px;
  padding: 5px 10px;
  margin-right: 14px;
  display: inline-block;
}

@media (max-width: 575px) {
  .product-list-1 .image {
    margin-bottom: 20px;
  }
}

.product-list-1 .image a {
  width: 93px;
  height: 93px;
  text-align: center;
}

.product-list-1 .image a img {
  height: 100%;
}

.product-list-1 .title {
  font-size: 16px;
  line-height: 24px;
  font-family: var(--font-normal);
  text-transform: uppercase;
  margin-bottom: 30px;
  height: 24px;
  overflow: hidden;
}

@media (max-width: 575px) {
  .product-list-1 .title {
    margin-bottom: 20px;
  }
}

.product-list-1 .content {
  width: calc(100% - 93px - 14px - 105px - 20px - 60px);
}

@media (max-width: 575px) {
  .product-list-1 .content {
    margin-bottom: 20px;
    width: 100%;
  }
}

.product-list-1 .quantityChoose {
  width: 130px;
}

.product-list-1 .quantityChoose ul {
  display: flex;
  align-items: center;
}

.product-list-1 .quantityChoose ul a {
  width: 40px;
  height: 40px;
  border: 2px solid #b9b9b9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  border-radius: 3px;
}

.product-list-1 .quantityChoose ul a.tru, .product-list-1 .quantityChoose ul a.cong {
  font-size: 30px;
}

.product-list-1 .product-price {
  width: 105px;
  font-family: var(--font-bold);
  margin-right: 20px;
}

@media (max-width: 575px) {
  .product-list-1 .product-price {
    margin-bottom: 20px;
    width: 100%;
  }
}

.product-list-1 .product-price label {
  display: block;
  font-size: 16px;
}

.product-list-1 .product-price .price {
  font-size: 18px;
  color: #cc0001;
  display: block;
}

.product-list-1 .button-action {
  width: 60px;
}

@media (max-width: 575px) {
  .product-list-1 .button-action {
    width: 100%;
  }
}

.product-list-1 .button-action .del {
  border: 2px solid #d8d8d8;
  border-radius: 3px;
  width: 53px;
  height: 40px;
  text-align: center;
  line-height: 40px;
}

.product-list-1 .button-action .del:hover {
  background: var(--color-blue);
  color: #fff;
}

@media (max-width: 575px) {
  .tour-grid .block-grid .block-item {
    margin-bottom: 15px;
  }
}

.tour-banner-grid .block-grid.block-col-4 {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .tour-banner-grid .block-grid.block-col-4 .block-item {
    width: 50%;
  }
}

.tour-banner.style-1 {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.tour-banner.style-1 .image-fit .image {
  border-radius: 10px;
}

.tour-banner.style-1 .image-fit .image:before {
  padding-bottom: 100%;
}

.tour-banner.style-1 .content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.tour-banner.style-1 .title {
  font-size: 20px;
  line-height: 26px;
  font-family: var(--font-second-medium);
  background-image: url(../image/banner-shape.png);
  background-repeat: repeat-x;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 15px;
}

.tour-banner.style-1 .title a {
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.tour-banner.style-2 {
  position: relative;
}

.tour-banner.style-2 .image-fit .image {
  border-radius: 20px;
}

.tour-banner.style-2 .image-fit .image:before {
  padding-bottom: 100%;
}

.tour-banner.style-2 .image-fit .image:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #000;
  opacity: 0.5;
  z-index: 1;
}

.tour-banner.style-2 .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 15px;
}

.tour-banner.style-2 .title {
  font-size: 22px;
  line-height: 26px;
}

@media (max-width: 575px) {
  .tour-banner.style-2 .title {
    font-size: 18px;
    line-height: 30px;
  }
}

.tour-banner.style-2 .title a {
  color: #fff;
  text-transform: uppercase;
}

.tour-block .ratings {
  color: #eab411;
  letter-spacing: 0.5px;
}

.tour-block .title {
  font-family: var(--font-second-medium);
}

.tour-block .title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.tour-block.style-1 {
  border-radius: 10px;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.15);
  background-color: #fff;
  padding: 20px;
  border: 1px solid transparent;
  transition: all 0.35s;
  position: relative;
}

@media (max-width: 575px) {
  .tour-block.style-1 {
    padding: 10px;
  }
}

.tour-block.style-1 .image-fit .image {
  border-radius: 10px;
}

.tour-block.style-1 .image-fit .image:before {
  padding-bottom: 56.14%;
}

.tour-block.style-1 .text-sale {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 1;
}

.tour-block.style-1 .title {
  font-size: 16px;
  line-height: 24px;
}

.tour-block.style-1 .icon {
  color: var(--color-main);
  font-size: 16px;
  display: inline-block;
}

.tour-block.style-1 .code .icon {
  font-size: 12px;
}

.tour-block.style-1 .meta {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 15px;
  margin-top: 15px;
}

.tour-block.style-1 .meta .icon {
  margin-right: 2px;
  width: 15px;
}

.tour-block.style-1 .meta > div {
  margin-bottom: 5px;
}

.tour-block.style-1 .address {
  color: var(--color-main);
}

.tour-block.style-1 .address .icon {
  margin-right: 8px;
}

.tour-block.style-1 .content-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.tour-block.style-1 .button-action a {
  width: 100%;
  margin-top: 24px;
  border-radius: 5px;
  font-size: 16px;
}

.tour-block.style-1:hover {
  border-color: var(--color-main);
}

.tour-block.style-1:hover .button-action a {
  background: var(--color-main);
  color: #fff;
}

.tour-block.style-1:hover .button-action a img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.tour-block.style-2 {
  position: relative;
}

.tour-block.style-2 .image-fit .image {
  border-radius: 20px;
}

.tour-block.style-2 .image-fit .image:before {
  padding-bottom: 0;
  height: 292px;
}

@media (max-width: 767px) {
  .tour-block.style-2 .image-fit .image:before {
    height: 193px;
  }
}

.tour-block.style-2 .image-fit .image:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: 1;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.9) 100%);
}

.tour-block.style-2 .title {
  font-size: 18px;
  line-height: 26px;
}

.tour-block.style-2 .title a {
  color: #fff;
}

.tour-block.style-2 .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 20px 26px;
}

.tour-block.style-2 .price {
  position: absolute;
  right: 0;
  top: 0;
  width: 155px;
  height: 68px;
  background-image: url(../image/bg-price.png);
  background-repeat: no-repeat;
  font-size: 18px;
  font-family: var(--font-second-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
}

.tour-block.style-2 .price span {
  max-width: 105px;
  margin: 0 auto;
  overflow: hidden;
}

.price {
  font-family: var(--font-second-medium);
  color: var(--color-main);
}

.price .icon {
  font-family: var(--font-second-bold);
}

.tour-list .image-fit {
  display: flex;
  align-items: flex-start;
}

.tour-list .image-fit .image {
  width: 36%;
  border-radius: 10px;
}

.tour-list .image-fit .image:before {
  padding-bottom: 56.67%;
}

.tour-list .content {
  width: 64%;
  padding-left: 15px;
}

.tour-list .title {
  font-size: 16px;
  font-family: var(--font-second-normal);
  line-height: 22px;
  margin-bottom: 5px;
  margin-top: -5px;
}

.tour-list .title a {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.tour-list.style-1 .image-fit .image {
  width: 45%;
  border-radius: 20px;
}

.tour-list.style-1 .content {
  width: 55%;
  padding-left: 30px;
}

@media (max-width: 767px) {
  .tour-list.style-1 .image-fit {
    display: block;
  }
  .tour-list.style-1 .image-fit .image {
    width: 100%;
  }
  .tour-list.style-1 .content {
    width: 100%;
    margin-top: 30px;
    padding-left: 0;
  }
}

.tour-list.style-1 .ratings {
  margin-top: 5px;
}

.tour-list.style-1 .title {
  font-size: 20px;
  line-height: 24px;
  font-family: var(--font-second-medium);
  margin-top: 12px;
}

.tour-list.style-1 .meta {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 15px;
  margin-top: 18px;
}

.tour-list.style-1 .meta > div {
  margin-bottom: 5px;
}

.block-tour-list .tour-list-item {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}

@media (min-width: 1200px) {
  .single-bottom .sidebar-left {
    width: 73.4%;
  }
  .single-bottom .sidebar-right {
    width: 26.6%;
  }
}

.single-bottom .sidebar-left, .single-bottom .sidebar-right {
  margin-top: 30px;
}

@media (min-width: 1200px) {
  .tour-detail-wrap {
    position: relative;
  }
}

.tour-detail-wrap .tour-detail-top {
  padding: 51px 50px 57px;
  border-radius: 30px;
  background-color: #333;
}

@media (max-width: 1199px) {
  .tour-detail-wrap .tour-detail-top {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .tour-detail-wrap .tour-detail-top {
    padding: 15px;
  }
}

@media (min-width: 1200px) {
  .tour-detail-wrap .tour-detail-top {
    display: flex;
    align-items: flex-start;
  }
  .tour-detail-wrap .tour-detail-top .tour-thumbnail {
    width: 61.75%;
    margin-right: 30px;
    order: 1;
  }
  .tour-detail-wrap .tour-detail-top .tour-info {
    order: 2;
    width: 38.25%;
  }
}

@media (max-width: 1199px) {
  .tour-detail-wrap .tour-thumbnail {
    margin-top: 30px;
  }
}

.tour-detail-wrap .content-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.tour-detail-wrap .tour-info-content {
  color: #fff;
}

.tour-detail-wrap .tour-info-content .title {
  font-size: 30px;
  line-height: 40px;
  font-family: var(--font-second-medium);
  margin-bottom: 38px;
}

.tour-detail-wrap .tour-info-content .price {
  font-size: 20px;
}

.tour-detail-wrap .tour-info-content .meta > div {
  margin-bottom: 8px;
}

.tour-detail-wrap .tour-info-content a {
  color: #fff;
}

.tour-detail-wrap .icon {
  color: var(--color-main);
  font-size: 16px;
  display: inline-block;
}

.tour-detail-wrap .address {
  color: var(--color-main);
}

.tour-detail-wrap .address .icon {
  margin-right: 8px;
}

.tour-detail-wrap .ratings {
  color: #eab411;
  letter-spacing: 0.5px;
}

.tour-detail-wrap .meta .icon {
  margin-right: 6px;
  width: 15px;
}

.tour-detail-wrap .excerpt {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 40px;
  margin-bottom: 35px;
}

@media (max-width: 1199px) {
  .tour-detail-wrap .excerpt {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.tour-detail-wrap .btn-theme {
  font-size: 24px;
  text-transform: uppercase;
  flex-direction: column;
  width: 100%;
  height: 70px;
  border-radius: 35px;
}

.tour-detail-wrap .btn-theme span {
  font-size: 14px;
  font-family: var(--font-second-normal);
  margin-top: 5px;
  text-transform: capitalize;
}

.tour-single-content {
  line-height: 28px;
}

.tour-single-content ul {
  list-style: revert;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.tour-single-content p {
  margin-bottom: 25px;
}

@media (max-width: 1199px) {
  .tour-single-content p {
    margin-bottom: 15px;
  }
}

@media (max-width: 991px) {
  .tour-single-content .desc img {
    width: 100% !important;
    height: 100% !important;
  }
  .tour-single-content .desc iframe, .tour-single-content .desc table {
    width: 100% !important;
  }
}

.tour-single-content > div {
  margin-bottom: 70px;
}

.tour-single-content > div.detail-bottom {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .tour-single-content > div {
    margin-bottom: 30px;
  }
}

.tour-single-content .title {
  font-size: 26px;
  line-height: 28px;
  color: var(--color-main);
  margin-bottom: 25px;
}

.tour-single-content .tour-price-list {
  color: #000;
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  .tour-single-content .tour-price-list {
    margin-bottom: 30px;
  }
}

.tour-single-content .tour-price-list a {
  color: #000;
}

.tour-single-content .tour-price-list .title {
  margin-bottom: 15px;
}

.tour-single-content .tour-price-list label {
  font-family: var(--font-second-medium);
}

.tour-single-content .tour-price-list ul {
  padding: 0;
  list-style: none;
}

.tour-single-content .tour-price-list ul li {
  position: relative;
  padding-left: 20px;
}

.tour-single-content .tour-price-list ul li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 5px;
  width: 8px;
  height: 8px;
  background: var(--color-main);
  border-radius: 50%;
}

.tour-single-content .desc {
  transition: max-height 300ms;
  position: relative;
  max-height: 195px;
  overflow: hidden;
}

.tour-single-content .desc:before {
  content: "";
  position: absolute;
  height: 80px;
  width: 100%;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, white 100%);
}

.tour-single-content .desc.is-hidden {
  max-height: 100%;
  overflow: visible;
}

.tour-single-content .desc.is-hidden:before {
  content: none;
}

.tour-single-content .tour-content .button-action {
  text-align: center;
  position: relative;
}

.tour-single-content .tour-content .button-action:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-main);
}

.tour-single-content .tour-content .button-action > a {
  position: relative;
  width: 200px;
}

.tour-single-content .tour-content .text-rg {
  display: none;
}

.tour-single-content .tour-content .desc.is-hidden + .button-action .text-xt {
  display: none;
}

.tour-single-content .tour-content .desc.is-hidden + .button-action .text-rg {
  display: inline-flex;
}

.tour-single-content .tour-content .desc.is-hidden + .button-action > a {
  width: 150px;
}

.form-product-search {
  display: flex;
  align-items: center;
  background-color: #f4f4f4;
  border-radius: 5px;
}

.form-product-search select {
  color: #666;
  border-radius: 5px 0 0 5px;
  background-color: #f4f4f4;
  height: 46px;
  border: 0;
  padding-left: 19px;
  width: 125px;
  appearance: none;
  background-image: url(../images/down.png);
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
  background-size: 0.65rem auto;
}

.form-product-search .search-wrapper {
  position: relative;
  margin-left: 9px;
  width: calc(100% - 125px - 46px);
}

.form-product-search .search-wrapper:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 24px;
  background-color: #cdcdcd;
  left: 0;
  top: 10px;
}

.form-product-search .search-wrapper input {
  width: 100%;
  background-color: #f4f4f4;
  height: 46px;
  border: 0;
  padding-left: 11px;
}

.form-product-search .submit {
  width: 46px;
  height: 46px;
  background-color: #5bb8ff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 5px 5px 0;
}

.form-product-search .submit:hover, .form-product-search .submit:focus {
  background-color: var(--color-main);
  color: #fff;
}

.product-search-category {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .product-search-category {
    position: relative;
  }
}

.product-search-category .form-product-search-category {
  font-size: 15px;
}

.product-search-category .form-product-search-category .product-search-category-inner {
  margin-bottom: 7px;
}

@media (min-width: 768px) {
  .product-search-category .form-product-search-category .product-search-category-inner {
    display: flex;
    align-items: center;
  }
}

.product-search-category .form-product-search-category label {
  font-family: var(--font-bold);
  margin-right: 13px;
  width: 67px;
}

.product-search-category .form-product-search-category .search-brand {
  position: relative;
  display: inline-block;
  margin-right: 5px;
}

@media (max-width: 767px) {
  .product-search-category .form-product-search-category .search-brand {
    position: initial;
  }
}

.product-search-category .form-product-search-category .search-brand > a {
  border-radius: 5px;
  border: solid 1px #d6d6d6;
  background-color: #fff;
  width: 90px;
  height: 33px;
  padding: 5px 10px;
  color: #666;
  display: flex;
  align-items: center;
}

.product-search-category .form-product-search-category .search-brand > a span {
  margin-left: 25px;
}

.product-search-category .form-product-search-category .search-brand .search-content {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  margin-top: 7px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s;
  transform: translateY(50px);
  width: 564px;
}

@media (max-width: 767px) {
  .product-search-category .form-product-search-category .search-brand .search-content {
    width: 100%;
  }
}

.product-search-category .form-product-search-category .search-brand .search-inner {
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.27);
  border: solid 1px #d6d6d6;
  background-color: #fff;
}

@media (max-width: 767px) {
  .product-search-category .form-product-search-category .search-brand .search-inner {
    padding: 10px;
  }
}

.product-search-category .form-product-search-category .search-brand .search-inner:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 40px;
  border-top: 7px solid transparent;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #fff;
  margin-bottom: -1px;
}

.product-search-category .form-product-search-category .search-brand .brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  overflow-y: scroll;
  max-height: 90px;
}

@media (max-width: 480px) {
  .product-search-category .form-product-search-category .search-brand .brand-item {
    max-height: 232px;
  }
}

.product-search-category .form-product-search-category .search-brand .brand-item a {
  border-radius: 5px;
  border: solid 1px #d6d6d6;
  background-color: #fff;
  height: 42px;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(25% - 4px);
  margin: 0 2px 5px;
}

.product-search-category .form-product-search-category .search-brand .brand-item a:hover, .product-search-category .form-product-search-category .search-brand .brand-item a:focus {
  border-color: var(--color-blue);
}

.product-search-category .form-product-search-category .search-brand .brand-item a img {
  width: 100%;
  height: 100%;
}

@media (max-width: 575px) {
  .product-search-category .form-product-search-category .search-brand .brand-item a {
    width: calc(100%/3 - 4px);
  }
}

.product-search-category .form-product-search-category .search-brand .button-action {
  border-top: 1px solid #b8b8b8;
  padding-top: 16px;
  margin: 0 2px;
  margin-top: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .product-search-category .form-product-search-category .search-brand .button-action {
    flex-flow: wrap;
    justify-content: center;
  }
  .product-search-category .form-product-search-category .search-brand .button-action a {
    margin-bottom: 5px;
  }
}

.product-search-category .form-product-search-category .search-brand .button-action a {
  min-width: 180px;
  padding: 0 10px;
  margin: 0 2px 2px;
}

@media (max-width: 480px) {
  .product-search-category .form-product-search-category .search-brand .button-action a {
    width: calc(50% - 4px);
    min-width: auto;
  }
}

.product-search-category .form-product-search-category .search-brand:hover .search-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.product-search-category .form-product-search-category .form-search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .product-search-category .form-product-search-category .form-search {
    width: calc(100% - 80px);
  }
}

.product-search-category .form-product-search-category .search-wrapper {
  width: calc(100% - 140px);
  margin-right: 4px;
}

.product-search-category .form-product-search-category .search-wrapper input {
  height: 33px;
  border-radius: 5px;
  border: solid 1px #d6d6d6;
  background-color: #fff;
  padding: 0 11px;
  width: 100%;
}

.product-search-category .form-product-search-category .search-wrapper input::-webkit-input-placeholder {
  color: #666;
}

.product-search-category .form-product-search-category .search-wrapper input:-ms-input-placeholder {
  color: #666;
}

.product-search-category .form-product-search-category .search-wrapper input::placeholder {
  color: #666;
}

.product-search-category .form-product-search-category .submit {
  width: 41px;
  height: 33px;
  border-radius: 5px;
  padding: 0;
}

.product-search-category .form-product-search-category .search-alphabet {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .product-search-category .form-product-search-category .search-alphabet {
    flex-flow: wrap;
    justify-content: flex-start;
  }
  .product-search-category .form-product-search-category .search-alphabet a {
    margin-right: 2px;
  }
}

.product-search-category .form-product-search-category .search-alphabet a {
  border-radius: 5px;
  border: solid 1px #d6d6d6;
  background-color: #fff;
  width: 33px;
  height: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #666;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .product-search-category .form-product-search-category .search-alphabet a + a {
    margin-left: 2px;
  }
}

.product-search-category .form-product-search-category .search-alphabet a:hover, .product-search-category .form-product-search-category .search-alphabet a:focus {
  border-color: var(--color-blue);
  background: var(--color-blue);
  color: #fff;
}

@media (min-width: 768px) {
  .single-bottom.fixed .tour-detail-scroll {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    z-index: 99;
  }
  .single-bottom.fixed .tour-detail-scroll .inner {
    padding: 0 15px;
  }
}

@media (min-width: 768px) and (min-width: 1650px) {
  .single-bottom.fixed .inner {
    max-width: 1650px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .single-bottom.fixed .sidebar .sidebar-inner {
    top: 185px;
    position: sticky;
  }
}

.tour-detail-scroll {
  background: #333;
  display: none;
}

.tour-detail-scroll .title {
  font-size: 30px;
  line-height: 40px;
  font-family: var(--font-second-medium);
  margin-top: 15px;
  margin-bottom: 10px;
}

.tour-detail-scroll .title a {
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.tour-detail-scroll .title a:hover {
  color: var(--color-main);
}

.tour-detail-scroll .meta {
  color: #fff;
  font-size: 16px;
  line-height: 36px;
}

.tour-detail-scroll .meta .icon {
  margin-right: 6px;
  color: var(--color-main);
}

.tour-detail-scroll .address {
  color: var(--color-main);
  font-size: 18px;
}

.tour-detail-scroll .ratings {
  color: #eab411;
}

.tour-detail-scroll .price {
  font-size: 20px;
  font-family: var(--font-second-medium);
}

.tour-detail-scroll .price .icon {
  font-size: 16px;
}

.tour-detail-scroll .tour-detail-scroll-info {
  display: flex;
  align-items: center;
}

.tour-detail-scroll .tour-detail-scroll-info > div {
  width: 25%;
  margin-bottom: 12px;
}

@media (max-width: 1199px) {
  .tour-detail-scroll .tour-detail-scroll-info > div {
    width: auto;
    padding-right: 30px;
  }
}

@media (min-width: 992px) {
  .tour-detail-scroll .inner {
    display: flex;
    align-items: center;
  }
  .tour-detail-scroll .tour-detail-left {
    width: 73.4%;
    padding-right: 15px;
  }
}

@media (min-width: 992px) and (max-width: 1270px) {
  .tour-detail-scroll .tour-detail-left {
    width: 70%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .tour-detail-scroll .tour-detail-left {
    width: 65%;
  }
}

@media (min-width: 992px) {
  .tour-detail-scroll .button-action {
    width: 26.6%;
  }
}

@media (min-width: 992px) and (max-width: 1270px) {
  .tour-detail-scroll .button-action {
    width: 30%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .tour-detail-scroll .button-action {
    width: 35%;
  }
}

.tour-detail-scroll .button-action a {
  font-size: 24px;
  text-transform: uppercase;
  flex-direction: column;
  width: 100%;
  height: 70px;
  border-radius: 35px;
}

@media (max-width: 991px) {
  .tour-detail-scroll .button-action a {
    width: auto;
    margin-bottom: 20px;
  }
}

.tour-detail-scroll .button-action a span {
  font-size: 14px;
  font-family: var(--font-second-normal);
  margin-top: 5px;
  text-transform: capitalize;
}

/*product detail*/
#mainCarousel {
  margin-bottom: 16px;
}

#mainCarousel .carousel__slide {
  width: 100%;
  padding: 0;
  text-align: center;
}

#mainCarousel .carousel__nav {
  display: none;
}

#mainCarousel .panzoom {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

#mainCarousel .panzoom:before {
  content: "";
  display: block;
  padding-bottom: 47.28%;
}

#mainCarousel .panzoom > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#mainCarousel .panzoom img {
  width: 100%;
  height: 100%;
}

#thumbCarousel .counter-thumb {
  position: absolute;
  right: -2px;
  z-index: 1;
  width: var(--carousel-slide-width, calc(33.333% - 10px));
  height: 100%;
  display: flex;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  padding-bottom: 8px;
  font-family: var(--font-second-bold);
  background-color: rgba(255, 80, 57, 0.65);
  border-radius: 20px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  #thumbCarousel .counter-thumb {
    font-size: 30px;
  }
}

@media (max-width: 429px) {
  #thumbCarousel .counter-thumb {
    font-size: 24px;
  }
}

#thumbCarousel .carousel__slide {
  width: var(--carousel-slide-width, calc(33.333% - 10px));
  height: var(--carousel-slide-width, calc(33.333% - 10px))/2;
  padding: 0;
  margin-right: 16px;
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
  text-align: center;
}

@media (max-width: 429px) {
  #thumbCarousel .carousel__slide {
    height: 70px;
  }
}

#thumbCarousel .carousel__slide img {
  transition: 0.3s;
  height: 100%;
  width: 100%;
}

#thumbCarousel .carousel__slide img:hover {
  transform: scale(1.1);
}

#thumbCarousel .carousel__slide:hover {
  border-color: var(--color-main);
}

.fancybox__container .fancybox__backdrop {
  background: rgba(0, 0, 0, 0.7);
}

.fancybox__container .fancybox__thumbs {
  display: none;
}

.fancybox__container .fancybox__thumbs .fancybox__thumb {
  padding-top: 0;
  height: 100%;
}

.fancybox__container .fancybox__thumbs .carousel__slide {
  height: 96px;
}

.fancybox__container .fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: none;
}

.fancybox__container .fancybox__toolbar__items--right {
  background: #2d2d2d;
}

@media (min-width: 1024px) {
  .fancybox__container .fancybox__toolbar {
    padding: 0px;
  }
}

.fancybox__container .carousel__button {
  color: #b2b2b2;
}

.fancybox__container .carousel__button:hover {
  color: #fff;
}

.fancybox__container .fancybox__counter {
  display: none;
}

.fancybox__container .fancybox__slide img {
  border-radius: 10px;
}

.fancybox__container .fancybox__nav .carousel__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #2d2d2d;
  border-radius: 0;
  color: #fff;
}

.fancybox__container .fancybox__nav .carousel__button svg {
  display: none;
}

.fancybox__container .fancybox__nav .carousel__button:before {
  content: "";
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 15px;
  height: 10px;
}

.fancybox__container .fancybox__nav .carousel__button:hover {
  opacity: 0.6;
}

.fancybox__container .fancybox__nav .carousel__button.is-next:before {
  background-image: url(../image/fancybox-next.png);
}

.fancybox__container .fancybox__nav .carousel__button.is-prev:before {
  background-image: url(../image/fancybox-prev.png);
}

.modal-open .modal-backdrop.show {
  opacity: 0.7;
}

#myModal .close {
  position: absolute;
  right: 0px;
  top: 0;
  color: #000;
  padding: 0px 12px;
  font-size: 25px;
  cursor: pointer;
  z-index: 100;
}

#myModal .close:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  width: 93px;
  height: 93px;
  display: block;
  background-image: url(../image/bg-close.png);
}

#myModal .close span, #myModal .close img {
  z-index: 1;
  position: relative;
}

#myModal .modal-content {
  border: 0;
  padding: 60px;
  background: #fff;
  position: relative;
  border-radius: 0px 160px 0px 50px;
}

@media (max-width: 1199px) {
  #myModal .modal-content {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  #myModal .modal-content {
    padding: 15px;
  }
  #myModal .modal-content .tour-list.style-1 .image-fit .image {
    border-top-right-radius: 160px;
  }
}

#myModal .modal-body {
  padding: 0;
}

#myModal .modal-body p {
  margin-bottom: 25px;
}

#myModal .modal-body .tour-list {
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  #myModal .modal-body .tour-list {
    margin-bottom: 30px;
  }
}

@media (min-width: 1200px) {
  #myModal .modal-dialog {
    max-width: 1170px;
  }
}

@media (max-width: 1199px) {
  #myModal .modal-dialog {
    max-width: calc(100% - 30px);
    margin: 30px auto;
  }
}

.title-page {
  max-width: 1170px;
  margin: 0 auto 24px;
}

.title-page .title {
  font-size: 30px;
  margin-bottom: 15px;
}

.title-page .desc {
  line-height: 26px;
  font-family: var(--font-second-medium);
}

.post .image {
  position: relative;
  overflow: hidden;
}

.post .image:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  z-index: 1;
  transition: .4s all ease-in-out;
  pointer-events: none;
}

.post .image img {
  width: 100%;
  height: 100%;
}

.post .image a {
  display: block;
}

.post .meta {
  color: #999;
  font-size: 14px;
  margin-top: 10px;
}

.post .meta i {
  margin-right: 5px;
  font-size: 12px;
}

.post .meta span + span {
  margin-left: 20px;
}

@media (max-width: 575px) {
  .post .meta span + span {
    margin-left: 10px;
  }
}

.post .meta .date {
  background: var(--color-main);
  border-radius: 3px;
  padding: 6px 8px 3px;
  font-size: 16px;
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  font-family: var(--font-normal);
  color: #fff;
}

.post .meta .date .year {
  font-size: 16px;
  font-family: var(--font-bold);
  line-height: 1;
  width: 100%;
}

.post .meta .date .line {
  opacity: 0.2;
  box-shadow: 0px 1px 0 0 #fff;
  background-color: #000;
  width: 100%;
  height: 1px;
  margin: 3px 0 0;
}

.post .meta .date .month-day {
  margin: 0;
}

.post .meta-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
}

.post .meta-inline .meta {
  margin-top: 0;
  font-size: 14px;
}

@media (max-width: 575px) {
  .post .meta-inline .meta {
    font-size: 13px;
  }
}

.post .meta-inline .resize-font {
  display: flex;
  align-items: center;
}

.post .meta-inline .resize-font a {
  margin-left: 5px;
}

.post .meta-inline .text-size {
  font-size: 13px;
  color: #999999;
  margin-right: 3px;
}

@media (max-width: 575px) {
  .post .meta-inline .text-size {
    margin-right: 0;
  }
}

.post .meta-inline .btn-minus, .post .meta-inline .btn-plus {
  width: 26px;
  height: 26px;
  text-align: center;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border-radius: 5px;
}

.post .meta-inline .btn-minus img, .post .meta-inline .btn-plus img {
  width: 15px;
}

.post .meta-inline .btn-minus:hover, .post .meta-inline .btn-minus:focus, .post .meta-inline .btn-plus:hover, .post .meta-inline .btn-plus:focus {
  background: rgba(210, 167, 62, 0.3);
}

.post:hover .image:after, .post:focus .image:after {
  opacity: 0.5;
}

.post:hover .image img, .post:focus .image img {
  transform: scale(1.1);
}

.post.post-single {
  padding: 50px 46px 52px 58px;
  border-radius: 20px;
  box-shadow: 0px 7px 29px 0 rgba(0, 0, 0, 0.07);
  border: solid 2px #ff5039;
  background-color: #fff6f5;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 1199px) {
  .post.post-single {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .post.post-single {
    padding: 20px;
  }
}

.post.post-single .title {
  font-size: 30px;
  margin-bottom: 20px;
  text-align: center;
}

@media (min-width: 1025px) {
  .post.post-single .title {
    background: #fff6f5;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    border-radius: 20px;
    margin-bottom: -12px;
  }
}

@media (min-width: 1025px) {
  .post.post-single .title span {
    margin: 0 14px 0 18px;
    width: 899px;
    height: 38px;
    overflow: hidden;
  }
}

@media (min-width: 1025px) {
  .post.post-single .title a {
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
}

.post.post-single .description {
  line-height: 30px;
}

.post.post-single .description ul {
  list-style: revert;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.post.post-single .description p {
  margin-bottom: 25px;
}

.post.post-single .description div {
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .post.post-single .description img {
    width: 100% !important;
    height: 100% !important;
  }
  .post.post-single .description iframe, .post.post-single .description table {
    width: 100% !important;
  }
}

.post.post-single .detail-bottom {
  border-top-color: #ede5e4;
  border-bottom-color: #ede5e4;
}

.post.post-single .detail-bottom .button-action .btn {
  background: #eae2e1;
}

.post.post-single .detail-bottom .button-action .btn:hover, .post.post-single .detail-bottom .button-action .btn:focus {
  background: var(--color-main);
}

.post.post-item-1 {
  padding-bottom: 16px;
}

.post.post-item-1 .image {
  border-radius: 10px;
  transition: all 0.35s;
  margin-bottom: 16px;
}

.post.post-item-1 .image:before {
  padding-bottom: 56.15%;
}

.post.post-item-1 .title {
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 15px;
  font-family: var(--font-second-medium);
}

.post.post-item-1 .title a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.post.post-item-1 .desc {
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.post.post-item-1 .meta {
  position: absolute;
  top: 18px;
  left: 15px;
  z-index: 1;
  margin: 0;
}

.post.post-item-1:hover .image {
  box-shadow: 0 0 0 2px var(--color-main);
}

.post.post-item-1:hover .title a {
  color: var(--color-main);
}

.detail-bottom {
  margin-top: 40px;
  padding-top: 8px;
  border-top: 1px solid #f6f6f6;
  border-bottom: 1px solid #f6f6f6;
}

@media (min-width: 576px) {
  .detail-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 1199px) {
  .detail-bottom {
    margin-top: 30px;
  }
}

.detail-bottom .button-action .btn {
  font-size: 13px;
  line-height: 1;
  height: 20px;
  color: #999;
  padding: 2px 10px 3px;
  background: #f6f6f6;
  border-radius: 20px;
  margin-left: 5px;
  margin-bottom: 8px;
  font-family: 'Roboto', sans-serif;
}

.detail-bottom .button-action .btn i {
  margin-right: 5px;
}

.detail-bottom .button-action .btn:hover {
  background: var(--color-main);
  color: #fff;
}

@media (max-width: 575px) {
  .detail-bottom .button-action .btn {
    margin-left: 0px;
    margin-right: 2px;
    margin-top: 2px;
    padding: 5px;
  }
}

.detail-bottom .social-share {
  display: flex;
  flex-wrap: wrap;
}

.paging {
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-normal);
}

.paging a {
  font-size: 15px;
  text-decoration: none;
  margin: 3px;
  border-radius: 5px;
  border: solid 1px #cdcdcd;
  padding: 10px;
  line-height: 1;
  height: 36px;
  min-width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.paging a:hover, .paging a.hientai {
  color: #fff;
  border-color: #ec2124;
  background: #ec2124;
}

.paging a:hover:before, .paging a.hientai:before {
  color: #fff;
}

.paging a.truoc, .paging a.sau {
  position: relative;
  font-size: 0px;
  color: transparent;
}

.paging a.truoc:before, .paging a.sau:before {
  position: absolute;
  color: var(--color-text);
  z-index: 1;
  top: 8px;
  left: 12px;
  font-size: 18px;
  font-family: var(--font-icon);
}

.paging a.truoc:hover:before, .paging a.truoc.hientai:before, .paging a.sau:hover:before, .paging a.sau.hientai:before {
  color: #fff;
}

.paging a.dau, .paging a.cuoi {
  min-width: 67px;
}

.paging a.truoc:before {
  content: "\f104";
}

.paging a.sau:before {
  content: "\f105";
}

.post-grid .paging {
  padding-top: 25px;
  padding-bottom: 10px;
  border-top: 2px solid var(--color-main);
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

/************************/
.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

@media (max-width: 1366px) {
  .mb-70 {
    margin-bottom: 60px !important;
  }
}

.mb-80 {
  margin-bottom: 80px !important;
}

@media (max-width: 1366px) {
  .mb-80 {
    margin-bottom: 60px !important;
  }
}

.mb-95 {
  margin-bottom: 95px !important;
}

@media (max-width: 1366px) {
  .mb-95 {
    margin-bottom: 60px !important;
  }
}

.mb-100 {
  margin-bottom: 100px !important;
}

@media (max-width: 1366px) {
  .mb-100 {
    margin-bottom: 60px !important;
  }
}

@media (min-width: 992px) {
  .pr-3 {
    padding-right: 3px !important;
  }
  .pl-3 {
    padding-left: 3px !important;
  }
}
