@font-face {
  font-family: "DHF Story Brush";
  src: url("../webfonts/DHFStoryBrush.woff2") format("woff2"),
    url("../webfonts/DHFStoryBrush.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #222222;
  overflow-x: hidden;
  font-size: 13px;
}
p {
  font-size: 13px;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: #f44c28;
}

a:hover {
  color: #000;
  text-decoration: none;
}

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

:focus {
  outline: none !important;
  box-shadow: none !important;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f44c28;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top svg {
  font-size: 16px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #000;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
  box-shadow: 0 4px 10px -3px hsla(0deg, 0%, 75%, 0.5);
}
#header.fixed-top {
  height: 70px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  /*  max-height: 40px;*/
  height: 66px;
  transition: all 0.5s;
}
#header.fixed-top .logo img {
  height: 56px;
  transition: all 0.5s;
}

@media (max-width: 992px) {
  #header {
    height: 70px;
  }
}

.scrolled-offset {
  margin-top: 90px;
}

@media (max-width: 992px) {
  .scrolled-offset {
    margin-top: 90px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  font-size: 14px;
  color: #151515;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 500;
}

.navbar a.red-btn {
  color: #fff;
  padding: 4px 25px;
  border: none;
  height: 36px;
}
.navbar a.red-btn:hover {
  color: #fff;
}
.navbar a.red-btn span {
  margin: 0;
}

.navbar a svg,
.navbar a:focus svg {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a,
.navbar .navbar-nav li a.active {
  color: #f44c28;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 13px;
  text-transform: none;
  font-weight: 500;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #fff;
  background: #000;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #151515;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.png");
  /*background: url('../mp4/uia-2.mp4') no-repeat;
  background-size:cover;*/
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg-video {
  height: 100vh;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#hero .hero-container:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#hero .hero-logo {
  margin-bottom: 30px;
}
#hero .hero-logo img {
  height: 250px;
}

#hero h1 {
  margin: 0 0 30px 0;
  font-family: "DHF Story Brush";
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #aeaeae;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

#hero .btn-get-started {
  /*  font-family: "Montserrat", sans-serif;*/
  font-family: "DHF Story Brush";
  text-transform: uppercase;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 2px 14px;
  border-radius: 3px;
  margin: 10px;
  color: #fff;
  background: #f44c28;
  border: 1px solid #f44c28;
}

#hero .btn-get-started:hover {
  transition: 0.5s;
  background: transparent;
  color: #f44c28;
  border: 1px solid #f44c28;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    line-height: 22px;
  }
}

.arrows {
  width: 100%;
  height: 40px;
  margin-top: 28px;
}

.arrows div {
  stroke: #2994d1;
  fill: transparent;
  stroke-width: 1px;
  animation: arrow 2s infinite;
  -webkit-animation: arrow 2s infinite;
  margin-top: -12px;
}

@keyframes arrow {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes arrow /*Safari and Chrome*/ {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.arrows .a1 {
  animation-delay: -1s;
  -webkit-animation-delay: -1s; /* Safari 和 Chrome */
}

.arrows .a2 {
  animation-delay: -0.5s;
  -webkit-animation-delay: -0.5s; /* Safari 和 Chrome */
}

.arrows .a3 {
  animation-delay: 0s;
  -webkit-animation-delay: 0s; /* Safari 和 Chrome */
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: whitesmoke;
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}
.section-title span {
  font-family: "DHF Story Brush";
  color: #f44c28;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.5px;
  position: relative;
}
.section-title span:before {
  content: "";
  position: absolute;
  background-color: #f44c28;
  color: #f44c28;
  width: 44px;
  height: 2px;
  top: 15px;
  left: -54px;
}
.section-title span:after {
  content: "";
  position: absolute;
  background-color: #f44c28;
  color: #f44c28;
  width: 44px;
  height: 2px;
  top: 15px;
  right: -54px;
}

.section-title h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 0;
  color: #151515;
}

.section-title p {
  margin-bottom: 0;
  color: #aeaeae;
}

.section-title-w {
  text-align: center;
  padding-bottom: 25px;
}
.section-title-w span {
  font-family: "DHF Story Brush";
  color: #f44c28;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.5px;
  position: relative;
}
.section-title-w span:before {
  content: "";
  position: absolute;
  background-color: #f44c28;
  color: #f44c28;
  width: 44px;
  height: 2px;
  top: 15px;
  left: -54px;
}
.section-title-w span:after {
  content: "";
  position: absolute;
  background-color: #f44c28;
  color: #f44c28;
  width: 44px;
  height: 2px;
  top: 15px;
  right: -54px;
}

.section-title-w h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 0;
  color: #fff;
}

.section-title-w p {
  margin-bottom: 0;
  color: #aeaeae;
}

/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
#home {
  position: relative;
}
.home-banner {
  position: relative;
}
.home-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.home-banner .carousel-caption {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  left: 0;
  right: auto;
  top: 0;
  bottom: auto;
  width: 100%;
  height: 100%;
}
.home-banner .carousel-control-next,
.home-banner .carousel-control-prev {
  z-index: 3;
}
.home-banner {
  /*  height: 70vh;*/
  overflow: hidden;
}
.slider-video {
  height: 80vh;
  width: 100%;
}
.home-banner .carousel-item img {
}

