/*css variables*/
:root{
  --primary-color: #eb8300;
  --secondary-color: #4164af;
}


body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: #454545;
}

ul {
  padding: 0;
  margin: 0;
}

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

a:hover, a:focus, a:active {
  text-decoration: none;
}

.btn {
  border-radius: 0;
  border: none;
  box-shadow: none;
  color: #fff;
  transition: all 0.5s ease 0s;
}

.btn.btn-primary, .btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:active {
  background-color: #eb8300;
  font-weight: 500;
  padding-left: 15px;
  padding-right: 15px;
}

.top-margin{
  margin-top: 10px;
}

div{
  display: block;
}

@-webkit-keyframes swing
{
  15%
  {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  30%
  {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50%
  {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  65%
  {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  80%
  {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  100%
  {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes swing
{
  15%
  {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  30%
  {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50%
  {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  65%
  {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  80%
  {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  100%
  {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.swing:hover, warn{
  -webkit-animation: swing 1s ease;
  animation: swing 1s ease;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

@-webkit-keyframes updown
{
  15%
  {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  30%
  {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  50%
  {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
  65%
  {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
  80%
  {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100%
  {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes updown
{
  15%
  {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  30%
  {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  50%
  {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
  65%
  {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
  80%
  {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100%
  {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.updown:hover{
  -webkit-animation: updown 1s ease;
  animation: updown 1s ease;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.6);
  opacity: 0;
  filter: alpha(opacity=0);
  /*-webkit-transform: translate(460px, -100px) rotate(180deg);*/
  /*-ms-transform: translate(460px, -100px) rotate(180deg);*/
  /*transform: translate(460px, -100px) rotate(180deg);*/
  -webkit-transition: all 0.2s 0.4s ease-in-out;
  transition: all 0.2s 0.4s ease-in-out;
}

.hovereffect img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.hovereffect h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 17px;
  padding: 10px;
  margin: 100px 0 0 0;
  /*background: rgba(0, 0, 0, 0.6);*/
}

.hovereffect a.info {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  /*margin: 50px 0 0 0;*/
  background-color: transparent;
  -webkit-transform: translateY(-200px);
  -ms-transform: translateY(-200px);
  transform: translateY(-200px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.hovereffect a.info:hover {
  box-shadow: 0 0 5px #fff;
}

.hovereffect:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.hovereffect:hover h2 {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.hovereffect:hover a.info {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

#ternary-header.affix {
  top: 0;
  width: 100%;
  z-index: 9999 !important;
  border-radius: 0;
  position: fixed;
}

.affix + .container {
  padding-top: 100px;
}

/*****************************index.html*****************************/
header{
  display: block;
  width: 100%;
  float: left;
  /*overflow: hidden;*/
}


/*primary-header*/
#primary-header{
  width: 100%;
  background-color: #212020;
  float: left;
  color: #fff;
  padding: 10px 0;
  height: 42px;
}

#primary-header .top-social a{
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

#primary-header .top-social a:hover i.fa-facebook-square{
  color: #44619d;
}

#primary-header .top-social a:hover i.fa-twitter-square{
  color: #1da1f2
}

#primary-header .top-social a:hover i.fa-instagram{
  color: #e2405e;
}

#primary-header .top-social a:hover i.fa-envelope-square{
  color: #eb8300;
}

#primary-header small{
  font-size: 14px;
  margin-right: 10px;
}

#primary-header  a i{
  color: #fff;
}

#primary-header  a{
  font-size: 16px;
  padding: 0 5px;
  color: #fff;
}

#primary-header ul li a{
  text-transform: uppercase;
  font-size: 14px;
  -webkit-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

#primary-header ul li a i{
  color: #eb8300
}

#primary-header ul li a:hover{
  color: #eb8300;
}

#primary-header ul li a:hover i{
  color: #fff;
}

/*secondary header*/

#secondary-header{
  width: 100%;
  float: left;
  clear: both;
  height: 95px;
}



#secondary-header.navbar.navbar-default{
  background: #fff;
  border-radius: 0;
  margin-bottom: 0;
}

#secondary-header.navbar.navbar-default .navbar-brand{
  width: 115px;
  height: auto;
  padding: 5px 15px;
}



#secondary-header.navbar.navbar-default .navbar-nav{
  margin-top: 24px;
}

#secondary-header.navbar.navbar-default .navbar-nav li a{
  color: var(--primary-color);
  font-weight: 700;
  -webkit-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  transition:all 0.8s ease;
  text-transform: uppercase;
}

#secondary-header.navbar.navbar-default .navbar-nav li a:hover, #secondary-header.navbar.navbar-default .navbar-nav li a:focus{
  color: #4164af
}

#secondary-header.navbar.navbar-default .navbar-nav li.active a{
  color: #4164af;
  background-color: transparent;
  box-shadow: none;
  border: none;
}

#secondary-header.affix{
  position: fixed;
  top: 0;
  transition: all 0.8s ease;
  z-index: 9999;
}
#secondary-header.affix.nav-up {
  top: -95px; }


/*slider wrapper*/

.slider-wrapper{
  width: 100%;
  position: relative;
  float: left;
}

.owl-carousel img.owl-lazy{
  width: 100%;
  height: 700px;
  object-fit: cover;

}

.owl-carousel .owl-item.active img.owl-lazy{
  transition: transform 5000ms linear 0s;
  /* This should be based on your carousel setting. For bs, it should be 5second*/
  transform: scale(1.1, 1.1);
}

.owl-carousel .owl-item div{
  position: relative;
}

.owl-carousel .owl-item div:after{
  content: '';
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 700px;
}

.owl-wrapper{
  position: relative;
  width: 100%;
  float: left;
}

.owl-wrapper .carousel-search{
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 70px;
  z-index: 999;
  color: #fff;

}

.owl-theme .owl-nav [class*=owl-]{
  text-indent: -9999px;
  background: none;
}

.owl-theme .owl-nav .owl-prev{
  position: absolute;
  top: 50%;
  left: 5%;
  background: url("../images/slider/arrow.png")no-repeat;
  background-position: 100% 100%;
  height: 40px;
  margin-top: -20px;
  width: 25px;
  opacity: 0.6;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.owl-theme .owl-nav .owl-prev:hover{
  background: url("../images/slider/arrow.png")no-repeat;
  opacity: 1;
}

.owl-theme .owl-nav .owl-next{
  position: absolute;
  top: 50%;
  margin-top: -20px;
  right: 5%;
  background: url("../images/slider/arrow_right.png")no-repeat;
  background-position: 100% 100%;
  height: 40px;
  width: 25px;
  opacity: 0.6;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.owl-theme .owl-nav .owl-next:hover{
  background: url("../images/slider/arrow_right.png")no-repeat;
  opacity: 1;
}

.carousel-search h1{
  font-weight: 700;
  font-size: 60px;
  margin: 0;
}

.carousel-search p{
  font-size: 15px;
  padding: 0 25%;
}



.owl-carousel .div{
  background-color: #000;
}



.awards .row{
  margin-right: -5px;
  margin-left: -5px;
}

.awards .row .col-xs-4, .awards .row .col-xs-8{
  padding-left: 5px ;
  padding-right: 5px;
}

.title{
  display: block;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #000;
  text-align: center
}

.title .main-title{
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
  color: #000;
  font-size: 46px;
  font-weight: 700;
}

.title .main-title:after{
  content: '';
  position: absolute;
  height: 4px;
  width: 50px;
  background-color: #393a3c;
  right: 0;
  bottom: 0;
}

#why-us .row, #travel-by-interest .row{
  margin-left: -5px;
  margin-right: -5px;
}

#why-us .row div[class*='col-'], #travel-by-interest .row div[class*='col-']{
  padding-left: 5px;
  padding-right: 5px;
}

.package .row{
  margin-left: 0;
  margin-right: 0;
}

.package .row div[class*='col-']{
  padding-left: 0;
  padding-right: 0;
}

.package figure{
  height: 300px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.package figure img{
  width: 100%;
  object-fit: cover;
  height: 100%;
  -webkit-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  transition:all 0.8s ease;
}

.package figure:hover img{
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}

.package figure figcaption{
  color: #fff;
  position: absolute;
  top: 0%;
  /*transform: translateY(-50%);*/
  left: 0;
  width: 100%;
  text-transform: uppercase;
  padding: 8px;
  background: rgba(0, 0, 0, 0.2);
  height: 100%;

}

.package figure figcaption h1{
  font-weight: 500;
  font-size: 20px;
}

.package figure figcaption .btn.btn-opacity{
  outline: 2px solid #fff;
  color: #fff;
  transition: all 0.4s ease-in;
  background: rgba(0, 0, 0, 0.5);
}

.package figure figcaption .btn.btn-opacity:hover,
.package figure figcaption .btn.btn-opacity:active,
.package figure figcaption .btn.btn-opacity:focus{
  outline: 2px solid #fff;
  outline-offset: -5px;
}

/*whyus section*/

#why-us{
  margin-top: 40px;
}


#why-us,.whyus-content, .why-us-info, .why-us-img, .why-us-img a{
  width: 100%;
  float: left;
}

.why-us-block{
  height: 300px;
  margin-bottom: 20px;
  color: #393a3c;
  background: #ddf3d5;
  padding: 10px;
  position: relative;
}

.why-us-block img{
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-35px);

}

.why-us-text{
  width: 100%;
  display: block;
  margin-top: 3em;
}

.why-us-text h1{
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.why-us-text h1 a{
  transition:all 0.3s ease;
}

.why-us-text p{

  margin-top: 2em;
  font-size: 16px;
  line-height: 1.42857143;
}

.why-us-text h1 a:hover{
  color: #eb8300;
}

.why-us-text p{
  /* text-align: justify; */
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.42857143;

  font-size: 16px;
  line-height: 1.42857143;
}


/*travel by interest section*/



#travel-by-interest{
  width: 100%;
  float: left;
  color: #fff;
  margin-top: 80px;
}

.travel-info .title .main-title{
  color: #fff;
  font-size: 40px;
  margin: 0;
  font-weight: 700;
}

.travel-info .title{
  margin-bottom: 10px;
}

.travel-info .title .main-title:after{
  background-color: #fff;
  height: 5px;
  width: 43px;
}

.travel-info{
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 10px;
}

.col-sm-6 .travel-info{
  height: 300px;
}

.travel-info.travel-description{
  background-color: #4164af;
  width: 100%;
  padding: 10px;
}

/*last minute deals*/

#last-minute-deals{
  width: 100%;
  float: left;
  margin-top: 40px;
}

.table > tbody > tr > td {
  vertical-align: middle;
  letter-spacing: 0.03em;
}

.table > tbody > tr > td a.link-img img{
  width: 100px;
  height: 80px;
  object-fit:cover;
  /*object-position: top;*/
}

.table > tbody > tr > td a span{
  display: inline-block;
  margin-left: 10px;
  position: relative;
  top: 10px;
}

.table > tbody > tr > td, .table>thead>tr>th{
  font-weight: 500;
  font-size: 14px;
}

.table > tbody > tr > td i {
  float: left;
  font-size: 20px;
  padding-top: 8px;
  color: #ed2028;
}

.table > tbody > tr > td i + div{
  padding-left: 30px;
  line-height: 1.4
}

.alter-span{
  font-weight: 300;
  text-decoration: line-through;
}

.alter-span.span-red{
  font-weight: 500;
  color: #ed2028;
  text-decoration:none;
}

/*latest-testomonials section*/
#testimonials-blog{
  height: 450px;
  width: 100%;
  overflow: hidden;
  float: left;
  margin-top: 40px;
  float: left;
}

#testimonials-blog .owl-carousel img.owl-lazy{
  width: 100%;
  height: 450px;
  object-fit: cover;

}


#testimonials-blog .owl-carousel .owl-item div{
  position: relative;
}

#testimonials-blog .owl-carousel .owl-item div:after{
  display: none;
}

#testimonials-blog .owl-carousel .owl-item div .owl-test{
  position: absolute;
  top:0;
  bottom: 0;
  width: 50%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 5px 5px 5px 15px;
}

#testimonials-blog .owl-carousel .owl-item div .owl-test .title{
  margin-bottom: 0;
  text-align: left;
}

#testimonials-blog .owl-carousel .owl-item div .owl-test .title h1.main-title{
  text-transform: uppercase;
  color: #fff;
  font-size: 32px;
}

