:root {
  --green: #133A3B;
  --yellow: rgba(206, 130, 15, 1);
  --font-body: "Inter", sans-serif;
}

body {
  min-height: 100vh;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
  width: 100vw;
}

h2,
h2,
h3 {
  font-family: "philosopher";
}

.segTitle .--subTxt {
  font-family: "philosopher";
  font-size: 18px;
  color: rgb(206, 130, 15);
  text-transform: uppercase;
}
.segTitle h2 {
  font-size: 44px;
  font-weight: 400;
  font-family: "philosopher";
  text-transform: uppercase;
  color: #133A3B;
}
@media (max-width: 576px) {
  .segTitle h2 {
    font-size: 30px;
  }
}
.segTitle p {
  font-size: 14px;
  font-family: Inter;
}

header {
  position: fixed;
  padding: 20px;
  width: 100%;
  z-index: 999;
  display: flex;
  transition: all 0.5s ease;
  justify-content: space-between;
}
header.change {
  background: var(--green);
}
header.change .--logo img {
  width: 105px;
}
header .--logo a {
  margin-right: 15px;
}
header .--logo img {
  width: 120px;
  transition: width 0.5s ease;
}
header .--menu {
  display: flex;
  align-items: center;
}
header .--menu ul {
  display: flex;
  justify-content: flex-end;
  justify-content: space-around;
  list-style-type: none;
  margin: 0;
}
header .--menu ul li a {
  text-decoration: none;
  font-family: Inter;
  padding: 10px 5px;
  font-size: 14px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-right: 15px;
}
header .--menu ul li a:hover {
  color: #CE820F;
  transition: all 0.5s ease;
}
header .--menu .partern_menu {
  display: none;
}
header::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  bottom: 0;
}
@media (max-width: 640px) {
  header .humberger {
    z-index: 999;
  }
  header .humberger p {
    background: #fff;
    height: 4px;
    margin-bottom: 5px;
    width: 36px;
    transform-origin: left;
    transition: all 0.5s ease;
  }
  header .humberger p.change {
    background: var(--color-blue);
  }
  header .humberger.active p {
    margin-bottom: 9px;
  }
  header .humberger p:nth-child(1) {
    width: 36px;
  }
  header .humberger.active p:nth-child(1) {
    width: 36px;
    transform: rotate(45deg);
  }
  header .humberger.active p:nth-child(2) {
    width: 0;
  }
  header .humberger.active p:nth-child(3) {
    transform: rotate(-45deg);
  }
  header .--menu {
    position: fixed;
    height: 100vh;
    top: 0;
    right: 0;
    background: var(--green);
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translate(150%, 0);
    transition: transform 0.5s ease;
  }
  header .--menu ul {
    flex-flow: column;
    justify-content: center;
    padding: 0;
  }
  header .--menu ul li {
    margin-bottom: 1rem;
  }
  header .--menu ul li a {
    margin-right: 0;
    font-family: "Philosopher";
    font-size: 1.5rem;
  }
  header .--menu.active {
    transform: none;
  }
  header .partern_menu {
    display: block !important;
    position: absolute;
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 0;
    width: 150%;
  }
}