.pattern-layer {
  background: url("../img/shape-1.png");
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 85px;
  background-repeat: repeat-x;
  animation: slide 100s linear infinite;
  -webkit-animation: slide 100s linear infinite;
  z-index: 4;
}
.pattern-layer-1 {
  background: url("../img/shape-1.png");
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 85px;
  background-repeat: repeat-x;
  animation: slide 100s linear infinite;
  -webkit-animation: slide 100s linear infinite;
  z-index: 4;
  transform: rotate(180deg);
}
.pattern-layer-0 {
  background: url("../img/shape-2.png");
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 85px;
  background-repeat: repeat-x;
  animation: slide 100s linear infinite;
  -webkit-animation: slide 100s linear infinite;
  z-index: 4;
}
.pattern-layer-01 {
  background: url("../img/shape-2.png");
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 85px;
  background-repeat: repeat-x;
  animation: slide 100s linear infinite;
  -webkit-animation: slide 100s linear infinite;
  z-index: 4;
  transform: rotate(180deg);
}
.slider-content span {
  font-family: "DHF Story Brush";
  color: #f44c28;
  letter-spacing: 1.5px;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  position: relative;
}
.slider-content span:before {
  content: "";
  position: absolute;
  background-color: #f44c28;
  color: #f44c28;
  width: 44px;
  height: 2px;
  top: 15px;
  left: -54px;
}
.slider-content span:after {
  content: "";
  position: absolute;
  background-color: #f44c28;
  color: #f44c28;
  width: 44px;
  height: 2px;
  top: 15px;
  right: -54px;
}
.slider-content h2 {
  font-size: 28px;
  margin-bottom: 25px;
}
.slider-content a {
  display: inline-flex;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
  background: whitesmoke;
}
.about .image {
  padding: 15px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background: #fff;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.about .content ul i {
  font-size: 24px;
  padding: 2px 6px 0 0;
  color: #f44c28;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.title-header span {
  font-family: "DHF Story Brush";
  color: #f44c28;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.5px;
  position: relative;
}

.title-header span:after {
  content: "";
  position: absolute;
  background-color: #f44c28;
  color: #f44c28;
  width: 44px;
  height: 2px;
  top: 15px;
  right: -54px;
}
.title-header h2.title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 0;
  color: #151515;
  text-transform: capitalize;
}
.text-base-skin {
  font-family: "DHF Story Brush";
  font-size: 20px;
  letter-spacing: 1.5px;
  color: #f44c28;
}
.featured-icon-box {
  display: flex;
}
.featured-title {
  padding-right: 40px;
}
.ind-map {
  margin-right: 15px;
}
.ind-map img {
  width: 50px;
  -webkit-filter: brightness(0) saturate(100%) invert(52%) sepia(132%)
    saturate(411%) hue-rotate(-44deg) brightness(96%) contrast(111%);
  filter: brightness(0) saturate(100%) invert(52%) sepia(132%) saturate(411%)
    hue-rotate(-44deg) brightness(96%) contrast(111%);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.whitesmoke-bg {
  background: whitesmoke !important;
}
.pos-rel {
  position: relative;
}
.services {
  background: url("../img/services-bg.jpg") no-repeat top center;
}
.services:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.services .container {
  position: relative;
}

.services .icon-box {
  background: #fff;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.services .icon-box h4 {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 5px;
}

.services .icon-box svg {
  background: #fff;
  font-size: 36px;
  padding: 20px;
  color: #f44c28;
  width: 40px;
  height: 40px;
  margin-top: -48px;
  border-radius: 100%;
}

.services .icon-box p {
  font-size: 13px;
  text-align: center;
  color: #5c5c5c;
}

.services .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 18px 12px 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #555555;
  transition: all 0.3s ease-in-out;
  margin: 0 4px 10px 4px;
  background: whitesmoke;
  border-radius: 4px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #f44c28;
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #f44c28;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #f44c28;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #f44c28;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonial
--------------------------------------------------------------*/
.testimonial {
  background: url(../img/testimonials-bg.jpg) no-repeat bottom center;
  background-size: cover;
  position: relative;
  color: #fff;
}
.testimonial:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
}
.container {
  position: relative;
}
.testimonial .owl-nav {
  display: none;
}
.testimonial .section-title {
  padding-bottom: 0;
}
.testimonial .item {
  padding: 0 5px;
}
.testimonial .content {
  background-color: #fff;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 30px 30px 25px 30px;
  border-radius: 4px;
  margin-bottom: 20px;
  margin-top: 30px;
  border-radius: 4px;
  color: #000;
}

.testimonial .content p {
  font-size: 13px;
  margin-bottom: 15px;
}
.testimonial .content .rating-icon i,
.testimonial .content .rating-icon svg {
  color: #f8b81f;
  font-size: 12px;
}
.testimonial .author-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.testimonial .thumb {
  margin-right: 0;
  margin-top: -50px;
  position: absolute;
  right: 20px;
  top: 52px;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
  border-radius: 100%;
}
.testimonial .thumb img {
  border-radius: 50%;
  width: 94px !important;
  height: 94px;
  object-fit: cover;
  object-position: center;
  border: 4px solid #fff;
}
.testimonial .author-info .info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.testimonial .author-info .info .title {
  margin-bottom: 0;
}
.testimonial .author-info .info .subtitle {
  font-size: 12px;
  font-style: italic;
}

.testimonial .owl-theme .owl-dots .owl-dot.active span,
.testimonial .owl-theme .owl-dots .owl-dot:hover span {
  background: #f44c28;
}
.testimonial .owl-nav {
  display: none;
}
.testimonial .owl-dots {
  margin-top: 30px;
}
.author-rating {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.quotes-1 img {
  width: 30px !important;
  opacity: 0.5;
}
/*--------------------------------------------------------------
# Popular Tour
--------------------------------------------------------------*/
.popular-tour {
  background: url("../img/popular-tour-bg.png") no-repeat center top;
  padding: 60px 0;
  position: relative;
}
.popular-tour:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
}

.popular-tour .member {
  margin-bottom: 20px;
  overflow: hidden;
  background: transparent;
  border-radius: 5px;
}
.popular-tour .member .member-info {
  padding: 0 15px;
}

.popular-tour .member .member-img {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  border: 4px solid #fff;
}

