/*----- Default CSS -----*/
body {
  font-family: 'Oxygen', sans-serif;
  color: #cba746;
  background-color: #fff;
  font-size: 16px;
}
.text-right{
  text-align: right;
}
.text-left{
  text-align: left;
}

.whatsapp_button {
    position:fixed;
    bottom:91px;
    right:17px;
    z-index: 99999;
}
.whatsapp_button img {
    width:65px;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}
.row{
  margin: 0;
}
.border-rl{
  border-right: 2px solid #e4e4e4;
  border-left: 2px solid #e4e4e4;
}
.landing-page-title {
  font-size: 48px;
  font-family: 'Oxygen', sans-serif;
  font-weight: 500;
  text-align: center;
  margin-bottom: 15px;
  color: #000;
}
p {
  line-height: 1.7;
}

a {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  text-decoration: none;
}
a:hover{
  text-decoration: none;
}
img {
  max-width: 100%;
}
::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar
{
	width: 8px;
	background-color: #F5F5F5;
	height: 5px;
}

::-webkit-scrollbar-thumb
{
	border-radius: 5px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #000;
}
.main-nav nav .right .navbar-nav .nav-item .dropdown-menu::-webkit-scrollbar{
  width: 3px;
}
.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}
.pt-50 {
  padding-top: 50px;
}

.pb-70 {
  padding-bottom: 70px;
}
.pb-50 {
  padding-bottom: 0;
}
.pb-100 {
  padding-bottom: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

button:focus {
  outline: 0;
}

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

ul {
  margin: 0;
  padding: 0;
}

.bk-wihte{
  background: #fff;
}
.s-pad{
  padding: 0 8px;
}
.l-pad{
  padding-left: 0;
}


.preloader {
  position: fixed;
  left: 0;
  width: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  z-index: 999999999999999;
  -webkit-transition: .9s;
  transition: .9s;
}

.preloader .loader {
  position: absolute;
  display: inline-block;
  left: 0;
  right: 0;
  margin: auto;
  top: 35%;
  -webkit-transform: translateY(-45%);
  transform: translateY(-45%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  max-width: 17%;
}

.preloader .loader .loader-outter {
  position: absolute;
  border: 4px solid #ffffff;
  border-left-color: transparent;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.btn i {
  padding: 0 5px;
}

.preloader .loader .loader-inner {
  position: absolute;
  border: 4px solid #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  left: calc(40% - 21px);
  top: calc(40% - 21px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.preloader .loader .indicator {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
}
.preloader .loader .indicator img{
  animation: dash 2s infinite;
}


.preloader::before,
.preloader::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  z-index: -1;
  background: #fff;
  -webkit-transition: .9s;
  transition: .9s;
}

.preloader::after {
  left: auto;
  right: 0;
}

.preloader.preloader-deactivate {
  visibility: hidden;
}

.preloader.preloader-deactivate::after,
.preloader.preloader-deactivate::before {
  width: 0;
}

.preloader.preloader-deactivate .loader {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes loader-outter {
  0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }

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

@keyframes loader-outter {
  0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }

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

@-webkit-keyframes loader-inner {
  0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }

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

@keyframes loader-inner {
  0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
  }

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

@-webkit-keyframes dash {
  62.5% {
      opacity: 0.3;
  }

  to {
      stroke-dashoffset: 0.3;
  }
}

@keyframes dash {
  62.5% {
      opacity: 0.3;
  }

  to {
      stroke-dashoffset: 0.3;
  }
}

/*----- Go Top CSS -----*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: 15px;
  right: 0;
  color: #ffffff;
  background-color: #cba746;
  z-index: 4;
  width: 45px;
  text-align: center;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .9s;
  transition: .9s;
  border-radius: 50%;
  border: 1px solid #cba746;
  -webkit-box-shadow: 0 2px 6px 0 #00000029;
  box-shadow: 0 2px 6px 0 #00000029;
}

.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  font-size: 25px;
  line-height: 45px;
}

.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top.active {
  left: 1%;
  -webkit-transform: translateY(-1%);
          transform: translateY(-1%);
  opacity: 1;
  visibility: visible;
}

.go-top:hover, .go-top:focus {
  color: #ffffff;
  border: 1px solid #011a41;
  background-color: #011a41;
}

.go-top:hover i:first-child, .go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top:hover i:last-child, .go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.clear{
  clear: both;
}
/*----- End Go Top CSS -----*/
/*----- Preloader CSS -----*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 100px auto;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
          animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
          animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.common-btn {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  background-color: #011a41;
  color: #fff;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  border-radius: 5px;
  opacity: 1;
  font-weight: 700;
  padding: 12px 25px;
}

.common-btn span {
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #011a41;
  -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 5px;
  opacity: 1;
}

.common-btn:hover {
  color: #fff !important;
  border: 1px solid #fff !important;
}

.common-btn:hover span {
  width: 225%;
  height: 562.5px;
}

.common-btn.two {
  background-color: #fb2448;
}

.common-btn.three {
  background-color: #011a41;
}

.common-btn.three span {
  background-color: #011a41;
}

.section-title {
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-title .sub-title {
  display: block;
  color: #011a41;
  margin-bottom: 3px;
  font-weight: 700;
}

.section-title h2 {
  margin-bottom: 0;
  font-size: 38px;
}

.section-title.two {
  margin-top: -5px;
}

.section-title.two .sub-title {
  color: #fb2448;
}

.section-title.three .sub-title {
  color: #355efc;
}
.main-btn{
    background: linear-gradient( 90deg,#000,#6a551c,#cba746);
    color: #fff!important;
    border: 1px solid #cba746;
    transition: all 0.5s ease-in-out !important;
}
.main-btn:hover{
  background: #fff !important;
  color: #cba746 !important;
  border: 1px solid #cba746;
}
/*----- Home Demo One CSS -----*/
/*-- Header --*/
.header-area {
  background-color: #011a41;
  padding-top: 20px;
  padding-bottom: 20px;
}

.header-area .left ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 15px;
}

.header-area .left ul li:last-child {
  margin-right: 0;
}

.header-area .left ul li i {
  display: inline-block;
  font-size: 20px;
  position: relative;
  top: 4px;
  color: #011a41;
  margin-right: 2px;
}

.header-area .left ul li a {
  display: inline-block;
  color: #fff;
  font-size: 14px;
}

.header-area .left ul li a:hover {
  color: #011a41;
}

.header-area .right {
  text-align: right;
}

.header-area .right ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}

.header-area .right ul li:last-child {
  margin-right: 0;
}

.header-area .right ul li a {
  display: block;
  font-size: 18px;
  color: #fff;
}

.header-area .right ul li a:hover {
  color: #011a41;
}

/*-- Navbar --*/
.top-header{}
.top-header ul{
    list-style: none;
    padding: 10px 0;
}
.top-header ul li{
    display: inline-block;
    padding: 0 5px;
    color: #fff;
    font-size: 14px;
}
.top-header ul li a{
    color: #cba746;
    padding: 0;
    transition: all 0.5s ease-in-out;
    text-decoration: none;
}
.top-header ul li a:hover{
}
.top-header ul li img{
  width: 19px;
}
.top-header ul li i{
    padding: 0 5px;
    color: #cba746;
}
.top-header ul li span{
    font-weight: 700;
}
.top-header .dropdown{}
.top-header .dropdown .dropdown-menu{
    z-index: 9999;
}
.top-header .dropdown .dropdown-menu li{
    display: block;
}
.top-header .dropdown .dropdown-menu li a{
    color: #cba746;
    padding: 5px;
}
.top-header .dropdown .dropdown-menu li.active a{
  color: #fff;
  background: #cba746;
}
.top-header .right{
    text-align: right;
}
.main-nav {
  background: #fff;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  padding: 5px;
  -webkit-box-shadow: 0 2px 6px 0 #00000029;
  box-shadow: 0 2px 47px -56px #00000029;
  position: relative;
}
.navbar-area{
    -webkit-box-shadow: 0 3px 10px 0 rgb(0 0 0 / 16%);
    box-shadow: 0 3px 10px 0 rgb(0 0 0 / 16%);
    min-height: 60px;
}
.main-nav.menu-shrink {
  padding-top: 0px;
  padding-bottom: 3px;

}
.main-nav.menu-shrink .logo{height: 80px;}
.mean-menu{
  display: flex !important;
  flex-grow: 1;
  align-items: center;
  flex-basis: auto;
}
.main-nav nav {
  padding: 0;
}
.main-nav .logo{
    position: relative;
    width: 100%;
    height: 95px;
    transition: all 0.5s ease-in-out;
}
.main-nav .logo img{
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.navbar-brand{
    width: 100%;
    padding: 0;
}
.main-nav nav .navbar-nav {
  margin-left: auto;
  height: auto;
  overflow: initial;
  flex-direction: row;
}

.main-nav nav .navbar-nav .nav-item {
  align-self: center;
}
.main-nav nav .navbar-nav .nav-item:hover a {
  color: #cba746;
}

.main-nav nav .navbar-nav .nav-item a {
  font-weight: 700;
  color: #000;
  margin-left: 7px;
  margin-right: 7px;
  font-size: 15px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  cursor: pointer;
}
.main-nav nav .navbar-nav .nav-item a.main-btn{
    padding: 10px;
    font-size: 12px;
}

.main-nav nav .navbar-nav .nav-item a:hover, .main-nav nav .navbar-nav .nav-item a:focus, .main-nav nav .navbar-nav .nav-item a.active {
  color: #cba746;
}

.main-nav nav .navbar-nav .nav-item a i {
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  top: 3px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu {
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 0;
}
.main-nav .drop-right nav .navbar-nav .nav-item .dropdown-menu{
  right: inherit;
  left: 0;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  top: 0 !important;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover a {
  color: #011a41;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child a {
  border-bottom: 0;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
  font-weight: 700;
  padding: 9px 15px;
  color: #011a41;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #f1f1f1;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:before {
  position: absolute;
  content: '';
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #cba746;
  -webkit-transition: .3s;
  transition: .3s;
  z-index: -1;
  border-radius: 0px 50px 50px 0px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover, .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus, .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #011a41;
  padding-left: 18px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover:before, .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus:before, .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active:before {
  width: 3px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  top: 15px;
  left: unset;
  right: -100%;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #011a41;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #011a41;
}

.main-nav .dropdown-toggle::after {
  display: none;
}

.side-nav .language {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}

.side-nav .language .nice-select {
  height: 30px;
  line-height: 30px;
  background-color: transparent;
  border: 0;
  font-size: 16px;
  color: #011a41;
  font-weight: 700;
}

.side-nav .language .nice-select:after {
  border-bottom: 2px solid #011a41;
  border-right: 2px solid #011a41;
}

.side-nav .language .nice-select ul {
  border: 0;
  border-radius: 0;
  display: block;
  width: 100%;
}

.side-nav .language .nice-select ul li {
  display: block;
  width: 100%;
  color: #011a41;
  font-size: 15px;
}

.side-nav .consultant-btn {
  display: inline-block;
  color: #fff;
  background-color: #011a41;
  border-radius: 5px;
  padding: 12px 25px;
  font-weight: 700;
  vertical-align: middle;
}

.side-nav .consultant-btn:hover {
  background-color: #011a41;
}
.user-box{
    padding: 15px;
}
.user-box .user-img{
    position: relative;
    width: 70px;
    height: 70px;
}
.user-box .user-img img{
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    border-radius: 50%;
}
.user-box .flex-grow-1{
    align-self: center;
}
.user-box .flex-grow-1 h5{
    font-size: 16px;
    font-weight: 500;
}
.user-box .flex-grow-1 h5 i{
    float: right;
    color: #676767;
}
/*-- HEADER --*/
/*-- SEARCH --*/
#search{
    padding: 90px 0;
    background-image: url(../frontend/images/search/img-slider.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
#search .search-box{
    background-color: hsla(0,0%,100%,.83)!important;
    padding: 60px 0 45px;
}
.search-box .card{
    border: 0;
    padding: 10px;
}
.search-box .card .nice-select{
    width: 100%;
    border: 0;
    line-height: 30px;
}
.search-box .card .text-center.nice-select{
  text-align: center !important;
}
.search-box .main-nav{
  position: relative;
}
/*-- SEARCH --*/
/*-- Footer --*/
.footer-area.three .footer-item h3:before {
  background-color: #355efc;
}

.footer-area.three .footer-item .footer-logo ul li a:hover {
  color: #355efc;
}

.footer-area.three .footer-item .footer-logo ul li i {
  color: #355efc;
}

.footer-area.three .footer-item .footer-links ul li a:hover {
  color: #355efc;
}

.footer-area.three .footer-item .footer-newsletter .newsletter-form .common-btn {
  background-color: #355efc;
}

/*-- Copyright --*/
.copyright-area.three .copyright-item p a {
  color: #355efc;
}

.copyright-area.three .copyright-item p a:hover {
  color: #fff;
}

.sidebarCollapse {
  width: auto;
  height: auto;
  background: none;
  cursor: pointer;
  border: 0;
  padding: 0;
}
.sidebarCollapse.navbar-btn{
  
  width: 40px;
  height: 40px;
}
.sidebarCollapse span {
  width: 80%;
  height: 3px;
  margin: 0 auto;
  display: block;
  background: #5c5c5c;
  transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
  transition-delay: 0.2s;
}

.sidebarCollapse span:first-of-type {
  transform: rotate(45deg) translate(2px, 2px);
}

.sidebarCollapse span:nth-of-type(2) {
  opacity: 0;
}

.sidebarCollapse span:last-of-type {
  transform: rotate(-45deg) translate(2px, -2px);
}

#sidebar {
  min-width: 360px;
  max-width: 250px;
  background: #fff;
  color: #5a5a5a;
  transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
  transform-origin: bottom left;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  bottom: 0;
  overflow-y: scroll;
}

#sidebar .navbar-myHeader {

  position: absolute;

  top: 0px;

  z-index: 999999999999999999999999;

  right: initial;

  left: 0;
}

#sidebar .logo-img {
  position: relative;
  width: 90%;
  height: 60px;
}

#sidebar .logo-img img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#sidebar.active {
  margin-left: -250px;
  transform: rotateY(100deg);
}

#sidebar .sidebar-myHeader {
  padding: 20px;
  background: #6d7fcc;
}

#sidebar ul.components {
  padding: 15px 0;
  border-bottom: 0;
  overflow: initial;
  height: auto;
}

#sidebar ul p {
  color: #000;
  padding: 10px;
  text-align: center;
}