#testimonials-blog .owl-carousel .owl-item div .owl-test .title h1.main-title:after{
  background: #fff;
}

#testimonials-blog .owl-carousel .owl-item div .owl-test .owl-post{
  margin-top: 20px;
}

#testimonials-blog .owl-carousel .owl-item div .owl-test .owl-post h5{
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}

#testimonials-blog .owl-carousel .owl-item div .owl-test .owl-post p{
  line-height: 1.5;
}

a.btn.btn-owl{
  padding-left: 0;
  color: var(--primary-color);
}

a.btn.btn-owl:hover{
  color: var(--secondary-color);
}

#testimonials-blog .row{
  margin-left: -5px;
  margin-right: -5px;
}

#testimonials-blog .col-sm-6,
#testimonials-blog .col-xs-6{
  padding-left: 5px;
  padding-right: 5px;
}

#testimonials-blog .owl-theme .owl-nav .owl-next,
#testimonials-blog .owl-theme .owl-nav .owl-prev{
  top: auto;
  bottom: 10px;
}

#testimonials-blog .owl-theme .owl-nav .owl-prev{
  left: 15px
}

#testimonials-blog .owl-theme .owl-nav .owl-next{
  right: auto;
  left: 40px;
}

.latest-blog{
  width: 100%;
  height: 450px;
  float: left;
}
.testimonials-wrapper{
  width: 100%;
  height: 400px;
  overflow: hidden;
  float: left;
  color: #fff;
}

.blog-content{
  width: 100%;
  height:450px;
  float: left;
  background: #f2f2f2;
}

.blog-content figure{
  height: 200px;
  position: relative
}

.blog-content figcaption{
  position: absolute;
  top: 10px;
  left: 10px;
}

.blog-content figcaption h6{
  display: inline-block;
  background: var(--primary-color);
  padding: 10px;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  margin-top: 1em;
}

.blog-content figure img{
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-text{
  padding: 10px;
  padding-top: 0;
}
.blog-text small{
  color: #777676;
  font-style: italic;
  font-weight: 300;
}

.blog-text p{
  margin-top: 1em;
}

.blog-text h1{
  font-size: 20px;
  margin: 15px 0 0;
}
/*registration logo section*/

#reg-logo{
  width: 100%;
  float: left;
  padding: 40px 0;
}

#reg-logo ul li{
  padding: 0 10px;
}

.link-img{
  display: block;
}


/*subscribe section*/
.btn, .form-control{
  border-radius: 0;
  box-shadow: none;
  border: none;
}



#subscription{
  background: url(../images/slider/overview/package5.jpg) no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  width: 100%;
  float: left;
  min-height: 300px;
  position: relative;
}

.overlay{
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#subscription .overlay{
  padding-top: 50px;
}

#subscription .subs-intro h1{
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 8px 0 0;
}

#subscription .subs-intro{
  font-size: 16px;
  color: #444;
}

#subscription .subs-intro p{
  margin-top: 25px;
  color: #fff;
}

.sub-form{
  width: 45%;
  margin: 0 auto;
  display: block;
}

.sub-form .form-group{
  position: relative;
  top: 20px
}

.sub-form .form-control{
  width: 76%;
  float: left;
}

.sub-form button.btn.btn-primary{
  width: 24%;
  height: 34px;
}

/*footer*/

footer#menu{
  float: left;
  width: 100%;
  background: #ebebeb;
  color: #fff;
  padding: 1.5em 0;
  margin-top: 4em;
}

footer#menu .footer-menu{
  padding: 1em 0 0 0;
}

footer#menu .footer-menu li{
  float: left;
  list-style: none;
  border-left: 2px solid #b5b3b3;
  padding: 0px 10px
}

footer#menu .footer-menu li:nth-child(1){
  border-left: none;
  padding-left: 0px;
}

footer#menu .footer-menu li a{
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}

footer#menu .footer-menu li a:hover{
  color: #eb8300;
}

footer#menu .sub-form {
  width: 30%;
  margin-top: -0.5em;
}

footer#menu .sub-form .btn{
  background-color: black;
}


footer#social-links{
  float: left;
  width: 100%;
  background: #494a4a;
  color: #eb8300;
  padding: 3em 0;
  text-align: center;
}

footer#social-links .icon-button{
  text-decoration: none;
  background-color: #717070;
  border-radius: 4.6rem;
  color: #eb8300;
  cursor: pointer;
  display: inline-block;
  font-size: 2.6rem;
  height: 4.6rem;
  line-height: 4.6rem;
  margin: 0 10px;
  top: 145px;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 4.6rem;

}

footer#social-links .icon-button:hover{
  background-color: black;
}

footer#copyright{
  float: left;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 0.5em 0;
  text-align: center;
}

footer#copyright p{
  font-size: 12px;
  margin-top: 5px;
}

/*end of footer*/

/*overview.html*/
#content, #content-of-overview{
  width: 100%;
  float: left;
}

/*typography*/

.title h1.mini-title{
  display: inline-block;
  font-weight: 300;
  color: #000;
  position: relative;
  text-transform: uppercase;
  margin: 0;
  font-size: 22px;
}

.title h1.mini-title:after{
  position: absolute;
  content: '';
  width: 20%;
  background-color: #000;
  height: 1px;
  right: 0;
  bottom: 0;
}
h5, h6{
  margin: 5px 0 0;
  color: #000
}

h6{
  font-weight: 400;
}

.navs{
  width: 100%;
  float: left;
  min-height: 40px;
  background: #eb8300;
  text-transform: uppercase;
  display: none;
}

.owl-theme .owl-nav{
  margin-top: 0
}

.navs ul li{
  border-right: 1px solid #fff;
  height: 40px
}

.navs ul li:last-child{
  border-right: none;
}

.navs ul li:first-child a{
  padding-left: 0;
}

.navs ul li a{
  color:#fff;
  font-weight: 500;
  padding: 10px 5px;
  display: block
}

.navs li.active {
  background-color: red;
}

@media (min-width: 600px){
  .navs{
    display: block;
  }

  .owl-wrapper{
    height: 300px;
  }

  .navs.affix{
    top: 50px !important;
    border-top: 1px solid #fff;
    width: 100%;;
    z-index: 999;
  }

  .navs.affix + .container{
    margin-top: 40px;
  }
}

@media (min-width: 768px){
  .owl-wrapper, .owl-carousel img.owl-lazy{
    height: 450px;
  }
}



/*overview section*/
#overview, .share-block{
  width: 100%;
  float: left
}

#overview{
  margin-top: 5px;
}

#overview .title .main-title{
  color: #000;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.4;
  margin: 10px 0 0;
  padding-bottom: 0;
}

#overview .fa.fa-star{
  color: #e6ec0f;
}

.pagination{
  float: left;
  display: inline-block
}

.pagination li a{
  height: 42px;
}

.pagination li a{
  color: #000;
  font-size: 10px
}

.pagination>li:first-child>a, .pagination>li:first-child>span{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  text-transform: uppercase;
}

.pagination>li:last-child>a, .pagination>li:last-child>span{
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;

}

.pagination>li:first-child{
  text-align: center
}

.share-block a.text-center{
  display: inline-block;
  margin: 20px 0;
  margin-left: 10px
}