.popular-tour .member .social {
  position: absolute;
  left: 0;
  bottom: -100%;
  right: 0;
  height: 100%;
  opacity: 0;
  transition: bottom ease-in-out 0.4s;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.popular-tour .member .social a {
  transition: color 0.3s;
  color: rgba(255, 255, 255, 1);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.popular-tour .member .social a i {
  line-height: 0;
}

.popular-tour .member .social a:hover {
  color: #fff;
}

.popular-tour .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.popular-tour .member .member-info h4 {
  margin: 15px 0 5px 0;
  font-size: 28px;
  color: #fff;
  font-family: "DHF Story Brush";
  letter-spacing: 1.5px;
  text-align: center;
}

.popular-tour .member .member-info span {
  display: block;
  font-size: 13px;

  font-weight: 400;
  margin-bottom: 10px;
  color: #f44c28;
}

.popular-tour .member .member-info p {
  font-size: 13px;
  line-height: 1.4;
  color: #000;
}

.popular-tour .member:hover .social {
  bottom: 0;
  opacity: 1;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  border-radius: 5px;
  background: #fff;
}

.faq .faq-list a {
  display: block;
  background: #f5f5f5;
  position: relative;
  font-family: #f44c28;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  padding-right: 25px;
  cursor: pointer;
  padding: 15px;
}
.faq .faq-list a[aria-expanded="true"] {
  border-bottom: 2px solid #f44c28;
  margin-bottom: 15px;
}
/*.faq .faq-list a + .faq-ans {
  padding-bottom: 15px;
}*/

.faq .faq-list svg {
  font-size: 16px;
  position: absolute;
  right: 15px;
  top: 15px;
}
.faq .faq-list p {
  padding: 0 15px 10px 15px;
}
.faq .faq-list p {
  margin-bottom: 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #f44c28;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.faq-contact {
  position: relative;
}
.camera-pic {
  position: absolute;
  bottom: 25px;
  left: 25px;
}
.faq-contact:before {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  background: url("../img/Plane_vector_img.png") no-repeat right top;
  width: 241px;
  height: 156px;
}
.faq-contact .title-header h2.title {
  font-size: 22px;
}
.contact-form {
  /*  box-shadow: 0 8px 20px 0 rgb(0 0 0 / 10%);*/
}
.contact-form .form-group {
  margin-bottom: 15px;
}
.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #f44c28;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  padding: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 13px;
}

.contact .php-email-form input {
  height: 40px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 80px;
  resize: none;
}

.contact .php-email-form button[type="submit"] {
  background: #f44c28;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  font-size: 14px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #000;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 40px 0;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*----------------------------------------------------
Gallery
-----------------------------------------------------*/

.clear:after,
.clear:before {
  content: "";
  display: table;
  clear: both;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  border: 10px solid #fff;
  width: calc(100% - 50px);
  margin: 60px auto 0;
}

.gallery a {
  display: block;
  text-decoration: none;
  width: 25%;
  overflow: hidden;
  outline: none;
}

.gallery a img {
  height: 100%;
  transform: scale(1, 1);
  transition: all 300ms ease;
}

.gallery a img:hover {
  transform: scale(1.1, 1.1);
}

.bg {
  width: 100%;
  height: 200px;
  background-size: cover;
  transform: scale(1, 1);
  transition: all 300ms ease;
}

.bg:hover {
  transform: scale(1.1, 1.1);
}

@media (max-width: 991px) {
  .gallery a {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .gallery a {
    width: 100%;
  }

  .bg {
    height: 300px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 13px;
  background: url("../img/footer-bg.jpg") no-repeat bottom center;
  background-size: cover;
  position: relative;
}
#footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
#footer .footer-top,
#footer .copyright {
  position: relative;
  z-index: 8;
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #000;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #f44c28;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #0d58ba;
}

#footer .footer-top {
  padding: 75px 0 0 0;
  /*border-bottom: 1px solid rgba(255,255,255,.2);
    border-top: 1px solid rgba(255,255,255,.2);*/
}
#footer .footer-top .container {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#footer .footer-top .footer-contact {
  margin-bottom: 20px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #f44c28;
}

#footer .footer-top .footer-contact p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
#footer .footer-top .footer-contact p strong {
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
  margin-top: 25px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0 0 0 10px;
  margin: 0;
}

#footer .footer-top .footer-links ul svg {
  padding-right: 10px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ddd;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul li:hover a {
  text-decoration: none;
  color: #fff;
  margin-left: 4px;
  transition: 0.3s;
}
#footer .footer-top .footer-links ul li:hover svg {
  color: #fff;
}

#footer .footer-top .social-links {
  display: flex;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ccc;
  line-height: 1;
  padding: 10px;
  margin-right: 4px;
  border-radius: 4px;
  width: 30px;
  height: 30px;
  transition: 0.3s;
  opacity: 1;
}

#footer .footer-top .social-links a:hover {
  color: #000;
  text-decoration: none;
  opacity: 1;
  background: #fff;
}
#footer .footer-links {
  color: #fff;
}

#footer .copyright {
  text-align: center;
  padding: 15px 0;
  color: #ddd;
  font-size: 12px;
}
#footer .copyright strong {
  color: #fff;
  font-weight: 600;
}
.footer-logo img {
  width: 100%;
  padding-right: 25px;
}

@media (max-width: 768px) {
}

.booking-order {
  background: url("../img/travel-bg.svg") no-repeat top left;

  overflow: visible;
}
.booking-order .container {
  background: url("../img/vector-2.png") no-repeat bottom right;
  padding-bottom: 60px;
}

.booking-order .container {
  position: relative;
  z-index: 5;
}