.homeBanner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.homeBanner img {
  width: 100%;
  position: relative;
  height: 100%;
  transform: scale(1.2);
}
@media (max-width: 576px) {
  .homeBanner img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.homeBanner .bg_banner {
  transition: transform 5s ease;
}
.homeBanner .bg_banner.active {
  transform: none;
}
.homeBanner .--txt {
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  bottom: 0;
  bottom: 7rem;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 0 15px;
}
.homeBanner .--txt span {
  font-size: 55px !important;
  color: rgb(255, 238, 166);
}
.homeBanner .--txt h2 {
  font-size: 40px;
  color: #FFFFFF;
  line-height: 40px;
}
@media (max-width: 576px) {
  .homeBanner .--txt {
    -o-object-fit: cover;
       object-fit: cover;
    padding: 0 18PX;
    width: 100%;
  }
}
.homeBanner .--pattern {
  position: absolute;
  bottom: 0;
  transform: translate(-50%, 0);
  left: 50%;
  pointer-events: none;
}
@media (max-width: 640px) {
  .homeBanner {
    height: 60vh;
  }
}

.homeIntro {
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0;
}
.homeIntro .--txt {
  padding-right: 20px;
  color: var(--green);
}
.homeIntro .--txt span {
  color: #CE820F;
}
.homeIntro .--txt h2 {
  text-transform: uppercase;
  color: #133A3B;
}
.homeIntro .--txt h3 {
  font-size: 26px;
}
@media (max-width: 576px) {
  .homeIntro .--txt h3 {
    font-size: 20px;
  }
}
.homeIntro .--txt article {
  width: 80%;
  color: #133A3B;
}
@media (max-width: 576px) {
  .homeIntro .--txt article {
    width: 100%;
    padding: 0 18px;
  }
}
@media (max-width: 576px) {
  .homeIntro .--txt {
    margin-bottom: 50px;
  }
}
.homeIntro .--slide {
  filter: drop-shadow(0px 4px 40px rgba(0, 0, 0, 0.25));
}
.homeIntro .--slide .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: 0;
  transform: translate(0, -50%);
  display: flex;
  justify-content: space-between;
  left: 0;
}
.homeIntro .--slide .owl-nav button {
  position: relative;
  border-radius: 50%;
  left: -18px;
}
.homeIntro .--slide .owl-nav button:hover {
  background-color: rgb(206, 130, 15) !important;
}
.homeIntro .--slide .owl-nav button:hover img {
  filter: invert(1);
}
.homeIntro .--slide .owl-nav button.owl-next {
  left: unset;
  right: -18px;
}
.homeIntro .listImg {
  height: 500px;
}
.homeIntro .listImg .--item img {
  border-radius: 16px;
  border: 2px solid rgb(255, 255, 255);
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.homeIntro .segTitle {
  margin-bottom: 100px;
  position: relative;
}
.homeIntro .segTitle::after {
  content: "";
  width: 72px;
  height: 4px;
  background: #CE820F;
  position: absolute;
  bottom: -14%;
  left: 3px;
}
@media (max-width: 576px) {
  .homeIntro .segTitle::after {
    left: 19px;
  }
}
@media (max-width: 576px) {
  .homeIntro .segTitle {
    padding: 0 18px;
  }
}
@media (max-width: 640px) {
  .homeIntro {
    flex-direction: column-reverse;
    padding: 30px 0;
  }
  .homeIntro article {
    text-align: justify;
  }
  .homeIntro .segTitle {
    margin-bottom: 3rem;
  }
}

.nav_arrow_slick {
  position: absolute;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #C4C4C4;
  cursor: pointer;
  border-radius: 50%;
}

.homeSlideImg {
  height: 85vh;
  width: 100%;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (max-width: 576px) {
  .homeSlideImg {
    height: 34vh;
    background-attachment: unset;
  }
}

.homeHighlight {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0;
  position: relative;
  background-position: bottom center;
}
.homeHighlight .nav_arrow_slick {
  transform: translate(-50%, -50%);
  top: 50%;
  justify-content: space-around;
  left: calc(50% - 50px);
  cursor: unset;
}
.homeHighlight .nav_arrow_slick .prev {
  transform: rotate(180deg);
}
.homeHighlight .nav_arrow_slick svg {
  cursor: pointer;
}
.homeHighlight .nav_arrow_slick svg:hover path {
  fill: var(--yellow);
}
.homeHighlight .optionArrow {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  pointer-events: none;
}
.homeHighlight .optionArrow .point {
  display: flex;
  flex-flow: column;
}
.homeHighlight .optionArrow #current_slide {
  color: var(--yellow);
  font-size: 4rem;
  line-height: 1;
  font-family: "Philosopher";
}
.homeHighlight .optionArrow #total_slide {
  text-align: center;
}
.homeHighlight .list_hight .item {
  padding: 3rem;
}
.homeHighlight .list_hight .item.slick-active img {
  transform: rotate(6.01deg);
}
.homeHighlight .segTitle {
  margin-bottom: 43px;
}
.homeHighlight .--text {
  padding-left: 50px;
}
.homeHighlight .--text span {
  font-family: Philosopher;
  text-transform: uppercase;
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 14px;
}
@media (max-width: 576px) {
  .homeHighlight .--text span {
    font-size: 20px;
  }
  .homeHighlight .--text span article {
    text-align: justify;
  }
}
@media (max-width: 576px) {
  .homeHighlight .--text {
    padding: 0 18px;
    margin-top: 3rem;
  }
}
.homeHighlight .slideImg {
  position: relative;
  height: 480px;
  min-height: 52vh;
}
.homeHighlight .slideImg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  display: block;
  position: absolute;
  top: 0;
  border-radius: 16px;
  border: 1.13429px solid rgba(192, 119, 9, 0.5);
  box-shadow: 0px 13.6115px 27.223px rgba(0, 0, 0, 0.05);
  z-index: -1;
  transform: rotate(-3.92deg);
}
.homeHighlight .slideImg::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  display: block;
  position: absolute;
  top: 0;
  border-radius: 16px;
  border: 1.13429px solid rgba(192, 119, 9, 0.5);
  box-shadow: 0px 13.6115px 27.223px rgba(0, 0, 0, 0.05);
  z-index: -1;
  transform: rotate(13deg);
}
.homeHighlight .slideImg .--item1 {
  border: 1.13429px solid rgba(192, 119, 9, 0.5);
  filter: drop-shadow(0px 13.6115px 27.223px rgba(0, 0, 0, 0.05));
  border-radius: 18.1487px;
  transform: rotate(35deg);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
@media (max-width: 576px) {
  .homeHighlight .slideImg .--item1 {
    width: 100%;
  }
}
.homeHighlight .slideImg .--item2 {
  position: absolute;
  left: -48px;
  z-index: -1;
  top: -44px;
  display: none;
}
@media (max-width: 576px) {
  .homeHighlight .slideImg .--item2 {
    width: 100%;
    left: 0;
  }
}
@media (max-width: 640px) {
  .homeHighlight {
    padding: 60px 0px;
  }
  .homeHighlight .list_hight .item {
    padding: 0;
  }
  .homeHighlight .list_hight .item .slideImg::before, .homeHighlight .list_hight .item .slideImg::after {
    display: none;
  }
  .homeHighlight .list_hight .item .--item1 {
    transform: none !important;
  }
  .homeHighlight .nav_arrow_slick {
    left: unset;
    right: 0;
    transform: translate(0, -50%);
  }
}

.homeDestination {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0 90px 0;
}
.homeDestination .--text {
  margin-bottom: 70px;
}
.homeDestination .--text h2 {
  text-align: center;
}
@media (max-width: 576px) {
  .homeDestination .--text h2 {
    padding: 0 18x;
  }
}
@media (max-width: 576px) {
  .homeDestination .--text {
    padding: 0 18x;
    margin-bottom: 1rem;
  }
}
.homeDestination .--listImg {
  display: flex;
  justify-content: center;
}
.homeDestination .--listImg.line-2 .itemDestination:hover .--txt {
  opacity: 1;
  color: rgb(19, 58, 59);
  background: #fff;
}
.homeDestination .--listImg.line-2 .itemDestination:hover .--txt .--name {
  background: unset;
  -webkit-text-fill-color: unset;
  -webkit-background-clip: unset;
}
@media (max-width: 640px) {
  .homeDestination .--listImg {
    display: flex;
    flex-wrap: unset !important;
    justify-content: unset;
    width: 100%;
    overflow: scroll;
  }
  .homeDestination .--listImg::-webkit-scrollbar {
    width: 15px;
    height: 4px;
    border-radius: 10px;
  }
  .homeDestination .--listImg::-webkit-scrollbar-track {
    background: #fff;
  }
  .homeDestination .--listImg::-webkit-scrollbar-thumb {
    background: var(--yellow);
  }
  .homeDestination .--listImg::-webkit-scrollbar-thumb:hover {
    background: var(--yellow);
  }
  .homeDestination .itemDestination {
    width: 100% !important;
    flex: 0 0 100%;
  }
}

.itemDestination {
  position: relative;
  flex: 0 0 33.3333333333%;
  width: 33.3333333333%;
  height: 300px;
  overflow: hidden;
}
.itemDestination:hover .--txt {
  transform: none;
  opacity: 1;
}
.itemDestination:hover .--name {
  background: -webkit-linear-gradient(90deg, #C1962D 0%, #FFE66D 26.69%, #C59A2E 69.17%, #FADF66 96.77%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.itemDestination .--txt {
  position: absolute;
  bottom: 0;
  opacity: 0;
  color: #FFFFFF;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0, 100%);
  padding: 18px;
  transition: all 0.75s ease;
}
.itemDestination .--txt::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(92, 55, 0, 0.59);
  pointer-events: none;
}
.itemDestination .--txt .--name {
  font-family: Inter;
  color: #133A3B;
  position: relative;
  z-index: 1;
  font-size: 24px;
}
.itemDestination .--txt .--desc {
  bottom: 0px;
  position: relative;
  font-family: Inter;
  /* left: 24px; */
  /* bottom: 12px; */
  z-index: 1;
  font-size: 13px;
}
.itemDestination .--txt .--desc::before {
  content: "";
  width: 61px;
  height: 2px;
  background: #CE820F;
  position: absolute;
  top: -2rem;
  left: 3px;
}
.itemDestination .--img {
  width: 100%;
  height: 100%;
}
.itemDestination .--img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.homeMap {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
}
.homeMap .--title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 3.5rem;
  text-align: center;
}
.homeMap .--title h2 {
  color: #FFFFFF;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}
.homeMap .--title p {
  color: rgb(255, 255, 255);
  width: 65%;
}
@media (max-width: 576px) {
  .homeMap .--title {
    margin-bottom: 0.5rem;
  }
}
.homeMap .img_mobile {
  display: none;
}
.homeMap .--inforGraphic {
  position: relative;
  bottom: 0;
  width: 100%;
  border: 2px solid #FFFFFF;
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.15));
  border-radius: 16px;
}
.homeMap .--inforGraphic img {
  width: 100%;
  border-radius: inherit;
}
.homeMap .--inforGraphic .--coverImg {
  border: 2px solid #FFFFFF;
  border-radius: 16px;
}
.homeMap .--inforGraphic ul {
  position: absolute;
  top: 10%;
  margin: 0;
  padding: 0;
  margin-left: 50px;
  opacity: 0;
  pointer-events: none;
}
.homeMap .--inforGraphic ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
}
.homeMap .--inforGraphic ul li .--carIcon {
  width: 20px;
}
.homeMap .--inforGraphic ul li p {
  margin: 0;
  color: rgb(19, 58, 59);
  font-size: 12px;
}
@media (max-width: 576px) {
  .homeMap .--inforGraphic ul {
    position: relative;
    margin: 30px 0;
    padding: 0 18px;
    filter: brightness(20);
  }
}
.homeMap .--inforGraphic .--markerList .--marker {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  color: #FFFFFF;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.homeMap .--inforGraphic .--markerList .--marker img {
  width: 45px;
}
.homeMap .--inforGraphic .--markerList .--marker p {
  font-size: 10px;
}
.homeMap .--inforGraphic .--markerList .--marker:nth-child(1) {
  top: 34%;
  left: 73.3%;
}
.homeMap .--inforGraphic .--markerList .--marker:nth-child(2) {
  top: 28%;
  left: 36.5%;
}
.homeMap .--inforGraphic .--markerList .--marker:nth-child(2) img {
  width: 40px;
}
.homeMap .--inforGraphic .--markerList .--marker:nth-child(3) {
  top: 45%;
  left: 31%;
}
.homeMap .--inforGraphic .--markerList .--marker:nth-child(3) img {
  width: 30px;
}
.homeMap .--inforGraphic .--markerList .--marker:nth-child(4) {
  top: 48%;
  left: 23%;
}
.homeMap .--inforGraphic .--markerList .--marker:nth-child(4) img {
  width: 35px;
}
@media (max-width: 576px) {
  .homeMap .--inforGraphic .--markerList {
    display: none;
  }
}
@media (max-width: 640px) {
  .homeMap {
    padding: 30px 0;
  }
  .homeMap .img_mobile {
    display: block;
  }
  .homeMap .img_mobile img {
    width: 100%;
    border-radius: 16px;
    border: 2px solid #fff;
    filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.15));
    height: auto;
  }
  .homeMap .--inforGraphic {
    display: none;
  }
  .homeMap .--title p {
    width: 100%;
  }
}