#sidebar ul li a {
  padding: 10px 20px;
  font-size: 1.1em;
  display: block;
  color: #5a5a5a;
  border-bottom: 2px solid #e4e4e4;
}


#sidebar ul li.active>a,
a[aria-expanded="true"] {
  /* color: #173134 !important; */
}



.sidebarCollapse.active span {
  transform: none;
  opacity: 1;
  margin: 10px auto;
  background: #fff;
}

.list-unstyled i {padding-right:  30px;}


/*----- End Home Demo Three CSS -----*/
/*-- Footer --*/
footer {
  background: #fff;
}

.footer-item {
  margin-bottom: 30px;
}

.footer-item h3 {
  font-size: 24px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  color: #000;
}

.footer-item h3:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #cba746;
}

.footer-item .footer-logo .logo {
  display: block;
  margin-bottom: 20px;
  height: 100%;
}

.footer-item p , .footer-item a{
  color: #cba746;
}

.footer-item .footer-logo ul li {
  list-style-type: none;
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
}

.footer-item .footer-logo ul li:last-child {
  margin-bottom: 0;
}

.footer-item .footer-logo ul li i {
  position: absolute;
  top: 0;
  left: 0;
  color: #e2e5e9;
  font-size: 25px;
}

.footer-item .footer-logo ul li span {
  display: inline-block;
  font-weight: 700;
  margin-right: 3px;
  color: #fff;
}

.footer-item .footer-logo ul li a {
  display: inline-block;
  color: #fff;
}

.footer-item .footer-logo ul li a:hover {
  color: #c4c9d2;
}

.footer-item .footer-links ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 10px;
}

.footer-item .footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-item .footer-links ul li a {
  color: #cba746;
  display: block;
}

.footer-item .footer-links ul li a:hover {
  color: #000;
  padding-left: 5px;
}

.footer-item .footer-newsletter p {
  color: #fff;
  margin-bottom: 30px;
}

.footer-item .footer-newsletter .newsletter-form .form-control {
  height: 50px;
  border: 0;
  border-radius: 0;
  padding-left: 15px;
  font-size: 15px;
}

.footer-item .footer-newsletter .newsletter-form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
}

.footer-item .footer-newsletter .newsletter-form .common-btn {
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  width: 100%;
  text-align: center;
  height: 50px;
  opacity: 1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  border: 0;
  border-radius: 0;
  margin-top: 10px;
  background: #c4c9d2;
  color: #011a41;
}

.footer-item .footer-newsletter .newsletter-form .validation-danger {
  color: #fff;
  margin-top: 10px;
}
.footer-logo{
    position: relative;
    width: 100%;
    height: 175px;
}
.footer-logo img{
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    display: block;
}
.footer-social ul{
    margin: 15px 0;
}
.footer-social ul li{
    display: inline-block;
    padding: 5px;
    transition: all 0.5s ease-in-out;
}
.footer-social ul li img{
    max-width: 38px;
}

.footer-social ul li:hover img{
  transform: translate(0px, -7px);
}
/*-- Copyright --*/
.copyright-area {
  text-align: center;
  background: #000;
  padding: 15px 0;
}

.copyright-area .copyright-item p {
  margin-bottom: 0;
  font-size: 15px;
  color: #fff;
}

.copyright-area .copyright-item p a {
  display: inline-block;
  color: #cba746;
  font-weight: 700;
}

.copyright-area .copyright-item p a:hover {
  color: #fff;
}

/*----- End Home Demo One CSS -----*/


.input-daterange input {
  color: #cba746 !important;
  font-size: 18px !important;
  letter-spacing: 1px;
  position: relative;
  font-weight: bold !important;
  background: none !important;
}


.input-daterange input:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 0;
  outline-width: 0
}