.share-block a.text-center i{
  color: #eb8300;
}

.light-h1{
  font-weight: 300;
  font-size: 22px;
  margin: 0;
  margin-bottom: 10px;
}

.well{
  border-radius: 0;
  box-shadow: none;
}

.well.well-blue{
  background-color: #0661c1;
  border: none;
  color: #fff;
}

.well.well-green{
  border-color: #eb8300;
  min-height: 250px;
  background-color: #ddd;
  margin-top: 20px;
}

#overview .well .title .main-title{
  font-weight: 500;
  font-size: 20px;
  color: #eb8300
}

.well button{
  display: block;
  width: 80%;
  margin: 0 auto;
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 500;
}

span.from{
  left: -38px;
  display: block;
  position: relative;
  font-size: 14px;
}

span.rate{
  display: block;
  font-size: 22px;
}

span.rate span{
  font-size: 14px;
  font-weight: 300;
}

.overview-content .well{
  margin-top: 20px;
  padding: 10px 20px;
}

@media(min-width: 481px){
  #overview .col-xs-12.col-sm-4 .well{
    width: 49%;
    float: left;
  }

  .well.well-blue {
    margin-right: 1%;
  }

  .well.well-green{
    margin-top: 0;
    margin-left: 1%;
  }
}

@media(min-width: 600px){
  .navs ul{
    text-align: center
  }
}

@media(min-width: 768px){
  .navs ul{
    text-align: left
  }

  #overview .col-xs-12.col-sm-4 .well{
    width: 100%;
  }

  #overview .title .main-title:after{
    display: none;
  }

  #overview .title .main-title, .light-h1, .title h1.mini-title{
    font-size: 26px
  }

  #overview .well .title .main-title{
    font-size: 24px;
  }
}

@media(min-width: 992px){

  #overview{
    margin-top: 60px;
  }

  #overview .title .main-title, .light-h1, .title h1.mini-title{
    font-size: 28px
  }

  #overview .well .title .main-title{
    font-size: 26px;
  }
}

@media(min-width: 1200px){

  #overview .title .main-title, .light-h1, .title h1.mini-title{
    font-size: 32px
  }

  #overview .well .title .main-title{
    font-size: 28px;
  }
}

/**************itinerary******************/

#itinerary{
  width: 100%;
  float: left;
  margin-top: 20px;
}

#itinerary a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  display: block
}

#itinerary p {
  text-transform: initial;
}

#itinerary .panel.panel-default{
  border-radius: 0;
  margin-bottom: 15px;
}

#itinerary a i{
  color: #eb8300;
}

#itinerary .panel-heading{
  padding: 5px 10px;
}

#itinerary .panel-heading .row{
  margin-left: -5px;
  margin-right: -5px;
}

#itinerary .panel-heading .col-xs-1, #itinerary .panel-heading .col-xs-10{
  padding-left: 5px;
  padding-right: 5px
}

.color-num{
  padding: 10px;
}

.travel-guide{
  display: block;
  margin-top: 20px;
}

ul.list-group .list-group-items{
  padding: 10px 15px;
  border-bottom: 1px solid #ccc;
}

.related-packages{
  margin-top: 20px;
}

.related-packages ul.list-group .list-group-items{
  padding: 0;
  margin-top: 20px;
}

.media-left img{
  width: 60px;
  height: 60px;
  object-fit:cover
}

h4.media-heading{
  text-transform: capitalize;
  font-size: 15px;
}

.media-body p{
  margin-bottom: 5px;
  font-size: 13px;
}

.media-body p:last-child{
  font-weight: 300;
  color: #ed2028;
}

@media(min-width: 600px){
  .travel-guide, .related-packages{
    width: 49%;
    float: left;
  }

  .travel-guide{
    margin-right: 1%;
  }

  .related-packages{
    margin-left: 1%;
  }
}

@media(min-width: 768px){
  .travel-guide, .related-packages{
    width: 100%;
    float: left;
  }

  .travel-guide{
    margin-right: 0;
  }

  .related-packages{
    margin-left: 0;
  }

  .color-num{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #fff;
    background-color: #eb8300;
    padding: 0;
    display: inline-block;
  }

  .color-num span{
    top: 2px;
    left: 8px;
    position: relative;

  }
}

@media(min-width: 992px){
  #itinerary a{
    font-size: 16px;
  }

  #itinerary p, #overview p{
    font-size: 14px;
  }

}

@media(min-width: 1200px){
  .color-num{
    text-align: center;
    height: 30px;
    width: 30px;
  }

  .color-num span {
    top: 5px;
    left: 0px;
  }

  #itinerary{
    margin-top: 60px;
  }

  #itinerary a{
    font-size: 18px;
  }

  #itinerary .travel-guide a{
    font-size: 16px;
  }

  #itinerary p, #overview p{
    font-size: 16px;
    line-height: 1.42857143;
    letter-spacing: 0.03em;
  }
}


/*cost included and excluded*/

#included{
  width: 100%;
  float: left;
  margin-top: 20px;
}

#included li{
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

#included li i{
  font-size: 20px;
  margin-right: 10px
}

.cost-excluded{
  display: block;
  margin-top: 50px;
}

@media(min-width: 768px){
  #included li{
    font-size: 15px;
  }
}

@media(min-width: 992px){

  #included{
    margin-top: 60px;
  }

  #included li{
    font-size: 16px;
  }
}

@media(min-width: 1200px){
  #included li{
    font-size: 17px;
    margin-left: 26px;
  }
}

/*cost and dates*/

#cost{
  width: 100%;
  float: left;
  margin-top: 20px;
}

@media(min-width: 992px){
  #cost{
    margin-top: 60px
  }
}


/*review.*/
#review{
  width: 100%;
  float: left;
  margin-top: 20px;
  margin-bottom: 20px;
}

#review .default-text{
  margin-top: 20px;
}

#review h3{
  margin: 0;
  font-size: 18px;
  margin-bottom: 20px;
}

#review .fa.fa-star{
  color: #e6ec0f;
}

.review-by{
  margin-bottom: 20px;
}

#review h3 + p{
  margin-bottom: 0;
}

#review small{
  font-style: italic;
  font-weight: 300;
}

.gallery .row{
  margin-left: -5px;
  margin-right: -5px;
}

.gallery .row .col-xs-4{
  padding-left: 5px;
  padding-right: 5px;
}

.gallery .row .col-xs-4 a{
  display:block;
  margin-bottom: 10px;
  width: 100%;
  height: 80px;
  overflow:hidden;
}

.gallery .row .col-xs-4 a img{
  width: 100%;
  height: 80px;
  object-fit: cover;
  -webkit-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.gallery .row .col-xs-4 a:hover img{
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}

@media(min-width: 481px){
  .gallery .row .col-xs-4{
    width: 25%;
    float: left;
  }
}

@media(min-width: 600px){
  .gallery .row .col-xs-4{
    width: 20%;
    float: left;
  }
}

@media(min-width: 992px){
  #review{
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .gallery .row .col-xs-4{
    width: 15%;
    float: left;
  }
}



@media(min-width: 320px) and (max-width: 480px){
  .package-category .title h1.mini-title:after, #latest-post .title h1.mini-title:after{
    display: none;
  }
  .bwg_standart_thumbnails_0 {
    /*grid-template-columns: repeat(2, 1fr) !important;*/
    display: block !important;
    max-width: 100% !important;
  }

  .bwg_standart_thumbnails_0  a{
    width: 50% !important;
    float: left
  }

}

#latest-post .title{
  text-align: left;
}

/*package.html*/
#banner-section,
.package-category,
#new-adventure,
#active-adventure,
.faq,
#latest-post,
.recently-view
{
  width: 100%;
  float: left;
}

#banner-section{
  height: 250px;
  overflow: hidden;
  border-bottom: 8px solid var(--primary-color);
  position: relative;
}

#banner-section figure{
  width: 100%;
  height: 100%;
  position: relative;
}

#banner-section figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

#banner-section figure figcaption{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

#banner-section figure figcaption h1{
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
  line-height: 1.4;
}

.package-category .title{
  text-align: left;
}

@media (min-width: 481px){
  #banner-section{
    height: 280px;
  }

}

@media (min-width: 600px){
  #banner-section{
    height: 300px;
  }

  #banner-section figure figcaption h1{
    font-size: 25px;
  }
}

@media (min-width: 600px){
  #banner-section{
    height: 450px;
  }

  #banner-section figure figcaption h1{
    font-size: 30px;
  }
}

@media (min-width: 992px){
  /*#banner-section{*/
  /*height: 500px;*/
  /*}*/

  #banner-section figure figcaption h1{
    font-size: 34px;
  }
}

@media(min-width: 1200px){
  /*#banner-section{*/
  /*height: 600px;*/
  /*}*/

  #banner-section figure figcaption h1{
    font-size: 36px;
  }
}

.package-category{
  margin-top: 2em
}

.package-category p{
  text-align: 1.5;
  font-size: 16px;
  line-height: 1.42857143;
}

.package-category p.higlight-p{
  font-size: 20px;
  font-weight: 300;
}

@media(min-width: 1200px){

  .package-category{
    margin-top: 4em
  }

  .package-category p.higlight-p{
    font-size: 22px;
  }

  .package-category p{
    font-size: 16px;
    line-height: 1.42857143;
  }

}

/*new adventure*/
#active-adventure, .recently-view{
  margin-top: 2em;
}

.xtra-section{
  padding-bottom: 2em
}

#new-adventure .row .col-xs-4,
#active-adventure .row .col-xs-4,
.recently-view .row .col-xs-4{
  width: 100%;
}

.package-box{
  width: 100%;
  float: left;
  margin-top: 2em;
}

.package-box figure{
  height: 200px;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}