.itemMapDistance .--timeConsume {
  display: flex;
  flex-direction: column;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 10px;
}
.itemMapDistance .--timeConsume img {
  width: 100%;
}

.homeProjects {
  background-repeat: no-repeat;
  background-size: contain;
  padding: 120px 0 60px 0;
}
.homeProjects .--title p {
  font-family: "philosopher";
  font-size: 20px;
  color: var(--yellow);
}
.homeProjects .--title h2 {
  font-weight: 400;
}
@media (max-width: 576px) {
  .homeProjects .--title {
    text-align: center;
  }
}
.homeProjects .--header {
  width: 100%;
  margin-bottom: 50px;
}
@media (max-width: 576px) {
  .homeProjects .--header .d-flex {
    align-items: center !important;
  }
}
.homeProjects .--navTab {
  display: flex;
}
.homeProjects .--navTab li button {
  color: var(--yellow);
  padding: 0;
  padding: 10px 20px;
  border-radius: 100px;
  position: relative;
  border: 1px solid var(--yellow);
  margin-right: 8px;
  transition: all 0.5s ease;
}
.homeProjects .--navTab li button::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 1px;
  background: #e5e5e5;
  transition: width 0.5s ease;
  transform: translate(0, -50%);
  top: 50%;
  left: 10px;
}
.homeProjects .--navTab li button:hover {
  color: white;
  background-color: var(--yellow);
  padding: 10px 20px 10px 30px;
}
.homeProjects .--navTab li button:hover::before {
  width: 20px;
}
.homeProjects .--navTab li button.active {
  background: var(--yellow);
  color: #fff;
  padding: 10px 20px 10px 40px;
}
.homeProjects .--navTab li button.active::before {
  width: 20px;
}
@media (max-width: 576px) {
  .homeProjects .--navTab li {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.homeProjects .--navTab .btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 576px) {
  .homeProjects .--navTab {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
  }
}
.homeProjects .--navTab::nth-child(1):before {
  content: "";
  width: 5px;
  height: 1px;
  background: #e5e5e5;
}
.homeProjects .--gallery {
  display: flex;
}
@media (max-width: 640px) {
  .homeProjects {
    padding: 30px 0;
  }
}

.itemProject .--img {
  position: relative;
  height: 280px;
}
.itemProject .--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.itemProject .--img span {
  -webkit-text-stroke: 1px white;
  font-size: 100px;
  position: absolute;
  bottom: -7px;
  left: 25px;
  color: transparent;
  font-weight: 500;
  line-height: 112px;
  font-family: "philosopher";
}
.itemProject .--img span:before {
  content: "";
  width: 2px;
  height: 80px;
  background: rgb(192, 119, 9);
  background: linear-gradient(0deg, rgb(192, 119, 9) 50%, rgb(255, 255, 255) 50%);
  position: absolute;
  bottom: -32px;
  left: -13px;
}
.itemProject p {
  color: var(--green);
  font-family: Inter;
  letter-spacing: 0.02em;
  padding: 8px 0 0 30px;
  font-size: 1.25rem;
  line-height: 1.25;
}
@media (max-width: 576px) {
  .itemProject {
    width: 100%;
  }
}

.homeSpots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 60px 0 120px 0;
}
.homeSpots .--title {
  text-align: center;
  margin-bottom: 60px;
}
.homeSpots .--title span {
  color: var(--yellow);
  font-weight: 400;
  font-size: 20px;
}
.homeSpots .--title h2 {
  color: var(--green);
}
.homeSpots .--listing {
  display: flex;
  position: relative;
}
.homeSpots .owl-nav {
  top: 198px;
}
.homeSpots .owl-nav button:hover img {
  filter: invert(1);
}
.homeSpots .owl-nav button.owl-next {
  right: -27px;
}
@media (max-width: 640px) {
  .homeSpots {
    padding: 50px 0;
  }
  .homeSpots .itemSpot .--img {
    height: 250px;
  }
}

