body{
	background:#E8EFCF;
	     font-family: ui-sans-serif;
	
}
.backimg{
	background-image: url(images/icons/climpek.png);
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #DBA979;
  padding: 10px 0;
  font-size: 14px;
  
}

#topbar .contact-info i {
  font-style: normal;
  color: #f03c02;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #2b2320;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #f03c02;
}

#topbar .social-links a {
  color: #fff;
  line-height: 0;
  transition: 0.3s;
  margin-left: 15px;
}

#topbar .social-links a:hover {
  color: #0d1a81;
}
<!-- end -->



/*--------------------------------------------------------------
# header
--------------------------------------------------------------*/

#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 0px 3px 0px;
}

#header.fixed-top {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

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

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

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

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

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

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  text-transform: capitalize;
  transition: 0.3s;
  text-decoration:none;
  
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #f03c02;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #f03c02;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #fd490f;
}

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

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

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

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: blue;
}

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

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

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

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

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

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

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(14, 11, 10, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #581601;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #f03c02;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #f03c02;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  position: relative;
  padding: 0;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  bottom: 60px;
  top: 110px;
  left: 50px;
  right: 50px;
}

#hero .carousel-content {
  background: rgba(28, 23, 21, 0.7);
  padding: 20px;
  color: #fff;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  border-top: 5px solid #f03c02;
}

#hero .carousel-content h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
}

#hero .btn-get-started {
  font-family: "Trirong", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #f03c02;
}

#hero .btn-get-started:hover {
  background: #f03c02;
  color: #fff;
  text-decoration: none;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  cursor: pointer;
}

@media (min-width: 1024px) {
  #hero .carousel-content {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 992px) {
  #hero {
    height: 300px;
  }

  #hero .carousel-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
  }

  #hero .carousel-content p {
    font-size: 15px;
  }
   .booking{
     margin-top:0;
   }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
 
}

.full-row{
	width: 100%;
	position: relative;
	padding-bottom: 80px;
	padding-top: 80px
}
.booking{
    background: #181715b8;
    position: relative;
    margin-top: -90px;
    z-index: 111;
	
}
.bk-btn{
	background: #DBA979;
    margin-top: 21px;
    color: #064a93;
    font-weight: 700;
}

.bk-btn:hover{
	background:#E8EFCF; 
	color: #064a93;
    font-weight: 700;
}

.titleservices {
  text-align: center;
  color: #2890ff;
  font-weight: 800;
  padding: 20px 0;


}

.ps {
  text-align: center;
  color: #1e1616;
  padding: 0 15rem;
}

.titleservices>span {
  color: #f03c02;

}



.card {
  display: block;
  box-shadow: 1px 1px 7px 1px #b5b5b5;
  border: 5px solid #0000;
  overflow: hidden;
  padding: 0;
  margin-right: 35px;
  transition: transform 0.3s ease-in-out;
}


.card-width {
    width: 22rem;
}

.card-image{
display: inline-flex;
width: 130px;
}




.card-width-pil {
     /* display: block; */
     width: 21rem;
}

.card-image-pil{/* width: 200px; */height: 180px;margin-bottom: 10px;overflow: hidden;transition: transform 0.3s ease-in-out;}


.card-body{
    width: 200px;
   display: inline-block;
    position: absolute;
    padding-left: 0;
    right:0;
}



.card-body-pil{
    display: block;
    position: relative;
    padding-left: 10px;
    /* font-size: 13px; */
    width: auto;
    text-align: center;
    margin: 2rem;
}


.card-trans{
  transition: none;
}

.cardtrans:hover {
  transform: none;
  z-index: 1;
 
}

.card-image>img {
    transition: transform 0.3s ease-in-out;
}

.card-image>img:hover {
   transform: scale(1.1);
   margin-bottom :0;
   overflow:hidden;
       
}