.input-daterange::placeholder {
  color: #cba746;
  opacity: 1
}

.input-daterange:-ms-input-placeholder {
  color: #cba746
}

.input-daterange::-ms-input-placeholder {
  color: #cba746
}

.input-daterange button:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline-width: 0
}

.input-daterange .datepicker {
  background-color: #fff;
  border-radius: 0 !important;
  padding: 15px 20px !important;
  align-content: center !important
}

.datepicker-dropdown {
  top: 0;
}

.datepicker-dropdown.datepicker-orient-left:before {
  left: calc(50% - 6px) !important
}

.datepicker-dropdown.datepicker-orient-left:after {
  left: calc(50% - 5px) !important
}

.datepicker table tr td.today,
span.focused {
  border-radius: 50% !important;
  background-image: linear-gradient(#FFF3E0, #FFE0B2)
}

.datepicker table tr td.today.range {
  background-image: linear-gradient(#eeeeee, #eeeeee) !important;
  border-radius: 0 !important
}

.input-daterange thead tr:nth-child(3) th {
  font-weight: bold !important;
  padding-top: 10px;
  padding-bottom: 10px
}

.old,
.day,
.new {
  width: 40px !important;
  height: 40px !important;
  border-radius: 0px !important;
  border: 1px solid lightgrey !important;
}

.day.old,
.day.new {
  background-color: #F5F5F5 !important;
  color: #E0E0E0 !important
}

.day.old:hover,
.day.new:hover {
  border-radius: 0px !important
}

.old-day:hover,
.day:hover,
.new-day:hover,
.month:hover,
.year:hover,
.decade:hover,
.century:hover {
  background-color: #eee
}

.datepicker .active {
  background-image: linear-gradient(#90CAF9, #64B5F6) !important;
  color: #fff !important
}

.range-start,
.range-end {
  
  background: #cba746;
}
.range-start{
  border-radius: 50% 0 0 50%!important;
}
.range-end{
  border-radius: 0 50% 50% 0 !important;
}
.range {
  color: #cba746!important;
}

.datepicker .prev,
.datepicker .next,
.datepicker .datepicker-switch {
  border-radius: 0 !important;
  padding: 10px 10px 10px 10px !important;
  font-size: 18px;
  opacity: 0.7;
  color: #cba746
}

.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker .datepicker-switch:hover {
  background-color: inherit !important;
  opacity: 1
}

@media screen and (max-width: 500px) {
  .datepicker-dropdown.datepicker-orient-right:before {
      right: calc(50% - 6px) !important
  }

  .datepicker-dropdown.datepicker-orient-right:after {
      right: calc(50% - 5px) !important
  }
}

.input-daterange .form-floating {
  position: relative;
  display: inline-block;
  width: 49%;
}

.input-daterange .form-floating>label{
  color: #000;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: inherit;
  outline: 0;
  box-shadow: none;
}
.search-box .card .nice-select .current{
  font-size: 20px;
  color: #cba746;
  text-align: center;
}
.search-box .card .nice-select:after{
  display: none;
}
.search-box .card .nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  width: 100%;
  max-height: 500px;
  overflow-y: scroll;
}
.search-box .card .nice-select.open .list::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

.search-box .card .nice-select.open .list::-webkit-scrollbar
{
	width: 5px;
	background-color: #F5F5F5;
}

.search-box .card .nice-select.open .list::-webkit-scrollbar-thumb{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #D62929;
}
.search-box .card .form-control{
	border: 0;
	color: #848484;
}
.search-box .btn{
  min-width: 240px;
  max-width: 300px;
  width: 100%!important;
  height: 68px;
  line-height: 46px;
  margin: 25px auto;
  border-radius: 50px;
  font-weight: 700;
  font-size: 19px;
}

/**** Places *****/
#places{
    padding: 50px 0 20px;
}
#places .landing-page-title{
  margin-bottom: 25px; 
}
#places.blog .landing-page-title{
  margin-bottom: 0; 
}
#places.blog .all{
  color: #cba746
}
#places .card{
    border: 0;
    margin: 15px 0;
    -webkit-box-shadow: 0 3px 10px 0 rgb(0 0 0 / 16%);
    box-shadow: 0px 0px 9px 0px rgb(0 0 0 / 16%);
    transition: all 0.5s ease-in-out;
    background-color: initial;
}
#places .card:hover{
  box-shadow: none;
}
#places .card .card-img{
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    /* z-index: 1; */
}
#places .card .card-img img{
    width: auto;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.5s ease-in-out;
    max-height: 100%;
    display: block;
}
#places .card  .price{
    position: absolute;
    top: -14px;
    left: 0;
    background: linear-gradient( 90deg,#000,#6a551c,#cba746);
    padding: 7px;
    border-radius: 8px 0 0 0;
    z-index: 9;
    color: #fff;
}
#places .card  .price:after{
  display: block;
  position: absolute;
  top: 0px;
  right: -17px;
  content: "";
  height: 0;
  width: 7px;
  border-left: 17px solid #cba746;
  border-top: 14px solid transparent;
  border-right-color: #cba746;
}
#places .card .price span{
    font-weight: 700;
    padding-right: 5px;
}
#places .card:hover .card-img img{transform: scale(1.1);}
#places .card .card-body{
}
#places .card .card-body h5{
    font-size: 18px;
    margin: 0;
    height: 55px;
    overflow: hidden;
}
#places .card .card-body p{
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin: 10px 0;
    height: 59px;
    overflow: hidden;
}
#places .card .card-body .d-flex{
    margin-bottom: 10px;
}
#places .card .card-body .d-flex i{
    color: #cba746;
}
#places .card .card-body .d-flex h6{}
#places .card .card-body .d-flex p{
    margin: 0;
    line-height: initial;
    height: auto;
}
#places .card .card-body .btn{
    width: 100%;
}
#places.blog.page .card.box{
    margin: 5px 0;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}
#places.blog.page .card.box.big{}
#places.blog.page .card.box .card-img{
    height: 160px;
}
#places.blog.page .card.box .overlay{
  background: linear-gradient(180deg,rgb(0 0 0 / 11%) 60%,rgb(12 12 12 / 72%) 81%,rgba(51,50,50,1) 100%);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
