@charset "UTF-8";
:root{
  --main-color : #ff8e00;
  --theme-color : var(--main-color);
  --second-color : #000000;
  --body-font: "Poppins", sans-serif;
  --heading-font: "Google Sans", sans-serif;
  --white-color: #ffffff;
}

body {
  font-family: var(--body-font);
  color: #555;
  font-size: 16px;
  line-height: 1.875;
  font-weight: 500;
  overflow-x: hidden;
}


.clrblack {
  color: black !important;
}

.cleblue {
  color: var(--main-color);
}

.section p {
  color: var(--main-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: #222;
}
@media (max-width: 575px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 575px) {
  p br {
    display: none;
  }
}
.loganame {
  font-size: 40px;
  color:#fff;
}

.margintop1 {
  margin-top: -13px;
  color: #fff;
  font-size: 25px;
}

.clrw {
  color: white;
}
.theme-color{
  color: var(--main-color);
}

.text-block {
  position: absolute;
  border: 2px solid white;
  width: 90%;
  height: 90%;
  bottom: 20px;
  right: 20px;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  box-shadow: rgb(220, 219, 216);
  text-align: left;
}

/*slider caption*/

.slider-caption {
  color: #ffffff;
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  text-align: center;
  border-left: 5px solid var(--main-color);
  border-right: 5px solid var(--main-color);
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slider-caption span {
  color: var(--main-color);
}

@media only screen and (max-width: 600px) {
  .slider-caption {
    width: 87%;
    font-size: 25px;
    border: none;
  }
  .vtin-txt {
    margin: 0 0 50px 0px!important;
    padding: 25px 15px 30px 20px!important;
  }
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

li {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.03em;
}
.lead{
  line-height: 1.3;
}
p {
  font-size: 16px;
  color: #383838;
}

a {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  letter-spacing: 0.03em;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

a:focus {
  outline: none;
}

label {
  letter-spacing: 0.03em;
}

button:focus,
.btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

section,
.section-t-space {
  padding-top: 50px;
}

.section_space {
  padding-top: calc(30px + (100 - 30) * ((100vw - 320px) / (1920 - 320)));
}

.section-b-space {
  padding-bottom: 50px;
}

.medium-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.small-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.xs-section {
  padding: 30px 0;
}

.parallax-img {
  background-attachment: fixed;
}

.radius-cls {
  border-radius: 20px;
}

.radius-cls .social-box {
  border-radius: 6px;
}

.bg-inner {
  background-color: #f9f9f9;
}

.lh-cls {
  line-height: 1 !important;
}

.w-80 {
  width: 80%;
}

.mb-down {
  margin-bottom: -30px;
}


/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}
.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  flex: 0 0 100%;
}
.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}
.mobile-nav__wrapper .home-showcase__title {
  color: #fff;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.3;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: #222;
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}
.mobile-nav__content .logo-box img{
  padding: 3px;
  background-color: #fff;
  border-radius: 10px;
}
.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}
.mobile-nav__close:hover {
  color: var(--main-color);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list ul li > a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav__content .main-menu__list li{
  display: block;
}
.mobile-nav__content .main-menu__list li > a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--main-color);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--main-color);
  border: none;
  outline: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: #fff;
  color: #000;
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}
.mobile-nav__social a {
  font-size: 16px;
  color: #fff;
  transition: 500ms;
}
.mobile-nav__social a + a {
  margin-left: 20px;
}
.mobile-nav__social a:hover {
  color: var(--main-color);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.mobile-nav__contact li {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  word-break: break-word;
  display: flex;
  align-items: center;
}
.mobile-nav__contact li + li {
  margin-top: 15px;
}
.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}
.mobile-nav__contact li a:hover {
  color: var(--main-color);
}
.mobile-nav__contact li > i {
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}
.header_top{
  line-height: 1;
  padding: 3px 0;
  position: relative;
  background-color: var(--second-color);
}
.header_top_grid{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header_top_grid .left_side{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
.header_top_grid .left_side a{
  background-color: var(--main-color);
  color: #fff;
  padding: 7px 20px;
  display: block;
  border-radius: 4px;
  position: relative;
  font-size: 15px;
  border: 1px dashed #ffffffa6;
}
.header_top_grid .left_side a:before{
  position: absolute;
  content: '';
  left: -7px;
  top: 50%;
  background-color: var(--main-color);
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
}
.header_top_grid .right_side .header_socio{
  display: flex;
  align-items: center;
  gap: 10px;
}
.header_top_grid .right_side{
  padding-right: 60px;
}
.header_top_grid .right_side .header_socio a{
  background-color: var(--main-color);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
  border: 1px solid #ffffffa6;
}
.header_top_grid .right_side .header_socio a:hover{
  background-color: #Fff;
  color: var(--main-color);
}
/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}
.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
.search-popup__form {
  position: relative;
}
.search-popup__form input[type=search],
.search-popup__form input {
  width: 100%;
  background-color: #fff;
  font-size: 15px;
  color: #555;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}
.search-popup__form button{
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  transition: all 500ms ease;
  font-size: 18px;
  color: #fff;
  background-color: var(--main-color);
  border: none;
  outline: none;
}
.search-popup__form button:hover{
  color: #fff;
  background-color: #000;
}
.search-popup.active {
  z-index: 9999;
}
.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.9;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}
@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}
.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}


/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar-one {
  background-color: #000;
  position: relative;
  @media (max-width: 991px) {
    display: none;
  }
}
.topbar-one__inner {
  display: flex;
  align-items: center;
  padding: 16px 0;
  position: relative;
}
.topbar-one__info {
  display: flex;
  align-items: center;
  margin: 0;
  position: relative;
  padding: 0;
  width: 100%;
  gap: 30px;
}
.topbar-one__info__item {
  display: flex;
  align-items: center;
  color: #CCD7D7;
  line-height: 1.2em;
}
.topbar-one__info__item a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-one__info__item a:hover {
  background-size: 100% 1px;
}
.topbar-one__info__item a:hover {
  color: var(--main-color);
}
.topbar-one__info__icon {
  font-size: 18px;
  color: #fff;
  position: relative;
  top: 2px;
  margin-right: 12px;
}
.topbar-one__info__item--last{
  margin-left: auto;
}

.topbar-two {
  position: relative;
  background-color: #021713;
}
@media (max-width: 1080px) {
  .topbar-two {
    display: none;
  }
}
@media (min-width: 1380px) {
  .topbar-two .container-fluid {
    max-width: 1350px;
  }
}
.topbar-two__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-two__info {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.topbar-two__info__item span,
.topbar-two__info__item a {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #CCD7D7;
  transition: all 0.4s ease-in-out;
}
.topbar-two__info__item span {
  text-transform: capitalize;
}
.topbar-two__info__item i {
  margin-right: 10px;
  color: #fff;
  transition: all 500ms ease;
}
.topbar-two__info__item a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-two__info__item a:hover {
  background-size: 100% 1px;
  color: var(--main-color);
}
.topbar-two__info__item:hover i {
  color: var(--main-color);
}
.topbar-two__info__item + .topbar-two__info__item {
  position: relative;
  margin-left: 24px;
  padding-left: 24px;
}
.topbar-two__info__item + .topbar-two__info__item::after {
  content: "";
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.21);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.topbar-two__social {
  display: flex;
  align-items: center;
  padding: 20px 56px;
  position: relative;
  z-index: 1;
}
.topbar-two__social a {
  font-size: 16px;
  color: #fff;
}
.topbar-two__social a:hover {
  color: #222;
}
.topbar-two__social a + a {
  margin-left: 28px;
}
.topbar-two__social::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--main-color);
  z-index: -1;
  -webkit-clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
  clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  position: relative;
  width: 100%;
  z-index: 49;
  background: #fff;
  box-shadow: 0px 0px 8px #000;
}
.main-header__inner {
  display: flex;
  align-items: center;
  position: relative;
}
.main-header__logo {
  display: flex;
  height: 100%;
  padding: 0;
  position: relative;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 5px;
  width: auto;
  margin-top: -37px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 5px;
  border-radius: 0 0 10px 10px;
  width: auto;
}
.main-header__logo img{
  height: 95px;
}
.main-header__btn {
  position: relative;
  margin-top: 6px;

  @media (max-width: 767px) {
    display: none;
  }
}
.main-header__right {
  display: flex;
  align-items: center;
  margin-left: 60px;
}
.main-header__cart, .main-header__search {
  font-size: 20px;
  color: #000;
  transition: all 500ms ease;
  margin: 0 30px;
  line-height: 1em;

  @media (max-width: 767px) {
    margin-right: 0;
    margin-left: 0;
  }
}
.main-header__cart:hover, .main-header__search:hover {
  color: var(--main-color);
}
.main-header__cart__number, .main-header__search__number {
  width: 30px;
  height: 30px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  color: #000;
}
.main-header__cart {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-header__nav {
  margin-left: auto;
}

.sticky-header--cloned {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: #fff;
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(0,0,0, 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}
.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}
@media (max-width: 1199px) {
  .mobile-nav__btn {
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .mobile-nav__btn {
    margin-left: 20px;
    margin-right: 10px;
  }
}
@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: #000;
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: #000;
}
.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}
.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}
@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
  }
}
.main-menu .main-menu__list > li {
  padding-top: 15.5px;
  padding-bottom: 15.5px;
  position: relative;
}
.main-menu .main-menu__list > li.dropdown > a {
  position: relative;
}
.main-menu .main-menu__list > li + li {
  margin-left: 26px;
}
@media (max-width: 1400px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 25px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 30px !important;
  }
}
.main-menu .main-menu__list > li > a {
  font-size: 16px;
  display: flex;
  align-items: center;
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  transition: all 500ms ease;
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  color: var(--main-color);
  text-shadow: 0 0 0.5px currentColor;
}
.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(255,255,255, 0.07);
  padding: 15px 20px 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  max-height: 430px;
  overflow: auto;
}
.main-menu .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list > .megamenu {
  position: static;
}
.main-menu .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}
.main-menu .main-menu__list li ul li > a {
  font-size: 14px;
  line-height: 18px;
  color: #555;
  font-weight: 500;
  display: flex;
  text-transform: uppercase;
  padding: 12px 20px 12px 12px;
  transition: 400ms;
  margin-bottom: 4px;
}
.main-menu .main-menu__list li ul li > a::after {
  position: absolute;
  right: 20px;
  top: 50%;
  border-radius: 0;
  font-size: 6px;
  font-weight: 700;
  font-family: "Font Awesome 5 Pro";
  content: "\f111";
  color: var(--main-color);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  transform: scale(0) translateY(-50%);
}
.main-menu .main-menu__list li ul li.current > a,
.main-menu .main-menu__list li ul li:hover > a {
  background-color: #f9f9f9;
  color: #000;
}
.main-menu .main-menu__list li ul li.current > a::after,
.main-menu .main-menu__list li ul li:hover > a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateY(-50%);
}
.main-menu .main-menu__list li ul li > ul {
  top: 0;
  left: calc(100% + 20px);
}
.main-menu .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}
.main-menu .main-menu__list li ul li > ul ul {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .main-menu__list li:nth-last-child(1) ul li > ul,
  .main-menu__list li:nth-last-child(2) ul li > ul {
    left: auto;
    right: calc(100% + 20px);
  }
}


.main-header--two {
  background-color: #fff;
}

@media (min-width: 1380px) {
  .main-header--two .container-fluid {
    max-width: 1350px;
  }
}

.main-header--two .main-header__logo {
  background-color: transparent;
}

@media (max-width: 1199px) {
  .main-header--two .main-header__inner {
    padding: 0px 0px;
  }
}

.main-header--two .main-header__logo,
.main-header--two .main-header__btn {
  padding: 0;
  margin-right: 0;
}

.main-header--two .main-header__inner,
.main-header--two .main-header__btn {
  background-color: transparent;
  border-radius: 0;
}

.main-header--two .main-menu .main-menu__list>li>a {
  text-transform: uppercase;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 188%;
  color: #000;
  text-shadow: 0 0 0.1px currentColor;
}

.main-header--two .main-menu .main-menu__list>li.current>a,
.main-header--two .main-menu .main-menu__list>li:hover>a {
  color: var(--main-color);
}

.main-header--two .main-header__info a {
  background: none;
}

.main-header--two .main-menu .main-menu__list>li+li {
  margin-left: 35px;
}

@media (max-width: 1240px) {
  .main-header--two .main-menu .main-menu__list>li+li {
    margin-left: 20px;
  }
}

.main-header--two .main-header__nav {
  margin-left: auto;
  margin-right: 28px;
}

.main-header--two .main-header__right {
  margin-left: 0;
}

.main-header--two .main-header__info {
  border-color: transparent;
}

.main-header--two .main-header__info a {
  font-size: 22px;
  color: #000;
}

@media (max-width: 767px) {
  .main-header--two .main-header__info {
    display: block;
    padding-right: 0;
  }
}

.main-header--two .main-menu .main-menu__list>li {
  padding-top: 15px;
  padding-bottom: 15px;
}

.main-header--two .main-header__info+.main-header__btn {
  margin-left: 70px;
}

@media (max-width: 1300px) {
  .main-header--two .main-header__info+.main-header__btn {
    margin-left: 40px;
  }
}

@media (max-width: 767px) {
  .main-header--two .main-header__info+.main-header__btn {
    margin-left: 30px;
  }
}

@media (max-width: 575px) {
  .main-header--two .main-header__info+.main-header__btn {
    display: none;
  }
}

.main-header--two .travhub-btn {
  border-radius: 8px;
  padding: 10.5px 22.5px;
}

@media (max-width: 1599px) {
  .main-header--two .main-header__btn {
    display: block;
  }
}

.main-header--three {
  position: relative;
  background-color: #fff;
}

.main-header--three.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
  position: fixed;
  background-color: #fff;
}

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media .media-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.radio_animated {
  cursor: pointer;
  margin-left: 0;
  position: relative;
  margin-right: 12px;
}

.radio_animated:before {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75), -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  content: "";
  position: absolute;
  top: 0;
  left: 0.125rem;
  z-index: 1;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--main-color);
  border-radius: 50%;
}

.radio_animated:after {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: -0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  background: white;
  border: 2px solid #e8ebf2;
  border-radius: 50%;
}

.radio_animated:checked:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.checkbox_animated {
  cursor: pointer;
  margin-left: -1.25rem;
  position: relative;
  margin-right: 12px;
  border: none;
}

.checkbox_animated:before {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75), -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: rotate(-45deg) scale(0, 0);
  transform: rotate(-45deg) scale(0, 0);
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.225rem;
  z-index: 1;
  width: 0.75rem;
  height: 0.375rem;
  border: 2px solid var(--main-color);
  border-top-style: none;
  border-right-style: none;
}

.checkbox_animated:after {
  content: "";
  position: absolute;
  top: -0.125rem;
  left: 0;
  width: 1.3rem;
  height: 1.3rem;
  background: white;
  border: 2px solid #e8ebf2;
  cursor: pointer;
}

.checkbox_animated:checked:before {
  -webkit-transform: rotate(-45deg) scale(1, 1);
  transform: rotate(-45deg) scale(1, 1);
}

.form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.input-group-prepend,
.input-group-append {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mrg-cls {
  margin-bottom: -3px;
}

.rounded5 {
  border-radius: 5px !important;
}

.rounded10 {
  border-radius: 10px !important;
}

.rounded15 {
  border-radius: 15px !important;
}

.rounded20 {
  border-radius: 20px !important;
}

.rounded25 {
  border-radius: 25px !important;
}

.breadcrumb {
  padding: 0.75rem 1rem;
}

.zindex-1 {
  z-index: 1;
}

.row div[class*="col-"],
.row .col {
  position: relative;
}

/*Lazy load */

/*=====================
1.1. Button start
==========================*/

.btn-group-showcase {
  margin-bottom: -20px;
}

.btn-group-showcase h3 {
  margin-bottom: 15px;
}

.btn-group-showcase .btn {
  margin-bottom: 20px;
}

.btn-group-showcase .btn+.btn {
  margin-left: 15px;
}

.btn-cards .card {
  margin-bottom: 30px;
}

.btn {
  line-height: 20px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.btn.btn-lower {
  text-transform: capitalize;
}

.btn.btn-sm {
  padding: 8px 24px !important;
  text-transform: capitalize;
}

.btn.white-btn {
  background-color: white !important;
  color: #ba8a04 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn.black-btn {
  background-color: black !important;
  color: white !important;
  -webkit-box-shadow: 1px 11px 20px 0px rgba(0, 0, 0, 0.12) !important;
  box-shadow: 1px 11px 20px 0px rgba(0, 0, 0, 0.12) !important;
}

.btn.black-btn:hover {
  -webkit-box-shadow: 1px 11px 20px 0px rgba(0, 0, 0, 0.22);
  box-shadow: 1px 11px 20px 0px rgba(0, 0, 0, 0.22);
  border: 1px solid var(--main-color);
  background-color: white !important;
  color: black !important;
}

.btn.btn-solid {
  background-color: var(--main-color);
  color: #fff;
  padding: 9px 20px;
  -webkit-box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.12);
  box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.12);
  border-radius: 5px;
}

.btn.btn-solid:hover {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: white;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  -webkit-box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.22);
  box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.22);
}

.btn.btn-solid.btn-outline {
  background-color: transparent;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.btn.btn-solid.btn-outline:hover {
  color: white;
  background-color: var(--main-color);
}

.btn.btn-solid.color2 {
  background-color: #ef3f3e;
  -webkit-box-shadow: 2.5px 4.33px 25px 0px rgba(239, 63, 62, 0.3);
  box-shadow: 2.5px 4.33px 25px 0px rgba(239, 63, 62, 0.3);
}

.btn.btn-solid.color2:hover {
  background-color: white;
  color: #ef3f3e;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 1px solid #ef3f3e;
  -webkit-box-shadow: 1px 11px 20px 0px rgba(239, 63, 62, 0.22);
  box-shadow: 1px 11px 20px 0px rgba(239, 63, 62, 0.22);
}

.btn.btn-curve {
  border-radius: 5px;
  background-color: var(--main-color);
  color: white;
  padding: 9px 20px;
  -webkit-box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.12);
  box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.12);
}

.btn.btn-curve.btn-lower {
  text-transform: capitalize;
}

.btn.btn-ed {
  border-radius: 100px;
  color: white;
  padding: 10px 20px;
}

.btn.btn-ed.color1 {
  background-color: var(--main-color);
  -webkit-box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.12);
  box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.12);
}

.btn.btn-ed.color1:hover {
  background-color: white;
  color: var(--main-color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 1px solid var(--main-color);
  -webkit-box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.22);
  box-shadow: 1px 11px 20px 0px rgba(233, 179, 14, 0.22);
}

.btn.btn-ed.color2 {
  background-color: #ef3f3e;
  -webkit-box-shadow: 2.5px 4.33px 25px 0px rgba(239, 63, 62, 0.3);
  box-shadow: 2.5px 4.33px 25px 0px rgba(239, 63, 62, 0.3);
}

.btn.btn-ed.color2:hover {
  background-color: white;
  color: #ef3f3e;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 1px solid #ef3f3e;
  -webkit-box-shadow: 1px 11px 20px 0px rgba(239, 63, 62, 0.22);
  box-shadow: 1px 11px 20px 0px rgba(239, 63, 62, 0.22);
}

.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-outline {
  background-color: white;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.btn-close:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*=====================
1.2. Title css start
==========================*/

.title-1 {
  text-align: center;
}

.title-1 .title-label {
  font-size: 14px;
  color: white;
  background-color: var(--main-color);
  text-transform: uppercase;
  padding: 4px 18px;
  line-height: 1.7;
  border-radius: 3px;
  font-family: Work Sans;
  font-weight: 600;
}

.title-1 .title-label.white-label {
  background-color: white;
  color: var(--main-color);
}

.title-1 h2 {
  padding-top: 25px;
  margin-bottom: 0;
  padding-bottom: 50px;
  font-weight: 800;
}

.title-1.title-5 .title-label {
  border-radius: 50px;
}

.title-1.title-5 h2 {
  padding-top: 22px;
  padding-bottom: 15px;
}

.title-1.title-5 p {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 600;
  margin-bottom: 50px;
}

.title-1.detail-title .title-label {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.title-1.detail-title h2 {
  padding-bottom: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
}

.title-1.detail-title p {
  /* max-width: 60%; */
  margin: 0 auto;
  color: #676767;
  /* text-transform: capitalize; */
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1.7;
  text-align: justify;
}

.title-1.rounded .title-label {
  border-radius: 12px;
}

.title-2 {
  text-align: center;
}

.title-2 h2 {
  font-size: calc(22px + (36 - 22) * ((100vw - 320px) / (1920 - 320)));
  color: #808080;
  font-weight: 400;
  margin-bottom: 22px;
  line-height: 32px;
  margin-top: -2px;
}

.title-2 h2 span {
  color: #ef3f3e;
  font-weight: 900;
}

.title-2 p {
  margin-bottom: 70px;
  color: #cacaca;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 600;
}

.title-2.color-1 h2 span {
  color: var(--main-color);
}

.title-3 {
  text-align: center;
}

.title-3 .title-label {
  font-size: 14px;
  color: white;
  background-color: var(--main-color);
  text-transform: capitalize;
  padding: 4px 18px 6px;
  line-height: 1;
  font-family: Work Sans;
  font-weight: 600;
}

.title-3 h2 {
  font-size: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
  margin-top: 20px;
  margin-bottom: 90px;
  font-weight: 800;
  position: relative;
}

.title-3 h2 span {
  font-family: Vampiro One, cursive;
  font-size: calc(35px + (85 - 35) * ((100vw - 320px) / (1920 - 320)));
  position: absolute;
  color: rgba(233, 179, 14, 0.1);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  z-index: -1;
  font-weight: 400;
}

.title-3.detail-title .title-label {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.title-3.detail-title h2 {
  padding-bottom: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 30px;
}

.title-3.detail-title p {
  max-width: 60%;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.41);
  text-transform: capitalize;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1.7;
  margin-bottom: 30px;
}

.title-3.rounded .title-label {
  border-radius: 50px;
}

.title-3.white-title .title-label {
  background-color: white;
  color: var(--main-color);
}

.title-3.white-title h2 {
  color: white;
}

.title-3.white-title h2 span {
  z-index: unset;
  color: rgba(255, 255, 255, 0.07);
}

.title-basic h2 {
  font-size: calc(18px + (24 - 18) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  font-weight: 600;
}

.title-basic p {
  margin-top: -4px;
  color: rgba(0, 0, 0, 0.7);
}

/*=====================
1.3. Image-ratio start
==========================*/

.ratio_40 .bg-size:before {
  padding-top: 40%;
  content: "";
  display: block;
}

.ratio_45 .bg-size:before {
  padding-top: 45%;
  content: "";
  display: block;
}

.ratio2_1 .bg-size:before {
  padding-top: 50%;
  content: "";
  display: block;
}

.ratio_55 .bg-size:before {
  padding-top: 55%;
  content: "";
  display: block;
}

.ratio_59 .bg-size:before {
  padding-top: 59%;
  content: "";
  display: block;
}

.ratio2_3 .bg-size:before {
  padding-top: 60%;
  content: "";
  display: block;
}

.ratio3_2 .bg-size:before {
  padding-top: 66.66%;
  content: "";
  display: block;
}

.ratio_90 .bg-size:before {
  padding-top: 93%;
  content: "";
  display: block;
}

.ratio_landscape .bg-size:before {
  padding-top: 75%;
  content: "";
  display: block;
}

.ratio_square .bg-size:before {
  padding-top: 100%;
  content: "";
  display: block;
}

.ratio_asos .bg-size:before {
  padding-top: 127.7777778%;
  content: "";
  display: block;
}

.ratio_portrait .bg-size:before {
  padding-top: 150%;
  content: "";
  display: block;
}

.ratio1_2 .bg-size:before {
  padding-top: 200%;
  content: "";
  display: block;
}

.b-top {
  background-position: top !important;
}

.b-bottom {
  background-position: bottom !important;
}

.b-center {
  background-position: center !important;
}

.b-left {
  background-position: left !important;
}

.b-right {
  background-position: right !important;
}

.b_size_content {
  background-size: contain !important;
}

.shadow-cls {
  -webkit-box-shadow: 0px 1px 9px 0px rgba(228, 228, 228, 0.7);
  box-shadow: 0px 1px 9px 0px rgba(228, 228, 228, 0.7);
}

.container-medium {
  padding: 0 30px;
}


.selector-box {
  position: absolute;
  width: 100%;
  background-color: white;
  z-index: 3;
  border: 1px solid #dedede;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  top: auto;
  display: none;
}

.selector-box .title {
  padding: 10px 10px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
  text-transform: capitalize;
}

.selector-box ul {
  padding: 0 0 10px 0;
  max-height: 180px;
  overflow-y: scroll;
}

.selector-box ul li {
  display: block;
  position: relative;
  margin-bottom: 10px;
  padding: 0 10px;
}

.selector-box ul li h5 {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  margin-bottom: 0;
  text-transform: capitalize;
}

.selector-box ul li h6 {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
  text-transform: capitalize;
}

.selector-box ul li span {
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.2);
  right: 10px;
  font-weight: 700;
  top: 3px;
  padding: 3px 8px;
  text-transform: uppercase;
  color: var(--main-color);
  border-radius: 3px;
}

.selector-box ul::-webkit-scrollbar {
  width: 3px;
}

.selector-box ul::-webkit-scrollbar-thumb {
  background: var(--main-color);
}

.selector-box.show {
  display: block;
}

section .black-layer {
  position: relative;
  z-index: -1;
}

section .black-layer:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  top: 0;
  z-index: -1;
}

.error {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #eee;
  padding: 20px;
  display: none;
}

.search-section {
  margin-top: -75px;
}

.search-section .search-box {
  background-color: white;
  -webkit-box-shadow: 1px 3px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 3px 20px 0px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.search-section .search-box input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.search-section .search-box .left-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.search-section .search-box .left-part .search-body {
  display: inline-block;
  text-align: center;
  padding: 40px;
  position: relative;
}

.search-section .search-box .left-part .search-body h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
}

.search-section .search-box .left-part .search-body h3 {
  font-size: calc(20px + (32 - 20) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  text-transform: capitalize;
  font-weight: 800;
  margin-bottom: -8px;
}

.search-section .search-box .left-part .search-body .form-control {
  border: none;
  padding: 0;
  text-align: center;
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  text-transform: capitalize;
  font-weight: 800;
  margin-bottom: -8px;
}

.search-section .search-box .left-part .search-body ::-webkit-input-placeholder {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  text-transform: capitalize;
  font-weight: 800;
  margin-bottom: -8px;
}

.search-section .search-box .left-part .search-body ::-moz-placeholder {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  text-transform: capitalize;
  font-weight: 800;
  margin-bottom: -8px;
}

.search-section .search-box .left-part .search-body :-ms-input-placeholder {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  text-transform: capitalize;
  font-weight: 800;
  margin-bottom: -8px;
}

.search-section .search-box .left-part .search-body ::-ms-input-placeholder {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  text-transform: capitalize;
  font-weight: 800;
  margin-bottom: -8px;
}

.search-section .search-box .left-part .search-body ::placeholder {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  text-transform: capitalize;
  font-weight: 800;
  margin-bottom: -8px;
}

.search-section .search-box .left-part .search-body .quantity-left-minus,
.search-section .search-box .left-part .search-body .quantity-right-plus {
  position: absolute;
  background-color: transparent;
  padding: 0;
  border: none;
  font-size: 10px;
  right: 30px;
  color: grey;
}

.search-section .search-box .left-part .search-body .quantity-left-minus:hover,
.search-section .search-box .left-part .search-body .quantity-right-plus:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

.search-section .search-box .left-part .search-body .quantity-left-minus {
  bottom: -10px;
}

.search-section .search-box .left-part .search-body .quantity-right-plus {
  top: -5px;
}

.search-section .search-box .left-part .search-body .input-group-append {
  display: none;
}

.search-section .search-box .left-part .search-body:after {
  content: "";
  width: 1px;
  height: 40px;
  background-color: #e8e8e8;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.search-section .search-box .left-part .search-body:last-child:after {
  display: none;
}

.search-section .search-box .right-part {
  margin-left: 45px;
}

.search-section .search-box .right-part .search-icon {
  width: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--main-color);
  height: 100%;
  position: relative;
  z-index: 1;
}

.search-section .search-box .right-part .search-icon img {
  position: absolute;
  left: 18px;
}

.search-section .search-box .right-part .search-icon:after {
  content: "";
  position: absolute;
  left: -37px;
  width: 70px;
  height: 100%;
  background-color: var(--main-color);
  border-radius: 100%;
  z-index: -1;
}

.search-section .search-box .right-part .search-icon:before {
  content: "";
  position: absolute;
  left: -45px;
  width: 70px;
  height: 100%;
  background-color: rgba(233, 179, 14, 0.3);
  border-radius: 100%;
  z-index: -1;
}

.classic-slider {
  margin-bottom: 0 !important;
}

.classic-slider .slick-dots {
  top: 50%;
  bottom: unset;
  width: auto;
  display: inline-block;
  right: 50px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.classic-slider .slick-dots li {
  display: block;
  width: auto;
  height: auto;
  margin: 20px 0;
}

.classic-slider .slick-dots li .dot {
  color: white;
  font-weight: 900;
  font-size: calc(18px + (35 - 18) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1;
  opacity: 0.5;
}

.classic-slider .slick-dots li.slick-active .dot {
  font-size: calc(20px + (50 - 20) * ((100vw - 320px) / (1920 - 320)));
  opacity: 1;
}

.location-option {
  margin-bottom: 14px;
}

.location-option .form-check {
  margin-right: calc(5px + (18 - 5) * ((100vw - 320px) / (1920 - 320)));
  padding-left: 0;
}

.location-option .form-check-label {
  color: white;
  text-transform: capitalize;
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.location-option [type="radio"]:checked,
.location-option [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.location-option [type="radio"]:checked+label,
.location-option [type="radio"]:not(:checked)+label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  display: inline-block;
  font-size: calc(12px + (16 - 12) * ((100vw - 320px) / (1920 - 320)));
  color: white;
  text-transform: capitalize;
  font-weight: 600;
}

.location-option [type="radio"]:checked+label:before,
.location-option [type="radio"]:not(:checked)+label:before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  border: 4px solid white;
  border-radius: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.location-option [type="radio"]:checked+label:before {
  background-color: white;
  border: 4px solid var(--main-color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.location-option.dark-circle [type="radio"]:checked+label,
.location-option.dark-circle [type="radio"]:not(:checked)+label {
  color: var(--main-color);
}

.location-option.dark-circle [type="radio"]:checked+label:before,
.location-option.dark-circle [type="radio"]:not(:checked)+label:before {
  border: 4px solid #b5b5b5;
}

.location-option.dark-circle [type="radio"]:checked+label:before {
  border: 4px solid var(--main-color);
}


.mix-pills.nav-pills .nav-link.active,
.mix-pills.nav-pills .show>.nav-link {
  color: var(--main-color);
  ;
  background-color: var(--main-color);
}

.mix-pills.nav-pills .nav-link {
  color: white;
  text-transform: capitalize;
  font-size: calc(12px + (17 - 12) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 600;
}

.form-icon .form-group {
  position: relative;
}

.form-icon .form-group .form-control {
  padding: 20px 20px 20px 50px !important;
}

.form-icon .form-group .icon {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.22);
  font-size: 16px;
  z-index: 4;
}

/*=====================
4. Slick slider css
==========================*/

.no-arrow .slick-next,
.no-arrow .slick-prev {
  display: none !important;
}

.slick-slider {
  line-height: 1;
}

.arrow-classic .slick-next:before,
.arrow-classic .slick-prev:before {
  font-family: themify;
  color: #dfdfdf;
  background-color: white;
  opacity: 1;
  padding: 8px;
  -webkit-box-shadow: 5px 8.66px 61px 0px rgba(0, 0, 0, 0.24);
  box-shadow: 5px 8.66px 61px 0px rgba(0, 0, 0, 0.24);
  border-radius: 12px;
  font-size: 18px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.arrow-classic .slick-next:hover:before,
.arrow-classic .slick-prev:hover:before {
  color: var(--main-color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.arrow-classic .slick-prev {
  left: -100px;
}

.arrow-classic .slick-prev:before {
  content: "←";
  color: var(--main-color);
  ;
  background: #ff8471;
}

.arrow-classic .slick-next {
  right: -88px;
}

.arrow-classic .slick-next:before {
  content: "→";
  color: var(--main-color);
  ;
  background: #ff8471;
}

.arrow-dark .slick-prev {
  left: 1px;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: transparent;
  height: 36px;
}

.arrow-dark .slick-prev:before {
  content: "\f053";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.arrow-dark .slick-next {
  right: 0;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: transparent;
  height: 36px;
}

.arrow-dark .slick-next:before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.arrow-dark .slider-nav {
  margin-top: 3px;
}

.arrow-dark .slider-nav .slick-slide {
  margin: 0 3px;
  cursor: pointer;
}

.arrow-dark .slider-nav .slick-list {
  margin-left: -3px;
  margin-right: -3px;
}

.arrow-dark:hover .special-img .bg-size {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.arrow-dark:hover .slick-next,
.arrow-dark:hover .slick-prev {
  background-color: #252525;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.variable-width-height .slick-slide img {
  height: calc(280px + (400 - 280) * ((100vw - 320px) / (1920 - 320)));
}

.variable-width {
  margin-bottom: -4px;
}

/*=====================
5. Instagram css
==========================*/

.instgram-slider .slick-slide {
  margin-bottom: -4px;
}

.instgram-slider .instagram-box {
  position: relative;
  overflow: hidden;
}

.instgram-slider .instagram-box .overlay {
  opacity: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(233, 179, 14, 0.4);
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.instgram-slider .instagram-box .overlay i {
  color: white;
}

.instgram-slider .instagram-box:hover .overlay {
  opacity: 1;
  -webkit-transform: scale(4);
  transform: scale(4);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
}

/*=====================
6. Logo css
==========================*/

.logo-box img {
  margin: 0 auto;
}

/*=====================
7. Blog css
==========================*/

.blog-section .slick-list {
  margin-left: -10px;
  margin-right: -10px;
}

.blog-section .slick-slide>div {
  padding-left: 10px;
  padding-right: 10px;
}

.blog-section .blog-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  -webkit-box-shadow: 0px 0.66px 6px 0px #00000021;
  box-shadow: 0px 0.66px 6px 0px #00000021;
}

.blog-section .blog-box .img-part {
  position: relative;
}

.blog-section .blog-box .img-part img {
  min-width: 300px;
}

.blog-section .blog-box .img-part .blog-date {
  padding: 10px 12px;
  background-color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 35px;
  left: 35px;
  -webkit-box-shadow: 2.5px 4.33px 25px 0px rgba(233, 179, 14, 0.4);
  box-shadow: 2.5px 4.33px 25px 0px rgba(233, 179, 14, 0.4);
  text-align: center;
}

.blog-section .blog-box .img-part .blog-date h5 {
  color: white;
  margin-bottom: 0;
  font-weight: 700;
}

.blog-section .blog-box .img-part .blog-date h6 {
  font-size: 10px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 700;
}

.blog-section .blog-box .blog-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 70px 55px;
}

.blog-section .blog-box .blog-content h5 {
  font-size: 14px;
  color: var(--main-color);
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 20px;
}

.blog-section .blog-box .blog-content p {
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  font-weight: 800;
  line-height: 1.5;
}

.blog-section .blog-box .blog-content h6 {
  font-size: 14px;
  color: #999999;
  font-weight: 600;
  margin-bottom: 20px;
}

.blog_section {
  overflow: hidden;
}

.blog_section .blog-wrap {
  border-radius: 25px;
  -webkit-box-shadow: 2.5px 4.33px 35px 0px rgba(0, 0, 0, 0.04);
  box-shadow: 2.5px 4.33px 35px 0px rgba(0, 0, 0, 0.04);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
  margin-bottom: 30px;
}

.blog_section .blog-wrap .blog-image {
  position: relative;
  overflow: hidden;
}

.blog_section .blog-wrap .blog-image .bg-size {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.blog_section .blog-wrap .blog-image .blog-label {
  position: absolute;
  background-color: white;
  padding: 14px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 30px;
  bottom: 30px;
  border-radius: 10px;
}

.blog_section .blog-wrap .blog-image .blog-label h3 {
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: 0;
  font-size: calc(16px + (24 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.blog_section .blog-wrap .blog-image .blog-label h6 {
  font-size: 14px;
  color: #565857;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}

.blog_section .blog-wrap .blog-details {
  padding: 40px 35px;
}

.blog_section .blog-wrap .blog-details h6 {
  color: #9a9a9a;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog_section .blog-wrap .blog-details h6 i {
  color: #ef3f3e;
  margin-right: 3px;
}

.blog_section .blog-wrap .blog-details h6 i.color-1 {
  color: var(--main-color);
}

.blog_section .blog-wrap .blog-details h5 {
  font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  color: #333333;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 2px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.blog_section .blog-wrap .blog-details p {
  font-size: 14px;
  color: #9a9a9a;
  line-height: 1.5;
  margin-bottom: -3px;
}

.blog_section .blog-wrap:hover {
  -webkit-box-shadow: 2.5px 4.33px 35px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 2.5px 4.33px 35px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.blog_section .blog-wrap:hover .blog-image .bg-size {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.blog_section .blog-wrap:hover .blog-details h5 {
  color: var(--main-color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.blog_section .slick-slide>div {
  margin: 0 25px;
}

.blog_section .slick-list {
  margin-left: -25px;
  margin-right: -25px;
}

.blog_section.section-b-space {
  padding-bottom: 70px;
}

.blog_section.destination-section .slick-slide>div {
  margin: 0 30px;
}

.blog_section.destination-section .slick-list {
  margin-left: -30px;
  margin-right: -30px;
}

.blog_section.destination-section .destination-details {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.blog_section.destination-section .destination-details h5 {
  font-size: 14px;
  color: #959595;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 600;
  margin-bottom: 5px;
}

.blog_section.destination-section .destination-details h2 {
  color: var(--main-color);
  font-size: calc(18px + (30 - 18) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 800;
  margin-bottom: 10px;
}

.blog_section.destination-section .destination-details h6 {
  font-weight: 600;
  text-transform: capitalize;
  font-size: 14px;
  margin-bottom: 30px;
  color: rgba(0, 0, 0, 0.56);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.blog_section.destination-section .destination-details .btn {
  text-transform: capitalize;
  font-size: calc(14px + (20 - 14) * ((100vw - 320) / (1920 - 320)));
}

.blog_section.inner-blog .blog-wrap {
  border-radius: 0;
}

.blog_section.inner-blog .blog-wrap .blog-details h6 i {
  color: var(--main-color);
}

.blog_section.inner-blog .blog-wrap .blog-image .blog-label {
  border-radius: 0;
}

/*=====================
8. App Section css
==========================*/

.app-section {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.app-section:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  top: 0;
  z-index: -1;
}

.app-section .app-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.app-section .app-content .label {
  margin-bottom: 35px;
}

.app-section .app-content .label span {
  font-size: 14px;
  color: white;
  background-color: var(--main-color);
  text-transform: uppercase;
  padding: 5px 18px;
  line-height: 1;
  border-radius: 3px;
  font-family: Work Sans;
  font-weight: 600;
  position: relative;
}

.app-section .app-content .label span:after {
  content: "";
  position: absolute;
  right: -65px;
  top: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(233, 179, 14, 0.25)), to(rgba(233, 179, 14, 0.05)));
  background: linear-gradient(to right, rgba(233, 179, 14, 0.25) 0%, rgba(233, 179, 14, 0.05) 100%);
  width: 70px;
  height: 26px;
}

.app-section .app-content .label.label-white span {
  background-color: white;
  color: var(--main-color);
}

.app-section .app-content .label.label-white span:after {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0.05)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 100%);
  width: 40px;
  right: -35px;
}

.app-section .app-content .title {
  color: white;
  font-size: calc(24px + (50 - 24) * ((100vw - 320px) / (1920 - 320)));
  text-transform: unset;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: -7px;
}

.app-section .app-content .title span {
  display: block;
}

.app-section .app-content p {
  font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
  line-height: 1.7;
  margin-bottom: 30px;
}

.app-section .app-content h3 {
  color: rgba(255, 255, 255, 0.85);
  font-size: calc(18px + (24 - 18) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 42px;
  font-weight: 800;
  text-transform: capitalize;
}

.app-section .app-content .app-buttons a {
  text-transform: capitalize;
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  padding: 10px 16px;
}

.app-section .app-content .app-buttons a+a {
  margin-left: 30px;
}

.app-section .app-content .app-buttons a i {
  margin-right: 5px;
}

.app-section .app-image>div {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.app-section .app-image .image {
  position: relative;
}

.app-section .app-image .image img {
  position: relative;
  z-index: 1;
}

.app-section .app-image .image:last-child {
  margin-left: 45px;
}

.app-section .app-box {
  padding: 65px 80px;
  background-color: rgba(255, 255, 255, 0.04);
}

.app-section .app-box h5 {
  color: white;
  text-transform: capitalize;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: -4px;
}

.app-section .app-box h5 span {
  color: var(--main-color);
}

.app-section .app-box h2 {
  color: white;
  letter-spacing: 0.01em;
  text-transform: unset;
  font-size: calc(24px + (50 - 24) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 30px;
}

.app-section .app-box p {
  color: rgba(255, 255, 255, 0.68);
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1.5;
  margin-bottom: 40px;
}

.app-section .app-box .app-buttons a {
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  padding: 10px 22px;
}

.app-section .app-box .app-buttons a i {
  margin-right: 5px;
}

.app-section .app-box .app-buttons .app-btn {
  background-color: rgba(255, 255, 255, 0.2);
  margin-left: 15px;
}

.app-section.app-right-sec .app-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.app-section.app-right-sec .app-content {
  background-color: #f9f9f9;
  padding: 110px;
}

.app-section.app-right-sec .app-content .title,
.app-section.app-right-sec .app-content h3 {
  color: #222222;
}

.app-section.app-right-sec .app-content p {
  color: rgba(0, 0, 0, 0.65);
}

.app-section.app-right-sec .app-content h3 {
  margin-bottom: 14px;
}

.app-section.app-dark .app-content .title {
  color: var(--main-color);
}

.app-section.app-dark .app-content p,
.app-section.app-dark .app-content h3 {
  color: rgba(0, 0, 0, 0.8);
}

/*=====================
9. Service css
==========================*/

.service-section {
  margin-left: -25px;
  margin-right: -25px;
}

.service-section>div {
  padding-left: 25px;
  padding-right: 25px;
}

.service-section .service-box {
  padding: 70px 60px;
  background-color: white;
  border-radius: 20px;
  text-align: center;
  -webkit-box-shadow: 10px 17.321px 30px 0px rgba(206, 206, 206, 0.4);
  box-shadow: 10px 17.321px 30px 0px rgba(206, 206, 206, 0.4);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.service-section .service-box .service-icon {
  width: 90px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  background-color: rgba(233, 179, 14, 0.05);
  border-radius: 100%;
  margin-bottom: 40px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.service-section .service-box .service-icon svg {
  width: 45px;
  height: 45px;
  fill: var(--main-color);
}

.service-section .service-box h3 {
  text-align: center;
  color: var(--main-color);
  font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.service-section .service-box p {
  text-align: center;
  color: #999999;
  line-height: 1.7;
  margin-bottom: 8px;
}

.service-section .service-box .lower-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.service-section .service-box .lower-section h6 {
  margin-bottom: 0;
  color: var(--main-color);
  margin-left: 12px;
  text-transform: capitalize;
  font-weight: 800;
}

.service-section .service-box .btn {
  margin-top: 30px;
}

.service-section .service-box:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.service-section .service-box:hover .service-icon {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.service-section.color-svg .service-box .service-icon svg {
  fill: unset;
}

.service_section>div:nth-last-child(-n+3) {
  margin-top: 60px;
}

.service_section .service-wrap {
  text-align: center;
  padding: 50px 30px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 15px;
}

.service_section .service-wrap .service-icon {
  text-align: center;
}

.service_section .service-wrap .service-icon img {
  height: 80px;
  padding: 18px 20px;
  border-radius: 20px;
  background-color: var(--main-color);
  -webkit-box-shadow: 7.5px 12.99px 40px 0px rgba(233, 179, 14, 0.25);
  box-shadow: 7.5px 12.99px 40px 0px rgba(233, 179, 14, 0.25);
  margin-bottom: 30px;
}

.service_section .service-wrap h5 {
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.001em;
}

.service_section .service-wrap p {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: #b3b3b3;
  margin-bottom: -6px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.service_section .service-wrap:hover {
  -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.service_section .service-wrap:hover .service-icon img {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.service-part .service-wrapper {
  -webkit-box-shadow: 2.5px 4.33px 20px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 2.5px 4.33px 20px 0px rgba(0, 0, 0, 0.05);
  padding: 40px;
  border-radius: 20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.service-part .service-wrapper h3 {
  font-weight: 800;
  color: #333333;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  margin-top: -4px;
  position: relative;
}

.service-part .service-wrapper h3 i {
  position: absolute;
  font-size: 16px;
  right: 0;
  top: 0;
  color: #e1002c;
  background-color: rgba(225, 0, 44, 0.1);
  padding: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
}

.service-part .service-wrapper h3 i .effect {
  border-radius: 50%;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  -webkit-transition: height 5s ease, width 5s ease;
  transition: height 5s ease, width 5s ease;
  z-index: 0;
  opacity: 0;
}

.service-part .service-wrapper h3 i .effect:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid #e1002c;
  -webkit-animation: effect 2s linear 1s infinite;
  animation: effect 2s linear 1s infinite;
}

.service-part .service-wrapper h6 {
  color: #292929;
  font-weight: 600;
  margin-bottom: 20px;
}

.service-part .service-wrapper p {
  color: #949494;
  margin-bottom: 30px;
  letter-spacing: 1.1px;
  line-height: 1.5;
}

.service-part .service-wrapper .service-btn {
  text-align: right;
}

.service-part .service-wrapper .service-btn .btn {
  letter-spacing: 0.05em;
}

.service-part .service-wrapper:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 2.5px 4.33px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 2.5px 4.33px 20px 0px rgba(0, 0, 0, 0.15);
}

.service-part .service-wrapper:hover h3 .effect {
  opacity: 0.5;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.service-part .service-wrapper:hover .service-btn .btn {
  -webkit-box-shadow: 2.5px 4.33px 25px 0px rgba(233, 179, 14, 0.5);
  box-shadow: 2.5px 4.33px 25px 0px rgba(233, 179, 14, 0.5);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rating i {
  font-size: 12px;
  margin: 0 2px;
  color: #ffcc33;
}

.highlight-section {
  margin-top: calc(20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: -20px;
}

.highlight-section .highlight-box {
  margin-bottom: 20px;
  text-align: center;
  border: 1px solid #f7f7f7;
  padding: 30px;
  border-radius: 5px;
  -webkit-box-shadow: 2.5px 4.33px 35px 0px rgba(0, 0, 0, 0.04);
  box-shadow: 2.5px 4.33px 35px 0px rgba(0, 0, 0, 0.04);
}

.highlight-section .highlight-box svg,
.highlight-section .highlight-box img {
  width: 50px;
  height: auto;
  fill: rgba(0, 0, 0, 0.67);
}

.highlight-section .highlight-box .content-sec h5 {
  color: var(--main-color);
  text-transform: capitalize;
  font-weight: 700;
  margin-top: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
}

.highlight-section .highlight-box .content-sec p {
  width: 80%;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: -4px;
  text-transform: capitalize;
  line-height: 1.8;
}


.subscribe-section {
  background-color: rgba(0, 0, 0, 0.32);
  background-blend-mode: overlay;
}

.subscribe-section .input-group input {
  color: #646464;
  font-weight: 700;
}

.subscribe-section .input-group .form-control {
  border-radius: 0;
  border: none;
  padding: 15px 24px;
}

.subscribe-section .input-group .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.subscribe-section .input-group .btn {
  padding: 18px 40px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.subscribe-section .input-group ::-webkit-input-placeholder {
  color: #cccccc;
  font-weight: 600;
  opacity: 1;
}

.subscribe-section .input-group ::-moz-placeholder {
  color: #cccccc;
  font-weight: 600;
  opacity: 1;
}

.subscribe-section .input-group :-ms-input-placeholder {
  color: #cccccc;
  font-weight: 600;
  opacity: 1;
}

.subscribe-section .input-group ::-ms-input-placeholder {
  color: #cccccc;
  font-weight: 600;
  opacity: 1;
}

.subscribe-section .input-group ::placeholder {
  color: #cccccc;
  font-weight: 600;
  opacity: 1;
}

.subscribe-footer {
  padding: 40px 0;
}

.subscribe-footer .service-left {
  float: left;
}

.subscribe-footer .service-left .service-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 50px;
  border-left: 1px solid white;
}

.subscribe-footer .service-left .service-box .icon svg {
  fill: white;
  width: 40px;
  height: 40px;
}

.subscribe-footer .service-left .service-box .detail {
  margin-left: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.subscribe-footer .service-left .service-box .detail h5 {
  font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
  text-transform: uppercase;
  color: white;
  font-weight: 800;
  margin-bottom: 0;
}

.subscribe-footer .service-left .service-box .detail p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
  text-transform: capitalize;
}

.subscribe-footer .service-left ul li:first-child .service-box {
  padding-left: 0;
  border-left: none;
}

.subscribe-footer .service-right {
  float: right;
}

.subscribe-footer .service-right .input-group input {
  color: rgba(255, 255, 255, 0.5);
  padding: 12px 25px;
  background-color: rgba(255, 255, 255, 0.16);
  border: none;
  border-radius: 50px 0 0 50px;
}

.subscribe-footer .service-right .input-group input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.subscribe-footer .service-right .input-group ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.subscribe-footer .service-right .input-group ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.subscribe-footer .service-right .input-group :-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.subscribe-footer .service-right .input-group ::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.subscribe-footer .service-right .input-group ::placeholder {
  color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.subscribe-footer .service-right .btn-subscribe {
  background-color: white;
  color: var(--main-color);
  text-transform: capitalize;
  border-radius: 0 50px 50px 0;
  padding: 8px 20px;
}

.subscribe-footer .service-right .btn-subscribe:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid transparent;
}

.subscribe-footer.zig-zag-effect:after {
  -webkit-filter: invert(0.9);
  filter: invert(0.9);
}

.subscribe_section .subscribe-detail {
  text-align: right;
  padding-right: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.subscribe_section .subscribe-detail:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 30px;
  background-color: var(--main-color);
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.subscribe_section .subscribe-detail h2 {
  position: relative;
  font-weight: 900;
  display: inline-block;
  margin-bottom: 15px;
  font-size: calc(16px + (36 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.subscribe_section .subscribe-detail span {
  position: absolute;
  font-size: 14px;
  color: white;
  background-color: var(--main-color);
  left: -40%;
  border-radius: 50px;
  padding: 5px 14px 3px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  top: 4px;
}

.subscribe_section .subscribe-detail p {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
}

.subscribe_section .input-section {
  padding-left: 60px;
  position: relative;
}

.subscribe_section .input-section input {
  padding: 50px 175px 50px 50px;
  border: none;
  -webkit-box-shadow: 2.5px 4.33px 20px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 2.5px 4.33px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 25px;
}

.subscribe_section .input-section .form-control:focus {
  -webkit-box-shadow: 2.5px 4.33px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 2.5px 4.33px 20px 0px rgba(0, 0, 0, 0.1);
}

.subscribe_section .input-section ::-webkit-input-placeholder {
  color: #bcbcbc;
  opacity: 1;
  font-weight: 600;
}

.subscribe_section .input-section ::-moz-placeholder {
  color: #bcbcbc;
  opacity: 1;
  font-weight: 600;
}

.subscribe_section .input-section :-ms-input-placeholder {
  color: #bcbcbc;
  opacity: 1;
  font-weight: 600;
}

.subscribe_section .input-section ::-ms-input-placeholder {
  color: #bcbcbc;
  opacity: 1;
  font-weight: 600;
}

.subscribe_section .input-section ::placeholder {
  color: #bcbcbc;
  opacity: 1;
  font-weight: 600;
}

.subscribe_section .input-section .btn {
  position: absolute;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 8px 20px;
}

/*=====================
12. About css
==========================*/

.about-section .image-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about-section .about_img{
  border: 5px solid var(--main-color);
  border-top-right-radius: 77px!important;
  border-bottom-left-radius: 77px!important;
  width: 93%;
  height: 450px;
}
.about-section .image-section .img-box {
  position: relative;
}

.about-section .image-section .img-box+.img-box {
  margin-left: 60px;
}

.about-section .image-section .img-box img {
  -webkit-box-shadow: 5px 8.66px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 5px 8.66px 20px 0px rgba(0, 0, 0, 0.15);
}

.about-section .image-section .img-box .no-class {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--main-color);
  padding: 5px;
  left: -15px;
  -webkit-box-shadow: 2.5px 4.33px 25px 0px rgba(233, 179, 14, 0.4);
  box-shadow: 2.5px 4.33px 25px 0px rgba(233, 179, 14, 0.4);
}

.about-section .image-section .img-box .no-class h3 {
  font-size: calc(14px + (24 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: white;
  margin-bottom: 0;
  font-weight: 700;
}

/*.about-section .about-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding-left: 60px; }*/

  .about-section .about-text h5 {
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-style: italic;
    color: #adadad;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: -2px;
  }

  .about-section .about-text h5 span {
    color: var(--main-color);
  }

  .about-section .about-text h3 {
    font-size: calc(16px + (24 - 16) * ((100vw - 320px) / (1920 - 320)));
    text-transform: capitalize;
    font-weight: 800;
    letter-spacing: 0.001em;
    margin-bottom: 35px;
  }

  .about-section .about-text h2 {
    font-size: calc(18px + (45 - 18) * ((100vw - 320px) / (1920 - 320)));
    color: var(--main-color);
    font-weight: 800;
    margin-bottom: 35px;
  }

  .about-section .about-text p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 25px;
  }

  .about-section.three-image .image-section .img-box+.img-box {
    margin-left: 45px;
  }

  .about-section.three-image .about-text {
    padding-left: 20px;
  }

  .about-section.three-image .about-text h5 {
    font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: 30px;
  }

  .about-section.three-image .about-text h2 {
    color: var(--main-color);
    font-size: calc(18px + (40 - 18) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: 10px;
  }

  .about-section.three-image .about-text h2 span {
    font-size: calc(16px + (30 - 16) * ((100vw - 320px) / (1920 - 320)));
    text-transform: lowercase;
    margin-bottom: 0;
    display: block;
    margin-top: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
  }

  .about-section.three-image .about-text p {
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  }

  .about-section.about_page .image-section .img-box:nth-child(odd) {
    margin-bottom: 40px;
  }

  .about-section.about_page .image-section .img-box:nth-child(odd) .title-box {
    bottom: -40px;
  }

  .about-section.about_page .image-section .img-box:nth-child(even) {
    margin-top: 40px;
  }

  .about-section.about_page .image-section .img-box:nth-child(even) .title-box {
    top: -40px;
  }

  .about-section.about_page .image-section .img-box .title-box {
    padding: 20px;
    background-color: white;
    display: inline-block;
    text-align: center;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-box-shadow: -2px 0px 20px 0px rgba(0, 0, 0, 0.08);
    box-shadow: -2px 0px 20px 0px rgba(0, 0, 0, 0.08);
    min-width: 162px;
  }

  .about-section.about_page .image-section .img-box .title-box h3 {
    font-size: calc(14px + (24 - 14) * ((100vw - 320px) / (1920 - 320)));
    text-transform: capitalize;
    color: var(--main-color);
    margin-top: -4px;
    font-weight: 800;
    margin-bottom: 7px;
  }

  .about-section.about_page .image-section .img-box .title-box h6 {
    font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
    text-transform: uppercase;
    margin-bottom: -4px;
    word-break: break-word;
    color: gray;
  }

  .about-section.about_page .about-text {
    padding-left: 50px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .about-section.about_page .about-text .title-3 {
    text-align: left;
    margin-bottom: 35px;
  }

  .about-section.about_page .about-text .title-3 .title-label {
    text-transform: uppercase;
    -webkit-box-shadow: 5px 8.66px 20px 0px rgba(239, 63, 62, 0.22);
    box-shadow: 5px 8.66px 20px 0px rgba(239, 63, 62, 0.22);
  }

  .about-section.about_page .about-text h2 {
    font-weight: 700;
  }

  .about-section.about_page .about-text h2 span {
    font-size: calc(18px + (40 - 18) * ((100vw - 320px) / (1920 - 320)));
    text-transform: capitalize;
    margin-top: 20px;
  }

  .about-section.about_page .about-text .buttons-about {
    margin-top: 45px;
  }

  .about-section.about_page .about-text .buttons-about .btn+.btn {
    margin-left: 20px;
  }

  .about_section .about_img {
    position: relative;
    margin: 20px 0;
  }

  .about_section .about_img img {
    border-radius: 25px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .about_section .about_img .side-effect:after {
    content: "";
    position: absolute;
    top: -12px;
    height: calc(100% - 18px);
    background: url(../images/restaurant/about.html);
    border-radius: 25px;
    width: calc(100% - 65px);
    left: 76px;
    z-index: -1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-blend-mode: overlay;
    opacity: 0.3;
  }

  .about_section .about_img .side-effect:before {
    content: "";
    position: absolute;
    top: -20px;
    height: calc(100% - 44px);
    background: url(../images/restaurant/about.html);
    border-radius: 25px;
    width: calc(100% - 97px);
    left: 120px;
    z-index: -1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-blend-mode: overlay;
    opacity: 0.1;
  }

  .about_section .about_img .side-effect span:after {
    content: "";
    position: absolute;
    bottom: -12px;
    height: calc(100% - 18px);
    background: url(../images/restaurant/about.html);
    border-radius: 25px;
    width: calc(100% - 65px);
    right: 76px;
    z-index: -1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-blend-mode: overlay;
    opacity: 0.3;
  }

  .about_section .about_img .side-effect span:before {
    content: "";
    position: absolute;
    bottom: -20px;
    height: calc(100% - 44px);
    background: url(../images/restaurant/about.html);
    border-radius: 25px;
    width: calc(100% - 97px);
    right: 120px;
    z-index: -1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-blend-mode: overlay;
    opacity: 0.1;
  }

  .about_section .about_img:hover img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .about_section .about_img:hover .side-effect:before,
  .about_section .about_img:hover .side-effect:after {
    top: 0;
    left: 20px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .about_section .about_img:hover .side-effect span:after,
  .about_section .about_img:hover .side-effect span:before {
    bottom: 0;
    right: 20px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .about_section .about_content {
    margin-left: 85px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
  }

  .about_section .about_content h5 {
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
    color: #adadad;
    text-transform: capitalize;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 25px;
  }

  .about_section .about_content h5 span {
    color: var(--main-color);
  }

  .about_section .about_content h2 {
    font-size: calc(18px + (40 - 18) * ((100vw - 320px) / (1920 - 320)));
    color: var(--main-color);
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 30px;
  }

  .about_section .about_content p {
    font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: #b2b2b2;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 38px;
  }

  .about_section .about_content .about_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .about_section .about_content .about_bottom h6 {
    margin-left: 25px;
    background-color: #f7f7f7;
    color: #acacac;
    font-size: 14px;
    text-transform: capitalize;
    margin-bottom: 0;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 600;
  }

  .vtin-txt {
    background: #fff;
    margin: 80px 0 50px -97px;
    padding: 44px 15px 35px 50px;
    -webkit-box-shadow: 0px 2px 15px 0px rgb(189 189 189 / 75%);
    -moz-box-shadow: 0px 2px 15px 0px rgb(189 189 189 / 75%);
    box-shadow: 0px 2px 15px 0px rgb(189 189 189 / 75%);
  }
  .inr-midil h2 {
    padding: 10px 0 20px 0;
    margin: 0 0 0 0;
    color: #c92f80;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: bold;
  }
  .vtin-txt p {
    font-size: 20px;
    font-weight: 600;
    line-height: 35px;
  }
  .our-mission{
    background-color: #dee2e64d;
  }
  .vtin-img img{
    border: 15px solid transparent;
    border-radius: 4px;
  }

/*=====================
13. Ticket/video section css
==========================*/

.ticket-section .ticket-box {
  position: relative;
}

.ticket-section .ticket-box .image-box {
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 5px 8.66px 22px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 8.66px 22px 0px rgba(0, 0, 0, 0.3);
}

.ticket-section .ticket-box .image-box img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.ticket-section .ticket-box .image-box:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  top: 0;
  z-index: 0;
}

.ticket-section .ticket-box .image-box:hover:after {
  opacity: 1;
}

.ticket-section .ticket-box .image-box:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.ticket-section .ticket-box .content {
  padding: 50px 150px 50px 50px;
  background-color: white;
  position: absolute;
  left: -56%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-shadow: 11px 4px 40px 0px rgba(0, 0, 0, 0.11);
  box-shadow: 11px 4px 40px 0px rgba(0, 0, 0, 0.11);
}

.ticket-section .ticket-box .content .detail {
  max-width: 395px;
}

.ticket-section .ticket-box .content .detail h4 {
  font-size: calc(14px+(16 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 15px;
}

.ticket-section .ticket-box .content .detail h4 span {
  color: var(--main-color);
  font-weight: 900;
  font-size: calc(16px + (27 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.ticket-section .ticket-box .content .detail h3 {
  font-size: calc(18px + (24 - 18) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  font-weight: 900;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.ticket-section .ticket-box .content .detail p {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 25px;
  line-height: 1.5;
  color: #b2b2b2;
  font-weight: 600;
}

.ticket-section .ticket-box .content .barcode-design {
  position: absolute;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ticket-section .ticket-box .content:after {
  content: "";
  position: absolute;
  background-image: url(../images/zig-zag.png);
  right: -10px;
  height: 100%;
  width: 10px;
  top: 0;
}

.ticket-section .ticket-box .content:before {
  content: "";
  position: absolute;
  background-image: url(../images/zig-zag.png);
  left: -10px;
  height: 100%;
  width: 10px;
  top: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.ticket-section .ticket-box .ticket-title {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  right: -11%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
}

.ticket-section .ticket-box .ticket-title h6 {
  background-color: white;
  padding: 10px;
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 0;
  text-transform: capitalize;
  font-weight: 800;
}

.ticket-section .ticket-box .ticket-title span {
  background-color: red;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
  color: white;
}

.ticket-section .slick-prev,
.ticket-section .slick-next {
  font-family: themify;
  right: 40px;
  left: unset;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.ticket-section .slick-prev:before,
.ticket-section .slick-next:before {
  color: var(--main-color);
  background-color: white;
  opacity: 1;
  padding: 10px;
}

.ticket-section .slick-prev:hover,
.ticket-section .slick-next:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.5) 5px 8.66px 40px 0px;
  box-shadow: rgba(0, 0, 0, 0.5) 5px 8.66px 40px 0px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.ticket-section .slick-next {
  top: calc(50% - 30px);
}

.ticket-section .slick-next:before {
  font-family: themify;
  content: "\e649";
}

.ticket-section .slick-prev {
  top: calc(50% + 30px);
}

.ticket-section .slick-prev:before {
  font-family: themify;
  content: "\e64a";
}

.ticket-section.white-section .ticket-box .ticket-title {
  right: -9%;
}

.ticket-section.white-section .ticket-box .content .detail h4 {
  margin-bottom: 20px;
}

.ticket-section.white-section .ticket-box .content .detail h2 {
  font-weight: 800;
  margin-bottom: 10px;
}

.ticket-section.white-section .ticket-box .content .detail h6 {
  font-size: 14px;
  color: #adadad;
  text-transform: capitalize;
  font-weight: 800;
  margin-bottom: 10px;
}

.ticket-section.white-section .ticket-box .content .detail h6 span {
  color: var(--main-color);
}

.ticket-section.white-section .slick-prev,
.ticket-section.white-section .slick-next {
  -webkit-box-shadow: rgba(0, 0, 0, 0.5) 5px 8.66px 40px 0px;
  box-shadow: rgba(0, 0, 0, 0.5) 5px 8.66px 40px 0px;
}

.ticket-section.white-section .slick-prev:hover,
.ticket-section.white-section .slick-next:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.8) 5px 8.66px 40px 0px;
  box-shadow: rgba(0, 0, 0, 0.8) 5px 8.66px 40px 0px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.video-section {
  padding: 170px 0;
}

.video-section.parallax-img {
  background-color: rgba(0, 0, 0, 0.35);
  background-blend-mode: overlay;
}

.video-section .basic-section h2 {
  font-family: Dancing Script;
  font-size: calc(25px + (65 - 25) * ((100vw - 320px) / (1920 - 320)));
  color: white;
  text-align: center;
  font-weight: 700;
  line-height: 0.8;
  margin-bottom: 35px;
}

.video-section .basic-section h4 {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.video-section .basic-section .video-icon {
  position: relative;
  cursor: pointer;
  top: 0;
  left: 0;
  -webkit-transform: none;
  transform: none;
  margin: 0 auto;
}

.video-section .basic-section .video-icon .animation-circle-inverse {
  background: rgba(214, 36, 35, 0.51);
}

.video-section .basic-section .video-icon .animation-circle-inverse i {
  background: rgba(214, 36, 35, 0.5);
  border-radius: 15px;
  opacity: 0.8;
  z-index: -1;
}

.video-section .basic-section .video-icon .animation-circle-inverse i:nth-child(2) {
  -webkit-animation: icon 3s linear infinite;
  animation: icon 3s linear infinite;
}

@-webkit-keyframes icon {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
}

@keyframes icon {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
}

.video_section {
  padding: 138px 0;
  position: relative;
  overflow: hidden;
}

.video_section .video-image {
  position: relative;
  z-index: 1;
}

.video_section .video-image img {
  border-radius: 30px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.video_section .video-image .video-icon {
  -webkit-box-shadow: -1px 0px 25px 7px rgba(0, 0, 0, 0.5);
  box-shadow: -1px 0px 25px 7px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.video_section .video-image .video-icon:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.06);
  transform: translate(-50%, -50%) scale(1.06);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.video_section .video-image .side-effect:after {
  content: "";
  position: absolute;
  top: 15px;
  height: calc(100% - 30px);
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  width: calc(100% + 30px);
  left: -15px;
  z-index: -1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.video_section .video-image .side-effect:before {
  content: "";
  position: absolute;
  top: 35px;
  height: calc(100% - 70px);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  width: calc(100% + 60px);
  left: -30px;
  z-index: -1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.video_section .video-image:hover img {
  -webkit-transform: translateY(-25px);
  transform: translateY(-25px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.video_section .video-image:hover .side-effect:after {
  left: 10px;
  width: calc(100% + 10px);
  top: 0;
  height: calc(100% - 10px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.video_section .video-image:hover .side-effect:before {
  width: 100%;
  top: 35px;
  left: 38px;
  height: calc(100% - 30px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.video_section .video-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.video_section .video-content h5 {
  color: white;
  font-weight: 700;
  text-transform: unset;
  margin-bottom: 30px;
  margin-top: -3px;
  font-style: italic;
}

.video_section .video-content h5 span {
  color: var(--main-color);
}

.video_section .video-content h2 {
  font-size: calc(22px + (60 - 22) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  font-weight: 700;
  color: white;
  margin-bottom: 26px;
}

.video_section .video-content h2 span {
  font-size: calc(22px + (40 - 22) * ((100vw - 320px) / (1920 - 320)));
  padding-left: 20px;
  margin-left: 5px;
  position: relative;
}

.video_section .video-content h2 span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 3px;
  height: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: white;
}

.video_section .video-content p {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-right: 10px;
}

.video_section .video-content .bottom-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 35px;
}

.video_section .video-content .bottom-section .timer {
  margin-bottom: 35px;
}

.video_section .video-content .bottom-section .info-btn {
  margin-left: 25px;
}

.video_section .video-content .bottom-section .info-btn h6 {
  font-size: 14px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 10px 16px;
}

.video_section .video-content .bottom-section .info-btn.red-info {
  margin-left: 10px;
}

.video_section .video-content .bottom-section .info-btn.red-info h6 {
  color: var(--main-color);
}

.video_section .offer-text {
  position: absolute;
  right: -90px;
  top: 41%;
}

.video_section .offer-text h6 {
  color: white;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 700;
  position: relative;
}

.video_section .offer-text h6 span {
  position: relative;
  display: inline-block;
  -webkit-animation: ani 1s infinite alternate cubic-bezier(0.86, 0, 0.07, 1);
  animation: ani 1s infinite alternate cubic-bezier(0.86, 0, 0.07, 1);
}

.video_section .offer-text h6 span:nth-last-child(1n) {
  -webkit-animation-delay: -0.1666666667s;
  animation-delay: -0.1666666667s;
}

.video_section .offer-text h6 span:nth-last-child(2n) {
  -webkit-animation-delay: -0.3333333333s;
  animation-delay: -0.3333333333s;
}

.video_section .offer-text h6 span:nth-last-child(3n) {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.video_section .offer-text h6:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: white;
  top: 5px;
  right: -100px;
  background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(231, 56, 39, 0)));
  background: linear-gradient(to right, white 0%, rgba(231, 56, 39, 0) 100%);
}

.timer li {
  font-size: 14px;
  list-style-type: none;
  padding: 10px 24px;
  text-transform: capitalize;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  text-align: center;
  font-weight: 700;
  border-radius: 15px;
  margin-right: 25px;
}

.timer li:last-child {
  margin-right: 0;
}

.timer li span {
  display: block;
  font-size: calc(18px + (40 - 18) * ((100vw - 320px) / (1920 - 320)));
}

.video-icon {
  width: 80px;
  height: 55px;
  background-color: #d62423;
  border-radius: 15px;
  -webkit-box-shadow: 2.5px 4.33px 25px 0px rgba(214, 36, 35, 0.6);
  box-shadow: 2.5px 4.33px 25px 0px rgba(214, 36, 35, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  cursor: pointer;
}

.video-icon span {
  width: 0;
  position: absolute;
  height: 0;
  border-top: 12px solid transparent;
  border-left: 24px solid white;
  border-bottom: 12px solid transparent;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.video-slider {
  height: 227px;
  width: auto;
}

/*=====================
14. Gallery section css
==========================*/

.gallery-box {
  position: relative;
  overflow: hidden;
}

.gallery-box .gallery-img {
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.gallery-box .gallery-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.63)), to(rgba(231, 56, 39, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.63) 0%, rgba(231, 56, 39, 0) 100%);
  background-blend-mode: overlay;
  -webkit-box-shadow: inset 0px -200px 120px -53px rgba(0, 0, 0, 0.6);
  box-shadow: inset 0px -200px 120px -53px rgba(0, 0, 0, 0.6);
}

.gallery-box .gallery-content {
  position: absolute;
  text-align: center;
  bottom: 30px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
}

.gallery-box .gallery-content h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.gallery-box .gallery-content .btn {
  padding: 8px 18px;
  line-height: 1;
}

.gallery-box:hover .gallery-img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.gallery-box:hover .gallery-content {
  bottom: 40px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

.gallery_box .gallery-img {
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.gallery_box .gallery-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.63)), to(rgba(231, 56, 39, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.63) 0%, rgba(231, 56, 39, 0) 100%);
  background-blend-mode: overlay;
}

.gallery_box .gallery-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.gallery_box .gallery-content h3 {
  color: white;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.gallery_box .view-cls {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  right: 40px;
  bottom: 40px;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.gallery_box .view-cls i {
  color: white;
}

.gallery_box:after {
  content: "";
  position: absolute;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(58%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 58%, rgba(0, 0, 0, 0.75) 100%);
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.gallery_box:hover .gallery-img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.gallery_box:hover .view-cls {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-title {
  display: none;
}

/*=====================
15. Category section css
==========================*/

.special-section .special-box {
  -webkit-box-shadow: 5px 8.66px 30px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 5px 8.66px 30px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 1px 9px 0px rgba(228, 228, 228, 0.7);
  box-shadow: 0px 1px 9px 0px rgba(228, 228, 228, 0.7);
}

.special-section .special-box.p-0 .special-img .top-icon {
  top: 10px;
  right: 10px;
}

.special-section .special-box .special-img {
  position: relative;
  overflow: hidden;
}

.special-section .special-box .special-img .bg-size {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.special-section .special-box .special-img .label {
  position: absolute;
  left: 30px;
  top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: white;
}

.special-section .special-box .special-img .label h3 {
  padding: 7px 12px;
  font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 0;
  background-color: white;
  color: var(--main-color);
  font-weight: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.special-section .special-box .special-img .label h3 del {
  font-size: calc(12px + (16 - 12) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  margin-right: 3px;
}

.special-section .special-box .special-img .label i {
  padding: 12px 14px;
  background-color: var(--main-color);
  color: white;
  -webkit-box-shadow: 2.5px 4.33px 25px 0px rgba(89, 68, 5, 0.4);
  box-shadow: 2.5px 4.33px 25px 0px rgba(89, 68, 5, 0.4);
}

.special-section .special-box .special-img .content-inner {
  position: absolute;
  width: 60%;
  bottom: -70px;
  background-color: white;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  padding: 15px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.special-section .special-box .special-img .content-inner h6 {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 500;
  color: var(--main-color);
  text-transform: uppercase;
  margin-bottom: -4px;
}

.special-section .special-box .special-img .content-inner h5 {
  font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: -7px;
  text-transform: capitalize;
}

.special-section .special-box .special-img .content_inner {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 30px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(231, 56, 39, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(231, 56, 39, 0) 100%);
}

.special-section .special-box .special-img .content_inner h6 {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  margin-bottom: -4px;
}

.special-section .special-box .special-img .content_inner h5 {
  font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
  color: white;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: -7px;
  text-transform: capitalize;
}

.special-section .special-box .special-img .top-icon {
  position: absolute;
  top: 10px;
  right: 10px;
}

.special-section .special-box .special-img .top-icon i {
  color: white;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  padding: 8px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 100%;
}

.special-section .special-box .special-content {
  padding: 40px;
}

.special-section .special-box .special-content h5 {
  color: var(--main-color);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 15px;
  margin-top: -7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.special-section .special-box .special-content p {
  font-size: 14px;
  color: #999999;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 15px;
}

.special-section .special-box .special-content .bottom-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.special-section .special-box .special-content .bottom-part .package-cls {
  padding-left: 20px;
  color: var(--main-color);
  font-weight: 800;
}

.special-section .special-box.cab-box {
  padding: 30px;
}

.special-section .special-box:hover {
  -webkit-box-shadow: 5px 8.66px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 8.66px 30px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.special-section .special-box:hover .special-img .bg-size {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.special-section .special-box:hover .special-img .content-inner {
  bottom: 15px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.special-section .slick-slide>div {
  margin: 0 25px;
}

.special-section .slick-list {
  margin-left: -25px;
  margin-right: -25px;
}

.special-section.section-b-space {
  padding-bottom: 70px;
}

.special-section.grid-box {
  margin-top: 30px;
}

.special-section.grid-box .special-box {
  position: relative;
  background-color: white;
}

.special-section.grid-box .special-box .special-content {
  padding: 20px 25px 25px;
  position: relative;
}

.special-section.grid-box .special-box .special-content h5 {
  font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  margin-bottom: 0px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: -4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  max-width: 280px;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}

.special-section.grid-box .special-box .special-content h5 span {
  color: #9a9a9a;
  font-size: 14px;
  margin-left: 8px;
  font-weight: 500;
  vertical-align: 3px;
}

.special-section.grid-box .special-box .special-content h5 span i {
  color: #a7a7a7;
  margin-right: 3px;
  font-size: 10px;
}

.special-section.grid-box .special-box .special-content p {
  margin-bottom: 10px;
  color: #9a9a9a;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.special-section.grid-box .special-box .special-content .bottom-section .rating span {
  color: rgba(0, 0, 0, 0.65);
  font-size: 12px;
  font-weight: 600;
  margin-left: 18px;
}

.special-section.grid-box .special-box .special-content .bottom-section .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 13px;
  margin-bottom: -6px;
}

.special-section.grid-box .special-box .special-content .bottom-section .price del {
  font-size: 14px;
  color: var(--main-color);
  font-weight: 700;
  margin-right: 10px;
}

.special-section.grid-box .special-box .special-content .bottom-section .price span {
  color: #333333;
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 800;
}

.special-section.grid-box .special-box .special-content .bottom-section .price .package-cls {
  padding-left: 20px;
  color: var(--main-color);
  font-weight: 800;
  font-size: 12px;
}

.special-section.grid-box .special-box .special-content .bottom-section .price .facility-detail {
  margin-left: 7px;
}

.special-section.grid-box .special-box .special-content .bottom-section .price .facility-detail span {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  font-size: 12px;
  text-transform: capitalize;
  padding: 2px 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.special-section.grid-box .special-box .special-content .tour-detail span {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 600;
  color: var(--main-color);
  text-transform: capitalize;
}

.special-section.grid-box .special-box .special-content .tour-detail .include-sec {
  margin-top: 14px;
}

.special-section.grid-box .special-box .special-content .tour-detail .include-sec ul {
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.78);
  margin-top: 10px;
}

.special-section.grid-box .special-box .special-content .tour-detail .include-sec ul li {
  margin-right: 12px;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-align: center;
}

.special-section.grid-box .special-box .special-content .tour-detail .include-sec ul li img {
  width: 20px;
  display: block;
  margin: 0 auto;
}

.special-section.grid-box .special-box .special-content .tour-detail .include-sec ul li i {
  font-size: 14px;
  margin-right: 5px;
  display: block;
}

.special-section.grid-box .special-box .special-content .tour-detail .include-sec ul li.not-include {
  opacity: 0.4;
}

.special-section.grid-box .special-box .special-content .tour-detail h6 {
  margin-top: 4px;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.78);
  max-width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.special-section.grid-box .special-box .special-content .tour-detail h6 i {
  font-size: 12px;
  color: gray;
}

.special-section.grid-box .special-box .special-content .tour-detail .bottom-section .price {
  display: block;
  margin-top: 15px;
}

.special-section.grid-box .special-box .special-content .tour-detail .bottom-section .price h6 {
  color: var(--main-color);
  font-size: calc(18px + (24 - 18) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 800;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.special-section.grid-box .special-box .special-content .tour-detail .bottom-section .price h6 del {
  font-size: 14px;
  color: var(--main-color);
  font-weight: 700;
  margin-right: 10px;
}

.special-section.grid-box .special-box .special-content .tour-detail .bottom-section .price span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.57);
  text-transform: capitalize;
}

.special-section.grid-box .special-box .special-content .tour-detail .nowrap-cls {
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.special-section.grid-box .special-box .special-content.restaurant-detail h5 {
  margin-top: -4px;
}

.special-section.grid-box .special-box .special-content.restaurant-detail h5 span {
  font-size: 14px;
  margin-left: 10px;
  font-weight: 500;
  padding: 3px 10px;
  color: white;
  display: inline-block;
}

.special-section.grid-box .special-box .special-content.restaurant-detail h5 span.positive {
  background-color: rgba(0, 128, 0, 0.83);
}

.special-section.grid-box .special-box .special-content.restaurant-detail h5 span.nagative {
  background-color: rgba(255, 0, 0, 0.83);
}

.special-section.grid-box .special-box .special-content.restaurant-detail h5 span i {
  color: white;
  margin-right: 0;
}

.special-section.grid-box .special-box .special-content.restaurant-detail ul li {
  display: block;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  line-height: 24px;
  position: relative;
  padding-left: 15px;
  color: gray;
}

.special-section.grid-box .special-box .special-content.restaurant-detail ul li:last-child {
  margin-bottom: -4px;
}

.special-section.grid-box .special-box .special-content.restaurant-detail ul li:after {
  content: "";
  width: 6px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.85);
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 0;
}

.special-section.grid-box .special-box .special-content.cab-detail ul li {
  display: block;
  font-size: 16px;
  text-transform: capitalize;
}

.special-section.grid-box .special-box .special-content.cab-detail ul li span {
  font-weight: 600;
}

.special-section.grid-box .special-box .special-content.cab-detail ul li+li {
  margin-top: 5px;
}

.special-section.grid-box .special-box .special-content.cab-detail .button-botton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.special-section.grid-box .special-box .special-content.cab-detail .button-botton a:last-child {
  margin-left: 10px;
}

.special-section.grid-box .special-box .special-content.cab-detail .button-botton .btn {
  font-size: 14px;
  text-transform: capitalize;
  padding: 5px 12px;
  width: 50%;
  margin-top: 10px;
  background-color: transparent;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.special-section.grid-box .special-box .special-content.cab-detail .button-botton .btn:hover {
  color: white;
  background-color: var(--main-color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.special-section.grid-box .special-box.cab-box .special-content {
  padding: 10px 0 0;
}

.special-section.grid-box .special-box.cab-box .special-content ul li {
  display: block;
  font-size: 16px;
  text-transform: capitalize;
  position: relative;
  padding-left: 15px;
}

.special-section.grid-box .special-box.cab-box .special-content ul li:after {
  content: "";
  width: 6px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.85);
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.special-section.grid-box .special-box.cab-box .special-content ul li span {
  font-weight: 600;
}

.special-section.grid-box .special-box.cab-box .special-content ul li+li {
  margin-top: 5px;
}

.special-section.grid-box .special-box.cab-box .special-content .button-botton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.special-section.grid-box .special-box.cab-box .special-content .button-botton a:last-child {
  margin-left: 10px;
}

.special-section.grid-box .special-box.cab-box .special-content .button-botton .btn {
  font-size: 14px;
  text-transform: capitalize;
  padding: 10px 12px;
  width: 50%;
  margin-top: 10px;
  background-color: transparent;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.special-section.grid-box .special-box.cab-box .special-content .button-botton .btn:hover {
  color: white;
  background-color: var(--main-color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.special-section.grid-box .special-box.slider-sec .slick-prev {
  left: 1px;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: transparent;
  height: 36px;
}

.special-section.grid-box .special-box.slider-sec .slick-prev:before {
  content: "\f053";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.special-section.grid-box .special-box.slider-sec .slick-next {
  right: 0;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: transparent;
  height: 36px;
}

.special-section.grid-box .special-box.slider-sec .slick-next:before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.special-section.grid-box .special-box.slider-sec:hover .special-img .bg-size {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.special-section.grid-box .special-box.slider-sec:hover .slick-next,
.special-section.grid-box .special-box.slider-sec:hover .slick-prev {
  background-color: #252525;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.special-section.grid-box .special-box .label-offer {
  position: absolute;
  background-color: var(--main-color);
  color: white;
  font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  top: 10px;
  left: -10px;
  padding: 2px 10px;
  font-weight: 800;
}

.special-section.grid-box .special-box .label-offer:after {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-top: 15px solid #896908;
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
}

.special-section.related-box {
  margin-bottom: -3px;
  overflow: hidden;
}

.category-section {
  overflow: hidden;
}

.category-section .category-box {
  border-radius: 25px;
  margin-bottom: 15px;
  position: relative;
}

.category-section .category-box .bg-size,
.category-section .category-box img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 25px;
}

.category-section .category-box .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(rgba(231, 56, 39, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(231, 56, 39, 0) 100%);
}

.category-section .category-box .top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 25px;
  left: 25px;
}

.category-section .category-box .top-bar .offer {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px 13px;
  background-color: var(--main-color);
  border-radius: 15px;
  text-transform: uppercase;
  font-size: 12px;
  margin-right: 10px;
}

.category-section .category-box .top-bar h5 {
  font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  padding: 3px 10px;
  background-color: white;
  border-radius: 20px;
  margin-bottom: 0;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: 0.09em;
}

.category-section .category-box .top-bar h5 del {
  font-size: 12px;
  margin-right: 5px;
}

.category-section .category-box .bottom-bar {
  position: absolute;
  bottom: 25px;
  left: 25px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-section .category-box .bottom-bar .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 4px;
}

.category-section .category-box .bottom-bar .top h5 {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: white;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 0;
  margin-right: 15px;
}

.category-section .category-box .bottom-bar .top h6 {
  color: white;
  margin-bottom: 0;
  font-weight: 700;
  margin-left: 20px;
  font-size: 14px;
}

.category-section .category-box .bottom-bar p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.category-section .category-box .like-cls {
  position: absolute;
  right: 25px;
  top: 25px;
}

.category-section .category-box .like-cls i {
  color: #e1002c;
  background-color: white;
  padding: 8px;
  border-radius: 100%;
  font-size: 16px;
}

.category-section .category-box .like-cls i .effect {
  border-radius: 50%;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  -webkit-transition: height 5s ease, width 5s ease;
  transition: height 5s ease, width 5s ease;
  z-index: 0;
  opacity: 0;
}

.category-section .category-box .like-cls i .effect:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-animation: effect 2s linear 1s infinite;
  animation: effect 2s linear 1s infinite;
}

.category-section .category-box .side-effect:after {
  content: "";
  position: absolute;
  top: 8px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  width: calc(100% - 16px);
  left: 8px;
  z-index: -1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-section .category-box .side-effect:before {
  content: "";
  position: absolute;
  top: 15px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  width: calc(100% - 66px);
  left: 33px;
  z-index: -1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-section .category-box:hover .like-cls .effect {
  opacity: 1;
}

.category-section .category-box:hover .bottom-bar {
  bottom: 34px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-section .slick-slide>div {
  margin: 0 25px;
}

.category-section .slick-list {
  margin-left: -25px;
  margin-right: -25px;
}

.category-sec {
  overflow: hidden;
}

.category-sec .category-box {
  border-radius: 25px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-sec .category-box .img-category {
  border-radius: 25px;
  position: relative;
  z-index: 1;
}

.category-sec .category-box .img-category .bg-size,
.category-sec .category-box .img-category img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 25px;
}

.category-sec .category-box .img-category .top-bar {
  position: absolute;
  top: 25px;
  left: 25px;
}

.category-sec .category-box .img-category .top-bar .offer {
  color: white;
  display: inline-block;
  padding: 5px 13px;
  background-color: var(--main-color);
  border-radius: 15px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}

.category-sec .category-box .img-category .top-bar h5 {
  font-size: calc(16px + (22 - 16) * ((100vw - 320px) / (1920 - 320)));
  color: white;
  padding: 3px 10px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  margin-bottom: 0;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: 0.09em;
}

.category-sec .category-box .img-category .top-bar h5 del {
  font-size: 12px;
  margin-right: 5px;
}

.category-sec .category-box .img-category .like-cls {
  position: absolute;
  right: 13%;
  bottom: -22px;
}

.category-sec .category-box .img-category .like-cls i {
  color: #e1002c;
  background-color: white;
  padding: 12px;
  border-radius: 100%;
  -webkit-box-shadow: 2.5px 4.33px 18px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 2.5px 4.33px 18px 0px rgba(0, 0, 0, 0.06);
  font-size: 21px;
}

.category-sec .category-box .img-category .like-cls i .effect {
  border-radius: 50%;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  -webkit-transition: height 5s ease, width 5s ease;
  transition: height 5s ease, width 5s ease;
  z-index: 0;
  opacity: 0;
}

.category-sec .category-box .img-category .like-cls i .effect:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-animation: effect 2s linear 1s infinite;
  animation: effect 2s linear 1s infinite;
}

.category-sec .category-box .img-category .side-effect:after {
  content: "";
  position: absolute;
  top: 8px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  width: calc(100% - 16px);
  left: 8px;
  z-index: -1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-sec .category-box .img-category .side-effect:before {
  content: "";
  position: absolute;
  top: 15px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  width: calc(100% - 66px);
  left: 33px;
  z-index: -1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-sec .category-box .content-category {
  padding: 60px 14px 25px 14px;
  background-color: white;
  border-radius: 0 0 25px 25px;
  -webkit-box-shadow: 0px 1px 17px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 1px 17px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  margin-top: -20px;
}

.category-sec .category-box .content-category .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 8px;
  margin-top: -3px;
}

.category-sec .category-box .content-category .top h3 {
  margin-bottom: 0;
  font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  color: #333333;
  font-weight: 800;
  margin-right: 15px;
}

.category-sec .category-box .content-category p {
  font-size: 14px;
  color: #a5a5a5;
  font-weight: 600;
  margin-bottom: 10px;
}

.category-sec .category-box .content-category h6 {
  font-size: 14px;
  color: #858585;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}

.category-sec .category-box .content-category h6 span {
  color: var(--main-color);
  float: right;
}

.category-sec .category-box:hover {
  -webkit-box-shadow: 0px 1px 17px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 1px 17px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-sec .category-box:hover .img-category .like-cls i .effect {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-sec .slick-slide>div {
  margin: 0 25px;
}

.category-sec .slick-list {
  margin-left: -25px;
  margin-right: -25px;
}

.category-sec.section-b-space {
  padding-bottom: 60px;
}

.category-wrapper {
  overflow: hidden;
}

.category-wrapper .title-1.title-5 p {
  margin-bottom: 40px;
}

.category-wrapper .category-wrap {
  position: relative;
  margin: 30px 0;
}

.category-wrapper .category-wrap .category-img {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-wrapper .category-wrap .category-img img {
  width: 230px;
  height: 230px;
  border-radius: 25px;
}

.category-wrapper .category-wrap .category-img .side-effect:after {
  content: "";
  position: absolute;
  top: 35px;
  height: calc(100% - 70px);
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  width: 100%;
  left: 16px;
  z-index: -1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-wrapper .category-wrap .category-img .side-effect:before {
  content: "";
  position: absolute;
  top: 15px;
  height: calc(100% - 30px);
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 25px;
  width: 100%;
  left: 8px;
  z-index: -1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-wrapper .category-wrap .category-content {
  margin-left: 55px;
  background-color: white;
  border-radius: 25px;
  padding: 55px 30px 55px 220px;
  -webkit-box-shadow: 2.5px 4.33px 20px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 2.5px 4.33px 20px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-wrapper .category-wrap .category-content .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
  margin-top: -4px;
  position: relative;
}

.category-wrapper .category-wrap .category-content .top h3 {
  text-transform: capitalize;
  font-weight: 800;
  margin-bottom: 0;
}

.category-wrapper .category-wrap .category-content .top h6 {
  font-size: 14px;
  color: var(--main-color);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
  margin-left: 25px;
}

.category-wrapper .category-wrap .category-content .top .like-cls i {
  position: absolute;
  font-size: 16px;
  right: 0;
  top: -3px;
  color: #e1002c;
  background-color: rgba(225, 0, 44, 0.05);
  padding: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
}

.category-wrapper .category-wrap .category-content .top .like-cls i .effect {
  border-radius: 50%;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  -webkit-transition: height 5s ease, width 5s ease;
  transition: height 5s ease, width 5s ease;
  z-index: 0;
  opacity: 0;
}

.category-wrapper .category-wrap .category-content .top .like-cls i .effect:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid #e1002c;
  -webkit-animation: effect 2s linear 1s infinite;
  animation: effect 2s linear 1s infinite;
}

.category-wrapper .category-wrap .category-content .rating {
  margin-bottom: 15px;
}

.category-wrapper .category-wrap .category-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #757575;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

.category-wrapper .category-wrap .category-content .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.category-wrapper .category-wrap .category-content .bottom h3 {
  font-size: calc(18px + (24 - 18) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  font-weight: 800;
  margin-bottom: 0;
}

.category-wrapper .category-wrap .category-content .bottom h3 del {
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  color: #c5c5c5;
  padding-right: 10px;
}

.category-wrapper .category-wrap .category-content .bottom .coupon-code {
  text-transform: capitalize;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px dashed #9a9a9a;
  color: #9a9a9a;
  font-weight: 800;
  display: inline-block;
  margin-left: 15px;
  margin-bottom: 0;
}

.category-wrapper .category-wrap:hover .category-img {
  left: 15px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-wrapper .category-wrap:hover .category-img .side-effect:before {
  left: -8px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-wrapper .category-wrap:hover .category-img .side-effect:after {
  left: -15px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-wrapper .category-wrap:hover .category-content {
  -webkit-box-shadow: 2.5px 4.33px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 2.5px 4.33px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-wrapper .category-wrap:hover .category-content .like-cls i .effect {
  opacity: 0.4;
}

.category-wrapper.section-b-space {
  padding-bottom: 70px;
}

.category-wrapper .slick-slide>div {
  margin: 0 25px;
}

.category-wrapper .slick-list {
  margin-left: -25px;
  margin-right: -25px;
}

.category-bg {
  overflow: hidden;
}

.category-bg .slick-slide>div {
  margin: 0 15px;
}

.category-bg .slick-list {
  margin-left: -15px;
  margin-right: -15px;
}

.category-bg .category-block {
  padding: 90px 32px 50px;
  background-color: var(--main-color);
  fff;
  border-radius: 25px;
  margin: 75px 0 10px;
  -webkit-box-shadow: 1px 0px 11px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 1px 0px 11px 0 rgba(0, 0, 0, 0.04);
  position: relative;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-bg .category-block .category-img {
  position: absolute;
  top: -85px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 214px !important;
  height: auto;
}

.category-bg .category-block .category-img img {
  -webkit-animation: none;
  animation: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-bg .category-block .rating {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
}

.category-bg .category-block h6 {
  font-size: 12px;
  color: #9a9a9a;
  text-transform: uppercase;
  padding: 6px 12px;
  background-color: #f7f7f7;
  border-radius: 5px;
  display: inline-block;
  letter-spacing: 0.07em;
  font-weight: 800;
  margin-bottom: 16px;
}

.category-bg .category-block h6 span {
  color: #000000;
  font-size: 20px;
}

.category-bg .category-block h4 {
  color: var(--main-color);
  font-weight: 800;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.category-bg .category-block h5 {
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 20px;
  line-height: 1.4;
}

.category-bg .category-block:hover {
  -webkit-box-shadow: 1px 0px 11px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 1px 0px 11px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-bg .category-block:hover .category-img img {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-bg.section-b-space {
  padding-bottom: 50px;
}

.routes-section .routes-box {
  border-radius: 25px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.routes-section .routes-box .routes-img {
  border-radius: 25px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.routes-section .routes-box .routes-img .price-round {
  position: absolute;
  left: -11px;
  bottom: -4px;
  background-color: #e71413;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.routes-section .routes-box .routes-img .price-round>div {
  margin-left: 10px;
}

.routes-section .routes-box .routes-img .price-round h6 {
  font-size: 14px;
  color: white;
  font-weight: 700;
  margin-bottom: 5px;
}

.routes-section .routes-box .routes-img .price-round h3 {
  font-size: calc(16px + (26 - 16) * ((100vw - 320px) / (1920 - 320)));
  color: white;
  font-weight: 800;
  margin-bottom: 0;
}

.routes-section .routes-box .routes-img .price-round:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #cf1211;
  border-radius: 100%;
  z-index: -1;
  top: 0;
  left: 8px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.routes-section .routes-box .routes-img .discount {
  position: absolute;
  top: 25px;
  left: 25px;
  background-color: var(--main-color);
  border-radius: 30px;
  padding: 5px 12px;
}

.routes-section .routes-box .routes-img .discount h6 {
  font-size: 12px;
  margin-bottom: 0;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
}

.routes-section .routes-box .routes-content {
  padding: 45px 25px 25px 25px;
  background-color: white;
  border-radius: 0 0 25px 25px;
  -webkit-box-shadow: 2.5px 4.33px 45px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 2.5px 4.33px 45px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 0;
  margin-top: -20px;
}

.routes-section .routes-box .routes-content .top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
}

.routes-section .routes-box .routes-content .top-bar h5 {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: #333333;
  font-weight: 900;
  text-transform: capitalize;
  margin-bottom: 0;
}

.routes-section .routes-box .routes-content .top-bar h6 {
  font-size: 12px;
  margin-bottom: 0;
  margin-left: auto;
  text-transform: capitalize;
  font-weight: 800;
  color: #858585;
}

.routes-section .routes-box .routes-content .bottom-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.routes-section .routes-box .routes-content .bottom-bar h6 {
  margin-bottom: 0;
  color: var(--main-color);
  font-size: 12px;
  text-transform: capitalize;
  font-weight: 800;
}

.routes-section .routes-box .routes-content .bottom-bar .rating {
  margin-left: auto;
}

.routes-section .routes-box:hover {
  -webkit-box-shadow: 1px 0px 11px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 1px 0px 11px 0 rgba(0, 0, 0, 0.2);
}

.routes-section .routes-box:hover .routes-img .price-round:after {
  left: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.top-category {
  padding: 0 105px;
}

.top-category .top_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 1px 10px 14px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 1px 10px 14px 1px rgba(0, 0, 0, 0.05);
}

.top-category .top_box .right-content {
  padding: 0 25px;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.top-category .top_box .right-content h5 {
  font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-category .top_box .right-content h5 i {
  font-size: 12px;
  color: #e1002c;
  margin-left: 10px;
}

.top-category .top_box .right-content p {
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 5px;
}

.top-category .top_box .right-content .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 6px;
}

.top-category .top_box .right-content .rating span {
  color: #ffcc33;
  margin-right: 8px;
  font-weight: 800;
}

.top-category .top_box .right-content h6 {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: #343434;
  font-weight: 800;
  margin-bottom: 0;
}

.top-category .top_box .right-content h6 del {
  font-size: 12px;
  color: #717171;
  margin-right: 10px;
}

.top-category .top_box .new-label {
  position: absolute;
  right: -20px;
  background-image: url(../images/label.html);
  bottom: -20px;
  background-size: cover;
  background-repeat: no-repeat;
  width: 66px;
  height: 66px;
}

.top-category .top_box .new-label span {
  font-size: 12px;
  font-weight: 900;
  text-transform: capitalize;
  color: white;
  position: absolute;
  right: 20px;
  bottom: 28px;
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
}

.top-category .slick-slide>div {
  margin: 0 25px;
}

.top-category .slick-list {
  margin-left: -25px;
  margin-right: -25px;
}

.top-category.margin-cls {
  margin-top: -70px;
}

.top-category.radius-cls .top_box {
  border-radius: 25px;
}

.category-part .category-block .category-image {
  border-radius: 100%;
  width: 70%;
  margin: 0 auto;
  margin-bottom: 15px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-part .category-block .category-image img {
  border-radius: 100%;
}

.category-part .category-block .category-image:hover {
  -webkit-box-shadow: -1px 7px 8px #b9b9b9;
  box-shadow: -1px 7px 8px #b9b9b9;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.category-part .category-block .category-details {
  text-align: center;
  text-transform: capitalize;
}

.category-part .category-block .category-details h3 {
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: 0;
}

.category-part .category-block .category-details h6 {
  margin-bottom: -2px;
  color: rgba(0, 0, 0, 0.7);
}

.category-part.radius-category .category-block .category-image {
  border-radius: 22px;
}

/*=====================
16. Filter section css
==========================*/

.filter-section {
  background-image: url("../images/restaurant/background.html");
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.filter-section .filters {
  position: relative;
}

.filter-section .filters .filter-btn {
  border-radius: 19px;
  background-color: white;
  -webkit-box-shadow: 0px 15px 40px 0px rgba(193, 0, 38, 0.25);
  box-shadow: 0px 15px 40px 0px rgba(193, 0, 38, 0.25);
  padding: 10px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  text-transform: capitalize;
}

.filter-section .filters .filter-btn h6 {
  color: var(--main-color);
  margin-bottom: 0;
  line-height: 1;
  text-transform: capitalize;
  font-weight: 800;
  padding-right: 15px;
  position: relative;
}

.filter-section .filters .filter-btn h6 i {
  position: absolute;
  right: 0;
  top: -3px;
}

.filter-section .filters .filter-content {
  position: absolute;
  top: 45px;
  right: 0;
  width: 100%;
  z-index: 1;
  background-color: #be0025;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.filter-section .filters .filter-content h4 {
  margin-bottom: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  margin-top: 5px;
  padding: 5px;
  cursor: pointer;
}

.filter-section .filters .filter-content li {
  display: block;
  color: white;
  margin-top: 6px;
  text-align: center;
  text-transform: capitalize;
  cursor: pointer;
}

.filter-section .filters .filter-content li:last-child {
  margin-bottom: 0;
}

.filter-section .top-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 70px;
}

.filter-section .top-section .title h2 {
  font-size: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
  color: white;
  text-transform: uppercase;
  font-weight: 800;
}

.filter-section .top-section .title h6 {
  font-size: 14px;
  color: white;
  opacity: 0.5;
  margin-bottom: 0;
}

.filter-section .top-section .coupon {
  margin: 0 auto;
}

.filter-section .top-section .coupon h6 {
  text-transform: capitalize;
  color: white;
  padding: 5px 10px;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  margin-bottom: 0;
}

.filter-section .content {
  margin-left: -40px;
  margin-right: -40px;
}

.filter-section .content .grid-item {
  padding: 0 40px;
}

.filter-section .content .grid-item .img-part {
  position: relative;
}

.filter-section .content .grid-item .img-part img {
  border-radius: 25px;
  width: 100%;
  -webkit-box-shadow: 1px 10px 14px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 1px 10px 14px 1px rgba(0, 0, 0, 0.16);
}

.filter-section .content .grid-item .img-part .up-btn {
  background-color: var(--main-color);
  -webkit-box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0.5);
  transform: translateX(-50%) scale(0.5);
  bottom: 15px;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.filter-section .content .grid-item .img-part .up-btn i {
  color: white;
  font-size: 18px;
}

.filter-section .content .grid-item .img-part:after {
  width: 70%;
  height: 70%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: var(--main-color);
  opacity: 0.702;
  position: absolute;
}

.filter-section .content .grid-item .filter-detail {
  opacity: 0.3;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.filter-section .content .grid-item .filter-detail h6 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.3em;
  margin-top: 15px;
  margin-bottom: 6px;
}

.filter-section .content .grid-item .filter-detail .rating i {
  font-size: 10px;
}

.filter-section .content .grid-item:hover .img-part .up-btn {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.filter-section .content .grid-item:hover .filter-detail {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*=====================
17. full banner section css
==========================*/

.full-banner {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.full-banner .banner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.full-banner .banner-content h5 {
  color: white;
  font-weight: 700;
  text-transform: capitalize;
  font-style: italic;
  margin-bottom: 30px;
  margin-top: -4px;
}

.full-banner .banner-content h5 span {
  color: var(--main-color);
}

.full-banner .banner-content h2 {
  font-size: calc(20px + (60 - 20) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
}

.full-banner .banner-content h2 span {
  font-size: calc(18px + (40 - 18) * ((100vw - 320px) / (1920 - 320)));
}

.full-banner .banner-content p {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 25px;
}

.full-banner .banner-content .price {
  font-size: calc(18px + (40 - 18) * ((100vw - 320px) / (1920 - 320)));
}

.full-banner .banner-content .price del {
  font-size: calc(16px + (25 - 16) * ((100vw - 320px) / (1920 - 320)));
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.full-banner .banner-content .bottom-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 35px;
}

.full-banner .banner-content .bottom-section .info-btn {
  margin-left: 25px;
}

.full-banner .banner-content .bottom-section .info-btn h6 {
  font-size: 14px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 10px 16px;
}

.full-banner .banner-content .bottom-section .info-btn.red-info {
  margin-left: 10px;
}

.full-banner .banner-content .bottom-section .info-btn.red-info h6 {
  color: var(--main-color);
}

.full-banner .offer-text {
  position: absolute;
  top: 20%;
  left: -64%;
}

.full-banner .offer-text .offer {
  padding: 3px 5px;
  background-color: var(--main-color);
  color: white;
  font-size: 10px;
  text-transform: uppercase;
  border-radius: 25px;
  font-weight: 700;
}

.full-banner .offer-text h6 {
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  margin-top: 10px;
}

.full-banner .offer-text h6 span {
  position: relative;
  display: inline-block;
  -webkit-animation: ani 1s infinite alternate cubic-bezier(0.86, 0, 0.07, 1);
  animation: ani 1s infinite alternate cubic-bezier(0.86, 0, 0.07, 1);
}

.full-banner .offer-text h6 span:nth-last-child(1n) {
  -webkit-animation-delay: -0.1666666667s;
  animation-delay: -0.1666666667s;
}

.full-banner .offer-text h6 span:nth-last-child(2n) {
  -webkit-animation-delay: -0.3333333333s;
  animation-delay: -0.3333333333s;
}

.full-banner .offer-text h6 span:nth-last-child(3n) {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.full-banner .offer-text h6:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: white;
  top: 5px;
  right: -100px;
  background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(231, 56, 39, 0)));
  background: linear-gradient(to right, white 0%, rgba(231, 56, 39, 0) 100%);
}

.full-banner.banner-section {
  background-image: url(../images/flights/bg-2.html);
  background-size: cover;
  background-position: center center;
}

.full-banner.banner-section .place-image {
  position: relative;
}

.full-banner.banner-section .place-image .animation-place .plane-l {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
  position: absolute;
  top: 22%;
  left: -11%;
}

.full-banner.banner-section .place-image .animation-place .plane-l img {
  width: 70%;
}

.full-banner.banner-section .place-image .animation-place .plane-r {
  position: absolute;
  right: 7%;
  top: 0;
  -webkit-animation: mover 1.1s infinite alternate;
  animation: mover 1.1s infinite alternate;
}

.full-banner.banner-section .place-image .animation-place .cloud-l {
  position: absolute;
  top: 0;
  left: 7%;
}

.full-banner.banner-section .place-image .animation-place .cloud-l img {
  width: 75%;
}

.full-banner.banner-section .place-image .animation-place .cloud-r {
  top: 0;
  position: absolute;
  right: 42%;
}

.full-banner.small-section {
  padding: 30px 0;
}

.full-banner.padding-cls {
  padding-top: calc(90px + (200 - 90) * ((100vw - 320px) / (1920 - 320)));
  padding-bottom: calc(90px + (200 - 90) * ((100vw - 320px) / (1920 - 320)));
}

.full-banner.overlay-banner {
  background-blend-mode: overlay;
  background-color: rgba(255, 255, 255, 0.7);
}

.full-banner.overlay-banner .banner-content h2 {
  color: var(--main-color);
}

.full-banner.overlay-banner .banner-content h5 {
  color: rgba(0, 0, 0, 0.8);
}

.full-banner.overlay-banner .banner-content p {
  color: rgba(0, 0, 0, 0.7);
}

.full-banner.overlay-banner .banner-content .bottom-section .info-btn h6 {
  color: var(--main-color);
  background-color: rgba(0, 0, 0, 0.05);
}

.food-banner {
  padding: 160px 0;
  position: relative;
  background-image: url("../images/restaurant/bg-2.html");
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: bottom;
}

.food-banner .food-content h3 {
  font-size: calc(22px + (60 - 22) * ((100vw - 320px) / (1920 - 320)));
  font-family: Pacifico, cursive;
  color: white;
  margin-bottom: 20px;
  margin-top: -4px;
}

.food-banner .food-content h2 {
  font-family: Bangers, cursive;
  font-size: calc(30px + (158 - 30) * ((100vw - 320px) / (1920 - 320)));
  color: white;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}

.food-banner .food-content h2 span {
  font-size: calc(16px + (28 - 16) * ((100vw - 320px) / (1920 - 320)));
  position: absolute;
  top: -20px;
  right: 0;
  font-family: Nunito;
  letter-spacing: 0.05em;
}

.food-banner .food-content .strip-cls {
  position: relative;
  display: inline-block;
  margin-top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.food-banner .food-content .strip-cls .timer {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-block;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.food-banner .food-content .strip-cls .timer li {
  padding: 0;
  background: none;
  color: var(--main-color);
  font-size: 14px;
  font-weight: 700;
  position: relative;
  margin: 0 18px;
}

.food-banner .food-content .strip-cls .timer li span {
  font-family: Bangers, cursive;
  font-size: calc(18px + (30 - 18) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 400;
  line-height: 1;
}

.food-banner .food-content .strip-cls .timer li:after {
  content: "";
  position: absolute;
  height: 20px;
  width: 2px;
  background-color: rgba(233, 179, 14, 0.3);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 45px;
}

.food-banner .food-content .strip-cls .timer li:last-child:after {
  display: none;
}

.food-banner .food-content .buttons {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 30px;
}

.food-banner .absolute-design .left-design {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -29%;
}

.food-banner .absolute-design .right-design {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -60%;
}

.discount-banner {
  padding: 215px 0;
  position: relative;
  background-image: url("../images/restaurant/bg-3.html");
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
}

.discount-banner .banner-content {
  text-align: center;
}

.discount-banner .banner-content h4 {
  font-size: calc(16px + (22 - 16) * ((100vw - 320px) / (1920 - 320)));
  font-family: Pacifico, cursive;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  margin-top: -4px;
}

.discount-banner .banner-content h2 {
  font-family: Bangers, cursive;
  font-size: calc(30px + (95 - 30) * ((100vw - 320px) / (1920 - 320)));
  color: white;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  line-height: 1;
  position: relative;
  display: block;
  margin-bottom: 35px;
}

.discount-banner .banner-content .coupon {
  padding: 6px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  display: inline-block;
  border-radius: 25px;
  margin-bottom: 35px;
}

.discount-banner .banner-content .coupon h5 {
  font-family: Work Sans;
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  color: white;
  background-color: var(--main-color);
  padding: 5px 15px;
  border-radius: 25px;
  margin-bottom: 0;
  font-weight: 600;
}

.discount-banner .banner-content p {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 0.5em;
  font-weight: 800;
}

.discount-banner .banner-content .rating {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.discount-banner .banner-content .rating i {
  font-size: 8px;
}

.collection-banner {
  position: relative;
  overflow: hidden;
}

.collection-banner .img-part {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
}

.collection-banner.p-left .contain-banner {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.collection-banner.p-right .contain-banner {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.collection-banner.p-center .contain-banner {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.collection-banner .contain-banner {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: calc(10px + (50 - 10) * ((100vw - 320px) / (1920 - 320)));
  padding-right: calc(10px + (50 - 10) * ((100vw - 320px) / (1920 - 320)));
}

.collection-banner .contain-banner h4 {
  color: var(--main-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-size: 16px;
}

.collection-banner .contain-banner h2 {
  font-size: calc(14px + (40 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  color: #222222;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: -10px;
}

.collection-banner:hover .img-part {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*=====================
18. other section css
==========================*/

.about-text p {
  line-height: 28px;
  letter-spacing: 0.06em;
  text-align: left;
  margin-bottom: -7px;
  color: rgba(0, 0, 0, 0.68);
}

.deals {
  overflow: hidden;
}

.deals .slick-slider {
  margin: 0 16px;
}

.deals .slick-slider .slick-slide>div {
  margin: 0 40px;
}

.deals .slick-slider .slick-list {
  margin-left: -40px;
  margin-right: -40px;
}

.deals .deals-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.deals .deals-box .deals-img {
  padding: 0;
}

.deals .deals-box .left-portion {
  background-color: white;
  position: relative;
  padding: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.deals .deals-box .left-portion:after {
  content: "";
  position: absolute;
  background-image: url(../images/zig-zag.png);
  right: -10px;
  height: 100%;
  width: 10px;
  top: 0;
}

.deals .deals-box .left-portion:before {
  content: "";
  position: absolute;
  background-image: url(../images/zig-zag.png);
  left: -10px;
  height: 100%;
  width: 10px;
  top: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.deals .deals-box .left-portion .deals-content .detail {
  position: absolute;
  left: 0;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 18px 0;
}

.deals .deals-box .left-portion .deals-content .detail h2 {
  font-size: calc(17px + (27 - 17) * ((100vw - 320px) / (1920 - 320)));
  white-space: nowrap;
  color: var(--main-color);
  margin-bottom: 0;
}

.deals .deals-box .left-portion .deals-content .detail h2 span {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.38);
}

.deals .deals-box .left-portion .deals-content .detail h3 {
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 0;
}

.deals .deals-box .left-portion .deals-content img {
  margin-left: 80px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.detail-section {
  background-image: url(../images/flights/bg.html);
  background-size: cover;
  background-position: center center;
}

.detail-section .detail-box {
  text-align: center;
  color: white;
  padding: 0 55px;
}

.detail-section .detail-box .upper-part {
  margin-bottom: 40px;
  min-height: 180px;
}

.detail-section .detail-box .upper-part h6 {
  font-size: 14px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.detail-section .detail-box .upper-part h2 {
  font-size: calc(16px + (30 - 16) * ((100vw - 320px) / (1920 - 320)));
  color: white;
  text-transform: capitalize;
  font-weight: 800;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
  line-height: 1.3;
}

.detail-section .detail-box .upper-part h2:after {
  position: absolute;
  width: 90px;
  height: 3px;
  background-color: var(--main-color);
  content: "";
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.detail-section .detail-box .upper-part h5 {
  text-transform: capitalize;
  margin-bottom: 0;
}

.detail-section .detail-box .upper-part:after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 50%;
  background-color: rgba(255, 255, 255, 0.23);
  top: 24%;
}

.detail-section .row>div:last-child .upper-part:after {
  display: none;
}

.detail-section.no-bg-detail {
  background-image: none;
  position: relative;
  overflow: hidden;
}

.detail-section.no-bg-detail .detail-box {
  padding: 30px;
  -webkit-box-shadow: 2.5px 4.33px 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 2.5px 4.33px 25px 0 rgba(0, 0, 0, 0.1);
  background-image: url("../images/flights/sky2.html");
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: white;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin: 15px 0;
}

.detail-section.no-bg-detail .detail-box .upper-part {
  margin-bottom: 15px;
  min-height: 120px;
}

.detail-section.no-bg-detail .detail-box .upper-part h2 {
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.detail-section.no-bg-detail .detail-box .upper-part h5 {
  font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.detail-section.no-bg-detail .detail-box .upper-part h6,
.detail-section.no-bg-detail .detail-box .upper-part h2,
.detail-section.no-bg-detail .detail-box .upper-part h5 {
  color: var(--main-color);
}

.detail-section.no-bg-detail .detail-box:hover {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.detail-section.no-bg-detail .slick-slide>div {
  margin: 0 15px !important;
}

.detail-section.no-bg-detail .slick-list {
  margin-left: -15px !important;
  margin-right: -15px !important;
}

.detail-section.no-bg-detail .slick-prev {
  top: -25px;
  right: 30px;
  left: unset;
}

.detail-section.no-bg-detail .slick-prev:before {
  opacity: 1;
  color: rgba(233, 179, 14, 0.3);
  content: "\f053";
  font-family: "Font Awesome 5 free";
  font-weight: 900;
}

.detail-section.no-bg-detail .slick-prev:hover:before {
  color: rgba(233, 179, 14, 0.7);
}

.detail-section.no-bg-detail .slick-next {
  top: -25px;
  right: 0;
  left: unset;
}

.detail-section.no-bg-detail .slick-next:before {
  opacity: 1;
  color: rgba(233, 179, 14, 0.3);
  content: "\f054";
  font-family: "Font Awesome 5 free";
  font-weight: 900;
}

.detail-section.no-bg-detail .slick-next:hover:before {
  color: rgba(233, 179, 14, 0.7);
}

.cloud {
  -webkit-animation: slide 50s linear infinite;
  animation: slide 50s linear infinite;
  background-repeat: repeat !important;
}

.price-section .container-fluid {
  padding-left: 90px;
  padding-right: 90px;
}

.price-section .price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.price-section .price-box .price-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 42%;
  flex: 0 0 42%;
  max-width: 42%;
  overflow: hidden;
  border-radius: 25px 0 0 25px;
  position: relative;
}

.price-section .price-box .price-img .bg-size {
  height: 100%;
}

.price-section .price-box .price-img img {
  border-radius: 25px 0 0 25px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
}

.price-section .price-box .price-img .label {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  padding: 1px 12px;
  background-color: var(--main-color);
  border-radius: 25px;
  color: white;
  margin-bottom: 0;
  text-transform: capitalize;
  font-weight: 700;
}

.price-section .price-box .price-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58%;
  flex: 0 0 58%;
  max-width: 58%;
  padding: calc(10px + (34 - 10) * ((100vw - 320px) / (1920 - 320)));
  background-color: white;
  -webkit-box-shadow: 2.5px 4.33px 25px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 2.5px 4.33px 25px 0 rgba(0, 0, 0, 0.05);
  border-radius: 0 25px 25px 0;
}

.price-section .price-box .price-content .price-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: calc(5px + (15 - 5) * ((100vw - 320px) / (1920 - 320)));
  margin-top: -4px;
  position: relative;
}

.price-section .price-box .price-content .price-title h3 {
  text-transform: capitalize;
  font-weight: 800;
  margin-bottom: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #333333;
  letter-spacing: 0.001em;
}

.price-section .price-box .price-content .price-title h3:hover {
  color: #ef3f3e;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.price-section .price-box .price-content .price-title h6 {
  font-size: 14px;
  color: #9a9a9a;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 0;
  padding: 7px 10px;
  margin-left: 10px;
  background-color: #f9f9f9;
  border-radius: 20px;
}

.price-section .price-box .price-content .price-title .like-cls i {
  position: absolute;
  font-size: 16px;
  right: 0;
  top: -3px;
  color: #e1002c;
  background-color: rgba(225, 0, 44, 0.05);
  padding: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
}

.price-section .price-box .price-content .price-title .like-cls i .effect {
  border-radius: 50%;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  -webkit-transition: height 5s ease, width 5s ease;
  transition: height 5s ease, width 5s ease;
  z-index: 0;
  opacity: 0;
}

.price-section .price-box .price-content .price-title .like-cls i .effect:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid #e1002c;
  -webkit-animation: effect 2s linear 1s infinite;
  animation: effect 2s linear 1s infinite;
}

.price-section .price-box .price-content .rating {
  margin-bottom: calc(8px + (25 - 8) * ((100vw - 320px) / (1920 - 320)));
}

.price-section .price-box .price-content .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.price-section .price-box .price-content .price a {
  margin-right: auto;
}

.price-section .price-box .price-content .price a h6 {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 800;
  margin-right: auto;
  color: #565656;
  text-transform: capitalize;
  margin-bottom: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.price-section .price-box .price-content .price a h6:hover {
  color: #ef3f3e;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.price-section .price-box .price-content .price span {
  margin: 0 auto;
  font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
  text-transform: uppercase;
  color: var(--main-color);
  font-weight: 800;
}

.price-section .price-box .price-content .price h5 {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 600;
  margin-left: auto;
  color: #ef3f3e;
  margin-bottom: 0;
}

.price-section .price-box .price-content .price h5 span {
  color: #9a9a9a;
  margin-right: 10px;
  font-weight: 700;
  text-transform: capitalize;
}

.price-section .price-box:hover .price-img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.price-section .price-box:hover .price-content .price-title .like-cls .effect {
  opacity: 0.3;
}

.price-section .slick-slider .slick-list {
  margin-left: -15px;
  margin-right: -15px;
}

.price-section .slick-slider .slick-slide {
  margin: 0 15px;
}

.flight-detail {
  background-image: url(../images/flights/bg.html);
  background-size: cover;
  background-position: center center;
}

.flight-detail .title-2 h2 {
  color: white;
}

.flight-detail .title-2 h2 span {
  color: white;
}

.flight-detail .title-2 p {
  color: rgba(255, 255, 255, 0.5);
}

.flight-detail .flight-box {
  background-color: white;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.flight-detail .flight-box .logo-section {
  width: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: inset -2px -2px 11px 0px rgba(0, 0, 0, 0.05);
  box-shadow: inset -2px -2px 11px 0px rgba(0, 0, 0, 0.05);
}

.flight-detail .flight-box .middle-section {
  width: 75%;
}

.flight-detail .flight-box .middle-section .flight-info {
  padding: 35px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.flight-detail .flight-box .middle-section .flight-info:after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2px;
  height: 55px;
  background-color: #f2f2f2;
}

.flight-detail .flight-box .middle-section .flight-info h4 {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: capitalize;
  letter-spacing: 0.001em;
}

.flight-detail .flight-box .middle-section .flight-info h5 {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  font-weight: 800;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.flight-detail .flight-box .middle-section .flight-info i {
  background-color: rgba(233, 179, 14, 0.05);
  padding: 8px;
  color: var(--main-color);
  display: inline-block;
  border-radius: 100%;
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg);
  margin-bottom: 8px;
}

.flight-detail .flight-box .middle-section .flight-info h6 {
  font-size: 14px;
  color: #bcbcbd;
  text-transform: uppercase;
  margin-bottom: 0;
}

.flight-detail .flight-box .middle-section .flight-info:hover {
  background-color: rgba(233, 179, 14, 0.03);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.flight-detail .flight-box .middle-section .slick-active:last-child .flight-info:after {
  display: none;
}

.flight-detail .flight-box .name-section {
  margin-left: auto;
  width: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: inset 4px -1px 11px 0px rgba(0, 0, 0, 0.05);
  box-shadow: inset 4px -1px 11px 0px rgba(0, 0, 0, 0.05);
}

.flight-detail .flight-box .name-section h5 {
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  font-weight: 800;
  color: var(--main-color);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.flight-detail .flight-box .name-section h6 {
  font-size: 14px;
  color: #bcbcbd;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}

.flight-detail .flight-box .name-section .btn {
  font-size: 14px;
  padding: 6px 12px;
}

.flight-detail .row>div .flight-box+.flight-box {
  margin-top: 60px;
}

.menu-section {
  overflow: hidden;
}

.menu-section .menu-box {
  border-radius: 25px;
  overflow: hidden;
  border: 1px dashed #e8e8e8;
}

.menu-section .menu-box .top-bar {
  position: relative;
  overflow: hidden;
}

.menu-section .menu-box .top-bar img {
  width: 100%;
}

.menu-section .menu-box .top-bar h2 {
  font-size: calc(18px + (28 - 18) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  color: white;
  font-weight: 800;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 30px;
}

.menu-section .menu-box .top-bar .decorate {
  position: absolute;
  font-size: calc(25px + (120 - 25) * ((100vw - 320px) / (1920 - 320)));
  color: rgba(255, 255, 255, 0.3);
  top: 50px;
  font-weight: 900;
  left: 0;
  text-transform: capitalize;
}

.menu-section .menu-box .top-bar .overlay {
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(231, 56, 39, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(231, 56, 39, 0) 100%);
  top: 0;
  width: 100%;
  height: 100%;
}

.menu-section .menu-box .bottom-bar {
  background-color: white;
  padding: 40px;
}

.menu-section .menu-box .bottom-bar .menu-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
  position: relative;
}

.menu-section .menu-box .bottom-bar .menu-bar:after {
  content: "";
  border-bottom: 1px dashed #e8e8e8;
  position: absolute;
  bottom: 0;
  width: 78%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.menu-section .menu-box .bottom-bar .menu-bar img {
  border-radius: 15px;
  margin-right: 30px;
  width: 90px;
}

.menu-section .menu-box .bottom-bar .menu-bar .content {
  min-width: 65%;
}

.menu-section .menu-box .bottom-bar .menu-bar .content h5 {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: capitalize;
}

.menu-section .menu-box .bottom-bar .menu-bar .content .rating {
  margin-bottom: 12px;
}

.menu-section .menu-box .bottom-bar .menu-bar .content .rating span {
  color: #ffcc33;
  margin-right: 8px;
  font-weight: 800;
}

.menu-section .menu-box .bottom-bar .menu-bar .content p {
  color: rgba(0, 0, 0, 0.68);
  text-transform: capitalize;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
}

.menu-section .menu-box .bottom-bar .menu-bar .content h6 {
  font-size: 14px;
  color: #343434;
  font-weight: 800;
  position: relative;
  margin-bottom: 0;
}

.menu-section .menu-box .bottom-bar .menu-bar .content h6 del {
  color: #717171;
  margin-right: 5px;
  font-weight: 400;
}

.menu-section .menu-box .bottom-bar .menu-bar .content h6 label {
  position: absolute;
  right: 0px;
  background-color: #3db137;
  color: white;
  padding: 3px 10px 2px;
  border-radius: 15px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  top: -2px;
  margin-bottom: 0;
}

.menu-section .menu-box .bottom-bar .menu-bar .content h6 label.red {
  background-color: #e02d22;
  -webkit-box-shadow: 1px 11px 20px 0px rgba(193, 0, 38, 0.12);
  box-shadow: 1px 11px 20px 0px rgba(193, 0, 38, 0.12);
}

.menu-section .menu-box .bottom-bar .menu-bar:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.menu-section .menu-box .bottom-bar .menu-bar:last-child:after {
  display: none;
}

.menu-section .slick-list {
  margin-left: -20px;
  margin-right: -20px;
}

.menu-section .slick-slide {
  margin: 0 20px;
}

.book-table {
  position: relative;
  background-image: url("../images/restaurant/table-bg.html");
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
}

.book-table .table-form {
  background-color: white;
  border-radius: 25px;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.book-table .table-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.book-table .table-form form .row {
  margin: 0;
}

.book-table .table-form form .form-group {
  margin-bottom: 0;
  margin-right: 40px;
  position: relative;
}

.book-table .table-form form .form-group input {
  background-color: #f9f9f9;
  border: none;
  border-radius: 35px;
  padding: 20px 20px 18px;
  line-height: 1;
  text-transform: capitalize;
  font-weight: 700;
}

.book-table .table-form form .form-group img {
  position: absolute;
  right: 20px;
  top: 20px;
}

.book-table .table-form form .form-control {
  background-color: #f9f9f9;
  border: none;
  border-radius: 35px;
  padding: 20px 20px 18px;
  line-height: 1;
  text-transform: capitalize;
  font-weight: 700;
}

.book-table .table-form form .form-control:focus {
  z-index: 1;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.book-table .table-form form .input-group-append {
  position: absolute;
  right: 12px;
  top: 12px;
}

.book-table .table-form form .input-group-append .btn {
  border: none;
  background-color: transparent;
  padding: 0;
}

.book-table .table-form form .input-group-append .btn i {
  color: rgba(197, 197, 197, 0.6);
}

.book-table .table-form form .gj-datepicker {
  margin-right: 40px;
  width: auto;
}

.book-table .table-form form .btn {
  text-transform: capitalize;
  font-weight: 800;
  margin-left: 15px;
}

.book-table .table-form form ::-webkit-input-placeholder {
  color: #c5c5c5;
  font-weight: 700;
  font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.book-table .table-form form ::-moz-placeholder {
  color: #c5c5c5;
  font-weight: 700;
  font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.book-table .table-form form :-ms-input-placeholder {
  color: #c5c5c5;
  font-weight: 700;
  font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.book-table .table-form form ::-ms-input-placeholder {
  color: #c5c5c5;
  font-weight: 700;
  font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.book-table .table-form form ::placeholder {
  color: #c5c5c5;
  font-weight: 700;
  font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.book-table .table-form:after {
  content: "";
  position: absolute;
  width: calc(100% + 12px);
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.2);
  height: 100%;
  left: -6px;
  top: 0;
  z-index: -1;
}

.book-table .table-form:before {
  content: "";
  position: absolute;
  width: calc(100% + 24px);
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  height: 100%;
  left: -12px;
  top: 0;
  z-index: -1;
}

.book-table .detail {
  font-size: calc(16px + (26 - 16) * ((100vw - 320px) / (1920 - 320)));
  font-family: Pacifico, cursive;
  color: white;
  margin-bottom: 0;
  margin-top: 0;
  text-align: center;
}

.book-table.single-table {
  background-image: none;
  overflow: visible;
}

.book-table.single-table .table-form {
  margin-bottom: 0;
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11);
  margin-top: -75px;
}

.book-table.single-table .table-form.classic-form {
  border-radius: 0;
  padding: 25px;
  margin-top: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.book-table.single-table .table-form.classic-form form .form-group input {
  border-radius: 0;
  padding: 15px 15px 13px 25px;
}

.book-table.single-table .table-form.classic-form form .form-group img {
  right: 15px;
  top: 15px;
}

.book-table.single-table .table-form.classic-form form .form-control {
  border-radius: 0;
  padding: 15px 15px 13px;
}

.book-table.single-table .table-form.classic-form form .input-group-append .btn i {
  top: 4px;
  left: 15px;
}

.book-table.single-table .table-form.classic-form form .btn-ed {
  border-radius: 0;
  margin-left: 0;
}

.book-table.single-table .table-form.classic-form:after,
.book-table.single-table .table-form.classic-form:before {
  display: none;
}

.book-table.input-radius-cls .table-form.classic-form form .form-group input {
  background-color: rgba(233, 179, 14, 0.1);
  border-radius: 25px;
}

.book-table.input-radius-cls .table-form.classic-form form .gj-datepicker {
  margin-right: 0;
}

.book-table.input-radius-cls .table-form.classic-form form .btn-ed {
  border-radius: 100px;
}

.process-steps {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.process-steps h4 {
  margin-bottom: 40px;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 1.3;
}

.process-steps .step-bg {
  position: relative;
  margin-top: calc(20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.process-steps .step-bg:before {
  content: "";
  position: absolute;
  left: -0;
  right: -0;
  height: 100%;
  display: block;
  background: url("../images/icon/step-arrow.html") no-repeat center center;
}

.process-steps .step-bg .row {
  margin-left: -50px;
  margin-right: -50px;
}

.process-steps .step-bg .row>div {
  padding-left: 50px;
  padding-right: 50px;
}

.process-steps .step-bg .row>div:nth-child(1),
.process-steps .step-bg .row>div:nth-child(3) {
  margin-bottom: 30px;
}

.process-steps .step-bg .row>div:nth-child(2),
.process-steps .step-bg .row>div:nth-child(4) {
  margin-top: 30px;
}

.process-steps .step-bg .popular-section {
  margin-left: -20px;
  margin-right: -20px;
}

.process-steps .step-bg .popular-section>div {
  padding-left: 20px;
  padding-right: 20px;
}

.process-steps .step-bg .popular-section .step-box {
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-align: left;
  display: block;
}

.process-steps .step-bg .popular-section .step-box .popular-box {
  width: 100%;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content {
  padding-top: 15px;
  position: relative;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content h5 {
  font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--main-color);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 4px;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content h5 span {
  color: #9a9a9a;
  font-size: 14px;
  margin-left: auto;
  font-weight: 500;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content h5 span i {
  color: #a7a7a7;
  margin-right: 3px;
  font-size: 10px;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content p {
  margin-bottom: 10px;
  color: #9a9a9a;
  font-weight: 500;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .bottom-section .rating span {
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 700;
  margin-left: 10px;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .bottom-section .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 8px;
  margin-bottom: -6px;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .bottom-section .price del {
  font-size: 14px;
  color: var(--main-color);
  font-weight: 700;
  margin-right: 10px;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .bottom-section .price span {
  color: var(--main-color);
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 800;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .bottom-section .price .package-cls {
  padding-left: 20px;
  color: var(--main-color);
  font-weight: 800;
  font-size: 12px;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .bottom-section .price .facility-detail {
  margin-left: 7px;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .bottom-section .price .facility-detail span {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  font-size: 12px;
  text-transform: capitalize;
  padding: 2px 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .tour-detail span {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  color: rgba(0, 0, 0, 0.84);
  text-transform: capitalize;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .tour-detail .include-sec {
  margin-top: 14px;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .tour-detail .include-sec ul {
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.78);
  margin-top: 10px;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .tour-detail .include-sec ul li {
  margin-right: 12px;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-align: center;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .tour-detail .include-sec ul li img {
  width: 18px;
  display: block;
  margin: 0 auto;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .tour-detail .include-sec ul li i {
  font-size: 14px;
  margin-right: 5px;
  display: block;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .tour-detail .include-sec ul li.not-include {
  opacity: 0.4;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .tour-detail h6 {
  margin-top: 4px;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.78);
  max-width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .tour-detail h6 i {
  font-size: 12px;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .tour-detail .bottom-section .price {
  display: block;
  margin-top: 15px;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .tour-detail .bottom-section .price h6 {
  color: #333333;
  font-size: calc(18px + (24 - 18) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 800;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .tour-detail .bottom-section .price h6 del {
  font-size: 14px;
  color: var(--main-color);
  font-weight: 700;
  margin-right: 10px;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .tour-detail .bottom-section .price span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.57);
  text-transform: capitalize;
}

.process-steps .step-bg .popular-section .step-box .popular-box .special-content .tour-detail .nowrap-cls {
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.process-steps .step-bg h4 {
  margin-bottom: -3px;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: rgba(0, 0, 0, 0.65);
}

.process-steps .step-bg .step-box {
  position: relative;
  padding: 45px 35px 45px;
  -webkit-box-shadow: 0 15px 39px 0 rgba(8, 18, 109, 0.08);
  box-shadow: 0 15px 39px 0 rgba(8, 18, 109, 0.08);
  background-color: white;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.process-steps .step-bg .step-box img {
  width: 40px;
  margin-bottom: 20px;
}

.process-steps .step-bg .step-box p {
  line-height: 1.5;
  margin-bottom: 0;
}

.process-steps .step-bg .step-box:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.process-steps .step-bg.invert-lines:before {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.process-steps .title-1.detail-title p.font-design {
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--main-color);
  padding: 15px;
}

.process-steps.icon-large .step-bg .step-box img {
  width: 60px;
}

.car-type-section {
  margin-top: calc(0px + (40 - 0) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: -20px;
}

.car-type-section .slick-slide {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.car-type-section .slick-slide.slick-center {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.car-type-section .slick-slide.slick-center .type-box .img-part img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.car-type-section .slick-slide.slick-center .type-box:hover .img-part img {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.car-type-section .type-box {
  padding: 25px;
  -webkit-box-shadow: 1px 2px 39px 9px rgba(8, 18, 109, 0.08);
  box-shadow: 1px 2px 39px 9px rgba(8, 18, 109, 0.08);
  margin: 20px 0;
}

.car-type-section .type-box .img-part {
  text-align: center;
}

.car-type-section .type-box .img-part img {
  margin: 0 auto;
}

.car-type-section .type-box .content {
  text-align: center;
}

.car-type-section .type-box .content h5 {
  text-transform: capitalize;
  margin-top: 15px;
  font-weight: 700;
}

.car-type-section .type-box .content h6 {
  margin-bottom: 10px;
  text-transform: capitalize;
}

.car-type-section .type-box .content p {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
}

.car-type-section .type-box .content ul li img {
  opacity: 0.7;
}

.cab-slider .image-section:before {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.63)), to(rgba(231, 56, 39, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.63) 0%, rgba(231, 56, 39, 0) 100%);
}

.topTour {
  margin-top: calc(0px + (40 - 0) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: -20px;
}

.topTour .slick-slide {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.topTour .slick-slide.slick-center {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.topTour .slick-slide.slick-center .topTour_box .content {
  opacity: 1;
}

.topTour .topTour_box {
  padding: 0;
  -webkit-box-shadow: 1px 2px 39px 9px rgba(8, 18, 109, 0.08);
  box-shadow: 1px 2px 39px 9px rgba(8, 18, 109, 0.08);
  margin: 20px 0;
  border-radius: 10px;
  overflow: hidden;
}

.topTour .topTour_box .content {
  opacity: 0;
  position: absolute;
  bottom: 22px;
  width: 100%;
  text-align: center;
  padding: 30px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(111, 111, 111, 0.8)), to(rgba(231, 56, 39, 0)));
  background: linear-gradient(to top, rgba(111, 111, 111, 0.8) 0%, rgba(231, 56, 39, 0) 100%);
  border-radius: 0 0 10px 10px;
}

.topTour .topTour_box .content h6 {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  margin-bottom: -4px;
}

.topTour .topTour_box .content h5 {
  font-size: calc(15px + (22 - 15) * ((100vw - 320px) / (1920 - 320)));
  color: white;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: -7px;
  text-transform: capitalize;
}

.cab-full {
  padding-top: 68px;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}

.cab-full ::-webkit-scrollbar {
  width: 4px;
}

.cab-full ::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.cab-full ::-webkit-scrollbar-thumb {
  background: rgba(233, 179, 14, 0.5);
  border-radius: 3px;
}

.cab-full ::-webkit-scrollbar-thumb:hover {
  background: rgba(233, 179, 14, 0.8);
}

.cab-full iframe,
.cab-full .map-cls {
  width: 100%;
  height: calc(100vh - 68px);
  border: none;
  margin-bottom: -6px;
}

.cab-full .left-bar {
  height: calc(100vh - 68px);
  overflow: auto;
}

.cab-full .left-bar.fixed-cls {
  position: fixed;
  width: 400px;
  -webkit-box-shadow: 3px 0px 4px 0 #dedede;
  box-shadow: 3px 0px 4px 0 #dedede;
  z-index: 1;
}

.cab-full .flight-search .flight-search-detail .form-group label {
  font-weight: 700;
}

.cab-full .flight-search .flight-search-detail form>div {
  margin-top: 20px;
}

.cab-full .flight-search .flight-search-detail form>div:first-child {
  margin-top: 0;
}

.cab-full .location-option [type="radio"]:checked+label:before,
.cab-full .location-option [type="radio"]:not(:checked)+label:before {
  border-color: #ececec;
  top: 2px;
}

.cab-full .location-option [type="radio"]:checked+label:before {
  background-color: #ececec;
  border-color: var(--main-color);
}

.cab-full .cab-search-section {
  padding: 0 15px 15px;
}

.cab-full .cab-search-section .cab-search-box {
  background-color: #f9f9f9;
  padding: 10px;
}

.cab-full .cab-search-section .cab-search-box .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.cab-full .cab-search-section .cab-search-box .cab-img img {
  width: 90px;
  height: auto;
}

.cab-full .cab-search-section .cab-search-box .cab_detail li {
  display: block;
  text-transform: capitalize;
  font-weight: 600;
}

.cab-full .cab-search-section .cab-search-box .btn-solid {
  font-size: 14px;
  padding: 4px 10px;
  text-transform: capitalize;
}

.cab-full .cab-search-section .cab-search-box+.cab-search-box {
  margin-top: 20px;
}

.scroll-body {
  padding-left: 400px;
}

.top-banner {
  width: 100%;
  position: relative;
}

.top-banner .top-banner-content {
  color: white;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: bold;
  position: absolute;
  right: 25%;
  width: auto;
  top: 50%;
  display: block;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}

.top-banner .flip {
  height: 50px;
  overflow: hidden;
}

.top-banner .flip>div>div {
  color: white;
  padding: 4px 12px;
  height: 40px;
  margin-bottom: 45px;
  display: inline-block;
  line-height: 1;
}

.top-banner .flip div:first-child {
  -webkit-animation: show 5s linear infinite;
  animation: show 5s linear infinite;
}

.top-banner .flip div:first-child div {
  background: #4ac6da;
}

.top-banner .flip div:last-child div {
  background: #dc143c;
}

.top-banner .flip div div {
  background: #f4c789;
}

@-webkit-keyframes show {
  0% {
    margin-top: -270px;
  }
  5% {
    margin-top: -180px;
  }
  33% {
    margin-top: -180px;
  }
  38% {
    margin-top: -90px;
  }
  66% {
    margin-top: -90px;
  }
  71% {
    margin-top: 0;
  }
  99.99% {
    margin-top: 0;
  }
  100% {
    margin-top: -270px;
  }
}

@keyframes show {
  0% {
    margin-top: -270px;
  }
  5% {
    margin-top: -180px;
  }
  33% {
    margin-top: -180px;
  }
  38% {
    margin-top: -90px;
  }
  66% {
    margin-top: -90px;
  }
  71% {
    margin-top: 0;
  }
  99.99% {
    margin-top: 0;
  }
  100% {
    margin-top: -270px;
  }
}

.classic-section {
  position: relative;
  overflow: hidden;
}

.classic-section .classic-box {
  padding: 30px;
  -webkit-box-shadow: 2.5px 4.33px 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 2.5px 4.33px 25px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin: 15px 0;
}

.classic-section .classic-box .top-part {
  padding-left: 30px;
  border-left: 1px dashed #dddddd;
  position: relative;
}

.classic-section .classic-box .top-part h6 {
  text-transform: capitalize;
  margin-bottom: 4px;
  font-weight: 600;
}

.classic-section .classic-box .top-part span {
  color: rgba(0, 0, 0, 0.7);
}

.classic-section .classic-box .top-part .top {
  margin-bottom: 40px;
}

.classic-section .classic-box .top-part:after {
  top: 0;
}

.classic-section .classic-box .top-part:before,
.classic-section .classic-box .top-part:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  left: -3px;
  bottom: 0;
}

.classic-section .classic-box .top-part .plane-updown {
  position: absolute;
  left: -8px;
  top: 50%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.classic-section .classic-box .bottom-part h6 {
  margin-top: 15px;
  margin-bottom: 0;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--main-color);
}

.classic-section .slick-slide>div {
  margin: 0 15px !important;
}

.classic-section .slick-list {
  margin-left: -15px !important;
  margin-right: -15px !important;
}

.classic-section .slick-prev {
  top: -25px;
  right: 30px;
  left: unset;
}

.classic-section .slick-prev:before {
  opacity: 1;
  color: rgba(233, 179, 14, 0.3);
  content: "\f053";
  font-family: "Font Awesome 5 free";
  font-weight: 900;
}

.classic-section .slick-prev:hover:before {
  color: rgba(233, 179, 14, 0.7);
}

.classic-section .slick-next {
  top: -25px;
  right: 0;
  left: unset;
}

.classic-section .slick-next:before {
  opacity: 1;
  color: rgba(233, 179, 14, 0.3);
  content: "\f054";
  font-family: "Font Awesome 5 free";
  font-weight: 900;
}

.classic-section .slick-next:hover:before {
  color: rgba(233, 179, 14, 0.7);
}

.popular-section .popular-box {
  position: relative;
}

.popular-section .popular-box .content {
  margin-top: 10px;
}

.popular-section .popular-box .content h5 {
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 3px;
}

.popular-section .popular-box .content h6 {
  color: rgba(0, 0, 0, 0.5);
}

.popular-section .popular-box .content .special-content {
  padding-top: 5px;
  position: relative;
}

.popular-section .popular-box .content .special-content h5 {
  font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  margin-bottom: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: -4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  max-width: 280px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--main-color);
}

.popular-section .popular-box .content .special-content h5 span {
  color: #9a9a9a;
  font-size: 14px;
  margin-left: 20px;
  font-weight: 500;
}

.popular-section .popular-box .content .special-content h5 span i {
  color: #a7a7a7;
  margin-right: 3px;
  font-size: 10px;
}

.popular-section .popular-box .content .special-content p {
  margin-bottom: 10px;
  color: #9a9a9a;
  font-weight: 500;
}

.popular-section .popular-box .content .special-content .bottom-section .rating span {
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 700;
  margin-left: 18px;
}

.popular-section .popular-box .content .special-content .bottom-section .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 5px;
  margin-bottom: -6px;
}

.popular-section .popular-box .content .special-content .bottom-section .price del {
  font-size: 14px;
  color: var(--main-color);
  font-weight: 700;
  margin-right: 10px;
}

.popular-section .popular-box .content .special-content .bottom-section .price span {
  color: #333333;
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 800;
}

.popular-section .popular-box .content .special-content .bottom-section .price .package-cls {
  padding-left: 20px;
  color: var(--main-color);
  font-weight: 800;
  font-size: 12px;
}

.popular-section .popular-box .content .special-content .bottom-section .price .facility-detail {
  margin-left: 7px;
}

.popular-section .popular-box .content .special-content .bottom-section .price .facility-detail span {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  font-size: 12px;
  text-transform: capitalize;
  padding: 2px 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.popular-section .popular-box .content .special-content .tour-detail span {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 500;
  color: rgba(0, 0, 0, 0.84);
  text-transform: capitalize;
}

.popular-section .popular-box .content .special-content .tour-detail .include-sec {
  margin-top: 14px;
}

.popular-section .popular-box .content .special-content .tour-detail .include-sec ul {
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.78);
  margin-top: 10px;
}

.popular-section .popular-box .content .special-content .tour-detail .include-sec ul li {
  margin-right: 12px;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-align: center;
}

.popular-section .popular-box .content .special-content .tour-detail .include-sec ul li img {
  width: 18px;
  display: block;
  margin: 0 auto;
}

.popular-section .popular-box .content .special-content .tour-detail .include-sec ul li i {
  font-size: 14px;
  margin-right: 5px;
  display: block;
}

.popular-section .popular-box .content .special-content .tour-detail .include-sec ul li.not-include {
  opacity: 0.4;
}

.popular-section .popular-box .content .special-content .tour-detail h6 {
  margin-top: 4px;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.78);
  max-width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.popular-section .popular-box .content .special-content .tour-detail h6 i {
  font-size: 12px;
}

.popular-section .popular-box .content .special-content .tour-detail .bottom-section .price {
  display: block;
  margin-top: 20px;
}

.popular-section .popular-box .content .special-content .tour-detail .bottom-section .price h6 {
  color: #333333;
  font-size: calc(18px + (24 - 18) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 800;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.popular-section .popular-box .content .special-content .tour-detail .bottom-section .price h6 del {
  font-size: 14px;
  color: var(--main-color);
  font-weight: 700;
  margin-right: 10px;
}

.popular-section .popular-box .content .special-content .tour-detail .bottom-section .price span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.57);
  text-transform: capitalize;
}

.popular-section .popular-box .content .special-content .tour-detail .nowrap-cls {
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.popular-section .popular-box .content .special-content.restaurant-detail h5 {
  margin-top: -4px;
}

.popular-section .popular-box .content .special-content.restaurant-detail h5 span {
  font-size: 14px;
  margin-left: 10px;
  font-weight: 500;
  padding: 3px;
  color: white;
}

.popular-section .popular-box .content .special-content.restaurant-detail h5 span.positive {
  background-color: rgba(0, 128, 0, 0.83);
}

.popular-section .popular-box .content .special-content.restaurant-detail h5 span.nagative {
  background-color: rgba(255, 0, 0, 0.83);
}

.popular-section .popular-box .content .special-content.restaurant-detail h5 span i {
  color: white;
  margin-right: 0;
}

.popular-section .popular-box .content .special-content.restaurant-detail ul li {
  display: block;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  line-height: 24px;
}

.popular-section .popular-box .content .special-content.restaurant-detail ul li:last-child {
  margin-bottom: -4px;
}

.popular-section .popular-box .content .special-content.cab-detail ul li {
  display: block;
  font-size: 16px;
  text-transform: capitalize;
}

.popular-section .popular-box .content .special-content.cab-detail ul li span {
  font-weight: 600;
}

.popular-section .popular-box .content .special-content.cab-detail ul li+li {
  margin-top: 5px;
}

.popular-section .popular-box .content .special-content.cab-detail .button-botton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.popular-section .popular-box .content .special-content.cab-detail .button-botton a:last-child {
  margin-left: 10px;
}

.popular-section .popular-box .content .special-content.cab-detail .button-botton .btn {
  font-size: 14px;
  text-transform: capitalize;
  padding: 5px 12px;
  width: 50%;
  margin-top: 10px;
  background-color: transparent;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.popular-section .popular-box .content .special-content.cab-detail .button-botton .btn:hover {
  color: white;
  background-color: var(--main-color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.popular-section .slick-slide>div {
  margin: 0 10px !important;
}

.popular-section .slick-list {
  margin-left: -10px !important;
  margin-right: -10px !important;
}

.popular-section .slick-prev {
  top: -25px;
  right: 30px;
  left: unset;
}

.popular-section .slick-prev:before {
  opacity: 1;
  color: rgba(233, 179, 14, 0.3);
  content: "\f053";
  font-family: "Font Awesome 5 free";
  font-weight: 900;
}

.popular-section .slick-prev:hover:before {
  color: rgba(233, 179, 14, 0.7);
}

.popular-section .slick-next {
  top: -25px;
  right: 0;
  left: unset;
}

.popular-section .slick-next:before {
  opacity: 1;
  color: rgba(233, 179, 14, 0.3);
  content: "\f054";
  font-family: "Font Awesome 5 free";
  font-weight: 900;
}

.popular-section .slick-next:hover:before {
  color: rgba(233, 179, 14, 0.7);
}

.destination_section .detail-title {
  margin-bottom: calc(20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.destination_section .row+.row {
  margin-top: 30px;
}

.destination_section .destination_box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.destination_section .destination_box .bg-size {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.destination_section .destination_box img {
  width: 100%;
  max-width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.destination_section .destination_box .content-sec {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 30px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(231, 56, 39, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(231, 56, 39, 0) 100%);
}

.destination_section .destination_box .content-sec h6 {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  margin-bottom: -4px;
}

.destination_section .destination_box .content-sec h5 {
  font-size: calc(15px + (22 - 15) * ((100vw - 320px) / (1920 - 320)));
  color: white;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: -7px;
  text-transform: capitalize;
}

.destination_section .destination_box:hover img,
.destination_section .destination_box:hover .bg-size {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.tourSection {
  overflow: hidden;
}

.tourSection .tourBox {
  cursor: pointer;
}

.tourSection .tourBox .bg-size,
.tourSection .tourBox img {
  border-radius: 10px;
}

.tourSection .tourBox .tourImg {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.tourSection .tourBox .tourContent {
  padding-top: 25px;
  text-align: center;
}

.tourSection .tourBox .tourContent h3 {
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.tourSection .tourBox .tourContent h6 {
  margin-bottom: 0;
  color: #828282;
  text-transform: capitalize;
  letter-spacing: 0.8px;
  line-height: 1.4;
}

.tourSection .tourBox:hover .tourImg {
  -webkit-transform: scale(0.99);
  transform: scale(0.99);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.tourSection .slick-slide>div {
  margin: 0 15px;
}

.tourSection .slick-list {
  margin-left: -15px;
  margin-right: -15px;
}

.mycontent_wrapper {
  position: fixed;
  top: 42%;
  height: 100%;
  pointer-events: none;
  left: 44%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  max-width: 1140px;
  color: white;
  z-index: 99;
}

.mycontent_wrapper .title {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 2px 0 0;
  font-size: 70px;
  white-space: nowrap;
  text-transform: uppercase;
  overflow: hidden;
  width: 100%;
  color: white;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
  height: 85px;
}

.mycontent_wrapper .title span {
  font-size: calc(26px + (50 - 26) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: uppercase;
  width: 100%;
  display: block;
  overflow: hidden;
  -webkit-transition: -webkit-transform 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: -webkit-transform 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 800ms cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 800ms cubic-bezier(0.77, 0, 0.175, 1);
  height: 85px;
}

.sticky-cls {
  position: -webkit-sticky;
  position: sticky;
  z-index: 1;
  top: 75px;
}

.sticky-cls-top {
  position: -webkit-sticky;
  position: sticky;
  z-index: 1;
  top: 22px;
}

.fullpage-content-section {
  position: fixed;
  left: 25%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.fullpage-content-section .fullpage-content-wrap.title {
  overflow: hidden;
  height: 54px;
}

.fullpage-content-section .fullpage-content-wrap.title h1 {
  color: white;
  margin-bottom: 0;
  line-height: 1;
}

.fullpage-content-section .fullpage-content-wrap.sub-title {
  height: 25px;
  overflow: hidden;
}

.fullpage-content-section .fullpage-content-wrap.sub-title h5 {
  color: white;
}

/*=====================
19. Theme modal css
==========================*/

.video-modal .modal-body {
  padding: 0;
}

.video-modal .modal-body .btn-close {
  position: absolute;
  right: -30px;
  top: -30px;
  opacity: 1;
  background: none;
  padding: 0;
}

.video-modal .modal-body .btn-close span {
  text-shadow: none;
  color: white;
  font-size: 26px;
}

.video-modal iframe {
  height: 500px;
  width: 100%;
  vertical-align: middle;
  border: none;
}

.enquiry-modal .form-control {
  margin-bottom: 16px !important;
}

.enquiry-modal .modal-header .modal-title {
  color: var(--main-color);
  font-size: calc(16px + (22 - 16) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 600;
}

.enquiry-modal .modal-header p {
  margin-bottom: 0;
  margin-top: 5px;
  color: rgba(0, 0, 0, 0.6);
  text-transform: capitalize;
}

/*=====================
20. Map css
==========================*/

.MicrosoftMap .Infobox {
  border-radius: 0 !important;
  border: none !important;
}

.MicrosoftMap .Infobox.no-title .infobox-info {
  margin-right: 0 !important;
}

.MicrosoftMap .Infobox .infobox-body {
  width: auto !important;
  height: 100% !important;
  max-height: 100% !important;
  padding-bottom: 0 !important;
}

.MicrosoftMap .Infobox .infobox-info {
  padding: 0 !important;
  max-height: -webkit-max-content !important;
  max-height: -moz-max-content !important;
  max-height: max-content !important;
}

/*=====================
21. Inner pages css
==========================*/

.mt-cls {
  margin-top: -30px;
}

.breadcrumb-section {
  background-position: center;
  background-size: cover;
  height: 500px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.breadcrumb-section .breadcrumb-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 500px;
  padding-top: 93px;
  text-align: center;
}

.breadcrumb-section .breadcrumb-content>div {
  padding: 40px 65px;
  background-color: rgba(255, 255, 255, 0.1);
}

.breadcrumb-section .breadcrumb-content h2 {
  font-size: calc(18px + (36 - 18) * ((100vw - 320px) / (1920 - 320)));
  color: white;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 16px;
  margin-top: -2px;
}

.breadcrumb-section .breadcrumb-content h6 {
  color: white;
  margin-bottom: -4px;
  font-weight: 700;
  font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.breadcrumb-section .breadcrumb-content.dark-content .breadcrumb-item+.breadcrumb-item:before {
  color: #0c0c0c !important;
}

.breadcrumb-section .breadcrumb-content.dark-content>div {
  background-color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-section .breadcrumb-content.dark-content>div h2 {
  color: var(--main-color);
}

.breadcrumb-section .breadcrumb-content.dark-content>div li {
  color: #0c0c0c !important;
}

.breadcrumb-section .breadcrumb-content.dark-content>div li a {
  color: #0c0c0c !important;
}

.breadcrumb-section .breadcrumb-content .breadcrumb {
  background-color: transparent;
  margin-bottom: -7px !important;
  padding: 0.75rem 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.breadcrumb-section .breadcrumb-content .breadcrumb .breadcrumb-item {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: white;
  text-transform: capitalize;
  font-weight: 700;
}

.breadcrumb-section .breadcrumb-content .breadcrumb .breadcrumb-item a {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: white;
}

.breadcrumb-section .breadcrumb-content .breadcrumb .breadcrumb-item+.breadcrumb-item:before {
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  content: "\f101";
  color: white;
}

.breadcrumb-section .breadcrumb-content.overlay-black>div {
  background-color: rgba(0, 0, 0, 0.1);
}

.breadcrumb-section .breadcrumb-content.process-section .process-bar {
  background-color: white;
  border-radius: 30px;
}

.breadcrumb-section .breadcrumb-content.restaurant-name {
  padding-top: 0;
}

.breadcrumb-section .breadcrumb-content.restaurant-name h3 {
  text-transform: capitalize;
  font-weight: 700;
  color: var(--main-color);
  font-size: calc(22px + (46 - 22) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 10px;
}

.breadcrumb-section .breadcrumb-content.restaurant-name h6 {
  color: var(--main-color);
  margin-bottom: 15px;
}

.breadcrumb-section .breadcrumb-content.restaurant-name>div {
  position: relative;
  z-index: 1;
  background-color: transparent;
  padding: 0;
}

.breadcrumb-section .breadcrumb-content.restaurant-name ul li {
  padding: 0 15px;
  color: var(--main-color);
  position: relative;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.breadcrumb-section .breadcrumb-content.restaurant-name ul li+li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background-color: var(--main-color);
}

.breadcrumb-section .breadcrumb-content.restaurant-name ul li i {
  font-size: 12px;
  color: var(--main-color);
}

.breadcrumb-section .breadcrumb-content.restaurant-name img {
  width: 30%;
  height: auto;
}

.breadcrumb-section .breadcrumb-content.breadcrumb-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: right;
  padding: 0;
}

.breadcrumb-section .breadcrumb-content.breadcrumb-right .breadcrumb {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.breadcrumb-section .breadcrumb-content.breadcrumb-right>div {
  padding: 0;
  background-color: transparent;
}

.breadcrumb-section .title-breadcrumb {
  font-family: Dancing Script;
  font-size: 510px;
  position: absolute;
  color: rgba(255, 255, 255, 0.02);
  text-transform: capitalize;
  top: 0;
  line-height: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-weight: 700;
  z-index: -1;
}

.breadcrumb-section .content-bottom {
  background-color: #f9f9f9;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}

.breadcrumb-section .content-bottom .breadcrumb {
  background-color: #f9f9f9;
  margin-bottom: 0;
}

.breadcrumb-section .content-bottom .breadcrumb .breadcrumb-item {
  text-transform: capitalize;
}

.breadcrumb-section .content-bottom .breadcrumb .breadcrumb-item a {
  color: #8a8a8a;
}

.breadcrumb-section .content-bottom .breadcrumb .breadcrumb-item.active {
  color: var(--main-color);
  font-weight: 700;
}

.breadcrumb-section.no-bg {
  background-image: none;
  position: relative;
}

.breadcrumb-section.no-bg:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  top: 0;
  z-index: -2;
}

.breadcrumb-section.breadcrumb-classic {
  height: 620px;
}

.breadcrumb-section.breadcrumb-classic .breadcrumb-content {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
  margin-left: 0;
}

.breadcrumb-section.breadcrumb-classic .breadcrumb-content>div {
  text-align: left;
  padding: 0;
  background-color: transparent;
}

.breadcrumb-section.breadcrumb-classic .breadcrumb-content .breadcrumb {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.breadcrumb-section.breadcrumb-classic .title-breadcrumb {
  color: rgba(255, 255, 255, 0.1);
}

.breadcrumb-section.breadcrumb-cum-header {
  height: 700px;
  background-position: unset !important;
}

.breadcrumb-section.breadcrumb-cum-header .breadcrumb-content {
  height: 700px;
}

.breadcrumb-section.breadcrumb-cum-header .breadcrumb-content .package-detail {
  margin-bottom: -3px;
}

.breadcrumb-section.breadcrumb-cum-header .breadcrumb-content .package-detail li {
  color: white;
  padding-right: 10px;
  text-transform: capitalize;
  font-weight: 500;
}

.breadcrumb-section.breadcrumb-cum-header .breadcrumb-content .package-detail li i {
  margin-right: 10px;
}

.breadcrumb-section.flight-sec {
  height: calc(270px + (330 - 270) * ((100vw - 320px) / (1920 - 320)));
}

.breadcrumb-section.flight-sec .breadcrumb-content {
  height: calc(270px + (330 - 270) * ((100vw - 320px) / (1920 - 320)));
}

.breadcrumb-section.small-sec {
  height: 180px;
}

.breadcrumb-section.small-sec.flight-sec {
  height: 225px;
}

.order-food-section {
  height: calc(300px + (520 - 300) * ((100vw - 320px) / (1920 - 320)));
  position: relative;
  overflow: hidden;
}

.order-food-section .order-food {
  height: calc(300px + (420 - 300) * ((100vw - 320px) / (1920 - 320)));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.order-food-section .order-food .book-table.single-table h3 {
  text-transform: capitalize;
  font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
  padding: 7px;
  position: relative;
  z-index: 1;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.22);
}

.order-food-section .order-food .book-table.single-table h3:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.36);
  z-index: -1;
  top: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.order-food-section .order-food .book-table.single-table .table-form {
  -webkit-box-shadow: 0px -1px 30px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0px -1px 30px 0 rgba(0, 0, 0, 0.15);
  margin-top: 0;
  margin-bottom: 60px;
  border-radius: 10px;
  padding: 20px 10px;
}

.order-food-section .order-food .book-table.single-table .table-form form .btn {
  margin-left: 0;
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  line-height: 1;
  margin-top: 0;
}

.order-food-section .order-food .book-table.single-table .table-form form .form-group {
  margin-right: 0;
}

.order-food-section .order-food .book-table.single-table .table-form form .form-group input {
  border-radius: 5px;
  padding: 10px 15px;
  background-color: #f9f9f9;
  font-size: 14px;
}

.order-food-section .order-food .book-table.single-table .table-form form ::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

.order-food-section .order-food .book-table.single-table .table-form form ::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

.order-food-section .order-food .book-table.single-table .table-form form :-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

.order-food-section .order-food .book-table.single-table .table-form form ::-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

.order-food-section .order-food .book-table.single-table .table-form form ::placeholder {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

.order-food-section.not-found {
  height: 270px;
}

.order-food-section.not-found .order-food {
  height: 270px;
}

.mix-2 .mix-pills {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mix-form {
  height: calc(300px + (520 - 300) * ((100vw - 320px) / (1920 - 320)));
  position: relative;
  overflow: hidden;
}

.mix-form .form-section {
  height: calc(300px + (520 - 300) * ((100vw - 320px) / (1920 - 320)));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mix-form .form-section .tab-sec {
  text-align: center;
}

.mix-form .form-section .tab-sec .nav-tabs .nav-item .nav-link {
  text-transform: capitalize;
  color: #333333;
  border: none;
  font-size: 16px;
  font-weight: 600;
  background-color: white;
}

.mix-form .form-section .tab-sec .nav-tabs .nav-item .nav-link.active {
  color: white;
  background-color: var(--main-color);
}

.mix-form .form-section .tab-sec .nav-tabs .nav-item .nav-link.active svg {
  fill: white;
}

.mix-form .form-section .tab-content {
  background-color: white;
  padding: 15px;
}

.mix-form .form-section .tab-content .form-group {
  margin-bottom: 0;
}

.up-section {
  margin-top: -70px;
  margin-bottom: 100px;
  -webkit-box-shadow: 0 0 8px 0 #ddd;
  box-shadow: 0 0 8px 0 #ddd;
  position: relative;
  background-color: white;
}

.up-section .about-section {
  background-color: white;
  position: relative;
  padding-top: 85px;
}

.up-section .team-section .team-box .img-part {
  margin-bottom: 0;
}

.up-section .team-section .team-box .img-part img {
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.up-section .team-section .team-box .team-content {
  position: relative;
  bottom: 0;
}

.up-section .team-section .team-box .team-social {
  bottom: 100px;
}

.up-section .team-section .team-box .team-social .social-box {
  width: 35px;
  height: 35px;
  margin: 0 6px;
}

.up-section .team-section .team-box:hover .img-part img {
  -webkit-filter: brightness(1);
  filter: brightness(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.team-section .team-box {
  position: relative;
}

.team-section .team-box .img-part {
  margin-bottom: 30px;
}

.team-section .team-box .img-part img {
  -webkit-box-shadow: 5px 8.66px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 5px 8.66px 20px 0px rgba(0, 0, 0, 0.15);
  width: 100%;
}

.team-section .team-box .team-content {
  min-width: 240px;
  padding: 20px;
  background-color: white;
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
}

.team-section .team-box .team-content h3 {
  font-size: calc(16px + (24 - 16) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  text-transform: capitalize;
  margin-bottom: 5px;
  margin-top: -4px;
}

.team-section .team-box .team-content h6 {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  text-transform: capitalize;
  font-weight: 800;
  margin-bottom: -2px;
}

.team-section .team-box .team-social {
  position: absolute;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.team-section .team-box .team-social .social-box {
  width: 45px;
  height: 45px;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 8px;
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.team-section .team-box:hover .team-social .social-box {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.team-section .team-slider {
  margin-bottom: 0;
}

.team-section .slick-slide>div {
  margin: 0 25px;
}

.team-section .slick-list {
  margin-left: -25px;
  margin-right: -25px;
}

.team-section .slick-dots {
  padding-top: 45px;
  position: relative;
  bottom: 0;
}

.team-section .slick-dots li {
  z-index: 1;
}

.team-section .slick-dots li button:before {
  color: var(--main-color);
  font-size: 12px;
}

.team-section .slick-dots li.slick-active button:after {
  position: absolute;
  top: 0;
  left: -2px;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 24px;
  line-height: 20px;
  text-align: center;
  color: var(--main-color);
  opacity: 0.1;
  z-index: -1;
}

.facts-section .facts-box {
  background-color: white;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-box-shadow: 2px 3px 13px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 2px 3px 13px 0px rgba(0, 0, 0, 0.06);
}

.facts-section .facts-box .img {
  margin-bottom: 15px;
}

.facts-section .facts-box .img img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.facts-section .facts-box h3 {
  font-size: calc(20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  margin-bottom: 0;
}

.facts-section .facts-box h6 {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  margin-bottom: 0;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: -2px;
}

.facts-section .facts-box:hover .img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.filter-panel {
  background-color: white;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.filter-panel .popup-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.filter-panel .popup-btn h5 {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: 0;
}

.filter-panel .popup-btn img {
  margin-left: 10px;
}

.filter-panel .respon-filter-btn {
  display: none;
}

.filter-panel .left-filter {
  display: inline-block;
}

.filter-panel .left-filter .filters ul h4 {
  margin-bottom: 0;
  line-height: 1;
}

.filter-panel .left-filter .filters ul li {
  padding: 7px 17px;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  cursor: pointer;
  background-color: #f9f9f9;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 700;
  margin-right: 10px;
  text-transform: capitalize;
}

.filter-panel .left-filter .filters ul li.active {
  background-color: var(--main-color);
  color: white;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.filter-panel .collection-grid-view {
  display: inline-block;
  margin: 0 auto;
  padding-left: 15px;
}

.filter-panel .collection-grid-view ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.filter-panel .collection-grid-view>ul>li {
  margin: 0 4px;
}

.filter-panel .collection-grid-view .filter-select li {
  width: 6px;
  height: 17px;
  background-color: var(--main-color);
  margin-left: 4px;
  margin-bottom: -1px;
}

.filter-panel .right-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}

.filter-panel .right-panel ul li+li {
  margin-left: 8px;
}

.filter-panel.bg-inner {
  background-color: #f9f9f9 !important;
}

.filter-panel.bg-inner .left-filter .filters ul li {
  background-color: white;
}

.filter-panel.bg-inner .left-filter .filters ul li.active {
  background-color: var(--main-color);
}

.filter-panel.filter-title-bar {
  padding: 0;
}

.filter-panel.filter-title-bar h4 {
  margin-bottom: 0;
  font-weight: 600;
}

.filter-panel.filter-title-bar .left-filter .filters ul {
  margin-bottom: -15px;
}

.filter-panel.filter-title-bar .left-filter .filters ul li {
  margin-bottom: 15px;
}

.custom-checkbox .form-check-input:checked~.form-check-label::before {
  background-color: var(--main-color);
}

.left-sidebar {
  background-color: white;
  margin-top: 30px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.left-sidebar .back-btn {
  padding: 20px 25px;
  border-bottom: 1px solid #f9f9f9;
  display: none;
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: 0;
  cursor: pointer;
}

.left-sidebar .search-bar {
  position: relative;
  padding: 35px;
  border-bottom: 1px solid #f9f9f9;
}

.left-sidebar .search-bar input {
  width: 100%;
  border: none;
  background-color: #f9f9f9;
  padding: 14px 14px 14px 50px;
}

.left-sidebar .search-bar i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 50px;
  color: var(--main-color);
}

.left-sidebar .search-bar i:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 12px;
  background-color: rgba(233, 179, 14, 0.5);
  right: -10px;
  top: 2px;
}

.left-sidebar .search-bar ::-webkit-input-placeholder {
  font-size: 14px;
  color: var(--main-color);
}

.left-sidebar .search-bar ::-moz-placeholder {
  font-size: 14px;
  color: var(--main-color);
}

.left-sidebar .search-bar :-ms-input-placeholder {
  font-size: 14px;
  color: var(--main-color);
}

.left-sidebar .search-bar ::-ms-input-placeholder {
  font-size: 14px;
  color: var(--main-color);
}

.left-sidebar .search-bar ::placeholder {
  font-size: 14px;
  color: var(--main-color);
}

.left-sidebar .middle-part {
  padding: 25px 35px;
}

.left-sidebar .middle-part .section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #f9f9f9;
}

.left-sidebar .middle-part .section-title h5 {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: 0;
}

.left-sidebar .middle-part .section-title img {
  margin-left: auto;
}

.left-sidebar .middle-part .filter-block .collapse-block-title {
  position: relative;
  font-size: 14px;
  color: var(--main-color);
  text-transform: capitalize;
  margin: 20px 0;
  cursor: pointer;
  font-weight: 600;
}

.left-sidebar .middle-part .filter-block .collapse-block-title:after {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  content: "+";
  color: var(--main-color);
  padding: 0 6px;
  background-color: #f9f9f9;
}

.left-sidebar .middle-part .filter-block .collection-brand-filter .collection-filter-checkbox {
  margin-bottom: 6px;
}

.left-sidebar .middle-part .filter-block .collection-brand-filter .collection-filter-checkbox input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.left-sidebar .middle-part .filter-block .sidebar-hotels {
  max-height: 210px;
  overflow-y: auto;
}

.left-sidebar .middle-part .filter-block .sidebar-hotels .hotel-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.left-sidebar .middle-part .filter-block .sidebar-hotels .hotel-box .img-left {
  width: 100px;
  height: auto;
}

.left-sidebar .middle-part .filter-block .sidebar-hotels .hotel-box .content-right {
  padding-left: 20px;
}

.left-sidebar .middle-part .filter-block .sidebar-hotels .hotel-box .content-right h5 {
  color: var(--main-color);
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 5px;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.left-sidebar .middle-part .filter-block .sidebar-hotels .hotel-box .content-right .rating {
  margin-bottom: 5px;
}

.left-sidebar .middle-part .filter-block .sidebar-hotels .hotel-box .content-right .price {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
}

.left-sidebar .middle-part .filter-block .sidebar-hotels .hotel-box .content-right .price span {
  color: rgba(0, 0, 0, 0.6);
}

.left-sidebar .middle-part .filter-block .sidebar-hotels .hotel-box+.hotel-box {
  margin-top: 10px;
}

.left-sidebar .middle-part .filter-block .form-check-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.left-sidebar .middle-part .filter-block .form-check-input:checked~.form-check-label:after {
  background-image: url("http://themes.pixelstrap.com/rica/assets/images/check-mark.svg");
}

.left-sidebar .middle-part .filter-block .form-check-input:checked~.form-check-label:before {
  background-color: var(--main-color);
}

.left-sidebar .middle-part .filter-block .form-check-label {
  cursor: pointer;
  margin-left: 5px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  text-transform: capitalize;
  position: relative;
}

.left-sidebar .middle-part .filter-block .form-check-label .rating {
  margin-top: 3px;
}

.left-sidebar .middle-part .filter-block .form-check-label:before {
  content: "";
  top: -2px;
  height: 20px;
  width: 20px;
  background: #f1f1f1;
  border: none;
  left: -29px;
  border-radius: 0;
  position: absolute;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.left-sidebar .middle-part .filter-block .form-check-label:after {
  content: "";
  top: -2px;
  height: 20px;
  width: 20px;
  background-size: 48%;
  left: -29px;
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
}

.left-sidebar .middle-part .filter-block .collection-collapse-block {
  border-bottom: 1px solid #f9f9f9;
}

.left-sidebar .middle-part .filter-block .collection-collapse-block.open .collapse-block-title:after {
  content: "-";
}

.left-sidebar .middle-part .filter-block .collection-collapse-block .collection-collapse-block-content {
  padding-bottom: 12px;
}

.left-sidebar .bottom-info {
  padding: 0 35px 35px;
}

.left-sidebar .bottom-info h6 {
  margin-bottom: 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 700;
}

.left-sidebar .bottom-info h4 {
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
}

.left-sidebar .bottom-info h5 {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  background-color: var(--main-color);
  color: white;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.left-sidebar .bottom-info h5 span {
  text-transform: lowercase;
  font-size: 12px;
  border: 2px solid white;
  border-radius: 100%;
  padding: 0 6px;
}

.left-sidebar.sidebar-popup {
  display: none;
  position: absolute;
  z-index: 9;
  top: 80px;
  left: 0;
  border: 1px solid #f1f5f4;
  -webkit-box-shadow: 0 0 5px #ddd;
  box-shadow: 0 0 5px #ddd;
  width: 280px;
  max-height: 530px;
  overflow-y: auto;
}

.left-sidebar.sidebar-popup.open {
  display: block;
}

.left-sidebar.sidebar-class {
  position: fixed;
  width: 300px;
  left: -300px;
  top: 0;
  margin-top: 0;
  z-index: 5;
  overflow-y: auto;
  height: 100vh;
}

.left-sidebar.sidebar-class .back-btn {
  display: block;
}

.search-panel .search-section {
  margin-top: 0;
  margin-bottom: 0;
}

.search-panel .search-section .title-hotel ::-webkit-input-placeholder {
  font-size: calc(16px + (26 - 16) * ((100vw - 320px) / (1920 - 320))) !important;
}

.search-panel .search-section .title-hotel ::-moz-placeholder {
  font-size: calc(16px + (26 - 16) * ((100vw - 320px) / (1920 - 320))) !important;
}

.search-panel .search-section .title-hotel :-ms-input-placeholder {
  font-size: calc(16px + (26 - 16) * ((100vw - 320px) / (1920 - 320))) !important;
}

.search-panel .search-section .title-hotel ::-ms-input-placeholder {
  font-size: calc(16px + (26 - 16) * ((100vw - 320px) / (1920 - 320))) !important;
}

.search-panel .search-section .title-hotel ::placeholder {
  font-size: calc(16px + (26 - 16) * ((100vw - 320px) / (1920 - 320))) !important;
}

.search-panel .search-section .search-box {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.search-panel .search-section .search-box .right-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 50px;
}

.search-panel .search-section .search-box .left-part .search-body {
  padding: 30px 40px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.search-panel .search-section .search-box .left-part .search-body:last-child:after {
  display: block;
}

.search-panel .search-section .search-box .left-part .search-body h6 {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.36);
}

.search-panel .search-section .search-box .left-part .search-body.btn-search:after {
  display: none;
}

.search-panel.sticky {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 1px 3px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 3px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-animation: smoothScroll 1s forwards;
  animation: smoothScroll 1s forwards;
}

.search-panel.sticky .search-section .search-box .left-part .search-body {
  padding: 20px 40px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mobile-filter {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: white;
  padding: 15px;
  display: none;
}

.mobile-filter h5 {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: -3px;
}

.mobile-filter img {
  margin-left: auto;
}

.map-section {
  margin-top: 30px;
  z-index: 1;
  position: relative;
}

.map-section iframe,
.map-section .map {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.infoBox .marker-detail {
  background-color: white;
}

.infoBox .marker-detail img {
  width: 180px;
}

.infoBox .marker-detail .detail-part {
  padding: 6px;
}

.infoBox .marker-detail .detail-part h6 {
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: capitalize;
  color: var(--main-color);
}

.infoBox .marker-detail .detail-part .rating {
  margin-bottom: 3px;
}

.infoBox .marker-detail .detail-part .rating.one-star i:first-child {
  font-weight: 900;
}

.infoBox .marker-detail .detail-part .rating.two-star i:nth-child(-n+2) {
  font-weight: 900;
}

.infoBox .marker-detail .detail-part .rating.three-star i:nth-child(-n+3) {
  font-weight: 900;
}

.infoBox .marker-detail .detail-part .rating.four-star i:nth-child(-n+4) {
  font-weight: 900;
}

.infoBox .marker-detail .detail-part .rating.five-star i {
  font-weight: 900;
}

.infoBox .marker-detail .detail-part span {
  display: block;
  font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 400;
  color: #3e3e3e;
}

.infoBox .marker-detail .detail-part a {
  position: absolute;
  right: 7px;
  bottom: 7px;
  font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
}

.view-map {
  text-transform: capitalize;
  color: var(--main-color);
  margin-right: 15px;
  font-weight: 700;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}

.view-map:hover {
  color: var(--main-color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.view-map.mobile-map {
  display: none;
}

.view-map .arrow {
  position: absolute;
  width: 100%;
  top: -58px;
  font-weight: 600;
  font-size: 14px;
  color: var(--main-color);
  cursor: auto;
}

.view-map .arrow:after {
  content: "";
  background-image: url("../images/icon/arrow.html");
  width: 50px;
  height: 50px;
  position: absolute;
  background-size: contain;
  -webkit-transform: rotate(115deg);
  transform: rotate(115deg);
  left: -70px;
  bottom: -30px;
  background-repeat: no-repeat;
}

.view-map .arrow:hover {
  color: var(--main-color);
}

.onclick-map {
  display: none;
}

.onclick-map iframe,
.onclick-map .map {
  width: 100%;
  height: 300px;
  margin-top: 30px;
}

.onclick-map>div {
  margin-top: 30px;
}

.onclick-map.show {
  display: block;
}

.map-modal .btn-close {
  position: absolute;
  top: 1px;
  right: 10px;
  z-index: 2;
  font-size: 1.9rem;
  background: none;
}

.map-modal .modal-dialog {
  width: 100%;
  height: 90%;
  max-width: 97%;
}

.map-modal .modal-dialog .modal-content {
  border: 0 none;
  border-radius: 0;
  background-color: #f9f9f9;
}

.map-modal .modal-dialog .modal-content .modal-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.map-modal .modal-dialog .modal-content .modal-body .left-sidebar {
  height: 100%;
  overflow: scroll;
}

.map-modal .modal-dialog .modal-content iframe,
.map-modal .modal-dialog .modal-content .map {
  width: 100%;
  height: 100%;
}

.list-view {
  margin-top: 30px;
}

.list-view .list-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  background-color: white;
}

.list-view .list-box .list-img {
  width: 35%;
}

.list-view .list-box .list-content {
  margin-left: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 60%;
}

.list-view .list-box .list-content>div {
  width: 100%;
  position: relative;
}

.list-view .list-box .list-content h5 {
  font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  margin-bottom: 0;
  color: var(--main-color);
  font-weight: 800;
  line-height: 1.5;
}

.list-view .list-box .list-content h6 {
  color: #797979;
}

.list-view .list-box .list-content p {
  color: rgba(0, 0, 0, 0.7);
  text-transform: capitalize;
  font-weight: 400;
}

.list-view .list-box .list-content .price {
  color: #333333;
  font-size: calc(16px + (22 - 16) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 800;
  margin-top: 15px;
}

.list-view .list-box .list-content .price del {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 700;
  margin-right: 10px;
}

.list-view .list-box .list-content .price span {
  font-size: 14px;
}

.list-view .list-box .list-content .rating span {
  color: #3e3e3e;
  font-size: 12px;
  font-weight: 700;
  margin-left: 18px;
}

.list-view .list-box .list-content .facility-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin-top: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.list-view .list-box .list-content .facility-icon .facility-box span {
  text-transform: capitalize;
  color: #5f5f5f;
  font-size: 12px;
}

.list-view .list-box .list-content .facility-icon .facility-box img {
  display: block;
  width: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));
  margin: 0 auto;
}

.list-view .list-box .list-content .facility-icon .facility-box i {
  display: block;
  font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: rgba(95, 95, 95, 0.64);
}

.list-view .list-box .list-content .facility-icon .facility-box+.facility-box {
  margin-left: 15px;
}

.list-view .list-box .list-content .hotel-info {
  margin-top: 12px;
}

.list-view .list-box .list-content .book-now {
  position: absolute;
  right: 0;
  bottom: 0;
}

.list-view .list-box .list-content .offer-box {
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid #f9f9f9;
  padding: 10px;
  color: var(--main-color);
  font-weight: 700;
  max-width: 150px;
}

.list-view .list-box+.list-box {
  margin-top: 30px;
}

.list-view .list-box .slick-prev {
  left: 1px;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: transparent;
  height: 36px;
}

.list-view .list-box .slick-prev:before {
  content: "\f053";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.list-view .list-box .slick-next {
  right: 0;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: transparent;
  height: 36px;
}

.list-view .list-box .slick-next:before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.list-view .list-box .slider-nav {
  margin-top: 3px;
}

.list-view .list-box .slider-nav .slick-slide {
  margin: 0 3px;
  cursor: pointer;
}

.list-view .list-box .slider-nav .slick-list {
  margin-left: -3px;
  margin-right: -3px;
}

.list-view .list-box:hover .special-img .bg-size {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.list-view .list-box:hover .slick-next,
.list-view .list-box:hover .slick-prev {
  background-color: #252525;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pagination-section {
  margin-top: 40px;
}

.pagination-section .pagination {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pagination-section .pagination .page-item.active .page-link {
  background-color: var(--main-color);
  color: white;
}

.pagination-section .pagination .page-item .page-link {
  color: var(--main-color);
  background-color: white;
  border: none;
  margin: 0 3px;
  -webkit-box-shadow: 0 0 8px #dadada;
  box-shadow: 0 0 8px #dadada;
}

.pagination-section .pagination .page-item .page-link:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.filter_button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.filter_button h5 {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: -3px;
}

.filter_button img {
  margin-right: 10px;
}

.filter-bottom-content {
  display: none;
  position: absolute;
  left: 0;
  top: 80px;
  width: 100%;
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0px 1px 9px 3px rgba(228, 228, 228, 0.81);
  box-shadow: 0px 1px 9px 3px rgba(228, 228, 228, 0.81);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}

.filter-bottom-content .middle-part .filter-block .collapse-block-title {
  cursor: default;
  margin-top: 0;
  font-weight: 700;
}

.filter-bottom-content .middle-part .filter-block .collapse-block-title:after {
  display: none;
}

.filter-bottom-content .middle-part .filter-block .collection-collapse-block {
  border-bottom: none;
}

.filter-bottom-content .middle-part .filter-block .collection-collapse-block .collection-collapse-block-content {
  padding-bottom: 0;
}

.filter-bottom-content .middle-part .filter-block .collection-brand-filter .collection-filter-checkbox {
  margin-bottom: 10px;
}

.filter-bottom-content .middle-part .button_bottom {
  width: 100%;
}

.filter-bottom-content .middle-part .btn {
  text-transform: capitalize;
  padding: 5px 15px;
}

.hotel-single-section {
  background-position: center;
  background-size: cover;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.hotel-single-section .hotel-title-section {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(231, 56, 39, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(231, 56, 39, 0) 100%);
  position: absolute;
  bottom: 0;
  width: 100%;
}

.hotel-single-section .hotel-title-section .hotel-name {
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hotel-single-section .hotel-title-section .hotel-name .left-part .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 18px;
}

.hotel-single-section .hotel-title-section .hotel-name .left-part .top h2 {
  color: white;
  margin-bottom: 0;
  font-size: calc(16px + (36 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.hotel-single-section .hotel-title-section .hotel-name .left-part .top .rating {
  margin-left: 15px;
}

.hotel-single-section .hotel-title-section .hotel-name .left-part .top .share-buttons .btn {
  padding: 4px 10px;
  text-transform: capitalize;
  border-radius: 5px;
  margin-left: calc(5px + (10 - 5) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  background-color: #f9f9f9;
}

.hotel-single-section .hotel-title-section .hotel-name .left-part p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-weight: 700;
}

.hotel-single-section .hotel-title-section .hotel-name .left-part .facility-detail {
  margin-top: 20px;
  margin-bottom: -6px;
}

.hotel-single-section .hotel-title-section .hotel-name .left-part .facility-detail span {
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  padding: 2px 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.hotel-single-section .hotel-title-section .hotel-name .left-part .facility-detail span i {
  margin-right: 3px;
}

.hotel-single-section .hotel-title-section .hotel-name .left-part .facility-detail span+span {
  margin-left: 10px;
}

.hotel-single-section .hotel-title-section .hotel-name .right-part {
  margin-left: auto;
  text-align: right;
}

.hotel-single-section .hotel-title-section .hotel-name .right-part .price {
  font-size: calc(16px + (36 - 16) * ((100vw - 320px) / (1920 - 320)));
  color: white;
}

.hotel-single-section .hotel-title-section .hotel-name .right-part .price span {
  font-size: 16px;
}

.hotel-single-section .hotel-title-section .hotel-name .right-part .btn {
  padding: 7px 13px;
}

.hotel_title_section {
  position: relative;
  width: 100%;
}

.hotel_title_section .hotel-name {
  padding: 0 0 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hotel_title_section .hotel-name .left-part .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 18px;
}

.hotel_title_section .hotel-name .left-part .top h2 {
  margin-bottom: 0;
  font-size: calc(18px + (36 - 18) * ((100vw - 320px) / (1920 - 320)));
}

.hotel_title_section .hotel-name .left-part .top .rating {
  margin-left: 15px;
}

.hotel_title_section .hotel-name .left-part .top .share-buttons .btn {
  padding: 4px 10px;
  text-transform: capitalize;
  border-radius: 5px;
  margin-left: calc(5px + (10 - 5) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  background-color: white;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.hotel_title_section .hotel-name .left-part p {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
  font-weight: 700;
}

.hotel_title_section .hotel-name .left-part .facility-detail {
  margin-top: 15px;
  margin-bottom: -6px;
}

.hotel_title_section .hotel-name .left-part .facility-detail span {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 700;
  font-size: 12px;
  text-transform: capitalize;
  padding: 2px 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.hotel_title_section .hotel-name .left-part .facility-detail span i {
  margin-right: 3px;
}

.hotel_title_section .hotel-name .left-part .facility-detail span+span {
  margin-left: 10px;
}

.hotel_title_section .hotel-name .right-part {
  margin-left: auto;
  text-align: right;
}

.hotel_title_section .hotel-name .right-part .price {
  font-size: calc(16px + (36 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.hotel_title_section .hotel-name .right-part .price span {
  font-size: 16px;
}

.hotel_title_section .hotel-name .right-part .btn {
  padding: 7px 13px;
}

.single-section {
  position: relative;
}

.single-section .image_section {
  position: relative;
}

.single-section .image_section .view-all {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(231, 56, 39, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(231, 56, 39, 0) 100%);
  margin-bottom: 0;
  padding: 10px;
  text-transform: capitalize;
  color: white;
  font-weight: 800;
  line-height: 1;
}

.single-section .image_section .slider-thumbnail {
  margin-top: 5px;
  overflow: hidden;
}

.single-section .image_section .slider-thumbnail .slick-slide>div {
  margin: 0 5px;
}

.single-section .image_section .slider-thumbnail .slick-list {
  margin-left: -5px;
  margin-right: -5px;
}

.single-section .facility_sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: white;
  margin-top: 20px;
}

.single-section .facility_sec .icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 50px;
  position: relative;
}

.single-section .facility_sec .icon-box svg {
  width: 30px;
  height: auto;
  fill: var(--main-color);
}

.single-section .facility_sec .icon-box .content {
  margin-left: 15px;
}

.single-section .facility_sec .icon-box .content h5 {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 0;
}

.single-section .facility_sec .icon-box .content h6 {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
  text-transform: capitalize;
  margin-bottom: 0;
}

.single-section .facility_sec .icon-box:after {
  content: "";
  width: 1px;
  height: 25px;
  background-color: var(--main-color);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.single-section .facility_sec .icon-box:last-child:after {
  display: none;
}

.single-section .description-section .menu-top {
  margin-top: 30px;
  padding: 12px 0;
  background-color: white;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .description-section .menu-top li a {
  color: var(--main-color);
  text-transform: uppercase;
  font-weight: 700;
  padding: 17px 30px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.single-section .description-section .menu-top li.active a {
  color: var(--main-color);
  border-bottom: 2px solid var(--main-color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.single-section .description-section .menu-top li.mobile-menu {
  display: none;
}

.single-section .description-section .menu-top.sticky {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 1px 3px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 3px 20px 0px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  padding: 16px 0;
  -webkit-animation: smoothScroll 1s forwards;
  animation: smoothScroll 1s forwards;
}

.single-section .description-section .menu-top.sticky li a {
  padding: 15px 30px;
}

.single-section .description-section .menu-top.menu-up {
  margin-top: 0;
  margin-bottom: 30px;
}

.single-section .description-section .description-details .content-title {
  text-transform: uppercase;
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
}

.single-section .description-section .description-details .menu-part {
  margin-top: 20px;
  padding: 30px;
  background-color: white;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .description-section .description-details .menu-part.page-section .zoom-gallery>div:nth-child(-n+3) {
  margin-bottom: 0;
}

.single-section .description-section .description-details .menu-part .accordion-plan {
  position: relative;
}

.single-section .description-section .description-details .menu-part .accordion-plan .card {
  border-radius: 0;
  border: 1px solid #f9f9f9;
}

.single-section .description-section .description-details .menu-part .accordion-plan .card .card-header {
  background-color: #f9f9f9;
  border-bottom: 0;
  padding: 6px;
}

.single-section .description-section .description-details .menu-part .accordion-plan .card .card-header button {
  display: block;
  width: 100%;
  text-align: left;
  color: #353535;
  text-transform: capitalize;
}

.single-section .description-section .description-details .menu-part .accordion-plan .card .card-header button:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 6px solid #353535;
  right: 20px;
  top: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.single-section .description-section .description-details .menu-part .accordion-plan .card .card-header button[aria-expanded="true"]:before {
  border-top: 0;
  border-bottom: 6px solid #353535;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.single-section .description-section .description-details .menu-part .accordion-plan .card .card-body {
  color: #444444;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.single-section .description-section .description-details .menu-part .accordion-plan .card .card-body .highlight {
  margin-top: 10px;
}

.single-section .description-section .description-details .menu-part .accordion-plan .card .card-body .highlight li {
  display: block;
  text-transform: capitalize;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.single-section .description-section .description-details .menu-part .accordion-plan .card .card-body .highlight li i {
  margin-right: 5px;
  font-size: 12px;
}

.single-section .description-section .description-details .menu-part .accordion-plan .card .card-body .highlight li img {
  margin-right: 5px;
  width: 18px;
}

.single-section .description-section .description-details .menu-part .accordion-plan .card+.card {
  margin-top: 20px;
}

.single-section .description-section .description-details .menu-part .list-view {
  margin-top: 0;
}

.single-section .description-section .description-details .menu-part .list-view .list-img {
  width: 30%;
}

.single-section .description-section .description-details .menu-part .list-view .facility-icon {
  margin-top: 10px;
}

.single-section .description-section .description-details .menu-part .list-view .list-box {
  padding: 0;
}

.single-section .description-section .description-details .menu-part .list-view+.list-view {
  margin-top: 20px;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay {
  position: relative;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay .overlay-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay .overlay-background i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: white;
  font-size: 22px;
  display: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay:hover .overlay-background {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: rgba(0, 0, 0, 0.6);
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay:hover .overlay-background i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-section .description-section .description-details .menu-part .zoom-gallery>div:nth-child(-n+3) {
  margin-bottom: 30px;
}

.single-section .description-section .description-details .menu-part.facility h6 {
  text-transform: capitalize;
  font-weight: 700;
  color: #222222;
}

.single-section .description-section .description-details .menu-part.facility h6 img {
  margin-right: 5px;
  width: 20px;
}

.single-section .description-section .description-details .menu-part.facility ul {
  margin-left: 10px;
}

.single-section .description-section .description-details .menu-part.facility ul li {
  display: block;
  text-transform: capitalize;
  line-height: 1.9;
}

.single-section .description-section .description-details .menu-part.facility ul li i {
  font-size: 8px;
  margin-right: 5px;
  color: rgba(0, 0, 0, 0.6);
}

.single-section .description-section .description-details .menu-part.about h6 {
  font-weight: 700;
  text-transform: capitalize;
}

.single-section .description-section .description-details .menu-part.about p {
  color: #383838;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1.6;
}

.single-section .description-section .description-details .menu-part.about .about-sec h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.single-section .description-section .description-details .menu-part.about .about-sec h6 {
  color: var(--main-color);
}

.single-section .description-section .description-details .menu-part.about .about-sec p {
  color: rgba(0, 0, 0, 0.7);
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.single-section .description-section .description-details .menu-part.about .about-sec p.top-space {
  margin-top: -6px;
}

.single-section .description-section .description-details .menu-part.about .about-sec p.bottom-space {
  margin-bottom: -7px;
}

.single-section .description-section .description-details .menu-part.about .about-sec ul {
  padding-left: 25px;
}

.single-section .description-section .description-details .menu-part.about .about-sec ul li {
  list-style-type: square;
  display: list-item;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.7);
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.single-section .description-section .description-details .menu-part.about .about-sec+.about-sec {
  margin-top: 15px;
}

.single-section .description-section .description-details .menu-part.about .about-sec .city-detail {
  margin-bottom: 20px;
  font-size: 18px;
  color: #353535;
}

.single-section .description-section .description-details .menu-part.about .detail-img {
  margin: 20px 0;
}

.single-section .description-section .description-details .menu-part.map iframe {
  width: 100%;
  height: 420px;
  margin-bottom: -5px;
}

.single-section .description-section .description-details .menu-part.review .review-box .rating span {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  margin-left: 10px;
  font-weight: 700;
}

.single-section .description-section .description-details .menu-part.review .review-box h6 {
  font-size: 14px;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 4px;
}

.single-section .description-section .description-details .menu-part.review .review-box p {
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 0;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.single-section .description-section .description-details .menu-part.review .review-box+.review-box {
  border-top: 1px solid #f9f9f9;
  padding-top: 12px;
  margin-top: 15px;
}

.single-section .description-section .description-details .menu-part.policy p {
  color: #212121;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1.6;
}

.single-section .description-section .description-details .menu-part.policy p:last-child {
  margin-bottom: 0;
}

.single-section .description-section .description-details .menu-part+.menu-part {
  margin-top: 20px;
}

.single-section .description-section .description-details .menu-part .rooms-box {
  width: 100%;
}

.single-section .description-section .description-details .menu-part .rooms-box tbody tr {
  display: block;
}

.single-section .description-section .description-details .menu-part .rooms-box tbody tr+tr {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #f9f9f9;
}

.single-section .description-section .description-details .menu-part .rooms-box td:first-child {
  width: 25%;
}

.single-section .description-section .description-details .menu-part .rooms-box td:nth-child(2) {
  width: 55%;
}

.single-section .description-section .description-details .menu-part .rooms-box td:nth-child(3) {
  width: 20%;
  text-align: right;
}

.single-section .description-section .description-details .menu-part .rooms-box .price-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.single-section .description-section .description-details .menu-part .rooms-box .price-details h6 {
  font-size: 14px;
  margin-bottom: 3px;
  color: rgba(0, 0, 0, 0.74);
}

.single-section .description-section .description-details .menu-part .rooms-box .price-details h5 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: calc(18px + (24 - 18) * ((100vw - 320px) / (1920 - 320)));
}

.single-section .description-section .description-details .menu-part .rooms-box .price-details .btn {
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 0;
  margin-top: 7px;
}

.single-section .description-section .description-details .menu-part .rooms-box .price-details span {
  display: block;
  color: rgba(0, 0, 0, 0.72);
}

.single-section .description-section .description-details .menu-part .rooms-box .room-detail {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.single-section .description-section .description-details .menu-part .rooms-box .room-detail h6 {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.single-section .description-section .description-details .menu-part .rooms-box .room-detail .row {
  width: 100%;
}

.single-section .description-section .description-details .menu-part .rooms-box .room-detail .facility-detail li {
  display: block;
  color: var(--main-color);
  text-transform: capitalize;
  line-height: 28px;
  letter-spacing: 0.06em;
}

.single-section .description-section .description-details .menu-part .rooms-box .room-detail .facility-detail li img {
  margin-right: 8px;
  width: 20px;
}

.single-section .description-section .description-details .menu-part .rooms-box .room-detail .facility-detail li i {
  font-size: 12px;
  margin-right: 5px;
  color: rgba(0, 0, 0, 0.5);
}

.single-section .description-section .description-details .menu-part .rooms-box .room-title {
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 10px;
}

.single-section .description-section .description-details.full-slider .menu-part {
  margin-top: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 70px;
}

.single-section .description-section .description-details.full-slider .menu-part .row {
  margin-bottom: 20px;
}

.single-section .description-section.tab-section .menu-top {
  padding: 0;
  background-color: transparent;
}

.single-section .description-section.tab-section .menu-top .nav-tabs {
  margin-bottom: 15px;
  background-color: white;
  border-bottom: none;
}

.single-section .description-section.tab-section .menu-top .nav-tabs .nav-item.active {
  border: none;
  border-bottom: 2px solid var(--main-color);
  color: var(--main-color);
}

.single-section .description-section.tab-section .menu-top .nav-tabs .nav-item .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
}

.single-section .description-section.tab-section .menu-top .nav-tabs .nav-item .nav-link.active {
  border: none;
  border-bottom: 2px solid var(--main-color);
  color: var(--main-color);
}

.single-section .description-section.tab-section .menu-top.sticky {
  background-color: white;
  margin-bottom: 0;
}

.single-section .description-section.tab-section .menu-top.sticky .nav-tabs {
  margin-bottom: 0;
}

.single-section .description-section.tab-section .description-details .menu-part {
  margin-top: 0;
}

.single-section .single-sidebar {
  background-color: white;
  padding: 20px;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .single-sidebar h4.title {
  text-transform: capitalize;
  font-weight: 700;
  margin-top: -4px;
}

.single-section .single-sidebar p {
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.single-section .single-sidebar p i {
  font-size: 13px;
  margin-right: 10px;
  color: rgba(0, 0, 0, 0.59);
}

.single-section .single-sidebar .selection-section.flight-search .flight-search-detail {
  padding: 0;
}

.single-section .single-sidebar .selection-section.flight-search .flight-search-detail .form-group {
  margin-bottom: 20px;
}

.single-section .single-sidebar .newsletter-sec {
  padding: 20px;
}

.single-section .single-sidebar .newsletter-sec .button {
  margin-top: 15px;
  text-align: right;
}

.single-section .single-sidebar .newsletter-sec .button .btn {
  padding: 6px 14px;
  font-size: 14px;
  text-transform: capitalize;
}

.single-section .single-sidebar .overlay-map {
  position: relative;
  margin-bottom: 10px;
}

.single-section .single-sidebar .overlay-map img {
  height: 100px;
  width: 100%;
}

.single-section .single-sidebar .overlay-map iframe,
.single-section .single-sidebar .overlay-map .map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.0001;
  z-index: 1;
}

.single-section .single-sidebar .overlay-map h6 {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: var(--main-color);
  text-transform: capitalize;
  font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
  z-index: 0;
  font-weight: 600;
  margin-bottom: 0;
}

.single-section .single-sidebar .price-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-section .single-sidebar .price-part .left-part a {
  color: var(--main-color);
  font-weight: 700;
  text-transform: capitalize;
}

.single-section .single-sidebar .price-part .left-part span {
  display: block;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 24px;
}

.single-section .single-sidebar .price-part .left-part span i {
  font-size: 10px;
  margin-right: 5px;
  color: green;
}

.single-section .single-sidebar .price-part .left-part span.red {
  color: darkred;
}

.single-section .single-sidebar .price-part .right-part {
  margin-left: auto;
  text-align: right;
}

.single-section .single-sidebar .price-part .right-part span {
  color: rgba(0, 0, 0, 0.4);
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 700;
}

.single-section .single-sidebar .price-part .right-part p {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--main-color);
}

.single-section .single-sidebar .price-part .right-part h6 {
  margin-bottom: 0;
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  color: var(--main-color);
}

.single-section .single-sidebar .book-btn-section {
  border-top: 1px solid #f9f9f9;
  margin-top: 10px;
  padding-top: 15px;
  text-align: right;
}

.single-section .single-sidebar .book-btn-section ::-webkit-input-placeholder {
  color: #495057;
  text-transform: capitalize;
  cursor: pointer;
}

.single-section .single-sidebar .book-btn-section ::-moz-placeholder {
  color: #495057;
  text-transform: capitalize;
  cursor: pointer;
}

.single-section .single-sidebar .book-btn-section :-ms-input-placeholder {
  color: #495057;
  text-transform: capitalize;
  cursor: pointer;
}

.single-section .single-sidebar .book-btn-section ::-ms-input-placeholder {
  color: #495057;
  text-transform: capitalize;
  cursor: pointer;
}

.single-section .single-sidebar .book-btn-section ::placeholder {
  color: #495057;
  text-transform: capitalize;
  cursor: pointer;
}

.single-section .single-sidebar .book-btn-section .detail-top input {
  margin-bottom: 10px;
}

.single-section .single-sidebar .book-btn-section .detail-top input:last-child {
  margin-bottom: 0;
}

.single-section .single-sidebar .book-btn-section .gj-datepicker+.gj-datepicker {
  margin-top: 10px;
}

.single-section .single-sidebar .book-btn-section .gj-datepicker ::-webkit-input-placeholder {
  color: #495057;
}

.single-section .single-sidebar .book-btn-section .gj-datepicker ::-moz-placeholder {
  color: #495057;
}

.single-section .single-sidebar .book-btn-section .gj-datepicker :-ms-input-placeholder {
  color: #495057;
}

.single-section .single-sidebar .book-btn-section .gj-datepicker ::-ms-input-placeholder {
  color: #495057;
}

.single-section .single-sidebar .book-btn-section .gj-datepicker ::placeholder {
  color: #495057;
}

.single-section .single-sidebar .book-btn-section .btn-ed {
  padding: 6px 14px;
  font-size: 14px;
  margin-top: 20px;
  border-radius: 0;
}

.single-section .single-sidebar .book-btn-section .selector select {
  cursor: pointer;
  width: 100%;
  height: 38px;
  background-color: transparent;
  font-size: 1rem;
  margin-top: 10px;
  padding: 5px 14px;
  color: #495057;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  background: url(../images/icon/down-black.html) no-repeat 95%;
}

.single-section .single-sidebar .book-btn-section .rooms-section {
  position: relative;
  margin-top: 10px;
}

.single-section .single-sidebar .book-btn-section .rooms-section ::-webkit-input-placeholder {
  color: #495057;
  text-transform: capitalize;
  cursor: pointer;
}

.single-section .single-sidebar .book-btn-section .rooms-section ::-moz-placeholder {
  color: #495057;
  text-transform: capitalize;
  cursor: pointer;
}

.single-section .single-sidebar .book-btn-section .rooms-section :-ms-input-placeholder {
  color: #495057;
  text-transform: capitalize;
  cursor: pointer;
}

.single-section .single-sidebar .book-btn-section .rooms-section ::-ms-input-placeholder {
  color: #495057;
  text-transform: capitalize;
  cursor: pointer;
}

.single-section .single-sidebar .book-btn-section .rooms-section ::placeholder {
  color: #495057;
  text-transform: capitalize;
  cursor: pointer;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box {
  text-align: left;
  padding: 10px;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .room-cls .title_room {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 700;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .room-cls .qty-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .room-cls .qty-box label {
  text-transform: capitalize;
  margin-right: 30px;
  margin-bottom: 0;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .room-cls .qty-box .input-group {
  width: 140px;
  margin-left: auto;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .room-cls .qty-box .input-group .btn {
  background-color: transparent;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .room-cls .qty-box .input-group .form-control {
  padding: 0;
  text-align: center;
  border: none;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .room-cls .qty-box+.qty-box {
  margin-top: 10px;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .room-cls+.room-cls {
  margin-top: 10px;
  border-top: 1px solid #f9f9f9;
  padding-top: 10px;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .bottom-part {
  border-top: 1px solid #f9f9f9;
  margin-top: 10px;
  padding-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .bottom-part .add-room {
  text-transform: capitalize;
  color: var(--main-color);
  font-weight: 700;
}

.single-section .single-sidebar .book-btn-section .rooms-section .selector-box .bottom-part .btn {
  margin-left: auto;
}

.single-section .single-sidebar .contact-title {
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.single-section .single-sidebar .bottom_sec {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid #f9f9f9;
}

.single-section .single-sidebar .bottom_sec h6 {
  text-transform: capitalize;
  color: var(--main-color);
  font-size: 14px;
  font-weight: 700;
}

.single-section .single-sidebar .bottom_sec h6:last-child {
  margin-bottom: 0;
}

.single-section .single-sidebar .weather-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin-top: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.single-section .single-sidebar .weather-sec li svg {
  width: 40px;
  margin: 0;
}

.single-section .single-sidebar .weather-sec li h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.single-section .single-sidebar .weather-sec li h6 {
  font-size: 12px;
  margin-bottom: 0;
}

.single-section .single-sidebar .weather-sec li+li {
  margin-left: 20px;
}

.single-section .single-sidebar .social-box {
  margin-top: 18px;
}

.single-section .single-sidebar .social-box i {
  font-size: 14px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: white;
  padding: 9px;
  background-color: var(--main-color);
  border-radius: 100%;
  width: 32px;
  height: 32px;
  text-align: center;
  margin-right: 3px;
}

.single-section .single-sidebar+.single-sidebar {
  margin-top: 30px;
}

.single-section .single-sidebar .order-cart .cart-items {
  margin-top: 20px;
}

.single-section .single-sidebar .order-cart .cart-items .items {
  position: relative;
}

.single-section .single-sidebar .order-cart .cart-items .items h6 {
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}

.single-section .single-sidebar .order-cart .cart-items .items h5 {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  font-weight: 500;
  margin-bottom: 0;
}

.single-section .single-sidebar .order-cart .cart-items .items+.items {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box {
  width: 120px;
  margin-top: 10px;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box .input-group {
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box .input-group .btn {
  padding: 5px 10px;
  font-size: 10px;
  line-height: 1;
  background-color: #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box .input-group .form-control {
  padding: 2px;
  width: 50px;
  text-align: center;
  border-color: #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-items .items .price {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 16px;
  font-weight: 700;
}

.single-section .single-sidebar .order-cart .cart-items .items.veg h6 {
  padding-left: 25px;
  position: relative;
}

.single-section .single-sidebar .order-cart .cart-items .items.veg h6:after {
  content: "";
  left: 0;
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid green;
  top: 2px;
}

.single-section .single-sidebar .order-cart .cart-items .items.veg h6:before {
  content: "";
  left: 3px;
  width: 8px;
  height: 8px;
  background-color: green;
  position: absolute;
  border-radius: 100%;
  top: 5px;
}

.single-section .single-sidebar .order-cart .cart-items .items.non-veg h6 {
  padding-left: 25px;
  position: relative;
}

.single-section .single-sidebar .order-cart .cart-items .items.non-veg h6:after {
  content: "";
  left: 0;
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid red;
  top: 2px;
}

.single-section .single-sidebar .order-cart .cart-items .items.non-veg h6:before {
  content: "";
  left: 3px;
  width: 8px;
  height: 8px;
  background-color: red;
  position: absolute;
  border-radius: 100%;
  top: 5px;
}

.single-section .single-sidebar .order-cart .cart-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-bottom .sub-total {
  font-weight: 700;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.single-section .single-sidebar .order-cart .cart-bottom .sub-total span {
  float: right;
}

.single-section .single-sidebar .order-cart .cart-bottom p {
  font-size: 12px;
  line-height: 1;
  margin-bottom: 0;
  max-width: 70%;
}

.single-section .single-sidebar .order-cart .cart-bottom .checkout {
  margin-top: 20px;
}

.single-section .single-sidebar .order-cart .empty-cart {
  text-align: center;
  margin-top: 50px;
}

.single-section .single-sidebar .order-cart .empty-cart h5 {
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  margin-bottom: 20px;
}

.single-section .single-sidebar .order-cart .empty-cart img {
  margin-bottom: 20px;
  opacity: 0.5;
}

.single-section .single-sidebar .order-cart .empty-cart p {
  font-size: 14px;
  line-height: 18px;
  text-align: left;
  color: rgba(0, 0, 0, 0.64);
}

.gj-picker-bootstrap table tr td.selected.gj-cursor-pointer div {
  background-color: var(--main-color);
}

.rooms-section {
  position: relative;
}

.rooms-section .selector_box {
  padding: 10px;
}

.rooms-section .selector_box .room-cls .title_room {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 700;
}

.rooms-section .selector_box .room-cls .qty-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rooms-section .selector_box .room-cls .qty-box label {
  text-transform: capitalize;
  margin-right: 30px;
  margin-bottom: 0;
}

.rooms-section .selector_box .room-cls .qty-box .input-group {
  width: 140px;
  margin-left: auto;
}

.rooms-section .selector_box .room-cls .qty-box .input-group .btn {
  background-color: transparent;
}

.rooms-section .selector_box .room-cls .qty-box .input-group .form-control {
  padding: 0;
  text-align: center;
  border: none;
}

.rooms-section .selector_box .room-cls .qty-box+.qty-box {
  margin-top: 10px;
}

.rooms-section .selector_box .room-cls+.room-cls {
  margin-top: 10px;
  border-top: 1px solid #f9f9f9;
  padding-top: 10px;
}

.rooms-section .selector_box .bottom-part {
  border-top: 1px solid #f9f9f9;
  margin-top: 10px;
  padding-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rooms-section .selector_box .bottom-part .add-room {
  text-transform: capitalize;
  color: var(--main-color);
  font-weight: 700;
}

.rooms-section .selector_box .bottom-part .btn {
  margin-left: auto;
}

.suggestion_box .form-group {
  margin-bottom: 30px;
  position: relative;
}

.suggestion_box .form-group img {
  position: absolute;
  right: 1px;
  bottom: 2px;
  border-left: 1px solid #e5e5e5;
  padding: 8px;
  z-index: 1;
  background-color: white;
}

.m-cls {
  margin-top: 20px;
}

.related-box .slick-slide>div {
  margin: 0 15px !important;
}

.related-box .slick-list {
  margin-left: -15px !important;
  margin-right: -15px !important;
}

.related-box .special-box {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: white;
  margin-bottom: 0;
}

.overlay-hover .bg-size {
  position: relative;
}

.overlay-hover .bg-size:after {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  content: "";
}

.overlay-hover .bg-size:hover:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.cab-single-detail {
  background-color: white;
  padding: 20px;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
  margin-top: 25px;
}

.cab-single-detail .title-car {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cab-single-detail .title-car h5,
.cab-single-detail .title-car h6 {
  margin-bottom: 0;
}

.cab-single-detail .title-car h5 {
  font-weight: 700;
  text-transform: capitalize;
}

.cab-single-detail .title-car h6 {
  margin-left: auto;
  text-transform: capitalize;
}

.cab-single-detail .title-car h6 span {
  font-weight: 600;
}

.cab-single-detail .description {
  margin-top: 20px;
  color: rgba(0, 0, 0, 0.52);
}

.cab-single-detail .overview h6 {
  text-transform: capitalize;
  margin-bottom: 16px;
  color: var(--main-color);
  font-weight: 700;
}

.cab-single-detail .overview ul {
  display: inline-block;
}

.cab-single-detail .overview ul li {
  display: block;
}

.cab-single-detail .overview ul li+li {
  margin-top: 15px;
}

.cab-single-detail .overview ul+ul {
  margin-left: 30px;
}

.cab-single-detail .details {
  margin-top: 25px;
}

.cab-single-detail .details h6 {
  text-transform: capitalize;
  margin-bottom: 10px;
  color: var(--main-color);
  font-weight: 700;
}

.cab-single-detail .details ul li {
  display: block;
  text-transform: capitalize;
}

.cab-single-detail .details ul li+li {
  margin-top: 5px;
}

.guest-detail {
  background-color: white;
  padding: 20px;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.guest-detail h2 {
  font-size: 30px;
  color: var(--main-color);
  margin-bottom: 22px;
  text-transform: capitalize;
  margin-top: -6px;
}

.guest-detail form .input-group-text {
  border-left: none;
  color: #495057;
  text-transform: uppercase;
  font-weight: 700;
}

.guest-detail form .input-group-text:hover {
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-left: 0;
}

.guest-detail form label {
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 5px;
}

.guest-detail form .form-control {
  border-radius: 0;
}

.guest-detail form .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #ced4da;
}

.guest-detail form .submit-btn {
  text-align: right;
}

.guest-detail form .submit-btn .btn {
  width: 25%;
  margin-top: 30px;
}

.guest-detail .first-name .iti__flag-container {
  display: none;
}

.summery-box {
  background-color: white;
  padding: 20px;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.summery-box h2 {
  font-size: calc(16px + (22 - 16) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  margin-top: -6px;
}

.summery-box .hotel-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
}

.summery-box .hotel-section .hotel-img {
  width: 35%;
}

.summery-box .hotel-section .hotel-detail {
  margin-left: 20px;
}

.summery-box .hotel-section .hotel-detail h6 {
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 4px;
  margin-top: -2px;
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.summery-box .hotel-section .hotel-detail p {
  margin-bottom: -3px;
  color: var(--main-color);
}

.summery-box .summery-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 12px;
  padding-top: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #f9f9f9;
}

.summery-box .summery-section .box {
  width: 100%;
}

.summery-box .summery-section .box .right {
  text-align: right;
  width: 49%;
  display: inline-block;
}

.summery-box .summery-section .box .left {
  width: 50%;
  display: inline-block;
}

.summery-box .summery-section .box .down {
  margin-top: 10px;
}

.summery-box .summery-section .box .down h5 {
  margin-bottom: -4px;
}

.summery-box .summery-section h6 {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 4px;
}

.summery-box .summery-section h5 {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  font-weight: 600;
}

.summery-box .summery-section .edit-cls {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  text-transform: capitalize;
  font-weight: 600;
  margin-left: auto;
}

.summery-box .summery-section .payment-details {
  width: 100%;
}

.summery-box .summery-section .payment-details table {
  width: 100%;
}

.summery-box .summery-section .payment-details table tbody tr td:first-child {
  width: 70%;
  text-transform: capitalize;
}

.summery-box .summery-section .payment-details table tbody tr td.amount {
  font-size: calc(16px + (22 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.summery-box .summery-section .payment-details table tbody tr td:nth-child(2) {
  text-align: right;
  font-weight: 700;
}

.book-panel {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 2;
  background-color: white;
  text-align: center;
  display: none;
  -webkit-box-shadow: -1px -2px 6px 0px rgba(168, 168, 168, 0.3);
  box-shadow: -1px -2px 6px 0px rgba(168, 168, 168, 0.3);
}

.book-panel .btn {
  width: 50%;
  color: var(--main-color);
  background-color: white;
  padding: 10px;
}

.book-panel .btn.theme-color {
  border-right: 1px solid #f9f9f9;
}

.book-panel .text {
  width: 50%;
  color: var(--main-color);
  background-color: white;
  padding: 10px;
  font-size: 14px;
  line-height: 18px;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-right: 1px solid #f9f9f9;
}

.book-panel .text span {
  font-weight: 700;
}

.full-page {
  overflow: hidden;
  height: 100vh;
}

.full-page .single-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  padding-top: 47px;
}

.full-page .single-section .description-section {
  width: 100%;
}

.full-page .single-section .description-section .description-details .menu-part {
  margin-top: 0;
  margin-bottom: 0;
  background-color: white;
  position: relative;
}

.full-page .single-section .description-section .description-details .menu-part h2 {
  color: #3c7492;
}

.full-page .single-section .description-section .description-details .menu-part .accordion-plan {
  margin-left: 0;
}

.full-page .single-section .description-section .description-details .menu-part .accordion-plan:after {
  display: none;
}

.full-page .single-section .description-section .description-details .menu-part .accordion-plan .card {
  border: 0;
  background-color: transparent;
}

.full-page .single-section .description-section .description-details .menu-part .accordion-plan .card .card-header {
  background-color: transparent;
  padding: 0;
  border-bottom: 1px solid #f9f9f9;
}

.full-page .single-section .description-section .description-details .menu-part .accordion-plan .card .card-header button {
  padding-left: 0;
}

.full-page .single-section .description-section .description-details .menu-part .accordion-plan .card .card-header button:before {
  display: none;
}

.full-page .single-section .description-section .description-details .menu-part .accordion-plan .card .card-body {
  padding: 15px 0 0;
  line-height: 1.4;
}

.full-page .single-section .description-section .description-details .menu-part .accordion-plan .card .card-body .highlight li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.full-page .single-section .description-section .description-details .menu-part .accordion-plan .card .card-body .highlight li+li {
  margin-left: 5px;
}

.full-page .single-section .description-section .description-details .menu-part .accordion-plan .card+.card {
  margin-top: 12px;
}

.full-page .single-section .description-section .description-details .menu-part .list-view .list-box {
  background-color: transparent;
}

.full-page .full-slider .slick-dots {
  bottom: 40px;
  z-index: 1;
}

.full-page .full-slider .slick-dots li {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: white;
  width: auto;
}

.full-page .full-slider .slick-dots li.slick-active .pager__item {
  background-color: #3c7492;
  border-radius: 25px;
}

.full-page .full-slider .slick-dots li .pager__item {
  padding: 10px 30px;
  color: white;
}

.full-page .full-slider .slick-dots li button:before {
  font-size: 12px;
  color: var(--main-color);
}

.full-page .full-slider .slick-arrow .next-slick-img,
.full-page .full-slider .slick-arrow .prev-slick-img {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.full-page .full-slider .slick-arrow .next-slick-img:hover,
.full-page .full-slider .slick-arrow .prev-slick-img:hover {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.full-page .full-slider .slick-prev {
  left: 10px;
  z-index: 1;
}

.full-page .full-slider .slick-prev:before {
  display: none;
}

.full-page .full-slider .slick-next {
  right: 60px;
  z-index: 1;
}

.full-page .full-slider .slick-next:before {
  display: none;
}

.full-page .overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.65)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}

.full-width-detail .place-detail {
  text-align: center;
}

.full-width-detail .place-detail li {
  padding: 0 30px;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}

.full-width-detail .place-detail li+li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: rgba(34, 34, 34, 0.5);
}

.full-width-detail .about-section {
  margin-top: 40px;
}

.full-width-detail .about-section .about-text {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.full-width-detail .about-section .about-text.about-text-gray .bottom-detail p {
  color: gray !important;
}

.full-width-detail .about-section .about-text .right-detail h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.full-width-detail .about-section .about-text .right-detail .bottom-detail p {
  font-weight: 400;
  color: var(--main-color);
  margin-bottom: 15px;
}

.full-width-detail .about-section .about-text .right-detail .bottom-detail p:last-child {
  margin-bottom: 0;
}

.full-page-demo {
  height: 100vh;
  position: relative;
}

.full-page-demo .container {
  position: relative;
  height: 100%;
}

.full-page-demo .container .title {
  position: absolute;
  bottom: 20%;
}

.full-page-demo .container .title h1 {
  color: white;
}

.full-page-demo .fullpage-content {
  position: absolute;
  width: 55%;
  right: -80px;
  bottom: 70px;
}

.vs-center-wrap .vs-subview-prev,
.vs-center-wrap .vs-subview-next {
  cursor: pointer;
  position: absolute;
  z-index: 9;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  background-color: rgba(255, 255, 255, 0.52);
  border-radius: 100%;
  padding: 8px 15px;
  left: 20px;
}

.vs-center-wrap .vs-subview-prev:focus,
.vs-center-wrap .vs-subview-next:focus {
  outline: none;
}

.vs-center-wrap .vs-subview-next {
  left: unset;
  right: 20px;
}

.full-page-menu {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.order-menu {
  padding: 20px 20px 20px 20px;
}

.order-menu .nav {
  text-align: left;
  background-color: white;
}

.order-menu .nav ul li {
  display: block;
}

.order-menu .nav .nav-link {
  text-transform: capitalize !important;
  font-size: 14px;
  color: var(--main-color);
  font-weight: 600;
  padding: 5px 15px !important;
}

.order-menu .nav .nav-link.active {
  color: var(--main-color);
  background-color: #f9f9f9;
}

.order-menu .nav .nav .nav-link {
  font-size: 14px;
  font-weight: 500;
}

.order-menu .nav .nav .nav-link.active {
  color: var(--main-color);
  font-weight: 700;
  background-color: transparent;
}

.order-menu .nav .nav.show {
  display: block;
}

.order-menu .search-bar {
  border-bottom: 1px solid #f9f9f9;
  padding-bottom: 15px;
  margin-bottom: 5px;
}

.order-menu .search-bar .search {
  position: relative;
}

.order-menu .search-bar .search input {
  width: 100%;
  border: none;
  background-color: #f9f9f9;
  padding: 8px 16px;
}

.order-menu .search-bar .search i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 16px;
  color: #a0a0a0;
}

.order-menu .search-bar .search ::-webkit-input-placeholder {
  font-size: 14px;
  color: #a0a0a0;
}

.order-menu .search-bar .search ::-moz-placeholder {
  font-size: 14px;
  color: #a0a0a0;
}

.order-menu .search-bar .search :-ms-input-placeholder {
  font-size: 14px;
  color: #a0a0a0;
}

.order-menu .search-bar .search ::-ms-input-placeholder {
  font-size: 14px;
  color: #a0a0a0;
}

.order-menu .search-bar .search ::placeholder {
  font-size: 14px;
  color: #a0a0a0;
}

.order-menu-section {
  padding: 20px;
  border-left: 1px solid #f9f9f9;
}

.order-menu-section .order-section h4 {
  text-transform: capitalize;
  font-size: calc(16px + (22 - 16) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: calc(14px + (24 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
}

.order-menu-section .order-section .order-title {
  padding-bottom: calc(0px + (10 - 0) * ((100vw - 320px) / (1920 - 320)));
}

.order-menu-section .order-section .order-title h5 {
  font-weight: 700;
  margin-bottom: 3px;
  text-transform: capitalize;
}

.order-menu-section .order-section .order-title h6 {
  color: rgba(0, 0, 0, 0.4);
  font-weight: 600;
}

.order-menu-section .order-section .order-items .items {
  position: relative;
}

.order-menu-section .order-section .order-items .items h6 {
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 4px;
}

.order-menu-section .order-section .order-items .items p {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
  max-width: 80%;
  line-height: 1.4;
}

.order-menu-section .order-section .order-items .items h5 {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
  font-weight: 500;
  margin-bottom: 0;
}

.order-menu-section .order-section .order-items .items+.items {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #f9f9f9;
}

.order-menu-section .order-section .order-items .items+.items .addtocart_btn {
  top: 15px;
}

.order-menu-section .order-section .order-items .items .addtocart_btn {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  text-align: right;
}

.order-menu-section .order-section .order-items .items .addtocart_btn .add-button,
.order-menu-section .order-section .order-items .items .addtocart_btn .add_cart {
  width: 120px;
  border-color: transparent;
  color: var(--main-color);
  background-color: #f9f9f9;
  text-transform: capitalize;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.order-menu-section .order-section .order-items .items .addtocart_btn .add-button span,
.order-menu-section .order-section .order-items .items .addtocart_btn .add_cart span {
  position: absolute;
  left: 8px;
  right: 0;
  bottom: -21px;
  font-size: 12px;
}

.order-menu-section .order-section .order-items .items .addtocart_btn .qty-box {
  display: none;
}

.order-menu-section .order-section .order-items .items .addtocart_btn .qty-box.open {
  display: block;
  position: absolute;
  right: 0;
  width: 120px;
  top: 0;
}

.order-menu-section .order-section .order-items .items .addtocart_btn .qty-box .input-group {
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.order-menu-section .order-section .order-items .items .addtocart_btn .qty-box .input-group .btn {
  padding: 5px 10px;
  font-size: 10px;
  line-height: 1;
  background-color: #f9f9f9;
}

.order-menu-section .order-section .order-items .items .addtocart_btn .qty-box .input-group .form-control {
  padding: 2px;
  width: 50px;
  text-align: center;
  border-color: #f9f9f9;
}

.order-menu-section .order-section .order-items .items.veg h6 {
  padding-left: 25px;
  position: relative;
}

.order-menu-section .order-section .order-items .items.veg h6:after {
  content: "";
  left: 0;
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid green;
  top: 2px;
}

.order-menu-section .order-section .order-items .items.veg h6:before {
  content: "";
  left: 3px;
  width: 8px;
  height: 8px;
  background-color: green;
  position: absolute;
  border-radius: 100%;
  top: 5px;
}

.order-menu-section .order-section .order-items .items.non-veg h6 {
  padding-left: 25px;
  position: relative;
}

.order-menu-section .order-section .order-items .items.non-veg h6:after {
  content: "";
  left: 0;
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid red;
  top: 2px;
}

.order-menu-section .order-section .order-items .items.non-veg h6:before {
  content: "";
  left: 3px;
  width: 8px;
  height: 8px;
  background-color: red;
  position: absolute;
  border-radius: 100%;
  top: 5px;
}

.order-menu-section .order-section+.order-section {
  margin-top: calc(12px + (30 - 12) * ((100vw - 320px) / (1920 - 320)));
  padding-top: calc(12px + (30 - 12) * ((100vw - 320px) / (1920 - 320)));
  border-top: 1px solid rgba(0, 0, 0, 0.13);
}

.order-menu-section .order-section.top-section .order-section {
  padding-top: 0;
  border-top: none;
}

.customized {
  text-align: left;
}

.customized .modal-content {
  padding: 20px 30px;
  border-radius: 0;
  border: none;
}

.customized .modal-content .modal-header {
  padding: 0;
  padding-bottom: 10px;
  border-radius: 0;
  border-bottom: 1px dashed #dedede;
}

.customized .modal-content .modal-header .modal-title {
  font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320))) !important;
  font-weight: 700 !important;
}

.customized .modal-content .modal-footer {
  padding: 1rem 0 0 0;
  border-top: 1px dashed #dedede;
}

.customized .modal-content .modal-footer .btn {
  padding: 5px 12px;
  text-transform: capitalize;
}

.customized .size-option .item h5 {
  margin-bottom: 10px !important;
  font-weight: 600 !important;
}

.customized .size-option .item form .form-check {
  line-height: 1.7;
  margin-bottom: 6px;
}

.customized .size-option .item form .form-check-label {
  text-transform: capitalize;
}

.customized .size-option .item+.item {
  margin-top: 15px;
}

.cart {
  width: 35px;
  height: 35px;
  border-radius: 0 8px 8px 0;
  position: fixed;
  background-color: white;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: none;
  z-index: 1;
}

.cart i {
  color: var(--main-color);
}

.order-cart-right .back-btn {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ececec;
  display: none;
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  color: var(--main-color);
  font-weight: 700;
  cursor: pointer;
}

.top-title-bar .hotel_title_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-title-bar .hotel_title_section h2 {
  margin-bottom: 5px;
  font-size: calc(16px + (24 - 16) * ((100vw - 320px) / (1920 - 320)));
  margin-top: -6px;
}

.top-title-bar .hotel_title_section h6 {
  margin-bottom: -3px;
  color: rgba(0, 0, 0, 0.5);
}

.top-title-bar .hotel_title_section ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 5px;
  margin-top: -6px;
}

.top-title-bar .hotel_title_section ul li {
  padding-left: 15px;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  position: relative;
  margin-left: 10px;
}

.top-title-bar .hotel_title_section ul li i {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.6);
}

.top-title-bar .hotel_title_section ul li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--main-color);
  border-radius: 100%;
}

.top-title-bar .hotel_title_section .right-part {
  margin-left: auto;
  text-align: right;
}

.checkout-process .checkout-box {
  background-color: white;
  padding: 20px;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.checkout-process .checkout-box h4.title {
  text-transform: capitalize;
  font-weight: 700;
  margin-top: -4px;
}

.checkout-process .checkout-box .sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.checkout-process .checkout-box .sub-title h5 {
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 0;
}

.checkout-process .checkout-box .sub-title a {
  margin-left: auto;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.9);
  padding: 3px 10px;
  text-transform: capitalize;
}

.checkout-process .checkout-box .address-sec {
  margin-top: 5px;
}

.checkout-process .checkout-box .address-sec .select-box {
  cursor: pointer;
}

.checkout-process .checkout-box .address-sec .select-box .address-box {
  padding: calc(15px + (30 - 15) * ((100vw - 320px) / (1920 - 320)));
  border: 1px solid #dddddd;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.checkout-process .checkout-box .address-sec .select-box .address-box .top h6 {
  text-transform: capitalize;
  font-weight: 700;
}

.checkout-process .checkout-box .address-sec .select-box .address-box .top h6 span {
  float: right;
  background-color: rgba(0, 128, 0, 0.9);
  color: white;
  padding: 5px 15px;
  font-size: 80%;
  border-radius: 3px;
}

.checkout-process .checkout-box .address-sec .select-box .address-box .middle {
  margin-top: 15px;
}

.checkout-process .checkout-box .address-sec .select-box .address-box .middle .address p {
  margin-bottom: 5px;
  color: rgba(0, 0, 0, 0.7);
}

.checkout-process .checkout-box .address-sec .select-box .address-box .middle .number {
  margin-top: 15px;
}

.checkout-process .checkout-box .address-sec .select-box .address-box .middle .number p {
  color: rgba(0, 0, 0, 0.7);
  text-transform: capitalize;
}

.checkout-process .checkout-box .address-sec .select-box .address-box .bottom {
  border-top: 1px solid #dddddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  padding-top: 10px;
}

.checkout-process .checkout-box .address-sec .select-box .address-box .bottom .bottom_btn {
  width: 47.5%;
  text-transform: capitalize;
  font-weight: 600;
  padding: 4px;
  border-radius: 5px;
  background-color: rgba(255, 0, 0, 0.15);
  color: rgba(255, 0, 0, 0.9);
}

.checkout-process .checkout-box .address-sec .select-box .address-box .bottom .bottom_btn:first-child {
  margin-right: 5%;
  background-color: rgba(0, 128, 0, 0.15);
  color: rgba(0, 128, 0, 0.9);
}

.checkout-process .checkout-box .address-sec .select-box.active .address-box {
  border: 1px solid rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.checkout-process .checkout-box .review-section {
  margin-top: 20px;
}

.checkout-process .checkout-box .review-section .review_box {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.checkout-process .checkout-box .review-section .review_box .flight_detail {
  padding: 0;
}

.checkout-process .checkout-box+.checkout-box {
  margin-top: 20px;
}

.checkout-cart .single-sidebar .order-cart .cart-bottom .sub-total {
  font-weight: 500;
}

.checkout-cart .single-sidebar .order-cart .cart-bottom .sub-total.grand-total {
  font-weight: 700;
  border-top: 1px solid #f9f9f9;
  padding-top: 13px;
  margin-top: 16px;
}

.flight-search .flight-search-detail {
  background-color: white;
  padding: 30px 15px;
  box-shadow: 0 0 3px 2px #e8e8e8;
  border-radius: 5px;
}

.flight-search .flight-search-detail .form-group {
  margin-bottom: 0;
  position: relative;
}

.flight-search .flight-search-detail .form-group img {
  position: absolute;
  right: 0;
  bottom: 0;
  border-left: 1px solid #e5e5e5;
  padding: 10px;
}

.flight-search .flight-search-detail .form-group label {
  text-transform: capitalize;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 15px;
}

.flight-search .flight-search-detail .form-group .form-control {
  border-radius: 0;
  text-transform: capitalize;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
}

.flight-search .flight-search-detail .form-group .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.flight-search .flight-search-detail .form-group .gj-datepicker button,
.flight-search .flight-search-detail .form-group .gj-timepicker button {
  border: 1px solid #e5e5e5 !important;
  background-color: white;
  height: 38px;
}

.flight-search .flight-search-detail .form-group .gj-datepicker button i,
.flight-search .flight-search-detail .form-group .gj-timepicker button i {
  opacity: 0.2;
}

.flight-search .flight-search-detail .form-group ::-webkit-input-placeholder {
  color: #a5a5a5;
  text-transform: capitalize;
}

.flight-search .flight-search-detail .form-group ::-moz-placeholder {
  color: #a5a5a5;
  text-transform: capitalize;
}

.flight-search .flight-search-detail .form-group :-ms-input-placeholder {
  color: #a5a5a5;
  text-transform: capitalize;
}

.flight-search .flight-search-detail .form-group ::-ms-input-placeholder {
  color: #a5a5a5;
  text-transform: capitalize;
}

.flight-search .flight-search-detail .form-group ::placeholder {
  color: #a5a5a5;
  text-transform: capitalize;
}

.flight-search .flight-search-detail .search-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
}

.flight-search .flight-search-detail .search-btn .btn {
  width: 100%;
}

.flight-search .flight-search-detail .responsive-close {
  display: none;
}

.flight-search .responsive-detail {
  display: none;
  background-color: white;
  padding: 15px 25px;
  position: relative;
}

.flight-search .responsive-detail .destination span {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: -3px;
}

.flight-search .responsive-detail .details span {
  text-transform: capitalize;
  color: #5d5d5d;
}

.flight-search .responsive-detail .modify-search {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flight-search .responsive-detail .modify-search .btn {
  padding: 4px 6px;
  text-transform: capitalize;
  font-size: 14px;
}

.selector-box-flight {
  text-align: left;
  padding: 10px;
  position: absolute;
  width: 100%;
  background-color: white;
  z-index: 3;
  border: 1px solid #dedede;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  top: auto;
  display: none;
}

.selector-box-flight .room-cls .title_room {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 700;
}

.selector-box-flight .room-cls .qty-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.selector-box-flight .room-cls .qty-box label {
  text-transform: capitalize;
  margin-right: 30px;
  margin-bottom: 0;
}

.selector-box-flight .room-cls .qty-box .input-group {
  width: 90px;
  margin-left: auto;
}

.selector-box-flight .room-cls .qty-box .input-group .btn {
  background-color: transparent;
}

.selector-box-flight .room-cls .qty-box .input-group .form-control {
  padding: 0;
  text-align: center;
  border: none;
}

.selector-box-flight .room-cls .qty-box+.qty-box {
  margin-top: 10px;
}

.selector-box-flight .room-cls+.room-cls {
  margin-top: 10px;
  border-top: 1px solid #f9f9f9;
  padding-top: 10px;
}

.selector-box-flight .flight-class {
  border-top: 1px solid #e7e7e7;
  margin-top: 10px;
  padding-top: 5px;
  padding-bottom: 3px;
}

.selector-box-flight .flight-class .form-check {
  margin-top: 7px;
}

.selector-box-flight .flight-class .form-check-label {
  text-transform: capitalize;
}

.selector-box-flight .bottom-part {
  border-top: 1px solid #e7e7e7;
  margin-top: 5px;
  padding-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.selector-box-flight .bottom-part .btn {
  margin-left: auto;
}

.selector-box-flight.show {
  display: block;
}

.top-bar-flight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  position: relative;
}

.top-bar-flight .date-fare-slider {
  background-color: white;
  border-right: 1px solid #f5f5f5;
  padding: 0 40px;
  width: 92%;
}

.top-bar-flight .date-fare-slider .slick-slider {
  border-left: 1px solid #f5f5f5;
  border-right: 1px solid #f5f5f5;
}

.top-bar-flight .date-fare-slider .slick-slider .slick-prev {
  left: -30px;
}

.top-bar-flight .date-fare-slider .slick-slider .slick-prev:before {
  content: "\f053";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #a0a0a0;
}

.top-bar-flight .date-fare-slider .slick-slider .slick-next {
  right: -30px;
}

.top-bar-flight .date-fare-slider .slick-slider .slick-next:before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #a0a0a0;
}

.top-bar-flight .date-fare-slider .fare-box {
  text-align: center;
  border-right: 1px solid #f5f5f5;
  padding: 15px 10px;
}

.top-bar-flight .date-fare-slider .fare-box h6 {
  margin-bottom: 0;
  color: #585858;
  font-size: 12px;
}

.top-bar-flight .date-fare-slider .fare-box h5 {
  text-transform: capitalize;
  font-size: 14px;
  margin-bottom: 5px;
  color: var(--main-color);
  font-weight: 700;
}

.top-bar-flight .date-fare-slider .fare-box.active h5 {
  color: var(--main-color);
  font-weight: 700;
}

.top-bar-flight .fare-calender {
  width: 8%;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.top-bar-flight .fare-calender i {
  font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));
  color: #484848;
  display: block;
  margin-bottom: -5px;
}

.top-bar-flight .fare-calender h6.title {
  font-size: 12px;
  margin-bottom: 0;
  margin-top: 10px;
  text-transform: capitalize;
}

.top-bar-flight .fare-calender .calender-external {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  background-color: white;
  padding: 25px;
  display: none;
  -webkit-box-shadow: -2px 6px 8px 4px rgba(0, 0, 0, 0.1);
  box-shadow: -2px 6px 8px 4px rgba(0, 0, 0, 0.1);
}

.top-bar-flight .fare-calender .calender-external .fc-dayGrid-view .fc-body .fc-row {
  height: 60px !important;
}

.top-bar-flight .fare-calender .calender-external .fc-view,
.top-bar-flight .fare-calender .calender-external .fc-view>table {
  display: inline-block;
}

.top-bar-flight .fare-calender .calender-external .fc th,
.top-bar-flight .fare-calender .calender-external .fc td {
  width: 80px;
}

.top-bar-flight .fare-calender .calender-external .fc-scroller.fc-day-grid-container {
  height: auto !important;
}

.top-bar-flight .fare-calender .calender-external .fc-event,
.top-bar-flight .fare-calender .calender-external .fc-event-dot {
  border: none;
  background-color: transparent;
  text-align: right;
}

.top-bar-flight .fare-calender .calender-external .fc-content {
  font-weight: 700;
  color: var(--main-color);
}

.top-bar-flight .fare-calender .calender-external.show {
  display: block;
}

.flight-detail-sec {
  margin: 20px 0;
}

.flight-detail-sec .title-bar {
  text-align: center;
  padding: 10px 0;
}

.flight-detail-sec .title-bar p {
  margin-bottom: 0;
  color: #545454;
  text-transform: capitalize;
}

.flight-detail-sec .selection-bar {
  background-color: white;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.flight-detail-sec .selection-bar span {
  font-size: 14px;
  text-transform: capitalize;
  color: var(--main-color);
  font-weight: 500;
}

.flight-detail-sec .selection-bar .details {
  margin-left: auto;
}

.flight-detail-sec .detail-bar .detail-wrap {
  background-color: white;
  padding: 15px 0;
  border: 1px dashed transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.flight-detail-sec .detail-bar .detail-wrap .logo-sec {
  text-align: center;
}

.flight-detail-sec .detail-bar .detail-wrap .logo-sec img {
  width: 50px;
  height: auto;
  margin-bottom: 5px;
}

.flight-detail-sec .detail-bar .detail-wrap .logo-sec .title {
  display: block;
  text-transform: capitalize;
  font-weight: 600;
}

.flight-detail-sec .detail-bar .detail-wrap .airport-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.flight-detail-sec .detail-bar .detail-wrap .airport-part .airport-name h4 {
  margin-bottom: 3px;
  margin-top: -4px;
  color: #222222;
  font-size: 16px;
  font-weight: 600;
}

.flight-detail-sec .detail-bar .detail-wrap .airport-part .airport-name h6 {
  margin-bottom: -5px;
  color: #909090;
  font-size: 12px;
}

.flight-detail-sec .detail-bar .detail-wrap .airport-part .airport-name.arrival {
  margin-left: auto;
}

.flight-detail-sec .detail-bar .detail-wrap .airport-part .airport-progress {
  width: 100%;
  padding: 0 25px;
  position: relative;
}

.flight-detail-sec .detail-bar .detail-wrap .airport-part .airport-progress .stop {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 16px;
  font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
  width: 100%;
  color: gray;
}

.flight-detail-sec .detail-bar .detail-wrap .airport-part .airport-progress i {
  color: var(--main-color);
}

.flight-detail-sec .detail-bar .detail-wrap .airport-part .airport-progress:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 60%;
  background-color: #cecece;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
}

.flight-detail-sec .detail-bar .detail-wrap .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.flight-detail-sec .detail-bar .detail-wrap .price h4 {
  margin-bottom: -4px;
  font-weight: 700;
  font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));
}

.flight-detail-sec .detail-bar .detail-wrap .price span {
  font-size: calc(10px + (12 - 10) * ((100vw - 320px) / (1920 - 320)));
  color: grey;
  text-transform: capitalize;
}

.flight-detail-sec .detail-bar .detail-wrap .book-flight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.flight-detail-sec .detail-bar .detail-wrap .book-flight .btn {
  padding: 5px 16px;
  text-transform: capitalize;
}

.flight-detail-sec .detail-bar .detail-wrap+.detail-wrap {
  margin-top: 20px;
}

.flight-detail-sec .detail-bar .detail-wrap.active {
  border: 1px dashed var(--main-color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0px 1px 9px 3px rgba(228, 228, 228, 0.81);
  box-shadow: 0px 1px 9px 3px rgba(228, 228, 228, 0.81);
}

.flight-detail-sec.full_width-detail .detail-bar .detail-wrap {
  padding: 30px 0;
}

.flight-detail-sec.full_width-detail .detail-bar .detail-wrap .logo-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flight-detail-sec.full_width-detail .detail-bar .detail-wrap .logo-sec img {
  margin-bottom: 0;
  width: 60px;
  margin-right: 10px;
}

.flight-detail-sec.book_panel {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
  background-color: white;
  -webkit-box-shadow: -1px -1px 5px 0 rgba(77, 77, 77, 0.14);
  box-shadow: -1px -1px 5px 0 rgba(77, 77, 77, 0.14);
  margin: 0;
}

.flight-detail-sec.book_panel .detail-bar .detail-wrap .logo-sec img {
  width: 60px;
  margin-bottom: 0;
}

.flight-detail-sec.book_panel .detail-bar .detail-wrap .airport-part .airport-progress:after {
  display: none;
}

.flight-detail-sec.book_panel .detail-bar .detail-wrap .airport-part .airport-progress i {
  color: var(--main-color);
}

.flight-detail-sec.book_panel .detail-bar .detail-wrap .price h4 {
  font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.flight-detail-sec.book_panel .detail-bar.border-cls .detail-wrap .row {
  border-left: 1px solid #dedede;
  border-right: 1px solid #dedede;
}

.flight-detail-sec.book_panel .grand-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.flight-detail-sec.book_panel .grand-total .total {
  margin-bottom: 0;
  margin-right: 30px;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
}

.flight-detail-sec.book_panel .grand-total .total span {
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  margin-left: 5px;
}

.flight-detail-sec.round_trip .detail-bar .detail-wrap {
  cursor: pointer;
}

.flight-detail-sec.cab-detail-sec .detail-bar .detail-wrap .logo-sec img {
  width: 160px;
  margin-bottom: 10px;
}

.flight-detail-sec.cab-detail-sec .detail-bar .detail-wrap .logo-sec .title {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.flight-detail-sec.cab-detail-sec .detail-bar .detail-wrap .logo-sec label {
  margin-bottom: 0;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.56);
}

.flight-detail-sec.cab-detail-sec .detail-bar .detail-wrap .car-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.flight-detail-sec.cab-detail-sec .detail-bar .detail-wrap .car-details ul li {
  display: block;
  text-transform: capitalize;
  color: #3e3e3e;
}

.flight-detail-sec.cab-detail-sec .detail-bar .detail-wrap .car-details ul li img {
  margin-right: 5px;
  width: 16px;
}

.flight-detail-sec.cab-detail-sec .detail-bar .detail-wrap .car-details ul li+li {
  margin-top: 10px;
}

.flight-detail-sec.cab-detail-sec .detail-bar .detail-wrap .car-details ul+ul {
  margin-left: 30px;
}

.flight-detail-sec.cab-detail-sec .detail-bar .detail-wrap .price h6 {
  font-size: 14px;
  color: grey;
  text-transform: capitalize;
  margin-bottom: 0;
  margin-top: 10px;
}

.flight-detail-sec.cab-detail-sec .detail-bar .detail-wrap .price h6 span {
  font-size: 14px;
  color: var(--main-color);
  font-weight: 600;
}

.top-filter-section {
  background-color: white;
  margin-top: 20px;
  padding: 15px 30px;
}

.top-filter-section ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.top-filter-section ul .back-btn {
  display: none;
}

.top-filter-section ul .onclick-title,
.top-filter-section ul .filter-title {
  min-width: 170px;
  cursor: pointer;
  position: relative;
  border-left: 1px solid #e0e0e0;
}

.top-filter-section ul .onclick-title h6,
.top-filter-section ul .filter-title h6 {
  text-transform: capitalize;
  font-size: 16px;
  text-align: center;
  margin-bottom: 0;
  padding: 0 20px 0 0;
  position: relative;
}

.top-filter-section ul .onclick-title h6:before,
.top-filter-section ul .filter-title h6:before {
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  content: "\f107";
  position: absolute;
  right: 15px;
  opacity: 0.2;
}

.top-filter-section ul .onclick-title:nth-child(-n+3),
.top-filter-section ul .filter-title:nth-child(-n+3) {
  border-left: none;
}

.top-filter-section ul .onclick-title .onclick-content,
.top-filter-section ul .filter-title .onclick-content {
  display: none;
  position: absolute;
  background-color: white;
  z-index: 1;
  padding: 10px 20px;
  width: 200px;
  left: 30px;
  top: 34px;
  -webkit-box-shadow: 0px 1px 9px 3px rgba(228, 228, 228, 0.81);
  box-shadow: 0px 1px 9px 3px rgba(228, 228, 228, 0.81);
}

.top-filter-section ul .onclick-title .onclick-content .custom-control .form-check-label,
.top-filter-section ul .filter-title .onclick-content .custom-control .form-check-label {
  text-transform: capitalize;
}

.top-filter-section ul .onclick-title.show .onclick-content,
.top-filter-section ul .filter-title.show .onclick-content {
  display: block;
}

.top-filter-section ul .filter-title {
  min-width: 60px;
}

.top-filter-section ul .filter-title h6 {
  padding: 0;
  font-weight: 700;
}

.top-filter-section ul .filter-title h6:before {
  display: none;
}

.top-filter-section .form-check {
  display: block;
  text-transform: capitalize;
}

.review-section .review_box {
  background-color: white;
  -webkit-box-shadow: 0px 1px 9px 3px rgba(228, 228, 228, 0.81);
  box-shadow: 0px 1px 9px 3px rgba(228, 228, 228, 0.81);
}

.review-section .review_box .title-top {
  padding: 20px 30px;
  background-color: #f9f9f9;
}

.review-section .review_box .title-top h5 {
  margin-bottom: 0;
  text-transform: capitalize;
  line-height: 1;
  font-weight: 600;
}

.review-section .review_box .flight_detail {
  padding: 20px 30px;
}

.review-section .review_box .flight_detail .logo-sec img {
  width: 60px;
  margin-right: 10px;
}

.review-section .review_box .flight_detail .logo-sec .title {
  text-transform: capitalize;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 600;
}

.review-section .review_box .flight_detail .airport-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.review-section .review_box .flight_detail .airport-part .airport-name h6 {
  margin-bottom: 3px;
  font-weight: 700;
}

.review-section .review_box .flight_detail .airport-part .airport-name h6 span {
  font-weight: 500;
}

.review-section .review_box .flight_detail .airport-part .airport-name p {
  text-transform: capitalize;
  margin-bottom: 0;
  color: #7b7b7b;
}

.review-section .review_box .flight_detail .airport-part .airport-name.arrival {
  margin-left: auto;
}

.review-section .review_box .flight_detail .airport-part .airport-progress {
  width: 45%;
  padding: 0 25px;
  position: relative;
  margin: 0 auto;
}

.review-section .review_box .flight_detail .airport-part .airport-progress .stop {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 16px;
  font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
  width: 100%;
}

.review-section .review_box .flight_detail .airport-part .airport-progress i {
  color: rgba(0, 0, 0, 0.17);
}

.review-section .review_box .flight_detail .airport-part .airport-progress:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 40%;
  background-color: #cecece;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
}

.review-section .review_box .flight_detail .duration {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.review-section .review_box .flight_detail .duration h6 {
  margin-bottom: 3px;
  font-weight: 400;
  font-size: 14px;
}

.review-section .review_box .flight_detail .duration p {
  text-transform: capitalize;
  margin-bottom: 0;
  color: #7b7b7b;
}

.review-section .review_box .flight_detail .boxes h6 {
  text-transform: capitalize;
  font-weight: 600;
}

.review-section .review_box .flight_detail .boxes ul li {
  display: block;
  text-transform: capitalize;
}

.review-section .review_box .flight_detail .boxes .form-check .form-check-label {
  text-transform: capitalize;
}

.review-section .review_box .flight_detail .boxes .form-check+.form-check {
  margin-top: 5px;
}

.review-section .review_box .flight_detail .boxes+.boxes {
  margin-top: 20px;
}

.review-section .review_box .flight_detail .boxes:last-child ul li:last-child {
  margin-bottom: -2px;
}

.review-section .review_box .flight_detail .form_flight form h6 {
  text-transform: capitalize;
  font-weight: 600;
}

.review-section .review_box .flight_detail .form_flight form .form-group {
  margin-bottom: 0;
}

.review-section .review_box .flight_detail .form_flight form .form-group label {
  text-transform: capitalize;
  margin-bottom: 2px;
}

.review-section .review_box .flight_detail .form_flight form+form {
  margin-top: 20px;
}

.review-section .review_box .flight_detail .summery_box .table {
  margin-bottom: 0;
}

.review-section .review_box .flight_detail .summery_box .table .title {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 10px;
}

.review-section .review_box .flight_detail .summery_box .table .title td {
  font-weight: 600;
  font-size: 18px;
}

.review-section .review_box .flight_detail .summery_box .table th,
.review-section .review_box .flight_detail .summery_box .table td {
  padding: 0;
}

.review-section .review_box .flight_detail .summery_box .table tr td {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
}

.review-section .review_box .flight_detail .summery_box .table tr td:nth-child(2) {
  text-align: right;
}

.review-section .review_box .flight_detail .summery_box .grand_total {
  padding: 10px;
  background-color: #f9f9f9;
  margin-top: 20px;
}

.review-section .review_box .flight_detail .summery_box .grand_total h5 {
  margin-bottom: 0;
  text-transform: capitalize;
}

.review-section .review_box .flight_detail .summery_box .grand_total h5 span {
  float: right;
}

.review-section .review_box .flight_detail .promo-section label {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 700;
}

.review-section .review_box .flight_detail .promo-section .promos {
  margin-top: 20px;
}

.review-section .review_box .flight_detail .promo-section .promos .form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.review-section .review_box .flight_detail .promo-section .promos .form-check+.form-check {
  margin-top: 15px;
}

.review-section .review_box .flight_detail .promo-section .promos label {
  display: block;
  font-weight: 500;
}

.review-section .review_box .flight_detail .promo-section .promos label.title {
  font-weight: 700;
}

.review-section .review_box .flight_detail .addons-according .card {
  border: none;
}

.review-section .review_box .flight_detail .addons-according .card .card-header {
  padding: 0;
  border: none;
  background-color: white;
}

.review-section .review_box .flight_detail .addons-according .card .card-header .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--main-color);
  text-transform: capitalize;
  background-color: #f9f9f9;
  padding: 10px 5px;
}

.review-section .review_box .flight_detail .addons-according .card .card-header .btn img {
  width: 24px;
  margin-right: 12px;
}

.review-section .review_box .flight_detail .addons-according .card .card-body {
  padding: 20px 0 0;
}

.review-section .review_box .flight_detail .addons-according .card .card-body.order-menu-section {
  border-left: none;
}

.review-section .review_box .flight_detail .addons-according .card+.card {
  border-top: 1px solid #ececec;
  margin-top: 10px;
}

.review-section .review_box .flight_detail .addons-according .card:last-child .card-body {
  padding-bottom: 0;
}

.review-section .review_box .flight_detail .addons-according .seat-select {
  position: relative;
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane {
  margin: 0 auto;
  max-width: 300px;
  border-bottom: 5px solid #ececec;
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .cockpit {
  height: 140px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 5px solid #ececec;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .cockpit:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 290px;
  width: 100%;
  border-radius: 50%;
  border-right: 5px solid #ececec;
  border-left: 5px solid #ececec;
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .cockpit img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .exit {
  position: relative;
  height: 50px;
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .exit:before,
.review-section .review_box .flight_detail .addons-according .seat-select .plane .exit:after {
  content: "EXIT";
  font-size: 14px;
  line-height: 18px;
  padding: 0px 2px;
  font-family: "Arial Narrow", Arial, sans-serif;
  display: block;
  position: absolute;
  background: red;
  color: white;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .exit:before {
  left: 0;
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .exit:after {
  right: 0;
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .fuselage {
  border-right: 5px solid #ececec;
  border-left: 5px solid #ececec;
  overflow: hidden;
  padding: 0 20px;
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .seats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .seat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 14.28571428571429%;
  flex: 0 0 14.28571428571429%;
  padding: 5px;
  position: relative;
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .seat:nth-child(3) {
  margin-right: 14.28571428571429%;
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .seat input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .seat input[type="checkbox"]:checked+label {
  background: #afafaf;
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .seat input[type="checkbox"]:disabled+label {
  background: #dddddd;
  text-indent: -9999px;
  overflow: hidden;
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .seat input[type="checkbox"]:disabled+label:after {
  content: "X";
  text-indent: 0;
  position: absolute;
  top: 4px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .seat input[type="checkbox"]:disabled+label:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: not-allowed;
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .seat label {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5rem;
  padding: 4px 0;
  background: rgba(233, 179, 14, 0.25);
  border-radius: 5px;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .seat label:before {
  content: "";
  position: absolute;
  width: 75%;
  height: 75%;
  top: 1px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  background: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .seat label:hover {
  cursor: pointer;
  -webkit-box-shadow: 0 0 0px 2px rgba(233, 179, 14, 0.7);
  box-shadow: 0 0 0px 2px rgba(233, 179, 14, 0.7);
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.review-section .review_box .flight_detail .addons-according .seat-select .plane .rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

.review-section .review_box .flight_detail .addons-according .seat-select .seat-details {
  position: absolute;
  left: 0;
  top: 5%;
}

.review-section .review_box .flight_detail .addons-according .seat-select .seat-details ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.review-section .review_box .flight_detail .addons-according .seat-select .seat-details ul li .box {
  width: 25px;
  height: 25px;
}

.review-section .review_box .flight_detail .addons-according .seat-select .seat-details ul li .box.taken {
  background: rgba(221, 221, 221, 0.4);
}

.review-section .review_box .flight_detail .addons-according .seat-select .seat-details ul li .box.selected {
  background: rgba(175, 175, 175, 0.4);
}

.review-section .review_box .flight_detail .addons-according .seat-select .seat-details ul li .box.available {
  background: rgba(233, 179, 14, 0.15);
}

.review-section .review_box .flight_detail .addons-according .seat-select .seat-details ul li h6 {
  margin-left: 15px;
  text-transform: capitalize;
  margin-bottom: 0;
}

.review-section .review_box .flight_detail .addons-according .seat-select .seat-details ul li+li {
  margin-top: 8px;
}

.review-section .review_box .flight_detail.payment-gateway .card {
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 0;
}

.review-section .review_box .flight_detail.payment-gateway .card .card-header {
  padding: 0;
  border-bottom: none;
  border-radius: 0;
}

.review-section .review_box .flight_detail.payment-gateway .card .card-header .btn {
  padding: 0;
  width: 100%;
  text-align: left;
  text-decoration: none;
}
.get-in-touch .form-group{
  margin-bottom: 15px;
}
.review-section .review_box .flight_detail.payment-gateway .card .card-header .btn label {
  margin-bottom: 0;
  width: 100%;
  color: rgba(0, 0, 0, 0.9);
  padding: 10px 15px;
  font-weight: 700;
  text-transform: capitalize;
  background-color: #f9f9f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.review-section .review_box .flight_detail.payment-gateway .card .card-body {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}

.review-section .review_box .flight_detail.payment-gateway .card+.card {
  margin-top: 10px;
}

.review-section .review_box .flight_detail.payment-gateway form .form-control {
  border-color: rgba(0, 0, 0, 0.09);
}

.review-section .review_box .flight_detail.payment-gateway form .form-group {
  position: relative;
}

.review-section .review_box .flight_detail.payment-gateway form .form-group label {
  text-transform: capitalize;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.review-section .review_box .flight_detail.payment-gateway form .form-group img {
  height: 23px;
  position: absolute;
  right: 10px;
  bottom: 8px;
}

.review-section .review_box .flight_detail.payment-gateway form .payment-btn {
  text-align: right;
  margin-top: 20px;
}

.review-section .review_box .flight_detail.payment-gateway form.wallet-section h6 {
  text-transform: uppercase;
}

.review-section .review_box .flight_detail.payment-gateway form.wallet-section .row {
  margin-left: 15px;
  margin-top: 20px;
}

.review-section .review_box .flight_detail.payment-gateway form.wallet-section .row .form-check .form-check-label {
  margin-bottom: 10px;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.review-section .review_box+.review_box {
  margin-top: 20px;
}

.res-margin .single-section {
  margin-top: 20px;
}

.continue-btn {
  margin-top: 30px;
  text-align: center;
}

.success-section {
  overflow: hidden;
}

.success-section .animation {
  max-width: 100%;
}

.success-section .success-detail {
  text-align: center;
  margin-top: 15px;
}

.success-section .success-detail img {
  margin-bottom: calc(15px + (30 - 15) * ((100vw - 320px) / (1920 - 320)));
}

.success-section .success-detail p {
  font-size: 16px;
  max-width: 48%;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.7);
  line-height: 30px;
  padding-top: 10px;
  text-transform: capitalize;
}

.success-section .success-detail .btn {
  padding: 8px 20px;
  text-transform: capitalize;
  margin-top: 18px;
}
.contact_section .contact_wrap{
  display: flex;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0px 6px 35px rgb(0 0 0 / 11%);
  background-color: var(--main-color);
}
.contact_section .contact_wrap .title_bar {
  width: 40%;
  color: #fff;
  text-align: center;
  font-size: 28px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.contact_section .contact_wrap .contact_content {
  padding: 18px;
  background-color: #fff;
  width: 100%;
    word-break: break-word;
}
.contact_section .contact_wrap .contact_content h4{
  text-transform: capitalize;
}
.contact_section .contact_wrap .title_bar h4 {
  margin-bottom: 0;
  margin-left: 10px;
  text-transform: capitalize;
  color: var(--main-color);
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 600;
}
.get-in-touch{
  box-shadow: 0px 6px 35px rgb(0 0 0 / 11%);
  padding: 15px;
}
.get-in-touch form{
  border: 2px dashed var(--main-color);
  padding: 15px;
}

.get-in-touch h3 {
  text-transform: capitalize;
  margin-bottom: calc(10px + (15 - 10) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 600;
}

.get-in-touch form .form-control {
  border-radius: 0;
  font-size: 14px;
  line-height: 1.8;
  text-transform: capitalize;
  padding: 10px 18px;
}

.get-in-touch form .submit-btn {
  text-align: right;
  margin-top: 10px;
}

.contact-map {
  height: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-bottom {
  height: calc(180px + (350 - 180) * ((100vw - 320px) / (1920 - 320)));
}

.gm-style div[title] {
  opacity: 1 !important;
}

.gm-style div[title] img {
  display: block !important;
  height: 40px !important;
  width: auto !important;
}

.leaflet-marker-icon {
  height: 50px !important;
  width: auto !important;
}

.add-animation {
  -webkit-animation: 1s linear infinite bounce-1;
  animation: 1s linear infinite bounce-1;
}

.add-filter {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

@-webkit-keyframes bounce-1 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounce-1 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.coming-soon {
  background-size: cover;
  height: 100vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.coming-soon .coming-soon-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
  width: 100%;
}

.coming-soon .coming-soon-detail>div {
  width: 100%;
}

.coming-soon .coming-soon-detail .logo {
  margin-bottom: calc(14px + (25 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.coming-soon .coming-soon-detail h2 {
  color: white;
  font-size: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  margin-bottom: calc(16px + (25 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.coming-soon .coming-soon-detail form {
  width: 50%;
  margin: 0 auto;
}

.coming-soon .coming-soon-detail form label {
  color: white;
  font-size: 20px;
  text-transform: capitalize;
}

.coming-soon .coming-soon-detail form input {
  padding: 13px 25px;
  border-radius: 25px;
  font-size: 16px;
}

.coming-soon .coming-soon-detail form input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #dddddd;
}

.coming-soon .coming-soon-detail form .actions {
  margin-top: 20px;
}

.coming-soon .coming-soon-detail form .actions .btn {
  padding: 14px 40px;
  border-radius: 25px;
}

.coming-soon .coming-soon-detail .timer {
  margin-bottom: calc(18px + (30 - 18) * ((100vw - 320px) / (1920 - 320)));
}

.coming-soon .object {
  position: absolute;
  -webkit-animation: sway 2.4s infinite;
  animation: sway 2.4s infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-transform-origin: top;
  transform-origin: top;
  left: calc(10% + (14 - 10) * ((100vw - 320px) / (1920 - 320)));
  height: 5%;
  z-index: 999;
  text-transform: uppercase;
}

.coming-soon .object .object-shape {
  width: calc(60px + (100 - 60) * ((100vw - 320px) / (1920 - 320)));
  height: calc(60px + (100 - 60) * ((100vw - 320px) / (1920 - 320)));
  border-radius: 50%;
  display: block;
  background-color: white;
  margin: 0 auto;
  position: relative;
  color: var(--main-color);
  text-align: center;
  padding-top: calc(14px + (25 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 800;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
}

.coming-soon .object .object-shape span {
  font-size: calc(12px + (22 - 12) * ((100vw - 320px) / (1920 - 320)));
  color: var(--main-color);
}

.coming-soon .object .object-rope {
  height: 100%;
  width: 5px;
  background-color: white;
  content: "";
  display: block;
  margin-left: 50%;
}

.coming-soon.travel {
  background-color: rgba(233, 179, 14, 0.05);
}

.coming-soon.travel svg {
  position: absolute;
  top: 0;
  width: 1920px;
  height: 1600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.coming-soon.travel .coming-soon-detail {
  position: absolute;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 60px;
  z-index: 1;
}

.coming-soon.travel .coming-soon-detail .logo img {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.coming-soon.travel .coming-soon-detail h2 {
  color: var(--main-color);
}

.coming-soon.travel .coming-soon-detail form label {
  color: var(--main-color);
}

.coming-soon.ripple-effect canvas {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.typography_section p {
  color: #777777;
}

.typography_section .typography-box {
  margin-bottom: 30px;
}

.typography_section .typography-box p {
  line-height: 22px;
}

.typography_section .typography-box .headings {
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 20px;
  background-color: rgba(247, 247, 247, 0.5);
  padding: 8px 12px;
}

.typography_section .typography-box .headings h3 {
  text-transform: capitalize;
  color: #2d2d2d;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 20px;
}

.typography_section .typography-box .headings span {
  color: #777777;
}

.typography_section .typography-box .headings span code {
  color: #777777;
}

.typography_section .typography-box .typo-content.heading_content h1,
.typography_section .typography-box .typo-content.heading_content h2,
.typography_section .typography-box .typo-content.heading_content h3,
.typography_section .typography-box .typo-content.heading_content h4,
.typography_section .typography-box .typo-content.heading_content h5,
.typography_section .typography-box .typo-content.heading_content h6 {
  font-weight: 400;
  color: var(--main-color);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}

.typography_section .typography-box .typo-content .sub-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 5px;
  margin-bottom: 8px;
  font-size: 18px;
  color: #222222;
  text-transform: capitalize;
}

.typography_section .typography-box .typo-content.input_button input {
  margin-bottom: 10px;
}

.typography_section .typography-box .typo-content.input_button label {
  font-size: 16px;
  text-transform: capitalize;
  padding-left: 5px;
}

.typography_section .typography-box .typo-content.loader-typo {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.typography_section .typography-box .typo-content.loader-typo .pre-loader {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: var(--main-color);
  border-radius: 50%;
}

.typography_section .typography-box .typo-content.loader-typo .pre-loader:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  border: 0 solid white;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: loading 1000ms ease-out forwards infinite;
  animation: loading 1000ms ease-out forwards infinite;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.typography_section .typography-box .typo-content .footer-social {
  margin-top: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.typography_section .typography-box:last-child {
  margin-bottom: 0;
}

.typography_section code {
  color: rgba(233, 179, 14, 0.6);
  background-color: #f7f7f7;
  padding: 3px;
  margin: 0 3px;
  border-radius: 2px;
}

@-webkit-keyframes sway {
  0% {
    -webkit-transform: rotate(8deg);
    transform: rotate(8deg);
  }
  50% {
    -webkit-transform: rotate(-8deg);
    transform: rotate(-8deg);
  }
  100% {
    -webkit-transform: rotate(8deg);
    transform: rotate(8deg);
  }
}

@keyframes sway {
  0% {
    -webkit-transform: rotate(8deg);
    transform: rotate(8deg);
  }
  50% {
    -webkit-transform: rotate(-8deg);
    transform: rotate(-8deg);
  }
  100% {
    -webkit-transform: rotate(8deg);
    transform: rotate(8deg);
  }
}

@-webkit-keyframes rotate-right {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate-left {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
  }
}

@-webkit-keyframes hover {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(5%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}

@-webkit-keyframes pull {
  0% {
    -webkit-transform: scaleY(1);
  }
  40% {
    -webkit-transform: scaleY(1.01);
  }
  60% {
    -webkit-transform: scaleY(0.99);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.99);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}

#airplane2,
#airplane1 {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transform-origin: 200px 200px;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-animation: rotate-right 60s linear 0s infinite;
}

#countryObjects {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transform-origin: 200px 200px;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-animation: rotate-right 240s linear 0s infinite;
}

#floatingGlobe {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transform-origin: 200px 200px;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-animation: rotate-left 360s linear 0s infinite;
}

#globe {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-animation: hover 0s linear 0s infinite;
}

#windmill {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transform-origin: 331px 201px;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-animation: rotate-right 2s linear 0s infinite;
}

#cloud1 {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-animation: hover 3s linear 1s infinite;
}

#cloud2 {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-animation: hover 3s linear 2s infinite;
}

#cloud3 {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-animation: hover 3s linear 3s infinite;
}

#circle1 {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transform-origin: 200px 200px;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-animation: rotate-right 12s linear 0s infinite;
}

#circle2 {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transform-origin: 200px 200px;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-animation: rotate-left 24s linear 0s infinite;
}

#circle3 {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transform-origin: 200px 200px;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-animation: rotate-right 12s linear 0s infinite;
}

#circle4 {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transform-origin: 200px 200px;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-animation: rotate-left 24s linear 0s infinite;
}

#circle5 {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transform-origin: 200px 200px;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-animation: rotate-right 12s linear 0s infinite;
}

.faq-tab .nav-tabs {
  display: block;
  border-bottom: none;
  background-color: white;
  padding: 10px 0;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.faq-tab .nav-tabs .nav-item {
  display: block;
}

.faq-tab .nav-tabs .nav-item .nav-link {
  text-transform: capitalize;
  color: var(--main-color);
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  border: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 0;
  font-weight: 600;
}

.faq-tab .nav-tabs .nav-item .nav-link.active {
  border: none;
  border-right: 2px solid var(--main-color);
  border-radius: 0;
  color: var(--main-color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.faq-tab .nav-tabs .nav-item .nav-link:hover {
  border: none;
  border-right: 2px solid var(--main-color);
  color: var(--main-color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.faq-content {
  display: block;
  background-color: white;
  padding: 30px;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.faq-content .tab-pane .card {
  margin-bottom: 25px;
  border-radius: 0;
  border: none;
}

.faq-content .tab-pane .card .card-header {
  border-bottom: none;
  background-color: transparent;
  padding: 0;
}

.faq-content .tab-pane .card .card-header h5 {
  padding: 0;
  width: 100%;
  text-align: left;
  color: var(--main-color);
  text-transform: capitalize;
  font-weight: 700;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.faq-content .tab-pane .card .card-body {
  color: #444444;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  padding: 0;
}

.faq-content .tab-pane .card:last-child {
  margin-bottom: 0;
}

.account-sign-in .title {
  margin-bottom: 20px;
}

.account-sign-in .title h3 {
  text-transform: uppercase;
  font-weight: 700;
}

.account-sign-in form .form-group label {
  text-transform: capitalize;
  font-weight: 600;
}

.account-sign-in form .form-group .form-control {
  border-radius: 0;
}

.account-sign-in form .button-bottom .btn {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.account-sign-in .divider {
  text-align: center;
  position: relative;
  margin: 20px 0;
  z-index: 1;
}

.account-sign-in .divider h6 {
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 0;
  text-transform: uppercase;
  background-color: white;
}

.account-sign-in .divider:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #dddddd;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

.account-sign-in .login-with h6 {
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.account-sign-in .login-with .login-social .boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: white;
  -webkit-box-shadow: 0 5px 9px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 9px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
}

.account-sign-in .login-with .login-social .boxes h6 {
  margin-bottom: 0;
  margin-left: 20px;
  text-transform: capitalize;
  font-weight: 600;
}

.account-sign-in .login-with p {
  margin-top: 15px;
}

.dashboard-section .faq-content {
  min-height: 700px;
}

.dashboard-section .dashboard-sidebar {
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
  background-color: white;
}

.dashboard-section .dashboard-sidebar .profile-top {
  padding: 30px 0 15px 0;
  background-color: #fafafa;
  margin-bottom: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
}

.dashboard-section .dashboard-sidebar .profile-top .profile-image {
  position: relative;
}

.dashboard-section .dashboard-sidebar .profile-top .profile-image img {
  width: 130px;
  margin: 0 auto;
  display: block;
  border-radius: 100%;
}

.dashboard-section .dashboard-sidebar .profile-top .profile-image .profile-edit {
  position: absolute;
  bottom: 0;
  right: 30%;
  background-color: var(--main-color);
  fff;
  padding: 7px 7px 3px 7px;
  border-radius: 100%;
  -webkit-box-shadow: 2px 3px 5px 5px #f3f3f3;
  box-shadow: 2px 3px 5px 5px #f3f3f3;
}

.dashboard-section .dashboard-sidebar .profile-top .profile-image .profile-edit svg {
  stroke: var(--main-color);
  height: 18px;
  width: 18px;
}

.dashboard-section .dashboard-sidebar .profile-top .profile-detail {
  text-align: center;
  margin-top: 15px;
}

.dashboard-section .dashboard-sidebar .profile-top .profile-detail h5 {
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 5px;
}

.dashboard-section .dashboard-sidebar .profile-top .profile-detail h6 {
  color: #777777;
  margin-bottom: 3px;
}

.dashboard-section .dashboard-sidebar .faq-tab .nav-tabs {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  padding-bottom: calc(10px + (15 - 10) * ((100vw - 320px) / (1920 - 320)));
}

.dashboard-section .dashboard-box .dashboard-title {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.dashboard-section .dashboard-box .dashboard-title h4 {
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 0;
}

.dashboard-section .dashboard-box .dashboard-title span {
  margin-left: 30px;
  background-color: #f9f9f9;
  padding: 2px 16px;
  border-radius: 2px;
  text-transform: capitalize;
  color: var(--main-color);
  cursor: pointer;
}

.dashboard-section .dashboard-box .dashboard-detail {
  margin-bottom: 20px;
}

.dashboard-section .dashboard-box .dashboard-detail ul li {
  display: block;
  margin-bottom: 10px;
}

.dashboard-section .dashboard-box .dashboard-detail ul li .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dashboard-section .dashboard-box .dashboard-detail ul li .details h6 {
  text-transform: capitalize;
  margin-bottom: 0;
  font-weight: 600;
}

.dashboard-section .dashboard-box .dashboard-detail ul li .details span {
  margin-left: calc(10px + (30 - 10) * ((100vw - 320px) / (1920 - 320)));
  border-radius: 2px;
  text-transform: capitalize;
  color: var(--main-color);
  cursor: pointer;
}

.dashboard-section .dashboard-box .dashboard-detail ul li .details .left {
  width: 150px;
  margin-right: 15px;
}

.dashboard-section .dashboard-box .dashboard-detail ul li .details .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.dashboard-section .dashboard-box .dashboard-detail ul li .details .right h6 {
  color: #4e4e4e;
  font-weight: 500;
}

.dashboard-section .dashboard-box .dashboard-detail ul li:last-child {
  margin-bottom: 0;
}

.dashboard-section .dashboard-box .dashboard-detail .booking-box {
  background-color: #f9f9f9;
  padding: 15px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: -1px 2px 8px #ddd;
  box-shadow: -1px 2px 8px #ddd;
}

.dashboard-section .dashboard-box .dashboard-detail .booking-box .date-box {
  display: inline-block;
  text-transform: capitalize;
  width: 160px;
}

.dashboard-section .dashboard-box .dashboard-detail .booking-box .date-box span {
  line-height: 1.3;
  display: block;
  font-weight: 700;
}

.dashboard-section .dashboard-box .dashboard-detail .booking-box .date-box span.day {
  color: #adb0b8;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.dashboard-section .dashboard-box .dashboard-detail .booking-box .date-box span.date {
  color: var(--main-color);
  font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.dashboard-section .dashboard-box .dashboard-detail .booking-box .date-box span.month {
  color: var(--main-color);
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.dashboard-section .dashboard-box .dashboard-detail .booking-box .detail-middle {
  width: 50%;
}

.dashboard-section .dashboard-box .dashboard-detail .booking-box .detail-middle .media {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.dashboard-section .dashboard-box .dashboard-detail .booking-box .detail-middle .media .icon i {
  padding: 12px;
  background-color: white;
  border-radius: 100%;
  -webkit-box-shadow: -1px 2px 8px #ddd;
  box-shadow: -1px 2px 8px #ddd;
}

.dashboard-section .dashboard-box .dashboard-detail .booking-box .detail-middle .media .media-body {
  margin-left: 35px;
}

.dashboard-section .dashboard-box .dashboard-detail .booking-box .detail-middle .media .media-body h6 {
  text-transform: capitalize;
  color: var(--main-color);
}

.dashboard-section .dashboard-box .dashboard-detail .booking-box .detail-middle .media .media-body p {
  margin-bottom: 0;
  color: #808080;
  text-transform: capitalize;
}

.dashboard-section .dashboard-box .dashboard-detail .booking-box .detail-middle .media .media-body p span {
  font-weight: 500;
  color: #3c3c3c;
}

.dashboard-section .dashboard-box .dashboard-detail .booking-box .detail-last {
  margin-left: auto;
}

.dashboard-section .dashboard-box .dashboard-detail .booking-box .detail-last i {
  color: var(--main-color);
}

.dashboard-section .dashboard-box .dashboard-detail .booking-box .detail-last span {
  font-size: 14px;
  margin-left: 10px;
  text-transform: capitalize;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card {
  width: 100%;
  min-height: 183px;
  padding: 30px 20px;
  border-radius: 5px;
  position: relative;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), -webkit-linear-gradient(-245deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%);
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card .card-details .card-number h3 {
  font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  color: white;
  font-weight: 600;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card .card-details .valid-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card .card-details .valid-detail .title span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.3;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card .card-details .valid-detail .date h3 {
  margin-bottom: 0;
  color: white;
  margin-left: 15px;
  font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card .card-details .valid-detail .primary {
  margin-left: auto;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card .card-details .valid-detail .primary .badge {
  font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card .card-details .name-detail {
  margin-top: calc(10px + (25 - 10) * ((100vw - 320px) / (1920 - 320)));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card .card-details .name-detail .name {
  width: 100%;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card .card-details .name-detail .name h5 {
  color: white;
  text-transform: uppercase;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 0;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card .card-details .name-detail .card-img {
  display: inline-block;
  margin-left: auto;
  text-align: right;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card .card-details .name-detail .card-img img {
  width: 40px;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card .edit-card {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card .edit-card a {
  padding: 0 10px;
  text-transform: capitalize;
  color: white;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card.master {
  background-color: #4b77a0;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card.visa {
  background-color: #777876;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card.american-express {
  background-color: #86b8cf;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card.american-express .card-details .card-number h3 {
  color: var(--main-color);
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card.american-express .card-details .valid-detail .title span {
  color: rgba(0, 0, 0, 0.7);
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card.american-express .card-details .valid-detail .date h3 {
  color: var(--main-color);
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card.american-express .card-details .name-detail .name h5 {
  color: var(--main-color);
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card.add-card {
  background-color: #f9f9f9;
  cursor: pointer;
  padding: 0;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card.add-card .card-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 183px;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card.add-card .card-details h5 {
  margin-bottom: 0;
  text-transform: capitalize;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card:hover .edit-card {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment .edit-card-mobile {
  display: none;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment>div .payment-card {
  margin-top: 30px;
}

.dashboard-section .dashboard-box .dashboard-detail .card-payment>div:nth-child(-n+3) .payment-card {
  margin-top: 0;
}

.dashboard-section .dashboard-box .dashboard-detail .delete-section p {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: rgba(0, 0, 0, 0.64);
  text-transform: capitalize;
  line-height: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));
}

.dashboard-section .dashboard-box .dashboard-detail .delete-section p .text-bold {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.8);
}

.dashboard-section .dashboard-box .dashboard-detail .delete-section .btn {
  padding: 7px 15px;
  text-transform: capitalize;
}

.dashboard-section .dashboard-box .dashboard-detail:last-child {
  margin-bottom: 0;
}

.dashboard-section .dashboard-box .special-section .special-box .special-img .top-icon i {
  padding: 6px 8px;
}

.dashboard-section .dashboard-box+.dashboard-box {
  margin-top: 30px;
}

.dashboard-section .dashboard-main .dashboard-intro {
  background-color: #f9f9f9;
  padding: calc(15px + (25 - 15) * ((100vw - 320px) / (1920 - 320)));
  border-radius: 5px;
  margin-bottom: 25px;
}

.dashboard-section .dashboard-main .dashboard-intro h5 {
  text-transform: capitalize;
  font-weight: 700;
}

.dashboard-section .dashboard-main .dashboard-intro p {
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.8);
  text-transform: capitalize;
  letter-spacing: 0.08em;
}

.dashboard-section .dashboard-main .dashboard-intro .complete-profile {
  margin-top: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
}

.dashboard-section .dashboard-main .dashboard-intro .complete-profile .complete-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: white;
  padding: 15px;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(222, 222, 222, 0.22);
  box-shadow: 0 2px 4px 0 rgba(222, 222, 222, 0.22);
}

.dashboard-section .dashboard-main .dashboard-intro .complete-profile .complete-box i {
  margin-right: 12px;
  color: green;
  font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));
}

.dashboard-section .dashboard-main .dashboard-intro .complete-profile .complete-box h6 {
  margin-bottom: 0;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 14px;
}

.dashboard-section .dashboard-main .dashboard-intro .complete-profile .complete-box.not-complete i {
  color: red;
}

.dashboard-section .dashboard-main .counter-section .counter-box {
  background-color: #f9f9f9;
  padding: 15px;
  text-align: center;
}

.dashboard-section .dashboard-main .counter-section .counter-box img {
  width: 35px;
  margin-bottom: 15px;
}

.dashboard-section .dashboard-main .counter-section .counter-box h3 {
  margin-bottom: 0;
  font-weight: 600;
}

.dashboard-section .dashboard-main .counter-section .counter-box h5 {
  color: rgba(0, 0, 0, 0.61);
  margin-bottom: -5px;
  text-transform: capitalize;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  margin-top: 5px;
}

.dashboard-section .dashboard-main .dashboard-info {
  margin-top: 25px;
  position: relative;
}

.dashboard-section .dashboard-main .dashboard-info #chart,
.dashboard-section .dashboard-main .dashboard-info .chart-box {
  padding-top: 20px;
  padding-left: 10px;
  background: #f9f9f9;
}

.dashboard-section .dashboard-main .dashboard-info select.flat-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #008ffb url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60px' height='60px'><polyline fill='white' points='46.139,15.518 25.166,36.49 4.193,15.519'/></svg>") no-repeat scroll right 2px top 9px/16px 16px;
  border: 0 none;
  border-radius: 3px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  outline: 0 none;
  height: 33px;
  padding: 5px 20px 5px 10px;
  text-align: center;
  text-indent: 0.01px;
  text-overflow: "";
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: auto;
}

.dashboard-section .dashboard-main .dashboard-info select.flat-select:focus,
.dashboard-section .dashboard-main .dashboard-info select.flat-select:hover {
  border: 0;
  outline: 0;
}

.dashboard-section .dashboard-main .dashboard-info .apexcharts-canvas {
  margin: 0 auto;
}

.dashboard-section .dashboard-main .dashboard-info path#apexcharts-radialbarTrack-0 {
  stroke: rgba(251, 96, 122, 0.08);
}

.dashboard-section .dashboard-main .dashboard-info path#apexcharts-radialbarTrack-1 {
  stroke: rgba(85, 169, 248, 0.08);
}

.dashboard-section .dashboard-main .dashboard-info path#apexcharts-radialbarTrack-2 {
  stroke: rgba(162, 100, 255, 0.08);
}

.dashboard-section .dashboard-main .dashboard-info .detail-left {
  position: absolute;
}

.dashboard-section .dashboard-main .dashboard-info .detail-left ul {
  display: block;
}

.dashboard-section .dashboard-main .dashboard-info .detail-left ul li {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
}

.dashboard-section .dashboard-main .dashboard-info .detail-left ul li span {
  width: 14px;
  height: 5px;
  display: block;
  border-radius: 5px;
  margin-right: 5px;
}

.dashboard-section .dashboard-main .dashboard-info .detail-left ul li span.completed {
  background-color: #fa4962;
}

.dashboard-section .dashboard-main .dashboard-info .detail-left ul li span.upcoming {
  background-color: #379cf9;
}

.dashboard-section .dashboard-main .dashboard-info .detail-left ul li span.cancelled {
  background-color: #a264ff;
}

.dashboard-section .dashboard-main .dashboard-info .activity-box {
  padding: 20px 10px;
  background: #f9f9f9;
}

.dashboard-section .dashboard-main .dashboard-info .activity-box h6 {
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 15px;
}

.dashboard-section .dashboard-main .dashboard-info .activity-box ul li {
  display: block;
  background-color: white;
  padding: 8px 15px;
  text-transform: capitalize;
  position: relative;
}

.dashboard-section .dashboard-main .dashboard-info .activity-box ul li i {
  margin-right: 6px;
}

.dashboard-section .dashboard-main .dashboard-info .activity-box ul li span {
  float: right;
}

.dashboard-section .dashboard-main .dashboard-info .activity-box ul li:after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 2px;
  background-color: red;
  top: 0;
}

.dashboard-section .dashboard-main .dashboard-info .activity-box ul li.blue-line:after {
  background-color: #03a9f4;
}

.dashboard-section .dashboard-main .dashboard-info .activity-box ul li.yellow-line:after {
  background-color: var(--main-color);
}

.dashboard-section .dashboard-main .dashboard-info .activity-box ul li+li {
  margin-top: 8px;
}

.edit-profile-modal .btn {
  padding: 0.375rem 0.75rem;
}

.edit-profile-modal .modal-title {
  text-transform: capitalize;
  font-weight: 700;
}

.edit-profile-modal .modal-body label {
  text-transform: capitalize;
}

.modal .modal-header {
  padding: 20px 30px;
}

.modal .modal-body {
  padding: 20px 30px;
}

.modal .modal-footer {
  padding: 20px 30px;
}

/*=====================
22. Portfolio css
==========================*/

.portfolio-section .filter-button-group {
  text-align: center;
}

.portfolio-section .filter-button-group ul li {
  padding: 7px 17px;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 700;
  margin: 0 10px;
  text-transform: capitalize;
  background-color: #f9f9f9;
}

.portfolio-section .filter-button-group ul li.active {
  background-color: var(--main-color);
  color: white;
}

.portfolio-section .grid .grid-item {
  margin-top: 30px;
}

.portfolio-section .grid .grid-item .overlay {
  overflow: hidden;
  margin: -1px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.portfolio-section .grid .grid-item .overlay .portfolio-image {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
}

.portfolio-section .grid .grid-item .overlay .portfolio-text {
  margin-top: 10px;
}

.portfolio-section .grid .grid-item .overlay .portfolio-text h3 {
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: capitalize;
  font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));
}

.portfolio-section .grid .grid-item .overlay .portfolio-text h6 {
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 14px;
  color: grey;
}

.portfolio-section .grid .grid-item .overlay:hover .portfolio-image {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.portfolio-section .grid .grid-item a {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.portfolio-section .grid.blog-masonry .grid-item a {
  cursor: pointer;
}

.portfolio-section .grid.blog-masonry .grid-item .overlay {
  overflow: visible;
}

.portfolio-section .grid.blog-masonry .grid-item .overlay .blog-details {
  padding-top: 20px;
}

.portfolio-section .grid.blog-masonry .grid-item .overlay .blog-details h6 {
  color: #9a9a9a;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.portfolio-section .grid.blog-masonry .grid-item .overlay .blog-details h6 i {
  color: rgba(35, 0, 0, 0.24);
  margin-right: 12px;
}

.portfolio-section .grid.blog-masonry .grid-item .overlay .blog-details h5 {
  font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  color: #333333;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 5px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.portfolio-section .grid.blog-masonry .grid-item .overlay .blog-details p {
  font-size: 14px;
  color: #9a9a9a;
  line-height: 1.5;
  margin-bottom: -3px;
}

.portfolio-section .grid.blog-masonry .grid-item .overlay .blog-details .link {
  margin-bottom: 0;
  margin-top: 15px;
}

.portfolio-section .grid.blog-masonry .grid-item .overlay .blog-details .link a {
  color: rgba(0, 0, 0, 0.74);
}

.portfolio-section .grid.blog-masonry .grid-item .overlay:hover .portfolio-image {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.portfolio-section .isotopeSelector {
  float: left;
  width: 100%;
  position: relative;
  margin-top: 30px;
}

.portfolio-section .isotopeSelector img {
  width: 100%;
  height: auto;
}

.portfolio-section.creative-section .grid .grid-item {
  margin-top: 0;
}

.portfolio-section.creative-section .filter-button-group {
  margin-bottom: 40px;
}

.effect-cls {
  position: relative;
}

.effect-cls:after {
  content: "";
  position: absolute;
  background: url(../images/effect.png);
  bottom: -12px;
  width: 100%;
  height: 110px;
  left: 0;
  z-index: 1;
}

.effect-cls.breadcrumb-section {
  height: calc(300px + (580 - 300) * ((100vw - 320px) / (1920 - 320)));
}

.effect-cls-up:before {
  content: "";
  position: absolute;
  background: url(../images/effect.png);
  top: -1px;
  width: 100%;
  height: 85px;
  z-index: 1;
  background-repeat: no-repeat;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.parallax-section .full_banner {
  height: 93vh;
  background-attachment: fixed;
}

.center-slide {
  margin-bottom: -3px;
}

.center-slide .image-center {
  height: 93vh;
}

.center-slide .image-center .center-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 93vh;
  text-align: center;
  position: relative;
  z-index: 1;
}

.center-slide .image-center .center-content h3 {
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.center-slide .image-center .center-content h6 {
  margin-bottom: 0;
  text-transform: capitalize;
}

.center-slide .image-center .center-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.65);
  z-index: -1;
}

.center-slide .slick-slide .image-center .center-content {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.center-slide .slick-slide.slick-center .image-center .center-content {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.center-slide .slick-slide.slick-center .image-center .center-content h3 {
  -webkit-animation: fadeInLeft 0.4s ease;
  animation: fadeInLeft 0.4s ease;
}

.center-slide .slick-slide.slick-center .image-center .center-content h6 {
  -webkit-animation: fadeInRight 0.4s ease;
  animation: fadeInRight 0.4s ease;
  color: gray;
  padding: 10px 20px;
  background-color: var(--main-color);
  fff;
}

.portfolio-creative.odd-even-con .container .row .content-sec {
  text-align: left;
  padding-left: 60px;
}

.portfolio-creative.odd-even-con .container .row .content-sec h3 {
  font-size: 200%;
}

.portfolio-creative.odd-even-con .container .row .content-sec p {
  max-width: 80%;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.portfolio-creative.odd-even-con .container .row:nth-child(even) .content-sec {
  text-align: right;
  padding-left: unset;
  padding-right: 60px;
}

.portfolio-creative.odd-even-con .container .row:nth-child(even) p {
  margin-right: 0;
  margin-left: auto;
}

.portfolio-creative .content-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.portfolio-creative .content-sec.center-con p {
  max-width: 80%;
  font-size: 16px;
  line-height: 1.4;
}

.portfolio-creative .content-sec.center-con h3 {
  font-size: 175%;
}

.portfolio-creative .content-sec h3 {
  text-transform: capitalize;
  font-weight: 700;
  position: relative;
}

.portfolio-creative .content-sec p {
  color: #888888;
  max-width: 70%;
  margin: 0 auto;
}

.portfolio-creative .content-sec .btn {
  text-transform: capitalize;
  padding: 6px 14px;
  margin-top: 25px;
}

/*=====================
23. Blog pages css
==========================*/

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

.blog-sidebar .blog-wrapper .search-bar {
  position: relative;
}

.blog-sidebar .blog-wrapper .search-bar input {
  width: 100%;
  border: none;
  padding: 14px 14px 14px 50px;
  background-color: #f7f7f7;
}

.blog-sidebar .blog-wrapper .search-bar i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 14px;
  color: var(--main-color);
}

.blog-sidebar .blog-wrapper .search-bar i:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 12px;
  background-color: rgba(233, 179, 14, 0.5);
  right: -10px;
  top: 2px;
}

.blog-sidebar .blog-wrapper .sidebar-title h5 {
  text-transform: capitalize;
  font-weight: 700;
  font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 20px;
}

.blog-sidebar .blog-wrapper .sidebar-content .sidebar-list li {
  display: block;
  padding: 10px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.blog-sidebar .blog-wrapper .sidebar-content .sidebar-list li a {
  color: var(--main-color);
}

.blog-sidebar .blog-wrapper .sidebar-content .sidebar-list li i {
  margin-right: 15px;
  color: gray;
}

.blog-sidebar .blog-wrapper .sidebar-content .sidebar-list li:first-child {
  padding-top: 0;
}

.blog-sidebar .blog-wrapper .sidebar-content .blog-post li {
  margin-bottom: 20px;
}

.blog-sidebar .blog-wrapper .sidebar-content .blog-post li .media h6 {
  font-weight: 600;
}

.blog-sidebar .blog-wrapper .sidebar-content .blog-post li .media img {
  width: 100px;
  margin-right: 15px;
}

.blog-sidebar .blog-wrapper .sidebar-content .blog-post li .media .media-body p {
  margin-bottom: 0;
}

.blog-sidebar .blog-wrapper .sidebar-content .blog-post li:last-child {
  margin-bottom: 0;
}

.blog-sidebar .blog-wrapper .sidebar-content .tags {
  margin-top: -8px;
}

.blog-sidebar .blog-wrapper .sidebar-content .tags li {
  padding: 4px 10px;
  background-color: rgba(249, 249, 249, 0.8);
  margin: 8px 8px 0 0;
  border-radius: 4px;
  text-transform: capitalize;
}

.blog-sidebar .blog-wrapper .sidebar-content .tags li a {
  color: var(--main-color);
}

.blog-sidebar .blog-wrapper:last-child {
  margin-bottom: 0;
}

.blog-inner.blog_section {
  overflow: visible;
}

.blog-inner.blog_section .blog-wrap {
  border-radius: 0;
  -webkit-box-shadow: 1px 0px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 0px 4px 0px rgba(0, 0, 0, 0.1);
}

.blog-inner.blog_section .blog-wrap .blog-image .blog-label {
  border-radius: 0;
  padding: 8px 10px;
}

.blog-inner.blog_section .blog-wrap .blog-image .blog-label h3 {
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.blog-inner.blog_section .blog-wrap .blog-image .blog-label h6 {
  font-size: 13px;
}

.blog-inner.blog_section .blog-wrap .blog-details {
  padding: 20px;
}

.blog-inner.blog_section .blog-wrap .blog-details h6 {
  margin-bottom: 5px;
}

.blog-inner.blog_section .blog-wrap .blog-details h6 i {
  color: rgba(35, 0, 0, 0.24);
}

.blog-inner.blog_section .blog-wrap .blog-details h5 {
  margin-bottom: 10px;
}

.blog-inner.blog_section .blog-wrap .blog-details .link {
  margin-bottom: 0;
  margin-top: 15px;
}

.blog-inner.blog_section .blog-wrap .blog-details .link a {
  color: rgba(0, 0, 0, 0.74);
}

.blog-inner.blog_section .blog-list .blog-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-inner.blog_section .blog-list .blog-wrap .blog-image {
  width: 30%;
}

.blog-inner.blog_section .blog-list .blog-wrap .blog-details {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.blog-inner.blog_section .blog-list .blog-wrap .blog-details h6 i {
  color: rgba(35, 0, 0, 0.24);
}

.blog-single-detail .top-image {
  position: relative;
}

.blog-single-detail .top-image .video {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.blog-single-detail .top-image .video i {
  font-size: calc(25px + (40 - 25) * ((100vw - 300px) / (1920 - 300)));
  color: white;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.blog-single-detail .top-image:hover .video i {
  color: var(--main-color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.blog-single-detail .title-part .post-detail {
  margin-top: calc(10px + (30 - 10) * ((100vw - 300px) / (1920 - 300)));
}

.blog-single-detail .title-part .post-detail li {
  font-weight: 600;
  color: #777777;
}

.blog-single-detail .title-part .post-detail li+li {
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid #ddd;
}

.blog-single-detail .title-part h3 {
  margin-bottom: calc(7px + (15 - 7) * ((100vw - 320px) / (1920 - 320)));
  margin-top: 5px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: calc(18px + (24 - 18) * ((100vw - 320px) / (1920 - 320)));
}

.blog-single-detail .detail-part p {
  font-weight: 400;
  color: #777;
  margin-bottom: calc(10px + (25 - 10) * ((100vw - 300px) / (1920 - 300)));
  line-height: calc(20px + (24 - 20) * ((100vw - 300px) / (1920 - 300)));
  font-size: calc(13px + (15 - 13) * ((100vw - 300px) / (1920 - 300)));
}

.blog-single-detail .comment-section .comment {
  text-transform: capitalize;
  margin-bottom: 20px;
}

.blog-single-detail .comment-section .comment-wrapper .comment-box .media img {
  width: calc(60px + (70 - 60) * ((100vw - 320px) / (1920 - 320)));
  border-radius: 100%;
}

.blog-single-detail .comment-section .comment-wrapper .comment-box .media .media-body {
  margin-left: calc(6px + (15 - 6) * ((100vw - 320px) / (1920 - 320)));
}

.blog-single-detail .comment-section .comment-wrapper .comment-box .media .media-body .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #dddddd;
}

.blog-single-detail .comment-section .comment-wrapper .comment-box .media .media-body .title .comment-user,
.blog-single-detail .comment-section .comment-wrapper .comment-box .media .media-body .title .comment-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-single-detail .comment-section .comment-wrapper .comment-box .media .media-body .title .comment-user h6,
.blog-single-detail .comment-section .comment-wrapper .comment-box .media .media-body .title .comment-date h6 {
  color: #484848;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 0;
  font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
}

.blog-single-detail .comment-section .comment-wrapper .comment-box .media .media-body .title .comment-user i,
.blog-single-detail .comment-section .comment-wrapper .comment-box .media .media-body .title .comment-date i {
  color: rgba(0, 0, 0, 0.5);
  margin-right: 7px;
}

.blog-single-detail .comment-section .comment-wrapper .comment-box .media .media-body .title .comment-date {
  margin-left: 15px;
}

.blog-single-detail .comment-section .comment-wrapper .comment-box .media .media-body .comment-detail p {
  margin-bottom: 8px;
  color: #9a9a9a;
  line-height: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));
}

.blog-single-detail .comment-section .comment-wrapper .comment-box .media .media-body .reply-btn {
  text-align: right;
}

.blog-single-detail .comment-section .comment-wrapper .comment-box .media .media-body .reply-btn a {
  color: #555555;
  text-transform: capitalize;
}

.blog-single-detail .comment-section .comment-wrapper .comment-box .media.inner-comment {
  margin-left: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
  margin-top: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
}

.blog-single-detail .comment-section .comment-wrapper .comment-box+.comment-box {
  margin-top: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
}

.blog-single-detail .leave-comment {
  margin-top: 30px;
}

.blog-single-detail .leave-comment .comment {
  text-transform: capitalize;
  margin-bottom: 20px;
}

.blog-single-detail .leave-comment .form-control {
  border: 0;
  border-radius: 0;
  background-color: #f7f7f7;
  font-size: 14px;
  line-height: 1.8;
  text-transform: capitalize;
  padding: 10px 18px;
}

.blog-single-detail .leave-comment .submit-btn {
  text-align: right;
  margin-top: 10px;
}

.blog-single-detail .leave-comment .submit-btn .btn {
  text-transform: capitalize;
  padding: 5px 10px;
}

/*=====================
24. Footer css
==========================*/

footer .footer {
  background-color: #1b1b1b;
  border-top: 2px solid var(--main-color);
}

footer .footer .footer-space {
  padding-left: 50px;
}

footer .footer .footer-title.mobile-title {
  display: none;
}

footer .footer .footer-title h5 {
  color: white;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 700;
  position: relative;
}

footer .footer .footer-title .according-menu {
  position: absolute;
  right: 15px;
  top: 2px;
  display: none;
}

footer .footer .footer-content .contact-detail .footer-logo {
  margin-bottom: 4px;
}

footer .footer .footer-content .contact-detail p {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: #a1a1a1;
  line-height: 1.4;
  font-weight: 700;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 40px;
}

footer .footer .footer-content .contact-detail .contact-list li {
  color: #a1a1a1;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 12px;
  text-transform: capitalize;
  display: block;
}

footer .footer .footer-content .contact-detail .contact-list li i {
  margin-right: 5px;
  font-size: 12px;
}

footer .footer .footer-content .contact-detail .contact-list li:last-child {
  margin-bottom: -3px;
}

footer .footer .footer-content .footer-links ul li {
  display: block;
  margin-bottom: 7px;
}

footer .footer .footer-content .footer-links ul li a {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  color: #a1a1a1;
  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

footer .footer .footer-content .footer-links ul li a:hover {
  color: white;
  padding-left: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

footer .footer .footer-content .footer-links ul li:last-child {
  margin-bottom: 0;
}

footer .footer .footer-content .footer-map iframe {
  width: 330px;
  height: 200px;
}

footer .footer .footer-content .footer-blog .media .img-part {
  overflow: hidden;
}

footer .footer .footer-content .footer-blog .media .media-body {
  margin-left: 25px;
}

footer .footer .footer-content .footer-blog .media .media-body h5 {
  color: white;
  text-transform: capitalize;
  font-weight: 700;
}

footer .footer .footer-content .footer-blog .media .media-body p {
  color: #a1a1a1;
  font-weight: 600;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}

footer .footer .footer-content .footer-blog .media+.media {
  margin-top: 18px;
}

footer .footer .footer-content .footer-place .row>div:nth-last-child(-n+3) {
  margin-top: 25px;
}

footer .footer .footer-content .footer-place .place {
  overflow: hidden;
  position: relative;
}

footer .footer .footer-content .footer-place .place .overlay {
  opacity: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

footer .footer .footer-content .footer-place .place .overlay h6 {
  color: white;
  text-transform: capitalize;
  font-weight: 700;
}

footer .footer .footer-content .footer-place .place:hover .overlay {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
}

footer .sub-footer {
  background-color: var(--main-color);
  padding: 8px 0;
}

footer .sub-footer .footer-social ul li {
  margin-right: 35px;
}

footer .sub-footer .footer-social ul li a i {
  color: #717171;
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

footer .sub-footer .footer-social ul li a:hover i {
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

footer .sub-footer .footer-social ul li:last-child {
  margin-right: 0;
}

footer .sub-footer .copy-right p {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-align: right;
  margin-bottom: 0;
  margin-top: 3px;
  color: #717171;
  text-transform: capitalize;
  font-weight: 700;
}

footer .sub-footer .copy-right p i {
  color: #e1002c;
  font-size: 13px;
}

footer.footer-light .footer {
  background-color: rgba(233, 179, 14, 0.15);
}

footer.footer-light .footer .footer-content .contact-detail p {
  color: rgba(0, 0, 0, 0.6);
}

footer.footer-light .footer .footer-content .contact-detail .contact-list li {
  color: var(--main-color);
}

footer.footer-light .footer .footer-content .contact-detail .footer-logo img {
  -webkit-filter: invert(1);
  filter: invert(1);
}

footer.footer-light .footer .footer-content .footer-links ul li a {
  color: var(--main-color);
}

footer.footer-light .footer .footer-content .footer-blog .media .media-body h5 {
  color: var(--main-color);
}

footer.footer-light .footer .footer-content .footer-blog .media .media-body p {
  color: rgba(0, 0, 0, 0.6);
}

footer.footer-light .footer .footer-title h5 {
  color: var(--main-color);
}

footer.footer-light .sub-footer {
  background-color: rgba(233, 179, 14, 0.3);
}

footer.footer-bg {
  position: relative;
  background-blend-mode: overlay;
  background-color: rgba(233, 179, 14, 0.5);
}

footer.footer-bg .footer {
  background-color: rgba(27, 27, 27, 0.141176);
}

footer.footer-bg .footer .footer-content .contact-detail p {
  color: white;
}

footer.footer-bg .footer .footer-content .contact-detail .contact-list li {
  color: white;
}

footer.footer-bg .footer .footer-content .footer-links ul li a {
  color: white;
}

footer.footer-bg .footer .footer-content .footer-blog .media .media-body p {
  color: white;
}

/*=====================
25. Loader css
==========================*/

.loader-wrapper {
  height: 100vh;
  width: 100vw;
  background-color: white;
  display: block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  z-index: 12;
  top: 0;
}

.loader-wrapper .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
  transform: translate(-50%, -50%) scale(0.5);
  width: 200px;
  height: 150px;
}

.loader-wrapper.loader-text .loader {
  width: auto;
  height: auto;
}

.loader-wrapper.inner-loader {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #f9f9f9;
}

.loader-wrapper.inner-loader .loader {
  top: 25%;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 9%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.loader-wrapper.food-loader .loader {
  width: auto;
  height: auto;
}

.loader-wrapper.img-gif {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.loader-wrapper.img-gif img {
  width: 20%;
}

.loader-section {
  position: relative;
  overflow: hidden;
}

.typewriter h1 {
  color: var(--main-color);
  overflow: hidden;
  border-right: 0.15em solid var(--main-color);
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.15em;
  -webkit-animation: typing 3.5s steps(30, end), blink-caret 0.5s step-end infinite;
  animation: typing 3.5s steps(30, end), blink-caret 0.5s step-end infinite;
}

@-webkit-keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@-webkit-keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: var(--main-color);
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: var(--main-color);
  }
}

.animation {
  position: relative;
  width: 100%;
  height: 20rem;
  max-width: 55rem;
  background-color: #f9f9f9;
}

.animation [class^="animation__"],
.animation [class*=" animation__"] {
  position: absolute;
}

.animation__plane {
  position: absolute;
  z-index: 1;
  top: calc(40% - (62px / 2));
  left: calc(50% - (272px / 2));
  width: 17rem;
  height: 6.2rem;
  -webkit-animation: 2s ease-in-out takeOff, 5s ease-in-out infinite alternate flight 2s;
  animation: 2s ease-in-out takeOff, 5s ease-in-out infinite alternate flight 2s;
}

.animation__plane--shadow {
  bottom: 1rem;
  left: calc(54% - (8rem / 2));
  width: 8rem;
  height: 1rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.15);
  -webkit-animation: 2s ease-in-out takeOffShadow, 5s ease-in-out infinite alternate flightShadow 2s;
  animation: 2s ease-in-out takeOffShadow, 5s ease-in-out infinite alternate flightShadow 2s;
}

.animation__cloud--front {
  z-index: 2;
  top: 50%;
  left: 20%;
  width: 8.5rem;
  height: 3rem;
  fill: #cee4e7;
  -webkit-animation: 4s linear infinite cloudFront;
  animation: 4s linear infinite cloudFront;
}

.animation__cloud--middle {
  top: 22%;
  left: 75%;
  width: 6rem;
  height: 3rem;
  fill: #cee4e7;
  -webkit-animation: 5s linear infinite cloudMiddle;
  animation: 5s linear infinite cloudMiddle;
}

.animation__cloud--back {
  top: 6%;
  left: 34%;
  fill: #cee4e7;
  -webkit-animation: 8s linear infinite cloudBack;
  animation: 8s linear infinite cloudBack;
}

@-webkit-keyframes loader {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes loader {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@-webkit-keyframes takeOff {
  0% {
    -webkit-transform: translate(-220%, 110%);
    transform: translate(-220%, 110%);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes takeOff {
  0% {
    -webkit-transform: translate(-220%, 110%);
    transform: translate(-220%, 110%);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes takeOffShadow {
  0% {
    -webkit-transform: translate(-440%, 110%);
    transform: translate(-440%, 110%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 0.8;
  }
}

@keyframes takeOffShadow {
  0% {
    -webkit-transform: translate(-440%, 110%);
    transform: translate(-440%, 110%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 0.8;
  }
}

@-webkit-keyframes flight {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(0, 10%);
    transform: translate(0, 10%);
  }
  75% {
    -webkit-transform: translate(0, -10%);
    transform: translate(0, -10%);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes flight {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(0, 10%);
    transform: translate(0, 10%);
  }
  75% {
    -webkit-transform: translate(0, -10%);
    transform: translate(0, -10%);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes flightShadow {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.8;
  }
  25% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.8;
  }
}

@keyframes flightShadow {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.8;
  }
  25% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.8;
  }
}

@-webkit-keyframes cloudFront {
  0% {
    -webkit-transform: translate(520%, 0);
    transform: translate(520%, 0);
  }
  100% {
    -webkit-transform: translate(-600%, 0);
    transform: translate(-600%, 0);
  }
}

@keyframes cloudFront {
  0% {
    -webkit-transform: translate(520%, 0);
    transform: translate(520%, 0);
  }
  100% {
    -webkit-transform: translate(-600%, 0);
    transform: translate(-600%, 0);
  }
}

@-webkit-keyframes cloudMiddle {
  0% {
    -webkit-transform: translate(230%, 0);
    transform: translate(230%, 0);
  }
  100% {
    -webkit-transform: translate(-900%, 0);
    transform: translate(-900%, 0);
  }
}

@keyframes cloudMiddle {
  0% {
    -webkit-transform: translate(230%, 0);
    transform: translate(230%, 0);
  }
  100% {
    -webkit-transform: translate(-900%, 0);
    transform: translate(-900%, 0);
  }
}

@-webkit-keyframes cloudBack {
  0% {
    -webkit-transform: translate(910%, 0);
    transform: translate(910%, 0);
  }
  100% {
    -webkit-transform: translate(-1000%, 0);
    transform: translate(-1000%, 0);
  }
}

@keyframes cloudBack {
  0% {
    -webkit-transform: translate(910%, 0);
    transform: translate(910%, 0);
  }
  100% {
    -webkit-transform: translate(-1000%, 0);
    transform: translate(-1000%, 0);
  }
}


/*=====================
26.Tap to top CSS
==========================*/

.tap-top {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  position: fixed;
  bottom: 70px;
  right: -60px;
  z-index: 8;
  color: white;
  text-align: center;
  background: var(--main-color);
  border: none;
  font-size: 22px;
  padding: 6px 5px 5px 5px;
  cursor: pointer;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.tap-top:after {
  position: absolute;
  content: "";
  bottom: -12px;
  background-color: var(--main-color);
  width: 100%;
  height: 11px;
  left: 0;
  -webkit-transform: rotate(13deg);
  transform: rotate(13deg);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
}

.tap-top>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tap-top.top {
  display: block;
  right: 30px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*=====================
27. Animation & effect css
==========================*/

.circle {
  border-radius: 50%;
  background-color: white;
  position: absolute;
  height: 150px;
  width: 150px;
  top: 50%;
  left: 92px;
  -webkit-transition: height 5s ease, width 5s ease;
  transition: height 5s ease, width 5s ease;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.5;
}

.circle:before,
.circle:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid white;
}

.circle:before {
  -webkit-animation: ripple 2s linear infinite;
  animation: ripple 2s linear infinite;
}

.circle:after {
  -webkit-animation: ripple 2s linear 1s infinite;
  animation: ripple 2s linear 1s infinite;
}

.circle.b-round {
  height: 230px;
  width: 230px;
  left: 50%;
}

.animation-circle-inverse i {
  background: rgba(233, 179, 14, 0.15);
  right: 0;
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.11);
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 100%;
  opacity: 0.3;
  top: 0;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-animation: ripple1 3s linear infinite;
  animation: ripple1 3s linear infinite;
}

.animation-circle-inverse i:nth-child(2) {
  -webkit-animation: ripple2 3s linear infinite;
  animation: ripple2 3s linear infinite;
}

.animation-circle-inverse i:nth-child(3) {
  -webkit-animation: ripple3 3s linear infinite;
  animation: ripple3 3s linear infinite;
}

.animated-section {
  overflow: hidden;
  position: relative;
}

.animated-section .animation-section {
  opacity: 0.3;
}

.animated-section .animation-section .round {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid var(--main-color);
  border-radius: 100%;
  position: absolute;
  -webkit-animation: myOrbit 9s linear infinite;
  animation: myOrbit 9s linear infinite;
}

.animated-section .animation-section .round.r-2 {
  width: 15px;
  height: 15px;
}

.animated-section .animation-section .round.r-y {
  border-color: #e8b10b;
}

.animated-section .animation-section .square {
  width: 12px;
  height: 12px;
  background-color: transparent;
  position: absolute;
  border: 2px solid var(--main-color);
  -webkit-animation: animationFramesTwo 50s infinite linear;
  animation: animationFramesTwo 50s infinite linear;
}

.animated-section .animation-section .square.s-2 {
  width: 15px;
  height: 15px;
}

.animated-section .animation-section .cross {
  height: 12px;
  width: 12px;
  position: absolute;
  -webkit-animation: animationFramesTwo 50s infinite linear;
  animation: animationFramesTwo 50s infinite linear;
}

.animated-section .animation-section .cross:after,
.animated-section .animation-section .cross:before {
  position: absolute;
  content: " ";
  height: 12px;
  width: 2px;
  background-color: var(--main-color);
}

.animated-section .animation-section .cross:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.animated-section .animation-section .cross:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.animated-section .animation-section .po-1 {
  top: 50%;
  left: 5%;
}

.animated-section .animation-section .po-2 {
  right: 5%;
  bottom: 7%;
}

.animated-section .animation-section .po-3 {
  top: 20%;
  right: 8%;
}

.animated-section .animation-section .po-4 {
  bottom: 5%;
  left: 30%;
}

.animated-section .animation-section .po-5 {
  right: 20%;
  top: 10%;
}

.animated-section .animation-section .po-6 {
  top: 2%;
  left: 47%;
}

.animated-section .animation-section .po-7 {
  right: 1%;
  top: 53%;
}

.animated-section .animation-section .po-8 {
  bottom: 1%;
  right: 27%;
}

.animated-section .animation-section .po-9 {
  top: 24%;
  right: 30%;
}

.animated-section .animation-section .po-10 {
  top: 5%;
  left: 15%;
}

.animated-section .animation-section .po-11 {
  bottom: 32%;
  left: 36%;
}

.animated-section .animation-section .po-12 {
  left: 2%;
  bottom: 10%;
}

.zig-zag-effect {
  position: relative;
}

.zig-zag-effect:after {
  position: absolute;
  content: "";
  background: url("../images/zig-zag-1.png");
  bottom: 0;
  width: 100%;
  height: 5px;
}

.zig-zag-effect:before {
  position: absolute;
  content: "";
  background: url(../images/zig-zag-1.png);
  top: 0;
  width: 100%;
  height: 5px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.zig-zag-effect.detail-section .detail-box .upper-part {
  margin-bottom: 20px;
  min-height: unset;
}

.zig-zag-effect.detail-section .detail-box .upper-part h2 {
  padding-bottom: 15px;
  margin-bottom: 0px;
}

.zig-zag-effect.detail-section .detail-box .upper-part h2:after {
  display: none;
}

.zig-zag-effect.detail-section .detail-box .upper-part h6 {
  margin-bottom: 0;
}

.parallax-effect .food-img {
  position: absolute;
  z-index: -1;
}

.parallax-effect .food-img.food1 {
  left: 19%;
}

.parallax-effect .food-img.food2 {
  left: 9%;
}

.parallax-effect .food-img.food2 img {
  width: 90px;
}

.parallax-effect .food-img.food3 img {
  width: 100px;
}

.parallax-effect .food-img.food4 {
  left: 7%;
}

.parallax-effect .food-img.food4 img {
  width: 80px;
}

.parallax-effect img {
  width: 100px;
}

.animation-bg {
  position: relative;
  z-index: 1;
}

.animation-bg:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  -webkit-animation: gradient 15s ease infinite;
  animation: gradient 15s ease infinite;
  opacity: 0.6;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@-webkit-keyframes ani {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    text-shadow: 0em 0em 0 var(--main-color);
    color: white;
  }
  30% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    text-shadow: 0em 0em 0 var(--main-color);
    color: white;
  }
  70% {
    -webkit-transform: translate3d(0.08em, -0.08em, 0);
    transform: translate3d(0.08em, -0.08em, 0);
    text-shadow: -0.08em 0.08em var(--main-color);
    color: white;
  }
  100% {
    -webkit-transform: translate3d(0.08em, -0.08em, 0);
    transform: translate3d(0.08em, -0.08em, 0);
    text-shadow: -0.08em 0.08em var(--main-color);
    color: white;
  }
}

@keyframes ani {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    text-shadow: 0em 0em 0 var(--main-color);
    color: white;
  }
  30% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    text-shadow: 0em 0em 0 var(--main-color);
    color: white;
  }
  70% {
    -webkit-transform: translate3d(0.08em, -0.08em, 0);
    transform: translate3d(0.08em, -0.08em, 0);
    text-shadow: -0.08em 0.08em var(--main-color);
    color: white;
  }
  100% {
    -webkit-transform: translate3d(0.08em, -0.08em, 0);
    transform: translate3d(0.08em, -0.08em, 0);
    text-shadow: -0.08em 0.08em var(--main-color);
    color: white;
  }
}

@-webkit-keyframes ripple2 {
  0% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }
}

@keyframes ripple2 {
  0% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }
}

@-webkit-keyframes ripple3 {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
}

@keyframes ripple3 {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes effect {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes effect {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}

@-webkit-keyframes slide {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1000px 0;
  }
}

@keyframes slide {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1000px 0;
  }
}

@-webkit-keyframes myOrbit {
  from {
    -webkit-transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(10px) rotate(-360deg);
  }
}

@-webkit-keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
    transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
    transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
    transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
    transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}

@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
    transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
    transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
    transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
    transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}

@-webkit-keyframes mover {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@keyframes mover {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@-webkit-keyframes zoom_in {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoom_in {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes smoothScroll {
  0% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes smoothScroll {
  0% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

.bird {
  background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/174479/bird-cells.svg);
  background-size: auto 100%;
  width: 88px;
  height: 125px;
  will-change: background-position;
  -webkit-animation-name: fly-cycle;
  animation-name: fly-cycle;
  -webkit-animation-timing-function: steps(10);
  animation-timing-function: steps(10);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.bird--one {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.bird--two {
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
  -webkit-animation-delay: -0.75s;
  animation-delay: -0.75s;
}

.bird--three {
  -webkit-animation-duration: 1.25s;
  animation-duration: 1.25s;
  -webkit-animation-delay: -0.25s;
  animation-delay: -0.25s;
}

.bird--four {
  -webkit-animation-duration: 1.1s;
  animation-duration: 1.1s;
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.bird-container {
  position: absolute;
  top: 20%;
  left: -10%;
  -webkit-transform: scale(0) translateX(-10vw);
  transform: scale(0) translateX(-10vw);
  will-change: transform;
  -webkit-animation-name: fly-right-one;
  animation-name: fly-right-one;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.bird-container--one {
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.bird-container--two {
  -webkit-animation-duration: 16s;
  animation-duration: 16s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.bird-container--three {
  -webkit-animation-duration: 14.6s;
  animation-duration: 14.6s;
  -webkit-animation-delay: 9.5s;
  animation-delay: 9.5s;
}

.bird-container--four {
  -webkit-animation-duration: 16s;
  animation-duration: 16s;
  -webkit-animation-delay: 10.25s;
  animation-delay: 10.25s;
}

@-webkit-keyframes fly-cycle {
  100% {
    background-position: -900px 0;
  }
}

@keyframes fly-cycle {
  100% {
    background-position: -900px 0;
  }
}

@-webkit-keyframes fly-right-one {
  0% {
    -webkit-transform: scale(0.3) translateX(-10vw);
    transform: scale(0.3) translateX(-10vw);
  }
  10% {
    -webkit-transform: translateY(2vh) translateX(10vw) scale(0.4);
    transform: translateY(2vh) translateX(10vw) scale(0.4);
  }
  20% {
    -webkit-transform: translateY(0vh) translateX(30vw) scale(0.5);
    transform: translateY(0vh) translateX(30vw) scale(0.5);
  }
  30% {
    -webkit-transform: translateY(4vh) translateX(50vw) scale(0.6);
    transform: translateY(4vh) translateX(50vw) scale(0.6);
  }
  40% {
    -webkit-transform: translateY(2vh) translateX(70vw) scale(0.6);
    transform: translateY(2vh) translateX(70vw) scale(0.6);
  }
  50% {
    -webkit-transform: translateY(0vh) translateX(90vw) scale(0.6);
    transform: translateY(0vh) translateX(90vw) scale(0.6);
  }
  60% {
    -webkit-transform: translateY(0vh) translateX(110vw) scale(0.6);
    transform: translateY(0vh) translateX(110vw) scale(0.6);
  }
  100% {
    -webkit-transform: translateY(0vh) translateX(110vw) scale(0.6);
    transform: translateY(0vh) translateX(110vw) scale(0.6);
  }
}

@keyframes fly-right-one {
  0% {
    -webkit-transform: scale(0.3) translateX(-10vw);
    transform: scale(0.3) translateX(-10vw);
  }
  10% {
    -webkit-transform: translateY(2vh) translateX(10vw) scale(0.4);
    transform: translateY(2vh) translateX(10vw) scale(0.4);
  }
  20% {
    -webkit-transform: translateY(0vh) translateX(30vw) scale(0.5);
    transform: translateY(0vh) translateX(30vw) scale(0.5);
  }
  30% {
    -webkit-transform: translateY(4vh) translateX(50vw) scale(0.6);
    transform: translateY(4vh) translateX(50vw) scale(0.6);
  }
  40% {
    -webkit-transform: translateY(2vh) translateX(70vw) scale(0.6);
    transform: translateY(2vh) translateX(70vw) scale(0.6);
  }
  50% {
    -webkit-transform: translateY(0vh) translateX(90vw) scale(0.6);
    transform: translateY(0vh) translateX(90vw) scale(0.6);
  }
  60% {
    -webkit-transform: translateY(0vh) translateX(110vw) scale(0.6);
    transform: translateY(0vh) translateX(110vw) scale(0.6);
  }
  100% {
    -webkit-transform: translateY(0vh) translateX(110vw) scale(0.6);
    transform: translateY(0vh) translateX(110vw) scale(0.6);
  }
}

@-webkit-keyframes fly-right-two {
  0% {
    -webkit-transform: translateY(-2vh) translateX(-10vw) scale(0.5);
    transform: translateY(-2vh) translateX(-10vw) scale(0.5);
  }
  10% {
    -webkit-transform: translateY(0vh) translateX(10vw) scale(0.4);
    transform: translateY(0vh) translateX(10vw) scale(0.4);
  }
  20% {
    -webkit-transform: translateY(-4vh) translateX(30vw) scale(0.6);
    transform: translateY(-4vh) translateX(30vw) scale(0.6);
  }
  30% {
    -webkit-transform: translateY(1vh) translateX(50vw) scale(0.45);
    transform: translateY(1vh) translateX(50vw) scale(0.45);
  }
  40% {
    -webkit-transform: translateY(-2.5vh) translateX(70vw) scale(0.5);
    transform: translateY(-2.5vh) translateX(70vw) scale(0.5);
  }
  50% {
    -webkit-transform: translateY(0vh) translateX(90vw) scale(0.45);
    transform: translateY(0vh) translateX(90vw) scale(0.45);
  }
  51% {
    -webkit-transform: translateY(0vh) translateX(110vw) scale(0.45);
    transform: translateY(0vh) translateX(110vw) scale(0.45);
  }
  100% {
    -webkit-transform: translateY(0vh) translateX(110vw) scale(0.45);
    transform: translateY(0vh) translateX(110vw) scale(0.45);
  }
}

@keyframes fly-right-two {
  0% {
    -webkit-transform: translateY(-2vh) translateX(-10vw) scale(0.5);
    transform: translateY(-2vh) translateX(-10vw) scale(0.5);
  }
  10% {
    -webkit-transform: translateY(0vh) translateX(10vw) scale(0.4);
    transform: translateY(0vh) translateX(10vw) scale(0.4);
  }
  20% {
    -webkit-transform: translateY(-4vh) translateX(30vw) scale(0.6);
    transform: translateY(-4vh) translateX(30vw) scale(0.6);
  }
  30% {
    -webkit-transform: translateY(1vh) translateX(50vw) scale(0.45);
    transform: translateY(1vh) translateX(50vw) scale(0.45);
  }
  40% {
    -webkit-transform: translateY(-2.5vh) translateX(70vw) scale(0.5);
    transform: translateY(-2.5vh) translateX(70vw) scale(0.5);
  }
  50% {
    -webkit-transform: translateY(0vh) translateX(90vw) scale(0.45);
    transform: translateY(0vh) translateX(90vw) scale(0.45);
  }
  51% {
    -webkit-transform: translateY(0vh) translateX(110vw) scale(0.45);
    transform: translateY(0vh) translateX(110vw) scale(0.45);
  }
  100% {
    -webkit-transform: translateY(0vh) translateX(110vw) scale(0.45);
    transform: translateY(0vh) translateX(110vw) scale(0.45);
  }
}

.flight {
  width: calc(140px + (200 - 140) * ((100vw - 320px) / (1920 - 320)));
  height: calc(70px + (100 - 70) * ((100vw - 320px) / (1920 - 320)));
  background: url("../images/flights/airliner.html") center no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: -4px;
  right: 0;
}

.flight.run {
  -webkit-animation: landFlight linear 10s;
  animation: landFlight linear 10s;
}

@-webkit-keyframes landFlight {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-600px, -1px) rotate(0deg);
    transform: translate(-600px, -1px) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(-650px, -2px) rotate(0deg);
    transform: translate(-650px, -2px) rotate(0deg);
  }
  58% {
    -webkit-transform: translate(-700px, -5px) rotate(10deg);
    transform: translate(-700px, -5px) rotate(10deg);
  }
  59% {
    -webkit-transform: translate(-710px, -10px) rotate(15deg);
    transform: translate(-710px, -10px) rotate(15deg);
  }
  60% {
    -webkit-transform: translate(-720px, -12px) rotate(20deg);
    transform: translate(-720px, -12px) rotate(20deg);
  }
  70% {
    -webkit-transform: translate(-800px, -50px) rotate(20deg);
    transform: translate(-800px, -50px) rotate(20deg);
  }
  80% {
    -webkit-transform: translate(-900px, -100px) rotate(20deg);
    transform: translate(-900px, -100px) rotate(20deg);
  }
  100% {
    -webkit-transform: translate(-2200px, -750px) rotate(20deg);
    transform: translate(-2200px, -750px) rotate(20deg);
  }
}

@keyframes landFlight {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-600px, -1px) rotate(0deg);
    transform: translate(-600px, -1px) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(-650px, -2px) rotate(0deg);
    transform: translate(-650px, -2px) rotate(0deg);
  }
  58% {
    -webkit-transform: translate(-700px, -5px) rotate(10deg);
    transform: translate(-700px, -5px) rotate(10deg);
  }
  59% {
    -webkit-transform: translate(-710px, -10px) rotate(15deg);
    transform: translate(-710px, -10px) rotate(15deg);
  }
  60% {
    -webkit-transform: translate(-720px, -12px) rotate(20deg);
    transform: translate(-720px, -12px) rotate(20deg);
  }
  70% {
    -webkit-transform: translate(-800px, -50px) rotate(20deg);
    transform: translate(-800px, -50px) rotate(20deg);
  }
  80% {
    -webkit-transform: translate(-900px, -100px) rotate(20deg);
    transform: translate(-900px, -100px) rotate(20deg);
  }
  100% {
    -webkit-transform: translate(-2200px, -750px) rotate(20deg);
    transform: translate(-2200px, -750px) rotate(20deg);
  }
}

.plane-animation {
  -webkit-animation-name: plane-animation;
  animation-name: plane-animation;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes plane-animation {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
}

@keyframes plane-animation {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
}



@media (max-width: 1600px) {
  .top-category .top_box .right-content {
    padding: 0px 10px;
  }
  .top-category .slick-slide>div {
    margin: 0 20px;
  }
  .top-category .slick-list {
    margin-left: -20px;
    margin-right: -20px;
  }
}

@media (min-width: 1461px) {
  .container {
    max-width: 1350px;
  }
}

@media (max-width: 1460px) {
  .category-wrapper .category-wrap .category-content .bottom {
    display: block;
    margin-left: 0;
  }
  .category-wrapper .category-wrap .category-content .bottom .coupon-code {
    margin-left: 0;
    margin-top: 10px;
  }
  .routes-section .routes-box .routes-content .top-bar {
    display: block;
  }
  h2 {
    line-height: 28px;
  }
  .mix-layout-section .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .app-section .app-box {
    padding: 50px;
  }
  .service-section .service-box {
    padding: 30px 20px;
  }
  .subscribe-footer .service-left .service-box {
    padding: 0 35px;
  }
  .subscribe-footer .service-right .input-group input {
    padding: 10px 18px;
  }
  .subscribe-footer .service-right .btn-subscribe {
    padding: 8px 14px;
  }
  .subscribe_section .subscribe-detail {
    padding-right: 25px;
  }
  .subscribe_section .input-section {
    padding-left: 25px;
  }
  .about-section.three-image .about-text {
    padding-left: 0;
  }
  .about-section.three-image .about-text h5,
  .about-section.three-image .about-text h3,
  .about-section.three-image .about-text p {
    margin-bottom: 15px;
  }
  .about-section.three-image .about-text img {
    width: 50%;
  }
  .about-section.about_page .image-section .img-box .title-box {
    padding: 15px;
    min-width: 142px;
  }
  .about-section.about_page .about-text .buttons-about {
    margin-top: 25px;
  }
  .about-section.about_page .about-text h2 span {
    margin-top: 10px;
  }
  .about-section.about_page .about-text .title-3 {
    margin-bottom: 25px;
  }
  .ticket-section .ticket-box .content {
    padding: 30px 90px 30px 30px;
  }
  .ticket-section .ticket-box .content .barcode-design {
    right: 30px;
  }
  .ticket-section .ticket-box .content .barcode-design img {
    height: 270px;
  }
  .ticket-section .ticket-box .ticket-title {
    right: -13%;
  }
  .ticket-section.white-section .ticket-box .content .detail h4 {
    margin-bottom: 10px;
  }
  .ticket-section.white-section .ticket-box .ticket-title {
    right: -11%;
  }
  .video-icon {
    width: 75px;
    height: 50px;
  }
  .video-icon span {
    border-top: 10px solid transparent;
    border-left: 20px solid white;
    border-bottom: 10px solid transparent;
  }
  .video-section .basic-section h2 {
    margin-bottom: 25px;
  }
  .video-section .basic-section h4 {
    margin-bottom: 35px;
  }
  .gallery-box .gallery-content h5 {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .gallery_box .gallery-content {
    bottom: 15px;
    left: 15px;
  }
  .gallery_box .gallery-content h3 {
    margin-bottom: 5px;
    font-size: 20px;
  }
  .gallery_box .view-cls {
    width: 30px;
    height: 30px;
    right: 15px;
    bottom: 15px;
  }
  .blog-section .blog-box .img-part img {
    min-width: 260px;
  }
  .blog-section .blog-box .img-part .blog-date {
    top: 20px;
    left: 20px;
    padding: 8px 10px;
  }
  .blog-section .blog-box .blog-content {
    padding: 30px;
  }
  .blog-section .blog-box .blog-content p {
    line-height: 1.3;
  }
  .blog_section .slick-slide>div {
    margin: 0 15px;
  }
  .blog_section .slick-list {
    margin-left: -30px;
    margin-right: -30px;
  }
  .blog_section .blog-wrap .blog-details {
    padding: 30px 25px;
  }
  .blog_section .blog-wrap .blog-details h6 {
    margin-bottom: 20px;
  }
  .blog_section .blog-wrap .blog-details h5 {
    margin-bottom: 10px;
  }
  .blog_section .blog-wrap .blog-image .blog-label {
    padding: 10px 12px;
    left: 25px;
    bottom: 25px;
  }
  .blog_section.destination-section .slick-slide>div {
    margin: 0 20px;
  }
  .blog_section.destination-section .slick-list {
    margin-left: -20px;
    margin-right: -20px;
  }
  .blog_section.destination-section .destination-details {
    padding: 30px 20px;
  }
  .special-section .slick-slide>div {
    margin: 0 20px;
  }
  .special-section .slick-list {
    margin-left: -20px;
    margin-right: -20px;
  }
  .special-section .special-box .special-content {
    padding: 30px;
  }
  .special-section.grid-box .special-box .special-content {
    padding: 20px;
  }
  .special-section.grid-box .special-box .special-content h5 {
    display: block;
  }
  .special-section.grid-box .special-box .special-content h5 span {
    display: block;
    margin-left: 0;
  }
  .special-section.grid-box .special-box .special-content .tour-detail .include-sec ul li {
    font-size: 0;
  }
  .special-section.grid-box .special-box .special-content.restaurant-detail h5 span {
    display: inline-block;
  }
  .full-banner .offer-text {
    left: -70%;
  }
  .category-sec .slick-slide>div {
    margin: 0 15px;
  }
  .category-sec .slick-list {
    margin-left: -15px;
    margin-right: -15px;
  }
  .category-wrapper .category-wrap .category-img img {
    width: 180px;
    height: 180px;
    border-radius: 20px;
  }
  .category-wrapper .category-wrap .category-img .side-effect:after {
    left: 12px;
  }
  .category-wrapper .category-wrap .category-img .side-effect:before {
    left: 6px;
  }
  .category-wrapper .category-wrap .category-content {
    padding: 45px 30px 45px 156px;
  }
  .category-wrapper .category-wrap .category-content p {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .category-wrapper .slick-slide>div {
    margin: 0 15px;
  }
  .top-category {
    padding: 0 35px;
  }
  .top-category .top_box .right-content {
    padding: 0px 20px;
  }
  .detail-section .detail-box {
    padding: 0 30px;
  }
  .routes-section .routes-box .routes-content {
    padding: 40px 20px 20px 20px;
  }
  .routes-section .routes-box .routes-img .price-round {
    width: 90px;
    height: 90px;
  }
  .routes-section .routes-box .routes-img .discount {
    top: 20px;
    left: 20px;
  }
  .flight-detail .flight-box .middle-section {
    width: 69%;
  }
  .filter-section .content {
    margin-left: -20px;
    margin-right: -20px;
  }
  .filter-section .content .grid-item {
    padding: 0 20px;
  }
  .menu-section .menu-box .bottom-bar {
    padding: 25px;
  }
  .menu-section .menu-box .bottom-bar .menu-bar img {
    margin-right: 15px;
    width: 50px;
  }
  .book-table .table-form {
    padding: 30px;
  }
  .process-steps .step-bg .step-box {
    padding: 35px 25px;
  }
  .cab-full .cab-search-section .cab-search-box .btn-solid {
    padding: 2px 5px;
  }
  .cab-full .left-bar.fixed-cls {
    width: 320px;
  }
  .scroll-body {
    padding-left: 320px;
  }
  .deals .deals-box .left-portion {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .search-section .search-box .left-part .search-body .quantity-right-plus,
  .search-section .search-box .left-part .search-body .quantity-left-minus {
    right: 10%;
  }
  .video-slider {
    height: 180px;
  }
  footer .footer .footer-content .footer-map iframe {
    width: 100%;
    height: 190px;
  }
  footer .footer .footer-content .contact-detail p {
    margin-bottom: 20px;
    -webkit-line-clamp: 2;
  }
  footer .footer .footer-content .contact-detail .contact-list li {
    font-size: 14px;
  }
  footer .footer .footer-space {
    padding-left: 25px;
  }
  .filter-panel {
    padding: 20px 25px;
  }
  .left-sidebar .search-bar {
    padding: 25px;
  }
  .left-sidebar .search-bar input {
    padding: 10px 10px 10px 60px;
  }
  .left-sidebar .middle-part {
    padding: 25px 25px;
  }
  .left-sidebar .bottom-info {
    padding: 0 25px 25px;
  }
  .list-view .list-box .list-content h6 {
    max-width: 300px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .top-filter-section ul .onclick-title {
    min-width: 130px;
  }
  .blog-inner.blog_section .blog-list .blog-wrap .blog-image {
    width: 30%;
  }
  .blog-inner.blog_section .blog-list .blog-wrap .blog-details {
    width: 70%;
  }
  .dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card {
    padding: 20px 10px;
    min-height: auto;
  }
  .dashboard-section .dashboard-sidebar .profile-top .profile-image .profile-edit {
    right: 22%;
  }
}

@media (max-width: 1460px) and (min-width: 991px) {
  .special-section.grid-box .special-box .special-content .bottom-section .price {
    display: block;
  }
  .special-section.grid-box .special-box .special-content .bottom-section .price .facility-detail {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media (max-width: 1460px) and (min-width: 1199px) {
  .category-section .category-box .top-bar {
    left: 10px;
    top: 15px;
  }
  .category-section .category-box .like-cls {
    right: 10px;
    top: 15px;
  }
  .category-section .category-box .bottom-bar {
    left: 10px;
    bottom: 15px;
  }
  .category-section .category-box .bottom-bar .top h5 {
    font-size: 16px;
    margin-right: 8px;
    max-width: 115px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .category-section .category-box .bottom-bar .top h6 {
    margin-left: 10px;
  }
  .category-section .category-box:hover .bottom-bar {
    bottom: 25px;
  }
}

@media (max-width: 1367px) {
  .highlight-section .highlight-box {
    padding: 8px 0px;
  }
  .highlight-section .highlight-box .content-sec p {
    width: 90%;
  }
  .title-3 h2 {
    margin-bottom: 50px;
  }
  .menu-section .menu-box .bottom-bar .menu-bar {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .app-section .app-content {
    text-align: center;
  }
  section,
  .section-t-space {
    padding-top: 35px;
  }
  .section-b-space {
    padding-bottom: 35px;
  }
  .arrow-classic .slick-prev {
    left: -12px;
  }
  .arrow-classic .slick-next {
    right: 0;
  }
  .medium-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .small-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .service_section>div:nth-last-child(-n+3) {
    margin-top: 50px;
  }
  .service-part .service-wrapper {
    padding: 30px;
  }
  .service-part .service-wrapper h3 {
    margin-bottom: 8px;
  }
  .service-part .service-wrapper h6 {
    margin-bottom: 15px;
  }
  .service-part .service-wrapper p {
    margin-bottom: 24px;
  }
  .subscribe-section .input-group .btn {
    padding: 14px;
  }
  .about-section .about-text {
    padding-left: 20px;
  }
  .about-section .about-text h3,
  .about-section .about-text h2 {
    margin-bottom: 25px;
  }
  .about-section .about-text h5 {
    margin-bottom: 5px;
  }
  .about-section .about-text p {
    line-height: 1.4;
    margin-bottom: 15px;
  }
  .blog_section.section-b-space,
  .special-section.section-b-space {
    padding-bottom: 60px;
  }
  .category-sec.section-b-space {
    padding-bottom: 50px;
  }
  .category-wrapper.section-b-space {
    padding-bottom: 60px;
  }
  .category-bg.section-b-space {
    padding-bottom: 80px;
  }
  .cab-full .location-option {
    display: block !important;
  }
  .cab-full .location-option [type="radio"]:checked+label:before,
  .cab-full .location-option [type="radio"]:not(:checked)+label:before {
    top: 0;
  }
  .cab-full .location-option .form-check+.form-check {
    margin-top: 5px;
    margin-top: 0;
  }
  .cab-full .cab-search-section .cab-search-box .btn-solid {
    margin-left: -15px;
  }
  .deals .deals-box .left-portion {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37%;
    flex: 0 0 37%;
    max-width: 37%;
  }
  .portfolio-creative .content-sec p {
    max-width: 90%;
  }
}

@media (max-width: 1199px) {
  section,
  .section-t-space {
    padding-top: 80px;
  }
  .footer {
    padding-top: 100px;
  }
  .section-b-space {
    padding-bottom: 80px;
  }
  .medium-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .small-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .title-1 h2 {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .title-1.title-5 h2 {
    padding-top: 18px;
    padding-bottom: 10px;
  }
  .title-1.title-5 p {
    margin-bottom: 50px;
  }
  .title-1.detail-title p {
    max-width: 90%;
  }
  .title-2 h2 {
    margin-bottom: 18px;
  }
  .title-2 p {
    margin-bottom: 50px;
  }
  .title-3 h2 {
    margin-bottom: 70px;
  }
  .title-3.detail-title p {
    max-width: 90%;
  }
  header.light_header .main-navbar .nav-menu>li {
    padding-top: 10px;
    padding-bottom: 0;
  }
  header.fixed-header {
    position: relative;
  }
  .search-section {
    margin-top: -45px;
  }
  .menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.52);
    z-index: 2;
    display: none;
  }
  .menu-overlay.show {
    display: block;
  }
  .toggle-nav {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .breadcrumb-section {
    height: 430px;
  }
  .breadcrumb-section .breadcrumb-content {
    height: 430px;
    padding-top: 104px;
  }
  .breadcrumb-section .title-breadcrumb {
    font-size: 440px;
  }
  .breadcrumb-section.breadcrumb-cum-header {
    height: 630px;
  }
  .breadcrumb-section.breadcrumb-cum-header .breadcrumb-content {
    height: 630px;
  }
  .breadcrumb-section.breadcrumb-cum-header .breadcrumb-content p {
    max-width: 68%;
  }
  .app-section .app-content .title {
    line-height: 1;
  }
  .app-section .app-content h3 {
    margin-bottom: 22px;
  }
  .app-section .app-content p {
    line-height: 1.5;
    margin-bottom: 25px;
  }
  .app-section .app-box {
    padding: 40px;
  }
  .app-section .app-box h5,
  .app-section .app-box h2 {
    margin-bottom: 20px;
  }
  .app-section .app-box p {
    margin-bottom: 22px;
  }
  .app-section .app-box .app-buttons .app-btn {
    margin-left: 7px;
  }
  .app-section.app-right-sec .app-content {
    padding: 40px;
  }
  .service-section {
    margin-left: -15px;
    margin-right: -15px;
  }
  .service-section>div {
    padding-left: 15px;
    padding-right: 15px;
  }
  .service-section .service-box .service-icon {
    margin-bottom: 20px;
  }
  .service-section .service-box h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .service-section .service-box .btn {
    margin-top: 25px;
  }
  .service_section>div:nth-last-child(-n+3) {
    margin-top: 30px;
  }
  .service_section .service-wrap .service-icon img {
    margin-bottom: 20px;
    height: 70px;
  }
  .service_section .service-wrap h5 {
    margin-bottom: 8px;
  }
  .service_section .service-wrap p {
    margin-bottom: -4px;
    line-height: 1.5;
  }
  .service-part .service-wrapper h3 {
    font-size: 20px;
  }
  .service-part .service-wrapper h3 i {
    font-size: 12px;
  }
  .service-part .service-wrapper .service-btn .btn {
    padding: 6px 12px;
  }
  .subscribe-footer .service-left .service-box {
    padding: 0 15px;
  }
  .subscribe-footer .service-left .service-box .icon svg {
    width: 30px;
    height: 30px;
  }
  .subscribe-footer .service-right .input-group input {
    padding: 7px 12px;
  }
  .subscribe_section .subscribe-detail span {
    display: none;
  }
  .subscribe_section .input-section input {
    padding: 35px 160px 35px 35px;
  }
  .subscribe_section .input-section .btn {
    right: 35px;
  }
  .about-section .about-text h3,
  .about-section .about-text h2 {
    margin-bottom: 15px;
  }
  .about-section .about-text p {
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .about-section .image-section .img-box+.img-box {
    margin-left: 40px;
  }
  .about-section.three-image .about-text {
    margin-top: 30px;
  }
  .about-section.three-image .about-text img {
    width: 200px;
  }
  .about-section.three-image .about-text h2 {
    margin-bottom: 15px;
  }
  .about-section.three-image .about-text h2 span {
    display: unset;
    font-size: unset;
    text-transform: unset;
  }
    /*  .about-section.about_page .image-section .img-box {
    width: 33.33%; }*/
    .about-section.about_page .image-section .img-box .title-box {
      padding: 10px;
      min-width: 130px;
    }
    .about-section.about_page .image-section .img-box .title-box h3 {
      margin-bottom: 4px;
    }
    .about-section.about_page .image-section .img-box:nth-child(odd) {
      margin-bottom: 30px;
    }
    .about-section.about_page .image-section .img-box:nth-child(odd) .title-box {
      bottom: -30px;
    }
    .about-section.about_page .image-section .img-box:nth-child(even) {
      margin-top: 30px;
    }
    .about-section.about_page .image-section .img-box:nth-child(even) .title-box {
      top: -30px;
    }
    .ticket-section .ticket-box .content {
      padding: 25px 80px 25px 25px;
    }
    .ticket-section .ticket-box .content .detail {
      max-width: 295px;
    }
    .ticket-section .ticket-box .content .detail h3,
    .ticket-section .ticket-box .content .detail h4 {
      margin-bottom: 10px;
    }
    .ticket-section .ticket-box .content .detail p {
      margin-bottom: 15px;
    }
    .ticket-section .ticket-box .content .barcode-design {
      right: 25px;
    }
    .ticket-section .ticket-box .content .barcode-design img {
      height: 250px;
    }
    .ticket-section .ticket-box .ticket-title {
      right: -15%;
    }
    .ticket-section .slick-prev,
    .ticket-section .slick-next {
      right: 30px;
    }
    .ticket-section .slick-prev:before,
    .ticket-section .slick-next:before {
      padding: 6px;
    }
    .ticket-section .slick-next {
      top: calc(50% - 20px);
    }
    .ticket-section .slick-prev {
      top: calc(50% + 20px);
    }
    .ticket-section.white-section .ticket-box .ticket-title {
      right: -13%;
    }
    .video-section {
      padding: 90px;
    }
    .video-section .basic-section h4 {
      margin-bottom: 25px;
    }
    .video_section {
      padding: 90px 0;
    }
    .video_section .video-content h5 {
      margin-bottom: 20px;
    }
    .video_section .video-content h2 {
      margin-bottom: 15px;
    }
    .video_section .video-content p {
      margin-bottom: 18px;
    }
    .video_section .video-content .bottom-section {
      margin-top: 25px;
    }
    .video_section .video-content .bottom-section .info-btn {
      margin-left: 18px;
    }
    .video_section .offer-text {
      display: none;
    }
    .timer li {
      padding: 5px 15px;
      margin-right: 15px;
    }
    .gallery-box .gallery-content .btn {
      padding: 6px 12px;
    }
    .gallery_box .gallery-content h3 {
      font-size: 18px;
    }
    .blog-section .blog-box .img-part img {
      min-width: 200px;
    }
    .blog-section .blog-box .img-part .blog-date {
      padding: 6px 8px;
    }
    .blog-section .blog-box .blog-content {
      padding: 15px;
    }
    .blog-section .blog-box .blog-content h5 {
      margin-bottom: 8px;
    }
    .blog-section .blog-box .blog-content p {
      line-height: 1.1;
      margin-bottom: 10px;
    }
    .blog-section .blog-box .blog-content h6 {
      margin-bottom: 10px;
    }
    .blog-section .blog-box .blog-content .btn {
      padding: 6px 10px;
    }
    .blog_section.section-b-space {
      padding-bottom: 50px;
    }
    .blog_section.destination-section .destination-details h5 {
      margin-bottom: 12px;
    }
    .blog_section.destination-section .destination-details h2 {
      margin-bottom: 12px;
    }
    .blog_section.destination-section .destination-details h6 {
      margin-bottom: 20px;
    }
    .subscribe-footer .service-left {
      float: unset;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin-bottom: 25px;
    }
    .subscribe-footer .service-left .service-box {
      padding: 0 25px;
    }
    .subscribe-footer .service-right {
      float: unset;
      width: 60%;
      margin: 0 auto;
    }
    .special-section.section-b-space {
      padding-bottom: 50px;
    }
    .special-section.grid-box .special-box .special-content .tour-detail h6 {
      max-width: 410px;
    }
    .full-banner {
      padding: 100px 0;
    }
    .full-banner .offer-text {
      left: 0;
      top: 0;
      position: relative;
      display: inline-block;
      margin-bottom: 16px;
    }
    .full-banner .offer-text h6 {
      margin-top: 16px;
      margin-bottom: 0;
    }
    .full-banner .banner-content h5 {
      margin-bottom: 20px;
    }
    .full-banner .banner-content h2 {
      margin-bottom: 20px;
    }
    .full-banner .banner-content p {
      line-height: 1.4;
    }
    .full-banner .banner-content .bottom-section {
      margin-top: 0;
    }
    .full-banner .banner-content .bottom-section .info-btn {
      margin-left: 15px;
    }
    .category-sec.section-b-space {
      padding-bottom: 40px;
    }
    .category-wrapper .title-1.title-5 p {
      margin-bottom: 20px;
    }
    .category-wrapper.section-b-space {
      padding-bottom: 50px;
    }
    .category-bg .category-block {
      padding: 80px 30px 40px;
    }
    .category-bg .category-block .rating {
      margin-bottom: 15px;
    }
    .category-bg .category-block h6 {
      margin-bottom: 12px;
    }
    .category-bg .category-block h5 {
      margin-bottom: 16px;
    }
    .category-bg.section-b-space {
      padding-bottom: 70px;
    }
    .detail-section .detail-box {
      padding: 0 10px;
    }
    .detail-section .detail-box .upper-part {
      margin-bottom: 30px;
    }
    .detail-section .detail-box .upper-part h2 {
      padding-bottom: 20px;
      margin-bottom: 20px;
    }
    .routes-section .routes-box .routes-img .price-round {
      width: 80px;
      height: 80px;
    }
    .flight-detail .row>div .flight-box+.flight-box {
      margin-top: 40px;
    }
    .about_section .about_content {
      margin-left: 45px;
    }
    .about_section .about_content h5 {
      margin-bottom: 20px;
    }
    .about_section .about_content h2 {
      margin-bottom: 20px;
    }
    .about_section .about_content p {
      margin-bottom: 25px;
    }
    .food-banner {
      padding: 140px 0;
      background-position: center;
    }
    .discount-banner {
      padding: 125px 0;
    }
    .discount-banner .banner-content h4 {
      margin-bottom: 24px;
    }
    .discount-banner .banner-content h2 {
      margin-bottom: 24px;
    }
    .discount-banner .banner-content .coupon {
      margin-bottom: 28px;
    }
    .book-table .table-form {
      margin-bottom: 30px;
      border-radius: 15px;
    }
    .book-table .table-form form .form-group {
      margin-right: 20px;
    }
    .book-table .table-form form .gj-datepicker {
      margin-right: 20px;
    }
    .book-table.single-table .table-form {
      margin-top: -60px;
    }
    .process-steps .step-bg .row {
      margin-left: -30px;
      margin-right: -30px;
    }
    .process-steps .step-bg .row>div {
      padding-left: 30px;
      padding-right: 30px;
    }
    .process-steps .step-bg .row.popular-section>div {
      padding-left: 15px;
      padding-right: 15px;
    }
    .car-type-section .type-box {
      padding: 15px;
    }
    .home-section .flight-left {
      padding-top: 74px;
    }
    .deals .deals-box .left-portion {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 28%;
      flex: 0 0 28%;
      max-width: 28%;
    }
    .cab-full .left-bar.fixed-cls {
      position: relative;
      height: auto;
      -webkit-box-shadow: none;
      box-shadow: none;
      width: 100%;
    }
    .cab-full .left-bar.fixed-cls .flight-search .flight-search-detail {
      padding: 30px 15px 0;
    }
    .cab-full .left-bar.fixed-cls .flight-search .flight-search-detail form>div:first-child {
      margin-top: 20px;
    }
    .cab-full .left-bar.fixed-cls .flight-search .flight-search-detail .location-option {
      margin-bottom: 0;
    }
    .pt-xl-cls {
      padding-top: 0;
    }
    .scroll-body {
      padding-left: 0;
    }
    .video-slider {
      height: 148px;
    }
    footer .footer .footer-content .contact-detail .footer-logo {
      margin-bottom: 25px;
    }
    footer .footer .footer-content .contact-detail p {
      -webkit-line-clamp: 3;
    }
    footer .footer .footer-title h5 {
      margin-bottom: 30px;
    }
    footer .footer .footer-space {
      padding-left: 0;
    }
    footer .footer .order-cls {
      -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
      order: -1;
    }
    footer .footer .order-row>div:last-child {
      margin-top: 30px;
    }
    footer .footer .order-row>div:nth-child(3) {
      margin-top: 30px;
    }
    .team-section .team-box .team-content {
      min-width: 200px;
    }
    .team-section .slick-dots {
      padding-top: 25px;
    }
    .filter-panel .collection-grid-view {
      display: none;
    }
    .search-panel .search-section .search-box .left-part .search-body {
      padding: 20px 10px;
    }
    .search-panel .search-section .search-box .left-part .search-body h6 {
      margin-bottom: 3px;
    }
    .search-panel .search-section .search-box .right-part {
      margin: 0 20px;
    }
    .search-panel .search-section .search-box .right-part .btn {
      padding: 4px 12px;
    }
    .search-panel.sticky .search-section .search-box .left-part .search-body {
      padding: 20px 10px;
    }
    .single-section .description-section .description-details .menu-part .rooms-box .room-detail {
      padding: 10px 10px;
    }
    .single-section .description-section .description-details .menu-part .rooms-box .room-detail .facility-detail li i {
      margin-right: 2px;
    }
    .single-section .description-section .description-details .menu-part .rooms-box .price-details .btn {
      padding: 3px 9px;
    }
    .single-section .description-section .description-details .menu-part.facility .row>div:nth-child(-n+2) {
      margin-bottom: 20px;
    }
    .single-section .description-section .menu-top li a {
      padding: 11px;
      text-transform: capitalize;
    }
    .summery-box .summery-section .box .left {
      width: 49%;
    }
    .list-view .list-box .list-content h6 {
      max-width: 220px;
    }
    .list-view .list-box .list-content .book-now {
      padding: 3px 7px;
      text-transform: capitalize;
    }
    .detail-menu .nav-tabs .nav-item {
      margin-right: 20px;
    }
    .order-menu-section .order-section .order-items .items p {
      max-width: 64%;
    }
    .view-map .arrow {
      left: 50px;
    }
    .flight-detail-sec .detail-bar .detail-wrap .airport-part .airport-progress:after {
      width: 40%;
    }
    .flight-detail-sec.full_width-detail .detail-bar .detail-wrap {
      padding: 15px 0;
    }
    .flight-detail-sec.full_width-detail .detail-bar .detail-wrap .logo-sec {
      display: block;
    }
    .flight-detail-sec.full_width-detail .detail-bar .detail-wrap .logo-sec img {
      margin-bottom: 10px;
      width: 50px;
      margin-right: 0;
    }
    .flight-detail-sec.book_panel .detail-bar .detail-wrap .airport-part .airport-progress {
      display: none;
    }
    .flight-detail-sec.book_panel .grand-total .btn {
      padding: 6px 6px;
      text-transform: capitalize;
    }
    .flight-detail-sec.cab-detail-sec .detail-bar .detail-wrap .logo-sec img {
      width: 120px;
      margin-bottom: 5px;
    }
    .flight-detail-sec.cab-detail-sec .detail-bar .detail-wrap .car-details ul+ul {
      margin-left: 20px;
    }
    .top-bar-flight .date-fare-slider {
      width: 85%;
    }
    .top-bar-flight .fare-calender {
      width: 15%;
    }
    .top-filter-section ul .onclick-title {
      min-width: 110px;
    }
    .review-section .review_box .flight_detail .logo-sec {
      text-align: center;
    }
    .review-section .review_box .flight_detail .logo-sec img {
      display: block;
      margin: 0 auto;
    }
    .review-section .review_box .flight_detail .airport-part .airport-progress {
      display: none;
    }
    .blog-inner.blog_section .blog-list .blog-wrap .blog-details p {
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .blog-inner.blog_section .blog-list .blog-wrap .blog-image {
      width: 80%;
    }
    .dashboard-section .dashboard-main .dashboard-intro .complete-profile .row>div {
      margin-top: 10px;
    }
    .dashboard-section .dashboard-main .dashboard-intro .complete-profile .row>div:first-child {
      margin-top: 0;
    }
    .dashboard-section .dashboard-main .counter-section .row>div:nth-child(-n+2) {
      margin-bottom: 20px;
    }
    .dashboard-section .dashboard-box .dashboard-detail .booking-box .date-box {
      width: 80px;
    }
    .dashboard-section .dashboard-box .dashboard-detail .booking-box .detail-middle {
      width: 65%;
    }
    .dashboard-section .dashboard-box .dashboard-detail .booking-box .detail-middle .media .media-body {
      margin-left: 15px;
    }
    .dashboard-section .dashboard-box .dashboard-detail .card-payment>div:nth-child(3) {
      margin-top: 30px;
    }
    .dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card.add-card .card-details {
      min-height: 152px;
      height: auto;
    }
    .guest-detail form .submit-btn .btn {
      width: auto;
    }
  }

  @media (max-width: 1199px) and (min-width: 767px) {
    .list-view .list-box .list-content .hotel-info {
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
    }
  }

  @media (max-width: 1199px) and (min-width: 991px) {
    .category-wrapper .category-wrap .category-content {
      padding: 35px 30px 35px 154px;
    }
    .category-wrapper .category-wrap .category-content .top {
      display: block;
      margin-bottom: 5px;
    }
    .category-wrapper .category-wrap .category-content .top h3 {
      margin-bottom: 5px;
    }
    .category-wrapper .category-wrap .category-content .top h6 {
      margin-left: 0;
    }
    .category-wrapper .category-wrap .category-content .rating {
      margin-bottom: 8px;
    }
    .category-wrapper .category-wrap .category-content .bottom {
      display: block;
    }
    .category-wrapper .category-wrap .category-content .bottom h3 {
      margin-bottom: 5px;
    }
    .category-wrapper .category-wrap .category-content .bottom .coupon-code {
      margin-left: 0;
    }
    .category-wrapper .category-wrap .category-content p {
      margin-bottom: 10px;
    }
    .flight-search .flight-search-detail .form-group img {
      display: none;
    }
    .flight-search .flight-search-detail .form-group .form-control {
      font-size: 14px;
    }
    .flight-search .flight-search-detail .form-group .gj-datepicker .input-group-append {
      display: none;
    }
  }

  @media (max-width: 1024px) {
    .coming-soon.travel .coming-soon-detail {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding-bottom: 0;
      background-color: rgba(255, 255, 255, 0.6);
    }
    .coming-soon.travel svg {
      width: 100%;
      height: 100%;
    }
  }

  @media (max-width: 991px) and (min-width: 767px) {
    .category-section .category-box .top-bar {
      left: 10px;
      top: 15px;
    }
    .category-section .category-box .like-cls {
      right: 10px;
      top: 15px;
    }
    .category-section .category-box .bottom-bar {
      left: 10px;
      bottom: 15px;
    }
    .category-section .category-box .bottom-bar .top h5 {
      font-size: 14px;
      margin-right: 8px;
      max-width: 105px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }
    .category-section .category-box .bottom-bar .top h6 {
      margin-left: 10px;
    }
    .category-section .category-box:hover .bottom-bar {
      bottom: 25px;
    }
  }

  @media (max-width: 991px) {
    .book-table.single-table .table-form.classic-form form .form-group input {
      padding: 8px 15px 8px 25px;
    }
    .book-table.single-table .table-form.classic-form form .form-group i {
      top: 0;
      font-size: 16px;
    }
    .book-table.single-table .table-form.classic-form form .form-group img {
      height: 13px;
    }
    section,
    .section-t-space {
      padding-top: 60px;
    }
    .section-b-space {
      padding-bottom: 60px;
    }
    .medium-section {
      padding-top: 50px;
      padding-bottom: 50px;
    }
    .small-section {
      padding-top: 40px;
      padding-bottom: 40px;
    }
    .breadcrumb-section.breadcrumb-cum-header {
      height: 530px;
    }
    .breadcrumb-section.breadcrumb-cum-header .breadcrumb-content {
      height: 530px;
    }
    .breadcrumb-section.breadcrumb-cum-header .breadcrumb-content p {
      max-width: 88%;
    }
    .breadcrumb-section .breadcrumb-content.restaurant-name h3 {
      margin-bottom: 4px;
    }
    .breadcrumb-section .breadcrumb-content.restaurant-name h6 {
      margin-bottom: 8px;
    }
    .position-cls.b-top {
      background-position: right !important;
    }
    .font-xs-white {
      color: white;
    }
    h2 {
      line-height: 26px;
    }
    .title-1 h2 {
      padding-top: 10px;
      padding-bottom: 30px;
    }
    .title-1.title-5 h2 {
      padding-top: 10px;
      padding-bottom: 5px;
    }
    .title-1.title-5 p {
      margin-bottom: 30px;
    }
    .title-1.detail-title p {
      max-width: 95%;
    }
    .title-2 h2 {
      margin-bottom: 18px;
    }
    .title-2 p {
      margin-bottom: 50px;
    }
    .title-3 h2 {
      margin-top: 15px;
      margin-bottom: 10px;
    }
    .title-3.detail-title p {
      max-width: 95%;
    }
    .form-icon .form-group .form-control {
      padding: 10px 10px 10px 30px !important;
    }
    .form-icon .form-group .icon {
      left: 10px;
      font-size: 14px;
    }
    .tour_layout .flight-search .flight-search-detail .form-group .gj-datepicker button,
    .tour_layout .flight-search .flight-search-detail .form-group .gj-timepicker button {
      width: 46px;
      height: 46px;
    }
    .tour_layout .flight-search .flight-search-detail .form-group .gj-datepicker button i,
    .tour_layout .flight-search .flight-search-detail .form-group .gj-timepicker button i {
      top: 12px;
      left: 12px;
    }
    .tour_layout .flight-search .flight-search-detail .form-group img {
      padding: 12px;
      bottom: 1px;
    }
    .tour_layout .flight-search .flight-search-detail .form-group .form-control {
      border-right: none;
    }
    .a-enter-vr-button {
      min-width: 55px !important;
      min-height: 55px !important;
    }
    .deals .deals-box .left-portion {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .deals .deals-box .left-portion:before,
    .deals .deals-box .left-portion:after {
      display: none;
    }
    .deals .deals-box .left-portion .deals-content .detail {
      position: relative;
      top: 0;
      -webkit-transform: none;
      transform: none;
      left: 0;
      -webkit-writing-mode: unset;
      -ms-writing-mode: unset;
      writing-mode: unset;
      padding: 12px;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .deals .deals-box .left-portion .deals-content img {
      display: none;
    }
    .deals .deals-box .deals-img {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
      -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
      order: -1;
    }
    .arrow-classic .slick-prev,
    .arrow-classic .slick-next {
      display: none !important;
    }
    .arrow-classic .slick-prev:before,
    .arrow-classic .slick-next:before {
      padding: 6px;
      font-size: 14px;
      border-radius: 4px;
    }
    .arrow-classic .slick-prev {
      left: -50px;
    }
    .arrow-classic .slick-next {
      right: -45px;
    }
    .app-section .order-cls>div:first-child {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
      margin-top: 30px;
    }
    .app-section .app-box {
      background-color: rgba(255, 255, 255, 0.05);
    }
    .price-section .container-fluid {
      padding-left: 50px;
      padding-right: 50px;
    }
    .service-section>div {
      margin-bottom: 30px;
    }
    .service-section>div:last-child {
      margin-bottom: 0;
    }
    .service-section .service-box {
      padding: 40px;
    }
    .service_section>div:nth-last-child(-n+4) {
      margin-top: 20px;
    }
    .service-part>div {
      margin-top: 30px;
    }
    .service-part>div:first-child {
      margin-top: 0;
    }
    .service-part .service-wrapper {
      padding: 40px;
    }
    .search-section .search-box .left-part .search-body .form-control {
      margin-bottom: 0;
    }
    .subscribe_section .subscribe-detail {
      text-align: center;
      padding-right: 0;
      padding-bottom: 30px;
    }
    .subscribe_section .subscribe-detail h2 {
      margin-bottom: 5px;
    }
    .subscribe_section .subscribe-detail:after {
      display: none;
    }
    .subscribe_section .input-section {
      padding-left: 0;
    }
    .about-section .about-text {
      padding-left: 0;
      margin-top: 30px;
      height: auto;
    }
    .ticket-section .ticket-box .content {
      position: relative;
      top: 0;
      -webkit-transform: none;
      transform: none;
      left: 0;
      width: 80%;
      margin: -50px auto 0 auto;
    }
    .ticket-section .ticket-box .content .detail {
      max-width: 435px;
    }
    .ticket-section .ticket-box .content .barcode-design img {
      height: 230px;
    }
    .ticket-section .ticket-box .ticket-title {
      top: 33%;
      z-index: 1;
      right: -14%;
    }
    .ticket-section .slick-next,
    .ticket-section .slick-prev {
      right: unset;
      left: 10px;
    }
    .ticket-section .slick-next:before,
    .ticket-section .slick-prev:before {
      padding: 4px;
    }
    .ticket-section .slick-next {
      top: calc(33% - 20px);
    }
    .ticket-section .slick-prev {
      top: calc(33% + 20px);
    }
    .ticket-section.white-section .ticket-box {
      margin-bottom: 45px;
    }
    .ticket-section.white-section.section-b-space {
      padding-bottom: 25px;
    }
    .video-section {
      padding: 80px;
    }
    .video_section {
      padding: 80px 0;
    }
    .video_section .order-cls {
      -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
      order: -1;
      margin-bottom: 40px;
    }
    .video_section .video-image {
      width: 80%;
      margin: 0 auto;
    }
    .video_section .video-content {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      text-align: center;
    }
    .video_section .video-content p {
      padding-right: 0;
    }
    .video_section .video-content .bottom-section {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .video_section .offer-text {
      display: block;
    }
    .gallery-section .zoom-gallery>div:nth-child(1) {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 71.42%;
      flex: 0 0 71.42%;
      max-width: 71.42%;
    }
    .gallery-section .zoom-gallery>div:nth-child(2) {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 28.58%;
      flex: 0 0 28.58%;
      max-width: 28.58%;
    }
    .gallery-section .zoom-gallery>div:nth-child(3) {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
      flex: 0 0 60%;
      max-width: 60%;
    }
    .gallery-section .zoom-gallery>div:nth-child(4) {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
      flex: 0 0 40%;
      max-width: 40%;
    }
    .blog-section .blog-box .img-part img {
      min-width: 230px;
    }
    .blog-section .blog-box .blog-content {
      padding: 45px;
    }
    .blog-section .blog-box .blog-content p {
      line-height: 1.3;
      margin-bottom: 10px;
    }
    .blog-section .blog-box .blog-content h5 {
      margin-bottom: 10px;
    }
    .blog-section .blog-box .blog-content h6 {
      margin-bottom: 14px;
    }
    .blog_section.section-b-space {
      padding-bottom: 40px;
    }
    .blog_section .slick-slide>div {
      margin: 0 20px;
    }
    .blog_section .slick-list {
      margin-left: -20px;
      margin-right: -20px;
    }
    .blog_section .blog-wrap {
      border-radius: 18px;
    }
    .blog_section .blog-wrap .blog-details {
      padding: 25px 25px;
    }
    .blog_section .blog-wrap .blog-details h6 {
      margin-bottom: 12px;
    }
    .blog_section .blog-wrap .blog-details h5 {
      margin-bottom: 8px;
    }
    .blog_section .blog-wrap .blog-image .blog-label {
      padding: 7px 8px;
      left: 20px;
      bottom: 20px;
    }
    .blog_section.destination-section .destination-details {
      padding: 30px;
    }
    .blog_section.destination-section .destination-details h6 {
      line-height: 1.4;
      margin-bottom: 15px;
    }
    .special-section .slick-slide>div {
      margin: 0 15px;
    }
    .special-section .slick-list {
      margin-left: -15px;
      margin-right: -15px;
    }
    .special-section .special-box .special-content {
      padding: 25px;
    }
    .special-section .special-box .special-content h5 {
      line-height: 1.3;
      margin-bottom: 10px;
      margin-top: -3px;
    }
    .special-section.section-b-space {
      padding-bottom: 40px;
    }
    .full-banner {
      padding: 70px 0;
    }
    .full-banner .banner-content h5 {
      margin-bottom: 15px;
    }
    .full-banner .banner-content h2 {
      margin-bottom: 15px;
    }
    .full-banner .banner-content p {
      line-height: 1.3;
      margin-bottom: 10px;
    }
    .full-banner.banner-section .banner-content {
      margin-top: 30px;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
    }
    .category-section .slick-slide>div {
      margin: 0 15px;
    }
    .category-section .slick-list {
      margin-left: -15px;
      margin-right: -15px;
    }
    .category-sec .category-box .img-category .top-bar {
      top: 18px;
      left: 18px;
    }
    .category-sec .category-box .img-category .top-bar .offer {
      margin-bottom: 8px;
    }
    .category-sec .category-box .img-category .like-cls i {
      font-size: 18px;
      padding: 10px;
    }
    .category-sec .category-box .content-category {
      padding: 55px 25px 20px 25px;
    }
    .category-sec.section-b-space {
      padding-bottom: 30px;
    }
    .category-wrapper.section-b-space {
      padding-bottom: 40px;
    }
    .category-wrapper .title-1.title-5 p {
      margin-bottom: 0;
    }
    .category-bg.section-b-space {
      padding-bottom: 60px;
    }
    .detail-section .detail-box {
      padding: 0;
    }
    .detail-section .detail-box .upper-part {
      margin-bottom: 15px;
    }
    .routes-section .row>div:nth-child(-n+2) {
      margin-bottom: 30px;
    }
    .flight-detail .flight-box .logo-section {
      width: 150px;
    }
    .flight-detail .flight-box .middle-section {
      width: 59%;
    }
    .flight-detail .flight-box .middle-section .flight-info {
      padding: 25px 0;
    }
    .flight-detail .flight-box .name-section {
      width: 140px;
    }
    .about_section .about_content {
      margin-top: 30px;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      margin-left: 0;
    }
    .about_section .about_content h5 {
      margin-bottom: 5px;
    }
    .about_section .about_content h2 {
      margin-bottom: 5px;
    }
    .about_section .about_content p {
      margin-bottom: 20px;
    }
    .filter-section .top-section {
      margin-bottom: 40px;
    }
    .filter-section .content .grid-item:nth-child(-n+3) {
      margin-bottom: 30px;
    }
    .food-banner {
      padding: 110px 0;
    }
    .food-banner .food-content .strip-cls {
      margin-top: 30px;
    }
    .food-banner .food-content .strip-cls .timer li {
      margin: 0 10px;
    }
    .food-banner .food-content .strip-cls .timer li:after {
      left: 38px;
    }
    .food-banner .food-content .buttons {
      margin-top: 20px;
    }
    .food-banner .food-content h3 {
      margin-top: -3px;
    }
    .discount-banner {
      padding: 100px 0;
    }
    .book-table .table-form {
      padding: 20px;
    }
    .book-table .table-form:before,
    .book-table .table-form:after {
      border-radius: 14px;
    }
    .book-table.single-table .table-form {
      margin-top: -50px;
    }
    .facts-section .row>div:nth-last-child(-n+2) {
      margin-top: 30px;
    }
    .process-steps .step-bg .row {
      margin-left: -15px;
      margin-right: -15px;
    }
    .process-steps .step-bg .row>div {
      padding-left: 15px;
      padding-right: 15px;
    }
    .process-steps .step-bg .row.popular-section>div:nth-child(2),
    .process-steps .step-bg .row.popular-section>div:nth-child(4) {
      margin-top: 0;
    }
    .process-steps .step-bg .step-box {
      padding: 20px 15px;
    }
    .cab-full {
      height: auto;
    }
    .cab-full iframe {
      height: 40vh;
    }
    .cab-full .left-bar {
      height: 100%;
    }
    .cab-full .left-bar.fixed-cls .flight-search .flight-search-detail form {
      margin-right: -15px;
      margin-left: -15px;
    }
    .cab-full .left-bar.fixed-cls .flight-search .flight-search-detail form>div {
      margin-top: 20px;
      padding-left: 15px;
      padding-right: 15px;
    }
    .cab-full .flight-search .flight-search-detail {
      position: relative;
      width: 100%;
      height: 100%;
      display: block;
      background-color: white;
      padding: 15px;
      z-index: 1;
    }
    .cab-full .flight-search .flight-search-detail form {
      padding: 0;
      width: 100%;
      margin: 0;
    }
    .cab-full .flight-search .flight-search-detail form>div {
      padding: 0;
      margin-top: 0;
    }
    .cab-full .location-option {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
    }
    .cab-full .location-option .form-check+.form-check {
      margin-right: 5px;
    }
    .top-banner .top-banner-content {
      right: 15%;
      -webkit-transform: translateY(-50%) scale(0.7);
      transform: translateY(-50%) scale(0.7);
    }
    .res-cab .row>div {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .mobile-filter {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      border-top: 1px solid #f9f9f9;
    }
    .mobile-filter.filter_button {
      display: none;
    }
    .left-sidebar {
      position: fixed;
      width: 300px;
      left: -300px;
      top: 0;
      margin-top: 0;
      z-index: 5;
      overflow-y: auto;
      height: 100vh;
      -webkit-box-shadow: 0 15px 5px 0 rgba(77, 77, 77, 0.28);
      box-shadow: 0 15px 5px 0 rgba(77, 77, 77, 0.28);
    }
    .left-sidebar .back-btn {
      display: block;
    }
    .left-sidebar .search-bar {
      display: none;
    }
    .mobile-filter {
      padding: 20px 25px;
    }
    .search-panel .search-section .search-box .left-part .search-body h6 {
      text-transform: capitalize;
    }
    .map-section {
      margin-top: 0;
    }
    .map-section iframe,
    .map-section .map {
      height: 350px;
      position: relative;
      margin-top: 30px;
    }
    .map-modal .modal-dialog .modal-content .modal-body .left-sidebar {
      display: none;
    }
    .map-modal .modal-dialog .modal-content .modal-body .container-fluid {
      padding: 0;
    }
    .map-modal .map-section .map {
      margin-top: 0;
      height: 350px !important;
    }
    .mobile-map {
      display: block;
    }
    .desktop-map {
      display: none;
    }
    .view-map.mobile-map {
      display: block;
    }
    .onclick-map.show {
      display: block !important;
    }
    .onclick-map iframe {
      margin-top: 10px;
    }
    .onclick-map>div {
      margin-top: 20px;
      margin-bottom: 20px;
    }
    .list-view {
      margin-top: 30px;
    }
    .list-view .list-box .list-content {
      margin-left: 15px;
    }
    .list-view .list-box .list-content .book-now {
      padding: 5px 9px;
      text-transform: capitalize;
    }
    .list-view .list-box .list-content .offer-box {
      padding: 7px;
      max-width: 130px;
      font-size: 12px;
      margin-top: 3px;
    }
    .list-view .list-box .list-content .facility-icon {
      margin-top: 14px;
    }
    .list-view .list-box .list-content .price {
      margin-top: 10px;
    }
    .list-view .list-box .list-content p {
      margin-bottom: 5px;
    }
    .single-section .description-section .menu-top li.mobile-menu {
      display: inline-block;
    }
    .single-section .description-section .menu-top li a {
      padding: 11px;
      text-transform: capitalize;
    }
    .single-section .description-section .menu-top.sticky {
      padding: 12px 0;
    }
    .single-section .description-section .menu-top.sticky li a {
      padding: 11px;
      text-transform: capitalize;
    }
    .single-section .description-section .menu-top.menu-up {
      margin-bottom: 20px;
    }
    .single-section .description-section .description-details .menu-part .zoom-gallery>div:nth-child(-n+4) {
      margin-bottom: 20px;
    }
    .single-section .single-sidebar {
      margin-top: 30px;
    }
    .single-section .single-sidebar .weather-sec {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
    }
    .single-section .single-sidebar .overlay-map img {
      height: auto;
    }
    .single-section .single-sidebar.order-cart-right {
      position: fixed;
      right: -300px;
      height: 100vh;
      top: 0;
      margin-top: 0;
      background-color: white;
      z-index: 9;
      padding: 20px 30px;
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease;
      overflow-y: scroll;
      -webkit-box-shadow: 0 15px 5px 0 rgba(77, 77, 77, 0.28);
      box-shadow: 0 15px 5px 0 rgba(77, 77, 77, 0.28);
      width: 300px;
    }
    .single-section .single-sidebar.order-cart-right .back-btn {
      display: block;
    }
    .single-section .order-class {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
    }
    .cart {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
    .variable-width .slick-slide img {
      height: 400px;
    }
    .booking-order {
      -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
      order: -1;
      margin-bottom: 30px;
    }
    .book-table .table-form form ::-webkit-input-placeholder {
      font-size: 14px;
    }
    .book-table .table-form form ::-moz-placeholder {
      font-size: 14px;
    }
    .book-table .table-form form :-ms-input-placeholder {
      font-size: 14px;
    }
    .book-table .table-form form ::-ms-input-placeholder {
      font-size: 14px;
    }
    .book-table .table-form form ::placeholder {
      font-size: 14px;
    }
    .detail-menu .nav-tabs .nav-item {
      margin-right: 0;
    }
    .full-width-detail .place-detail li {
      padding: 0 14px;
    }
    .order_cls {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
    }
    .order-menu-section {
      border-left: none;
    }
    .order-menu-section .order-section .order-items .items p {
      max-width: 80%;
    }
    .flight-search .flight-search-detail form {
      padding: 30px 20px;
      background-color: white;
      width: 70%;
      position: relative;
      -webkit-animation: zoom_in 0.1s ease;
      animation: zoom_in 0.1s ease;
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease;
    }
    .flight-search .flight-search-detail form .responsive-close {
      display: block;
      position: absolute;
      right: -38px;
      top: -25px;
      width: auto;
    }
    .flight-search .flight-search-detail form .responsive-close i {
      color: white;
      font-size: 20px;
    }
    .flight-search .flight-search-detail .form-group {
      margin-bottom: 12px;
    }
    .flight-search .flight-search-detail.show {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
    .flight-search .flight-search-detail.show form {
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease;
    }
    .flight-search .responsive-detail {
      display: block;
    }
    .top-bar-flight .fare-calender .calender-external .fc th,
    .top-bar-flight .fare-calender .calender-external .fc td {
      width: 60px;
    }
    .top-bar-flight .fare-calender .calender-external .fc-dayGrid-view .fc-body .fc-row {
      height: 50px !important;
      min-height: 50px;
    }
    .top-bar-flight .fare-calender .calender-external .fc-toolbar h2 {
      font-size: 20px;
    }
    .top-bar-flight .fare-calender .calender-external .fc-toolbar.fc-header-toolbar {
      margin-bottom: 20px;
    }
    .top-bar-flight .fare-calender .calender-external .fc-button {
      padding: 5px;
    }
    .top-filter-section {
      position: fixed;
      left: -300px;
      width: 300px;
      height: 100vh;
      top: 0;
      margin-top: 0;
      padding: 20px;
      z-index: 5;
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease;
      -webkit-box-shadow: 0 15px 5px 0 rgba(77, 77, 77, 0.28);
      box-shadow: 0 15px 5px 0 rgba(77, 77, 77, 0.28);
      overflow-y: auto;
    }
    .top-filter-section ul {
      display: block;
    }
    .top-filter-section ul .back-btn {
      padding-bottom: 20px;
      border-bottom: 1px solid #f9f9f9;
      font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
      text-transform: capitalize;
      color: var(--main-color);
      font-weight: 700;
      margin-bottom: 0;
      cursor: pointer;
      display: block;
    }
    .top-filter-section ul .filter-title {
      display: none;
    }
    .top-filter-section ul li {
      display: block;
    }
    .top-filter-section ul .onclick-title,
    .top-filter-section ul .filter-title {
      border-left: none;
      border-top: 1px solid #f9f9f9;
    }
    .top-filter-section ul .onclick-title h6,
    .top-filter-section ul .filter-title h6 {
      text-align: left;
      padding: 14px 0 0;
      font-size: 14px;
      font-weight: 600;
    }
    .top-filter-section ul .onclick-title h6:before,
    .top-filter-section ul .filter-title h6:before {
      display: none;
    }
    .top-filter-section ul .onclick-title .onclick-content,
    .top-filter-section ul .filter-title .onclick-content {
      display: block;
      position: relative;
      width: 100%;
      left: 0;
      top: 0;
      -webkit-box-shadow: none;
      box-shadow: none;
      padding: 10px 0;
    }
    .book_panel.flight-detail-sec .detail-bar .detail-wrap .airport-part .airport-name h4 {
      display: none;
    }
    .flight-detail-sec.round_trip .row>div:nth-child(2) .selection-bar {
      margin-top: 30px;
    }
    .res-margin {
      margin-top: 20px;
    }
    .success-section .success-detail p {
      max-width: 100%;
    }
    .view-map {
      margin-right: 0;
    }
    .filter-bottom-content {
      left: -300px;
      display: block;
    }
    .filter-bottom-content .middle-part .collection-collapse-block-content.row {
      padding-top: 40px;
    }
    .filter-bottom-content .middle-part .collection-collapse-block-content .filter-block {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
    }
    .filter-bottom-content .middle-part .collection-collapse-block-content .close-filter-bottom {
      position: absolute;
      right: 15px;
      top: 15px;
      background-color: transparent;
      color: var(--main-color);
      -webkit-box-shadow: none;
      box-shadow: none;
    }
    .filter-bottom-content .middle-part .collection-collapse-block-content .close-filter-bottom:hover {
      -webkit-box-shadow: none;
      box-shadow: none;
      border: none;
    }
    .filter-bottom-content.open {
      left: -1px;
    }
    .filter-bottom-title {
      padding-left: 15px;
    }
    .single-section .single-sidebar .selection-section.flight-search .flight-search-detail {
      position: relative;
      display: block;
      width: 100%;
      height: 100%;
      background-color: white;
      z-index: 1;
    }
    .single-section .single-sidebar .selection-section.flight-search .flight-search-detail form {
      width: 100%;
      padding: 0;
    }
    .portfolio-creative .content-sec {
      margin-top: 15px;
      display: block;
    }
    .portfolio-creative .row {
      padding-top: 30px;
    }
    .portfolio-creative .row:first-child {
      padding-top: 0;
    }
    .portfolio-creative .order-section div {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
    }
    .portfolio-creative .order-section div:nth-child(2) {
      -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
      order: 4;
      margin-bottom: 30px;
    }
    .portfolio-creative .order-section div:nth-child(3) {
      -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
      order: 3;
    }
    .portfolio-creative .order-section div:nth-child(4) {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
      margin-bottom: 30px;
    }
    .portfolio-creative .order-section div:nth-child(5) {
      -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
      order: 5;
    }
    .portfolio-creative .order-section div:nth-child(6) {
      -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
      order: 6;
    }
    .blog-sidebar {
      margin-top: 30px;
    }
    .blog-sidebar .blog-wrapper .sidebar-content .blog-post li {
      width: 49%;
    }
    .blog-inner.blog_section {
      margin-top: 30px;
    }
    .blog-inner.blog_section .blog-list .blog-wrap .blog-image {
      width: 50%;
    }
    .contact_section .row>div:nth-child(-n+2) {
      margin-bottom: 25px;
    }
    .faq-tab .nav-tabs {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: unset;
      flex-wrap: unset;
      overflow: auto;
      width: 100%;
      padding-bottom: 5px;
    }
    .faq-tab .nav-tabs .nav-item {
      display: inline-block;
    }
    .faq-tab .nav-tabs .nav-item .nav-link {
      white-space: nowrap;
    }
    .faq-tab .nav-tabs .nav-item .nav-link.active {
      border-right: none;
      border-bottom: 2px solid var(--main-color);
    }
    .faq-tab .nav-tabs .nav-item .nav-link:hover {
      border-right: none;
    }
    .faq-content {
      margin-top: 20px;
    }
    .dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card.add-card .card-details {
      min-height: 148px;
    }
    .dashboard-section .faq-content {
      min-height: auto;
    }
    .dashboard-section .dashboard-sidebar {
      padding: 20px 0 0 0;
    }
    .dashboard-section .dashboard-sidebar .faq-tab .nav-tabs {
      text-align: center;
    }
    .dashboard-section .dashboard-sidebar .profile-top .profile-image .profile-edit {
      right: 41%;
    }
    .hotel-single-section .hotel-title-section .hotel-name .left-part .top .share-buttons .btn {
      font-size: 0;
      padding: 6px 10px;
      line-height: 1;
    }
    .hotel-single-section .hotel-title-section .hotel-name .left-part .top .share-buttons .btn i {
      font-size: 12px;
    }
    .hotel_title_section .hotel-name .left-part .top .share-buttons .btn {
      font-size: 0;
      padding: 6px 10px;
      line-height: 1;
    }
    .hotel_title_section .hotel-name .left-part .top .share-buttons .btn i {
      font-size: 12px;
    }
    .checkout-cart {
      -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
      order: -1;
      margin-bottom: 30px;
    }
    .checkout-cart .single-sidebar.order-cart-right {
      position: relative;
      right: 0;
      height: auto;
      width: 100%;
      -webkit-box-shadow: 0 2px 4px 0 #dedede;
      box-shadow: 0 2px 4px 0 #dedede;
    }
  }

  @media (max-width: 767px) {
    section,
    .section-t-space {
      padding-top: 50px;
    }
    .section-b-space {
      padding-bottom: 50px;
    }
    .breadcrumb-section {
      height: 350px;
    }
    .breadcrumb-section .breadcrumb-content {
      height: 350px;
      padding-top: 84px;
    }
    .breadcrumb-section .breadcrumb-content>div {
      padding: 30px 45px;
    }
    .breadcrumb-section .title-breadcrumb {
      font-size: 370px;
    }
    .breadcrumb-section.parallax-img {
      background-attachment: unset;
    }
    .breadcrumb-section.breadcrumb-cum-header {
      height: 400px;
    }
    .breadcrumb-section.breadcrumb-cum-header .breadcrumb-content {
      height: 400px;
    }
    .breadcrumb-section.breadcrumb-cum-header .breadcrumb-content p {
      display: none;
    }
    .breadcrumb-section.breadcrumb-cum-header .breadcrumb-content h2 {
      margin-bottom: 10px;
    }
    .medium-section {
      padding-top: 35px;
      padding-bottom: 35px;
    }
    .small-section {
      padding-top: 30px;
      padding-bottom: 30px;
    }
    .title-1 h2 {
      padding-bottom: 20px;
    }
    .title-2 h2 {
      margin-bottom: 10px;
      margin-top: -4px;
    }
    .title-2 p {
      margin-bottom: 30px;
    }
    .title-3 h2 {
      margin-bottom: 30px;
    }
    .partition2>div:first-child {
      margin-bottom: 30px;
    }
    .circle {
      height: 120px;
      width: 120px;
    }
    .circle.b-round {
      height: 180px;
      width: 180px;
    }
    .top-category {
      padding: 0 15px;
    }
    .top-category .slick-slide>div {
      margin: 0 15px;
    }
    .top-category .slick-list {
      margin-left: -15px;
      margin-right: -15px;
    }
    .top-category.margin-cls {
      margin-top: -40px;
    }
    .top-category .top_box .right-content {
      padding: 0px 15px;
    }
    .top-category .top_box .right-content .rating {
      display: none;
    }
    .app-section .app-image .image:last-child {
      margin-left: 30px;
    }
    .app-section .app-content .app-buttons a+a {
      margin-left: 10px;
    }
    .app-section .app-content .title {
      margin-bottom: 15px;
    }
    .app-section .app-content .title span {
      display: unset;
    }
    .app-section .app-content p {
      margin-bottom: 15px;
    }
    .app-section .app-content h3 {
      margin-bottom: 15px;
    }
    .app-section .app-content .label {
      margin-bottom: 20px;
    }
    .app-section .app-box {
      text-align: center;
      background-color: rgba(255, 255, 255, 0.1);
    }
    .app-section .app-box h2,
    .app-section .app-box h5 {
      margin-bottom: 15px;
    }
    .app-section .app-box p {
      margin-bottom: 18px;
    }
    .app-section.app-right-sec .app-image {
      display: none !important;
    }
    .app-section.app-right-sec .app-content {
      text-align: center;
    }
    .app-section.app-right-sec .app-content .title {
      margin-top: -3px;
    }
    .service_section .service-wrap {
      padding: 10px 0;
    }
    .subscribe-footer .service-left .service-box {
      display: block;
      text-align: center;
      padding: 0px 12px;
    }
    .subscribe_section .subscribe-detail {
      padding-bottom: 15px;
    }
    .about-section .about-text h3,
    .about-section .about-text h2 {
      margin-bottom: 10px;
    }
    .about-section .about-text p {
      margin-bottom: 7px;
    }
    .about-section.three-image .image-section .img-box+.img-box {
      margin-left: 25px;
    }
    .about-section.three-image .about-text h3,
    .about-section.three-image .about-text h5,
    .about-section.three-image .about-text p {
      margin-bottom: 10px;
    }
    .about-section.three-image .about-text h2 {
      margin-bottom: 5px;
    }
    .ticket-section .ticket-box .content {
      width: 85%;
    }
    .pt-40 {
      padding-top: 20px !important;
    }
    .ticket-section .ticket-box .ticket-title {
      position: relative;
      top: 0;
      right: 0;
      left: 0;
      -webkit-transform: rotate(0deg) translate(0);
      transform: rotate(0deg) translate(0);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin-bottom: -20px;
    }
    .ticket-section .ticket-box .ticket-title span {
      padding: 12px;
    }
    .ticket-section .ticket-box .image-box {
      -webkit-box-shadow: none;
      box-shadow: none;
    }
    .ticket-section .slick-next {
      top: 34%;
      right: 0;
      left: unset;
    }
    .ticket-section .slick-prev {
      top: 34%;
      left: -10px;
      right: unset;
    }
    .ticket-section.white-section.section-b-space {
      padding-bottom: 5px;
    }
    .video-icon {
      width: 70px;
      height: 45px;
      border-radius: 10px;
    }
    .video-section {
      padding: 70px;
    }
    .video-section .basic-section .video-icon .animation-circle-inverse i {
      border-radius: 10px;
    }
    .video-section .basic-section h4 {
      letter-spacing: 0.3em;
    }
    .video_section {
      padding: 70px 0;
    }
    .menu-section .menu-box .bottom-bar .menu-bar .content h6 label {
      right: -20px;
    }
    .blog-section .blog-box .blog-content {
      padding: 15px;
    }
    .blog_section.section-b-space {
      padding-bottom: 20px;
    }
    .blog_section .blog-wrap .blog-details {
      padding: 30px;
    }
    .blog_section .blog-wrap .blog-image .blog-label {
      padding: 10px 12px;
    }
    .special-section .special-box {
      -webkit-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.05);
      box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.05);
    }
    .special-section .special-box .special-img .content-inner {
      width: 75%;
    }
    .special-section .special-box:hover {
      -webkit-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.1);
    }
    .special-section.grid-box .special-box .special-content.restaurant-detail h5 span {
      font-size: 12px;
      margin-left: 5px;
    }
    .special-section.section-b-space {
      padding-bottom: 20px;
    }
    .full-banner {
      padding: 60px 0;
    }
    .full-banner .banner-content>div {
      padding: 30px;
      background-color: rgba(0, 0, 0, 0.36);
    }
    .full-banner.banner-section .banner-content>div {
      padding: 0;
      background-color: transparent;
    }
    .full-banner.banner-section .place-image .animation-place .plane-l {
      display: none;
    }
    .full-banner.banner-section .place-image .animation-place .plane-r {
      right: 2%;
      top: 7%;
    }
    .full-banner.banner-section .place-image .animation-place .plane-r img {
      width: 60%;
    }
    .full-banner.banner-section .place-image .animation-place .cloud-l {
      top: 6%;
      left: 4%;
    }
    .full-banner.banner-section .place-image .animation-place .cloud-l img {
      width: 60%;
    }
    .full-banner.banner-section .place-image .animation-place .cloud-r {
      top: 5%;
    }
    .full-banner.banner-section .place-image .animation-place .cloud-r img {
      width: 70%;
    }
    .category-sec.section-b-space {
      padding-bottom: 10px;
    }
    .category-wrapper .category-wrap .category-content p {
      margin-bottom: 10px;
    }
    .category-wrapper .category-wrap .category-content .top {
      margin-bottom: 10px;
    }
    .category-wrapper .category-wrap .category-content .top h6 {
      margin-left: 15px;
    }
    .category-wrapper .category-wrap .category-content .rating {
      margin-bottom: 10px;
    }
    .category-wrapper .category-wrap .category-content .bottom .coupon-code {
      padding: 7px 8px;
    }
    .category-wrapper.section-b-space {
      padding-bottom: 20px;
    }
    .category-bg .slick-slide>div {
      margin: 0 10px;
    }
    .category-bg .slick-list {
      margin-left: -10px;
      margin-right: -10px;
    }
    .category-bg.section-b-space {
      padding-bottom: 40px;
    }
    .detail-section .detail-box .upper-part {
      min-height: auto;
    }
    .detail-section .detail-box .upper-part:after {
      display: none;
    }
    .detail-section .row>div {
      margin-bottom: 30px;
    }
    .detail-section .row>div:last-child {
      margin-bottom: 0;
    }
    .detail-section .row>div:last-child .detail-box {
      padding-bottom: 0;
    }
    .detail-section .row>div:last-child .detail-box:after {
      display: none;
    }
    .detail-section .row>div .detail-box {
      padding-bottom: 30px;
    }
    .detail-section .row>div .detail-box:after {
      content: "";
      position: absolute;
      width: 70%;
      height: 1px;
      background-color: rgba(255, 255, 255, 0.23);
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
    }
    .flight-detail .flight-box .middle-section {
      width: 50%;
    }
    .flight-detail .flight-box .middle-section .flight-info {
      padding: 20px 0;
    }
    .flight-detail .flight-box .middle-section .flight-info h4 {
      margin-bottom: 5px;
    }
    .flight-detail .flight-box .middle-section .flight-info h5 {
      margin-bottom: 7px;
    }
    .flight-detail .flight-box .middle-section .flight-info i {
      font-size: 12px;
      padding: 5px;
    }
    .flight-detail .flight-box .logo-section {
      width: 130px;
    }
    .flight-detail .flight-box .logo-section img {
      width: 50%;
    }
    .flight-detail .flight-box .name-section {
      width: 130px;
    }
    .flight-detail .flight-box .name-section h5 {
      margin-bottom: 5px;
    }
    .flight-detail .flight-box .name-section h6 {
      margin-bottom: 8px;
      letter-spacing: 0.3em;
    }
    .flight-detail .flight-box .name-section .btn {
      padding: 3px 10px;
    }
    .flight-detail .row>div .flight-box+.flight-box {
      margin-top: 20px;
    }
    .filter-section {
      background-image: none;
      background-color: var(--main-color);
    }
    .filter-section .top-section {
      margin-bottom: 50px;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
    }
    .filter-section .top-section .coupon {
      margin-left: auto;
      margin-right: 0;
    }
    .filter-section .filters {
      position: absolute;
      right: 15px;
      bottom: 20px;
    }
    .filter-section .content {
      margin-left: -15px;
      margin-right: -15px;
    }
    .filter-section .content .grid-item {
      padding: 0 15px;
    }
    .filter-section .content .grid-item:nth-child(-n+4) {
      margin-bottom: 30px;
    }
    .filter-section .content .grid-item .filter-detail {
      opacity: 1;
    }
    .food-banner {
      padding: 90px 0;
    }
    .food-banner .food-content {
      text-align: center;
    }
    .food-banner .food-content h3 {
      margin-bottom: 35px;
      margin-top: -2px;
    }
    .food-banner .food-content .strip-cls {
      margin-top: 10px;
    }
    .discount-banner {
      background-position: left;
    }
    .discount-banner .banner-content {
      text-align: center;
      background-color: rgba(233, 179, 14, 0.65);
      padding: 25px;
    }
    .book-table {
      background-position: left;
      background-color: #c12525;
    }
    .book-table .table-form {
      padding: 25px;
    }
    .book-table .table-form form {
      display: block;
    }
    .book-table .table-form form .row {
      display: block;
      margin-right: 0;
      margin-left: 0;
    }
    .book-table .table-form form .row>div+div {
      margin-top: 15px;
    }
    .book-table .table-form form .btn-ed {
      margin-left: 0;
      margin-top: 25px;
      width: 100%;
    }
    .book-table .table-form form .form-group {
      margin-right: 0;
    }
    .book-table .table-form form .gj-datepicker {
      margin-right: 0;
    }
    .book-table.single-table {
      background-color: transparent;
    }
    .full-page {
      height: 130vh;
      overflow: scroll;
    }
    .full-page .single-section {
      height: 130vh;
    }
    .full-page .single-section .description-section .description-details .menu-part .list-view .list-box {
      text-align: center;
    }
    .full-page .single-section .description-section .description-details .menu-part .list-view .list-box .list-img {
      width: 70%;
      margin: 0 auto;
    }
    .full-page .single-section .description-section .description-details .menu-part .list-view .list-box .list-content .facility-icon {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .full-page .single-section .description-section .description-details .menu-part .list-view .list-box .list-content .rating {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .cab-full .left-bar.fixed-cls .flight-search .flight-search-detail form {
      margin: 0;
    }
    .cab-full .left-bar.fixed-cls .flight-search .flight-search-detail form>div {
      margin-top: 0;
      padding: 0;
    }
    .top-banner .top-banner-content {
      right: 5%;
      -webkit-transform: translateY(-50%) scale(0.6);
      transform: translateY(-50%) scale(0.6);
    }
    .price-section .container-fluid {
      padding-left: 25px;
      padding-right: 25px;
    }
    .price-section .price-box .price-img .bg-size:before {
      padding-top: 50%;
    }
    footer .footer .footer-title.mobile-title {
      display: block;
    }
    footer .footer .footer-title h5 {
      margin-bottom: 20px;
    }
    footer .footer .footer-title .according-menu {
      display: block;
    }
    footer .footer .footer-content {
      margin-bottom: 20px;
    }
    footer .footer .footer-content .contact-detail .footer-logo {
      margin-bottom: 15px;
    }
    footer .footer .footer-content .contact-detail .contact-list li {
      color: rgba(255, 255, 255, 0.7);
    }
    footer .footer .footer-content .footer-place .place {
      text-align: center;
    }
    footer .footer .order-row>div:nth-child(3),
    footer .footer .order-row>div:last-child {
      margin-top: 0;
    }
    footer .footer .order-row>div:last-child .footer-title h5 {
      margin-bottom: 0;
    }
    footer .footer .order-row>div:last-child .footer-content {
      margin-bottom: 0;
      margin-top: 20px;
    }
    footer .sub-footer .footer-social {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin-bottom: 5px;
    }
    footer .sub-footer .copy-right p {
      text-align: center;
    }
    .tap-top {
      font-size: 20px;
      padding: 5px 5px 5px 5px;
      width: 30px;
      height: 30px;
      bottom: 40px;
    }
    .process-steps .step-bg .row>div {
      margin-top: 20px;
    }
    .process-steps .step-bg .row>div:nth-child(1),
    .process-steps .step-bg .row>div:nth-child(3) {
      margin-bottom: 0;
    }
    .process-steps .step-bg .row>div:nth-child(2),
    .process-steps .step-bg .row>div:nth-child(4) {
      margin-top: 20px;
    }
    .process-steps .step-bg .row>div:first-child {
      margin-top: 0;
    }
    .process-steps .step-bg .row.popular-section>div:nth-child(3),
    .process-steps .step-bg .row.popular-section>div:nth-child(4) {
      margin-top: 30px;
    }
    .process-steps .step-bg:before {
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg);
    }
    .filter-panel.filter-title-bar {
      text-align: center;
    }
    .filter-panel.filter-title-bar h4 {
      padding-bottom: 10px;
    }
    .subscribe-footer .service-left li {
      display: block;
      margin-top: 20px;
    }
    .subscribe-footer .service-left li .service-box {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 0;
      border: none;
    }
    .subscribe-footer .service-left li:first-child {
      margin-top: 0;
    }
    .subscribe-footer .service-right {
      width: 90%;
    }
    .video-slider {
      height: 270px;
    }
    .loader-wrapper.img-gif img {
      width: 70%;
    }
    .facts-section .facts-box {
      padding: 30px;
    }
    .facts-section .facts-box .img {
      margin-bottom: 7px;
    }
    .special-section.grid-box .special-box .special-content p {
      line-height: 1.2;
    }
    .special-section.grid-box .special-box .special-content .bottom-section .price {
      display: block;
    }
    .special-section.grid-box .special-box .special-content .bottom-section .price .facility-detail {
      margin-left: 0;
      margin-top: 10px;
    }
    .search-panel .search-section .search-box .left-part {
      display: block;
      padding-top: 10px;
      padding-bottom: 10px;
    }
    .search-panel .search-section .search-box .left-part .search-body {
      width: 49%;
      padding: 14px 10px;
    }
    .search-panel .search-section .search-box .left-part .search-body:nth-child(2):after,
    .search-panel .search-section .search-box .left-part .search-body:nth-child(4):after {
      display: none;
    }
    .search-panel .search-section .search-box .left-part .search-body.btn-search {
      width: 100%;
    }
    .list-view .list-box {
      display: block;
    }
    .list-view .list-box .list-img {
      width: 100%;
    }
    .list-view .list-box .list-img img {
      width: 100%;
    }
    .list-view .list-box .list-content {
      width: 100%;
      margin-left: 0;
      margin-top: 10px;
    }
    .list-view .list-box .list-content .offer-box {
      position: relative;
      max-width: 100%;
      border: none;
      padding: 0;
    }
    .list-view .list-box .list-content p {
      margin-bottom: 10px;
    }
    .list-view .list-box .list-content .facility-icon {
      margin-top: 18px;
    }
    .list-view .list-box .list-content .offer-box {
      margin-top: 7px;
    }
    .list-view .list-box .list-content h6 {
      max-width: 100%;
    }
    .single-section .description-section .menu-top {
      margin-top: 10px;
    }
    .single-section .description-section .menu-top li a {
      padding: 0 8px;
    }
    .single-section .description-section .menu-top li.active a {
      border-bottom: none;
    }
    .single-section .description-section .description-details .menu-part {
      margin-top: 10px;
    }
    .single-section .description-section .description-details .menu-part.map iframe {
      height: 250px;
    }
    .single-section .description-section.tab-section .menu-top li a {
      padding: 11px 8px;
    }
    .single-section .description-section.tab-section .description-details .menu-part .margin-up {
      margin-top: 20px;
    }
    .hotel-single-section .hotel-title-section .hotel-name {
      padding: 40px 0 20px 0;
    }
    .hotel-single-section .hotel-title-section .hotel-name .left-part .top {
      margin-bottom: 10px;
    }
    .hotel-single-section.parallax-img {
      background-attachment: unset;
    }
    .hotel_title_section .hotel-name {
      padding: 0 0 30px 0;
    }
    .hotel_title_section .hotel-name .left-part .top {
      margin-bottom: 10px;
    }
    .detail-menu .nav-tabs .nav-link {
      padding: 7px;
    }
    .booking-bottom-section .row>div:nth-child(2) {
      margin-top: 20px;
    }
    .full-width-detail .about-section {
      margin-top: 30px;
    }
    .full-width-detail .place-detail li {
      padding: 0 6px;
      text-transform: capitalize;
    }
    .full-width-detail .place-detail li+li:after {
      display: none;
    }
    .order-food-section .order-food {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .order-food-section .order-food .book-table.single-table .table-form {
      margin-bottom: -90px;
    }
    .view-map .arrow {
      font-size: 12px;
      left: 40px;
      top: -39px;
    }
    .view-map .arrow:after {
      width: 30px;
      height: 30px;
      left: -37px;
      bottom: -15px;
    }
    .order-menu-section .order-section .order-items .items p {
      max-width: 74%;
    }
    .flight-detail-sec .detail-bar .detail-wrap {
      padding: 10px 15px 15px;
    }
    .flight-detail-sec .detail-bar .detail-wrap .airport-part {
      width: 70%;
      margin: 0 auto;
    }
    .flight-detail-sec .detail-bar .detail-wrap .price {
      display: block;
      margin-top: 30px;
    }
    .flight-detail-sec .detail-bar .detail-wrap .book-flight {
      margin-top: 5px;
    }
    .flight-detail-sec .title-bar {
      display: none;
    }
    .flight-detail-sec.full_width-detail .detail-bar .detail-wrap {
      padding: 10px 15px 15px;
    }
    .flight-detail-sec.cab-detail-sec .detail-bar .detail-wrap .car-details {
      margin-top: 15px;
    }
    .flight-detail-sec.book_panel .grand-total {
      padding: 12px 0;
    }
    .flight-detail-sec.book_panel .grand-total .total {
      margin-right: auto;
    }
    .review-section .review_box .flight_detail .form_flight form .form-group {
      margin-bottom: 20px;
    }
    .review-section .review_box .flight_detail .form_flight form .row .form-group:last-child {
      margin-bottom: 0;
    }
    .review-section .review_box .flight_detail .logo-sec {
      margin-bottom: 10px;
    }
    .review-section .review_box .flight_detail .duration {
      margin-top: 10px;
    }
    .review-section .review_box .flight_detail .addons-according .seat-select .seat-details {
      position: relative;
      top: 0;
      margin-bottom: 15px;
    }
    .success-section .success-detail p {
      line-height: 24px;
    }
    .filter-panel {
      display: block;
    }
    .filter-panel .filter-bottom-title {
      margin-top: 20px;
      border-top: 1px solid #f9f9f9;
      width: 100%;
      padding-top: 20px;
    }
    .filter-panel .filter-bottom-title h5 {
      margin-left: auto;
    }
    .filter-panel .right-panel.search_filter {
      margin-top: 20px;
      border-top: 1px solid #f9f9f9;
      width: 100%;
      padding-top: 20px;
    }
    .filter-panel .right-panel.search_filter .filter-bottom-title {
      padding-left: 0;
      padding-top: 0;
      margin-top: 0;
      border-top: none;
      width: 50%;
    }
    .filter-panel .right-panel.search_filter .view-map {
      width: 50%;
    }
    .filter-panel.right-filter,
    .filter-panel.filter-map {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
    .portfolio-creative .content-sec p {
      max-width: 100%;
    }
    .blog-inner.blog_section .blog-list .blog-wrap {
      display: block;
    }
    .blog-inner.blog_section .blog-list .blog-wrap .blog-image {
      width: 100%;
    }
    .blog-inner.blog_section .blog-list .blog-wrap .blog-details {
      width: 100%;
    }
    .blog-inner.blog_section .blog-list .blog-wrap .blog-details p {
      -webkit-line-clamp: 3;
    }
    .blog-single-detail .title-part .post-detail li {
      display: block;
    }
    .blog-single-detail .title-part .post-detail li+li {
      margin-left: 0;
      padding-left: 0;
      border-left: none;
    }
    .contact-map {
      margin-top: 30px;
      height: auto;
    }
    .contact_right.contact_section {
      -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
      order: -1;
    }
    .dashboard-section .dashboard-box .dashboard-detail .booking-box {
      display: block;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      text-align: center;
      position: relative;
    }
    .dashboard-section .dashboard-box .dashboard-detail .booking-box .detail-middle {
      width: 100%;
      margin-top: 15px;
      text-align: left;
    }
    .dashboard-section .dashboard-box .dashboard-detail .booking-box .detail-last {
      margin-top: 0;
      position: absolute;
      right: 10px;
      top: 10px;
    }
    .dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card {
      padding: 15px 10px;
    }
    .dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card .edit-card {
      display: none;
    }
    .dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card.add-card .card-details {
      min-height: 130px;
    }
    .dashboard-section .dashboard-box .dashboard-detail .card-payment .edit-card-mobile {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin-top: 10px;
    }
    .dashboard-section .dashboard-box .dashboard-detail .card-payment .edit-card-mobile a {
      padding: 0 10px;
      text-transform: capitalize;
      color: var(--main-color);
    }
    .dashboard-section .dashboard-sidebar .profile-top .profile-image .profile-edit {
      right: 37%;
    }
    .dashboard-section .dashboard-main .dashboard-info .activity-box {
      margin-top: 25px;
    }
    .account-sign-in .login-with .login-social .boxes {
      padding: 20px 0;
    }
    .account-sign-in .login-with .login-social .boxes h6 {
      margin-left: 10px;
    }
    .checkout-process .checkout-box .address-sec .select-box {
      margin-top: 25px;
    }
    .checkout-process .checkout-box .address-sec .select-box:first-child {
      margin-top: 0;
    }
  }

  @media (max-width: 991px) and (min-width: 768px) {
    .container.custom-container {
      max-width: 820px;
    }
  }

  @media (width: 640px) and (height: 360px) {
    .search-section {
      margin-top: -15px;
    }
    .full-page {
      height: 220vh;
    }
    .full-page .single-section {
      height: 220vh;
    }
  }

  @media (max-width: 576px) {
    section,
    .section-t-space {
      padding-top: 40px;
    }
    .section-b-space {
      padding-bottom: 40px;
    }
    .medium-section {
      padding-top: 30px;
      padding-bottom: 30px;
    }
    .radius-cls {
      border-radius: 2px;
    }
    .btn {
      font-size: 14px;
      line-height: 18px;
    }
    .btn.btn-sm {
      padding: 6px 14px;
    }
    .btn.btn-solid {
      padding: 7px 12px;
    }
    .btn-solid,
    .btn-curve {
      padding: 7px 12px;
    }
    .btn-ed {
      padding: 9px 22px;
    }
    .title-1 .title-label {
      padding: 3px 14px;
    }
    .title-1.title-5 p {
      margin-bottom: 20px;
    }
    .title-2 p {
      margin-bottom: 20px;
    }
    .title-3 h2 {
      margin-bottom: 20px;
    }
    .title-3 .title-label {
      padding: 3px 14px;
    }
    header .menu .header-right li+li {
      margin-left: 10px;
    }
    header .menu .header-right .setting .setting-open {
      bottom: -80px;
    }
    header .mix-pills.nav-pills .nav-link {
      padding: 0 8px;
    }
    header .mix-pills.nav-pills .nav-link:after {
      bottom: -10px;
    }
    .breadcrumb-section {
      height: 270px;
    }
    .breadcrumb-section .breadcrumb-content {
      height: 270px;
      padding-top: 60px;
    }
    .breadcrumb-section .breadcrumb-content>div {
      padding: 20px 25px;
      margin: 0 10px;
    }
    .breadcrumb-section .breadcrumb-content h2 {
      margin-bottom: 5px;
      margin-top: -4px;
    }
    .breadcrumb-section .title-breadcrumb {
      font-size: 290px;
    }
    .breadcrumb-section.breadcrumb-cum-header {
      height: 300px;
    }
    .breadcrumb-section.breadcrumb-cum-header .breadcrumb-content {
      height: 300px;
    }
    .tour_layout .flight-search .flight-search-detail .form-group .gj-datepicker button,
    .tour_layout .flight-search .flight-search-detail .form-group .gj-timepicker button {
      width: 40px;
    }
    .tour_layout .flight-search .flight-search-detail .form-group .gj-datepicker button i,
    .tour_layout .flight-search .flight-search-detail .form-group .gj-timepicker button i {
      top: 9px;
      left: 9px;
    }
    .tour_layout .flight-search .flight-search-detail .form-group img {
      padding: 9px;
    }
    .location-option {
      margin-bottom: 8px;
    }
    .location-option [type="radio"]:checked+label:before,
    .location-option [type="radio"]:not(:checked)+label:before {
      top: 0;
    }
    .classic-slider .slick-dots {
      top: 80%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .classic-slider .slick-dots li {
      margin: 0 5px;
    }
    .classic-slider .slick-dots li .dot {
      opacity: 0.7;
    }
    .arrow-classic .slick-next,
    .arrow-classic .slick-prev {
      display: none !important;
    }
    .app-section .app-content .app-buttons a {
      padding: 6px 8px;
    }
    .app-section .app-content .label span {
      padding: 3px 12px;
    }
    .app-section .app-content .label span:after {
      right: -47px;
      width: 50px;
      height: 22px;
    }
    .app-section .app-image .image:last-child {
      margin-left: 10px;
    }
    .app-section .app-box {
      padding: 30px;
      background-color: rgba(0, 0, 0, 0.1);
    }
    .app-section .app-box h2,
    .app-section .app-box h5 {
      margin-bottom: 10px;
    }
    .app-section .app-box .app-buttons a {
      padding: 8px 14px;
    }
    .app-section .order-cls>div:first-child {
      margin-top: 15px;
    }
    .app-section.app-right-sec .app-content {
      padding: 30px;
    }
    .circle {
      height: 80px;
      width: 80px;
      left: 60px;
    }
    .circle.b-round {
      height: 130px;
      width: 130px;
    }
    .service-section .service-box {
      padding: 30px;
      -webkit-box-shadow: 10px 17.321px 30px 0px rgba(206, 206, 206, 0.19);
      box-shadow: 10px 17.321px 30px 0px rgba(206, 206, 206, 0.19);
    }
    .search-section {
      margin-top: -25px;
    }
    .subscribe_section .input-section input {
      border-radius: 10px;
      padding: 20px 120px 20px 20px;
    }
    .subscribe_section .input-section .btn {
      right: 20px;
      padding: 6px 12px;
    }
    .about-section .image-section .img-box .no-class {
      bottom: -15px;
      top: unset;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
    }
    .about-section .image-section .img-box+.img-box {
      margin-left: 15px;
    }
    .about-section.three-image .about-text img {
      width: 122px;
    }
    .about-section.about_page .image-section .img-box .title-box {
      padding: 8px;
      left: 0;
      -webkit-transform: none;
      transform: none;
      width: 100%;
      min-width: 100%;
    }
    .about-section.about_page .image-section .img-box .title-box h3 {
      margin-bottom: 0;
    }
    .about-section.about_page .image-section .img-box:nth-child(odd) {
      margin-bottom: 25px;
    }
    .about-section.about_page .image-section .img-box:nth-child(odd) .title-box {
      bottom: -25px;
    }
    .about-section.about_page .image-section .img-box:nth-child(even) {
      margin-top: 25px;
    }
    .about-section.about_page .image-section .img-box:nth-child(even) .title-box {
      top: -25px;
    }
    .about-section.about_page .about-text {
      margin-top: 20px;
    }
    .about-section.about_page .about-text .title-3 {
      margin-bottom: 15px;
    }
    .about-section.about_page .about-text .buttons-about {
      margin-top: 15px;
    }
    .ticket-section .ticket-box .content {
      padding: 25px;
    }
    .ticket-section .ticket-box .content .barcode-design {
      display: none;
    }
    .ticket-section .ticket-box .content .detail {
      max-width: 100%;
    }
    .ticket-section .slick-next:before,
    .ticket-section .slick-prev:before {
      padding: 2px;
      font-size: 21px;
    }
    .ticket-section .slick-prev {
      left: -8px;
    }
    .ticket-section.white-section .ticket-box {
      margin-bottom: 40px;
    }
    .ticket-section.white-section.section-b-space {
      padding-bottom: 0;
    }
    .timer li {
      margin-right: 5px;
    }
    .video-icon {
      width: 46px;
      height: 30px;
      border-radius: 6px;
    }
    .video-icon span {
      border-top: 6px solid transparent;
      border-left: 12px solid white;
      border-bottom: 6px solid transparent;
    }
    .menu-section .slick-slide {
      margin: 0 15px;
    }
    .topTour .topTour_box {
      -webkit-box-shadow: none;
      box-shadow: none;
    }
    .video-section {
      padding: 60px;
    }
    .video-section .basic-section h4 {
      letter-spacing: 0.2em;
    }
    .video-section .basic-section h2,
    .video-section .basic-section h4 {
      margin-bottom: 15px;
    }
    .video-section .basic-section .video-icon .animation-circle-inverse i {
      border-radius: 6px;
    }
    .video_section {
      padding: 60px 0;
    }
    .video_section .video-content h5 {
      margin-bottom: 12px;
    }
    .video_section .video-content h2 {
      margin-bottom: 10px;
    }
    .video_section .video-content p {
      margin-bottom: 12px;
    }
    .video_section .video-content .bottom-section {
      margin-top: 20px;
    }
    .video_section .video-content .bottom-section .info-btn {
      margin-left: 10px;
    }
    .video_section .video-image img {
      border-radius: 15px;
    }
    .video_section .video-image .side-effect:before {
      width: calc(100% + 50px);
      left: -25px;
      border-radius: 15px;
    }
    .video_section .video-image .side-effect:after {
      border-radius: 15px;
    }
    .video_section .order-cls {
      margin-bottom: 30px;
    }
    .video_section .offer-text {
      display: none;
    }
    .gallery-section .zoom-gallery>div:nth-child(1),
    .gallery-section .zoom-gallery>div:nth-child(2),
    .gallery-section .zoom-gallery>div:nth-child(3),
    .gallery-section .zoom-gallery>div:nth-child(4) {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .blog-section .blog-box .img-part img {
      min-width: 180px;
    }
    .blog_section.section-b-space {
      padding-bottom: 10px;
    }
    .blog_section.destination-section .slick-slide>div {
      margin: 0 15px;
    }
    .blog_section.destination-section .slick-list {
      margin-left: -15px;
      margin-right: -15px;
    }
    .special-section .special-box .special-content {
      padding: 20px;
    }
    .special-section .special-box .special-img .label {
      left: 15px;
      top: 15px;
    }
    .special-section .special-box .special-img .label i {
      padding: 9px 10px;
    }
    .special-section .special-box .special-img .content-inner {
      bottom: 15px;
      background-color: rgba(255, 255, 255, 0.78);
    }
    .special-section.section-b-space {
      padding-bottom: 10px;
    }
    .special-section.animated-section .animation-section {
      opacity: 0.1;
    }
    .full-banner {
      padding: 50px 0;
    }
    .full-banner.banner-section .banner-content {
      margin-top: 15px;
    }
    .category-section .slick-list {
      margin-left: -15px;
      margin-right: -15px;
    }
    .category-section .slick-slide>div {
      margin: 0 15px;
    }
    .category-sec.section-b-space {
      padding-bottom: 0;
    }
    .category-wrapper .category-wrap {
      margin: 20px 15px 30px;
    }
    .category-wrapper .category-wrap .category-content .top {
      display: block;
      margin-bottom: 7px;
    }
    .category-wrapper .category-wrap .category-content .top h3 {
      margin-bottom: 7px;
    }
    .category-wrapper .category-wrap .category-content .top h6 {
      margin-left: 0;
    }
    .category-wrapper .category-wrap .category-content .bottom {
      display: block;
    }
    .category-wrapper .category-wrap .category-content .bottom h3 {
      margin-bottom: 7px;
    }
    .category-wrapper .category-wrap .category-content .bottom .coupon-code {
      margin-left: 0;
    }
    .category-wrapper .category-wrap .category-content p {
      -webkit-line-clamp: 2;
    }
    .category-wrapper.section-b-space {
      padding-bottom: 10px;
    }
    .category-bg .category-block {
      padding: 70px 20px 30px;
      max-width: 70%;
      margin: 35px auto 10px;
    }
    .category-bg.section-b-space {
      padding-bottom: 30px;
    }
    .collection-banner .contain-banner h4 {
      text-transform: capitalize;
      margin-bottom: 5px;
    }
    .detail-section .detail-box .upper-part h6 {
      margin-bottom: 10px;
    }
    .detail-section .detail-box .upper-part h2 {
      padding-bottom: 15px;
      margin-bottom: 15px;
    }
    .detail-section.no-bg-detail .detail-box .upper-part {
      min-height: auto;
    }
    .about_section .about_img {
      margin: 10px 15px;
    }
    .about_section .about_img .side-effect:after {
      top: -5px;
      left: 72px;
    }
    .about_section .about_img .side-effect:before {
      top: -10px;
      left: 110px;
    }
    .about_section .about_img .side-effect span:after {
      bottom: -5px;
      right: 72px;
    }
    .about_section .about_img .side-effect span:before {
      bottom: -10px;
      right: 110px;
    }
    .loader-wrapper .loader .chev1,
    .loader-wrapper .loader .chev5 {
      width: 52px;
      height: 52px;
    }
    .loader-wrapper .loader .chev2,
    .loader-wrapper .loader .chev4 {
      width: 70px;
      height: 70px;
    }
    .loader-wrapper .loader .chev3 {
      width: 90px;
      height: 90px;
    }
    .filter-section .content .grid-item .filter-detail h6 {
      text-transform: capitalize;
      letter-spacing: 0.1em;
    }
    .filter-section .content .grid-item .img-part .up-btn {
      width: 40px;
      height: 40px;
    }
    .filter-section .content .grid-item .img-part .up-btn i {
      font-size: 16px;
    }
    .food-banner {
      padding: 70px 0;
      background-position: right;
    }
    .discount-banner {
      padding: 60px 0;
    }
    .discount-banner .banner-content h4 {
      margin-bottom: 14px;
    }
    .discount-banner .banner-content h2 {
      margin-bottom: 15px;
    }
    .discount-banner .banner-content .coupon {
      margin-bottom: 18px;
      padding: 3px;
    }
    .discount-banner .banner-content .coupon h5 {
      padding: 3px;
    }
    .discount-banner .banner-content p {
      margin-bottom: 15px;
      letter-spacing: 0.2em;
    }
    .book-table.single-table .table-form {
      margin-top: -30px;
    }
    .book-table .table-form form .form-group input {
      padding: 15px 15px 13px;
    }
    .book-table .table-form form .form-group img {
      right: 15px;
      top: 15px;
    }
    .book-table .table-form form .form-control {
      padding: 15px 15px 13px;
    }
    .book-table .table-form form .input-group-append .btn i {
      top: 4px;
      left: 14px;
    }
    .car-type-section .type-box {
      padding: 15px 5px;
    }
    .location-option [type="radio"]:checked+label:before,
    .location-option [type="radio"]:not(:checked)+label:before {
      width: 12px;
      height: 12px;
      border: 3px solid var(--main-color);
      ;
    }
    .location-option [type="radio"]:checked+label:before {
      border: 3px solid var(--main-color);
    }
    .location-option [type="radio"]:checked+label,
    .location-option [type="radio"]:not(:checked)+label {
      padding-left: 20px;
    }
    .full-page .full-slider .slick-next,
    .full-page .full-slider .slick-prev {
      display: none !important;
    }
    .full-page .full-slider .slick-dots li {
      margin: 0 6px;
    }
    .cab-full .left-bar.fixed-cls .flight-search .flight-search-detail {
      padding: 15px 15px 0;
    }
    .cab-full .left-bar.fixed-cls .flight-search .flight-search-detail form>div:first-child {
      margin-top: 10px;
    }
    .cab-full .location-option [type="radio"]:checked+label:before,
    .cab-full .location-option [type="radio"]:not(:checked)+label:before {
      top: 3px;
    }
    .top-banner .top-banner-content {
      font-size: 26px;
    }
    .top-banner .flip>div>div {
      margin-bottom: 50px;
    }
    .parallax-effect .food-img.food2 img {
      width: 40px;
    }
    .parallax-effect .food-img.food3 img {
      width: 50px;
    }
    .parallax-effect .food-img.food4 img {
      width: 30px;
    }
    .parallax-effect img {
      width: 50px;
    }
    footer .footer .footer-title h5 {
      margin-bottom: 15px;
    }
    footer .footer .footer-content {
      margin-bottom: 15px;
    }
    footer .footer .order-row>div:last-child .footer-content {
      margin-top: 15px;
    }
    footer .sub-footer {
      padding: 15px 0;
    }
    .video-slider {
      height: 220px;
    }
    .process-steps .step-bg .row.popular-section>div:nth-child(2),
    .process-steps .step-bg .row.popular-section>div:nth-child(4) {
      margin-top: 30px;
    }
    .process-steps .bird-container {
      top: 10%;
    }
    .mix-pills {
      margin-bottom: 10px !important;
    }
    .mix-pills.nav-pills .nav-link {
      padding: 8px;
    }
    .team-section .team-box .team-content {
      min-width: 160px;
      padding: 15px;
    }
    .team-section .team-box .team-content h3 {
      margin-bottom: 3px;
      margin-top: -2px;
    }
    .team-section .team-box .team-social {
      bottom: 40px;
    }
    .team-section .team-box .team-social .social-box {
      opacity: 1;
      margin: 0 2px;
    }
    .team-section .team-box:hover .team-social .social-box {
      -webkit-transform: scale(0.8);
      transform: scale(0.8);
    }
    .team-section .slick-dots {
      padding-top: 15px;
    }
    .team-section .slick-dots li {
      margin: 0 2px;
    }
    .team-section .slick-dots li button:before {
      font-size: 10px;
    }
    .team-section .slick-dots li.slick-active button:after {
      font-size: 20px;
      left: 0px;
    }
    .facts-section .row>div:nth-last-child(-n+2) {
      margin-top: 20px;
    }
    .facts-section .facts-box {
      padding: 10px;
    }
    .facts-section .facts-box .img img {
      height: 40px;
      width: auto;
    }
    .facts-section .animated-section .animation-section {
      opacity: 0.1;
    }
    .filter-panel .respon-filter-btn {
      display: block;
      cursor: pointer;
    }
    .filter-panel .respon-filter-btn h6 {
      font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
      text-transform: capitalize;
      color: var(--main-color);
      font-weight: 700;
      margin-bottom: 0;
    }
    .filter-panel .respon-filter-content {
      display: none;
    }
    .filter-panel .respon-filter-content.show {
      display: block;
      position: absolute;
      background-color: white;
      width: 150px;
      z-index: 2;
      left: 15px;
      top: 45px;
      -webkit-box-shadow: -4px -1px 20px 0px rgba(0, 0, 0, 0.13);
      box-shadow: -4px -1px 20px 0px rgba(0, 0, 0, 0.13);
    }
    .filter-panel .respon-filter-content.show ul li {
      display: block;
      background-color: white;
    }
    .filter-panel .respon-filter-content.show ul li.active {
      background-color: white;
      color: var(--main-color);
    }
    .filter-panel.right-filter .respon-filter-content {
      left: unset;
      right: 15px;
    }
    .filter-panel.right-filter.open-cls .respon-filter-content {
      right: unset;
      left: 15px;
    }
    .map-section {
      margin-top: 0;
    }
    .map-section iframe,
    .map-section .map {
      height: 280px;
    }
    .pagination-section {
      margin-top: 30px;
    }
    .single-section .description-section .description-details .menu-part {
      margin-bottom: 20px;
      padding: 15px;
    }
    .single-section .description-section .description-details .menu-part.about .about-sec p {
      line-height: 1.3;
    }
    .single-section .description-section .description-details .menu-part.about .about-sec ul li {
      line-height: 1.3;
    }
    .single-section .description-section .description-details .menu-part.review .review-box p {
      line-height: 1.3;
    }
    .single-section .description-section .description-details .menu-part .zoom-gallery>div:nth-child(-n+5) {
      margin-bottom: 20px;
    }
    .single-section .single-sidebar .social-box {
      margin-top: 10px;
    }
    .single-section .single-sidebar p {
      line-height: 1.3;
    }
    .single-section .single-sidebar .book-btn-section {
      margin-top: 0;
      padding-top: 5px;
    }
    .d-small-none {
      display: none;
    }
    .hotel-single-section {
      height: 350px;
    }
    .hotel-single-section .hotel-title-section {
      background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, rgba(0, 0, 0, 0.7)), to(rgba(231, 56, 39, 0)));
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 50%, rgba(231, 56, 39, 0) 100%);
    }
    .hotel-single-section .hotel-title-section .hotel-name {
      display: block;
      padding: 40px 0 10px 0;
    }
    .hotel-single-section .hotel-title-section .hotel-name .left-part {
      margin-bottom: 8px;
    }
    .hotel-single-section .hotel-title-section .hotel-name .left-part .facility-detail {
      display: none;
    }
    .hotel-single-section .hotel-title-section .hotel-name .left-part .top {
      margin-bottom: 10px;
    }
    .hotel-single-section .hotel-title-section .hotel-name .right-part {
      text-align: left;
      margin-top: 0;
    }
    .hotel-single-section .hotel-title-section .hotel-name .right-part .btn {
      display: none;
    }
    .hotel-single-section .hotel-title-section .hotel-name .right-part .price {
      margin-bottom: -5px;
    }
    .hotel_title_section .hotel-name {
      display: block;
      padding: 0 0 20px 0;
    }
    .hotel_title_section .hotel-name .left-part .facility-detail {
      display: none;
    }
    .hotel_title_section .hotel-name .left-part .top {
      margin-bottom: 5px;
    }
    .hotel_title_section .hotel-name .left-part p {
      margin-bottom: 5px;
    }
    .hotel_title_section .hotel-name .right-part {
      text-align: left;
      margin-top: 0;
    }
    .hotel_title_section .hotel-name .right-part .btn {
      display: none;
    }
    .hotel_title_section .hotel-name .right-part .price {
      margin-bottom: -5px;
    }
    .variable-width .slick-slide img {
      height: 320px;
    }
    .summery-box {
      padding: 15px;
    }
    .summery-box .hotel-section .hotel-detail {
      margin-left: 8px;
    }
    .order-food-section .order-food {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .order-food-section .order-food .book-table.single-table .table-form {
      margin-bottom: -40px;
    }
    .guest-detail {
      padding: 15px;
    }
    .guest-detail form .form-group {
      margin-bottom: 10px;
    }
    .guest-detail form .form-control {
      padding: 5px;
    }
    .guest-detail form #mobile-no {
      padding: 5px 5px 5px 48px;
    }
    .guest-detail form .submit-btn .btn {
      width: 100%;
      margin-top: 10px;
    }
    .book-panel {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
    .full-width-detail .about-section {
      margin-top: 20px;
    }
    .left-sidebar.sidebar-popup {
      top: 70px;
    }
    .top-title-bar .hotel_title_section {
      display: block;
      text-align: center;
    }
    .top-title-bar .hotel_title_section .right-part {
      text-align: center;
    }
    .top-title-bar .hotel_title_section ul {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin-top: 10px;
    }
    .infoBox .marker-detail img {
      width: 130px;
    }
    .flight-search .flight-search-detail form {
      width: 100%;
    }
    .flight-search .flight-search-detail form input {
      font-size: 12px;
    }
    .flight-search .flight-search-detail form ::-webkit-input-placeholder {
      font-size: 12px;
    }
    .flight-search .flight-search-detail form ::-moz-placeholder {
      font-size: 12px;
    }
    .flight-search .flight-search-detail form :-ms-input-placeholder {
      font-size: 12px;
    }
    .flight-search .flight-search-detail form ::-ms-input-placeholder {
      font-size: 12px;
    }
    .flight-search .flight-search-detail form ::placeholder {
      font-size: 12px;
    }
    .flight-search .flight-search-detail .form-group img {
      padding: 7px;
    }
    .flight-search .flight-search-detail .form-group .gj-datepicker button i {
      top: 6px;
    }
    .flight-search .flight-search-detail .form-group label {
      font-size: 12px;
    }
    .flight-search .flight-search-detail .search-btn .btn {
      padding: 5px 20px;
    }
    .top-bar-flight .date-fare-slider {
      padding: 0 30px;
      width: 75%;
    }
    .top-bar-flight .date-fare-slider .slick-slider .slick-prev:before,
    .top-bar-flight .date-fare-slider .slick-slider .slick-next:before {
      font-size: 14px;
    }
    .top-bar-flight .date-fare-slider .slick-slider .slick-prev {
      left: -26px;
    }
    .top-bar-flight .date-fare-slider .slick-slider .slick-next {
      right: -26px;
    }
    .top-bar-flight .fare-calender {
      width: 25%;
    }
    .review-section .review_box .flight_detail {
      padding: 10px;
    }
    .review-section .review_box .flight_detail .form_flight form select.form-control:not([size]):not([multiple]) {
      height: 32px;
    }
    .review-section .review_box .flight_detail .form_flight form .form-control {
      padding: 3px 6px;
    }
    .review-section .review_box .flight_detail .promo-section .form-control {
      padding: 3px 6px;
    }
    .review-section .review_box .flight_detail .addons-according .seat-select .plane .cockpit {
      height: 110px;
    }
    .review-section .review_box .flight_detail .addons-according .seat-select .plane .cockpit:before {
      height: 225px;
    }
    .review-section .review_box .flight_detail .addons-according .seat-select .plane .seat {
      padding: 2px 2px;
    }
    .review-section .review_box .flight_detail.payment-gateway form .form-group img {
      height: 14px;
      bottom: 12px;
    }
    .success-section .animation {
      height: 13rem;
    }
    .success-section .animation .animation__plane {
      width: 12rem;
    }
    .success-section .animation .animation__plane--shadow {
      width: 6rem;
      height: 0.5rem;
    }
    .cab-single-detail .details>div:nth-child(2) {
      margin-top: 15px;
    }
    .portfolio-section.creative-section .filter-button-group {
      margin-bottom: 30px;
    }
    .contact_section .row>div:nth-child(-n+3) {
      margin-bottom: 25px;
    }
    .get-in-touch form .form-control {
      padding: 6px 12px;
    }
    .coming-soon .coming-soon-detail form {
      width: 80%;
    }
    .faq-content {
      padding: 15px 10px;
    }
    .faq-tab .nav-tabs .nav-item .nav-link {
      padding: 3px 10px;
    }
    .account-sign-in form .button-bottom .divider {
      margin: 10px 0;
    }
    .dashboard-section .dashboard-main .counter-section .row>div:nth-child(-n+3) {
      margin-bottom: 20px;
    }
    .dashboard-section .dashboard-box .dashboard-detail .booking-box {
      text-align: left;
      padding: 15px;
    }
    .dashboard-section .dashboard-box .dashboard-detail .card-payment>div:nth-child(3),
    .dashboard-section .dashboard-box .dashboard-detail .card-payment>div:nth-child(2) {
      margin-top: 20px;
    }
    .dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card.add-card {
      margin-top: 20px;
    }
    .checkout-cart .single-sidebar.order-cart-right {
      padding: 20px 20px;
    }
    .full-page .full-slider .slick-dots li .pager__item {
      padding: 0;
      font-size: 14px;
    }
    .full-page .full-slider .slick-dots li.slick-active .pager__item {
      font-weight: 700;
      background-color: transparent;
    }
  }

  @media (max-width: 480px) {
    section,
    .section-t-space {
      padding-top: 30px;
    }
    .section-b-space {
      padding-bottom: 30px;
    }
    .top-category .top_box {
      margin-top: 30px;
    }
    .medium-section {
      padding-top: 25px;
      padding-bottom: 25px;
    }
    .app-section .app-content .title {
      margin-bottom: 10px;
    }
    .app-section .app-content p {
      line-height: 1.4;
      margin-bottom: 8px;
    }
    .app-section .app-content h3 {
      margin-bottom: 10px;
    }
    .app-section .app-box {
      padding: 20px;
    }
    .app-section .app-box h2,
    .app-section .app-box h5 {
      margin-bottom: 8px;
    }
    .app-section .app-box p {
      margin-bottom: 12px;
      line-height: 1.4;
    }
    .app-section .app-box .app-buttons a {
      padding: 6px 10px;
    }
    .app-section .app-box .app-buttons .app-btn {
      margin-left: 4px;
    }
    .service-section .service-box {
      padding: 20px;
    }
    .service-section .service-box h3 {
      margin-bottom: 6px;
      font-size: 18px;
    }
    .service-section .service-box .service-icon {
      margin-bottom: 14px;
    }
    .service-section .service-box .btn {
      margin-top: 16px;
    }
    .service_section .col-6 {
      max-width: 100%;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
    }
    .service_section>div:nth-last-child(-n+5) {
      margin-top: 10px;
    }
    .service-part .service-wrapper {
      padding: 25px;
    }
    .service-part .service-wrapper h6 {
      margin-bottom: 10px;
    }
    .service-part .service-wrapper h3 {
      margin-bottom: 5px;
    }
    .service-part .service-wrapper p {
      margin-bottom: 18px;
    }
    .about-section .about-text h3,
    .about-section .about-text h2 {
      margin-bottom: 4px;
    }
    .about-section.three-image .about-text h2 {
      line-height: 20px;
    }
    .about-section.three-image .image-section .img-box+.img-box {
      margin-left: 10px;
    }
    .ticket-section .ticket-box .content {
      padding: 15px;
      margin: -30px auto 0 auto;
      width: 90%;
      -webkit-box-shadow: -2px 11px 12px 0px rgba(0, 0, 0, 0.08);
      box-shadow: -2px 11px 12px 0px rgba(0, 0, 0, 0.08);
    }
    .ticket-section .ticket-box .ticket-title {
      margin-bottom: -14px;
    }
    .ticket-section .ticket-box .ticket-title h6 {
      padding: 6px;
    }
    .ticket-section .ticket-box .ticket-title span {
      padding: 7px;
    }
    .ticket-section .ticket-box .btn {
      padding: 7px 14px;
    }
    .ticket-section.white-section .ticket-box {
      margin-bottom: 30px;
    }
    .ticket-section.white-section .ticket-box .content .detail h4,
    .ticket-section.white-section .ticket-box .content .detail h2 {
      margin-bottom: 5px;
    }
    .ticket-section.white-section .ticket-box .content .detail p {
      margin-bottom: 10px;
    }
    .ticket-section.white-section .ticket-box .content .detail h6 {
      margin-bottom: 7px;
    }
    .video-section {
      padding: 50px 0;
    }
    .video-section .basic-section h4 {
      line-height: 1.3;
      margin-bottom: 10px;
    }
    .video-section .basic-section h2 {
      margin-bottom: 10px;
    }
    .video_section {
      padding: 50px 0;
    }
    .video_section .video-content .bottom-section {
      display: block;
    }
    .video_section .video-content .bottom-section .btn {
      display: block;
      width: 40%;
      margin: 0 auto 15px auto;
    }
    .video_section .video-content .bottom-section .info-btn {
      width: 50%;
      display: inline-block;
      margin-left: 0;
    }
    .video_section .video-content .bottom-section .info-btn h6 {
      text-transform: capitalize;
      font-size: 11px;
      padding: 14px 16px;
    }
    .video_section .video-content .bottom-section .info-btn.red-info {
      width: 42%;
      display: inline-block;
    }
    .video_section .video-content h5 {
      margin-bottom: 8px;
    }
    .video_section .video-content h2 {
      margin-bottom: 8px;
    }
    .video_section .video-content p {
      line-height: 1.4;
    }
    .blog-section .blog-box {
      display: block;
      margin-bottom: 8px;
    }
    .blog-section .blog-box .blog-content {
      padding: 20px;
    }
    .blog-section.section-b-space {
      padding-bottom: 22px;
    }
    .blog_section.section-b-space {
      padding-bottom: 0;
    }
    .blog_section.destination-section .destination-details {
      padding: 25px;
    }
    .blog_section.destination-section .destination-details h5 {
      margin-bottom: 10px;
      letter-spacing: 0.3em;
    }
    .blog_section.destination-section .destination-details h2 {
      margin-bottom: 8px;
    }
    .special-section.section-b-space {
      padding-bottom: 0;
    }
    .special-section.grid-box .special-box .special-content .tour-detail .bottom-section .price {
      margin-top: 10px;
    }
    .special-section.grid-box .special-box .special-content .tour-detail .include-sec {
      margin-top: 8px;
    }
    .full-banner {
      padding: 40px 0;
    }
    .full-banner .banner-content {
      text-align: center;
    }
    .full-banner .banner-content>div {
      padding: 20px;
    }
    .full-banner .banner-content h2,
    .full-banner .banner-content h5 {
      margin-bottom: 5px;
    }
    .full-banner .banner-content .bottom-section {
      display: block;
    }
    .full-banner .banner-content .bottom-section .btn {
      display: block;
      width: 40%;
      margin: 0 auto 15px auto;
    }
    .full-banner .banner-content .bottom-section .info-btn {
      width: 70%;
      display: inline-block;
      margin-left: 0;
      text-align: center;
    }
    .full-banner .banner-content .bottom-section .info-btn h6 {
      font-size: 12px;
      padding: 10px 12px;
    }
    .full-banner .banner-content .bottom-section .info-btn.red-info {
      width: 30%;
      display: inline-block;
    }
    .full-banner .offer-text h6:after {
      display: none;
    }
    .full-banner.banner-section .place-image .animation-place .plane-r {
      right: -14%;
      top: 0;
    }
    .full-banner.banner-section .place-image .animation-place .plane-r img {
      width: 40%;
    }
    .full-banner.banner-section .place-image .animation-place .cloud-r {
      right: 36%;
      top: 4%;
    }
    .full-banner.banner-section .place-image .animation-place .cloud-r img {
      width: 64%;
    }
    .full-banner.banner-section .place-image .animation-place .cloud-l {
      top: 2%;
    }
    .full-banner.banner-section .place-image .animation-place .cloud-l img {
      width: 45%;
    }
    .category-section .category-box {
      margin-bottom: 10px;
    }
    .category-section .category-box .side-effect:after {
      top: 5px;
    }
    .category-section .category-box .side-effect:before {
      top: 10px;
    }
    .category-section .category-box .top-bar {
      top: 15px;
      left: 15px;
      margin-bottom: 0;
    }
    .category-section .category-box .top-bar .offer {
      padding: 2px 9px;
      text-transform: capitalize;
      margin-right: 6px;
    }
    .category-section .category-box .like-cls {
      right: 15px;
      top: 15px;
    }
    .category-section .category-box .like-cls i {
      padding: 7px;
      border-radius: 100%;
      font-size: 10px;
    }
    .category-section .category-box .bottom-bar {
      left: 15px;
      bottom: 15px;
    }
    .category-section .category-box .bottom-bar p {
      font-size: 12px;
    }
    .category-section .category-box .bottom-bar .top h5 {
      max-width: 100px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      font-size: 13px;
      margin-right: 5px;
    }
    .category-section .category-box .bottom-bar .top h6 {
      margin-left: 8px;
      font-size: 13px;
    }
    .category-section .category-box .bottom-bar .top .rating i {
      font-size: 10px;
      margin: 0 1px;
    }
    .category-sec .category-box .img-category .top-bar {
      left: 15px;
      top: 15px;
    }
    .category-sec .category-box .img-category .like-cls i {
      font-size: 15px;
      padding: 10px;
    }
    .category-sec .category-box .content-category {
      margin-bottom: 30px;
    }
    .category-wrapper.section-b-space {
      padding-bottom: 0;
    }
    .category-wrapper .category-wrap .category-img img {
      width: 110px;
      height: 110px;
    }
    .category-wrapper .category-wrap .category-img .side-effect {
      display: none;
    }
    .category-wrapper .category-wrap .category-content {
      padding: 20px 15px 20px 68px;
    }
    .category-wrapper .category-wrap .category-content p {
      display: none;
    }
    .category-wrapper .category-wrap .category-content .top h3 {
      font-size: 14px;
      margin-bottom: 0;
    }
    .category-wrapper .category-wrap .category-content .top h6 {
      text-transform: capitalize;
    }
    .category-wrapper .category-wrap .category-content .top .like-cls i {
      font-size: 10px;
      padding: 5px;
    }
    .category-wrapper .category-wrap .category-content .bottom .coupon-code {
      font-size: 10px;
    }
    .category-wrapper .category-wrap:hover .category-img {
      left: 0;
    }
    .category-bg .category-block {
      padding: 60px 20px 30px;
      max-width: 90%;
      margin-top: 68px !important;
    }
    .category-bg.section-b-space {
      padding-bottom: 20px;
    }
    .routes-section .row>div {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .routes-section .row>div:nth-child(-n+3) {
      margin-bottom: 30px;
    }
    .flight-detail .flight-box .middle-section {
      width: 40%;
    }
    .flight-detail .flight-box .middle-section .flight-info:after {
      display: none;
    }
    .flight-detail .flight-box .name-section {
      width: 150px;
    }
    .flight-detail .flight-box .name-section h6 {
      letter-spacing: 0.01em;
      margin-bottom: 5px;
    }
    .flight-detail .flight-box .name-section .btn {
      padding: 2px 7px;
      font-size: 12px;
    }
    .discount-banner {
      padding: 40px 0;
    }
    .discount-banner .banner-content {
      background-color: rgba(233, 179, 14, 0.85);
    }
    .menu-section .menu-box .bottom-bar {
      padding: 20px;
    }
    .menu-section .menu-box .bottom-bar .menu-bar {
      padding-bottom: 20px;
      margin-bottom: 20px;
    }
    .menu-section .menu-box .bottom-bar .menu-bar img {
      margin-right: 0;
      width: 80%;
    }
    .menu-section .menu-box .bottom-bar .menu-bar .content h5 {
      margin-bottom: 5px;
    }
    .menu-section .menu-box .bottom-bar .menu-bar .content .rating {
      margin-bottom: 8px;
    }
    .menu-section .menu-box .bottom-bar .menu-bar .content h6 label {
      position: relative;
      right: 0;
      top: 0;
      display: inline-block;
    }
    .menu-section .menu-box .bottom-bar .menu-bar .content h6 del {
      margin-right: 0;
    }
    .book-table {
      background-position: unset;
    }
    .book-table .table-form {
      padding: 15px;
    }
    .tap-top {
      bottom: 20px;
      width: 22px;
      height: 22px;
      right: -38px;
    }
    .tap-top i {
      margin-top: -3px;
      font-size: 17px;
    }
    .tap-top.top {
      right: 20px;
    }
    .highlight-section .row>div {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .highlight-section .highlight-box svg,
    .highlight-section .highlight-box img {
      width: 35px;
    }
    .filter-panel {
      padding: 15px 20px;
    }
    .mobile-filter {
      padding: 15px 20px;
    }
    .list-view .list-box .list-content .book-now {
      display: none;
    }
    .single-section .description-section .description-details .menu-part .rooms-box .price-details {
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      text-align: left;
      padding-top: 10px;
      border-top: 1px solid #f9f9f9;
    }
    .single-section .description-section .description-details .menu-part .rooms-box td:first-child {
      width: 100%;
      display: block;
    }
    .single-section .description-section .description-details .menu-part .rooms-box td:nth-child(2) {
      width: 100%;
      display: inline-block;
    }
    .single-section .description-section .description-details .menu-part .rooms-box td:nth-child(3) {
      width: 100%;
      display: inline-block;
    }
    .single-section .description-section .description-details .menu-part .rooms-box .room-detail {
      padding: 10px 0;
    }
    .single-section .description-section.tab-section .menu-top li a {
      padding: 8px;
    }
    .single-section .description-section .description-details .menu-part .accordion-plan .card .card-header {
      padding: 10px;
    }
    .single-section .description-section .description-details .menu-part .accordion-plan .card .card-header button {
      text-overflow: ellipsis;
      overflow: hidden;
      max-width: 200px;
      white-space: nowrap;
      padding: 0;
    }
    .single-section .description-section .description-details .menu-part .accordion-plan .card .card-body {
      padding: 10px;
    }
    .single-section .description-section .description-details .menu-part.facility h6 {
      font-size: 13px;
    }
    .single-section .description-section .description-details .menu-part.facility h6 img {
      width: 15px;
    }
    .single-section .description-section .description-details .menu-part.facility ul {
      margin-left: 0;
    }
    .single-section .description-section .description-details .menu-part.facility ul li {
      font-size: 12px;
    }
    .single-section .description-section .description-details .menu-part.facility ul li i {
      margin-right: 2px;
    }
    .single-section .description-section .description-details .menu-part.review .review-box .rating {
      display: block;
    }
    .single-section .description-section .description-details .menu-part.review .review-box .rating span {
      display: block;
      margin-left: 0;
    }
    .single-section .description-section .description-details .content-title {
      text-transform: capitalize;
    }
    .bird-animation {
      opacity: 0.5;
    }
    .view-map .arrow {
      left: 30px;
    }
    .left-sidebar.sidebar-popup {
      top: 60px;
    }
    .order-menu-section .order-section .order-items .items p {
      max-width: 100%;
    }
    .order-menu-section .order-section .order-items .items .addtocart_btn {
      position: relative;
      top: 0;
      margin-top: 10px;
      margin-left: auto;
      width: 100%;
    }
    .order-menu-section .order-section .order-items .items .addtocart_btn .add_cart span {
      display: none;
    }
    .order-menu-section .order-section .order-items .items+.items .addtocart_btn {
      top: 0;
    }
    .flight-search .responsive-detail {
      padding: 15px 20px;
    }
    .flight-search .responsive-detail .modify-search {
      right: 15px;
    }
    .flight-search .flight-search-detail form {
      padding: 10px 0;
    }
    .flight-search .flight-search-detail form .responsive-close {
      right: -30px;
    }
    .flight-search .flight-search-detail form .responsive-close i {
      font-size: 16px;
    }
    .flight-detail-sec .detail-bar .detail-wrap .airport-part {
      width: 100%;
    }
    .top-bar-flight .fare-calender .calender-external {
      padding: 15px;
    }
    .top-bar-flight .fare-calender .calender-external .fc th,
    .top-bar-flight .fare-calender .calender-external .fc td {
      width: 30px;
      font-size: 12px;
    }
    .top-bar-flight .fare-calender .calender-external .fc-dayGrid-view .fc-body .fc-row {
      height: 30px !important;
      min-height: 30px;
    }
    .top-bar-flight .fare-calender .calender-external .fc-content {
      font-size: 8px;
    }
    .top-bar-flight .fare-calender .calender-external tr:first-child>td>.fc-day-grid-event {
      margin-top: -5px;
    }
    .top-bar-flight .fare-calender .calender-external .fc-button {
      padding: 3px;
      font-size: 10px;
    }
    .top-bar-flight .fare-calender .calender-external .fc-toolbar h2 {
      font-size: 16px;
    }
    .top-bar-flight .fare-calender .calender-external .fc-toolbar.fc-header-toolbar {
      margin-bottom: 10px;
    }
    .portfolio-section .filter-button-group ul li {
      padding: 3px 10px;
      margin: 0 5px;
    }
    .blog-sidebar .blog-wrapper .sidebar-content .blog-post li {
      width: 100%;
    }
    .blog-sidebar .blog-wrapper .sidebar-title h5 {
      margin-bottom: 15px;
    }
    .blog-sidebar .blog-wrapper .search-bar input {
      padding: 10px 14px 10px 50px;
    }
    .blog-inner.blog_section .blog-wrap .blog-details {
      padding: 15px;
    }
    .blog-inner.blog_section .blog-list .blog-wrap .blog-details h6 i {
      margin-right: 0;
    }
    .dashboard-section .dashboard-box .dashboard-detail ul li .details .left {
      width: 70px;
    }
    .full-page .single-section .description-section .description-details .menu-part .list-view .list-box .list-img {
      width: 50%;
      margin: 0 auto;
    }
    .full-page .single-section .description-section .description-details .menu-part .list-view .list-box .list-content .facility-icon .facility-box span {
      font-size: 0;
    }
  }

  @media (max-width: 420px) {
    .breadcrumb-section.breadcrumb-cum-header .breadcrumb-content h2 {
      margin-bottom: 0;
    }
    .breadcrumb-section.breadcrumb-cum-header .breadcrumb-content .package-detail li {
      display: block;
    }
    .service-part .service-wrapper {
      padding: 18px;
    }
    .service-part .service-wrapper h3 {
      font-size: 18px;
    }
    .ticket-section .ticket-box .content .detail h3,
    .ticket-section .ticket-box .content .detail h4 {
      margin-bottom: 5px;
    }
    .ticket-section .ticket-box .content .detail p {
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .ticket-section .ticket-box .btn {
      padding: 6px 10px;
    }
    .ticket-section .slick-prev,
    .ticket-section .slick-next {
      top: 30%;
    }
    .video-section {
      padding: 40px 0;
    }
    .video_section {
      padding: 40px 0;
    }
    .blog_section .blog-wrap .blog-details {
      padding: 20px;
    }
    .blog_section .blog-wrap .blog-image .blog-label {
      padding: 7px 10px;
    }
    .blog_section .blog-wrap .blog-image .blog-label h6 {
      font-size: 12px;
    }
    .filter-section .top-section .coupon {
      position: absolute;
      bottom: 20px;
    }
    .filter-section .top-section .title {
      margin-bottom: 18px;
    }
    .filter-section .top-section .title h2 {
      margin-bottom: 0;
    }
    .filter-section .filters .filter-btn {
      padding: 8px 18px;
    }
    .single-section .description-section .menu-top li a {
      padding: 0 10px 0 0;
    }
    .single-section .description-section .description-details .menu-part .rooms-box td:nth-child(2) {
      width: 100%;
      display: inline-block;
    }
    .single-section .description-section .description-details .menu-part .rooms-box td:nth-child(3) {
      width: 100%;
      display: inline-block;
    }
    .single-section .description-section .description-details .menu-part .rooms-box .price-details {
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      text-align: left;
      padding-top: 10px;
      border-top: 1px solid #f9f9f9;
    }
    .single-section .description-section .description-details .menu-part .accordion-plan .card .card-header {
      padding: 10px;
    }
    .single-section .description-section .description-details .menu-part .accordion-plan .card .card-header button {
      text-overflow: ellipsis;
      overflow: hidden;
      max-width: 200px;
      white-space: nowrap;
      padding: 0;
    }
    .single-section .description-section .description-details .menu-part .accordion-plan .card .card-body {
      padding: 10px;
    }
    .single-section .description-section .description-details .menu-part.facility h6 {
      font-size: 12px;
    }
    .single-section .description-section .description-details .menu-part.facility h6 img {
      width: 15px;
    }
    .single-section .description-section .description-details .menu-part.facility ul {
      margin-left: 0;
    }
    .single-section .description-section .description-details .menu-part.facility ul li {
      font-size: 12px;
    }
    .single-section .description-section .description-details .menu-part.facility ul li i {
      margin-right: 2px;
    }
    .single-section .description-section .description-details .menu-part.review .review-box .rating {
      display: block;
    }
    .single-section .description-section .description-details .menu-part.review .review-box .rating span {
      display: block;
      margin-left: 0;
    }
    .single-section .description-section .description-details .content-title {
      text-transform: capitalize;
    }
    .flight-search .responsive-detail .details span {
      display: block;
      font-size: 12px;
    }
    .flight-search .responsive-detail .details span.divider {
      display: none;
    }
    .contact_section.contact_right .row>div {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .contact_section.contact_right .row>div:last-child {
      margin-bottom: 20px;
    }
    .dashboard-section .dashboard-box .dashboard-detail .booking-box .detail-middle .media .icon {
      display: none;
    }
    .dashboard-section .dashboard-box .dashboard-detail .booking-box .detail-middle .media .media-body {
      margin-left: 0;
    }
    .dashboard-section .dashboard-box .dashboard-detail .card-payment .payment-card.add-card .card-details {
      min-height: 124px;
    }
    .dashboard-section .dashboard-sidebar .profile-top .profile-image .profile-edit {
      right: 26%;
    }
    .hotel-single-section .hotel-title-section .hotel-name .left-part .top .rating {
      display: none;
    }
    .hotel_title_section .hotel-name .left-part .top .rating {
      display: none;
    }
    .top-banner .top-banner-content {
      right: -40px;
    }
    .video-slider {
      height: 188px;
    }
  }

  @media (max-width: 360px) {
    .video-slider {
      height: 146px;
    }
  }

  .bg {
    padding: 50px 0 25px;
    background: url(../images/bg.jpg) center center no-repeat fixed;
    background-repeat: repeat;
    background-size: cover;
  }

  .wishlist_area .table-responsive table tbody tr td {
    border-right: 1px solid #f0f0f0;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 14px;
    text-align: center;
    min-width: 100px;
    color: var(--main-color);
    ;
  }

  .table td,
  .table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    color: var(--main-color);
    ;
  }

  .table-con {
    padding: 10px;
    color: var(--main-color);
    !important;
  }

  .table-responsive .table {
    border-left: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    background-color: rgba(0, 0, 0, 0.65);
  }

  .hidden-md {
    display: none;
  }

  .hidden-lg {
    display: none;
  }

  .scr {
    color: var(--main-color);
    ;
  }


  .footer_email a.text-white {
    text-transform: lowercase;
  }

  .footer_calls a.text-white {
    display: inline-block;
  }


  .tables-c td,
  th {
    text-align: center;
  }

  .pt-40 {
    padding-top: 42px;
  }

  .gallery_box {
/*    border: 3px solid #eee !important;*/
/*padding: 4px;*/
}
.gallery_box img{
  overflow: hidden;
  transition: all 0.3s ease 0s;
}

.gallery_box:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.gallery_box img {
  height: 273px;
}

.title-1 h2:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 60%;
  margin: 10px auto;
  width: 5%;
  height: 2px;
  background: var(--main-color);
  display: block;
}

.title-1 {
  position: relative;
}

.tour-title h1 {
  font-size: 30px;
  margin: 0;
}

.tour-title {
  padding: 20px 0px;
  text-align: justify;
}

@media only screen and (max-width: 767px) {
  .tour-title h1 {
    font-size: 20px;
    margin: 0;
  }
  .guest-detail h2 {
    font-size: 20px;
    color: var(--main-color);
    margin-bottom: 22px;
    text-transform: capitalize;
    margin-top: -6px;
  }
  .hidden-xs {
    display: none !important;
  }
}

.active {
  color: var(--main-color);
}

.home_section .home.home-60 {
  height: 70vh;
}

.zoom-gallery .mar-b-30 {
  margin-bottom: 30px;
}

.overlay-background i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: var(--main-color);
  fff;
  font-size: 18px;
  /* display: none; */
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px;
  background: #00000070;
}

.tour-img img {
  outline: 2px solid var(--main-color);
  ;
  outline-offset: -5px;
  width: 100%;
}

p .duration {
  color: #000;
  font-weight: 600;
  margin-top: 10px;
  font-size: 16px;
}

p .duration b {
  color: rgb(184 37 14);
  font-weight: 600;
  margin-top: 10px;
}

p .description b {
  color: rgb(184 37 14);
  font-weight: 600;
  margin-top: 10px;
}

p .description {
  color: rgba(0, 0, 0, 0.68);
  font-weight: 300;
  margin-top: 10px;
  font-size: 16px;
  text-align: justify;
  line-height: 24px;
}

.iti-block {
  padding-left: 8px;
  margin-bottom: 12px;
  border-left: 3px solid var(--main-color);
}

.iti-head {
  text-align: left;
  font-size: 22px;
  line-height: 33px;
  font-weight: 600;
}

.iti-head span {
  color: var(--main-color);
}

.iti-block p {
  color: rgba(0, 0, 0, 0.68);
  font-weight: 300;
  margin-bottom: 25px;
  font-size: 16px;
  text-align: justify;
  line-height: 22px;
}

.iti h2 {
  text-align: left;
  font-size: 26px;
  line-height: 33px;
  font-weight: 600;
  margin-bottom: 10px;
  background-color: var(--main-color);
  color: var(--main-color);
  ;
  padding: 3px 10px;
}

.breadcrumb_content {
  padding: 10px 0;
}

.breadcrumb_content ul li {
  display: inline-block;
  text-transform: capitalize;
  font-size: 14px;
  margin-right: 3px;
  padding-right: 13px;
  position: relative;
}

.breadcrumb_content ul li::before {
  position: absolute;
  content: "/";
  right: 0;
  top: 50%;
  transform: translatey(-50%);
}

.breadcrumb_content ul li a {
  color: #999;
}

.breadcrumb_content ul li:last-child {
  margin-right: 0;
}

.iti-head-3 {
  text-align: left;
  font-size: 22px;
  line-height: 33px;
  font-weight: 600;
  background-color: var(--main-color);
  padding: 3px 8px;
  color: var(--main-color);
  ;
}

.itinerary ul li {
  border-bottom: 1px solid var(--main-color);
}

.itinerary ul li {
  font-size: 14px;
  padding: 3px;
  text-align: left;
  line-height: 18px;
  width: 100%;
}

.itinerary ul li a {
  font-size: 14px;
  padding: 3px;
  text-align: left;
  line-height: 30px;
  font-weight: 600;
  color: #000;
}

.stars span i {
  padding: 4px;
}

.stars span {
  font-size: 14px;
  margin: 0 2px;
  color: #ffcc33;
  float: right;
}

.font-700 {
  font-weight: 700;
}

.tarrif-bg {
  background-size: cover;
  background-image: url('../images/white-abstract.jpg');
}

.car {
  padding: 10px;
  border: 1px solid #333;
  box-shadow: 3px 3px 5px 1px #888;
  margin-bottom: 25px;
  min-height: 411px;
  line-height: 30px;
  border-radius: 10px;
  border-bottom: 4px solid var(--main-color);
}

.car-price p {
  font-size: 20px;
  font-weight: 700;
}

.car-price p span {
  font-size: 26px;
  font-weight: 700;
}

.car-name h5 {
  padding: 10px;
  background-color: var(--main-color);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  ;
}

.car-img {
  padding-top: 10px;
  padding-bottom: 10px;
}

.devide {
  background: #8080804a;
  height: 1px;
  border: none;
  width: 80%;
  margin: 10px auto;
}

.star {
  color: var(--main-color);
  font-size: 18px;
}

.price_button a {
  color: var(--main-color);
  ;
  border: 2px solid var(--main-color);
  border-radius: 50px;
  padding: 8px 20px;
  background: var(--main-color);
  box-shadow: 0 10px 14px -7px #000000a8;
}

.fa-checks {
  color: green;
  margin-right: 10px;
}

.ul-points ul li {
  color: var(--main-color);
  font-size: 16px;
  font-weight: 600;
  display: block;
}

.setting {
  color: var(--main-color);
  font-size: 18px;
}

.just-dial {
  margin-top: 12px;
  border-radius: 4px;
  padding: 4px;
  border: 2px solid #8b0705;
}

.brand-logo a h3 {
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1;
  color: var(--main-color);
  text-align: center;
}
.brand-logo a h3 span{
  font-size: 20px;
  text-align: center;
  color: #000;
}
.footer-title h5 {
  position: relative;
  padding-bottom: 10px;
}

.footer-title h5:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  content: "";
  background-color: var(--main-color);
  ;
}

/*float buttons*/

.whatsapp-button {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99;
  background-color: #25d366;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  width: 50px;
  height: 50px;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  -moz-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  animation: effect 5s infinite ease-in;
}

.call-button {
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 99;
  background-color: #3fd0d4;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  width: 50px;
  height: 50px;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  -moz-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  animation: effect 5s infinite ease-in;
}

.call-button i {
  font-size: 24px;
}

.whatsapp-button:hover,
.call-button:hover {
  background-color: #3DB3B7;
}

.whatsapp-button:hover i {
  color: var(--main-color);
  ;
}

.call-button:hover i {
  color: var(--main-color);
  ;
}

@keyframes effect {
  20%,
  100% {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
  0%,
  10% {
    width: 55px;
    height: 55px;
    font-size: 35px;
  }
  5% {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
}

.terms-content h3 {
  font-weight: 600;
  font-size: 30px;
}

.terms-list li {
  list-style: auto !important;
  display: block !important;
}

.sidebar-item {
  margin-bottom: 30px;
  padding: 20px;
  box-shadow: 0px 6px 35px rgba(0, 0, 0, 0.08);
}

.sidebar-item>h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  color: #000;
  border-bottom: 2px solid var(--main-color);
}
/*.sidebar-item h3:before{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 2px;
  content: "";
  background-color: var(--main-color);
}*/

.sidebar-category {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}

.sidebar-category li {
  list-style: none;
  margin-bottom: 5px;
  width: 100%;
}

.sidebar-category li .active {
  border-left: 5px solid #212529;
  background: var(--main-color);
  color: #FFF;
}

.sidebar-category li a {
  background: #f1eeee none repeat scroll 0 0;
  color: #000;
  display: block;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  text-transform: capitalize;
  border-left: 5px solid #f1eeee;
}
.sidebar-category li a:hover {
  border-left: 5px solid #212529;
  background: var(--main-color);
  color: #fff;
}
.sidebar-category li a:after{
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  float: right;
}
.title-1 h4,
.title-1 h3 {
  font-weight: 600;
  font-size: 30px;
  position: relative;
  margin-bottom: 45px;
}

.title-1 h4:before,
.title-1 h3:before {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  content: "";
  background-color: var(--main-color);
}



/*.flight-search .flight-search-detail {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.65);
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: none;
    left: 0;
    top: 0;
    z-index: 9;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0; }
}*/

@media only screen and (max-width: 600px) {
  .flight-search .flight-search-detail .form-group label {
    color: #000 !important;
  }
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.spad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.breadcrumb__text {
  text-align: center;
}

.breadcrumb__links {
  margin-bottom: 12px;
}

.breadcrumb__links a {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-right: 26px;
  display: inline-block;
  position: relative;
}

.breadcrumb__links a::after {
  position: absolute;
  right: -18px;
  top: 0px;
  font-family: 'Font Awesome 5 Pro';
  content: "";
  font-size: 15px;
  font-weight: 400;
}

.breadcrumb__links span:last-child {
  margin-right: 0;
}

.breadcrumb__links span {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-right: 26px;
  position: relative;
}

.breadcrumb__text h2 {
  color: #fff;
  font-size: 46px;
  font-weight: 700;
}




.tm-element-heading-content-wrapper .tm-element-subhead {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1.0px;
  color: var(--main-color);
}

.tm-element-heading-content-wrapper .tm-element-subhead {
  margin-bottom: 7px;
  position: relative;
  display: inline-block;
}

.tm-element-content-heading {
  font-weight: 600;
  font-size: 44px;
  line-height: 56px;
  color: var(--main-color);
}

.tm-element-content-desctxt {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #8592a6;
}

.about_image {
    padding: 15px;
    position: relative;
    z-index: 1;
    margin: 10px 0;
}

.about_image::before, .about_image::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--theme-color);
    z-index: -1;
  }

.about_image::before {
    left: 0;
    bottom: 0;
    border-radius: 0 0 0 15px;
}

.about_image::after {
    right: 0;
    top: 0;
    border-radius: 0 15px 0 0;
}

.about_image img {
    width: 100%;
    border-radius: 15px;
}

.List-items li:not(:last-child) {
  padding-bottom: calc(11px/2);
}

.List-items li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: inherit;
  display: block;
}

.List-items i {
  color: var(--main-color);
  width: 1.25em;
  font-size: 14px;
}

.List-items span {
  color: var(--main-color);
  padding-left: 8px;
}

.main-box {
  background-color: #ffffff !important;
  border-radius: 6px;
  border-style: solid;
  border-width: 0px 0px 5px 0px;
  border-color: var(--main-color);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin: 0px 0px 0px 6px;
  --e-column-margin-right: 0px;
  --e-column-margin-left: 6px;
  padding: 35px 35px 13px 36px;
}

.main-box .box-icon img {
  width: 75px;
}
/*OUR GALLERY*/
#our_gallery{
  position: relative;
}
.bgimage{
  background-color: var(--main-color) !important;
  background-image: url('../images/bgimg.png');
  background-size: contain;
  background-position: center center;
  position: absolute;
  height: 510px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
  margin-bottom: 10px;
}
/*OUR DESTINATION*/

.booking-one__single {
  margin-bottom: 30px;
  -webkit-transition: all .35s;
  transition: all .35s;
  border-radius: 10px
}

.booking-one__image {
  position: relative;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  min-height: 90px;
  background: #ccc
}
.booking-one__image img{
  height: 250px;
}
.booking-one__content {
  padding: 10px 30px 0;
  -webkit-box-shadow: 0 10px 20px rgba(0,0,0,.1);
  box-shadow: 0 10px 20px rgba(0,0,0,.1);
  border-top: none;
  border-radius: 0 0 10px 10px;
  background: #fff;
  position: relative;
  margin-top: -16px;
  text-align:center;
}

@media (max-width: 1024px) {
  .booking-one__content {
    padding:10px 20px 0
  }
}

.booking-one__content:after {
  content: '';
  width: 100%;
  height: 20px;
  border-radius: 20px 20px 0 0;
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 9;
  background: #fff;
  margin-bottom: -1px
}

.booking-one__content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.booking-one__content-top .booking__rating {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 66px);
  flex: 0 0 calc(100% - 66px)
}

.booking-one__media {
  background: #fff;
  padding: 7px 18px 5px;
  position: absolute;
  top: -35px;
  right: 30px;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0,0,0,.1);
  box-shadow: 0 10px 20px 0 rgba(0,0,0,.1);
  border-radius: 8px;
  z-index: 11;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66px;
  flex: 0 0 66px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

.booking-one__title {
  font-size: 20px;
  margin: 10px 0 10px;
  font-weight: 600
}

.booking-one__address {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 400
}

.booking-one__address i {
  margin-right: 10px;
  color: var(--e-global-color-primary)
}

.booking-one__price .item_info_price_new {
  color: var(--e-global-color-secondary)
}

.booking-one__meta {
  margin-top: 20px;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid #e2dfeb
}

.booking-one__item-meta i {
  margin-right: 4px;
  font-size: 20px;
  position: relative;
  top: 2px;
  color: var(--e-global-color-primary)
}

.booking-one__meta-left>span:not(:last-child) {
  margin-right: 18px
}

.booking-one__meta-right a {
  display: inline-block;
  position: relative;
  padding-right: 20px
}

.booking-one__meta-right a:after {
  content: '\f061';
  font-family: 'Line Awesome Free';
  position: absolute;
  top: 8px;
  right: 0;
  font-size: 14px;
  z-index: 1;
  line-height: 1;
  font-weight: 900
}

.rating span {
  color: #ffbc00;
  display: inline;
  font-size: 14px;
}
/*FOOTER*/
.footer-layout1 {
 width: 100%;
 --color: rgba(114, 114, 114, 0.3);
 background-color: #191a1a;
 background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/footer_bg.jpg);
 background-size: cover;
 background-repeat: no-repeat;
 background-position: center;
}
.footer-wrapper {
  position: relative;
  z-index: 2;
}
.widget-area {
  padding-top: 120px;
  padding-bottom: 75px;
}
.footer-widget, .footer-widget .widget {
  padding: 0;
  border: none;
  padding-bottom: 0;
  background-color: transparent;
  box-shadow: none;
}

.footer-widget {
  margin-bottom: 40px;
}
.ot-widget-about .about-logo {
  margin-bottom: 30px;
}
.ot-widget-about .about-text {
  margin-bottom: 25px;
  margin-top: -0.46em;
  margin: 0 0 18px 0;
  color: #fff;
  line-height: 1.75;
  font-size: 16px;
}

.footer-wrapper .ot-social a {
  --icon-size: 45px;
  font-size: 14px;
  border-color: rgb(255 255 255 / 7%);
  background-color: rgb(255 255 255 / 7%);
}
@media (max-width: 1399px){
  .ot-social a {
    margin-right: 3px;
  }
}
.ot-social a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  text-align: center;
  margin-right: 5px;
  border-radius: 50%;
  border: 1px solid #fff;
}

.footer-widget .widget_title {
  max-width: 275px;
  margin-bottom: 35px;
  font-weight: 600;
  color: #fff;
}

.widget_title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  margin: -0.1em 0 30px 0;
  padding-bottom: 20px;
}
.widget_title:before, .widget_title:after {
  content: '';
  height: 2px;
  width: 60px;
  background-color: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 0;
}
.widget_title:after {
  left: 65px;
  width: 10px;
}
.footer-widget.widget_nav_menu a {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 14px;
  display: block;
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 0;
  background-color: transparent;
  position: relative;
  color: #fff;
}
.footer-widget.widget_nav_menu a:before {
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  font-weight: 600;
  left: 0;
  top: 3px;
  background-color: transparent;
  border: none;
  color: inherit;
  transition: 0.4s linear;
  position: relative;
  padding-right: 5px;
}
.ot-widget-contact {
  max-width: 260px;
}
.info-box {
  margin-bottom: 22px;
  padding-left: 35px;
  position: relative;
}
.info-box_icon {
  font-size: 16px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: #fff;
  background-color: var(--main-color);
  font-size: 10px;
  border-radius: 5px;
  text-align: center;
  position: absolute;
  top: 3px;
  left: 0;
}
.info-box_text {
  display: block;
  color: #fff;
  margin-top: 25px;
  margin-bottom: 0;
  padding-top: 5px;
  font-size: 16px;
  word-break: break-word;
  line-height: 1.3;
}
.widget_nav_menu li{
  display: block;
}

.copyright-wrap {
  padding: 29px 0;
  background-color: transparent;
  border-top: 1px solid #313D54
}

@media (max-width: 1199px) {
  .copyright-wrap {
    padding:24px 0
  }
}

.copyright-wrap.style2 {
  background-color: var(--main-color);
  border-top: 1px solid #fff;
  padding: 10px 0
}

.copyright-text {
  margin: 0;
  color:#fff;
}

.copyright-text a {
  color: #000!important;
}

.copyright-text a:hover {
  color: #fff;
}
.footer-links li {
  display: inline-block;
  padding-right: 15px;
  margin-right: 10px;
  position: relative;
}
.footer-links a {
  font-family: inherit;
  color: #fff;
}
.footer-links li:after {
  content: '';
  height: 20px;
  width: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  margin: -10px 0;
}
.footer-links ul {
  padding: 0;
  margin: 0;
}
.footer-widget.widget_nav_menu a:hover {
  background-color: transparent;
  color: var(--main-color);
}
.footer-widget.widget_nav_menu a:hover:before {
  color: var(--main-color);
  position: relative;
  left: 5px;
}
.copyright-text a {
  color: var(--main-color);
}
.footer-wrapper .ot-social a:hover {
  border-color: var(--main-color);
  background-color: var(--main-color);
}
.logo-style{

  color: white;
  margin-left: -6px;
}



/*DESTINATION*/
.single_package {
  margin: 0 15px 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
}

.package-hover {

}
.single_package .package-hover {
  padding: 30px;
}
.package-hover p{
  margin-bottom: 20px;
}
.package-hover i{
  color: #fec42d;
}
.time_zone{
}
.team .position-center-center {
  width: 100%;
  padding: 0 20px;
}
.single_package img{
  width: 100%;
  position: relative;
  height:200px;
}
.pack_price{
  font-weight: 700;
  color: #f05942;
}
.single_package h5 {
  font-size: 18px;
  margin-bottom: 5px;
  text-transform: capitalize;
  font-weight: 700;

}
.single_package .rating{
  margin-bottom: 3px;
}
.single_package .time_zone {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  text-transform: capitalize;
  width: 100%;
  color: #333;
  margin-bottom: 12px;
}
.single_package .time_zone i{
  color: #f05942;
}
.package-name {
  font-size: 16px;
  font-weight: 700;
  padding: 25px 20px;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out 0s;
  width: 100%;
}
.pack_image{
  position: relative;
  transition: .5s;
  overflow: hidden;
}
.pack_image:before,
.single_gallery:before,
.blog_image:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 75%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 75%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 75%);
  opacity: 0;
  transition: .5s;
}
.gallery_enlarge_icon,
.pack_image .btn-bg{
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: .5s;    
}
.pack_image .btn-bg{
  color: #fff;
  font-size: 13px;
  background: #f05942;
  border-radius: 30px;
  padding: 5px 20px;
}

.single_package:hover .btn-bg,
.single_gallery:hover .gallery_enlarge_icon{
  opacity: 1;
}
.single-deal figure p a:hover,
.single-deal figure p a:focus
{
  background: #e1330b;
  color: #fff;
}
.single_package:hover .pack_image:before,
.single_gallery:hover:before {
  opacity: 1;
  filter: alpha(opacity=100);
}
#package-slider .owl-controls{
  margin-top: 15px;
}
#package-slider .owl-dots .owl-dot span{
  color: #333;
  width: 12px;
  height: 12px;
  opacity: 1;
}
#package-slider .owl-dots .owl-dot.active span{
  background-color: #f05942;
}

/*price_section*/

.filter-card-item {
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  border: 1px solid var(--main-color);
  margin-bottom: 20px;
}

.filter-card-item .feature-thumb img {
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.filter-card-item .filter-card-content {
  padding: 0 24px 32px;
}
.filter-card-content h5{
  font-weight: 600;
  font-size: 22px;
  padding-top: 15px;
}
.spacer {
  border: 0;
  border-bottom: 1px solid rgba(11, 22, 63, 0.07);
}
.card-feature-box {
  justify-content: space-between;
}
.card-feature-box .icon-box {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
.card-feature-box .icon-box span {
  line-height: 0;
}
.card-feature-box .icon-box i{
  color: var(--main-color);
}
.filter-card-item:hover .feature-thumb img {
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
}

.zoom-gallery .gallery_img {
  position: relative;
  overflow: hidden;
  height: 250px;
  border-radius: 10px;
}
.zoom-gallery .gallery_img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.8s;
}
.zoom-gallery .gallery_img:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

#myNav{
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: var(--main-color);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  left: 0;
  width: 100%;
}

#myNav .overlay-content a {
  padding: 15px;
  text-decoration: none;
  font-size: 20px;
  color: #fff;
  display: block;
  transition: 0.3s;
  border-bottom: 1px solid #fff;
}
#myNav .overlay-content .dropdown-menu {
  background-color: var(--main-color);
}
#myNav .overlay-content .dropdown-menu a{
  border: none;
}
#myNav .overlay-content .dropdown-toggle::after {
  float: right;
  margin-top: 10px;
}

#myNav a:hover, .overlay a:focus {
  color: #f1f1f1;
}

#myNav .closebtn {
  position: absolute;
  top: -5px;
  right: -7px;
  font-size: 35px;
  color: #fff;
  z-index: 1;
  background: red;
  padding: 9px 18px;
  border-radius: 10px 17px 8px 70px;
  width: 50px;
  height: 46px;
  text-align: center;
  line-height: 18px;
}
.toggle-icon{
  font-size:30px;
  cursor:pointer;
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 15px;
}
.overlay-content h2{
  font-size: 30px;
  font-weight: 500;
  background: #fff;
  padding: 40px;
  padding-left: 10px;
}
@media only screen and (max-width: 600px) {
  .brand-logo a h3{
    font-size: 26px;
  }
}
@media screen and (max-height: 450px) {
  ##myNav a {font-size: 20px}
  #myNav .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
/*    phone toggle bar*/

/*our destination*/
.packages-section {
  position: relative;
  background: #fafaee;
}
.packages-section .bg-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  background-position: left top;
}
.package-block .inner-box {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
}
.package-block .image-box {
  position: relative;
}
.package-block .image-box .image {
  position: relative;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.package-block .image-box .image img {
  position: relative;
  width: 100%;
  height: 210px;
  border-radius: 20px 20px 0 0;
  transition: all 0.5s ease;
}
.package-block .lower-box {
  position: relative;
  display: block;
  padding: 10px;
}
.package-block .lower-box .p-icon {
  position: absolute;
  top: -36px;
  right: 30px;
  width: 72px;
  height: 72px;
  z-index: 5;
}
.package-block .lower-box .location {
  position: relative;
  font-weight: 600;
  font-size: 20px;
  color: #000;
  margin-bottom: 10px;
}
.package-block .lower-box p {
  position: relative;
  font-weight: 400;
  color: #2d3434;
  margin-bottom: 20px;
}
.package-block h5 a {
  color: #2d3434;
}
.package-block .lower-box .info {
  position: relative;
  font-size: 14px;
  line-height: 20px;
}
.package-block .lower-box .info .duration {
  position: relative;
  color: #000;
}
.package-block .lower-box .info .duration i, .package-block .lower-box .info .persons i {
  position: relative;
  padding-right: 5px;
}
.package-block .lower-box .info .persons {
  position: relative;
  float: right;
}
.package-block .bottom-box {
  position: relative;
  margin-top: 25px;
  padding: 15px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.package-block .lower-box .p-icon img {
  max-height: 72px;
}
.package-block .lower-box .p-icon .icon{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
  line-height: 72px;
  text-align: center;
  font-size: 32px;
  font-weight: 400;
}
.offer-action {
  text-align: center;
  background: var(--main-color) none repeat scroll 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  margin: 25px auto 0;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.offer-action a {
  display: inline-block;
  text-transform: uppercase;
  padding: 7px 15px;
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  width: 47%;
}

.offer-action:after {
  position: absolute;
  content: "";
  width: 66%;
  height: 100%;
  background: #000 none repeat scroll 0 0;
  right: -36px;
  z-index: -1;
  -webkit-transform: skewX(40deg);
  transform: skewX(40deg);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
/*Home Slider*/
.hero-slider h2 {
  line-height:1.1;
}
.hero-slider {
  width: 100%;
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
  border-bottom: 2px solid var(--main-color);
}

@media (max-width: 991px) {
  .hero-slider {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 500px;
  }
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  background: transparent;
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-top: -30px;
  text-align: center;
  border: 2px solid #d4d3d3;
  border-radius: 55px;
  opacity:0;
  visibility:hidden;
  transition:all .3s ease;
}
.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
  display: none !important;
}
.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  transform:translateX(0);
  opacity:1;
  visibility:visible;
}

@media (max-width: 767px) {
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

.hero-slider .swiper-button-prev {
  left: 25px;
  transform:translateX(50px);
}

.hero-slider .swiper-button-prev:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f060";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform:translateX(-50px);
}

.hero-slider .swiper-button-next:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f061";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: left;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 0.3;
  background:#fff;
  transition:all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
  opacity:1;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 30px;
}


.swiper-pagination {
  text-align:left;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
  bottom:10px;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}
}
@media (min-width: 767px) {
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
    bottom:30px;

  }
}
/*--------------------------------------------------------------
    #hero-style
--------------------------------------------------------------*/
.hero-style {
  height: 500px;
  transition:all .4s ease;
}

@media (max-width: 991px) {
  .hero-style {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-style{
    height: 200px;
  }
}


.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
  max-width: 690px;
}

.hero-style .slide-title h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 40px;
  text-transform: capitalize;
  transition:all .4s ease;
}

@media (max-width: 1199px) {
  .hero-style .slide-title h2 {
    font-size: 75px;
  }
}

@media (max-width: 991px) {
  .hero-style .slide-title h2 {
    font-size: 50px;
    margin: 0 0 35px;
  }
}

@media (max-width: 767px) {
  .hero-style .slide-title h2 {
    font-size: 25px;
    margin: 0 0 30px;
    text-align: center;
  }
}

.hero-style .slide-text p {
  opacity: 0.8;
  font-family: Rajdhani;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: normal;
  color: #ffffff;
  margin: 0 0 40px;
  transition:all .4s ease;
}

@media (max-width: 767px) {
  .hero-style .slide-text p {
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
    margin: 0 0 30px;
  }
}

.hero-style .slide-btns > a:first-child {
  margin-right: 10px;
}


/*GALLERY*/
.gallery-section{
  position: relative;
}
.gallery-section:before {
  content: '';
  background: #162241;
  position: absolute;
  top: 0;
  left: 0;
  height: 75%;
  width: 100%;
}
.gallery-section .desti-inner{
  position: relative;
  z-index: 1;
}
.gallery-section .desti-image {
  position: relative;
  overflow: hidden;
  border: 6px solid #ffffff1a;
}
.gallery-section .desti-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gallery-section .desti-image .desti-overlay {
  opacity: 0;
  background: #2e3d626b;
  position: absolute;
  bottom: 100%;
  left: 0;
  transition: all ease-in-out 0.5s;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.gallery-section .desti-image .desti-overlay a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.nir-btn, .nir-btn-black {
  position: relative;
  z-index: 1;
  font-size: 20px;
  text-align: center;
  padding: 12px 24px;
  text-transform: capitalize;
  transition: all ease-in-out 0.5s;
  background: var(--main-color);
  color: #fff;
  display: inline-block;
  border-radius: 43px;
  box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.1);
}

.gallery-section .desti-image:hover .desti-overlay {
  opacity: 1;
  bottom: 0;
  transition: all ease-in-out 0.5s;
}

/* js particle*/
#particles-js {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* ---- stats.js ---- */

.count-particles{
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: .8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles{
  font-size: 1.1em;
}

#stats,
.count-particles{
  -webkit-user-select: none;
}

#stats{
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles{
  border-radius: 0 0 3px 3px;
}
.text-justify{
  text-align: justify!important;
}


/*Cab Service*/
.cab-card{
  margin-bottom: 20px;
}
.elementor-element-5f4c68f{
  margin-bottom: 30px;
  text-align: center;
  background-color: var(--main-color);
  border-radius: 30px 30px 0px 0px;
}
.elementor-element-5f4c68f img {
  border-radius: 30px 30px 0px 0px;
}
.serviceBox2{
  position: relative;
}
.serviceBox2:before, .serviceBox2:after {
  content: "";
  background: var(--main-color); 
  width: 10px;
  position: absolute;
  top: 35px;
  bottom: 35px;
}
.serviceBox2:after {
  border-radius: 100px 0 0 100px;
  left: auto;
  right: 0;
}
.elementor-element-bab5a65 > .elementor-widget-container {
  margin: -44px 0px 0px 0px;
  background-color: #FFFFFF;
  border-radius: 0 0 30px 30px;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
.elementor-element-bab5a65 .eael-pricing {
  border-radius: 30px;
  text-align: center;
  position: relative;
  z-index: 0;
  -webkit-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.eael-pricing .eael-pricing-item {
  border-radius: 30px;
}

.eael-pricing-item {
  padding: 30px;
  border-radius: 5px;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  width: 100%;
  height: auto;
  margin: 0;
}

.eael-pricing.style-1 .eael-pricing-item .header {
  display: block;
  position: relative;
  z-index: 0;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.eael-pricing-item .header .title {
  color: var(--main-color);
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
}
.eael-pricing-item .header:after{
  background: #dbdbdb;
  content: "";
  position: absolute;
  width: 140px;
  height: 1px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: 0 auto;
  z-index: 1;
}
/*  end cab service*/

/*Our Process*/
.our-process{
  background-image: linear-gradient(to right, rgb(0 0 0 / 75%), rgb(10 10 10 / 75%)),url(../images/rishikesh.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-title.style-two p{
  color: #fff;
}

.org-bd {
  border-radius: 3px;
  border: solid 1px var(--main-color);
  text-align: center;
  margin-top: 20px;
  min-height: 100px;
}
.online-icon {
  width: 75px;
  height: 75px;
  background: var(--main-color);
  border-radius: 50%;
  margin: auto;
  margin-top: -40px;
  border: 3px solid #fbfbfb;
}
.online-icon i{
  font-size: 35px;
  padding: 18px;
  color: #fff;
}
.org-txt {
  font-size: 24px;
  color: var(--main-color);
  font-weight: bold;
  margin-top: 15px;
}
.achievement-card {
  padding: 20px;
  text-align: center;
  background: var(--main-color);
  color: #fff;
  -webkit-box-shadow: 0 0 64px rgba(17,17,17,.1);
  box-shadow: 0 0 64px rgba(17,17,17,.1);
  border-radius: 5px;
}
.achievement-card .achievement-icon {
  margin-bottom: 20px;
}
.achievement-card .achievement-icon i {
  color: #fff;
  font-size: 70px;
}
.achievement-card h5 {
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  color: #fff;
}
/*end Our Process*/


.multi-button {
  padding: 10px;
  border-radius: 4px;
  background: #ddd;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.multi-button a{
  width: 100%;
}
.multi-button .btn-theme{
  padding: 10px;
}

.btn-theme {
 display: inline-block;
 position: relative;
 overflow: hidden;
 background-color: var(--main-color);
 transition: color .5s;
 z-index: 1;
 font-size: 17px;
 border-radius: 6px;
 font-weight: 500;
 color: #fff;
 padding: 10px 30px;
 text-align: center;
}

.btn-theme:before {
 content: "";
 position: absolute;
 z-index: -1;
 background: var(--second-color);
 height: 150px;
 width: 250px;
 border-radius: 50%;
}

.btn-theme:hover {
 color: #fff;
}

.btn-theme:before {
 top: 100%;
 left: 100%;
 transition: all .7s;
}

.btn-theme:hover:before {
 top: -30px;
 left: -30px;
}

.btn-theme:active:before {
 background: #3a0ca3;
 transition: background 0s;
}



/*header top*/
.header .topbar {
  background: var(--main-color);
}
.header .topbar .leftside ul>li>a {
  margin: 10px 10px 10px 0px;
  line-height: 33px;
  border: 2px solid #fff;
  width: 36px;
  height: 36px;
  text-align: center;
  display: block;
  color: #fff;
}
.header .topbar .leftside ul>li:hover>a {
  background-color: #111111;
  border-color: #111111;
  color: #fff;
}
.header .topbar .rightside ul {
  justify-content: flex-end;
}
.header .topbar .rightside ul>li.login {
  background-color: #45afce;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  height: 100%;
  padding: 0 30px;
}
.header .topbar .rightside ul>li.book-appointment>a {
  background: #111111;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 16px 30px;
  font-weight: 600;
  color: #fff;
}
.header .topbar .rightside ul>li>a>i {
  margin-right: 10px;
}
.header .topbar .rightside ul {
  justify-content: flex-end;
}
ul.custom-flex {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

@media(min-width: 768px){
  .index_form{ 
    max-width: 450px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6%;
  }
}
.main_form{
  position: relative;
  z-index: 1;
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--main-color);
  padding: 20px;
}
.main_form .form_background{
  background-image: url(../images/form_bg.jpg);
  background-repeat: no-repeat;
  background-position: bottom, center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: hue-rotate(51deg);
  z-index: -1;
}
.form_heading{
  color: #fff;
  font-weight: 600;
  font-size: 27px;
  width: max-content;
  padding: 13px 30px;
  margin-bottom: 15px;
  background-color: var(--main-color);
  line-height: 1;
  padding-right: 44px;
  position: relative;
  z-index: 1;
  border-radius: 40px 5px;
}
.main_form .form_group{
  position: relative;
  z-index: 1;
  margin-top: 15px;
}
.main_form .form_group .form-control{
  height: 48px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid #fff;
  border-radius: 3px;
  color: #fff;
  backdrop-filter: blur(2px);
  padding-right: 28px;
}
.main_form .form_group .form-control:focus{
  box-shadow: none;
}
.main_form .form_group .form-control::placeholder{
  color: #fff;
}
.main_form .form_group  i{
  position: absolute;
  right: 1px;
  z-index: 1;
  color: #fff;
  background: var(--main-color);
  height: calc(100% - 2px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  top: 1px;
  border-radius: 0 3px 3px 0;
}
.main_form .form_btn{
  margin-top: 15px;
}
.main_form .form_btn .btn-theme{
  width: 100%;
  padding-block: 11px;
  text-align: center;
}
.main_form .form_btn .btn-theme:before{
  width: 200%;
  height: 200%;
  border-radius: inherit;
}
.main_form .form_btn .btn-theme span{
  justify-content: center;
}

.route_box{
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}
.route_box .image {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.route_box .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}
.route_box:hover .image img{
    transform: scale(1.1);
}
.route_box .image .time{
        position: absolute;
    z-index: 1;
    top: 10px;
    left: 7px;
    background: #fff;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    padding: 5px 9px;
    line-height: 1;
    border-radius: 30px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}
.route_box .image .kms{
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 7px;
    background: var(--theme-color);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 5px 9px;
    line-height: 1;
    border-radius: 30px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}
.route_box .content{
    padding: 10px;
    border: 1px solid #ddd;
    border-top: 0;
}
.route_box .content .title a{
    color: #222;
    font-size: 17px;
    line-height: 1;
    display: block;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 17px;
    text-align: center;
    margin-top: -35px;
    background: #fff;
    position: relative;
    z-index: 1;
    border-radius: 30px;
    padding-block: 10px;
    padding-inline: 13px;
    max-width: 90%;
    margin-inline: auto;
    box-shadow: 0 3px var(--theme-color);
}
.route_box .content p{
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #222;
    text-align: center;
}
.route_box .content .route_btn_grid{

    display: flex;
    align-items: center;
    gap: 8px;
}
.route_box .content .route_btn_grid a{
    padding: 7px 0;
    width: 100%;
}
.route_box .content .route_btn_grid a.whatsapp{
    background-color: #25d366;
    border-color: #25d366;
}
.route_box .content .route_btn_grid a.whatsapp:hover{
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.route_box .content .route_btn_grid a.whatsapp:hover span{
    color: #fff;
}
.route_box .content .route_btn_grid a span{
    justify-content: center;
}
.swiper-slid-btns .feedback-pagination {
    font-weight: 600;
    color: hsl(var(--black));
    font-size: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
}
.taxi-item{
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    border: 1px solid #bdbdbd;
}

.taxi-img{
    margin-bottom: 10px;
    padding: 10px;
    background: radial-gradient(circle, rgb(0 141 255 / 37%) 0%, rgb(255 117 0 / 71%) 100%);
    border-radius: 15px;
    text-align: center;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 230px;
}
.taxi-img img{
    height: 170px;
    object-fit: contain;
}
.taxi-head {
  text-align: center;
}

.taxi-head h4{
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: 700;
  text-transform: uppercase;
}

.taxi-head span{
  font-weight: 500;
  color: var(--main-color);
    font-weight: 600;
}

.taxi-feature{
    padding-top: 12px;
    margin: 8px 0 15px 0;
    border-top: 1px solid #ddd;
    position: relative;
    padding-inline: 15px;
}

.taxi-feature::before{
  content: "";
  position: absolute;
  width: 50px;
  height: 6px;
  background: var(--main-color);
  border-radius: 50px;
  left: 50%;
  top: -4px;
  transform: translateX(-50%);
}

.taxi-feature ul li{
  padding: 4px 0;
}

.taxi-feature ul li span{
  float: right;
}

.taxi-feature ul li i{
  width: 30px;
  height: 30px;
  line-height: 28px;
  color: #000;
  border-radius: 50px;
  margin-right: 10px;
  text-align: center;
  background: var(--main-color);
}

.taxi-content .theme-btn{
    width: calc(100% - 20px);
    display: block;
    margin-inline: auto;
    padding: 10px;
}

/* taxi filter */
.filter-btns{
  text-align: center;
  margin-bottom: 40px;
}

.filter-btns li{
  display: inline-block;
  background: #555;
  color: #fff;
  border-radius: 50px;
  margin: 0 5px 8px 0;
  padding: 8px 25px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
}

.filter-btns li.active{
  background: var(--main-color);
}
.taxi_btn_grid{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-block: 15px 5px;
    padding-block: 15px;
    border: 1px solid #d60d4563;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: #d60d450f;
}
.taxi_btn_grid .btn-theme{
    padding: 5px 13px;
    font-size: 14px;
    font-weight: 500;
}
.taxi_btn_grid .btn-theme:nth-child(2){
  background: var(--second-color);
}
.taxi_btn_grid .btn-theme:nth-child(3){
  background: #28a745;
}

.section_header{
  margin-bottom: 35px;
}
.section_header .sub-title{
  color: var(--theme-color);
  font-size: 19px;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  font-family: var(--body-font);
}
.section_header .sub-title:after{
  width: 20px;
  height: 3px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--theme-color);
  content: '';
  right: -27px;
}
.section_header .section-title{
  font-size: 38px;
  line-height: 1;
  color: #000;
  font-weight: 600;
  font-family: var(--body-font);
}
.section_header p{
  margin-top: 10px;
  color: #222;
}

/* Custom Styling using your brand color */
    .service__details {
        color: #333;
        line-height: 1.8;
    }
    .service__details .main-title {
        color: #000;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    .service__details h3 {
        color: var(--theme-color);
        font-weight: 700;
        border-left: 5px solid var(--theme-color);
        padding-left: 15px;
        margin-bottom: 15px;
    }
    .service__details .card-custom {
        border: 1px solid #eee;
        padding: 30px;
        border-radius: 10px;
        height: 100%;
        transition: all 0.3s ease;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    .service__details .card-custom:hover {
        border-color: var(--theme-color);
        transform: translateY(-5px);
    }
    .service__details .contact-box {
        background-color: var(--theme-color);
        color: #fff;
        padding: 40px;
        border-radius: 15px;
        margin-top: 50px;
    }
    .service__details .contact-box a {
        color: #fff;
        text-decoration: underline;
        font-weight: bold;
    }
    .service__details .highlight-text {
        color: var(--theme-color);
        font-weight: 600;
    }


.testimonial-area {
  background: url(../images/testi-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0 50px 0;
  border-radius: 20px;
  padding: 120px 0 120px;
}

.testi-single-box {
  background: #171a2b;
  border-radius: 20px;
  padding: 39px 27px 32px;
  text-align: center;
  margin-bottom: 0px;
}

p.testi-text {
  color: #fff;
  opacity: 0.702;
  padding: 20px 0 20px;
  margin: 0;
  position: relative;
  z-index: 1;
}

p.testi-text::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  border: 1px solid #292c3b;
  bottom: 0;
}

h3.testi-title {
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
}

h3.testi-title span {
  display: inline-block;
  font-size: 15px;
  line-height: 28px;
  color: #ff3c00;
  font-weight: 400;
  margin-left: 14px;
}

ul.testi-rating {
  padding: 15px 0 0px;
}

ul.testi-rating li i {
  display: inline-block;
  color: #ffc600;
  font-size: 15px;
  margin: 0 4px 0;
}

ul.testi-rating li {
  list-style: none;
  display: inline-block;
}

.testi-author {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: -25px;
}
.testi-author img{
    max-width: 80px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
}
.testi-author::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../images/testi7.png);
  background-repeat: no-repeat;
  background-position: center;

  filter: hue-rotate(-22deg);
  right: -31%;
}

.testi-author::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../images/testi8.png);
  background-repeat: no-repeat;
  background-position: center; 
   filter: hue-rotate(-22deg);
  left: -31%;
}
.testi-icon img{
  max-width: 48px;
  margin-inline: auto;
  filter: hue-rotate(-22deg);
}


/* Normal desktop :1300px. */
@media (min-width: 1300px) and (max-width: 1399px) {

.testi-author::before {
    left: -47%;
    width: 30%;
}
.testi-author::after {
    left: -8%;
    width: 50%;
}
}

@media (min-width: 1200px) and (max-width: 1299px) {
.testi-author::before {
    left: -47%;
    width: 30%;
}
.testi-author::after {
    left: -9%;
    width: 50%;
}
}

/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1199px) {
.testi-single-box {
    padding: 39px 10px 32px;
}

.testi-author::before {
    width: 30%;
    right: 0%;
}

.testi-author::after {
    width: 30%;
    left: 6px;
}
}

.why_boxes{
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  text-align: center;
}
.why_boxes .why_icon{
  position: relative;
    text-align: center;
    font-size: 35px;
    color: var(--theme-color);
    margin-bottom: 10px;
    line-height: 1;
}
.why_boxes .title{
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 10px;
}
.why_boxes p{
    color: #444;
    line-height: 1.2;
    font-size: 12px;
    margin-bottom: 0;
  }
  .why_middle_img{
    position: relative;
  }

img{
  max-width: 100%;
  height: auto;
}
@media(max-width: 768px){
  .email_cont{
    display: none;
  }
  .header_top_grid .right_side{
    display: none;
  }
  .hero-side .background_image{
    width: 100%;
    clip-path: none;
    filter: brightness(0.7);
  }
  .hero-side{
    padding-top: 70px;
  }
  .hero-content-1 .title h1, .hero-content-1 .title .h1{
    font-size: 25px;
  }
  .about_image_part{
    margin: 0;
  }
  .about_image_part .small_img-2{
    position: static;
    width: 100%;
    border: 0;
    margin-block: 10px;
  }
  .about_image_part .main_image{
    height: 284px;
    width: 284px;
  }
  .about_image_part .small_img{
    width: 108px;
    height: 120px;
    border-radius: 12px;
    border: 3px solid #fff;
  }
  .about_content_part{
    padding: 15px;
  }
  .about_content_part .grid_points li{
    width: 100%;
  }
  .section_header .sub-title{
    font-size: 16px;
  }
  .section_header .section-title{
    font-size: 27px;
    line-height: 1.3;
  }
  .testimonial-area{
    margin-inline: 10px;
  }
  .form_heading{
    font-size: 20px;
    width: max-content;
    padding: 9px 21px;
    margin-bottom: 7px;
  }
  .about_image::before, .about_image::after{
    width: 100px;
    height: 100px;
  }
  .section_header .section-title br{
    display: none;
  }
  .service__details .card-custom{
    padding: 15px;
  }
  .service__details .contact-box a{
    word-break: break-word;
    line-height: 1;
  }
  .why_middle_img{
    margin-bottom: 15px;
  }
}