.package-box figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-box figure figcaption{
  width: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  bottom: 0;
  color: #fff;
  padding: 8px;
}

.package-box figure figcaption h5{
  text-transform: uppercase;
  color: #fff;
}

.package-box .btn.btn-primary{
  text-transform: uppercase;
}


@media (min-width: 481px){
  #new-adventure .row .col-xs-4,
  #active-adventure .row .col-xs-4,
  .recently-view .row .col-xs-4{
    width: 50%;
  }
}

@media (min-width: 750px){
  #active-adventure, .recently-view{
    margin-top: 3em;
  }

  .xtra-section{
    padding-bottom: 3em
  }

  #new-adventure .row .col-xs-4,
  #active-adventure .row .col-xs-4,
  .recently-view .row .col-xs-4{
    width: 33.33333%;
  }

  .package-category .title{
    margin-bottom: 0;
  }

  .package-category .btn.btn-primary{
    transition: all 0.4s ease-in;
  }

  .package-category .btn.btn-primary:hover{
    outline: 1px solid #fff;
    outline-offset: -3px;
  }
}

@media (min-width: 1200px){
  #active-adventure, .recently-view{
    margin-top: 4em;
  }

  .xtra-section{
    padding-bottom: 4em
  }
}

/*latest post*/

#latest-post .col-xs-4{
  width: 100%;

}

.post-box{
  width: 100%;
  float: left;
  margin-top: 2em;
  border: 1px solid #ddd;
}

.post-box figure{
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.post-box figure a img{
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.post-box figure a{
  display: block;
  width: 100%;
  height: 100%;
}

.post-text{
  width: 100%;
  float: left;
  padding: 8px;
}

.post-text small{
  font-style: italic;
  font-size: 100%;
  font-weight: 300;
  color: #444;
}

.post-text h1 {
  font-size: 18px;
}

.post-text p{
  text-transform: initial;
}

@media (min-width: 481px){
  #latest-post .col-xs-4{
    width: 50%;
  }
}

@media (min-width: 750px){
  #latest-post{
    margin-top: 3em;
  }

  #latest-post .col-xs-4{
    width: 33.33333%;
  }
}

@media (min-width: 1200px){
  #latest-post{
    margin-top: 4em;
  }
}


.btn.btn-hollow{
  outline: 2px solid var(--primary-color);
  color: var(--primary-color);
  transition: all 0.4s ease-in;
}

.btn.btn-hollow:hover{
  outline: 2px solid #fff;
  outline-offset: -3px;
  background: var(--primary-color);
  color: #fff;
}

.package-category #review{
  margin-bottom: 0
}

#myScrollspy .affix{
  position: fixed !important;
  top: 10px;
  top: 100px !important;
}

.alter-container, .xtra-section{
  display: block;
}

.nav-pills li {
  margin-bottom: 10px;
}

.nav-pills>li>a{
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.4s ease;
  border-radius: 0;
  padding: 2px 10px
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:focus,
.nav-pills>li.active>a:hover{
  background: transparent;
  border-left: 3px solid var(--primary-color);
  color: #000;
}


/*overview*/
.trek-detail{
  width: 100%;
  float: left;
  background: #ededed;
}


.overview-category .title, .booking .title{
  text-align: left;
}





/*********************************************booking html*********************************************/
#content.booking{
  width: 100%;
  float: left;
  margin-top: 2em;
}

#booking-form {
  width: 100%;
  float: left;
  margin-bottom: 2em;
}

.form-wrapper{
  width: 100%;
  float: left;
  background: #f4f4f4;
  padding: 10px;
}

.form-wrapper h1{
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  border-bottom: 1px solid #ccc;
  margin-bottom: 1em;
}

#booking-form h3{
  font-weight: 300;
  font-size: 17px;
  margin-top: 10px;
  display: inline-block;
}

#booking-form h3 + .form-control{
  display: inline-block;
  float: left;
}

#booking-form h3 + .form-control{
  background: #f4f4f4;
  display: inline-block;
  float: left;
}

#booking-form .btn{
  margin-top: 10px;
}

.form-wrapper label.text-right{
  text-align: left;
}

.trip-summary{
  width: 100%;
  float: left
}

.trip-summary .col-xs-6{
  width: 100%;
}

.summary-block{
  background: #f4f4f4;
  padding: 10px;
}

.summary-block h1{
  margin: 0;
  font-size: 16px;
  font-weight: 300;
}

.summary-block small{
  display: block
}

.summary-block li{
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px
}

.summary-block li:last-child{
  border-bottom: none;
}

.summary-block small:first-of-type{
  margin-top: 10px;
}

.summary-block h5{
  font-size: 14px
}

.question{
  width: 100%;
  float: left;
}

.question h1{
  font-weight: 300;
  text-align: justify;
  font-size: 20px
}

.question p{
  font-size: 18px;
  text-align: center
}

.arrange{
  width: 100%;
  float: left;
}

@media(min-width: 500px){
  .trip-summary .col-xs-6{
    width: 50%;
  }
}

@media(min-width: 600px){
  #booking-form h3 + .form-control{
    width: 20%;
    float: none;
    margin-right: 10px
  }
}

@media(min-width: 768px){
  .trip-summary .col-xs-6{
    width: 100%;
  }

  .booking .title h1.mini-title{
    font-size: 20px;
  }

  .question h1{
    text-justify: left
  }

  #booking-form .btn.btn-primary:hover,
  #booking-form .btn.btn-primary:focus{
    outline: 2px solid #fff;
    outline-offset: -3px;
  }
}

@media(min-width: 992px){
  #content.booking{
    margin-top: 4em;
  }

  #booking-form {
    margin-bottom: 4em;
  }

  .booking .title h1.mini-title{
    font-size: 26px;
  }

  .form-wrapper label.text-right{
    text-align: right
  }
}

/*overview new design*/
.trek-detail{
  padding: 1em 0;
  margin-bottom: 5px;
}

#banner-section figure figcaption h1.text-uppercase{
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 0 0 10px #000;
}

.trek-detail .container .text-center p{
  font-size: 18px;
  font-weight: 300;
}

.trek-detail .container .text-center p.days{
  font-weight: 600;
}

.trek-detail .container .text-center p i{
  font-size: 14px;
}

.trek-detail .container .text-center p small{
  font-size: 70%;
  text-transform: uppercase;
}

.trek-detail .container .text-center p b{
  font-weight: 800;
}

.trek-detail .btn{
  text-transform: uppercase;
  width: 137px;

  display: block;
  margin : 0 auto 10px
}

#sideNav{
  margin-bottom: 20px;
}



@media(min-width: 481px){
  .trek-detail .container .row .col-xs-12:first-child{
    width: 10%;
  }

  .trek-detail .container .row .col-xs-12{
    width: 30%;
  }

  .trek-detail .container .row .col-xs-12:last-child{
    width: 100%;
  }
}

@media(min-width: 768px){
  .trek-detail .container .row .col-xs-12, .trek-detail .container .row .col-xs-12:last-child{
    width: 25%;
  }

  #overview{
    margin-top: 0;
  }
}

@media(min-width: 992px){

  .trek-detail .container .text-center p{
    font-size: 17px;
    font-weight: bold;
    color: #454545;
    text-align: left;
    margin-bottom: 0;
  }

  .trek-detail .container .text-center p + p{
    font-weight: 300 !important;
    font-size: 30px;
    margin-top: 5px;
  }

  .trek-detail .container .text-center p i{
    font-size: 25px;
  }

  .trek-detail .container .text-center p b{
    font-weight: 300;
  }

  .trek-detail .container .text-center p b + small{
    position: relative;
    top: -18px;
  }

  .trek-detail .container .text-center p small{
    font-size: 35%
  }

  .trek-detail{
    margin-bottom: 1em;
  }



  .trek-detail .container .row .col-xs-12, .trek-detail .container .row .col-xs-12, .trek-detail .container .row .col-xs-12:last-child{
    width: 22.5%;
  }


  .trek-detail .container .text-center p{
    font-size: 16px;
  }
}

#myside .affix{
  position: fixed !important;
  top: 100px !important;
}

/*nav .nav-pills.nav-stacked.affix + .marginTop{*/
/*margin-top: 190px;*/
/*width: 100%:*/
/*float: left;#eb8300*/
/*}*/

/*new design of overview*/
.list-view{
  padding: 10px 15px;
  display: block;
  width: 100%;
}

.cost-dates .list-group .list-group-item{
  padding: 0;
}

.cost-dates .list-group .list-group-item:first-child{
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.cost-dates .list-group .list-group-item:nth-child(even){
  background: #ededed
}

.cost-dates .list-group .list-group-item:last-child{
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.cost-dates .list-group .list-group-item .list-heading{

  padding: 10px 15px;
}

.cost-dates .list-group .list-group-item .list-collapse{
  padding: 10px 15px;
  background: #f4f4f4
}

.cost-dates .list-group .list-group-item .list-collapse .list-wrapp{
  border: 1px solid #d2d2d2;

}

.cost-dates .list-group .list-group-item .list-collapse .list-wrapp .item-button{
  padding: 8px;
  border-bottom: 1px solid #d2d2d2;
}

.cost-dates .list-group .list-group-item .list-collapse .list-wrapp .item-white{
  padding: 8px;
  background: #fff;
}

.cost-dates .list-group .list-group-item .list-collapse .list-wrapp .item-white p{
  font-size: 15px;
  color: #454545
}

.cost-dates .list-group .list-group-item .list-collapse .list-wrapp .item-white p span.price-line{
  font-weight: 700;

  text-decoration: line-through;
  display: block;
  font-size: 20px
}

.cost-dates .list-group .list-group-item .list-collapse .list-wrapp .item-white p span.price-red{
  font-size: 25px;
  font-weight: 700;
  color:#ed2028;
}

.cost-dates .list-group .list-group-item .list-collapse .list-wrapp .item-white .btn{
  width: 100%;

}

.cost-dates .list-group .list-group-item .list-collapse .list-wrapp .item-white p.last-p{
  font-style: italic;
}

.cost-dates .list-group .list-group-item .list-collapse .list-wrapp .item-white p b{
  font-weight: 700;
  font-style: normal;
}

@media(min-width: 768px){
  .cost-dates .list-group .list-group-item .list-collapse .list-wrapp .item-button{
    border-bottom: none;
  }

  .cost-dates .list-group .list-group-item .list-collapse .list-wrapp .item-button .btn{
    padding: 3px 5px;
    font-size: 12px;
    font-weight: 500;
  }

  .cost-dates .list-group .list-group-item .list-collapse .list-wrapp .item-white p span.price-line{
    display: inline-block
  }

  .cost-dates .list-group .list-group-item h6{
    font-size: 16px;
  }

  .list-view h5{
    font-size: 18px;
  }

}


/*booking redesign*/

#booking-nav{
  width: 100%;
  float: left;
  background: #eb8300;
  min-height: 50px;
}

#booking-nav ul.list-inline li{
  padding: 0;
  margin-left: -5px;
}

