@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Forum&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  /*** theme colors ***/
  --theme-color: #bb8c7b;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: "Sarabun", sans-serif;
  overflow-x: hidden;
}

.theme-btn {
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
  padding: 17px 37px;
  border-radius: 10px;
  font-family: "Roboto";
  font-size: 15px;
  display: inline-block;
}

.theme-btn:hover {
  color: #f2efe8;
  background: var(--theme-color);
}

.theme-btn-2 {
  color: #fff;
  border: 1px solid #fff;
  padding: 17px 37px;
  border-radius: 10px;
  font-family: "Roboto";
  font-size: 15px;
  display: inline-block;
  background: transparent;
  transition: 0.2s all;
  font-size: 17px;
  font-weight: 600;
}

.theme-btn-2:hover {
  background-color: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
}

ul {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Forum", serif;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.2s all;
}

a:hover {
  color: #000;
}

.custom-rotate img {
  transition: transform 0.3s ease;
}

.autoRotate {
  animation: autoShowRotate;
  animation-timeline: view();
}

@keyframes autoShowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.autoMoveY {
  animation: autoMover 3.5s linear infinite;
}

@keyframes autoMoverY {
  50% {
    transform: translateY(-20px);
  }
}

.autoMoveX {
  animation: autoMoverX 3.5s linear infinite;
}

@keyframes autoMoverX {
  50% {
    transform: translateX(-20px);
  }
}

/* Header CSS Start */

.serv-a {
  position: relative;
  cursor: pointer;
}

.serv-a a {
  padding-bottom: 28px;
}

li.serv-a a i {
  padding-left: 11px;
}

.nav-dropdown {
  position: absolute;
  top: 50px;
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  text-align: left;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.nav-dropdown ul {
  display: block;
  background-color: var(--theme-color);
}

.serv-a:hover .nav-dropdown {
  visibility: visible;
  opacity: 1;
  clip: inherit;
  -webkit-transform: scaleY(1);
  -khtml-transform: scaleY(1);
  transform: scaleY(1);
}

.nav-dropdown ul li {
  transition: 0.2s all;
}

.nav-dropdown ul li a {
  padding: 10px 20px;
  width: 200px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}

.nav-dropdown ul li:hover {
  background-color: #000;
}

.nav-dropdown ul li:hover a {
  color: var(--theme-color);
}

.top-bar {
  background: var(--theme-color);
  padding: 6px 0;
}

.social-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-call a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
}

.social-call a img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

/* Header CSS End */

.offcanvas,
.offcanvas-btn {
  display: none;
}

a.btn.offcanvas-btn {
  display: none;
}

.closebtn {
  position: absolute;
  right: 20px;
  top: 30px;
  cursor: pointer;
}

.closebtn i {
  color: #000;
  font-size: 30px;
}

.social-top {
  display: flex;
  align-items: center;
  gap: 9px;
}

.social-top h6 {
  margin: 0;
  color: #fff;
  font-family: "Roboto";
  font-weight: 400;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-icons a i {
  color: #fff;
  font-size: 17px;
}

.logo {
  width: 21%;
}

.navigation {
  width: 68%;
}

.navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
  list-style: none;
}

.navigation ul li a {
  color: #222;
  font-weight: 300;
}

.navigation ul li a.active {
    color: var(--theme-color);
}

.navigation ul li a:hover {
  color: var(--theme-color);
}

.search-bar {
  width: 11%;
  text-align: right;
}

