
html {
  scroll-behavior: smooth;
}

body {

    padding: 0;
    margin: 0;
    font-family: 'Lato', sans-serif;


}

li,ul {margin:0;padding: 0;}
h1,h2,h3,h4,h5 {margin: 0;padding: 0;color: #332c2c;    font-family: 'Source Sans Pro', sans-serif;}
p {line-height: 24px;font-size: 15px;color: #454545;font-family: 'Lato', sans-serif;}
figure{background-position: center;background-repeat: no-repeat;background-size: cover;margin: 0;}
a,a:hover {text-decoration: none;color: #fff;}

img {width: 100%;}



.top-head {
    background: #335da2;
}

.top-head-wrapper {

    padding: 7px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-head-wrapper ul {

    display: flex;
    justify-content: flex-end;
}

.top-head-wrapper ul li {

    display: flex;
    align-items: center;
    list-style: none;
    margin: 0 30px;
}

.top-head-wrapper ul li a {

    font-weight: 400;
    color: #fff;
    font-size: 16px;
}

.top-head-wrapper ul li a i {

    margin-right: 7px;
    font-size: 20px;
}

.top-head-wrapper ul li i {

    color: #fff;
    font-size: 16px;
    margin-right: 5px;
}

.top-head-wrapper ul li p,
.top-head-wrapper ul li span {

    display: inline-block;
    margin: 0;
}

.top-head-wrapper ul li p {

    font-weight: 600;
    color: #fff;
    font-size: 16px;
    margin-right: 10px;
}


.top-head-wrapper ul li span {

    font-weight: 900;
    color: #fff;
}

#social-media li {

    margin: 0;
}

#social-media li a {

    height: 30px;
    width: 30px;
    line-height: 30px;
    border: 1px solid #fff;
    margin: 0 5px;
    padding: 0;
    text-align: center;
}

#social-media li a i {

    font-size: 16px;
    padding: 0 ;
    margin: 0 ;
}

/* top head ends */


/* main head section starts */

.main-head-wrapper {

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {

    display: block;
}

.logo-wrapper img {

    height: 100px;
    width: auto;
}

.drop-menu1,
.main-nav ul li {

    display: inline-block;
    list-style: none;
    position: relative;
}

.main-nav ul li a {

    display: block;
    color: #454545;
    padding: 37px 10px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.main-nav ul li:last-child a {

    padding: 7px 10px;
}

.main-nav ul li a i {

    margin-left: 5px;
    font-size: 20px;
}

.dropdown:hover .dropdown-menu {

    display: block;
}

.dropdown-menu {

    top: 100%;
    float: none;
}

.dropdown {

    border: 1px solid rgba(0,0,0,.15);

}




.sub-menu1,
.sub-menu {

    transition: 0.3s ease all;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform-origin: top;
    transform: scaleY(0);
    z-index: -1;
    transition: all 0.3s ease-in-out;
    display: block;
    min-width: 250px;
    z-index: 2;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.sub-menu1 {

    left: 100%;
    top: 0;
}

.sub-menu li {

    display: block;
    width: 100%;
}
.sub-menu1 li a,
.sub-menu li a {

    color: #424242 !important;
    display: block;
    padding: 10px !important;
    border-bottom: 1px solid #dadada;
    font-size: 13px !important;
    text-transform: inherit !important;
}

.sub-menu1 li a i,
.sub-menu li a i {

    font-size: 14px !important;
}

.sub-menu li a:hover {
    
    color: #fff !important;
    background: #335da2;
}

.drop-menu1 a,
.drop-menu a {

    display: flex !important;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.drop-menu1:hover .sub-menu1,
.main-nav ul li:hover .sub-menu {

    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
}





.top-menu-bar {
    position: absolute;
    top: 61px;
    right: 15px;
    z-index: 9;
    transition: 500ms;
    transition-property: all;
    transition-duration: 500ms;
    transition-timing-function: ease;
    transition-delay: 0s;
    display: none;
}
.sticky .top-menu-bar {

    top: 14px;
}

span.menu-line {
    display: block;
    width: 40px;
    height: 2px;
    background: #424242;
    margin: 9px 0;
    transition: 500ms;
}

.top-menu-bar.active span.menu-line:nth-child(1) {
    transform: rotate(45deg);
}

.top-menu-bar.active span.menu-line:nth-child(2) {
    opacity: 0;
}

.top-menu-bar.active span.menu-line:nth-child(3) {
    transform: rotate(-45deg);
    margin-top: -19px;
}

.sticky .top-head {

    display: none;
}

.sticky .logo-wrapper img {

    height: 70px;
}

.sticky .main-nav ul li a {
    padding: 22px 10px;
    font-size: 14px;
    font-weight: 600;
}

.sticky .main-nav ul li:last-child a {

 padding: 7px 10px;;
}

.dropdown-menu {

    padding: 0;
}


/*header.sticky {*/
/*    position: fixed;*/
/*    width: 100%;*/
/*    left: 0;*/
/*    top: 0;*/
/*    z-index: 999;*/
/*    -webkit-animation-name: fadeInDown;*/
/*    animation-name: fadeInDown;*/
/*    -webkit-animation-duration: 0.5s;*/
/*    background: rgba(255,255,255,.98);*/
/*    animation-duration: 0.5s;*/
/*    -webkit-box-shadow:  0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);*/
/*    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);*/
/*}*/

/* header section ends */

/* main slider section starts */

.main-slide-container a {

    display: block;
}

.main-slide-container a figure {

    height: 550px;
    display: flex;
    align-items: center;
    position: relative;
}

.main-slide-container a figure::before {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
}

.slider-content {

    position: relative;
    color: #fff;
    max-width: 650px;
    margin-top: -50px;
}

.slider-content h1 {

    font-size: 50px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    /* text-transform: uppercase; */
}

.slider-content p {

    font-size: 20px;
    color: #fff;
    line-height: 26px;
}

button.slick-arrow {

    position: absolute;
    top: 50%;
    z-index: 2;
    background: #484848a8;
    border: none;
    outline: none;
    color: #fff;
    padding: 40px 20px;
}

.main-slide button.slick-arrow {

    height: 50px;
    width: 50px;
    line-height: 50px;
    padding: 0;
    border-radius: 50%;
}

.prev-arrow {

    left: 20px;
}

.prev-arrow::before {
    content: "\f104";

    font-family: fontawesome;
    font-size: 25px;
}

.next-arrow {

    right: 20px;
}

.next-arrow::before {
    
    content: "\f105";

    font-family: fontawesome;
    font-size: 25px;
}



.slick-slide.slick-current.slick-active .slider-content h1{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    transition-timing-function: cubic-bezier(0.88, 0.06, 0.64, 0.99);
}

.slick-slide.slick-current.slick-active .slider-content p {

    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    transition-timing-function: cubic-bezier(0.88, 0.06, 0.64, 0.99);
}

.slick-slide.slick-current.slick-active .slider-content h1 {
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s;
}

.slick-slide.slick-current.slick-active .slider-content p {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}



/* main slider section ends */


/* form section starts */

section.form-section {
    position: relative;
    margin-top: -135px;
    margin-bottom: 44px;
}

.search-form {

    display: flex;
    align-items: center;
    justify-content: center;
    /* display: inline-block; */
    max-width: 760px;
    margin: 0 auto;
    /* background: #484848a8; */
    padding: 20px;
}

.select-wrapper select {

    padding: 15px 20px;
    width: 200px;
    border-top: none;
    border-bottom: 0;
}

.input-wrapper input {

    padding: 15px 10px;
    border: none;
    outline: none;
    color: #635b5b;
    font-size: 14px;
    font-weight: 600;
}

.input-wrapper input::placeholder {

    color: #000;
}
.select-wrapper .bootstrap-select>.dropdown-toggle {

    padding: 15px 20px;
    border-radius: 0;
    outline: none;
    border: none;
    border-right: 2px solid #f2f2f2;
}

/* .select-wrapper .dropdown:hover .dropdown-menu {

    display:none !important;
} */

.select-wrapper .search-btn {

    background: #335da2;
    padding: 14px 30px;
    color: #fff;
    border: none;
    outline: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 900;
    border: 1px solid #335da2;
    transition: 300ms ease all;
    border-radius: inherit;

}


.select-wrapper .search-btn:hover {

    background-color: #0042ab;
    color: #fff;
    border-color: #0042ab;
}

/* form section ends */


/* organise section starts */

.all-sec-padding {

    padding: 40px 0;
}

.title-wrapper {

    text-align: center;
    margin-bottom: 30px;
}

.title-wrapper h2 {

    font-size: 35px;
    /* text-transform: uppercase; */
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    padding: 5px 0;
    display: inline-block;
    padding-top: 0;
}

.organise-title {

    position: relative;

}
/* 
.organise-title h2::after {

    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../images/bag.png');
    height: 50px;
    width: 100%;
} */

.organise-icon1 {

    position: absolute;
    bottom: 100%;
    right: 60px;
}

.organise-icon1 img {

    max-width: 60%;
    width: auto;
    height: auto;
}

.title-wrapper h2::before {

    content: "";
    position: absolute;
    top: 100%;
    height: 3px;
    width: 100px;
    left: 0;
    background: #335da2;
}

.title-wrapper p {

    text-transform: uppercase;
    color: #bab8b8;
}

.organise-wrapper {

    position: relative;
    transition: 300ms ease all;
    display: flex;
}

.organise-wrapper:hover {

    border-color:  #fedb3f;
}

.organise-wrapper img {

    width: 70px;
    height: auto;
}

/* section.organise-section{
    background: #e7ebf0;
} */

.organise-section {

    padding: 40px 0;
    background: #f8f9ff;
}

.organize-image-wrapper {
    
    margin-right: 20px;
}

.organise-wrapper h3 {

    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.organise-wrapper p {

    margin-bottom: 0;
}

.organise-wrapper a {

    color: #eaad13;
    font-size: 12px;
    transition: 500ms ease all;
    padding: 7px 15px;
    background: #ffffff;
}

.organise-wrapper a:hover {

    /* letter-spacing: .5px; */
    color: #ffffff;
    background: #eaad13;
    border-color: #eaad13;
}

/* organise section ends */

/* about section starts */

.about-section {

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    /* transform: rotateY(180deg); */
}

.about-content {
    background-color: #f8f9ff;
    padding: 30px 20px;
    padding-top: 80px;

    position: relative;
}

/* .about-content::before {

    content: "";
    position: absolute;
    top: 0;
    left: 104%;
    background: #eaad13;
    width: 15px;
    height: 80%;
} */

.about-title {

    position: relative;
    margin: 0;
}
/* 
.about-title::before {

    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url('../images/about-icon.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
} */

.about-title h2 {

    margin: 0;
}

.about-title h2::before {

    display: none;
}

.about-content a {

    color: #fd7018;
    padding: 7px 0;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 300ms ease all;
    border-bottom: 2px solid #fd7018;
}

/* about section ends */

.tour-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    cursor: pointer;
    color: black;
    border: 0;
    outline: none;
    background: #a5a5a5;
    border-radius: 50%;
    padding: 0;
    display: none;
}


.tour-slider li.slick-active  button  {

    background: #ffd000;
}

.tour-slider-section {

    position: relative;
}

.tour-side-icon {

    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    z-index: -1;
    display: none;

}

.tour-side-icon img {

    max-width: 100%;
    width: auto;
    height: auto;
}


.tour-slider-title h2 {

    font-size: 30px;
    font-weight: 900;
}

.tour-slider-title {

    margin-bottom:15px;
}
.tour-wrapper {

    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: 300ms ease all;

}

.tour-wrapper:hover {

    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.tour-container {

    padding: 15px;
}

.slider-image-wrapp{

    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.tour-wrapper img {

    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 500ms cubic-bezier(.32,2,.55,.27);
    overflow: hidden;
}

.tour-wrapper:hover img {

    transform: scale(1.2);
}

.tour-content {

    padding: 20px 10px;
    background: #fff;
}

.tour-content a h3 {

    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tour-content p {

    color: #696969;
    font-size: 14px;
    font-weight: 600;
}

.tour-slider .prev-arrow {

    display: block !important;
    left:-40px;
}

.tour-slider .next-arrow  {

    right: -40px;
}

.tour-slider .slick-arrow {

    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

/* tour section ends */

/* package section starts */


.package-section {

    background: #f8f9ff;
}

/* .package-title h2::after {
    content: "";
    background-image: url('../images/package-icon.png');
    position: absolute;
    bottom: 100%;
    left: 0;
    height: 50px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

} */

.package-title h2 {

    margin-bottom: 15px;
}

.package-title h2::before {

    display: block;
}

.package-first-wrapp li {

    list-style: none;
    margin-bottom: 30px;
}
.package-second-col-wrapp li:nth-child(2),
.package-second-col-wrapp li:nth-child(1),
.package-first-wrapp li:nth-child(3),
.package-first-wrapp li:nth-child(2) {

    width: 47%;
    display: inline-block;
}

.package-second-col-wrapp li:nth-child(1),
.package-first-wrapp li:nth-child(2) {

    margin-right: 5%;
}

.package-second-col-wrapp li:nth-child(2) .package-container,
.package-second-col-wrapp li:nth-child(2) .package-container img,
.package-second-col-wrapp li:nth-child(1) .package-container img,
.package-second-col-wrapp li:nth-child(1) .package-container,
.package-first-wrapp li:nth-child(3) .package-container,
.package-first-wrapp li:nth-child(3) .package-container img,
.package-first-wrapp li:nth-child(2) .package-container,
.package-first-wrapp li:nth-child(2) .package-container img {

    height: 200px;
}
.package-second-col-wrapp li:nth-child(1) .package-image-content,
.package-second-col-wrapp li:nth-child(2) .package-image-content,
.package-first-wrapp li:nth-child(3) .package-image-content,
.package-first-wrapp li:nth-child(2) .package-image-content {

    padding: 10px;
}
 
.package-second-col-wrapp li:nth-child(2) .package-image-content h3,
.package-second-col-wrapp li:nth-child(1) .package-image-content h3,
.package-first-wrapp li:nth-child(3) .package-image-content h3,
.package-first-wrapp li:nth-child(2) .package-image-content h3 {

    font-size: 16px;
}

.package-second-col-wrapp li:nth-child(1) .package-date p,
.package-second-col-wrapp li:nth-child(2) .package-date p,
.package-first-wrapp li:nth-child(3) .package-date p,
.package-first-wrapp li:nth-child(2) .package-date p {

    font-size: 14px;
    padding: 0 10px;
}


.package-second-col-wrapp li:nth-child(3) .package-container,
.package-container {

    display: block;
    position: relative;
    height: 350px;
    overflow: hidden;
    width: 100%;
}

.package-second-col-wrapp li:nth-child(2) {

    margin-right: 0;
}

.package-second-col-wrapp li:nth-child(3) .package-container:hover img,
.package-container:hover img {

    transform: scale(1.2);
}

.package-container:hover .package-image-content::before  {

    transform: scaleY(1);
}

.package-second-col-wrapp li:nth-child(3) {

    width: 100%;
}

.package-second-col-wrapp li:nth-child(3) .package-container img,
.package-container img {

    height: 350px;
    object-fit: cover;
    width: 100%;
    transition: 500ms cubic-bezier(.22,.68,0,1.71);
    transform: scale(1);
}


/*team*/
/* Team Section
--------------------------------*/
#team {
  background: #fff;
  padding: 60px 0;
}
#team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #000;
  position: relative;
}
#team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}
#team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}
#team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: 0.4s;
}
#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}
#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}
#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}
#team .member .social {
  margin-top: 15px;
}
#team .member .social a {
  transition: none;
  color: #fff;
}
#team .member .social a:hover {
  color: #56437C;
}
#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
.team-up {
  position: relative;
  /* padding-left: 10px; */
  transition: all 0.9s ease-in;
}

.team-up p {
  font-size: 25px;
  margin-bottom: 10px;
}


@media (min-width: 768px) {
  .team-up {
      text-align: left;
  }

  .team-up p {
      font-size: 28px;
  }
}

.team-up-detail {
  background-image: linear-gradient( to right, rgba(16, 52, 73, 0.8), rgba(16, 52, 73, 0.5) ), url(../img/subscribe-bg1.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  padding: 60px 0px;
  color: #fff;
  position: relative;
  z-index: 10;
}

/* team */
.team-member {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.team-content {
    position: absolute;
    top: 71%;
    left: 0;
    width: 100%;
    color: rgb(84, 67, 122);
    background: rgba(84, 67, 122, 0.4) none repeat scroll 0 0;
    padding: 22px 20px;
    transition: 0.5s;
}

.team-content-title h4 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.team-content-title h6 {
  color: #ED3934;
  font-size: 16px;
  line-height: 2rem;
  font-weight: 700;
  margin: 0 0 15px;
}

.team-content-share {
  opacity: 0;
}

.team-content-share p {
  color: #fff;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 24px;
}

.team-content-social-icon {
  margin-top: 15px;
}

.team-content-social-icon li {
  display: inline-block;
}

.team-content-social-icon li a {
  color: #fff;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  font-size: 18px;
  border-radius: 50%;
}

/*.team-member:hover .team-content {*/
/*  transition: 0.5s;*/
/*  top: 0px;*/
/*  padding: 50px 20px;*/
/*  background: rgba(84, 67, 122, 0.99) none repeat scroll 0 0;*/
/*}*/

/*.team-member:hover .team-content-share {*/
/*  opacity: 1;*/
/*}*/

.package-image-content {

    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
}

.team-img img {
    height: 440px;
    object-fit: cover;
}

.package-image-content::before {

  
    transition: 500ms cubic-bezier(.22,.68,0,1.71);
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: scaleY(0);
    height: 100%;
    background-color: rgba(234, 173, 19, 0.9);
    /* transition: 500ms ease all; */
    z-index: -1;
    transform-origin: top;
    transition-delay: 0.7s;
}

.package-second-col-wrapp li:nth-child(3) .package-image-content h3,
.package-image-content h3 {

    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 25px;
}

.package-date {

    display: flex;
}

.package-date p {

    margin: 0;
    border-right: 1px solid #f2f2f2;
    color: #fff;
    padding:0px 20px ;
}

.package-date p:last-child {

    border: none;
}

/* packages section ends */

/* testimonial section starts */
/* 
.testimonial-section {

    background: #e7ebf0;
} */



.testimonial-video-side iframe {

    width: 100%;
}

.testi-image {

    width: 65px;
    height: 65px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 15px;

}

.testi-image img {

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-info {

    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.testi-info h4 {


    font-weight: 700;
    color: #333;
    font-size: 18px;
}

.name-wrapper span {

    text-transform: uppercase;
    font-size: 14px;
}

.testi-wrapper h3 {

    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}



.testimonial-side {

    padding: 30px;
}

.testi-wrapper {
    padding: 15px;
    border: 1px solid #e4e4e4;
    margin: 15px;
    position: relative;
}

.testi-wrapper::before {

    content: "\f10e";
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #2d69ca;
    font-family: fontawesome;
}

.testi-slider button.slick-arrow {
    position: absolute;
    bottom: -38px;
    top: auto;
    left: 50%;
    z-index: 2;
    background: transparent;
    border: none;
    outline: none;
    color:  #a0a0a0;
    padding: 2px 15px;
    border: 1px solid  #dedede;
}




.testi-slider .prev-arrow {

    right: auto;
    left: 46% !important;
}

/* testimonial section ends */


/* footer section starts */

footer {

   /*background: #000;*/
  background:#f2f6fc url(../images/footer-banner.png) no-repeat bottom;
  padding-top:20px;
  border-top:1px dashed #fc6d16;
  
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 120px;
    height: auto;
    border:1px solid #ccc;
}

.footer-col-wrapper ul li {
    list-style: none;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 5px 0;
}

.footer-media li {
    display: inline-block;
}

.footer-media li a {
    display: block;
    margin: 0 10px;
}
.footer-col-wrapper ul li a{
    color:#000;
}
.footer-col-wrapper h3 {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-wrapper h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 30px;
    background: #eaad13;
}

.footer-link li a {
    margin: 15px 0;
    transition: 300ms ease all;
    display: block;
}

.footer-link li a:hover {
    color: #fa6913;
}

ul.footer-media {
    margin-top: 15px;
}



.last-col p {
    color: #fff;
    margin: 20px 0;
}

.last-col form {
    display: flex;
}

.last-col form input,
.last-col form button {
    outline: none;
    border: none;
    padding: 7px;
    font-size: 14px;
}

.last-col form input {
    width: 70%;
}

.last-col form button {
    color: #fff;
    background: #145167;
    width: 30%;
    transition: 300ms ease all;
}

.last-col form button:hover {
    background: #eaad13;
}

.design-content {
    padding: 10px;
    background: #000;
}

.design-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.design-content-wrapper p {
    margin: 0;
    color: #adadad;
}

.design-content-wrapper p a {
    margin-left: 5px;
}

#button {
    display: inline-block;
    background-color: #2d69ca;
    width: 45px;
    height: 60px;
    text-align: center;
    position: fixed;
    bottom: 30px;
    line-height: 72px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 8;
}

#button::after {
    content: "\f176";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: #47a0ff;
}

#button:active {
    background-color: #47a0ff;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

.associat-image li {

    display: inline-block;
    list-style: none;
}

.associat-image li a {

    display: block;
}

.associat-image li a img {
    border:1px solid #ccc;
    width: 50px;
    height: auto;
}

/* footer section ends */


/* custom select option css */
/*the container must be positioned relative:*/
.custom-select {
    position: relative;
    height: auto;
    padding: inherit;
    border-radius: inherit;
    border: none;
    border-right: 1px solid #c1c1c1;
  }
  
  .custom-select select {
    display: none; /*hide original SELECT element:*/
  }
  
  .select-selected {
    background-color: #fff;
  }
  
  /*style the arrow inside the select element:*/
  .select-selected:after {
    position: absolute;
    content: "";
    top: 24px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #000 transparent transparent transparent;
  }
  
  /*point the arrow upwards when the select box is open (active):*/
  .select-selected.select-arrow-active:after {
    border-color: transparent transparent #000 transparent;
    top: 15px;
  }
  
  /*style the items (options), including the selected item:*/
  .select-items div,.select-selected {
    color: #424242;
    padding: 15px 16px;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    font-size: 14px;
  }

  .select-items div {

    color: #ffff;
    font-weight: 400;
    padding:10px;
    border-bottom: 1px solid #b5b5b5;

  }
  
  /*style items (options):*/

  .select-items {
    position: absolute;
    background-color: #335da2;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    max-height: 40vh;
    overflow-y: scroll;
    -moz-overflow-y: scroll;
  }
  

  .select-items::-webkit-scrollbar {
    background-color:#fff;
    width:6px
}

/* background of the scrollbar except button or resizer */
.select-items::-webkit-scrollbar-track {
    background-color:#fff
}
.select-items::-webkit-scrollbar-track:hover {
    background-color:#f4f4f4
}

/* scrollbar itself */
.select-items::-webkit-scrollbar-thumb {
    background-color:#babac0;
    border-radius:16px;
    border:5px solid #fff
}
.select-items::-webkit-scrollbar-thumb:hover {
    background-color:#a0a0a5;
    border:4px solid #f4f4f4
}

/* set button(top and bottom of the scrollbar) */
.select-items::-webkit-scrollbar-button {display:none}



  /*hide the items when the select box is closed:*/
  .select-hide {
    display: none;
  }
  
  .select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
  }

  /* top package section starts */


.top-package-wrapper {

    display: block;
    height: 250px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.top-package-title::before {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: 300ms ease all;
    transform-origin: bottom;
    z-index: -1;
}

.top-package-wrapper:hover::before {

    transform: scaleY(1);
}

.top-package-wrapper img {

    width: 100%;
    height: 250px;
    object-fit: cover;
    transform: scale(1);
    transition: 500ms ease all;


}

.top-package-wrapper:hover img {

    transform: scale(1.2);
}


.top-package-title {

    position: absolute;
    bottom: 0;
    text-align: center;
    display: block;
    width: 100%;
    padding: 15px;
    z-index: 2;
    transition: 500ms ease all;
}

.top-package-title h3 {

    font-size: 20px;
    color: #fff;
    font-weight: 600;
}




  /* top package section ends */


  .about-image-wapp img {

    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .new-about-wrapper {
    margin: 0 15px;
}

.about-image-wapp {
    height: 100%;
}

/* package section new design */


.grid-container {

    display: flex;
    width: 100%;

}

.grid-wrapper {

    margin: 2px;
    margin-bottom: 4px;
    display: block;
    position: relative;
    overflow: hidden;
}

.grid-wrapper::before {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.package-link-wrapp {

    margin-bottom: 4px;
    display: block;
}


.grid-wrapper img {

    height: 550px;
    width: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: 500ms cubic-bezier(.32,2,.55,.27);
}

.grid-wrapper:hover img {

    transform: scale(1.2);
}

.small-package img {

    height:273px
}

.grid-title {

    position: absolute;
    top: 50%;
    left: 0;
    text-align: center;
    transform: translate(0,-50%);
    width: 100%;
    z-index: 2;
}

.grid-title  h3 {

    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.grid-small-title h3 {

    font-size: 20px;
}

.grid-title p {

    color: #fff;
    padding: 3px 15px;
    display: inline-block;
    font-size: 12px;
    margin: 0;
    /* background: #eaad13; */
    font-weight: 600;
    text-transform: uppercase;
    word-spacing: 2px;
    letter-spacing: 1px;
    border: 1px solid #fff;
    transition: 500ms ease all;
}

.grid-wrapper:hover .grid-title p {

    background: #2d69ca;
    border-color: #2d69ca;
    color: #fff;
}

.row.grid-section {
    margin: 0;
}

.grid-price {

    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    padding: 7px 15px;
    background: #eaad13;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

.price {
    position: absolute;
    top: 10px;
    right: 0;
    background: #2d69ca;
    display: block;
    border-top-right-radius: 3px;
    z-index: 2;
}

.price::before {
    background: #1454bd;
    border-bottom-left-radius: 4px;
    bottom: -6px;
    content: "";
    height: 6px;
    right: 0;
    position: absolute;
    width: 5px;
}

.price-wrapper {
    padding: 3px 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    display: block;
}

.price-wrapper::before {
    width: 0;
    height: 0;
    border-top: 20px solid #2d69ca;
    border-left: 20px solid transparent;
    position: absolute;
    top: 0;
    left: -20px;
    content: '';
}

.price-wrapper::after {
    width: 0;
    height: 0;
    border-bottom: 20px solid #2d69ca;
    border-left: 20px solid transparent;
    position: absolute;
    bottom: 0;
    left: -20px;
    content: '';
}

.tour-slider-title-content {
    max-width: 600px;
}



.custom-select {
    padding: 0 !important;
}
/*New Css Added*/
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    background-image: url(../images/about-bg2.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    padding:50px 0 0 0;
}

.about_img_wrapper {
    position: relative;
}

.about_img {
    position: absolute;
    width: 100%;
    border-radius:15px;
    object-fit:cover;
}

.about_img-1 {
    top: 0;
    left: 0;
    z-index: 99;
    width: 550px;
}

.about_img-2 {
    top: 10rem;
    right: 0;
    z-index: 100;

    width: 400px;
}

#about .content h5 {
    font-size: 22px;
    font-weight: 600;
    color:#ed1b24;
}

#about .content h3 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 24px;
    margin: 15px 0;
}

#about .content p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px !important;
    line-height:1.7;
}

#about .btn_primary {
    background-color: var(--color-red);
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
}

#about .btn_primary:hover {
    color: #fff;
    background-color: rgb(211, 17, 27);
}

#about .btn-check:focus+.btn, .btn:focus {
    box-shadow: none;
}
#about .btn_primary {
    background-color:#335da2;
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
}
.mobile-view{
    display:none;
}
.newabtimage img{
   height:300px!important;
   object-fit:cover;
}
.tour-detail-wrapper img{
    height:480px!important;
}
.nhtab{
    text-align:left!important;
}
.newteampage{
    
    padding:20px 0;
}
.newteampage img{
    margin-bottom:20px;
    height:200px;
    object-fit:contain;
}
.teamy_name {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #282828;
}
.teamy{
  border:1px solid #ccc;
  padding:20px 20px 0 20px;
}
.newtour .top-tab-wrapper,.newtour .himalaya-tab{
    background:#335da2;
    position:sticky;
    top:-1px;
}
.newtour .himalaya-tab .nav-link{
    color:#fff;
}
.newtour .nav-tabs .nav-item .nav-link.active{
    background: #c80004 !important;
    color: #fff;
}
.newtour .nav-tabs .nav-item{
    margin-bottom:0;
}
.newtab{
  padding:20px;  
}
.newtab .diacc{
      display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #555;
  width: 100%;
  outline: none;
  border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-align: left;
  background: none;
  padding-left:0;
}
.newtab .diacc span {
  display: inline-block;
  font-size: 15px;
  font-weight: 800;
  color: #000;
  margin-right: 10px;

}
.newtab .diacc h3 {
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  color: #000;
  margin-bottom:0;
}
.newicon li{
    margin:0 20px!important;
}
.newicon i{
    font-size:20px;
    color:#fc6d16;
}
.newsocial-media li{
   background: #145167 !important;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 100px;
}
.newsocial-media i{
    color:#fff;
}
.faq h6{
    font-size:18px;
    margin-bottom:2px;
}
.faq p{
    margin-bottom:20px!important;
}
.newgalleryinfo img{
   width: 150px;
   height: 150px !important; 
}
.newgalleryinfo h6{
    font-size:13px;
}
.newgalleryinfo h6 a{
    color:#000;
    font-weight:600;
}
.newgalleryinfo h6 a:hover{
    color:#2d69ca;
}
.desktop-view i{
     margin-right:5px;
     color:#fc6d16;
 }
 .newnav ul li{
     display: inline-block;
    list-style: none;
    position: relative;
 }
 
.newnav ul li a{
    display: block;
   color: #454545;
   padding: 37px 10px;
   text-transform: uppercase;
   font-size: 14px;
  font-weight: 600;
}
 .dropdown-submenu {
  position: relative;
}

.dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: .8em;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .1rem;
  margin-right: .1rem;
}
#button{
    width: 40px;
    height: 40px;
    line-height:40px;
    border-radius:4px;
}
#button::after{
    content: "\f0d8";
    line-height:38px;
}
.newtext h3{
    color:#335da2;
    font-size:19px!important;
    margin-top: 0 !important;
    font-weight: bold;
}
.newtext h5{
    color:#332c2c!important;
    margin-bottom:15px;
    font-size:18px!important;
}
#about{
    padding:50px 0 60px 0;
}

