/*-----------------------------------------------------------------------------------

 Theme Name: jetrip
 Description: The Multi-Purpose Travel Template
 Version: 1.0
 Main Color   : #ff5202
 main Font    : 'Roboto', sans-serif

-----------------------------------------------------------------------------------*/

/* ----------------------------------------------------------------

 == Table Of Content

    01 Basics
        - Typography
        - Sticky-header
        - Preloader
        - Button-bottom-to-top
        - Search-icon
        - Datepicker
        - Video-box
	02 Navbar
    03 Main hero slide
        - Index-one-main
        - Index-two-main
        - Index-three-main
    04 About Us
    05 Service
        - Service-one
        - Service-two
	06 Package-section
    07 offer-area
    08 Desination-Section
	09 Counter-Section
    10 Testimonial-slider
        - Testimonial-slider-one
        - Testimonial-slider-two
	11 Blog-section
    12 Footer-section
    13 Extra-css
		- Banner-css
		- Booking-tour
        - Accordian
        - Comment-form
        - Blockqouts
        - Pagination


---------------------------------------------------------------- */

/* ----------------------------------------------------------------
     [ 01 Start Basics ]
-----------------------------------------------------------------*/

/*----------- Typography -------------*/

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}
html,
body {
  color: #585858;
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}
p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #585858;
  font-family: "Roboto", sans-serif;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

a:focus {
  text-decoration: none;
  outline: 0;
}
span,
a,
a:hover {
  text-decoration: none;
  color: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #212121;
}
a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: inherit;
  font-family: "Poppins", sans-serif;
}
h1 {
  font-size: 55px;
  line-height: 65px;
  margin-bottom: 0px;
}
h2 {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 0px;
}
h3 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 0px;
}
h4 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 0px;
}
h5 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 0px;
}
ul,
li {
  list-style: none;
  padding: 0;
}
.bg-gray {
  background-color: #f7f8f9;
}
span {
  font-family: "Roboto", sans-serif;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../images/down.png");
  background-repeat: no-repeat;
  background-position: 96%;
  background-size: 25px;
}
.text-theme {
  color: #ff5202;
}
.bor-none {
  border: none !important;
}
.center-title {
  text-align: center;
  padding-bottom: 60px;
}
.center-title .title {
  text-transform: capitalize;
  padding-bottom: 30px;
}
.center-title .sub-title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  max-width: 750px;
  margin: 0 auto;
}
/*-------------- title-spacing -------------*/

.same-section-spacing {
  padding: 100px 0;
}
.ws-section-spacing {
  padding: 100px 0 70px;
}
.title-bottom-spacing {
  margin-bottom: 60px;
}
/*---------------- Sticky-header -------------*/

.header-fixed.stick {
  border-bottom: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #ff5202;
  box-shadow: 0px 0px 80px rgba(83, 88, 93, 0.2);
  -webkit-animation: 300ms ease-in-out 0s normal none fadeInDown;
  animation: 300ms ease-in-out 0s normal none fadeInDown;
  z-index: 999;
}
/*----------------- Preloader -----------------*/

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../images/loader.gif") no-repeat center center;
}
/*----------- Button-bottom-to-top -------------*/

#btn-to-top {
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 12px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  border-bottom: 60px solid #ff5202;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  color: #fff;
}
#btn-to-top::after {
  content: "\f30c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2em;
  line-height: 70px;
  position: relative;
  color: #ffffff;
  right: 5px;
}
#btn-to-top:hover {
  cursor: pointer;
}
#btn-to-top.show {
  opacity: 1;
  visibility: visible;
}
/*------------- Search-icon --------------*/

#search-btn input[type="text"] {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  display: inline-block;
  font-weight: 100;
  border: none;
  outline: none;
  padding-right: 30px;
  width: 0px;
  position: absolute;
  top: 15px;
  right: 8px;
  background: none;
  z-index: 3;
  transition: width 0.4s cubic-bezier(0, 0.795, 0, 1);
  cursor: pointer;
}
#search-btn input[type="text"]:focus {
  width: 700px;
  z-index: 1;
  cursor: text;
  background: #fff;
  margin-right: 30px;
  padding: 10px 20px;
  border-radius: 5px;
  top: 10px;
}
/*--------------- Datepicker Or search-form -------------*/