.front-booking-form {
  background: #fff;
  box-shadow: 0px 0px 35px 0px rgb(0 0 0 / 7%);
  margin-top: -150px;
  border-radius: 5px;
}
.front-booking-form h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
.front-booking-form label {
  margin-bottom: 5px;
}
.front-booking-form button {
  height: 38px;
  font-weight: 500;
}

.wwa-content {
  display: flex;
}
.red-btn,
.red-btn:focus,
.red-btn:active {
  background: #f44c28;
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
  position: relative;
  font-weight: 600;
}
/*.red-btn:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: #40e3e7;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 4px;
}  
.red-btn:hover:after {
    left: 0;
    width: 100%;
    z-index: 0;
}*/
.red-btn:hover {
  background: #000;
  color: #fff;
}
.feature-block-one .inner-box {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0px 15px 25px 0px rgb(0 0 0 / 8%);
}
.feature-block-one .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
}

figure {
  margin: 0px;
}

.feature-block-one .inner-box .image-box img {
  width: 100%;
  transform: scale(1.05);
  transition: all 500ms ease;
}
.feature-block-one .inner-box .lower-content {
  position: relative;
  display: block;
  padding: 47px 15px 13px 15px;
}
.feature-block-one .inner-box .lower-content .icon-box {
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0px 15px 20px 0px rgb(0 0 0 / 6%);
}

.feature-block-one .inner-box .lower-content .icon-box {
  color: #ff7c5b;
}
.feature-block-one .inner-box .lower-content h4 {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
}
.feature-block-one .inner-box .image-box::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.feature-block-one .inner-box:hover {
  background: #ff7c5b;
}
.feature-block-one .inner-box:hover .image-box::before {
  -webkit-animation: circle 0.95s;
  animation: circle 0.95s;
}
.feature-block-one .inner-box:hover .image-box img {
  transform: scale(1);
}
.feature-block-one .inner-box:hover .lower-content .icon-box {
  background: #ff7c5b;
  box-shadow: none;
  color: #fff;
}
.feature-block-one .inner-box:hover .lower-content h4 {
  color: #fff;
}

.bb-links::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: "";
}
.glightbox-clean .gslide-description {
  display: none;
}

.form-control,
.form-select {
  font-size: 13px;
  height: 38px;
}
.form-control:focus,
.form-select:focus {
  border: 1px solid #000;
}
.navbar-toggler {
  border: none;
}

.inner-banner {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}
.inner-banner:before {
  content: "";
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ip-heading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ip-heading span {
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.ip-heading span:before {
  content: "";
  position: absolute;
  background-color: #fff;
  color: #fff;
  width: 44px;
  height: 2px;
  top: 20px;
  left: -54px;
}
.ip-heading span:after {
  content: "";
  position: absolute;
  background-color: #fff;
  color: #fff;
  width: 44px;
  height: 2px;
  top: 20px;
  right: -54px;
}
.tours-function {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  width: 80%;
}
.tf-row {
  display: flex;
  margin-bottom: 25px;
}
.tf-icon {
  width: 60px;
  height: 60px;
  background: #f44c28;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.tf-icon svg {
  color: #fff;
  font-size: 24px;
}
.tf-content {
  width: calc(100% - 75px);
}
.tf-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.counter-block {
  background: url("../img/4.png") no-repeat center center;
  min-height: 300px;
  position: relative;
  background-size: cover;
  color: #fff;
}
.counter-block:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bm-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.bm-box h4 {
  font-size: 18px;
}
.bm-box .counter {
  background: #f44c28;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}
.contact-icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 10px 60px rgba(28, 35, 31, 0.07);
  box-shadow: 0px 10px 60px rgba(28, 35, 31, 0.07);
  border-radius: 12px;
  background-color: #fff;
  padding: 25px;
  height: 100%;
}
.contact-icon-box .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 28px;
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
}
.contact-icon-box .icon svg {
  font-size: 24px;
  color: #f44c28;
}
.contact-icon-box .text h4.title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}
.contact-icon-box .text p {
  font-size: 14px;
  word-break: break-word;
}

.contact-form-wrapper {
  -webkit-box-shadow: 0px 10px 60px rgba(28, 35, 31, 0.07);
  box-shadow: 0px 10px 60px rgba(28, 35, 31, 0.07);
  border-radius: 12px;
  background-color: #fff;
  padding: 40px;
}
.contact-form-wrapper h3.title {
  margin-bottom: 10px;
}
.contact-form-wrapper p {
  margin-bottom: 32px;
}
.cc-social-icon svg {
  font-size: 24px;
  color: #666;
  margin: 10px 10px 10px 0;
}
.cc-social-icon svg:hover {
  color: #f44c28;
}
.form_group {
  position: relative;
}
.contact-form-wrapper form.contact-form .form_control {
  margin-bottom: 10px;
}
form.contact-form .form_control {
  padding: 10px 25px;
  height: 60px;
  border: 1px solid rgba(28, 35, 31, 0.1);
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  width: 100%;
}

form.contact-form textarea.form_control {
  height: 150px;
  resize: none;
  padding: 15px 25px;
}

.destination-item {
  width: 100%;
  float: left;
  height: auto;
  position: relative;
  margin: 0 0 30px;
  overflow: hidden;
}
.destination-item a {
  display: block;
  border-radius: 5px;
  overflow: hidden;
}
.destination-item a::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 1));
  opacity: 0.4;
  z-index: 2;
  border-radius: 0 0 5px 5px;
  transition: all 0.5s ease;
}
.destination-item a:hover::before {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  transition: all 0.5s ease;
  opacity: 0.2;
}
.destination-item a img {
  width: 100%;
  height: auto;
}
.destination-item img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.destination-item:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}
.destination-item .info-overlay {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 30px;
}
.destination-item .info-overlay h4 {
  font-family: "DHF Story Brush";
  color: #fff;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 9;
}