.tour-sidebar {
    position: sticky;
    top: 88px;
}

.nav-item .nav-link.active {
    color: #fff;
    background: red;
}

.tab-content h3 {
    border-bottom: 3px solid #c80004;
    display: inline-block;
    margin-bottom: 25px;
}

.banner_map {
    right: 15%;
    position: absolute;
    bottom: 8px;
}

.banner_map img{
    height: 127px !important;
    width: 151px !important;
    border-radius:5px;
}

.detail-top-image{
    position:relative;
}

.banner_map h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
}
.sticky-contact ul li a {
    font-size: 15px;
    padding: 15px 3px;
    color: #fff;
}
.sticky-contact {
    position: fixed;
    bottom: -10px;
    display: inline-block;
    /* background: none; */
    padding: 15px;
    display: inline-block;
    /* background: #f48120; */
    padding: 10px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    /* box-shadow: 3px 4px 6px rgb(0 0 0 / 50%); */
    /* right: 30px; */
    width: 100%;
    margin: 0 auto;
    text-align: center;
    z-index:99;
}
.sticky-contact ul li {
    list-style: none;
    /* display: flex; */
    padding: 8px;
    background-color:#00A884;
    /* border-top-left-radius: 15px; */
    /* border-top-right-radius: 15px; */
    margin-right: 6px;
    width: 50%;
}