.search_area .form-group {
  margin: 0;
}
.search_area .form-control,
.search_area input {
  height: 40px;
  width: 210px;
  padding: 0px 10px;
  margin-right: 15px;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.search_area.search_area_three .btn-tour,
.search_area.search_area_three .form-control,
.search_area.search_area_three input {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.datepicker.dropdown-menu {
  padding: 0;
  background-clip: border-box;
  border: none;
  border-radius: 0;
  -webkit-animation: popup 0.2s ease-out forwards;
  animation: popup 0.2s ease-out forwards;
}
.form-group.date.input-datepicker {
  position: relative;
}
.datepicker.dropdown-menu table thead tr {
  border-top: 0;
}
.datepicker.dropdown-menu table tbody {
  background-color: white;
}
.datepicker.dropdown-menu table tr {
  border-top: 1px solid #ededed;
}
.datepicker.dropdown-menu table tr td,
.datepicker.dropdown-menu table tr th {
  width: auto;
  height: 24px;
  padding: 8px;
  font-size: 16px;
  border-radius: 0;
  transition: background-color 0.6s ease-out;
}
span.input-group-addon {
  position: absolute;
  right: 30px;
  top: 8px;
}
.search_area.search_area_two .input-group-addon {
  right: 15px;
}
.search_area.search_area_two.booking-tour .input-group-addon {
  right: 20px;
}

.btn-tour {
  background: #ff5202;
  border: none;
  padding: 7px 40px;
  color: #fff;
  line-height: 26px;
}
.search_area-inner {
  border-radius: 4px;
  margin-top: -75px;
  padding: 40px;
  z-index: 9;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.27);
  background: #ffffff;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
}
@media screen and (min-width: 400px) {
  .datepicker.dropdown-menu table tr td,
  .datepicker.dropdown-menu table tr th {
    padding: 12px;
  }
}
.datepicker.dropdown-menu table tr td:hover,
.datepicker.dropdown-menu table tr td.active:hover,
.datepicker.dropdown-menu table tr td:active:hover,
.datepicker.dropdown-menu table tr th:hover,
.datepicker.dropdown-menu table tr th.active:hover,
.datepicker.dropdown-menu table tr th:active:hover {
  border-color: #ededed;
  border-radius: 0;
  transition: background-color 0.2s ease-out;
}
.datepicker.dropdown-menu table tr td.focused,
.datepicker.dropdown-menu table tr td.selected,
.datepicker.dropdown-menu table tr th.focused,
.datepicker.dropdown-menu table tr th.selected {
  background-color: #24a0ad;
  border-color: #ededed;
  border-radius: 0;
}
.datepicker.dropdown-menu table tr td.active,
.datepicker.dropdown-menu table tr td.active:focus,
.datepicker.dropdown-menu table tr td.active.active:hover,
.datepicker.dropdown-menu table tr td:active:focus,
.datepicker.dropdown-menu table tr td.highlighted,
.datepicker.dropdown-menu table tr th.active,
.datepicker.dropdown-menu table tr th.active:focus,
.datepicker.dropdown-menu table tr th.active.active:hover,
.datepicker.dropdown-menu table tr th:active:focus,
.datepicker.dropdown-menu table tr th.highlighted {
  background-color: #ff5202;
  border-color: #ff5202;
  color: #fff;
}
.datepicker.dropdown-menu table tr th.datepicker-switch {
  font-size: 12px;
  font-weight: bold;
  line-height: 2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #212121;
  background-color: inherit;
  border-radius: 0;
  text-align: center;
  background: #e5e5e5;
}
.datepicker-days {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3686274509803922);
  overflow: hidden;
}
.datepicker.dropdown-menu table tr th.prev,
.datepicker.dropdown-menu table tr th.next {
  color: #212121;
  background-color: rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  border-radius: 0;
}
.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr th:hover {
  background-color: rgba(0, 0, 0, 0.2) !important;
}
.datepicker.dropdown-menu table tr th.dow {
  padding: 2px 12px;
  font-size: 12px;
  line-height: 2;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #ff5202;
}
.datepicker.dropdown-menu table tr td.day {
  width: 24px;
  cursor: pointer;
  text-align: center;
  border-right: 1px solid #ededed;
}
.datepicker.dropdown-menu table tr td.day:last-child {
  border-right-width: 0;
}
.datepicker.dropdown-menu table tr td.range {
  background-color: #eeeeee;
}
.datepicker.dropdown-menu .new,
.datepicker.dropdown-menu .old,
.datepicker.dropdown-menu .disabled,
.datepicker.dropdown-menu .disabled:hover {
  color: #ccc;
}
[class*="fontawesome-"]:before {
  font-family: "FontAwesome", sans-serif;
}
.fontawesome-calendar {
  position: absolute;
  top: 26px;
  right: 0;
  font-size: 24px;
  z-index: -99;
}
@-webkit-keyframes popup {
  from {
    opacity: 0;
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes popup {
  from {
    opacity: 0;
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/*------------- Video-box --------*/

.video-img-box {
  position: relative;
}
.video-img-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
/* pulse in CSS */

.pulse-box {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.pulse-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid #fff;
  position: relative;
  text-align: center;
  line-height: 55px;
  padding-left: 5px;
  font-size: 25px;
  color: #fff;
}
.pulse-icon:hover {
  color: #fff;
}
.pulse-icon:before,
.pulse-icon:after {
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 25px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform: scale(0.5);
  transform-origin: center center;
  animation: pulse-me 3s linear infinite;
}
.pulse-icon:after {
  animation-delay: 2s;
}
@keyframes pulse-me {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 0.1;
    background: #fff;
  }
  70% {
    opacity: 0.09;
    background: #fff;
  }
  100% {
    transform: scale(5);
    opacity: 0;
    background: #fff;
  }
}
/*--------------- Top-bar ----------------*/

header {
  position: relative;
  margin: -1px 0;
}
header .header_top_area {
  background: #ffffff;
  /* border-bottom: 1px solid #eee; */
}
header .header_top_area .contact_wrapper_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .header_top_area .contact_wrapper_top .header_top_contact {
  margin: 0;
}
header .header_top_area .contact_wrapper_top .header_top_contact li {
  display: inline-block;
  padding: 14px;
  color: #2f2f2f;
  font-size: 14px;
  font-weight: 400;
  border-right: 1px solid #e8e8e8;
}
header .header_top_area .contact_wrapper_top .header_top_contact li:last-child {
  border-right: none;
}
header .header_top_area .contact_wrapper_top .header_top_contact li i {
  margin-right: 10px;
  color: #ff5202;
  font-size: 20px;
  vertical-align: middle;
}
header .header_top_area .contact_wrapper_top .book-btn {
  display: inline-block;
  padding: 18px 30px;
  float: right;
  background: #ff5202;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
header .header_top_area .contact_wrapper_top .book-btn a {
  color: #ffffff;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
}
header .header_top_area .contact_wrapper_top .book-btn:hover {
  background: #212121;
}
/* ----------------------------------------------------------------
     [ 02 Start Navbar ]
-----------------------------------------------------------------*/

.header-one {
  position: absolute;
  top: 75px;
  left: 0;
  width: 100%;
  z-index: 1;
}
.navbar-light .navbar-nav {
  position: relative;
}
.navbar-light .navbar-nav .nav-link {
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 0;
  margin-right: 18px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
}
.navbar-light .navbar-nav .nav-link > i {
  vertical-align: middle;
  font-size: 13px;
}
.navbar-light .navbar-nav .nav-link:focus {
  color: #fff;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .active > .nav-link {
  color: #212121;
}
.navbar-light .navbar-nav .nav-item {
  position: relative;
  padding: 25px 0;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
}
.navbar-light .navbar-nav .nav-item .dropdown {
  background: #fff;
  padding: 15px 0;
  position: absolute;
  top: 80px;
  opacity: 0;
  visibility: hidden;
  max-width: 200px;
  width: 200px;
  left: 0;
}
.navbar-light .navbar-nav .nav-item .dropdown .nav-item {
  padding: 8px 5px;
  border-bottom: 1px solid #eee;
  list-style: none;
  width: 100%;
}
.navbar-light .navbar-nav .nav-item .dropdown .nav-item:last-child {
  border: none;
}
.navbar-light .navbar-nav .nav-item .dropdown .nav-link {
  color: #212121;
  margin-left: 10px;
}
.navbar-light .navbar-nav .nav-item .dropdown .nav-link:hover {
  color: #ff5202;
}
.navbar-light .navbar-nav .nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  top: 72px;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    justify-content: flex-end;
  }
}
.log-btn a {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
}
.log-btn a:hover {
  color: #ffffff;
}
.navbar-brand {
  padding: 0;
}
/*------------- Slick-Nav ----------------*/

.slicknav_menu {
  display: none;
}
@media (max-width: 992px) {
  .slicknav_menu {
    display: block;
    background: transparent;
    position: relative;
    z-index: 999;
  }
  .header-one .navbar {
    display: none;
  }
  .slicknav_nav {
    background: #212121;
    position: relative;
    top: 0px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.23);
  }
  .slicknav_btn {
    background: transparent;
  }
  .slicknav_nav a {
    font-size: 15px;
  }
  .slicknav_nav .slicknav_row:hover,
  .slicknav_nav a:hover {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 0;
    background: transparent;
    color: #ff5202;
  }
  .slicknav_nav .slicknav_arrow {
    float: right;
  }
  .slicknav_brand {
    height: 70px;
  }
  .slicknav_btn {
    padding: 22px 0;
  }
}
/* ----------------------------------------------------------------
     [ 03 Main Hero slide ]
-----------------------------------------------------------------*/

/*--------- Index-one-main ----------*/

main.hero-slide .item {
  position: relative;
}
.hero-slider__content-wrapper {
  position: absolute;
  display: block;
  top: 45%;
  transform: translateY(-50%);
  left: 0;
  z-index: 5;
  width: 100%;
}
.hero-slider__content .hero-slider__title {
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.hero-slider__content .hero-slider__text {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 50px;
  color: #212121;
}
.hero-slider__content .hero-slider__btn {
  border: 2px solid #212121;
  color: #212121;
  line-height: 26px;
  border-radius: 5px;
  padding: 10px 30px;
  font-weight: 500;
  display: inline-block;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
}
.hero-slider__content .hero-slider__btn.active,
.hero-slider__content .hero-slider__btn:hover {
  background: #ff5202;
  border-color: #ff5202;
  color: #fff;
}
.slider-type-one .hero-slider__content .hero-slider__btn.active,
.slider-type-one .hero-slider__content .hero-slider__btn:hover {
  background: #212121;
  border-color: #212121;
  color: #fff;
}
main.hero-slide.slick-initialized.slick-slider.slick-dotted {
  overflow: hidden;
  margin: 0;
}
main.hero-slide .item img {
  height: 950px;
  object-fit: cover;
  object-position: center;
}
main.hero-slide .slick-prev:before,
main.hero-slide .slick-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #212121;
  position: relative;
  font-size: 20px;
  line-height: 2px;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
}
main.hero-slide .slick-prev:before {
  content: "\f30a";
  left: 15px;
}
main.hero-slide .slick-next:before {
  content: "\f30b";
  right: 34px;
}
main.hero-slide .slick-prev,
main.hero-slide .slick-next {
  z-index: 1;
  text-align: center;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
}
main.hero-slide .slick-prev:hover,
main.hero-slide .slick-next:hover {
  border-color: #ff5202;
  border-top: 24px solid transparent;
  border-bottom: 25px solid transparent;
}
main.hero-slide .slick-prev:hover:before,
main.hero-slide .slick-next:hover:before {
  color: #fff;
}
main.hero-slide .slick-next {
  right: 20px;
  border-left: 40px solid #ffffff;
  border-top: 24px solid transparent;
  border-bottom: 25px solid transparent;
}
main.hero-slide .slick-prev {
  left: 20px;
  border-right: 40px solid #ffffff;
  border-top: 24px solid transparent;
  border-bottom: 25px solid transparent;
}
main.hero-slide .slick-dots {
  display: none !important;
}
@media screen and (min-width: 400px) {
  #flight-datepicker .date-text {
    top: 100%;
  }
}
/*--------- Index-two-main ----------*/