#places.blog.page .card.box.big .card-img{
    height: 330px;
}
#places.blog.page .card.box .card-img img{
    max-height: initial;
    margin: auto;
}
#places.blog.page .card.box h5{
    position: absolute;
    bottom: 0;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    z-index: 2;
}
#places.blog.details .card.card-details{
    border: 0;
    margin: 15px 0;
    -webkit-box-shadow: 0 3px 10px 0 rgb(0 0 0 / 16%);
    box-shadow: 1px 0px 9px 0px rgb(0 0 0 / 16%);
    transition: all 0.5s ease-in-out;
    background-color: initial;
    border-radius: 25px;
    overflow: hidden;
}
#places.blog.details .card.card-details:hover{
  box-shadow: 0px 0px 9px 0px rgb(0 0 0 / 16%);
}
#places.blog.details .card.card-details .card-img{
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    /* z-index: 1; */
}
#places.blog.details .card.card-details .card-body p{
    font-size: 16px;
    height: auto;
}
#places.blog.details .card.card-details .card-body ul{
    padding: 0 15px;
    margin: 20px 0;
}
#places.blog.details .card.card-details .card-body ul li{
    color: #666;
    font-size: 15px;
    line-height: 1.4;
    margin: 10px 0;
}
#places.blog.details .card.card-details .card-body ul li::marker{
    color: #1889cc;
}
#places.blog.details .card.card-details .card-body .share-social ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
#places.blog.details .card.card-details .card-body .share-social li{
    display: inline-block;
    padding-right: 8px;
}
#places.blog.details .card.card-details .card-body .share-social li img{
    max-width: 32px;
}
#places.blog.details .related-articles{
  padding-top: 50px;
}
/**** Places *****/ 
/**** search page *****/
#search-page{
  padding: 25px 0;
} 
#search-page .search-box .card .form-control{
    border-radius: 50px;
    -webkit-box-shadow: 0 1px 8px -2px #7e7e7e;
    box-shadow: 0 1px 8px -2px #7e7e7e;
    height: 55px;
    line-height: 45px;
} 
#search-page .search-box .btn{
    min-width: inherit;
    margin: 0;
    height: 55px;
    line-height: 40px;
} 
#search-page .filter{
    margin-top: 30px;
}
#search-page .filter .view-map{
    -webkit-box-shadow: 0 2px 6px 0 #00000029;
    box-shadow: 0 2px 6px 0 #00000029;
}
#search-page .filter .map-btn{
    position: relative;
    padding: 0;
    width: 100%;
}
#search-page .filter .map-btn img{
    width: 100%;
}
#search-page .filter .map-btn p{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    padding: 35px;
    font-size: 18px;
    font-weight: 700;
    color: #cba746;
}
.filter-card{
    -webkit-box-shadow: 0 2px 6px 0 #00000029;
    box-shadow: 0 2px 6px 0 #00000029;
    margin-top: 15px;
    border-radius: 0;
}
.filter-card .card-header{
    background: #cba746;
    border-radius: 0;
}
.filter-card .card-header h6{
    color: #fff;
    display: inline-block;
    margin-bottom: 0;
}
.filter-card .card-header a{
    float: right;
    color: #fff;
    font-size: 14px;
    text-decoration: revert;
}
.filter-card .card-body p{margin-bottom: 5px;}
.filter-card .card-body .stars .stars-list{
    list-style: none;
    margin: 0;
    text-align-last: justify;
}
.filter-card .card-body .stars .stars-list li{
    display: inline-block;
}
.filter-card .card-body .stars{
    margin-bottom: 20px;
}
.zero-btn{
    background: #d00019;
    color: #fff;
    padding: 5px 8px;
    font-size: 14px;
}
.six-btn{
    background: #ffca00;
    color: #fff;
    padding: 5px 8px;
    font-size: 14px;
}
.seven-btn{
    background: #cba746;
    color: #fff;
    padding: 5px 8px;
    font-size: 14px;
}
.eight-btn{
    background: #66bd23;
    color: #fff;
    padding: 5px 8px;
    font-size: 14px;
}
.nine-btn{
    background: #00953c;
    color: #fff;
    padding: 5px 8px;
    font-size: 14px;
}
.range-slider {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.range-slider label {
  color: #fff;
  font-size: 13px;
}
.range-slider .number-group {
  flex: 1 0 auto;
  height: 30px;
  font-weight: 300;
  font-size: 13px;
  color: #fff;
  margin-top: 10px;
}
.range-slider .number-group .number-input {
  width: auto;
  height: auto;
  text-align: center;
  color: #3FAFFA;
  border: 0;
  padding: 0;
  font-weight: 700;
}
.range-slider .number-group .number-input:first-of-type {
  margin-right: 7px;
}
.range-slider .number-group .number-input:last-of-type {
  margin-left: 7px;
  float: right;
}
.range-slider .number-group .number-input::-webkit-outer-spin-button, .range-slider .number-group .number-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.range-slider .number-group .number-input:invalid, .range-slider .number-group .number-input:out-of-range {
  border: 2px solid red;
}
.range-slider .range-group {
  position: relative;
  flex: 0 0 100%;
  height: 10px;
}
.range-slider .range-group .range-input {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-bottom: 0;
  -webkit-appearance: none;
  width: 100%;
  border-bottom: 0;
}
.range-slider .range-group .range-input:focus {
  outline: 0;
}
.range-slider .range-group .range-input::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  animation: 0.2s;
  background: #3FAFFA;
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}
.range-slider .range-group .range-input::-webkit-slider-thumb {
  z-index: 2;
  position: relative;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #3FAFFA;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}
.range-slider .range-group .range-input::-moz-range-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  animation: 0.2s;
  background: #3FAFFA;
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}
.range-slider .range-group .range-input::-moz-range-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid #2497e3;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #3FAFFA;
  cursor: pointer;
}
.range-slider .range-group .range-input::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animation: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.range-slider .range-group .range-input::-ms-fill-lower, .range-slider .range-group .range-input::-ms-fill-upper {
  background: #3FAFFA;
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}
.range-slider .range-group .range-input::-ms-thumb {
  z-index: 2;
  position: relative;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #3FAFFA;
  cursor: pointer;
}
/* for demo purposes */
.range-slider, .filter-range {
  margin: 0 auto 30px;
  max-width: 100%;
}
.filter-card hr{
  margin-top: 5px;
  margin-bottom: 5px;
}
.filter-card .nice-select{
  width: 100%;
  line-height: 30px;
}
.nice-select.open .list{
  width: 100%;
}

.distance-range {
  height: auto;
  width: 100%;
  position: relative;
}
.distance-range input {
  width: 100%;
  background: #3faffa;
}
.distance-range .list-container {
  width: auto;
  height: 25px;
  overflow: hidden;
  border: 0;
}
.distance-range ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: all .4s ease-in-out;
}
.distance-range ul li {
  width: auto;
  height: 25px;
  line-height: 25px;
  color: #3faffa;
  font-size: 14px;
  pointer-events: none;
  font-weight: 700;
}
.distance-range input::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  animation: 0.2s;
  background: #3FAFFA;
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}
.distance-range input::-webkit-slider-thumb {
  z-index: 2;
  position: relative;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #3FAFFA;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}

.distance-range input::-moz-range-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  animation: 0.2s;
  background: #3FAFFA;
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}
.distance-range input::-moz-range-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid #2497e3;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #3FAFFA;
  cursor: pointer;
}
.distance-range input::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animation: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.distance-range input::-ms-fill-lower, .distance-range input::-ms-fill-upper {
  background: #3FAFFA;
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}
.distance-range input::-ms-thumb {
  z-index: 2;
  position: relative;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #3FAFFA;
  cursor: pointer;
}
#search-page .hotel-tabs{
    margin-top: 30px;
}
#search-page.wishlist-page  .hotel-tabs{
  margin-top: 0px;
}
#search-page .hotel-tabs .nav-pills{
    justify-content: space-between;
}
#search-page .hotel-tabs .nav-pills .nav-item{
    width: 20%;
    padding: 0 5px;
}
#search-page .hotel-tabs .nav-pills .nav-link{width: 100%;background: #f4f5f9;color: #cba746;border-radius: 0;}
#search-page .hotel-tabs .nav-pills .nav-link.active{
    background: #cba746;
    color: #fff;
    -webkit-box-shadow: 0 2px 6px 0 #00000029;
    box-shadow: 0 2px 6px 0 #00000029;
}
#search-page .hotel-tabs .tab-content .tab-pane .d-flex{
    margin-bottom: 10px;
    -webkit-box-shadow: 0 2px 6px 0 #00000029;
    box-shadow: 0 2px 6px 0 #00000029;
    position: relative;
}
#search-page .hotel-tabs .tab-content .tab-pane .d-flex .wishlist{
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
}
#search-page .hotel-tabs .tab-content .tab-pane .d-flex .wishlist img{
    width: 25px;
}
#search-page .hotel-tabs .tab-content .tab-pane .d-flex .flex-shrink-0{
    position: relative;
    width: 196px;
    height: 170px;
}
#search-page .hotel-tabs .tab-content .tab-pane .d-flex .flex-shrink-0 img{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}
#search-page .hotel-tabs .tab-content .tab-pane .d-flex .flex-grow-1{
    padding: 10px;
}
#search-page .hotel-tabs .tab-content .tab-pane .d-flex .flex-grow-1 h5{
    font-size: 18px;
    margin-bottom: 0px;
}
#search-page .hotel-tabs .tab-content .tab-pane .d-flex .flex-grow-1 .my-rating{
    margin-bottom: 5px;
}
#search-page .hotel-tabs .tab-content .tab-pane .d-flex .flex-grow-1 .address{
    margin-bottom: 5px;
    font-size: 14px;
    color: #212529;
    line-height: 1.5;
}
#search-page .hotel-tabs .tab-content .tab-pane .d-flex .flex-grow-1 .distance-of-city{
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 700;
    color: #848484;
}
#search-page .hotel-tabs .tab-content .tab-pane .d-flex .flex-grow-1 .distance-of-city span{
    color: #cba746;
}
#search-page .hotel-tabs .tab-content .tab-pane .d-flex .flex-grow-1 .map-btn{
    padding: 0;
}

#search-page .hotel-tabs .tab-content .tab-pane .d-flex .flex-grow-1 .map-btn p{
    margin: 0;
    color: #cba746;
    font-weight: 700;
}
#search-page .hotel-tabs .tab-content .tab-pane .d-flex .flex-grow-1.secound{
    min-width: 25%;
    text-align: center;
}
#search-page .hotel-tabs .tab-content .tab-pane .d-flex .flex-grow-1 .stutas{
    font-size: 18px;
    margin-bottom: 5px;
}
#search-page .hotel-tabs .tab-content .tab-pane .d-flex .flex-grow-1 .price{
    font-size: 26px;
    color: #cba746;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5px;
}
#search-page .hotel-tabs .tab-content .tab-pane .d-flex .flex-grow-1 .price span{
    display: block;
    font-size: 14px;
    color: #848484;
}
#search-page .hotel-tabs .tab-content .tab-pane .d-flex .flex-grow-1 .main-btn{
    padding: 20px 35px;
    text-transform: uppercase;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}
.red{
  color: #d00019 !important;
}
.green{
  color: #00953c !important;
}
.blue{
  color: #cba746 !important;
}

/**** search page *****/
/**** hotel details *****/
#hotel-details{
    padding: 40px 0;
}
#hotel-details .card{
    padding: 15px;
    border-radius: 15px;
    border: 0;
    -webkit-box-shadow: 0 2px 6px 0 #00000029;
    box-shadow: 0 2px 6px 0 #00000029;
    margin-bottom: 20px;
    position: relative;
}
#hotel-details .card .gallery{
    overflow: hidden;
}
#hotel-details .card .gallery .main-img{
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}
#hotel-details .card .gallery .main-img img{
  position: absolute;
  max-width: 100%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: auto;
}
#hotel-details .card .gallery .small-imgs{
    width: 100%;
}
#hotel-details .card .gallery .small-imgs img{
    width: 185px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100px;
}
#hotel-details .card .form-control {
  border-radius: 50px;
  -webkit-box-shadow: 0 1px 8px -2px #7e7e7e;
  box-shadow: 0 1px 8px -2px #7e7e7e;
  height: 55px;
  line-height: 45px;
}
#hotel-details .card .btn{
  margin: auto;
  display: block;
  height: 55px;
  width: 100%;
  border-radius: 54px;
  font-weight: 700;
  text-transform: uppercase;
}
#hotel-details .card.hotel-desc{
    padding: 20px;
}
#hotel-details .card.hotel-desc .d-flex .flex-shrink-0{
    width: 60%;
}