.sticky-contact ul li:nth-child(1){
    background-color:#102694;
}

.sticky-contact ul{
    display:flex;
}

.content img{
    width:100% !important;
}

@media (max-width: 767px) {
    .about_img-1,.about_img-2{
        width:100%;
        position:static;
    }
    .about_img-1{
        margin-bottom:20px;
    }
    .sub-menu,.sub-menu1{
        visibility:visible;
        opacity:1;
        padding:0 10px 0 0;
    }
    .mobile-view{
      display:block;
      margin-top:20px;
    }
    .mobile-view i{
        margin-right: 5px;
        color: #fc6d16;
    }
    /*.desktop-view{*/
    /*    display:none;*/
    /*}*/
    .newtour img{
        height:auto!important;
    }
    .teamy{
        margin-bottom:10px;
    }
   .newtour ul.nhtab, .newtour ul.nhtab li {
    display: flex;
    flex-wrap: nowrap;
}
    .newtour ul.nhtab li a{
        padding:10px;
        font-size:15px;
    }
    .sub-menu{
        border:1px solid #ccc;
        width:90%;
        margin:0 auto;
    }
    .sub-menu1{
       border:1px solid #ccc;
        width:90%;
        margin:0 auto;
    }
    .dropdown-submenu {
  position: relative;
}

.dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: .8em;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .1rem;
  margin-right: .1rem;
}
.tour-slider .prev-arrow {

    display: none !important;
    
}
.newtext h3{
    margin-top:20px!important;
}
#about{
    padding:20px 0;
}
.banner_map {
    right: 2%;
    /* bottom: 71px; */
    position: absolute;
    bottom: 53px;
}
.newtab {
     padding: 0; 
}
.new_bg{
    padding:15px 15px !important;
}

}

@media (min-width: 1200px){
.container {
    max-width: 1320px;
}
.sticky-contact{
    display:none;
}
}