.head-wrap {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.logo img {
  width: 96%;
}

.search-bar img {
  filter: brightness(0) saturate(100%) invert(68%) sepia(28%) saturate(424%)
    hue-rotate(330deg) brightness(83%) contrast(88%);
  width: 26px;
  height: 26px;
  object-fit: scale-down;
}

section.banner-section {
  padding: 65px 0;
}

.banner-wrap {
  text-align: center;
  position: relative;
  z-index: 1;
}

.banner-wrap h6 {
  text-transform: uppercase;
  color: var(--theme-color);
  font-size: 14px;
  font-weight: bold;
  font-family: "Sarabun";
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.banner-wrap h2 {
  font-size: 55px;
  text-transform: capitalize;
  line-height: 57px;
  color: #222222;
  margin-bottom: -20px;
}

.banner-wrap h1 {
  font-size: 75px;
  color: var(--theme-color);
  text-transform: capitalize;
  line-height: 1.4285714285714em;
  letter-spacing: 2px;
}

.banner-map {
  position: absolute;
  top: 3%;
  left: 2%;
  z-index: -1;
}

.banner-map img {
  width: 80% !important;
}

.banner-wrap img {
  width: 80%;
  margin: 0 auto;
  display: block;
}

.banner-wrap .theme-btn {
  margin-top: -16px;
}

.anim-piece {
  position: absolute;
  left: 48%;
  transform: translate(-50%, -50%);
  bottom: -14%;
  z-index: -1;
}

.anim-piece img {
  width: 150px;
  height: 156px;
}

/* About Section Start */

section.about-section {
  padding: 50px 0 60px;
}

.about-right h3 {
  font-size: 26px;
  color: var(--theme-color);
  margin-bottom: 12px;
}

.about-right p {
  color: #656565;
  line-height: 29px;
  margin-bottom: 20px;
}

.about-right a {
  display: inline-block;
  transition: 0.3s all;
}

.about-inner-section {
  padding-top: 80px !important;
}

.about-inner-section .about-right {
  width: 95%;
}

.about-right-inner {
  margin: 20px 0 0 36px;
}

.about-right-inner a {
  margin-left: 64px;
}

.about-right a:hover {
  transform: skew(-10deg);
}

.about-left img {
  width: 66%;
  border-radius: 260px 260px 0 0;
  margin: 0 auto;
  display: block;
}

.about-left {
  position: relative;
}

.about-left-piece {
  position: absolute;
  width: 486px;
  max-width: 568px;
  height: 750px;
  background: #eaeaea;
  z-index: -1;
  border-radius: 0 300px 0 300px;
  top: -50px;
  left: -90px;
}

.about-left-wrap {
  padding: 56px 40px 60px 40px;
  background: var(--theme-color);
  border-radius: 0 141px 0 0;
  width: 56%;
  right: 0;
  position: absolute;
  top: 64%;
  transform: translate(0, -50%);
}

.about-left-wrap h4 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 20px;
}

.about-left-wrap p {
  color: #fff;
  width: 100%;
  line-height: 29px;
}

.inner-banner-section {
  background-image: url(../images/banner-img.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 180px 0px 180px 0px !important;
  position: relative;
}

.about-other-wrap {
  margin-top: 150px;
}

.inner-banner-section h1 {
  color: #fff;
  text-align: left;
}

.inner-banner-section::before {
  content: "";
  background-color: #020101a1;
  opacity: 0.5;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  position: absolute;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

/* About Section End */

/* Counter Section Start */

section.counter-section {
  padding: 75px 0 80px;
}

.counter-wrap {
  padding: 100px 50px;
  background-image: url(../images/timer-bg.png);
  background-size: cover;
  background-position: center center;
}

.counter-wrap h2 {
  font-size: 60px;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.counter-boxes {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.counter-box {
  padding: 15px 0;
  margin: 0 11px;
  background-color: transparent;
  text-align: center;
  background-image: linear-gradient(180deg, #222222 0%, #22222200 100%);
  width: 100%;
}

.counter-box h3 {
  color: #fff;
  font-size: 100px;
  margin: 0;
  line-height: 100px;
}

.counter-box h5 {
  color: #fff;
  font-size: 35px;
  margin: 0;
}

/* Counter Section End */

/* Blog Section Start */

section.blog-section {
  padding: 0 0 50px;
}

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

.blog-head h6 {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--theme-color);
  font-size: 14px;
  font-family: "Sarabun";
  margin-bottom: 10px;
}

.blog-head h2 {
  font-size: 60px;
  color: #222222;
  margin: 0;
}

.blog-head p {
  color: #656565;
  width: 49%;
  margin: 0 auto 30px;
  line-height: 30px;
}

.blog-box img {
  width: 100%;
  /* height: 400px; */
  object-fit: cover;
  margin-bottom: 20px;
}

.blog-box h5 {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--theme-color);
  font-size: 14px;
  font-family: "Sarabun";
  margin-bottom: 10px;
}

.blog-box h4 {
  margin-bottom: 15px;
  font-size: 26px;
  color: #222222;
}

.blog-box p {
  color: #656565;
  margin-bottom: 20px;
}

.blog-box a img {
  height: auto;
  width: auto;
  margin: 0;
}

.blog-box a {
  display: inline-block;
  transition: 0.3s all;
}

.blog-box a:hover {
  transform: skew(-10deg);
}

.blog-inner-section {
  padding-top: 50px !important;
}

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

.view-btn {
    position: relative;
}

.view-btn .anim-piece {
    top: -10%;
}

.view-btn .anim-piece img {
    width: 130px;
    height: 136px;
}

/* Blog Section End */

/* Product Section Start */

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

.product-box img {
  width: 100%;
  height: 415px;
  background: #e7e7e7;
}

.product-box h4 {
  text-align: center;
  padding: 10px;
  background: #f5f7fd;
  font-family: "Raleway", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
}

section.merchandise-section {
  padding: 50px 0 65px;
}

.product_slider {
  padding-bottom: 40px;
  position: relative;
}

.product_slider .slick-dots {
  bottom: -10px;
  display: flex !important;
  justify-content: center;
  padding: 0;
  list-style: none;
}

.product_slider .slick-dots li {
  width: 8px;
  height: 3px;
  background: #ccc;
  margin: 0 4px;
  transition: 0.2s all;
}

.product_slider .slick-dots li.slick-active {
  background: #000;
  width: 20px;
}

.product_slider .slick-prev,
.product_slider .slick-next {
  width: 40px;
  height: 40px;
  z-index: 10;
  background: transparent;
  border: none;
  font-size: 0;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  transition: 0.2s all;
}

.product_slider .slick-prev {
  left: -70px;
}

.product_slider .slick-next {
  right: -70px;
}

.product_slider .slick-prev::before,
.product_slider .slick-next::before {
  content: "\f104";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #000;
  font-size: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s all;
}

.product_slider .slick-next::before {
  content: "\f105";
}

.product_slider .slick-prev:hover::before,
.product_slider .slick-next:hover::before {
  color: #000;
  background: var(--theme-color);
}

section.merchandise-section .slick-dots li button::before{
    content: unset;
}

section.merchandise-section .slick-dots li button {
    display: none;
}

/* Product Section End */

/* Contact Section Start */

section.contact-section {
  padding: 60px 0;
  background-image: url(../images/contact-bg.png);
  background-size: cover;
}

.contact-wrap {
  background-image: url(../images/foot-back.png);
  background-position: center right;
  background-size: cover;
  padding: 66px 66px 66px 66px;
}

.contact-wrap h2 {
  font-size: 55px;
  color: #fff;
  margin: 0 0 20px;
}

.contact-wrap form input,
.contact-wrap form select,
.contact-wrap form textarea {
  font-family: "Poppins", Sans-serif;
  font-size: 15px;
  text-transform: capitalize;
  background-color: #ffffff24;
  border: 0;
  border-radius: 0;
  width: 100%;
  padding: 13px 0px 14px 16px;
  margin-bottom: 17px;
  color: #ffffff;
  font-weight: 500;
  outline: none;
}

.contact-wrap form input::placeholder,
.contact-wrap form textarea::placeholder {
  color: #a6a7a5;
}

.contact-wrap form textarea {
  min-height: unset;
  height: 185px;
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
}

.select-wrapper::after {
  content: "\f0d7";
  font-family: "fontawesome";
  font-size: 15px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  top: 36%;
  transform: translateY(-50%);
  color: #fff;
}

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

.contact-wrap form input[type="number"]::-webkit-inner-spin-button,
.contact-wrap form input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contact-inner-section {
  margin: 50px 0;
}

/* Contact Section End */

/* Contact Section Start */

footer {
  background-color: var(--theme-color);
  padding: 83px 0px 63px;
}

.col1 img {
  width: auto;
  margin-bottom: 20px;
}

.col1 p {
  color: #f2efe8;
  width: 95%;
  margin: 0;
}

.col1 h4 {
  color: #fff;
  font-size: 20px;
  font-family: "Sarabun";
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 40px;
}

.col1 ul {
  list-style: none;
}

.col1 ul li {
  margin-bottom: 12px;
}

.col1 ul li a {
  color: #f2efe8;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 6px;
  display: inline-block;
}

.col1 ul li a:hover {
  opacity: 0.7;
}

.col1 ul li a::before {
  content: "";
  width: 0;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: 0.6s all;
}

.col1 ul li a::after {
  content: "";
  width: 0;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s all;
}

.col1 ul li a:hover:before,
.col1 ul li a:hover:after {
  width: 100%;
}

.col1 form input {
  border-radius: 6px;
  padding: 10px 0px 10px 16px;
  color: #f2efe8;
  background-color: #ffffff00;
  border: 1px solid #f2efe8;
  border-width: 0 0 3px 0;
  width: 100%;
  outline: none;
  margin-bottom: 24px;
}

.col1 form {
  margin-top: 40px;
}

.col1 form input::placeholder {
  color: #f2efe8;
}

.col1 form button {
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  line-height: 22px;
  font-family: "Roboto";
  background-color: #2a563100;
  color: #f2efe8;
  padding-bottom: 10px;
  border-bottom: 3px solid #f2efe8;
  transition: 0.2s all;
}

.col1 form button img {
  width: 16px;
  height: 16px;
  margin: 0;
  filter: brightness(0) invert(1);
}

.col1 form button:hover {
  color: #d9d6c3;
  border-color: #d9d6c3;
}

.col1 form button:hover img {
  filter: brightness(0) saturate(100%) invert(97%) sepia(20%) saturate(303%)
    hue-rotate(334deg) brightness(89%) contrast(89%);
}

/* Contact Section End */

/* Live Journey Page Start */

.live-journey .about-left img {
  height: 600px;
  object-fit: cover;
  object-position: left;
}

.live-journey {
  padding-bottom: 130px !important;
}

.live-journey .about-right {
  width: 84%;
}

/* Live Journey Page End */

/* Journey Tracking Page Start */

section.map-section {
  padding: 40px 0;
}

section.map-location-section {
  padding: 40px 0 80px;
  width: 75%;
  margin: 0 auto;
}

.map-loc-box {
  margin: 0 auto;
  padding: 20px 20px 20px 20px;
  border: 1px solid var(--theme-color);
  border-radius: 25px 25px 25px 25px;
  text-align: center;
  width: 89%;
}

.map-loc-box img {
  width: 30px;
  height: 40px;
  margin-bottom: 18px;
  filter: brightness(0) saturate(100%) invert(68%) sepia(28%) saturate(424%)
    hue-rotate(330deg) brightness(83%) contrast(88%);
}

section.map-location-section .row {
  gap: 20px 0;
}

.map-loc-box h4 {
  font-size: 26px;
  color: var(--theme-color);
  margin-bottom: 12px;
}

.map-loc-box p {
  color: #656565;
  line-height: 30px;
}

/* Journey Tracking Page End */

@media only screen and (max-width: 1400px) {
}
@media only screen and (max-width: 1200px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 991px) {
  .offcanvas-btn {
    font-size: 30px;
    color: #fff;
    background-color: var(--theme-color);
    padding: 12px;
    line-height: 24px;
    border-radius: 6px;
  }
  .offcanvas-btn:hover,
  .offcanvas-btn:active {
    background: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
    color: #fff !important;
  }
  .offcanvas,
  .offcanvas-btn {
    display: block !important;
  }
  .offcanvas {
    background-color: var(--theme-color);
  }
  .offcanvas-body {
    padding-top: 50px;
  }
  .navigation {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
}
@media only screen and (max-width: 576px) {
}
@media only screen and (max-width: 450px) {
}
@media only screen and (max-width: 370px) {
}