#hotel-details .card.hotel-desc .d-flex .flex-grow-1{
    display: flex;
    text-align: center;
    justify-content: center;
}
#hotel-details .card.hotel-desc .d-flex .flex-grow-1 .my-rating{
    margin-right: 15px;
}
#hotel-details .card.hotel-desc .d-flex .flex-grow-1 .rate{
    margin-left: 15px;
}
#hotel-details .card.hotel-desc .d-flex .flex-grow-1 .rate .rate-num{
    background: #06b4db4d;
    padding: 7px;
    border-radius: 50%;
    font-weight: 700;
    width: 35px;
    height: 35px;
    font-size: 12px;
    color: #00415a;
}
#hotel-details .card.hotel-desc .d-flex .flex-grow-1 .rate .rate-title{
    font-size: 22px;
}
#hotel-details .card.hotel-desc .address-text{
  color: #848484;
  margin: 0;
}
#hotel-details .card.hotel-desc .text p, #hotel-details .card.hotel-desc .text li{
    font-size: 14px;
    color: #848484;
}
#hotel-details .card.hotel-desc .text span{
    display: block;
}
#hotel-details .card.hotel-desc .text ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
#hotel-details .card.hotel-desc .text ul li{
    display: inline-block;
    font-size: 17px;
    min-width: 33%;
    padding: 10px 0;
}
#hotel-details .card.hotel-desc .text ul li i{
    margin-right: 7px;
}
#hotel-details .card.hotel-tags span{
    background: #f4f5f9;
    color: #65bfd1;
    margin-right: 5px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}
#hotel-details .card.hotel-tags .reset{
    position: absolute;
    top: 15px;
    right: 15px;
    color: #f5df70;
}
#hotel-details .card.rooms .d-flex .flex-shrink-0{
    width: 160px;
    overflow: hidden;
}
#hotel-details .card.rooms .d-flex .flex-shrink-0 img{
    border-radius: 15px;
    height: auto;
}
#hotel-details .card.rooms .d-flex .flex-grow-1 .desc{
    margin-bottom: 5px;
    font-size: 14px;
    color: #848484;
}
#hotel-details .card.rooms .d-flex .flex-grow-1 .room-details p i{
  vertical-align: middle;
}
#hotel-details .card.rooms .d-flex .flex-grow-1 .room-details p{
    margin-bottom: 5px;
}
#hotel-details .card.rooms .d-flex .flex-grow-1 .refund{
    margin-bottom: 5px;
    color: #cba746;
}
#hotel-details .card.rooms .d-flex .flex-grow-1 .price-tag{
    text-align: center;
}
#hotel-details .card.rooms .d-flex .flex-grow-1 .price-tag .price{
    color: #cba746;
    font-size: 20px;
    font-weight: 700;
}
#hotel-details .card.rooms .d-flex .flex-grow-1 .price-tag .title{
    color: #848484;
    font-size: 14px;
}
#hotel-details .card.rooms .d-flex .flex-grow-1 .price-tag p{
    color: #848484;
}
#hotel-details .card.rooms .d-flex .flex-grow-1 .refund i{
    vertical-align: middle;
}
#hotel-details .card.rooms .d-flex .w-max{
    width: 300px;
    padding-right: 10px;
}
.border-right{border-right: 1px solid #cdcdcd;}
#hotel-details .card.rooms .cancellation span{
    color: #f5df70;
}
#hotel-details .card.rooms .cancellation p{
    margin: 7px 0;
    color: #848484;
}
#hotel-details .card.rooms .nav-tabs {
    border: 0;
    margin: 0;
    padding: 0;
}
#hotel-details .card.rooms .nav-tabs .nav-item .nav-link{
    border: 0;
    padding: 0px 15px;
    font-size: 16px;
    color: #848484;
}
#hotel-details .card.rooms .nav-tabs .nav-item .nav-link i{
    vertical-align: middle;
}
#hotel-details .card.rooms .nav-tabs .nav-item .nav-link.active {
    color: #cba746;
}
#hotel-details .card.rooms .tab-content .tab-pane ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
#hotel-details .card.rooms .tab-content .tab-pane li{
    display: inline-block;
    font-size: 16px;
    min-width: 33%;
    padding: 10px 0;
    color: #848484;
}
#hotel-details .card.rooms .tab-content .tab-pane li i{
    vertical-align: middle;
}
#hotel-details .view-all{
    font-weight: 700;
    width: 100%;
    border: 2px solid #cba746;
    color: #cba746;
    margin: 15px 0 0;
    transition: all 0.5s ease-in-out;
    -webkit-box-shadow: 0 2px 6px 0 #00000029;
    box-shadow: 0 2px 6px 0 #00000029;
}
#hotel-details .view-all:hover{
  background-color: #cba746;
  color: #fff;
  -webkit-box-shadow: 0;
  box-shadow: 0;
}
#hotel-details .map.card{
    padding: 0;
    overflow: hidden;
}
#hotel-details .map.card .card-header{
    background: none;
    text-align: center;
    border: 0;
    color: #848484;
    font-size: 17px;
}
#hotel-details .map.card .find-us iframe{
    height: 100% !important;
}
#hotel-details .card.attractions{}
#hotel-details .card.attractions .card-header{
    background: none;
    text-align: center;
    margin: 0;
    border: 0;
}
#hotel-details .card.attractions .card-header p{
    margin: 0;
    color: #848484;
    font-size: 18px;
}
#hotel-details .card.attractions .accordion-button{
    background: none;
    border: 0;
    border-bottom: 1px solid #d1d1d1;
    color: #848484;
    display: block;
    font-size: 15px;
    padding: 15px 0;
}
#hotel-details .card.attractions .accordion-button .badge{
    float: right;
    background-color: inherit !important;
    color: #848484;
}
#hotel-details .card.attractions .accordion-button::after{
    display: none;
}
#hotel-details .card.attractions .accordion-collapse{
    border: 0;
}
#hotel-details .card.attractions .accordion-body{
    border: 0;
    padding: 15px 0;
}
#hotel-details .card.attractions .accordion-body h5{
    font-size: 18px;
    color: #848484;
}
#hotel-details .card.attractions ul{
    list-style: none;
}
#hotel-details .card.attractions ul li{
    padding: 10px 0;
}
#hotel-details .card.attractions ul li a{
    color: #b6b6b6;
    font-size: 14px;
}
#hotel-details .card.attractions ul.links li a{
    color: #848484;
    font-size: 18px;
}
#hotel-details .card.attractions ul li a span{
    font-size: 14px;
    float: right;
}
/**** hotel details *****/
/**** booking details *****/
#booking{
    padding: 30px 0;
}
#booking .booking-links{
    list-style: none;
    margin: 0 auto;
    display: block;
    text-align: center;
    margin-bottom: 30px;
}
#booking .booking-links li{
    display: inline-block;
    padding: 0 10px;
}
#booking .booking-links li a{
    color: #848484;
    text-decoration: underline;
}
#booking .booking-links li a.active{
    color: #cba746;
    font-weight: 700;
}
#booking .booking-links li a:hover{
    color: #cba746;
    transition: all 0.5s ease-in-out;
}
#booking .card{
    padding: 15px;
    border-radius: 15px;
    border: 0;
    -webkit-box-shadow: 0 2px 6px 0 #00000029;
    box-shadow: 0 2px 6px 0 #00000029;
    margin-bottom: 20px;
    position: relative;
}
#booking .card .d-flex .flex-shrink-0{
  width: 55%;
}