#booking-nav ul li a{
  color: #fff;
  transition: all 0.6s ease;
  font-size: 18px;
  display: block;
  padding: 12px 15px;
}


#booking-nav ul li.active,
#booking-nav ul li.active a:focus,
#booking-nav ul li.active a:hover,
#booking-nav ul li a:focus,
#booking-nav ul li a:hover{
  background: #3e62ad;
}

#secondary-header{
  height: auto
}

.list-red{
  background: #f3050f;
  padding: 15px 10px;
  color: #fff;
  font-size: 17px;
  margin-bottom: 20px;
}

@media(min-width: 768px){
  #content.booking {
    margin-top: 5em;
  }

  .list-red + hr{
    border-color: #000;
  }
  .question p{
    text-align:left
  }
}

@media(min-width: 992px){
  .list-red{
    font-size: 22px;
  }

  .question p{
    font-size: 22px;
  }
}

@media(min-width: 320px) and (max-width: 767px){
  #secondary-header.affix-top .navbar-header button{
    display: none;
  }

  #secondary-header.affix .navbar-header button{
    display: block;
  }

  #secondary-header .navbar-collapse{
    background: #fff;
  }
}

@media(min-width: 992px){
  .recently-view .row .col-xs-4.col-sm-3 {
    width: 25%;
  }
}

/*contact.html*/
.contact{
  padding: 2em 0;
}

.contact .title{
  text-align: left;
}

.title .block-title{
  display: block;
  text-align:left;
  border-bottom: 2px solid var(--primary-color);
  font-size: 25px;
}

.contact .form-control{
  border: 1px solid #d2d2d2;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.checkbox{
  font-size: 14px;
}

.text-success{
  color: var(--primary-color);
}

.contact form .btn{
  width: 100%;
}

.button{
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  overflow: hidden;
}

.button span{
  position: relative;
  pointer-events: none;
}

.button::before{
  --size: 0;
  content: '';
  position: absolute;
  left: var(--x);
  right: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, var(--secondary-color), transparent);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: width .2s ease, height .2s ease;
  transition: width .2s ease, height .2s ease;
}

.button:hover::before {
  --size: 500px;
}

.contact .title .block-title{
  margin-bottom: 1em
}

.general-enquiry {
  width: 100%;
  float: left;
  margin: 2em 0;
}

.general-enquiry h1{
  font-size: 22px;
  color: #000;
  margin: 0;
}

ul.general-items{
  margin-top: 25px;
  margin-bottom: 10px;
}

ul.general-items li{
  margin-bottom: 10px
}

ul.general-items li i{
  float: left;
  position: relative;

  font-size: 20px;
}

ul.general-items li div{
  padding-left: 36px;
  font-size: 15px;
}

@media(min-width: 768px){
  ul.general-items li i.fa.fa-envelope{
    display: block;
  }

  .general-enquiry{
    margin: 0;
  }
}

@media(min-width: 992px){
  .contact{
    padding: 4em 0;
  }

  .title .block-title{
    font-size: 36px
  }

  .checkbox{
    font-size: 16px;
  }

  .general-enquiry h1{
    font-size: 28px;
  }

  ul.general-items {
    margin-top: 30px;
    margin-bottom: 25px;
  }

  ul.general-items li div{
    font-size: 18px;
  }
}

/*about.html*/

.about-text{
  margin: 2em 0;
}

.about-text p{
  font-size: 14px;
  margin-bottom: 20px
}

.about-text p:last-of-type{
  margin-bottom: 0;
}

.about-blocks{
  width: 100%;
  float: left;
}

.about-blocks .col-xs-6{
  width: 100%;
}

.about-block-content{
  width: 100%;
  float: left;
  margin: 1em 0 2em 0;
}

.about-block-content figure{
  width: 100%;
  position: relative
}

.about-block-content figure figcaption{
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.about-block-content figure img{
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.about-block-content:hover{
  box-shadow: 2px 2px 21px #B6B6B6;
  -webkit-transition: ease-in .22s;
  -moz-transition: ease-in .22s;
  -o-transition: ease-in .22s;
}

.block-content-text{
  width: 100%;
  float: left;
  padding: 10px;
}

.block-content-text .btn{
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  margin-top: 5px;
  transition: all 0.5s ease;
}

.block-content-text .btn:hover,
.block-content-text .btn:focus,
.block-content-text .btn:active{
  outline: 1px solid #fff;
  outline-offset: -3px;
  background: var(--primary-color);
  color: #fff;
}

@media(min-width: 481px){
  .about-blocks .col-xs-6{
    width: 50%;
  }

  .about-block-content{
    height: 370px;
    overflow: hidden;
  }
}

@media(min-width: 600px){
  .about-block-content{
    height: 310px;
  }
}

@media(min-width: 768px){
  .about-blocks .col-xs-6{
    width: 33.333%
  }

  .about-block-content{
    height: 370px;
  }
}

@media(min-width: 992px){
  .about-text{
    margin-top: 4em;
  }

  .about-text p{
    font-size: 16px;
  }

  .about-block-content figure figcaption{
    font-size: 18px;
  }

  .block-content-text p{
    font-size: 15px;
  }
}

/* booking2.html */
.tailor-block{
  width: 100%;
  float: left;
}

h1.tailor-title{
  font-size: 20px;
  font-weight: 300;

}

h1.tailor-title i{
  margin-right: 10px;
}

h1.tailor-title + h5{
  font-weight: 400;
  font-size: 14px;
}

.tailor-item{
  width: 100%;
  float: left;
  margin-bottom: 15px;
}

.box-label{
  width: 100%;
  float: left;
  background: #f4f4f4;
  margin-top: 20px;
  padding: 15px;
}

.no-button{
  color: var(--primary-color);
  position: relative;
  top: 14px;
  font-size: 14px;
}


.tailor-block + .row{
  margin-bottom: 40px;
}

@media (min-width: 481px){
  .tailor-item .form-group .col-xs-12{
    width: 50%;
  }

  .box-label{
    height: 120px;
  }
}

@media(min-width: 768px){
  h1.tailor-title{
    font-size: 25px;
  }

  h1.tailor-title + h5{
    font-size: 18px;
  }

  .box-label{
    height: 180px;
    padding: 40px;
  }

  .tailor-item label{
    font-size: 15px;
  }

  .box-label p{
    font-size: 15px;
  }
}


.sub-form #search .form-group{
  top: 0
}


/* booking3.html */
.title p{
  text-transform: none;
  margin: 15px 0;
}

.well.final-list{
  margin-bottom: 0;
}

.well-title{
  margin-top: 0;
  font-size: 20px;
  font-weight: 400
}

.final-list h6 a{
  color: var(--primary-color)
}

.final-list .table-responsive{
  margin-top: 15px;
}

.final-list .table > tbody > tr > td i{
  position: relative;
  margin-top: -4px;
  color: #474747;
}

.final-list .table > tbody > tr > td strong, .discount-rate{
  font-weight: 700;
  font-size: 14px;
}

.final-list .table > tbody > tr > td{
  font-weight: 400;
}

.final-list .table > tbody > tr > td a{
  color: var(--primary-color);
}

.total-price.text-right{
  font-size: 16px;
  font-weight: 700;
  background: #2E3A47;
  padding: 10px 5px;
  color: #fff;
}

@media(min-width: 768px){
  .title p{
    font-size: 16px;
  }

  .well-title{
    font-size: 25px;
  }

  .total-price.text-right{
    font-size: 20px;
    padding: 10px 15px;
  }
}


/* blog.html */

.blog{
  margin: 2em 0;
}

.blog-wrapper{
  width: 100%;
  float: left;
  margin-bottom: 1em;
  padding-bottom: .35em;
  border-bottom: 1px solid #a7a7a7;
}

.blog-wrapper:last-of-type{
  border-bottom: none;
}

.blog-wrapper .row .col-xs-4, .blog-wrapper .row .col-xs-4 + .col-xs-8{
  width: 100%;
}

.blog-wrapper .col-xs-4 a {
  display: block;
}

.blog-wrapper .col-xs-4 a img{
  height:auto;
  width: 100%;
  float: left;
}

.blog-wrapper .blog-text{
  width: 100%;
  float: left;
  padding: 0;
}

.blog-wrapper .blog-text h1{
  font-weight: 400;
  font-size: 18px;
}

.title .bckg-title{
  display: block;
  background: #f4f4f4;
  font-size: 16px!important;
  padding: 7px;
  letter-spacing: 0.03em;
}

.blog-trending{
  width: 100%;
  float: left;
}

.blog-trending .title{
  margin-bottom: 2em;
}

.blog-trending .blog-wrapper .row .col-xs-4{
  width: 33.33%;
  padding-right: 0;
}

.blog-trending .blog-wrapper .row .col-xs-4 img{
  height: 78px;
  object-fit: cover;
}

.blog-trending .blog-wrapper .row .col-xs-8{
  width: 66.67%;
  padding-left: 8px;
}

.blog-trending .blog-wrapper .blog-text h1{
  margin-top: 0;
  font-size: 16px;
}

@media(min-width: 600px){
  .blog-wrapper .row .col-xs-4{
    width: 33.33%;
  }

  .blog-wrapper .row .col-xs-4 + .col-xs-8{
    width: 66.67%;
  }
}

@media(min-width: 768px){
  .blog{
    margin: 4em 0;
  }

  .blog-wrapper .blog-text h1{
    margin-top: 0;
  }

  .blog-wrapper .blog-text p{
    height: auto;
    font-size: 16px;
    line-height: 1.42857143;
  }

  .blog-trending .title{
    margin-top: 0;
  }

  .title .bckg-title{
    margin-top: 0;
    font-size: 18px;
  }

  .blog-trending .blog-wrapper .row .col-xs-4 img{
    height: auto;
  }

  .blog-trending .blog-wrapper .blog-text h1{
    font-size: 14px;
  }
}

/* blog-detail */

.blog-title h1{
  font-size: 20px;
  margin-bottom: 5px;
}

.blog-detail-content small{
  font-style: italic;
  color: #424244
}

.blog-detail-content .text-center + figure{
  margin: 1.5em 0;
}

.share-block{
  width: 100%;
  float: left;
  padding: 15px 0;
}

.blog-detail-content p + figure{
  position: relative;
  margin: 1em 0;
}

.blog-detail-content figcaption{
  position: absolute;
  left: 0;
  padding: 8px;
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  width: 100%;
  color: #fff;
}

.alter-share{
  width: 100%;
  float: left;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 8px 0;
}

.alter-share ul li:first-child{
  border-right: 1px solid #ddd;
  margin-right: 10px;
}

.recent-blog .package-box figure figcaption{
  position: static;
  background: none;
  color: #333;
}

.recent-blog .package-box figure figcaption h5{
  color: #333;
}

.blog-comment{
  width: 100%;
  float: left;
  margin-top: 1.5em;
}

.blog-comment h1{
  display: inline-block;
  text-transform: uppercase;
  font-size: 18px;
  text-align: center;
  position: relative;
}

.blog-comment h1:before{
  content: '';
  position: absolute;
  width: 30px;
  height: 1px;
  top: 9px;
  left: -40px;
  background: #5be2f3;
}

.blog-comment h1:after{
  content: '';
  position: absolute;
  width: 30px;
  height: 1px;
  top: 9px;
  right: -40px;
  background: #5be2f3;
}

.blog-comment .form-group .form-control{
  border: 1px solid #e0e0e0;
}

.blog-comment .btn.btn-default{
  background-color: #827c7c;
}

@media(min-width: 992px){
  .blog-title h1{
    font-size: 36px;
  }

  .blog-detail-content p{
    font-size: 16px;
    line-height: 1.42857143;
  }
}

/*final changes*/

.navbar-right .form-group{
  display: table;
  position: relative;
  top: 32px
}

.navbar-right .form-group .form-control{
  display: table-cell;
  float: left;
  width: 65%;
  border: 1px solid #ddd;
  height: 32px;

}

.navbar-right .form-group .btn.btn-primary{
  display: table-cell
}

.sub-form #search{
  margin-top: 20px;
}