.header_top_area.type-two {
  background: #ff5202;
}
header .header_top_area.type-two .contact_wrapper_top .header_top_contact li,
header .header_top_area.type-two .contact_wrapper_top .header_top_contact li i {
  color: #fff;
}
.topbar-icon ul {
  padding: 15px 0;
  margin: 0;
}
.topbar-icon ul li {
  display: inline-block;
  color: #fff;
  margin-left: 15px;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.topbar-icon ul li:hover {
  color: #212121;
}
.header-two {
  position: relative;
  z-index: 9;
  background: #ff5202;
}
.header-two .navbar-light .navbar-nav .active > .nav-link {
  color: #0d0d0d;
}
/* .header-two .navbar-light .navbar-nav .nav-link {
	color: #212121;
	margin-left: 30px;
	margin-right: 0;
} */
.header-two .navbar {
  padding: 0;
  position: relative;
}
.header-two .navbar-brand::before {
  content: "";
}
.slider-type-two {
  line-height: 0;
}
.slider-type-two .item {
  position: relative;
}
.slider-type-two .item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.slider-type-two .hero-slider__content .hero-slider__btn,
.slider-type-two .hero-slider__content .hero-slider__text,
.slider-type-two .hero-slider__content .hero-slider__title {
  color: #fff;
  border-color: #fff;
}
.slider-type-two .hero-slider__content .hero-slider__btn.active,
.slider-type-two .hero-slider__content .hero-slider__btn:hover {
  border-color: #ff5202;
}
.search_area_two .search_area-inner {
  box-shadow: none;
  background: transparent;
  margin: 0;
}
.search_area_two .search_area-inner .form-group {
  margin-bottom: 20px;
}
main.hero-slide.slider-type-two .item img {
  height: 830px;
}
.search_area_two.search_area {
  background: #fff;
}
.search_area_two.search_area .form-group {
  width: 100%;
}
.search_area_two.search_area .form-control,
.search_area_two.search_area input {
  width: 100%;
}
.search_area_two.search_area .btn-tour {
  display: block;
  width: 100%;
}
/*--------------- Index-three-main  -------------*/

header.header-type-three .log-btn a,
header.header-type-three .navbar-light .navbar-nav .nav-link,
header.header-type-three
  .header_top_area
  .contact_wrapper_top
  .header_top_contact
  li {
  color: #fff;
}
header.header-type-three .navbar-light .navbar-nav .nav-link:hover,
header.header-type-three .navbar-light .navbar-nav .nav-link:hover,
header.header-type-three .navbar-light .navbar-nav .active > .nav-link,
header.header-type-three .topbar-icon ul li:hover {
  color: #ff5202;
}
header.header-type-three .header-fixed.stick {
  background: #212121;
}
.header-type-three {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 11;
  border-bottom: 1px solid #727272;
}
header.header-type-three
  .header_top_area
  .contact_wrapper_top
  .header_top_contact
  li {
  border-color: #727272;
}
.header-type-three .header_top_area {
  background: transparent;
}
.hero-slide-three {
  overflow: hidden;
  position: relative;
  margin: 0 !important;
}
.hero-slide-three .item {
  height: 800px;
  object-fit: cover;
  object-position: center;
}
.hero-slide-three .item img {
  height: 955px;
  object-fit: cover;
  object-position: center;
}
.hero-slide-three .slick-current .item::before {
  z-index: 1;
}

.hero-slider__content {
  background: rgba(0, 0, 0, 0.6);
  padding-top: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
}
.hero-slide-three .item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
}
.hero-slide-three .hero-slider__content .hero-slider__btn {
  color: #fff;
  border-color: #fff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.hero-slide-three .hero-slider__content .hero-slider__btn:hover,
.hero-slide-three .hero-slider__content .hero-slider__btn.active {
  border-color: #ff5202;
}
.hero-slide-three .hero-slider__content .hero-slider__text,
.hero-slide-three .hero-slider__content .hero-slider__title {
  color: #fff;
}
.hero-slide-three .slick-prev:before,
.hero-slide-three .slick-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  position: relative;
  font-size: 20px;
  line-height: 15px;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
}
.hero-slide-three .slick-prev:before {
  content: "\f30a";
}
.hero-slide-three .slick-next:before {
  content: "\f30b";
}
.hero-slide-three .slick-prev,
.hero-slide-three .slick-next {
  z-index: 1;
  text-align: center;
  /* border: 1px solid #fff; */
  background: #ffffff4a;
  width: 40px;
  top: 45% !important;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.hero-slide-three .slick-prev:hover,
.hero-slide-three .slick-next:hover {
  border-color: #ff5202;
  background: #ff5202;
}
.hero-slide-three .slick-prev:hover:before,
.hero-slide-three .slick-next:hover:before {
  color: #fff;
}
.hero-slide-three .slick-next {
  right: 20px;
}
.hero-slide-three .slick-prev {
  left: 20px;
}
.search_area_three .search_area-inner {
  margin-top: -95px;
  border-radius: 70px;
  -webkit-border-radius: 70px;
  -moz-border-radius: 70px;
  -ms-border-radius: 70px;
  -o-border-radius: 70px;
}
/* ----------------------------------------------------------------
     [ 04  About us ]
-----------------------------------------------------------------*/

.about-content {
  margin-bottom: 30px;
}
.about-content h2 {
  margin-bottom: 30px;
  font-size: 34px;
  line-height: 48px;
}
.about-content .read-btn,
.eduschool-button {
  display: inline-block;
  border: 1px solid #eee;
  padding: 12px 30px;
  margin-top: 20px;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.about-content .read-btn:hover,
.eduschool-button:hover {
  color: #fff;
  background: #ff5202;
  border-color: #ff5202;
}
.about-content ul,
.about-content ol {
  padding-top: 10px;
  padding-left: 15px;
}
.about-content ul li {
  list-style: disc;
}
.about-content ol li {
  list-style: decimal;
}
.about-listing li {
  padding-bottom: 12px;
}
.about-listing li > i {
  color: #ff5202;
  padding-right: 6px;
}
/* ----------------------------------------------------------------
     [ 05  Service ]
-----------------------------------------------------------------*/

/*------------------ Service-One --------------*/

.servicebox-one {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
  padding: 30px 20px;
  box-shadow: 0px 0px 40px rgba(83, 88, 93, 0.1);
  background-color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.servicebox-one:hover {
  box-shadow: 0px 0px 80px rgba(83, 88, 93, 0.2);
}
.servicebox-one .service-box-icon {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 12px;
  color: #ff5202;
}
.servicebox-one .service-box-title {
  margin-bottom: 15px;
  text-transform: capitalize;
}
.servicebox-one .service-box-desc {
  margin-bottom: 15px;
}
.servicebox-one .btn {
  padding: 0;
  font-weight: 500;
}
.service-one img {
  margin-bottom: 30px;
}
.servicebox-one .service-box-icon i::before {
  font-size: 50px;
  margin-bottom: 15px;
  display: block;
}
/*-------------------- Service-two ---------------*/

.service-type-two {
  box-shadow: none;
  text-align: left;
  border: 1px solid #eee;
}
.service-type-two .btn {
  border-bottom: 1px solid #212121;
  border-radius: 0;
}
/* ----------------------------------------------------------------
     [ 06  Package-section ]
-----------------------------------------------------------------*/

.package-one {
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.package-one:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.package-one .img-wapper {
  overflow: hidden;
  position: relative;
}
.package-one .img-wapper img {
  display: block;
  width: 100%;
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
.package-one:hover .img-wapper img {
  transform: scale(1);
}
.package-one .package-content {
  padding: 25px 20px 25px;
  background: #fff;
}
.package-one .package-content h3 {
  margin-bottom: 20px;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.package-one .package-content p > span,
.package-one:hover .package-content h3 {
  color: #ff5202;
}
.package-one .package-content p {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}
.package-one .package-content .ct-action li {
  display: inline-block;
}
.package-one .package-content .ct-action li .booking-btn {
  border: 1px solid #e2e2e2;
  padding: 8px 20px;
  display: block;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.package-one .ct-action {
  margin: 0;
}
.package-one:hover .ct-action li .booking-btn {
  border-color: #ff5202;
  background-color: #ff5202;
  color: #fff;
}
.package-one .package-content .ct-action li:last-child {
  float: right;
  margin-top: 7px;
}
.package-one .package-content .ct-action li > i {
  color: #ff5202;
}
/* ----------------------------------------------------------------
     [ 07  offer-area ]
-----------------------------------------------------------------*/

.offer-area-three,
.offer-area-two {
  background-image: url(../images/back-1.jpg);
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.offer-area-one {
  position: relative;
  background-color: #ff5202;
}
.offer-area-two::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.75;
}
.offer-area-two {
  background-image: url(../images/bg-2.jpg);
}
.offer-area-three {
  background-image: url(../images/bg-3.jpg);
}
.add-area {
  color: #fff;
}
.add-area h3 {
  color: #fff;
  margin-bottom: 15px;
}
.add-area h2 {
  color: #fff;
  margin-bottom: 25px;
}
.add-area h2 > span {
  font-size: 60px;
  line-height: 68px;
  font-style: italic;
}
.add-area p {
  color: #fff;
  margin-bottom: 30px;
}
.add-area a {
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid #fff;
  display: inline-block;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.add-area a:hover {
  background: #212121;
  border-color: #ff5202;
}
.offer-area-three .add-area a:hover {
  color: #fff;
  border-color: #ff5202;
}
.offer-area-three .add-area a {
  border-color: #212121;
}
.offer-area-three .add-area p,
.offer-area-three .add-area h2,
.offer-area-three .add-area h3,
.offer-area-three .add-area {
  color: #212121;
}
/* ----------------------------------------------------------------
     [ 08  Desination-Section ]
-----------------------------------------------------------------*/

.destination-slide .slick-slide > div {
  padding: 0 15px;
}
.testi-slide-one .slick-prev,
.testi-slide-one .slick-next,
.destination-slide .slick-prev,
.destination-slide .slick-next {
  display: none !important;
}
.place-box .desi-inner {
  padding: 20px;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.place-box .desi-inner h4 {
  margin-bottom: 5px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}
.place-box .desi-inner p {
  display: inline-block;
  margin-bottom: 0;
}
.place-box .wapper-img {
  position: relative;
}
.place-box .wapper-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.place-box .wapper-img .pop-btn {
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 30px;
  width: fit-content;
  border-radius: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  opacity: 0;
  visibility: hidden;
}
.place-box:hover .wapper-img::before {
  opacity: 0.7;
  visibility: visible;
  height: 100%;
}
.place-box:hover .wapper-img .pop-btn {
  opacity: 1;
  visibility: visible;
}
.place-box .wapper-img .pop-btn:hover {
  background: #ff5202;
  border-color: #ff5202;
}
.testi-slide-two .slick-dots li button:before,
.testi-slide-one .slick-dots li button:before,
.destination-slide .slick-dots li button:before {
  font-size: 14px;
  color: #fff;
}
.testi-slide-two .slick-dots li.slick-active button:before,
.testi-slide-one .slick-dots li.slick-active button:before,
.destination-slide .slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #ff5202;
}
/* ----------------------------------------------------------------
     [ 09  Counter-Section ]
-----------------------------------------------------------------*/

.bg-img-counter {
  background-image: url(../images/bg-c.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}
.bg-img-counter::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
}
.counter-box {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
  border: 1px solid #ffffff57;
  padding: 30px 15px;
}
.counter-box .count-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}
.counter-box .counter {
  color: #fff;
  font-size: 55px;
  margin-bottom: 20px;
}
.counter-box .count-title {
  color: #fff;
}
/* ----------------------------------------------------------------
     [ 10  Testimonial-slider ]
-----------------------------------------------------------------*/

/*---------------- Testimonial-slider-one ----------------*/

.testi-slide-one .slick-slide > div {
  padding: 10px 15px;
}
.testi-slide-one.slick-initialized .slick-slide {
  display: block;
  opacity: 0.1;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.testi-slide-one.slick-initialized .slick-slide.slick-current {
  opacity: 1;
  /* background: #fff; */
}
.testi-slide-one .item {
  margin-bottom: 30px;
  padding: 20px;
  text-align: center;
  overflow: hidden;
  background: #fff;
  position: relative;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.testi-slide-one .item img {
  border-radius: 50%;
  max-width: 100px;
  margin: 0 auto 20px;
}
.testi-slide-one .item .testi-content p {
  margin-bottom: 20px;
}
.testi-slide-one .item .testi-content p:last-child {
  margin: 0;
}
.testi-slide-one .item .testi-content span {
  margin-bottom: 15px;
  display: block;
  color: #ff5202;
}
.testi-slide-one .item .testi-content h4 {
  margin-bottom: 5px;
}
/*---------------- Testimonial-slide-two ----------------*/

.testi-slide-two {
  text-align: center;
  margin: auto 15px 25px !important;
}
.testi-slide-two .item img {
  max-width: 120px;
  max-height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.testi-slide-two .testi-content {
  margin-bottom: 20px;
}
.testi-slide-two .testi-content span {
  padding-top: 10px;
  display: block;
}
.testi-slide-two .testi-content h4 {
  padding: 10px 0;
}
/* ----------------------------------------------------------------
     [ 11  Blog-section ]
-----------------------------------------------------------------*/

.meta-tag {
  padding-top: 5px;
  border-top: 1px solid #eee;
  margin-top: 22px;
  padding-top: 18px;
  margin-bottom: 0;
}
.meta-tag li {
  display: inline-block;
  margin-right: 8px;
  font-size: 15px;
  margin-bottom: 5px;
}
.meta-tag li a > i {
  font-size: 13px;
  padding-right: 10px;
}
.meta-tag li a {
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.read-btn {
  font-weight: 500;
  color: #212121;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.read-btn > i {
  font-size: 13px;
  padding-left: 5px;
}
.meta-tag li a:hover,
.read-btn:hover {
  color: #ff5202;
}
.package-one.blog-box .package-content p {
  font-size: 16px;
  font-weight: 400;
}
.client-slide {
  overflow: hidden;
}
.client-slide .slick-slide > div {
  padding: 0 15px;
}
/* ----------------------------------------------------------------
     [ 12  Footer-section ]
-----------------------------------------------------------------*/

.img-footer {
  width: 100%;
  background-size: cover;
  background-color: #212121;
  position: relative;
}
.img-footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.footer-widget {
  margin-bottom: 30px;
}
.footer-widget .title {
  margin-bottom: 40px;
  text-transform: capitalize;
}
.footer-widget .title h3 {
  color: #fff;
}
.footer-widget p {
  color: #fff;
  margin-bottom: 20px;
}
.footer-icon {
  color: #fff;
}
.footer-icon li {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
}
footer .recent-post li .post-content h5 > a,
.link-widget li > a,
.footer-icon li > a {
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
footer .recent-post li .post-content h5 > a:hover,
.link-widget li > a:hover,
.footer-icon li > a:hover {
  color: #ff5202;
}
.link-widget li {
  color: #fff;
  padding-bottom: 15px;
}
.link-widget li:last-child {
  padding-bottom: 0;
}
footer .recent-post li {
  display: block;
  margin-bottom: 10px;
  width: 100%;
}
footer .recent-post li .post-left {
  float: left;
  margin-right: 15px;
  width: 90px;
  height: 105px;
}
.sidebar-box .footer-icon {
  color: #585858;
}
footer .recent-post li .post-right h5 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  margin-bottom: 5px;
}
footer .recent-post li .post-right span.date {
  color: #fff;
  font-size: 14px;
}
.ftr-gallery-list {
  margin: 0;
}
.ftr-gallery-list li {
  display: inline-block;
  max-width: 90px;
  margin: 5px 4px;
  position: relative;
}
.ftr-gallery-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.ftr-gallery-list li a:hover::before {
  opacity: 0.5;
}
.footer-bottom {
  clear: both;
  padding: 20px 0;
  background-color: #ff5202;
  text-align: center;
}
/* ----------------------------------------------------------------
     [ 13  Extra-css ]
-----------------------------------------------------------------*/

/*-------------- Banner-css ------------------*/

.bg-banner {
  background: url("../images/banner.jpg");
  width: 100%;
  position: relative;
  background-position: top;
}
.bg-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
}
.banner-box h2 {
  color: #fff;
  margin-bottom: 10px;
}
.breadcrumb {
  background: transparent;
  color: #fff;
  padding: 10px 0;
}
.breadcrumb-item.active {
  color: #fff;
  font-weight: 300;
}
.breadcrumb-item a {
  font-weight: 600;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}
/*---------- package-list ----------*/

.single_package {
  margin-bottom: 30px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.single_package:hover .media-body h3 {
  color: #ff5202;
}
.single_package .media > img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-top: 20px;
  margin-left: 20px;
}
.single_package .media-body {
  padding: 25px 25px;
}
.single_package .media-body .direction {
  font-size: 15px;
  font-weight: 500;
  color: #ff5202;
  display: block;
  margin-bottom: 10px;
}
.package-content .direction {
  color: #ff5202;
}
.single_package .media-body h3 {
  margin-bottom: 10px;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.single_package .media-body p {
  margin-bottom: 20px;
}
.single_package .media-body .duration {
  display: inline-block;
  margin-bottom: 30px;
}
.single_package .media-body ul {
  margin: 0;
}
.single_package .media-body ul p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}
.single_package .media-body ul h5 {
  font-size: 15px;
  padding-left: 20px;
}
.single_package .media-body ul li i {
  padding-right: 5px;
}
.single_package .media-body .duration li {
  display: inline-block;
  margin-right: 20px;
}
.single_package .media-body .btn-packlist {
  border: 1px solid #e2e2e2;
  display: table-cell;
  padding: 12px 30px;
  border-radius: 4px;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.single_package .media-body .btn-packlist:hover {
  background: #ff5202;
  color: #fff;
  border-color: #ff5202;
}
/*--------------- place-details ---------------*/

.place-details img {
  margin-bottom: 40px;
  height: 430px;
}
.place-content h3 {
  margin-bottom: 20px;
}
/*---------------- Booking-tour ------------*/

.booking-tour {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.27);
  padding: 40px;
}
.booking-tour .form-group {
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}
.booking-tour .search_area-inner {
  padding: 0;
}
.booking-tour .btn-tour {
  display: inline-block !important;
  width: auto !important;
}
.gallery-box {
  position: relative;
  margin-bottom: 30px;
}
.gallery-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.gallery-box:hover .overlay {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
.gallery-box .overlay a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.gallery-box .overlay a > i {
  border: 2px solid #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.gallery-box .overlay a > i:hover {
  background: #ff5202;
  border-color: #ff5202;
}
/*--------------- Accordian ---------------*/

#accordion .panel-default {
  margin-bottom: 20px;
  border: 1px solid #eee;
}
#accordion .panel-body {
  padding: 20px;
}
#accordion .panel-body p {
  margin: 0;
}
#accordion .panel-title {
  color: #ff5202;
  font-weight: 500;
}
#accordion .panel-title .collapsed {
  color: #212121;
}
#accordion .panel-title i {
  float: right;
}
#accordion .panel-heading {
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
}
.bg-fixed {
  background-image: url(../images/2.2.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.bg-fixed::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
}
.bg-error {
  background-image: url(../images/error-box.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 750px;
  position: relative;
}
.error-box {
  position: absolute;
  top: 44%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.error-box h1 {
  font-size: 115px;
  line-height: 125px;
  margin-bottom: 15px;
}
.error-box span {
  font-weight: 600;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 15px;
  display: block;
}
.error-box p {
  margin-bottom: 20px;
}
.error-box a {
  border: 1px solid #000;
  padding: 8px 30px;
  display: inline-block;
  border-radius: 30px;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.error-box a:hover {
  background: #ff5202;
  border-color: #ff5202;
  color: #fff;
}
/*-------------- Blog-sidebar ----------------*/

.single-blog .blog-box .blog-content .blog-meta,
.single-page .blog-box .blog-content .blog-meta {
  margin-bottom: 20px;
}
.single-blog .search-box input,
.single-page .search-box input {
  height: 50px;
}
.single-blog .search-box input:focus,
.single-page .search-box input:focus {
  outline: none;
  box-shadow: none;
}
.single-blog .search-box .btn-search,
.single-page .search-box .btn-search {
  width: 43px;
  height: 43px;
}
.single-blog .search-box .btn-search i,
.single-page .search-box .btn-search i {
  font-size: 18px;
  position: absolute;
  top: 15px;
  right: 30px;
}
.sidebar-box {
  margin-bottom: 40px;
}
.sidebar-box .title {
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
.Categories-box li {
  padding: 10px 0;
  text-transform: capitalize;
  position: relative;
  padding-left: 18px;
  font-weight: 500;
  transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
}
.Categories-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 7px;
  height: 7px;
  background: #dcdcdc;
  border-radius: 50%;
  transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
}
.Categories-box li:hover {
  color: #212121;
  font-weight: 500;
  margin-left: 8px;
}
.Categories-box li:hover::before {
  background: #212121;
}
.recent-post {
  margin: 0;
}
.sidebar-box .recent-post li {
  margin-bottom: 5px;
  padding-top: 10px;
}
.recent-post .post-left {
  height: auto;
  float: left;
  padding-top: 5px;
  width: 90px;
}
.sidebar-box .recent-post .post-right {
  display: inline-block;
  padding-left: 10px;
  max-width: 70%;
}
.recent-post .post-right h5 {
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  line-height: 22px;
  transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
}
.recent-post .post-right h5:hover {
  color: #ff5202;
}
.recent-post .post-right .date {
  color: #212121;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.tags-btn a {
  background: #f7f8fa;
  padding: 8px 15px;
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
}
.tags-btn a:hover {
  background: #ff5202;
  color: #fff;
}
.add-post {
  position: relative;
  margin-top: 60px;
}
.add-post::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
}
.add-post h3 {
  color: #fff;
  letter-spacing: 4px;
  font-weight: 400;
  font-size: 22px;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
/*------------------ Blockqouts ----------------*/

.quote-card {
  background: #ff5202;
  padding: 50px 30px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}
.quote-card p {
  font-size: 18px;
  line-height: 27px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}
.quote-card p::before {
  font-family: "Font Awesome 5 Free";
  content: "\f10d";
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 190px;
  color: rgba(255, 255, 255, 0.14);
  font-weight: 900;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: -1;
}
ul.share-icon {
  margin-bottom: 30px;
}
.share-icon > .title {
  display: inline-block;
  padding-right: 10px;
  padding-bottom: 0 !important;
}
.share-icon {
  margin-bottom: 10px;
}
.share-icon ul {
  display: inline-block;
}
.share-icon li {
  display: inline-block;
  margin: 0 8px;
  font-size: 22px;
  transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
}
.share-icon li:hover {
  color: #ff5202;
}
.blog-content {
  margin-bottom: 50px;
}
/*----------------- Comment-box -------------*/

.comment-area .title {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.comment-box {
  margin: 20px 0 40px;
}
.comment-box > li {
  border-bottom: 1px solid #eee;
  padding: 30px 0;
}
.comment-box .left-comment-box {
  max-width: 15%;
  float: left;
  margin-right: 20px;
}
.comment-box .right-comment-content {
  max-width: 100%;
  position: relative;
}
.comment-box .right-comment-content h3 {
  margin-bottom: 15px;
}
.comment-box .right-comment-content h3 > span {
  color: #585858;
  font-size: 15px;
  padding-left: 10px;
  font-weight: 500;
}
.comment-box .right-comment-content > a {
  position: absolute;
  top: 8px;
  right: 15px;
  transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
}
.comment-box .right-comment-content > a:hover {
  color: #ff5202;
}
.comment-box img {
  border: 3px solid #ff5202;
  box-shadow: 0px 3px 21px 0px rgba(67, 57, 169, 0.2);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.comment-box .user-two {
  margin-left: 50px;
  border-top: 1px solid #eee;
  padding: 30px 0 0;
  margin-top: 50px;
  display: block;
}
/*---------------- Comment-form ----------------*/

.comment-form .title {
  margin-bottom: 40px;
}
.comment-form .form-group input {
  border: none;
  box-shadow: 0px 3px 20px 0 rgba(67, 57, 169, 0.1);
  background-color: #ffffff;
  height: 50px;
  border-radius: 5px;
  padding-left: 20px;
  margin-bottom: 30px;
  position: relative;
}
.comment-form textarea.form-control {
  height: auto;
  border: none;
  box-shadow: 0px 3px 20px 0 rgba(67, 57, 169, 0.1);
  background-color: #ffffff;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.comment-form .btn {
  border: 2px solid #ff5202;
  padding: 8px 50px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 35px;
  margin-bottom: 30px;
  transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
}
.comment-form .btn:focus {
  outline: none;
}
.comment-form .btn:hover {
  background: #ff5202;
  color: #fff;
}
.comment-form .form-icon {
  position: absolute;
  top: 18px;
  right: 30px;
  color: #585858;
  opacity: 0.5;
  font-size: 14px;
}
/*--------- pagination ------------*/

.pagination {
  display: inline-flex;
  border-radius: 0;
  position: relative;
  background-color: #fff;
  box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.5);
  margin-bottom: 5px;
  margin-top: 1.5rem !important;
}
.pagination li a.page-link {
  color: #ff5202;
  background-color: transparent;
  font-size: 20px;
  line-height: 35px;
  height: 55px;
  width: 45px;
  margin: 0 0 -5px;
  border: none;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease 0s;
}
.pagination li.active a.page-link,
.pagination li a.page-link:hover,
.pagination li.active a.page-link:hover {
  color: #fff;
  font-size: 25px;
  background-color: transparent;
  border: none;
}
.pagination li a.page-link:before,
.pagination li a.page-link:after {
  content: "";
  background-color: #ff5202;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -100%;
  z-index: -1;
  transition: all 0.3s;
}
.pagination li a.page-link:after {
  background-color: #ff5202;
  height: 5px;
  top: auto;
  bottom: 0;
  left: -100%;
}
.pagination li a.page-link:hover:before,
.pagination li.active a.page-link:before {
  top: 0;
}
.pagination li a.page-link:hover:after,
.pagination li.active a.page-link:after {
  left: 0;
}
@media only screen and (max-width: 480px) {
  .pagination {
    display: block;
  }
  .pagination li {
    margin: 5px 0;
    display: inline-block;
  }
}
/*------------ Contact-area --------------*/

.contact-box {
  text-align: center;
  margin-bottom: 30px;
}
.contact-box .icon-box {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: #ff5202;
  border-radius: 50%;
  font-size: 55px;
  padding: 15px;
  color: #fff;
  margin-bottom: 25px;
  box-shadow: 0 0 11px 1px rgba(0, 0, 0, 0.2);
}
.contact-box .con-diss h4 {
  margin-bottom: 10px;
}
#map {
  width: 100%;
  height: 325px;
}
input.form-control {
  border: none;
  height: 50px;
  margin-bottom: 30px;
  padding-left: 25px;
  background: #f7f8fa;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
textarea.form-control {
  background: #f7f8fa;
  border: none;
  margin-bottom: 30px;
  padding: 30px 15px;
  padding-top: 15px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
textarea.form-control:focus,
input:focus {
  box-shadow: none;
}
.btn-1 {
  background: transparent;
  border: 1px solid #eaeaea;
  padding: 10px 40px;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.4s ease 0s;
}
.btn-1:hover {
  background: #ff5202;
  color: #fff;
}

/*------------------ Extrta-css -------------*/

.zoom-effect {
  animation: scale 40s linear infinite !important;
  -webkit-animation: scale 40s linear infinite !important;
}

@keyframes scale {
  50% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.filterVideo {
  width: 100%;
}
.hero-fixed-banner,
.hero-video-banner {
  overflow: hidden;
  position: relative;
}
.hero-fixed-banner::before,
.hero-video-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 99.5%;
  background: rgba(0, 0, 0, 0.75);
}
.hero-fixed-banner .hero-slider__title,
.hero-video-banner .hero-slider__title {
  color: #fff;
}
.hero-fixed-banner .hero-slider__text,
.hero-video-banner .hero-slider__text {
  color: #fff;
}
.hero-fixed-banner .hero-slider__btn,
.hero-video-banner .hero-slider__btn {
  color: #fff;
  border-color: #fff;
}
.search_area_three .search_area-inner.type-form-four {
  margin-top: -65px;
}
.hero-fixed-banner .item img {
  height: 900px;
  object-fit: cover;
  object-position: center;
}
.hero-fixed-banner::before {
  height: 100%;
}
@media (max-width: 992px) {
  .filterVideo {
    width: initial;
    height: inherit;
  }
}
/*--------------- Timeline ---------------*/

.main-timeline {
  position: relative;
}
.main-timeline:before {
  content: "";
  background-color: #555;
  width: 4px;
  height: calc(100% - 70px);
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  bottom: 0;
}
.main-timeline:after {
  content: "";
  display: block;
  clear: both;
}
.main-timeline .timeline {
  float: left;
  width: 50%;
  padding: 0 30px;
  margin: 65px 10px 10px 0;
  position: relative;
}
.main-timeline .timeline:before {
  content: "";
  background-color: #ff5202;
  height: 33px;
  width: 33px;
  border-radius: 50%;
  box-shadow: 0 0 5px #fff inset, 0 0 0 5px #ffffff, 0 0 13px #000;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: -17px;
}
.main-timeline .timeline-content {
  color: #555;
  /* background: linear-gradient(45deg,#DFDFDF,#eeeeee); */
  /* text-align: center; */
  padding: 30px 30px;
  border-radius: 30px;
  display: block;
  position: relative;
  z-index: 1;
  background: #fff;
}
.main-timeline .timeline-content:hover {
  text-decoration: none;
}
.main-timeline .timeline-content:before {
  content: "";
  /* background: linear-gradient(45deg,#FEFEFE,#DFDFDF); */
  border-radius: 30px;
  position: absolute;
  left: 5px;
  top: 5px;
  bottom: 5px;
  right: 5px;
  z-index: -1;
}
.main-timeline .timeline-icon {
  color: #fff;
  background: linear-gradient(125deg, #2fd27e 39%, #ff5202 40%);
  font-size: 37px;
  text-align: left;
  line-height: 120px;
  height: 120px;
  width: 110px;
  padding-left: 15px;
  position: absolute;
  top: -56px;
  left: -30px;
  z-index: 1;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.main-timeline .timeline-icon:before,
.main-timeline .timeline-icon:after {
  content: "";
  background-color: #fff;
  position: absolute;
  left: 3px;
  bottom: 6px;
  top: 6px;
  right: 6px;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.main-timeline .timeline-icon:after {
  background: linear-gradient(125deg, #26bb6e 39%, #ff5202 40%);
  left: 6px;
  top: 11px;
  bottom: 11px;
  right: 11px;
}
.main-timeline .title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  /* padding: 0 15px; */
  margin: 0 0 10px;
}
.main-timeline .description {
  margin: 0;
}
.main-timeline .timeline:nth-child(even) {
  float: right;
  margin: 50px 0 10px 10px;
}
.main-timeline .timeline:nth-child(even):before {
  right: auto;
  left: -17px;
}
.main-timeline .timeline:nth-child(even) .timeline-icon {
  transform: rotateY(180deg);
  left: auto;
  right: -30px;
}

@media screen and (max-width: 767px) {
  .main-timeline:before {
    left: 15px;
    transform: translateX(0);
  }
  .main-timeline .timeline,
  .main-timeline .timeline:nth-child(even) {
    width: 100%;
    padding: 0 0 0 30px;
    margin: 65px 0 0 0;
  }
  .main-timeline .timeline:before,
  .main-timeline .timeline:nth-child(even):before {
    height: 20px;
    width: 20px;
    left: 5px;
    right: auto;
  }
  .main-timeline .timeline:nth-child(even) .timeline-icon,
  .main-timeline .timeline-icon {
    transform: translateX(-50%);
    left: 50%;
    top: -54px;
  }
  .main-timeline .timeline-content {
    padding: 80px 20px 20px;
  }
}
@media screen and (max-width: 567px) {
  .main-timeline .title {
    font-size: 18px;
  }
}
/*---------------- New-packages ---------------*/
.package-list-wrap {
  border-radius: 4px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  margin-bottom: 30px;
  overflow: hidden;
  display: block;
}
.package-list-wrap:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.6) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.9) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#99000000',GradientType=0 );
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 10;
}
.package-list-wrap:hover:before {
  opacity: 0;
}

.package-list-content {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  padding: 30px;
  padding-bottom: 0;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 10;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.package-list-wrap:hover .package-list-content {
  bottom: 0;
}
.package-list-wrap .package-list-duration {
  color: #fff;
  margin-bottom: 10px;
}
.package-list-wrap .package-list-title {
  color: #fff;
  margin-bottom: 5px;
}
.package-list-button {
  display: inline-block;
  background-color: #ff5202;
  color: #fff;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  bottom: -20px;
  opacity: 0;
  border-color: #ff5202;
  color: #fff !important;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.package-list-wrap:hover .package-list-button {
  bottom: 0;
  opacity: 1;
}
.package-list-wrap:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
}
.package-list-wrap:hover:after {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
}

.small-package-list .single_package .media > img {
  max-width: 235px;
  min-height: 235px;
}
.small-package-list .media-body {
  padding: 15px;
}
.small-package-list .single_package .media-body .direction {
  margin-bottom: 5px;
}
.small-package-list .single_package .media-body h3 {
  margin-bottom: 15px;
}
.small-package-list .single_package .media-body .duration {
  margin-bottom: 20px;
}
.small-package-list .single_package .media-body .btn-packlist {
  padding: 6px 20px;
}
/*-------------- package-detail ------------*/

.package-detail {
  border: 1px solid #ccc;
  padding-bottom: 30px;
  margin-bottom: 60px;
}
.package-detail .package-info {
  margin-bottom: 30px;
}
.package-detail .hotel-diss h4 {
  color: #ff5202;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.package-detail .hotel-diss h3 {
  margin-bottom: 15px;
}
.hotel-diss .rating {
  margin-bottom: 15px;
}
.hotel-diss .rating > span {
  color: #ff5202;
}
.hotel-diss .h-book {
  display: inline-block;
  color: #fff;
  padding: 8px 25px;
  background: #ff5202;
  border-radius: 5px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.hotel-diss .h-book:hover {
  background-color: #212121;
}
.hotel-diss .rating > span:last-child {
  color: #858585;
}
.hotel-diss .map-viw {
  font-size: 14px;
  display: block;
  margin-bottom: 20px;
}
.hotel-diss .map-viw > i {
  padding-right: 5px;
}
.package-detail .rate {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
}
.package-detail .package-list-button {
  padding: 12px 25px;
  font-size: 16px;
}
.off-box {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  background: #ff5202;
  padding: 8px 20px;
  border-radius: 3px;
  z-index: 9;
}
.other-packages {
  display: block;
}
.other-packages .title {
  margin-bottom: 40px;
}
/*--------------- Contact-Two -----------*/
.btn-1 {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.title-left {
  margin-bottom: 40px;
}
.contact-info-two ul li {
  margin-bottom: 20px;
}
.contact-info-two ul li h4 {
  margin-bottom: 10px;
  font-weight: 500;
}
.contact-info-two ul li p {
  margin: 0;
}
/*------------ Education-html -----------*/
.top-login-bar ul {
  padding: 0;
}
.top-login-bar .app-btn {
  background: #212121;
  padding: 15px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  color: #fff !important;
}
.top-login-bar .app-btn:hover {
  color: #fff;
}
.topbar-icon.top-login-bar ul li i {
  padding-right: 4px;
  font-size: 14px;
}
.topbar-icon.top-login-bar ul li {
  position: relative;
  margin-left: 20px;
  cursor: pointer;
  color: #212121;
}
.topbar-icon.top-login-bar ul li:first-child::before {
  content: "/";
  position: absolute;
  right: -14px;
}

.education-wapper
  header
  .header_top_area
  .contact_wrapper_top
  .header_top_contact
  li {
  border: none;
  position: relative;
  padding-right: 20px;
}
.education-wapper
  header
  .header_top_area
  .contact_wrapper_top
  .header_top_contact
  li::before {
  content: "/";
  position: absolute;
  right: 0;
  font-size: 18px;
  top: 11px;
}
.education-wapper
  header
  .header_top_area
  .contact_wrapper_top
  .header_top_contact
  li:last-child::before {
  content: "";
}
/*----------- feature-icon ------------*/
.high-school-xl {
  margin-top: -130px;
  margin-bottom: 30px;
}
.servicebox-one .service-box-icon img {
  width: 90px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.edu-fea-icon {
  border: 1px solid #eee;
  padding: 20px 15px;
  margin-bottom: 30px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.edu-fea-icon:hover {
  background-color: #ff5202;
}
.edu-fea-icon .icon,
.edu-fea-icon i {
  float: left;
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
  width: 30%;
  color: #ff5202;
}
.edu-fea-icon:hover i {
  color: #fff;
}
.edu-fea-icon .icon::before {
  font-size: 55px;
  color: #ff5202;
}
.edu-fea-icon:hover .icon::before {
  color: #fff;
}
.edu-fea-diss {
  display: inline-block;
  width: 70%;
}

.edu-fea-diss h4 {
  margin-bottom: 5px;
}
.edu-fea-icon:hover .edu-fea-diss a,
.edu-fea-icon:hover .edu-fea-diss h4 {
  color: #fff;
}
.single_package .value-diss {
}
.single_package .value-diss a {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.single_package .value-diss a:hover {
  color: #ff5202;
}
.single_package .value-diss a img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}
.single_package .value-diss .float-right {
  background-color: #ff5202;
  color: #fff;
  padding: 5px 10px;
  font-weight: 500;
  border-radius: 3px;
}
/*----------- Notification-area -------------*/
.notification-area {
}
.notification-area .side-view {
  border: 1px solid #eee;
  padding: 15px;
  overflow-y: scroll;
  height: 550px;
}
.side-view h4 {
  border-bottom: 1px solid #ff5202;
  padding-bottom: 5px;
  margin-bottom: 30px;
}
.event-post-list {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.event-post-list:last-child {
  border-bottom: none;
  margin: 0;
}
.event-post-list a {
}
.event-post-list a h5 {
  padding-bottom: 10px;
  font-weight: 600;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.event-post-list a h5:hover {
  color: #ff5202;
}
.event-post-list .date {
  color: #ff5202;
}
/*------------ Scroll-bar ----------*/
/* width */
.side-view::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.side-view::-webkit-scrollbar-track {
  background: #f9f9f9;
}

/* Handle */
.side-view::-webkit-scrollbar-thumb {
  background: #888;
}
.awards-list a {
  display: block;
  color: #585858;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.awards-list a:last-child {
  border: none;
}
.awards-list a:hover {
  color: #ff5202;
}

.notification-post-list {
  border-bottom: 1px solid #eee;
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.notification-post-list:last-child {
  border: none;
}
.notification-post-list img {
  width: 115px;
  float: left;
  margin-right: 20px;
  border-radius: 10px;
}

.notification-post-list .title-box a {
  font-weight: 600;
  display: block;
  padding-bottom: 5px;
  font-size: 15px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.notification-post-list .title-box a:hover {
  color: #ff5202;
}
.noti-post-area {
  overflow-y: scroll;
  height: 550px;
}
.package-list-content .footer-icon {
  padding: 0;
}
.events-area .single_package .media img {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  margin: 0;
  width: 230px;
  height: 330px;
}
.events-area .single_package .media-body {
  padding: 20px 15px;
}
.meta-line {
  margin-bottom: 18px;
}
.meta-line ul {
  margin: 0;
  padding: 0;
}
.meta-line li {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #ff5202;
}
.events-area .single_package .media-body .btn-packlist {
  padding: 9px 30px;
}
.Testimonial-one {
  background-image: url("../images/testi-bg.jpg");
  background-size: cover;
  position: relative;
}
.Testimonial-one::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.wht-title-box .sub-title,
.wht-title-box h2 {
  color: #fff;
}
.bg-img {
  background-image: url("../images/01.png");
  background-position: bottom;
  background-repeat: no-repeat;
}
.bg-theme {
  background-color: #ff5202;
}
.upper-date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #ff5202;
  opacity: 0.75;
  color: #fff;
  width: 70px;
  text-align: center;
  font-size: 30px;
  line-height: 1;
  padding: 7px;
  font-weight: 600;
}
.upper-date p {
  color: #fff;
  margin: 0;
}

.title-logo img {
  width: 145px;
  margin-bottom: 15px;
}

.package-one .value-diss a {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.package-one .value-diss a:hover {
  color: #ff5202;
}
.package-one .value-diss a img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}
.package-one .value-diss .float-right {
  background-color: #ff5202;
  color: #fff;
  padding: 5px 10px;
  font-weight: 500;
  border-radius: 3px;
}
.course-details .package-list-wrap:hover .package-list-content {
  bottom: 20px;
}
.course-title {
  margin-top: 10px;
  margin-bottom: 20px;
}
.course-basic-info ul {
  margin-bottom: 30px;
}
.course-basic-info ul li {
  padding: 8px 0;
  display: inline-block;
  width: 48%;
  max-width: 48%;
}
.course-basic-info .h-book {
  display: inline-block;
  color: #fff;
  padding: 8px 25px;
  background: #ff5202;
  border-radius: 5px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.course-basic-info .h-book:hover {
  background-color: #212121;
}
.course-profile {
}
.course-profile .img-wapper {
  width: 85px;
  max-width: 85px;
  display: inline-block;
}
.course-profile .img-wapper img {
}
.course-profile .cm-info {
  display: inline-block;
  padding-left: 10px;
}
.course-profile .cm-info h4 {
  padding-bottom: 5px;
  line-height: 1;
}
.course-profile .cm-info span {
  font-size: 12px;
  font-weight: 500;
}
.course-profile p {
  margin: 0;
  padding-top: 12px;
}
.course-features-info {
  margin-bottom: 20px;
  background: #212121;
  padding: 20px 15px;
  min-height: 415px;
  color: #fff;
}
.course-features-info h3.title {
  color: #ff5202;
  margin: 2px 0 15px;
  font-size: 20px;
}
.course-features-info ul {
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
}
.course-features-info ul li {
  display: block;
  overflow: hidden;
  padding: 10px 0;
}
.course-features-info ul li + li {
  border-top: 1px solid #414141;
}
.course-features-info ul li i {
  color: #ff5202;
}
.course-features-info ul li .label {
  padding-left: 10px;
}
.course-features-info ul li .value {
  float: right;
  padding-right: 5px;
}
.book-btn {
  text-align: center;
}
.book-btn a {
  background-color: #ff5202;
  padding: 15px 30px;
  margin-top: 15px;
  display: inline-block;
  border-radius: 5px;
  margin-bottom: 20px;
}
.blog-d .meta-tag {
  border: none;
  margin-top: 0;
  margin-bottom: 20px;
}
/*----------------- Responsive-Css --------------*/
@media (max-width: 1200px) {
  .offer-area-one .same-section-spacing {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .offer-area-one img {
    display: none;
  }
  .offer-area-one {
    padding: 80px 0 !important;
  }
  .notification-area .side-view {
    margin-bottom: 30px;
    height: 380px;
  }
  .events-area .single_package .media img {
    width: 100%;
    height: 350px;
  }
  .events-area .single_package .media-body .btn-packlist {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .edu-about .ws-section-spacing {
    padding: 0 15px;
  }
  .edu-fea-icon .icon {
    width: 20%;
  }
  .edu-fea-diss {
    width: 80%;
  }
}
@media (max-width: 580px) {
  .offer-area-one .same-section-spacing {
    padding: 0 15px;
  }
}
@media (max-width: 400px) {
  .edu-fea-icon .icon {
    width: 30%;
  }
  .edu-fea-diss {
    width: 70%;
  }
}

.post-thum {
  float: left;
  margin-right: 15px;
  width: 85px;
  height: 90px;
}
.footer-widget .post-content h5 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  margin-bottom: 5px;
}
.footer-widget .post-content span {
  color: #fff;
  font-size: 14px;
}
.custom-html-widget ul {
  padding: 0 !important;
  margin: 0 !important;
}


/* School Plugin css Fix */
img.wlsm-st-notice-new {
    height: 10px;
    width: 20px;
}


/* .wlsm-print-id-card-photo-box {
    margin-top: -155px !important;
    margin-left: 331px !important;
} */

/* .wlsm-print-id-card-container .wlsm-print-id-card-authorized-by {
    position: absolute;
    margin-bottom: -35px !important;
    left: 360px;
  } */
/* 
.wlsm-print-school-label {
    text-align: center;
} */
/* 
#wlsm-print-exam-admit-card .wlsm-student-photo-box {
    width: 125px;
    height: 160px;
    margin-right: -640px;
    margin-top: -169px;
} */