.destination-item .info-overlay h3 {
  color: #fff;
  margin: 0;
  z-index: 3;
  position: relative;
  font-size: 28px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 34px;
}

.short-p {
  font-size: 16px;
  padding-right: 40px;
}
.brdr-img img {
  padding: 15px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background: #fff;
}

.bx-shadow-none {
  box-shadow: none;
}
.modalhead .btn-close {
  position: absolute;
  right: 15px;
  top: 5px;
}
.modalhead h2 {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.wcu-icons {
  text-align: center;
  background: #fff;
  padding: 10px 20px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  height: 100%;
}
.wcu-icons svg {
  color: #f44c28;
  font-size: 32px;
  margin-bottom: 10px;
}
.order-0 {
  order: 0;
}
.order-12 {
  order: 12;
}
.contactPage {
  position: relative;
}
.contactPage:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}

.timeline {
  position: relative;
  padding: 20px 0;
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline:before {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: 0;
  background-color: #e9ecef;
}

.timeline > .timeline-item {
  position: relative;
  margin-bottom: 20px;
}

.timeline > .timeline-item:after,
.timeline > .timeline-item:before {
  content: " ";
  display: table;
}

.timeline > .timeline-item:after {
  clear: both;
}

.timeline > .timeline-item > .timeline-panel {
  float: left;
  position: relative;
  width: 46%;
  padding: 20px;
  border: 1px solid #e9ecef;
  background: #f9f9f9;
  border-radius: 10px;
  /* box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05); */
}

.timeline > .timeline-item > .timeline-panel:before {
  content: " ";
  display: inline-block;
  position: absolute;
  top: 26px;
  right: -8px;
  border-color: transparent #e9ecef;
  border-style: solid;
  border-width: 8px 0 8px 8px;
}

.timeline > .timeline-item > .timeline-panel:after {
  content: " ";
  display: inline-block;
  position: absolute;
  top: 27px;
  right: -7px;
  border-color: transparent #f9f9f9;
  border-style: solid;
  border-width: 7px 0 7px 7px;
}

.timeline > .timeline-item > .timeline-badge {
  z-index: 10;
  position: absolute;
  top: 16px;
  left: 50%;
  width: 35px;
  height: 35px;
  margin-left: -20px;
  border-radius: 50% 50% 50% 50%;
  text-align: center;
  font-size: 1.2em;
  line-height: 35px;
  color: #fff;
  overflow: hidden;
  font-weight: 600;
}

.timeline > .timeline-item.timeline-inverted > .timeline-panel {
  float: right;
}

.timeline > .timeline-item.timeline-inverted > .timeline-panel:before {
  right: auto;
  left: -8px;
  border-right-width: 8px;
  border-left-width: 0;
}

.timeline > .timeline-item.timeline-inverted > .timeline-panel:after {
  right: auto;
  left: -7px;
  border-right-width: 7px;
  border-left-width: 0;
}

.timeline-badge.primary {
  background-color: #7460ee;
}

.timeline-badge.success {
  background-color: #39c449;
}

.timeline-badge.warning {
  background-color: #ffbc34;
}

.timeline-badge.danger {
  background-color: #f62d51;
}

.timeline-badge.info {
  background-color: #009efb;
}

.timeline-title {
  margin-top: 0;
  color: inherit;
  font-weight: 600;
  font-size: 18px;
}

.timeline-body > p,
.timeline-body > ul {
  margin-bottom: 0;
}

.timeline-left:before {
  left: 27px;
}

.timeline-left > .timeline-item > .timeline-badge {
  left: 30px;
  top: 15px;
}

.timeline-left > .timeline-item > .timeline-panel {
  width: calc(100% - 60px);
}

.timeline-right:before {
  right: 30px;
  left: auto;
}

.timeline-right > .timeline-item > .timeline-badge {
  right: 5px;
  top: 9px;
  left: auto;
}

.timeline-right > .timeline-item > .timeline-panel {
  width: calc(100% - 60px);
}

.side-bx {
  border: 1px solid #e9ecef;
  border-radius: 10px;
}
ul.days-list {
  padding: 0;
}
ul.days-list li {
  display: flex;
  list-style: none;
  padding-left: 5px;
  align-items: self-start;
  margin-bottom: 5px;
}

.days-list > ul li svg {
  color: #f44c28;
  font-size: 16px;
  margin-right: 10px;
  margin-top: 2px;
}

ul.days-list li svg {
  color: #f44c28;
  font-size: 16px;
  margin-right: 10px;
  margin-top: 2px;
}
.pg-banner {
}
.pg-banner img {
  border-radius: 10px;
}
.tour-crousel .item {
  margin: 10px;
}
.tour-crousel .owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 42px;
  width: 42px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s linear;
  cursor: pointer;
}
.tour-crousel .owl-carousel .owl-nav button:hover {
  background: #f44c28;
}

.tour-crousel .owl-carousel .owl-nav button.owl-prev {
  left: -33px;
}

.tour-crousel .owl-carousel .owl-nav button.owl-prev {
  left: -40px;
}
.tour-crousel .owl-carousel .owl-nav button.owl-next {
  right: -33px;
}

.tour-crousel .owl-carousel .owl-nav button.owl-next {
  right: -40px;
}
.tour-crousel .owl-carousel .owl-nav button > span {
  display: none;
}
.tour-crousel .owl-carousel .owl-nav button.owl-prev:after {
  background: url(../img/pp-arrow-left.svg) no-repeat;
  background-size: 20px auto;
  background-position: center;
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tour-crousel .owl-carousel .owl-nav button.owl-next:after {
  background: url(../img/pp-arrow-right.svg) no-repeat;
  background-size: 20px auto;
  background-position: center;
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  justify-content: center;
  align-items: center;
  display: flex;
}
.tc-img {
  /* margin-bottom: 15px; */
  overflow: hidden;
  position: relative;
  border-radius: 10px 10px 0 0;
}
.tc-img:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
  opacity: 1;
}
.tc-img img {
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scale(1);
}
.tc-box:hover img {
  transform: scale(1.15);
}
.tc-box:hover:before {
  opacity: 0.2;
  transition: all 0.3s;
}
.tc-content {
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 0 0 10px 10px;
}
.tc-box:hover .tc-content {
  background: #f9f9f9;
}