.c-title  {
    color: #1313b3;
    font-size: 15px;
    padding: 8px;
    box-shadow: 0px 0px 2px 0px #000000;
    text-transform: capitalize;
}
.pakcolor{
   color: #5a0ebb;
   font-weight: 600;
    text-decoration: none;
   text-align:center;
}
.t-star {
 /* display: grid;
  grid-template-columns: repeat(6, 1fr); */
  color: #f03c02;
  font-size: 16px;
}

.h-icons {
  display: grid;
  grid-template-columns: repeat(5, auto);
  color: #f03c02;
  font-size: 18px;
  text-align: center;
  margin: 11px 0 0;
}

.duration{
   color: #04021e;
    background: #ceff0bc4;
    padding: 3px 15px;
    border-radius: 22px;
   /* box-shadow: 0px 0px 3px 1px #000;*/
    font-size: 12px;
    text-align:center;
    margin: 18px;
}


.btn-readmore {
  display: flex;
  width :100%;
  align-content: space-around;
  justify-content: space-around;
  background: linear-gradient(359deg, #bfd709, transparent);
  box-sizing: border-box;
  box-shadow: 0px 0px 5px 0px #d91919;
  padding: 5px;
  text-align: center;
  font-weight: 700;
  transition: transform 0.3s ease-in-out;
  border :0;
}

.btn-readmore>a {
  color: #dae90e;
  font-weight: 800;
}

.btn-readmore:hover {
  transform: scale(1.1);
}

.btn-readmore>a:hover {
  color: blue;
}



.d-flex {
    justify-content: center;
}

.card-border{
	   background: linear-gradient(202deg, #b3d73196, #eef3f7);
}

.attractions{
	width: 200px;
    height: 200px;
    position: relative;
}

.atr-img{
    
   
}
.atr-img>img{
	    position: absolute;
    height: 100%;
    width: 100%;
}
.atr-text{
	 display: block;
    position: absolute;
   
}
.atr-text>a>h4{
   width: 100%;
    font-size: 16px;
    padding: 5px;
    margin: 10px;
    text-align: center;
    background: #00000069;
    color: #fff;
    box-shadow: 0px 0px 4px 0px #000;
}
.atr-text>p{
	font-size: 17px;
    padding: 10px;
    margin: -16px;
    font-family: serif;
    margin-left: 0;
}





/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/
.video-block {
  display: flex;
  background: #d2e53f1c;
  box-shadow: 0px 0px 8px 2px #000;
  padding: 1rem;
  color: #1a1515;

}

.video {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border: 5px solid #dde1cc;
    border-radius: 8%;
}



.vd{
       width:100%;  
       height:100%;
       padding:0;
}



.right-col {
  padding: 2rem;
  text-align: justify;
  text-align-last: center;
  line-height: 2;
}
.vp{
    line-height: 2;
    text-align: justify;
    padding: 2rem;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #463b35;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  
}

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

#footer .footer-top .footer-contact h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #181cb1;
  font-weight: 800;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Trirong", sans-serif;
  color: #22201f;
}

#footer .footer-top h4 {
  font-size: 24px;
  font-weight: bold;
  color: #d10c0c;
  position: relative;
  padding-bottom: 12px;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fd6f41;
  font-size: 18px;
  line-height: 1;
}

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

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

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

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fd6f41;
}

#footer .footer-newsletter {
  font-size: 17px;
  color: #000;
}

#footer .footer-newsletter h4 {
  font-size: 25px;
  font-weight: bold;
  color: #484085;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px 0 0 4px;
  text-align: left;
}

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

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

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

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #4a403b;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background: #ff0909;
}

#footer .social-links a:hover {
  background: #503931;
  color: #f12525;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .card {
    margin :0;
    width: 100%;
  }
  .card-image{
   width:100%;
   }
   .card-body{
      position: relative;     
      width: 100%;
      margin: 0 6px;
}
 .attractions {
    width :100%;
 }
 
.ps {
    padding: 2px;
}
}