.table-striped>tbody>tr:nth-of-type(odd){
  background: #f4f4f4
}

.table > thead > tr > th{
  vertical-align: bottom;
  border-bottom: 2px solid #d2d2d2
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td,
.table > tbody > tr > td, .table > tfoot > tr > td, .table > tbody > tr > td a{
  border-color: #d2d2d2;
  color: #454545;
  font-size: 16px;
}



.breadcrumb{
  padding:5px 0;
  margin-bottom:0px;
  list-style:none;
  background-color:transparent;
  border-radius:0;

}
.breadcrumb > li{
  display:inline-block;
}

.breadcrumb > li a{
  font-size: 16px;
  color: var(--primary-color);
}
.breadcrumb > li + li:before{
  content:">\00a0";
  padding:0 5px;
}
.breadcrumb > .active{
  color:#454545;
  font-size: 16px;
}

#last-minute-deals .btn.btn-transparent{
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-size: 15px;
  transition: all 0.4s ease;
}

#last-minute-deals .btn.btn-transparent:hover{
  background: var(--primary-color);
  outline: 1px solid #fff;
  outline-offset: -3px;
  color: #fff;
}

#itinerary .panel.panel-default{
  margin-bottom: 20px;
}

.panel-default>.panel-heading{
  background: #ededed;
  border-color: #2B3945;
}

#itinerary .panel-heading .col-xs-10, #itinerary .panel-heading .col-xs-10 + .col-xs-1{
  top: 6px;
  color: #454545;
  font-size: 16px;
  letter-spacing: 0.03em;
}

.itinerary-accordion #expandAll, .itinerary-accordion #collapseAll{
  font-size: 15px;
  margin-bottom: 10px;
}




/*enquiry.html*/
.fast-enquiry .form-group{
  display: inline-block;
  vertical-align: middle
}

.fast-enquiry{
  width: 100%;
  float: left;
  padding: 5em 0;
}

.fast-enquiry h3{
  color: #454545;
  font-size: 34px;
}

.fast-enquiry h4{
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 2em;
}

.fast-enquiry .form-group .control-label{
  display: block;
  visibility: hidden;
}

.fast-enquiry .form-group .form-control{
  width: 330px;
  display: inline-block;
  vertical-align: middle;
  border:1px solid #d2d2d2;
}

.fast-enquiry .form-group textarea.form-control{
  width: 662px
}



.fast-enquiry form .btn.btn-primary{
  margin-top: 18px;
  height: 34px
}

@media(min-width: 992px) and (max-width: 1199px){
  .fast-enquiry .form-group .form-control {
    width: 230px;
  }

  .fast-enquiry .form-group textarea.form-control{
    width: 462px
  }
}

#secondary-header .dropdown-menu{
  top: 70px;
  border: none;
}

#secondary-header .dropdown-menu li a{
  padding: 10px 15px;
}

.cost-included li, #included .cost-excluded li{
  position: relative;
}

.cost-included li:before{
  content: "\f00c";
  position: absolute;
  left: -27px;
  top: 1px;
  font: normal normal normal 10px/1 FontAwesome;
  background: var(--primary-color);
  color: #fff;
  padding: 4px;
  border-radius: 50%;
}

#included .cost-excluded li:before{
  content: "\f00d";
  position: absolute;
  left: -27px;
  top: 1px;
  font: normal normal normal 10px/1 FontAwesome;
  background: #a94442;
  color: #fff;
  padding: 4px;
  border-radius: 50%;
}

p{
  line-height: 28px;
  font-size: 14px;
  letter-spacing: 0.03em;
}

#overview .title{
  width: 100%;
  float: left;
  margin-bottom: 5px;
}

#overview .title h6{
  display: none
}

#overview .title .share-block{
  padding: 0;
}

#overview .title .share-block a.text-center{
  text-align: left;
  position: relative;
  top: 5px;
}

#overview .title .share-block a.text-center i{
  font-size: 24px

}

.overview-content p:first-of-type{
  margin-top: 30px;
}

.post-box figure{
  border-bottom: 2px solid var(--primary-color);
}

.post-box h1{
  position: relative;
  padding-bottom: 10px
}

.post-box h1:after{
  content: '';
  position: absolute;
  height: 2px;
  width: 25%;
  background: #454545;
  left: 0;
  bottom: 0;
}

.blog-wrapper .blog-text h1{
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #313131;
  font-weight: 600;
  letter-spacing: 0.029em;
}

.blog-wrapper .blog-text h1 + div{
  position: relative;
  padding-bottom: 7px;
}

.blog-wrapper .blog-text h1 + div:after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 15%;
  background: #eb8300;
  height: 1.5px;
}

.blog-wrapper{
  padding-bottom: 2em;
  margin-bottom: 2em;
}



/* team.html */
.team .title{
  text-align: left;
}

.team-content{
  width: 100%;
  float: left;
  padding: 2em 0 1.5em 0;
}

.team-content p{
  color: #454545;
}

.team-content .title{
  text-align: left;
  margin-top: 2em;
  margin-bottom: 1em;
}

.team-content .title h1.mini-title:after{
  display: none;
}

.team-content ul.nav.nav-tabs{
  border-bottom: none;
  border: 1px solid #ddd;
  display: inline-block;
}

.team-content ul.nav.nav-tabs li a{
  border: none;
  border-right: 1px solid #ddd;
  border-radius: 0;
  text-transform: uppercase;
  margin: 0;
  width: 100%;
}

.team-content .nav-tabs>li{
  margin-bottom: -2px;
  width: 100%;
}

.team-content ul.nav.nav-tabs li:last-child a{
  border-right: none
}

.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
  border: none;
  color: #fff;
  background-color: var(--primary-color);
}

.team-content .nav.nav-tabs li a:hover{
  color: #fff;
  background-color: var(--primary-color);
}

.table-cell figure{
  width: 100px;
  height: 100px;
  margin: 15px auto;
}