.tour-reviews {
  display: flex;
  column-gap: 15px;
  align-items: center;
}

.under-maintenance img {
  width: 60%;
}
/* Testimonials */

.section-arrow--bottom-center:after {
  z-index: 1;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  content: "";
  position: absolute;
  bottom: -15px;
  width: 30px;
  height: 30px;
  border-right: 1px solid #262626;
  border-bottom: 1px solid #262626;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #262626;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6 {
  color: white !important;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-top: 0.45em;
  margin-bottom: 0.35em;
  color: #303133;
  font-family: Poppins;
  letter-spacing: -0.02em;
}

.section-sub-title {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: Poppins;
}

.section-arrow-primary-color.section-arrow--bottom-center:after {
  border-bottom-color: #0cb4ce;
}

.section-arrow-primary-color.section-arrow--bottom-center:after {
  background-color: #0cb4ce;
}

.special-heading.line span:before,
.special-heading.line span:after,
.footer.footer-minimal {
  border-top-color: #eaeaea;
}

.section-primary {
  padding: 75px 0px;
}

section {
  position: relative;
}

.testimonial-two {
  padding: 20px;
  border: 2px solid #0cb4ce;
  border-radius: 2px;
}

.testimonial-two blockquote p:before {
  font-family: "Playfair Display";
  font-size: 54px;
  color: #0cb4ce;
  font-weight: 900;
  left: 10px;
  color: #fff;
  content: "“";
  font-style: normal;
  line-height: 1;
  position: absolute;
  top: 5px;
  font-size: 45px;
}

.testimonial-two blockquote p:after {
  font-family: "Playfair Display";
  font-size: 54px;
  color: #0cb4ce;
  content: "”";
  font-size: 80px;
  font-style: normal;
  line-height: 1;
  position: absolute;
  bottom: -0.5em;
  right: 10px;
  font-weight: 900;
  transform: scaleY(-1);
  font-size: 45px;
  bottom: -5px;
}

.testimonial-two blockquote {
  padding: 15px 15px 15px 48px;
  position: relative;
}

.testimonial-two blockquote p:before,
.testimonial-two blockquote p:after {
  color: #0cb4ce;
  font-weight: 900;
}

.testimonial-two blockquote p {
  font-size: inherit;
  font-weight: inherit;
}

.testimonial-two .testimonial-author p {
  color: #999;
  margin: 0 0 0 25px;
  text-align: left;
}

.testimonial-two .testimonial-author strong {
  display: block;
  padding-top: 10px;
  margin-bottom: -2px;
  font-weight: 500;
  font-size: 14px;
  color: #444;
}

.testimonial-two .testimonial-author span {
  color: #666;
  display: block;
  font-size: 12px;
}

.testimonial-two .testimonial-author .testimonial-author-thumbnail {
  float: left;
  margin-right: 15px;
  width: auto;
}

.testimonial-two .testimonial-author img {
  max-width: 55px;
}

.testimonial-two .testimonial-author {
  margin-left: 12px;
  margin-bottom: 15px;
}

.testimonial-two .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0px;
}

.testimonial-two .owl-theme .owl-dots {
  text-align: left;
  margin-left: 50px;
}

.testimonial-two .owl-carousel .owl-dots .owl-dot.active span,
.testimonial-two .owl-carousel .owl-dots .owl-dot:hover span {
  border-color: #0cb4ce;
}

.testimonial-two .owl-carousel .owl-dots .owl-dot.active span:before,
.testimonial-two .owl-carousel .owl-dots .owl-dot:hover span:before {
  background-color: #0cb4ce;
}

.testimonial-three .testimonial-image {
  float: left;
  margin: 0 20px 0 0;
  width: 80px;
  height: 80px;
  border-radius: 100px;
  overflow: hidden;
}
.testimonial-three .testimonial-image img {
  max-width: 100%;
  height: auto;
}

.testimonial-three .testimonial-content {
  overflow: hidden;
}

.testimonial-three .testimonial-meta {
  position: relative;
  overflow: hidden;
  margin-left: 100px;
}

.testimonial-three .testimonial-name {
  display: block;
}

.testimonial-three .testimonial-three-col {
  padding-bottom: 35px;
}

.testimonial-three .testimonial-three-col {
  border-right-style: dashed;
  border-right-width: 1px;
  border-bottom-style: dashed;
  border-bottom-width: 1px;
  border-right-color: #ddd;
  border-bottom-color: #ddd;
  padding: 25px;
}

.testimonial-three .testimonial-three-col:hover {
  background-color: #f7f7f7;
}

.alternate-color .testimonial-three .testimonial-three-col:hover {
  background-color: white;
}

.testimonial-three.testimonial-three--col-two
  .testimonial-three-col:nth-child(2n) {
  border-right: none;
}

.testimonial-three.testimonial-three--col-two
  .testimonial-three-col:nth-last-child(-n + 2),
.testimonial-three.testimonial-three--col-two
  .testimonial-three-col:last-child {
  border-bottom: none;
}

.testimonial-three.testimonial-three--col-three
  .testimonial-three-col:nth-child(3n) {
  border-right: none;
}

.testimonial-three.testimonial-three--col-three
  .testimonial-three-col:nth-last-child(-n + 3),