.itemSpot {
  width: 100%;
}
.itemSpot .--img {
  width: 100%;
  height: 350px;
}
.itemSpot .--img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.itemSpot .--txt {
  position: relative;
  padding-top: 50px;
}
.itemSpot .--txt h5 {
  color: var(--yellow);
  font-family: Inter;
  font-weight: 400;
  margin-bottom: 13px;
}
.itemSpot .--txt p {
  font-family: "Inter";
  font-weight: 400;
  font-size: 15px;
  color: var(--green);
  width: 90%;
}
.itemSpot .--txt::before {
  content: "";
  width: 70px;
  height: 1px;
  background-color: var(--yellow);
  position: absolute;
  top: 23%;
}
@media (max-width: 576px) {
  .itemSpot {
    width: 100%;
  }
}

.owl-nav {
  position: absolute;
  top: 36%;
  width: 100%;
}

.owl-prev {
  position: absolute;
  left: -27px;
  padding: 11px 18px;
  background: #FFFFFF !important;
  border: 1px solid #BAB5B5 !important;
  border-radius: 100px;
  width: 54px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-prev:hover {
  background-color: rgb(206, 130, 15) !important;
}

.owl-next {
  position: absolute;
  right: -27px;
  padding: 11px 18px;
  background: #FFFFFF !important;
  border: 1px solid #BAB5B5 !important;
  border-radius: 100px;
  width: 54px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-next:hover {
  background-color: rgb(206, 130, 15) !important;
}

.homeFood {
  display: flex;
  overflow: hidden;
  background-size: cover;
  position: relative;
}
.homeFood .left_food {
  padding-top: 100px;
  position: absolute;
  left: calc((100% - 1140px) / 2 + 15px);
  top: 0;
  height: 100%;
}
@media (min-width: 1400px) {
  .homeFood .left_food {
    left: calc((100% - 1320px) / 2 + 15px);
  }
}
.homeFood .--txt {
  color: rgb(255, 255, 255);
}
.homeFood .--txt span {
  color: rgb(255, 255, 255);
}
.homeFood .--txt h2 {
  margin-bottom: 33px;
  line-height: 57px;
  color: #FFFFFF;
  padding-top: 20px;
}
@media (max-width: 576px) {
  .homeFood .--txt h2 {
    line-height: 36px;
  }
}
.homeFood .--txt p {
  opacity: 0.8;
}
.homeFood .--pattern {
  position: absolute;
  bottom: 0;
  transform: translate(-50%, 0);
  left: 50%;
}
@media (max-width: 576px) {
  .homeFood .--pattern {
    display: none;
  }
}
.homeFood .nav_arrow_slick {
  transform: translate(-50%, -50%);
  left: 20%;
  top: 30%;
}
.homeFood .optionArrow_food {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  pointer-events: none;
}
.homeFood .optionArrow_food .point {
  display: flex;
  flex-flow: column;
}
.homeFood .optionArrow_food #current_slide_food {
  color: var(--yellow);
  font-size: 4rem;
  line-height: 1;
  font-family: "Philosopher";
}
.homeFood .optionArrow_food #total_slide_food {
  color: #fff;
  text-align: center;
}
@media (max-width: 640px) {
  .homeFood .left_food {
    position: relative;
    left: unset;
    padding-top: 60px;
    top: unset;
    height: auto;
    left: unset;
  }
  .homeFood .right_food .--filterImg img {
    width: 100px;
    height: 100px;
  }
  .homeFood .nav_arrow_slick {
    left: 30%;
  }
  .homeFood .--txt {
    text-align: center;
  }
  .homeFood .--txt p {
    text-align: justify;
  }
  .homeFood .--txt h2 br {
    display: none;
  }
}