#booking .card .d-flex .flex-grow-1{
  display: flex;
  text-align: center;
  justify-content: center;
}
#booking .card .d-flex .flex-grow-1 .my-rating{
  margin-right: 15px;
  min-width: 100px;
}
#booking .card .d-flex .flex-grow-1 .rate{
  margin-left: 15px;
}
#booking .card .d-flex .flex-grow-1 .rate .rate-num{
  background: #06b4db4d;
  padding: 7px;
  border-radius: 50%;
  font-weight: 700;
  width: 35px;
  height: 35px;
  font-size: 12px;
  color: #00415a;
}
#booking .card .d-flex .flex-grow-1 .rate .rate-title{
  font-size: 22px;
}
#booking .card .book-details .table th{
    color: #cba746;
    border: 0;
}
#booking .card .book-details .table td{
    color: #848484;
    border: 0;
}
#booking .card .book-details p{
    color: #848484;
}
#booking .card .form-control, #booking .card .select2{
    height: 55px;
    width: 100% !important;
    padding: 15px;
    line-height: 15px;
    border-radius: 40px;
    padding-top: 20px;
} 
#booking .card .form-floating>label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
    font-size: 14px;
}
#booking .card .booking-price{display: flex;align-items: center;}
#booking .card .booking-price h5{
    width: 50%;
}
#booking .card .booking-price .right{
    float: right;
    width: 50%;
    text-align: right;
}
#booking .card .booking-price .right p{
    margin: 0;
    font-weight: 700;
    color: #f5df70;
}
#booking .card .booking-price .right span{
    color: #848484;
}
#booking .back-btn{
    width: 48%;
    padding: 20px;
    border-radius: 54px;
    font-weight: 700;
    background: #f2f2f2;
    margin: auto;
    -webkit-box-shadow: 0 3px 3px 0 rgb(34 34 34 / 10%);
    box-shadow: 0 3px 3px 0 rgb(34 34 34 / 10%);
    border: 1px solid #f2f2f2;
}
#booking .back-btn:hover{
    background: #fff;
    transition: all 0.5s ease-in-out;
}
#booking .main-btn{
    width: 48%;
    padding: 20px;
    border-radius: 54px;
    font-weight: 700;
    margin: auto;
}
#booking .main-btn:hover{
    -webkit-box-shadow: 0 3px 3px 0 rgb(34 34 34 / 10%);
    box-shadow: 0 3px 3px 0 rgb(34 34 34 / 10%);
}
#booking .card-details{}
#booking .card-details .nav-tabs{
    margin: 15px auto;
    border: 0;
}
#booking .card-details .nav-link{
    width: 48%;
    padding: 20px;
    border-radius: 54px;
    font-weight: 700;
    background: #f2f2f2;
    margin: auto;
    -webkit-box-shadow: 0 3px 3px 0 rgb(34 34 34 / 10%);
    box-shadow: 0 3px 3px 0 rgb(34 34 34 / 10%);
    border: 1px solid #f2f2f2;
}
#booking .card-details .nav-link.active{
    background: #cba746;
    color: #fff;
    border-color: #cba746;
}
#booking .card-details .tab-content{
    padding: 15px 0;
}
#booking .card-details .tab-content .single-label{
    margin-bottom: 5px;
    font-size: 14px;
    color: #848484;
}
#booking .card-details .form-check{margin: 20px 0;}
#booking .card-details .form-check .form-check-input{
    float: inherit;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}
#booking .card-details .form-check .form-check-label{width: 100%;}
#booking .card-details .form-check .form-check-label img{
    width: 75px;
    height: auto;
    margin: 0 15px;
}
#booking .card-details .form-check .form-check-label p{
    display: inline-block;
    float: right;
    margin: 0;
    margin-top: 10px;
}
.nopadding{
    padding: 0;
}
.pr-0{
  padding-right: 0;
}

#search-page.booking-page .table th{
  color: #00415a;
  border: 0;
  padding: 0;
  font-size: 14px;
}
#search-page.booking-page .table td{
  color: #848484;
  border: 0;
  padding: 0 15px;
  font-size: 14px;
}
.hidden{
  display: none !important;
}
/**** booking details *****/
/**** FAQ *****/
#faq {
  padding: 50px 0;
}
#faq .card{
  -webkit-box-shadow: 0 2px 6px 0 #00000029;
  box-shadow: 0 2px 6px 0 #00000029;
  border: 0;
  padding: 15px;
  margin: 25px 0;
  border-radius: 25px;
}
#faq .head-question{
    padding: 15px;
    background: #cba746;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}
#faq .accordion-item .accordion-collapse{
  border: 0
}
#faq .accordion-item .accordion-header .accordion-button{
    background: linear-gradient( 90deg,#000,#6a551c,#cba746);
    color: #fff;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #e1e1e1;
}
#faq .accordion-item .accordion-body, #faq p{
    font-size: 14px;
    color: #000;
    border: 0;
}
#faq .accordion-item .accordion-button::after{
}
/**** FAQ *****/
/**** Contact Us *****/
#contact{
    padding: 45px 0;
}
#contact .card{
    padding: 25px 15px;
    border-radius: 15px;
    border: 0;
    -webkit-box-shadow: 0 2px 6px 0 #00000029;
    box-shadow: 0 2px 6px 0 #00000029;
    margin-bottom: 20px;
    position: relative;
    min-height: 430px;
}
#contact .card .conact-data p span{
    padding-right: 20px;
    color: #000;
    font-weight: 700;
}
#contact .card .conact-data p{
    color: #848484;
    font-size: 15px;
}
#contact .card .conact-data a{
    color: #cba746;
    text-decoration: revert;
}
#contact .card .conact-data ul{
    list-style: none;
    margin: 15px 0;
}
#contact .card .conact-data ul li{
    display: inline-block;
    padding-right: 5px;
}
#contact .card .conact-data ul li img{
    width: 37px;
    height: auto;
}
#contact .card .conact-data ul li:hover img{
  transform: translate(0px, -7px);
  transition: all 0.5s ease-in-out;
}
#contact .card .form-floating input{
    padding: 10px 15px;
    height: 50px;
    border: 1px solid #cba746;
    margin-bottom: 25px;
}
#contact .card .form-floating textarea{
    min-height: 100px;
    border: 1px solid #cba746;
    margin-bottom: 25px;
}
#contact .card .form-floating label{
    padding: 12px 15px;
}
#contact .card .main-btn{
    padding: 10px 40px;
    border-radius: 50px;
    background: #cba746;
    border: 1px solid #cba746;
    margin: auto;
    display: block;
}
#contact .card .main-btn:hover{
  color: #cba746;
  background: #fff;
  border: 1px solid #cba746;
}
.form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {
    opacity: .65;
    transform: scale(.75) translateY(-0.5rem) translateX(0.15rem);
    font-size: 14px !important;
}
#contact hr{
    margin: 10px 0;
}
#contact .d-flex{
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d2d2d2;
}
#contact .d-flex .flex-shrink-0 i{
    font-size: 27px;
    color: #cba746;
}
#contact .d-flex .flex-grow-1 h5{}
#contact .d-flex .flex-grow-1 p{
    margin: 0;
    font-size: 14px;
    color: #666;
}
#contact .d-flex .flex-grow-1 a{}
#contact .share-social ul{
  padding: 0;
  margin: 0;
  list-style: none;
}
#contact .share-social li{
  display: inline-block;
  padding-right: 8px;
}
#contact .share-social li img{
  max-width: 27px;
}
/**** Contact Us *****/
/**** Login *****/
#login{
  padding: 45px 0;
}
#login .card{
    -webkit-box-shadow: 0 2px 6px 0 #00000029;
    box-shadow: 0 2px 6px 0 #00000029;
    border: 0;
    padding: 15px;
    margin: 25px 0;
    border-radius: 25px;
}
#login .logo{
  width: 100%;
  height: 75px;
  position: relative;
}
#login .logo img{
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}
#login .text{
    text-align: center;
    margin: 20px 0;
}
#login .text span{
    color: #cba746;
    font-weight: 700;
    padding: 0 5px;
}
#login .form-control{
    height: 55px;
    width: 100% !important;
    padding: 15px;
    line-height: 15px;
    border-radius: 40px;
    padding-top: 20px;
}
#login .forgot{
    display: block;
    font-size: 14px;
    color: #cba746;
    text-decoration: underline;
}
#login .main-btn{
    margin: 15px auto;
    display: block;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: 700;
}
#login .login-with{
    text-align: center;
    margin: 15px 0;
    position: relative;
    color: #cba746;
    font-size: 18px;
    font-weight: 700;
}
#login .login-social {
    list-style: none;
    text-align: center;
}
#login .login-social li{
    display: inline-block;
    padding: 0 5px;
}
#login .login-social li img{
    width: 50px;
}
#login .login-social li:hover img{
  transform: translate(0, -10px);
  transition: all 0.5s ease-in-out;
}
#login .login-with:after{
  content: '';
  position: absolute;
  width: 40%;
  height: 2px;
  background: #cba746;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
#login .login-with:before{
  content: '';
  position: absolute;
  width: 40%;
  height: 2px;
  background: #cba746;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

/**** Login *****/
/**** profile *****/
#profile{
    padding: 45px 0;
}
#profile .card{
    -webkit-box-shadow: 0 2px 6px 0 #00000029;
    box-shadow: 0 2px 6px 0 #00000029;
    border: 0;
    padding: 30px;
    margin: 25px 0;
    border-radius: 25px;
    position: relative;
}
#profile .card .box{
    -webkit-box-shadow: 0 2px 6px 0 #00000029;
    box-shadow: 0 2px 6px 0 #00000029;
    padding: 30px 25px;
    margin: 15px 0;
    border-radius: 15px;
    color: #fff;
}
#profile .card .box .d-flex{
    align-items: center;
}
#profile .card .box .trip-num{
    margin: 0;
    color: #fff;
}
#profile .card .box p{
    margin: 0;
    text-align: right;
}
#profile .card .upcoming{
    background: #1b97b2;
}
#profile .card .total{
    background: #3c4960;
}
#profile .card .finished{
    background: #3dc69e;
}
#profile .card .cancelled{
    background: #ef5f67;
}
#profile .card ul{
  list-style: none;
  margin: 15px 0;
}
#profile .card ul li{
  padding-bottom: 10px;
}
#profile .card ul span{
  font-weight: 700;
}
#profile .card .flex-shrink-0 img{
  width: 80px;
  margin: 0 30px;
}
#profile .card .flex-grow-1 p{
  text-align: right;
  margin: 0;
}
.remove-card{
  cursor: pointer;
}
.remove-card:hover{
  color: red
}
#profile .card .card-box{
  border-bottom: 1px solid #cba746;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