.testimonial-three.testimonial-three--col-three
  .testimonial-three-col:nth-last-child(-n + 2),
.testimonial-three.testimonial-three--col-three
  .testimonial-three-col:last-child {
  border-bottom: none;
}

.testimonial-four .testimonial-author .testimonial-author-thumbnail {
  float: left;
  margin-right: 15px;
  width: auto;
}

.testimonial-four .testimonial-author img {
  max-width: 55px;
}

.testimonial-four .testimonial-author strong {
  display: block;
  padding-top: 10px;
  margin-bottom: -2px;
  font-weight: 500;
  font-size: 14px;
  color: #444;
}

.testimonial-four .testimonial-author span {
  color: #666;
  display: block;
  font-size: 12px;
}

.testimonial-four blockquote {
  padding: 30px;
  width: 100%;
  border-radius: 4px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 25px;
  border: 2px solid #eaeaea;
}

.testimonial-four blockquote::after {
  content: "";
  border-right: 2px solid #eaeaea;
  border-bottom: 2px solid #eaeaea;
  -webkit-transform: rotate(55deg);
  -moz-transform: rotate(55deg);
  -ms-transform: rotate(55deg);
  -o-transform: rotate(55deg);
  transform: rotate(55deg);
  position: absolute;
  left: 55px;
  bottom: -12px;
  width: 15px;
  height: 21px;
  overflow: hidden;
  background: white;
}

.testimonial-four .owl-theme .owl-nav.disabled + .owl-dots {
  position: absolute;
  float: right;
  text-align: right;
  right: 3px;
  bottom: 40px;
}

.testimonial-four .testimonial-author {
  position: relative;
  overflow: hidden;
}

.testimonial-four blockquote:hover::after {
  border-right: 2px solid #0cb4ce;
  border-bottom: 2px solid #0cb4ce;
}

.testimonial-four blockquote:hover {
  border: 2px solid #0cb4ce;
}

.testimonial-five blockquote p {
  font-weight: 400;
  font-size: 14.58px;
  line-height: 1.6;
  margin-bottom: 0;
}

.testimonial-five .testimonial-author .testimonial-author-thumbnail {
  float: left;
  margin-right: 15px;
  width: auto;
}

.testimonial-five .testimonial-author img {
  max-width: 55px;
}

.testimonial-five .testimonial-author strong {
  display: block;
  padding-top: 10px;
  margin-bottom: -2px;
  font-weight: 600;
  font-size: 13px;
}

.testimonial-five .testimonial-author span {
  color: #666;
  display: block;
  font-size: 12px;
}

.testimonial-five blockquote {
  padding: 32px 41px 37px;
  width: 100%;
  border-radius: 4px;
  position: relative;
  margin-bottom: 30px;
  border: 0px solid #eaeaea;
  background-color: #f7f7f7;
}

.testimonial-five blockquote::after {
  content: "";
  border-right: 0px solid #eaeaea;
  border-bottom: 0px solid #eaeaea;
  -webkit-transform: rotate(55deg);
  -moz-transform: rotate(55deg);
  -ms-transform: rotate(55deg);
  -o-transform: rotate(55deg);
  transform: rotate(55deg);
  position: absolute;
  left: 55px;
  bottom: -10px;
  width: 15px;
  height: 21px;
  overflow: hidden;
  background: #f7f7f7;
}

.testimonial-five.testimonial-light blockquote {
  background-color: white;
}

.testimonial-five.testimonial-light blockquote::after {
  background: white;
}

.testimonial-five .owl-theme .owl-nav.disabled + .owl-dots {
  position: absolute;
  float: right;
  text-align: right;
  right: 3px;
  bottom: 40px;
}

.testimonial-five .testimonial-author {
  position: relative;
  overflow: hidden;
}

.testimonial-five blockquote:before {
  content: "“";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 170px;
  color: rgba(189, 189, 189, 0.2);
  position: absolute;
  top: 10px;
  left: 20px;
}
.img-fluid {
}

/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  height: 100%;
  background: #fff;
  box-shadow: 0 8px 20px 0 rgb(0 0 0 / 10%);
  border-radius: 5px;
  overflow: hidden;
}

.blog .posts-list article + article {
  margin-top: 60px;
}

.blog .posts-list .post-img {
  /* max-height: 240px;
   overflow: hidden; */
  border-radius: 5px 5px 0 0;
}

.blog .posts-list .title {
  font-size: 15px;
  font-weight: 500;
  padding: 0;
  line-height: 1.4;
  height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog .posts-list .title a {
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
}

.blog .posts-list .meta-top {
  color: #467ab3;
  margin-bottom: 15px;
}

.blog .posts-list .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog .posts-list .meta-top ul li {
  margin-bottom: 5px;
  margin-right: 15px;
}
/* .blog .posts-list .meta-top ul li+li {
   padding-right: 20px;
 } */

.blog .posts-list .meta-top svg {
  font-size: 14px;
  margin-right: 5px;
  line-height: 0;
  color: #939393;
}

.blog .posts-list .meta-top a {
  color: #939393;
  font-size: 13px;
  display: inline-block;
  line-height: 1;
  margin-left: 5px;
}

.blog .posts-list .content {
  padding: 15px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.blog .posts-list .content p {
  min-height: 80px;
  overflow: hidden;
}

.blog .posts-list .read-more a {
  display: inline-block;
  color: #f44c28;
  transition: 0.3s;
  font-size: 13px;
  font-weight: 400;
  text-decoration: underline;
}

.blog .posts-list .read-more a:hover {
  color: var(--color-primary);
}

.blog .read-more {
  text-align: right;
}

.blog .read-more a:hover {
  text-decoration: none;
}

.blog .posts-list.cc-name .title {
  font-size: 16px;
  height: auto;
  margin-bottom: 0;
}

.blog article {
  position: relative;
}

.blog article a {
  color: #000;
}

.blog article .post-img img {
  transition: 0.5s;
}

.blog article:hover .post-img img {
  transform: scale(1.1);
}

.blog article:hover a {
  color: #f44c28;
}

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 20px;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 5px;
}

.blog .blog-details .post-img {
  margin: -20px -20px 20px -20px;
  overflow: hidden;
  /* height: 300px; */
}

.blog .blog-details .post-img img {
  width: 100%;
  border-radius: 5px 5px 0 0;
}

.blog .blog-details .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin-bottom: 15px;
}