.imgFood {
  height: 100%;
}
.imgFood .--slideItem {
  height: 100%;
}

.foodImg .--filterImg {
  position: relative;
}
.foodImg .--filterImg img {
  width: 250px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.foodImg .--filterImg:nth-child(2)::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 33, 35, 0.85);
}

.homeNews {
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0px 0 150px 0;
}
.homeNews .--title {
  margin-bottom: 3rem;
  font-family: "philosopher";
}
.homeNews .--title p {
  color: var(--yellow);
}
.homeNews .--title h2 {
  color: var(--green);
}
@media (max-width: 576px) {
  .homeNews .--title {
    margin: 0;
    padding: 0 20px;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .homeNews {
    padding: 30px 0;
    margin-bottom: 3rem;
  }
}

.latestNew .--featuredImg {
  min-height: 600px;
  height: 60vh;
}
.latestNew .--featuredImg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 576px) {
  .latestNew .--featuredImg {
    margin: 50px 0;
    min-height: unset;
    height: unset;
  }
  .latestNew .--featuredImg img {
    height: auto;
  }
}
.itemNews {
  display: flex;
  margin-bottom: 24px;
  height: 184px;
}
.itemNews .--img {
  margin-right: 24px;
  flex: 0 0 30%;
  width: 30%;
  overflow: hidden;
}
.itemNews .--img a img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
.itemNews .--img a img:hover {
  transform: scale(1.5);
}
@media (max-width: 576px) {
  .itemNews .--img a img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .itemNews .--img {
    margin: 0;
  }
}
.itemNews .--txt p {
  line-height: 20px;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.itemNews .--txt h5 {
  font-weight: 500;
  font-size: 20px;
  color: var(--green);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.itemNews .--txt h5:hover {
  color: #ED5822;
}
.itemNews .--txt a {
  text-decoration: none;
  color: var(--yellow);
  font-size: 14px;
  transition: color 0.5s ease;
}
.itemNews .--txt a:hover {
  color: var(--green);
}
@media (max-width: 576px) {
  .itemNews .--txt {
    margin-top: 20px;
  }
}
.itemNews:last-child {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .itemNews {
    height: auto;
  }
  .itemNews .--img {
    flex: 0 0 100%;
    width: 100%;
  }
  .itemNews .--txt {
    text-align: center;
  }
  .itemNews .--txt p {
    text-align: justify;
  }
}

.articlePic {
  position: relative;
}
.articlePic .--date {
  position: absolute;
  background-color: #CE820F;
  padding: 8px 8px 0;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 0;
  right: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.articlePic .--date h5 {
  font-weight: 600;
  font-size: 22px;
}
.articlePic .--date p {
  font-weight: 400;
  font-size: 10px;
}

footer {
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 180px;
  margin-top: -100px;
  position: relative;
}
footer .--left {
  width: 50%;
  margin-bottom: 100px;
}
footer .--right {
  width: 50%;
}
@media (max-width: 576px) {
  footer .--right {
    width: 100%;
    margin-bottom: 50px;
  }
}
footer .--copyRight {
  position: absolute;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.16);
  bottom: 0;
  color: black;
  left: 0;
  right: 0;
  padding: 9px 0 13px 0;
}
footer .--copyRight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-size: 13px;
  padding-left: 2px;
}
@media (max-width: 640px) {
  footer {
    margin-top: 0;
    overflow: hidden;
  }
  footer .--left {
    width: 100%;
    margin-bottom: 0;
  }
}

.footerTitle {
  font-family: "philosopher";
  font-size: 60px;
  margin-bottom: 60px;
}
.footerTitle span {
  color: var(--yellow);
  font-size: 56px;
  line-height: 1.2;
  white-space: nowrap;
}
.footerTitle span br {
  display: none;
}
@media (max-width: 640px) {
  .footerTitle span {
    font-size: 46px;
  }
  .footerTitle span br {
    display: block;
  }
}
.footerTitle h2 {
  margin: 0;
  line-height: 1;
}
.footerTitle p {
  font-family: "philosopher";
  color: rgb(255, 255, 255);
  font-size: 64px;
  line-height: 72px;
}

.footerInfo {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 15px;
  margin-left: 200px;
}
.footerInfo .--contactUs {
  padding-top: 30px;
}
.footerInfo .--contactUs ul {
  padding: 0;
  list-style: none;
}
.footerInfo .--contactUs label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-right: 20px;
  width: 35px;
}
.footerInfo .--contactUs input {
  border-radius: 16px;
  border: 1px solid #C59A2E;
  padding: 5px;
  margin-bottom: 10px;
  padding: 5px 10px 5px 15px;
  color: #fff;
  background: rgba(6, 6, 6, 0.168627451);
  width: 100%;
}
.footerInfo .--contactUs input:focus {
  outline: none;
}
.footerInfo .--contactUs input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3294117647);
}
.footerInfo .--contactUs input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3294117647);
}
.footerInfo .--contactUs input::placeholder {
  color: rgba(255, 255, 255, 0.3294117647);
}
.footerInfo .--contactUs a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}
.footerInfo .--contactUs a:hover {
  color: rgba(255, 255, 255, 0.75);
}
.footerInfo .--btn {
  margin-top: 60px;
}
.footerInfo .--btn button {
  background: linear-gradient(264.07deg, #FFC20E -9.43%, #FDB910 7.36%, #F99F15 35.14%, #F2771C 70.25%, #ED5822 93.45%, #8D5B3D 123.12%, #005F65 150.93%, rgba(3, 85, 92, 0.81) 176.06%, #0D3540 206.64%, #112935 223.53%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  color: #FFFFFF;
  padding: 4px 15px;
  transition: all 0.4s ease-in-out;
}
.footerInfo .--btn button:hover {
  background: linear-gradient(90deg, #FFC20E -9.43%, #FDB910 7.36%, #F99F15 35.14%, #F2771C 70.25%, #ED5822 93.45%, #8D5B3D 123.12%, #005F65 150.93%, rgba(3, 85, 92, 0.81) 176.06%, #0D3540 206.64%, #112935 223.53%);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 576px) {
  .footerInfo .--btn {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .footerInfo {
    margin: 0 0 80px 0;
    padding: 0 20px;
  }
}

.footerBrand .--title {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 4.5px 21.5px;
  background-clip: border-box;
  border: 1px solid rgb(193, 150, 45);
  border-radius: 100px;
  margin-bottom: 16px;
}
.footerBrand .--title p {
  text-transform: uppercase;
  background: -webkit-linear-gradient(90deg, #C1962D 0%, #FFE66D 26.69%, #C59A2E 69.17%, #FADF66 96.77%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
.footerBrand .--title:after {
  content: "";
  width: 370px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  position: absolute;
  left: 180px;
}
.footerBrand .--listing {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.footerBrand .--listing li {
  flex: 0 0 25%;
  width: 25%;
  margin-bottom: 16px;
  list-style: none;
}
.footerBrand .--listing li .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
}
.footerBrand .--listing img {
  max-width: 100px;
}
@media (max-width: 640px) {
  .footerBrand .--listing li {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.wpcf7-response-output {
  display: none;
}

.sent .wpcf7-response-output {
  display: block !important;
}/*# sourceMappingURL=style.css.map */