#profile .card .card-box:last-of-type{
  border: 0;
}
#profile .modal .form-control, #profile .modal .select2 {
  height: 55px;
  width: 100% !important;
  padding: 15px;
  line-height: 15px;
  border-radius: 40px;
  padding-top: 20px;
}
.nice-select.open .list{
  max-height: 200px;
  overflow-y: scroll;
}
#profile .card .edit-btn{
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 6px 30px;
    border-radius: 30px;
}
/**** profile *****/
/**** slider *****/
#slider .carousel-caption{
    z-index: 2;
    top: 40%;
    margin: auto;
}
#slider .carousel-caption h5{
    font-size: 55px;
    color: #cba746;
}
#slider .carousel-caption p{
    font-weight: 600;
    font-size: 20px;
    text-shadow: 3px 3px 4px black;
}
#slider .carousel-indicators button{
    height: 10px;
    width: 10px;
    border-radius: 50%;
    border: 0;
    opacity: 0.9;
    transition: all 0.5s ease-in-out;
}
#slider .carousel-indicators button.active{
    width: 30px;
    border-radius: 30px;
    background: #cba746;
}
/**** slider *****/
/**** packages *****/
#packages{
  padding: 75px 0 20px;
}
#packages .card{
  position: relative;
  border: 0;
  padding: 0;
  border-radius: 15px;
  margin: 10px 0;
  overflow: hidden;
  display: block;
}
#packages .img-packages{
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 15px;
}
#packages .img-packages img{
    /*! position: absolute; */
    /*! width: auto; */
    /*! max-width: 100%; */
    /*! max-height: 100%; */
    /*! top: 0; */
    /*! bottom: 0; */
    /*! right: 0; */
    /*! left: 0; */
    /*! margin: auto; */
    object-fit: cover;
    width: 100%;
    width: 100%;
    height: 260px;
}
#packages .overlay{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(180deg,rgba(0,0,0,0) 60%,rgb(12 12 12/50%) 81%,rgba(51,50,50,1) 100%);
  z-index: 1;
}
#packages .card-title{
    z-index: 9;
    position: absolute;
    bottom: 30px;
    left: 30px;
}
#packages .card-title h5{
    color: #fff;
}
#packages .card-title .btn{
    background: linear-gradient( 90deg,#000,#6a551c,#cba746);
    color: #fff;
}
/**** packages *****/

.mob-show{
  display: none
}
/**** numbers *****/
#numbers{
    padding: 25px 0 85px;
    background: url(../frontend/images/etp-counter-background.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
#numbers .landing-page-title{
    color: #000;
    position: relative;
}
#numbers:before {
    content: "";
    background: linear-gradient( 0deg, rgb(203, 167, 70), rgba(203, 167, 70, 0.38));
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
#numbers .card{
    -webkit-box-shadow: 0 2px 6px 0 #00000029;
    box-shadow: 0 2px 6px 0 #00000029;
    border: 1px solid #000;
    border-radius: 20px;
    margin: 10px 0;
    text-align: center;
    padding: 15px 0px 0px;
    display: block;
    background: none;
    background: #ffffff38;
    height: 200px;
}
#numbers .card .card-img{
    width: 100%;
    height: 55px;
    position: relative;
}
#numbers .card .card-img img{
    position: absolute;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}
#numbers .card .card-body .count-num{
    font-size: 27px;
    font-weight: 700;
    color: #000;
}
#numbers .card .card-body .count-num i{
    vertical-align: middle;
    font-size: 32px;
}
#numbers .card .card-body h5{
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    color: #000;
}
/**** numbers *****/
/**** gallery *****/
#gallery{
    padding: 25px 0;
}
#gallery .nav-item{}
#gallery .nav-item .nav-link{
    padding: 7px 30px;
    color: #cba746;
    font-weight: 700;
    text-transform: capitalize;
}
#gallery .nav-item .nav-link.active{
    background: linear-gradient( 90deg,#000,#6a551c,#cba746);
    color: #fff!important;
    border: 1px solid #cba746;
    transition: all 0.5s ease-in-out;
}
#gallery .gallery-img{
    position: relative;
    width: 100%;
    height: 175px;
    overflow: hidden;
    margin: 10px 0;
}
#gallery .gallery-img img{
  position: absolute;
  max-height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border-radius: 12px;
}
#gallery .gallery-img::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
#gallery .gallery-img:hover::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}

/**** gallery *****/
/**** confidence *****/
#confidence{
  padding: 50px 0;
  background: linear-gradient( 180deg ,rgb(20 68 113) 0%,rgb(29 78 128) 50%,rgb(74 150 220) 100%);
  margin-top: 25px;
}
#confidence .landing-page-title{
    color: #fff;
}
#confidence .card{
    background: inherit;
    border: 0;
}
#confidence .card .card-img{
    position: relative;
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
}
#confidence .card .card-img img{
    position: absolute;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}
#confidence .card .card-body{
    padding: 0;
    text-align: center;
    align-self: center;
}
#confidence .card .card-body h5{
    color: #f5df70;
    font-size: 18px;
}
#confidence .card .card-body p{
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    min-height: 60px;
    align-items: center;
    display: flex;
}
/**** confidence *****/
/**** Build Tour *****/
#build-trip{
    padding: 50px 0;
}
#build-trip .card{
  padding: 25px;
  border: 0;
  box-shadow: 0 2px 6px 0 #00000029;
  border-radius: 15px;
  background: url(../frontend/images/icons/plane.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: auto;
}
#build-trip .form-control, #build-trip .select2{
    width: 100% !important;
    height: 50px;
    line-height: 25px;
    margin-bottom: 25px;
    padding: 12px 13px;
    border: 1px solid #cba746;
    border-radius: 7px;
}
#build-trip .form-floating>label{
    padding: 12px 10px;
    font-size: 16px;
}
#build-trip span {cursor:pointer;color: #000;font-size: 15px;border: 0;}
#build-trip span.current{color: #000}
#build-trip .number{
  margin: 0;
  display: flex;
}
#build-trip .minus, #build-trip .plus{
  width: 50px;
  height: 50px;
  background: #cba746;
  padding: 5px 5px 5px 5px;
  border: 1px solid #cba746;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}
#build-trip .minus{
    border-radius: 4px 0 0 4px;
}
#build-trip .plus{
    border-radius: 0 4px 4px 0;
}
#build-trip .number input{text-align: center;border-radius: 0;}
#build-trip .card textarea{
    min-height: 100px;
}
#build-trip .card .btn{
    padding: 10px 70px;
    margin: 0 auto;
    display: block;
}
/**** Build Tour *****/
/**** peopleSay *****/
#peopleSay{
    padding: 50px 0;
}
#peopleSay .md-width{
    margin: auto;
    position: relative;
}
#peopleSay .card{
    border: 0;
    box-shadow: 0 2px 6px 0 #00000029;
    margin: 5px;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    background-image: url(../frontend/images/icons/quote-top.png), url(../frontend/images/icons/quote-bottom.png);
    background-repeat: no-repeat;
    background-position: top left 20px, bottom right 20px;
}
#peopleSay .card .card-img{
    width: 100px;
    height: 100px;
    position: relative;
    overflow: hidden;
    margin: auto;
}
#peopleSay .card .card-img img{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    border-radius: 50%;
}
#peopleSay .card p{
    color: #999;
    font-size: 15px;
    line-height: 1.5;
    padding: 15px 0;
    min-height: 100px;
    overflow: hidden;
}
#peopleSay .owl-dots{
    text-align: center;
}
#peopleSay .owl-dots .owl-dot{
    width: 13px;
    height: 13px;
    background: #1889cc66;
    margin:  0 2px;
    border-radius: 50%;
}
#peopleSay .owl-dots .owl-dot.active{
  background: #cba746;
}
/**** peopleSay *****/
/**** Services *****/
#services{
    padding: 50px 0;
}
#services hr{
    background: #1889cc;
    margin: 25px 0;
    height: 2px;
}
#services p{
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}
/**** Services *****/
/**** text page *****/
#text{
    padding: 45px 0;
}
#text .card{
    padding: 30px;
    border: 0;
    box-shadow: 0 2px 6px 0 #00000029;
    border-radius: 18px;
}
#text p{
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}
#text ul{
    padding: 0 15px;
    margin-bottom: 15px;
}
#text ul li{
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 7px;
}
#text ul li::marker{
    color: #1889cc;
}
#text img{
    margin: 15px auto;
    display: block;
}
/**** text page *****/
/**** text page *****/
#tour-view{
    padding: 50px 0;
}
#tour-view h4 img{
  max-width: 35px;
}
#tour-view .slide .carousel-indicators{
    position: relative;
    margin: 0 auto;
    overflow-x: scroll;
    width: 100%;
}
#tour-view .slide .carousel-indicators button{
    width: 75px;
    height: 50px;
    -webkit-flex: none;
    -moz-flex: none;
    -o-flex: none;
    flex: none;
}
#tour-view .slide .carousel-indicators::-webkit-scrollbar{
    height: 0px;
}
#tour-view .slide .carousel-item .tour-img{
    height: 430px;
    position: relative;
    width: 100%;
    overflow: hidden;
}
#tour-view .slide .carousel-item .tour-img img{
    position: absolute;
    width: auto;
    max-width: initial;
    max-height: initial;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}