.blog .blog-details .content {
}

.blog .blog-details .content h3 {
  font-size: 16px;
  margin-top: 0;
  font-weight: 500;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(27, 47, 69, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-bottom: 15px;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li + li {
  padding-left: 20px;
}

.blog .blog-details .meta-top svg {
  font-size: 14px;
  margin-right: 5px;
  line-height: 0;
  color: #939393;
}

.blog .blog-details .meta-top a {
  color: #939393;
  font-size: 13px;
  display: inline-block;
  line-height: 1;
  margin-left: 5px;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(27, 47, 69, 0.15);
}

.blog .blog-details .meta-bottom svg {
  color: #939393;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: #939393;
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: #000;
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 12px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 12px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li + li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 5px;
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  padding: 0;
  color: #000;
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgb(108 108 108 / 50%);
  margin-right: 5px;
}

.blog .post-author .social-links a:hover {
  color: #000;
}

.blog .post-author p {
  font-style: italic;
  margin-bottom: 0;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar .sidebar-title {
  font-size: 18px;
  font-weight: 500;
  padding: 0;
  margin: 0;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 25px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgb(0 0 0 / 20%);
  padding: 3px 10px;
  border-radius: 5px;
  position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type="text"]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #f44c28;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #000;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  font-size: 14px;
  color: #000;
  padding-left: 5px;
}

.blog .sidebar .categories ul a:hover {
  text-decoration: underline;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}

.blog .sidebar .recent-posts h4 a {
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #fff;
  font-size: 12px;
  padding: 6px 14px;
  margin: 0 3px 6px 0;
  display: inline-block;
  border-radius: 5px;
  transition: 0.3s;
  background: #000;
}

.blog .sidebar .tags ul a:hover {
  background: #f44c28;
  color: #fff;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(27, 47, 69, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;

  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(27, 47, 69, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(86, 184, 230, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(86, 184, 230, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(27, 47, 69, 0.8);
}

/*--------------------------------------------------------------
# Blog Home Pagination
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #38618e;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  background: #000;
  color: #fff;
}

.btn-close {
  position: absolute;
  top: 0;
  right: 20px;
}
.modal-body {
  padding: 0;
}
.timeline .timeline-panel .timeline-body li {
  list-style: none;
}
.timeline .timeline-panel .timeline-body li {
  position: relative;
  font-weight: 400;
}
.timeline .timeline-panel .timeline-body li:marker {
  display: none;
}
.timeline .timeline-panel .timeline-body li:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-style: normal;
  top: 0;
  left: -22px;
  background: transparent;
  color: #f44c28;
  width: 25px;
  height: 25px;
}

/*----------------------------------------------------*/
/*Responsive*/
/*----------------------------------------------------*/

@media (max-width: 1366px) {
  .home-banner {
    overflow: hidden;
  }
}

@media (max-width: 1279px) {
  section {
    padding: 40px 0;
  }
  .faq .faq-list a {
    font-size: 14px;
  }
  .about .image {
    padding: 10px;
  }
  .popular-tour .member .member-info h4 {
    margin: 10px 0 5px 0;
    font-size: 24px;
  }
  .feature-block-one .inner-box .lower-content h4 {
    font-size: 14px;
  }
  .slider-content h2 {
    font-size: 24px;
  }
  .navbar a,
  .navbar a:focus {
    font-size: 13px;
  }
  .front-booking-form h2 {
    font-size: 20px;
  }
  .title-header h2.title,
  .section-title-w h2,
  .section-title h2 {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  #header .navbar {
    display: flex;
    justify-content: space-between;
  }
  .front-booking-form {
    margin: 0;
  }
  .about .image {
    display: none;
  }
  .hLinks {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 999;
    background: #fff;
    width: 100%;
    padding: 10px 0;
  }
  .hLinks .navbar ul {
    box-shadow: 0 4px 10px -3px hsl(0deg 0% 75% / 50%);
  }
  .hLinks .navbar li {
    position: relative;
    display: flex;
    width: 100%;
    padding: 5px 10px;
    text-align: center;
    justify-content: center;
  }
  .under-maintenance img {
    width: 70%;
  }
}

@media (max-width: 767px) {
  .home-banner .carousel-caption {
    display: none;
  }
  .pattern-layer,
  .pattern-layer-1 {
    height: 48px;
  }
  .popular-tour {
    background: url(../img/popular-tour-bg.png) no-repeat center bottom;
    padding: 40px 0;
  }
  #footer .footer-top {
    padding: 20px 0 0 0;
  }
  #footer .footer-top .footer-links {
    margin-bottom: 10px;
  }
  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 10px 0;
  }
  .services {
    background: url(../img/services-bg.jpg) no-repeat bottom center;
  }
  .front-booking-form {
    margin-bottom: 30px;
  }
  #header {
    height: 60px;
  }
  #header.fixed-top {
    height: 50px;
  }
}

@media (max-width: 500px) {
  #header .logo img {
    height: 38px;
  }
  #header.fixed-top .logo img {
    height: 34px;
  }
  .navbar a.red-btn {
    padding: 3px 18px;
    border: none;
    height: 34px;
  }
}