.table-cell figure img{
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.table-cell span{
  display: block;
  font-size: 13px;
}

.table-cell  span.trekker{
  font-weight: 600px;
  font-size: 18px;
  font-style: italic;
  position: relative
}

.table-cell span.trekker:before{
  content: '-';
  position: absolute;
  left: -7px;
}

.div-table{
  margin-bottom: 30px;
}

@media (min-width: 500px){
  .team-content .nav-tabs>li{
    width: auto;
  }

  .team-content ul.nav.nav-tabs li a{
    font-size: 10px;
    padding: 10px 2px;
  }
}

@media(min-width: 600px){
  .team-content ul.nav.nav-tabs li a{
    font-size: 12px;
    padding: 10px 4px;
  }
}

@media(min-width: 768px){
  .team-content ul.nav.nav-tabs li a{
    font-size: 14px;
    padding: 10px;
  }

  .div-table{
    display: table;
    margin: 20px  0 0 ;
  }

  .div-table .table-cell{
    display: table-cell;
    min-height: 240px;
  }

  .table-cell figure{
    margin: 0 auto;
    width: 150px;
    height: 150px;
  }

  .div-table .table-cell.first-cell{
    width: 33.33%;
    text-align: center;
    vertical-align: middle;
  }

  .div-table .table-cell.second-cell{
    border-left: 4px solid var(--primary-color);
    padding: 15px 0 15px 30px;
  }
}


@media(min-width: 992px){
  .team-content{
    padding-top: 4em;
  }

  .team-content p{
    font-size: 16px;
  }

  .team-content .title{
    margin-top: 3em;
    margin-bottom: 2em;
  }

  .div-table{
    margin-top: 40px;
  }

  .div-table .table-cell.first-cell{
    width: 25%;
  }

  .team-content ul.nav.nav-tabs li a{
    padding: 10px 15px;
  }
}


@media(min-width: 768px){
  .table-responsive{
    overflow-x: visible;
  }
}



/*amika changes*/
.imp-notes p{
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.03em;

}

.morePassenger .form-wrapper{
  margin-top: 30px;
}

section#notes {
  margin-top: 20px;
}

section#trip {
  margin-top: 20px;
}

section#place {
  margin-top: 20px;
}

.footer-btm-section-right {
  background: #2a3a44;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
  font-size: 14px;
}

/*ul#menu-footer-menu li{*/
/*  display: inline-block;*/
/*  padding: 10px;*/

/*}*/

#expandAll, #collapseAll{

  cursor: pointer;

}

.footer-contact p a {
  color: #fff;
}



/*=============P css start================*/

.dropdown-prathib {
  position: absolute;
  z-index: 1000;
  width: 600px;
  top: 51px;
  left: -200px;
}

/* Style the tab */
.dropdown-prathib .tab {
  float: left;
  border: none;
  background-color: #eb8300;
  width: 200px;
  height: 300px;
  border-bottom: 5px solid #4164af;
}

/* Style the buttons inside the tab */
.dropdown-prathib .tab .nav-tabs li a {
  display: block;
  background-color: inherit;
  padding: 10px 15px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
  color: #fff!important;
  text-transform: capitalize!important;
  font-weight: 500!important;
}

.dropdown-prathib .tab .nav-tabs li.active{
  background-color: #4164af!important;
  color: #fff!important;
}

.dropdown-prathib .tab .nav-tabs {
  border-bottom: none;
}

/* Change background color of buttons on hover */
.dropdown-prathib .tab .nav-tabs li a:hover {
  background-color: #4164af!important;
  color: #fff!important;
}


/* Style the tab content */
.dropdown-prathib .tab-content {
  background-color: #f6f7f9;
  float: left;
  padding: 10px 15px;
  border: none;
  width: 300px;
  border-left: none;
  height: 300px;
  /*-webkit-columns: 2 100px;*/
  /*-moz-columns: 2 100px;*/
  /*columns: 2 100px;*/
  /*-moz-column-fill: auto;*/
  /*column-fill: auto;*/
  border-bottom: 5px solid #4164af;
}

.dropdown-prathib .tab-content ul li {
  list-style: none;
  margin: 10px 10px 10px 0;
}

.dropdown-prathib .tab-content ul li a {
  font-size: 14px;
  margin-bottom: 2px;
  text-transform: capitalize!important;
}

.dropdown-prathib .tab-content ul li a:hover {
  text-decoration: underline;
  color: #4164af;
}

.dropdown-prathib .nav-tabs>li{
  width:100%;
}

#media .thumbnail{
  display: block;
  padding: 4px;
  margin-bottom: 0px!important;
  line-height: 1.42857143;
  background-color: #fff;
  border: none!important;
  border-radius: 0px;
  -webkit-transition: border .2s ease-in-out;
  -o-transition: border .2s ease-in-out;
  transition: border .2s ease-in-out;
}

#media .thumbnail img {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

#media .thumbnail:hover img {
  -webkit-filter: none; /* Safari 6.0 - 9.0 */
  filter: none;
}

#reg-logo #media .item .col-sm-2{
  width: 20%!important;
}

.imp-notes li {
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 28px;
}


/*Common css for all*/
p{
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.03em;

}


/*blog added css*/
#blog-main-section{
  padding-right: 50px;
}

#blog-side-section{
  padding: 0;
}

.blog-wrapper .row .blog-image-news {
  width: 45%!important;
}

.blog-wrapper .row .blog-text-news {
  width: 55%!important;
}

.blog-trending .blog-wrapper {
  padding-bottom: 1.5em;
  margin-bottom: 2em;
}

.blog img:hover{
  opacity: 0.95;
}

.package-box figure:hover figcaption{
  background: rgba(253, 253, 253, 0.5);
  color: #0c0c0c;
}

.package-box figure figcaption{
  -webkit-transition: 2s; /* Safari */
  transition: 2s;
}
/*============p css end===============*/



/*amika new changes*/
.bPackageDetails{
  margin-top: 20px;
}

.bPackageType, .bDestination, .bContact, .bBlog{
  margin-bottom: 22px;
}

/*.tab-content ul>li{*/
/*width:100%;*/
/*}*/

.costStatus{
  padding: 4px;
  background: #2B3945;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border: none;
}


.more-trip-detail {


}


/*nav changes by geeksagar*/

/*pr changes*/
.dropdown-prathib .tab-content .tab-pane ul{
  width: 272px;
}

.dropdown-prathib .tab-content .tab-pane h1{
  width: 272px;
  font-size: 22px;
  margin-top: 0;
  letter-spacing: 0.05em;
}

#am{
  left: -110px!important;
}

/*.dropdown-prathib .tab-content .tab-pane ul li:nth-child(8){*/
/*  text-decoration: underline;*/
/*  color: #4163af!important;*/
/*}*/

.list-heading .col-sm-offset-2 , .list-view .col-sm-offset-2{
  margin-left: 0;
}

.cost-dates .list-group .list-group-item .list-collapse .list-wrapp .item-button .btn{
  padding: 3px 5px;
  font-size: 12px;
  font-weight: 500;
}

.cost-dates .list-group .list-group-item .list-collapse .list-wrapp .item-button .btn-primary{
  background-color: #2c3944;
}

.fully-book{
  font-size: 40px;
  font-weight: bold;
  color: #454545;

}

.text-right p{
  margin-top: 5px;
}