.trip-name{
    margin-bottom: 20px;
}
.trip-price{
    text-transform: capitalize;
    padding: 8px 25px;
    border-radius: 10px;
}
.trip-price:hover{
    background: linear-gradient( 90deg,#000,#6a551c,#cba746) !important;
    color: #fff!important;
    border: 1px solid #cba746;
}
.modal-btn{
    padding: 8px 15px;
    border-radius: 10px;
}
#tour-view .modal-body .form-control{
    border-color: #cba746;
}
#tour-view .modal-body textarea{
    min-height: 110px;
}
#tour-view .modal-body .form-floating>label{
    font-size: 14px;
}
#tour-view .card{
    margin: 15px 0;
    border: 0;
    box-shadow: 0 2px 6px 0 #00000029;
    padding: 5px;
}
#tour-view .tour-details h4{
    margin-bottom: 15px;
}
#tour-view .tour-details h4 img{
    max-width: 36px;
}
#tour-view .tour-details .table{
    border: 1px solid #d9d9d9;
    border-radius: 5px;
}
#tour-view .tour-details .table tr{font-size: 14px;}
#tour-view .tour-details .table tr img{
    padding-right: 10px;
    max-width: 35px;
}
#tour-view .highlights img, #tour-view .includes img {
    margin-right: 5px;
    max-width: 32px;
}
#tour-view .highlights h5{
    font-size: 19px;
    color: #000;
    margin: 15px 0;
}
#tour-view .includes h4{
  color: #000;
}
#tour-view .highlights ul, #tour-view .includes ul{
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}
#tour-view .highlights ul li, #tour-view .includes ul li{
    padding: 5px 0;
    font-size: 14px;
}
#tour-view .highlights ul li img, #tour-view .includes ul li img{
    max-width: 17px;
    margin-right: 7px;
}
#tour-view .accordion-item .accordion-collapse{
  border: 0
}
#tour-view #book{
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
}
#tour-view #book p{
  margin: 0
}
#tour-view .accordion-item .accordion-header .accordion-button{
    background: linear-gradient( 90deg,#000,#6a551c,#cba746);
    color: #fff;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #e1e1e1;
}
#tour-view .accordion-item .accordion-body, #tour-view .accordion-item .accordion-body p{
    font-size: 14px;
    color: #000;
    border: 0;
}
#tour-view .accordion-item .accordion-body .flex-shrink-0 img{margin: 10px auto;display: block;}
#tour-view .accordion-item .box{
    position: relative;
}
#tour-view .accordion-item .box:before {
    content: "";
    width: 1px;
    border-left: 2px dashed #6195c5;
    height: 100%;
    position: absolute;
    left: 30px;
    z-index: 1;
    top: 0px;
}
#tour-view .accordion-item .box h5 img{
    width: 64px;
    height: 64px;
    margin-right: 10px;
    z-index: 1;
    position: relative;
}
#tour-view .accordion-item .box .box-text{padding-left: 70px;position: relative;}
#tour-view .accordion-item .box .box-text p{}
/**** text page *****/
/**** topBar *****/
#topBar{
    text-align: center;
    padding: 14px;
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
    background: #204e7a;
    background: linear-gradient( 90deg,#000,#6a551c,#cba746);
    border-top: 5px solid #bd3e31;
}
#tour-view .accordion-item .box-footer{}
#tour-view .accordion-item .box-footer ul{
    list-style: none;
}
#tour-view .accordion-item .box-footer ul li{
    display: inline-block;
    padding-right: 30px;
}
#tour-view .accordion-item .box-footer ul li img{
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
#tour-view .accordion-item .box-footer ul li strong{}
#topBar p{
    margin: 0;
}
#topBar a{
    color: #fff;
    font-weight: 700;
}
/**** topBar *****/
.side-card{
    background: linear-gradient( 90deg,#000,#6a551c,#cba746);
    position: sticky;
    top: 0;
}
.side-card ul{
    list-style: none;
    padding: 0;
    margin: 0;
} 
.side-card ul li{
    padding:  15px;
} 
.side-card ul li a{
    font-weight: 700;
    color: #fff;
    width: 100%;
    display: block;
} 
.side-card ul li:hover a{
    color: #000;
} 
.side-card ul li:hover{
    background: #cba746;
    color: #000;
} 
.side-card ul li.active{
    background: linear-gradient( 90deg,rgb(157 56 60) 0%,rgb(193 65 52) 50%,rgb(212 62 28) 100%);
    color: #fff;
} 
.side-card ul li.active a{
    color: #fff;
} 
.search-modal{}
.search-modal form{
    position: relative;
}
.search-modal form .form-control{width: 100%;height: 50px;line-height: 25px;padding: 12px 13px;border: 1px solid #cba746;border-radius: 7px;}
.search-modal form a{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    color: #cba746;
}
.search-modal form a i{
    vertical-align: sub;
}
.FormStepList {
	 display: flex;
	 overflow: hidden;
	 margin: 0 auto;
	 width: 600px;
	 align-content: center;
	 flex-wrap: nowrap;
	 padding: 0;
}
 .FormStepList-item {
	 flex: 1 1 50px;
	 text-align: center;
	 list-style: none;
}
 .FormStepList-item:before {
	 content: none !important;
	 display: none !important;
}
 .FormStepIcon {
	 display: inline-block;
	 width: 100px;
	 text-align: center;
	 position: relative;
}
 .FormStepIcon.is-active .FormStepIcon-circle {
	 background: #e04f67;
	 border: 9px solid #fbe8aa;
	 color: #fff;
}
 .FormStepIcon.is-passed:after {
	 background: #fbe8aa;
}
 .FormStepIcon.is-passed .FormStepIcon-circle {
}
 .FormStepIcon:after {
	 content: '';
	 background: #d4d4d4;
	 position: absolute;
	 right: -150px;
	 top: 43px;
	 left: 40px;
	 height: 4px;
	 z-index: 1;
}
 .FormStepIcon.FormStepIcon--last:after {
	 background: #fff;
	 display: none;
}
 .FormStepIcon-circle {
	 background: #d4d4d4;
	 color: #a9a9a9;
	 font-size: 16px;
	 font-weight: bold;
	 width: 30px;
	 height: 30px;
	 border-radius: 50%;
	 display: inline-flex;
	 justify-content: center;
	 align-items: center;
	 position: relative;
	 z-index: 2;
}
 .FormStepIcon-title {
	 display: block;
	 font-size: 0.7em;
	 margin-top: 0.5em;
}
 .image-top{
    position: relative;
}
.image-progress{
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      margin: auto;
      width: 600px;
      height: 76px;
}
 .image-top .overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #00000099;
}
#slider{
    position: relative;
}
#slider .overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
    background: #00000099;
}
.pt-175{
    padding-top: 50px !important;
}
#sponsers{padding: 50px 0 0;}
#sponsers .card{padding: 10px;border: 0;}
#sponsers .card-img{position: relative;width: 100%;height: 170px;box-shadow: 0px 0px 20px -11px;border-radius: 100px;overflow: hidden;}
#sponsers .card-img img{position: absolute;max-width: 90%;max-height: 90%;width: auto;top: 0;bottom: 0;right: 0;left: 0;margin: auto;}
.owl-carousel .owl-nav button.owl-next{position: absolute;top: 115px;right: 0;font-size: 50px;width: 35px;height: 35px;margin: auto;line-height: 0;background: #000;border-radius: 50px;opacity: 0.5;}
.owl-carousel .owl-nav button.owl-prev{position: absolute;top: 115px;left: 0;font-size: 50px;width: 35px;height: 35px;margin: auto;line-height: 0;background: #000;border-radius: 50px;opacity: 0.5;}
.owl-carousel .owl-nav button.owl-next span, .owl-carousel .owl-nav button.owl-prev span{position: relative;top: -6px;}
.owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev:hover{
    opacity: 1;
}
#news-letter{background: #000;padding: 45px 15px;color: #fff;}
#news-letter h4{color: #cba746;text-align: center;font-size: 40px;}
#news-letter h4 i{vertical-align: middle;}
#news-letter p{color: #cba746;text-align: center;}
#news-letter form{position: relative;}
#news-letter form input{height: 48px;border-radius: 50px;}
#news-letter form .btn{position: absolute;top: 5px;right: 5px;bottom: 5px;background: #cba746;font-size: 22px;border-radius: 51px;padding: 3px 2px;}
#news-letter form .btn span{font-size: 18px;vertical-align: text-top;padding: 0 10px;display: none;transition: all 0.5s ease-in-out;}
#news-letter form .btn:hover span{display: initial;}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 10px;
  right: 1px;
  width: 20px;
}