.places-to-visit .places-to-visit-details .places-to-visit-foto img{
  width: 100%;
  height: 110px;
  object-fit: cover;
  -webkit-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.places-to-visit .places-to-visit-details .places-to-visit-foto a:hover img {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}
.places-to-visit .places-to-visit-details .places-to-visit-foto a {
  display: block;
  margin-bottom: 25px;
  width: 100%;
  /*height: 110px;*/
  overflow: hidden;
  padding: 0;
}
.places-to-visit .places-to-visit-details .places-to-visit-name{
  padding-left: 0;
}
.places-to-visit .places-to-visit-details .places-to-visit-name h1 {
  line-height: 20px;
  letter-spacing: 0.02em;
  margin: 5px;
  margin-top: 10px;
}
.places-to-visit .places-to-visit-details .places-to-visit-name h1 a{
  color: #eb8300;
  text-transform: uppercase;
  -webkit-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  transition: all 0.8s ease;
  background: none;
  padding: 0;
  font-size: 16px;
  text-align: left;
  white-space: unset;
}
.places-to-visit .places-to-visit-details .places-to-visit-name h1 a:hover{
  color: #4164af;
}
.modal-image img{
  width: 100%;
  height: auto;
}
.modal-content{
  background-color: white;
  width: 100%;
  max-height: 40%;
  overflow-y: auto;
  padding: 20px 5px;
  border-radius: 0;

}
.modal-text{
  text-align: justify;
  color: rgba(25, 25, 25, 0.94);
}
.modal-text h1{
  color: #4164af;
  font-size: 26px;
  line-height: 28px;
  letter-spacing: 0.02em;
  margin-top: 0;
}
.modal-content .close {
  float: right;
  font-size: 35px;
  margin-top: -20px;
  font-weight: 700;
  line-height: 1;
  color: #4164af;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: unset;
}

/*amika chnages*/
.panel-body h5 {
  font-weight: 700;
  font-size: 16px;
  color:#454545;
}

.panel-body ul {

  margin-left: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.panel-body ul li{

  font-size: 14px;
  padding-bottom: 4px;
}


/*partners*/

.any-class{
  width: 100%!important;
  height: auto;
}
.any-class ul li img{
  width: auto;
  height: auto;
  margin: 40px 5px 20px 5px;
  padding: 10px;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
.any-class ul li a:hover img {
  -webkit-filter: none; /* Safari 6.0 - 9.0 */
  filter: none;
}



/*news menu*/

.menu-area{background: #fff}
.mainmenu.dropdown-menu{padding:0;margin:0;border:0 solid transparent!important;border:0 solid rgba(0,0,0,.15);border-radius:0;-webkit-box-shadow:none!important;box-shadow:none!important}
.mainmenu a, .mainmenu .navbar-default .navbar-nav > li > a, .mainmenu ul li a , .navbar-expand-lg .navbar-nav .nav-link{color:#fff;font-size:16px;text-transform:capitalize;padding:16px 15px;font-family:'Roboto',sans-serif;display: block !important;}
.mainmenu .active a,.mainmenu .active a:focus,.mainmenu .active a:hover,.mainmenu li a:hover,.mainmenu li a:focus ,.navbar-default .navbar-nav>.show>a, .navbar-default .navbar-nav>.show>a:focus, .navbar-default .navbar-nav>.show>a:hover{color: #fff;background: #4CAF50;outline: 0;}
/*==========Sub Menu=v==========*/
.mainmenu .collapse ul > li:hover > a{background: #4CAF50;}
.mainmenu .collapse ul ul > li:hover > a, .navbar-default .navbar-nav .show .dropdown-menu > li > a:focus, .navbar-default .navbar-nav .show .dropdown-menu > li > a:hover{background: #4CAF50;}
.mainmenu .collapse ul ul ul > li:hover > a{background: #4CAF50;}
.mainmenu .collapse ul ul, .mainmenu .collapse ul ul.dropdown-menu{background:#eb8300;}
.mainmenu .collapse ul ul ul, .mainmenu .collapse ul ul ul.dropdown-menu{background:#1E88E5}
.mainmenu .collapse ul ul ul ul, .mainmenu .collapse ul ul ul ul.dropdown-menu{background:#64B5F6}
#menu_area ul li{
  list-style: none;
}
.mainmenu .collapse ul ul ul > li:hover > a.level2 {
  background: transparent;
}
#menu_area .navbar-toggle .icon-bar{background-color: white}
#menu_area .collapse ul > li:hover > a.level0 {
  background: transparent;
  color: #0661c1;
}
#menu_area a.level0 {
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #eb8300;
}
#menu_area a.level1 {
  font-size: 15px;
  text-transform: capitalize;
  letter-spacing: 0.03em;
  font-weight: 600;
}
#menu_area .navbar-nav {
  margin: 0 -15px;
}
.mainmenu .collapse ul ul > li:hover > a.level1{
  background-color: #0661c1;
}
.mainmenu .collapse ul ul ul, .mainmenu .collapse ul ul ul.dropdown-menu {
  background: #fff;
}
#menu_area a.level2 {
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #eb8300;
}

#menu_area .current-menu-item a.level0, #menu_area .current-menu-item a.level1, #menu_area .current-menu-item a.level2{
  background-color: transparent;
  color: #0661c1;
}

.fa-star{
  color:#efa42f;
}


/******************************Drop-down menu work on hover**********************************/
.mainmenu{background: none;border: 0 solid;margin: 0;padding: 0;min-height:20px;width: 100%;}
@media only screen and (min-width: 767px) {
  .mainmenu .collapse ul li:hover> ul{display:block}
  .mainmenu .collapse ul ul{position:absolute;top:100%;left:0;min-width:250px;display:none}
  /*******/
  .mainmenu .collapse ul ul li{position:relative}
  .mainmenu .collapse ul ul li:hover> ul{display:block}
  .mainmenu .collapse ul ul ul{position:absolute;top:0;left:100%;min-width:250px;display:none}
  /*******/
  .mainmenu .collapse ul ul ul li{position:relative}
  .mainmenu .collapse ul ul ul li:hover ul{display:block}
  .mainmenu .collapse ul ul ul ul{position:absolute;top:0;left:-100%;min-width:250px;display:none;z-index:1}
}
@media only screen and (max-width: 767px) {
  .navbar-nav .show .dropdown-menu .dropdown-menu > li > a{padding:16px 15px 16px 35px}
  .navbar-nav .show .dropdown-menu .dropdown-menu .dropdown-menu > li > a{padding:16px 15px 16px 45px}
  .navbar-toggle {
    background-color: #eb8300!important;
  }
}
.bwg_standart_thumbnails_0{
  display: inline-grid !important;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  width: 100%;
}
#map {
  width: 100%;
  float: left;
}
.embed-responsive-4by3 {
  padding-bottom: 50% !important;
}

.imp-notes li {
  margin-left: 15px;
}
.sharethis {
  float: left;
  margin-top: 20px;
}
.places-title {
  color: #eb8300;
  text-transform: uppercase;
  -webkit-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  transition: all 0.8s ease;
  background: none;
  padding: 0;
  font-size: 16px;
  text-align: left;
  white-space: unset;
}
.partner-image{
  background: #cacaca;
  margin: 0 -9999px;
  padding: 30px 9999px 20px;
  text-align: center;
}
.partner-image .image-holder {
  width: 712px;
  margin: 0 auto;
}

.content-frame{
  padding: 13px 40px 0 0;
}
.content-block h1 {
  margin: 0 0 10px;
  font: 700 23px/27px 'Roboto', Arial, Verdana, Helvetica, sans-serif;
  color: #000;
}
.reasons-block {
  margin: 0 0 30px;
}
.content-block .reasons-block .column {
  height: auto !important;
  padding-bottom: 0;
}
.reasons-block .column .title {
  display: block;
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
  margin: 0 0 0px;
}
.content-join-block {
  background: rgba(0,0,0,.1);;
  padding: 35px 40px 40px;
  margin: 0 0 0 -40px;
  position: relative;
}
.content-block .content-join-block h2 {
  font-size: 21px;
  line-height: 25px;
  margin: 0 0 4px;
}
.content-join-block>p {
  margin: 0 0 25px;
}
.reasons-block .column {
  font-size: 15px;
  line-height: 20px;
  position: relative;
  padding: 0 0 17px 25px;
}
.reasons-block .column .glyphicon {
  color: #eb8300;
  left: 0;
  position: absolute;
  top: 4px;
}
.glyphicon-ok:before {
  content: "\e013";
}
.content-join-block .input-holder>.glyphicon {
  color: #eb8300;
  float: left;
  left: 17px;
  margin: 10px 15px 0 0;
  position: absolute;
  top: 1px;
  z-index: 999;
}
.content-join-block .input-holder {
  overflow: hidden;
  margin: 0 0 17px;
  position: relative;
}
.content-block .input-holder .input-wrap .form-control {
  border: 1px solid #cacaca;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  padding-left: 58px;
  height: 37px;
}
.content-join-block .input-holder:after {
  background: #cacaca;
  content: '';
  left: 44px;
  position: absolute;
  top: 1px;
  width: 1px;
  height: 35px;
}

.content-frame p {
  line-height: 20px;
}
.mobile-sticky-nav.affix {
  bottom: 0;
  width: 100%;
  margin: 0 -15px;
  z-index: 1;
}
.places-to-visit-foto{
  min-height: 195px;
}

@media(min-width: 320px) and (max-width: 480px){
  .overview-content .well .title + .table-responsive{
    overflow: hidden
  }
  .overview-content .well .title + .table-responsive>.table>tbody>tr>td{
    white-space: normal;
    font-size: 12px
  }
  #cost{
    padding-top: 50px;
  }
  .ng-scope{
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .bwg_standart_thumbnails_0{
    display: block !important;
    height: auto;
    width: 100%;
    float: left;
    overflow: hidden;
    grid-template-columns: none;
    grid-template-rows: none;
  }

  .bwg_standart_thumbnails_0 a {
    width: 49% !important;
    float: left;
  }

  .bwg_standart_thumbnails_0 a:nth-child(odd){
    margin-right: .5%;
  }

  .bwg_standart_thumbnails_0 a:nth-child(even){
    margin-left: .5%;
  }

  #bwg_container1_0 #bwg_container2_0 .bwg_standart_thumb_spun1_0,
  #bwg_container1_0 #bwg_container2_0 .bwg_standart_thumb_spun2_0{
    width: 100% !important;
  }

  #bwg_container1_0 #bwg_container2_0 .bwg_standart_thumb_spun2_0 img{
    width: 100% !important;
    object-fit: cover;
    object-position: top;
  }
}
@media (max-width: 767px){
  .visible-xs-block {
    display: block !important;
  }
}
#myEmail{
  z-index: 9999;

}
.email_modal{
  width: 64% !important;
  padding: 10px 5px;
}
.modal-title{
  color: #6ab33e;
}
.section-header {
  font-family: Raleway;
  color: #9aca71;
  text-align: center;
  margin-top: 30px;
}
.news-all {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 35px;
}
.news-all:hover {
  background-color: #eeebeb;
}
.news-all .row {
  margin-bottom: 40px;
  margin-right: -15px;
  margin-left: -15px;
}
.for-btn > a.btn-default {
  color: white;
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  margin-right: 10px;
  text-align: center;
  border-radius: 0px !important;
  padding: 5px 6px;
  white-space: nowrap;
  letter-spacing: 1px;
  display: inline-block;
  background-color: #9aca71;
  border: 2px solid #9aca71;
  font-family: Raleway-SemiBold;
  text-transform: uppercase;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.fast-enquiry .enquiry-message {

  font-size: 17px;
  margin-bottom: 20px;
  background-color: #eb8300;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 14px;
  color: #fff;


}


/*sagar design*/
.dropdown-prathib{
  width: 700px;
}

.dropdown-prathib .tab-content{
  width: 500px;
}

.dropdown-prathib .tab-content .tab-pane ul{
  width: auto;
}

.dropdown-prathib .tab-content ul li:first-child{
  margin-top: 0;
}

.dropdown-prathib .tab-content .tab-pane ul{
    
  -moz-column-count: 2;
  -moz-column-gap: 20px;
  -webkit-column-count: 2;
  -webkit-column-gap: 20px;
  column-count: 2;
  column-gap: 20px;
  
}

 .dropdown-prathib .tab-content .tab-pane h1 {
                 width: auto; 
                
  }
  #ternary-header .navbar.navbar-default .navbar-nav li {
   border-right: 0px solid #fff;
   padding: 0px 5px;
}




