@charset "UTF-8";
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/**==Typhograhy setion css start==**/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/**stylish font import**/
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Playwrite+CU:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Leckerli+One&family=Pacifico&display=swap');


:root {
  --color-primary: #e71d36;
  --color-secondary: #de3800;
  --color-blue: #105572;
  --color-heading: #060606;
  --color-text: #707070;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-light: #ffe6d6;
  --color-grey: #fafafa;
  --font-text:"Roboto", sans-serif;
  --font-heading:"Roboto", sans-serif;
}

body {
  font-family: var(--font-text);
  line-height: 1.4;
  color: var(--color-text);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background-color: var(--color-white);
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  color: var(--color-heading);
  letter-spacing: 1px;
}

h1 {
  font-size: 50px;
  font-weight: 700;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

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

h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

h6 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
}
.title_head{
  font-size: 18px
}
a,
a:focus,
a:hover {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  transition: all 0.5s ease;
  outline: none;
}
p a{
	color: var(--color-secondary);
}

/**slick css starts here**/

.slick-slider {
  width: 65%;
}
.slick-slide img {
  object-fit: cover;
  width: 100%;
}
.slick-btn {
  background: none;
  height: 100%;
}
.slick-btn:hover {
  background: none;
  box-shadow: none;
  text-shadow: none;
  transform: none;
} 
.slick-btn .slick-btn-background {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  margin-top: 50px;
}
.slick-btn .slick-btn-background:hover {
  background-color: #747474;
}
.slick-btn .slick-btn-background:hover i {
  color: white;
}
.slick-arrow i {
  font-size: 36px;
  color: #bbbbbb;
  transition: all 0.3s ease;
}




/**slick css ends here**/



@media (max-width: 767px) {
  h1,
h1 span {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 12px;
  }

  p {
    font-size: 14px;
  }
}
/** css for border-bottom **/
.border-bottom {
    text-align: center;
    position: relative;
	padding-bottom: 20px;
}
.border-bottom::after {
    content: "";
    position: absolute;
    bottom: 0;
    /**left: 50%; 
    transform: translateX(-50%); 
    width: 74%; **/
    height: 1px;
    background-color: #BABABA;
}
/**css for the heading bottom border at left**/
.heading-line {
  position: relative;
  margin-bottom: 30px;
}
.heading-line::before {
  content: "";
  position: absolute;
  bottom: -10px; 
  left: 0;
  width: 50px; 
  border-bottom: 3px solid var(--color-heading); 
}
/**heading line css ends here**/
img {
  max-width: 100%;
}

.m-80 {
  margin: 80px 0;
}

.m-60 {
  margin: 60px 0;
}

.m-40 {
  margin: 40px 0;
}

.m-30 {
  margin: 30px 0;
}
.mb-60{
  margin-bottom: 60px;
}
.mb-50{
  margin-bottom: 50px;
}
.mb-40{
  margin-bottom: 40px;
}
.mb-30{
  margin-bottom: 30px;
}
.p-80 {
  padding: 80px 0;
}

.innerpage,
.p-60 {
  padding: 60px 0;
}

.p-40 {
  padding: 40px 0;
}

.p-30 {
  padding: 30px 0;
}

.p-0 {
  padding: 0;
}
.title_section{
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .m-80 {
    margin: 50px 0;
  }

  .m-60 {
    margin: 30px 0;
  }

  .m-40 {
    margin: 20px 0;
  }

  .m-30 {
    margin: 15px 0;
  }
  .mb-60{
    margin-bottom: 30px;
  }
  .mb-50{
    margin-bottom: 25px;
  }
  .mb-40{
    margin-bottom: 20px;
  }
  .mb-30{
    margin-bottom: 15px;
  }
  .p-80 {
    padding: 50px 0;
  }

  .innerpage,
.p-60 {
    padding: 60px 0;
  }

  .p-40 {
    padding: 20px 0;
  }

  .p-30 {
    padding: 15px 0;
  }
  .title_section{
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .container-fluid {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (min-width: 1400px) {
  .container-fluid {
    max-width: 100%;
    padding: 0 100px;
  }

  .container {
    max-width: 1380px;
    width: 100%;
  }
}
/**==Typhograhy setion css end==**/
/**== Form CSS OPEN ==**/
form input.form-control,
form textarea.form-control {
  width: 100%;
  border-radius: 4px;
  background: transparent;
  height: 50px;
  padding: 0 20px;
  outline: none;
  border: 1px solid #ced7e4;
  margin: 15px 0;
}
form input.form-control:focus, form input.form-control:hover,
form textarea.form-control:focus,
form textarea.form-control:hover {
  border: 1px solid #ced7e4;
  outline: none;
  box-shadow: none;
}
form textarea.form-control {
  height: auto;
  padding: 20px;
  min-height: 120px;
}
form button {
  margin-top: 30px;
}
form button i {
  margin-left: 10px;
}
.form-select {
  width: 100%;
  border-radius: 4px;
  height: 50px;
  padding: 0 20px;
  outline: none;
  border: 1px solid #ced7e4;
}
.form-select:focus,
.form-select:hover {
  border: 1px solid #ced7e4;
  outline: none;
  box-shadow: none;
}
/**== Form CSS CLOSE ==**/
/**== Commoon Css Open-- ==**/
.bg-grey {
  background: var(--color-grey);
}
.bg-white {
  background: var(--color-white);
}
.bg-light-blue {
  background: var(--color-light);
}
.bg-img{
  background-image: url(../img/Map-w.png);
  background-size: cover;
  background-position: center;
}
.bg-img2{
  background-image: url(../img/Travel.png);
  background-size: cover;
  background-position: center;
}
.btn,
input[type=submit],
button {
  transition: all 0.5s ease-in-out;
  border-radius: 5px;
  padding: 12px 40px;
  width: auto;
  font-size: 16px;
  line-height: 1.5;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  background: var(--color-primary);
  outline: none;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  border: none;
}

.btn:hover,
input[type=submit]:hover,
button:hover {
  background: var(--color-secondary);
  color: #fff;
  transform: scale(1.1); 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); 
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


.btn.btn-mt,
input[type=submit].btn-mt,
button.btn-mt {
  margin-top: 30px;
}
.btn-white{
  background: var(--color-white);
  color: var(--color-secondary);
}
.btn-white:hover{
  background: var(--color-secondary);
  color: var(--color-white);
}
.btn_transparent,
.btn_transparent_white{
  display: inline-block;
  color: var(--color-heading);
  font-size:20px;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
}
.btn_transparent:hover,
.btn_transparent_white:hover{
  color: var(--color-secondary);
}
.btn_transparent_white,
.btn_transparent_white:hover{
  color: var(--color-white);
}
.btn_transparent i,
.btn_transparent_white i{
  margin-left: 10px;
}
.btn_transparent:hover i,
.btn_transparent_white:hover i{
  margin-left: 15px;
}
ul.icon li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
}
ul.icon li:before {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  left: 0;
  top: 2px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  font-size: 12px;
  border-radius: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  line-height: 20px;
}

ul.icon_list li {
  position: relative;
  /* padding-left: 24px; */
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  color: var(--color-text);
}
/* ul.icon_list li:before {
  position: absolute;
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  left: 0;
  top: 2px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  font-size: 14px;
  border-radius: 100%;
  color: var(--color-text);
  text-align: center;
  line-height: 20px;
} */
ul.icon_list li:hover{
  /* padding-left: 30px; */
  padding-left: 5px;
  color: var(--color-secondary);
}
ul.icon_list li:hover:before{
  color: var(--color-secondary);
}

ul.social_icons {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
ul.social_icons li {
  display: inline-block;
}  
ul.social_icons li.facebook a {
  background: #385da9;
}
ul.social_icons li.twitter a {
  background: #3cf;
}
ul.social_icons li.pinterest a {
  background: #bd081c;
}
ul.social_icons li.linkedin a {
  background: #0073b1;
}
ul.social_icons li.instagram a {
  background: #D53F7F;
}
ul.social_icons li.youtube a {
  background: #FF0000;
}
ul.social_icons li a {
  display: inline-block;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  transition: all 0.3s;
  border-radius: 50%;
}
ul.social_icons li a i {
  color: #fff;
  font-size: 13px;
}
ul.social_icons li a:hover {
  /* background: var(--color-primary); */
  transform: translateY(-5px);
}


.box-shadow {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.slick-dots {
  text-align: center;
  position: relative;
  width: 100%;
  }
 .slick-dots li {
      display: inline-block;
      margin: 0px;
      width:40px;
  }
 .slick-dots li button {
      text-indent: -99999px;
      border: none;
      padding: 0;
      margin-left: 10px;
      z-index: 1;
      cursor: pointer;
      background: no-repeat;
      transition: .3s;
      background-color:#b7b7b7;
      height: 6px;
      width: 30px;
      border-radius: 5px;
  }
  
.slick-dots .slick-active button {
  border-radius: 5px;
       background-color:var(--color-primary)
  }
  
.main-wrapper {
  position: relative;
  overflow-x: hidden;
}  
	
/**Back to Top Css Open**/
.rn-progress-parent {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px #ccc;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.rn-progress-parent.rn-backto-top-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.rn-progress-parent:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 600;
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--color-blue);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.rn-progress-parent:hover:after {
  color: var(--color-blue);
}
.rn-progress-parent svg path {
  fill: none;
}
.rn-progress-parent svg.rn-back-circle path {
  stroke: var(--color-blue);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/**Back to Top Css Close**/

/**cloud header css starts**/
 
.clouds{
  transform: rotate(-180deg);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  overflow: hidden;
  z-index: 999;
}

.clouds img{
  position: absolute;
  bottom: 0;
  max-width: 100%;
  animation: animate calc(8s * var(--i)) linear infinite;
}

@keyframes animate{
  0%{
      transform: translateX(-100%);
  }
  100%{
      transform: translateX(100%);
  }
}

/**cloud header css starts**/

/**== Header Css Open ==**/
.stellarnav .menu-toggle span.bars span {
	width: 20px;
	height: 3px;
}
.header .stellarnav{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stellarnav .menu-toggle span.bars span {
  background: var(--color-primary);
}
.header .logo a img {
  max-height: 70px;
  object-fit: contain;
}
.header.header-sticky {
  transition: all 0.5s ease-in;
  max-width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff40;
  width: 100%;
  animation: headerSticky 0.95s ease forwards;
  z-index: 9999;
  padding: 10px 0;
}
.header.header-sticky.sticky {
  background-color: #ffffff;
  animation: headerSticky 0.95s ease forwards;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.header.header-sticky.sticky .logo a {
  height: 80px;
  line-height: 80px;
}

.stellarnav li a{
  color:var(--color-heading);
  font-weight: 500;
}
.stellarnav>ul>li>a {
  padding: 20px;
}
@media(min-width:992px){
  .stellarnav>ul>li>a {
    position: relative;
  }
.stellarnav li a:hover,
.stellarnav li a.active{
  color: var(--color-primary);
  position: relative;
}
.stellarnav ul>li>a:before{
  content: "";
  position: absolute;
  top: 0;
  left:15%;
  margin: auto;
  background-color: var(--color-primary);
  height: 3px;
  width: 70%;
  transform-origin: right center;
  -webkit-transform-origin: right center;
  -webkit-transform: scale(0, 1);
  -khtml-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: transform .55s cubic-bezier(.37, .31, .2, .85);
  -khtml-transition: transform 0.55s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -moz-transition: transform .55s cubic-bezier(.37, .31, .2, .85);
  -ms-transition: transform .55s cubic-bezier(.37, .31, .2, .85);
  -o-transition: transform .55s cubic-bezier(.37, .31, .2, .85);
  transition: transform .55s cubic-bezier(.37, .31, .2, .85);
}
.stellarnav li a:hover:before,
.stellarnav li a.active:before{
  transform-origin: left center;
  -khtml-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
}
.stellarnav li.has-sub>a:after{
  border-top: 6px solid;
}
.stellarnav ul ul{
  background: #fff;
  border-bottom: 2px solid var(--color-primary);
  box-shadow: 0 3px 25px 0 rgba(43, 52, 59, .1), 0 0 0 rgba(43, 52, 59, .1) inset;
}
.stellarnav ul ul li{
  border-bottom: 1px solid #eee;
}
.stellarnav ul ul li:last-child{
  border-bottom: none;
}
.stellarnav.mobile.left>ul,
.stellarnav.mobile ul ul{
  background: var(--color-secondary);
}
.stellarnav.mobile a{
  color:var(--color-white);
}
.stellarnav.mobile ul li a{
  border-bottom: 1px solid #ffffffb6;
}
.stellarnav .icon-close:before,
.stellarnav .icon-close:after,
.stellarnav a.dd-toggle .icon-plus:after, 
.stellarnav a.dd-toggle .icon-plus:before{
  border-color: var(--color-white);
}
@keyframes continuous-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.booknow a {
  display: inline-block;
  color: var(--color-white);
  margin-top: 0;
}
.booknow a i{
  color:inherit;
}

@media(max-width:767px){
  .booknow a {
    padding: 5px 10px
  }
  .booknow a span{
    display: none;;
  }
}

/**== Header Css Close ==**/



/**== Footer Css Open ==**/

footer .contact_details p a {
  display: flex;
  gap: 10px;
  color:inherit;
}
footer .contact_details p i {
  margin-top: 3px;
  width: 16px;
}
footer .secondary_footer {
  background-color: var(--color-secondary);
  padding: 20px 0 0;
}
footer .secondary_footer p {
  color: #ffffffda;
  font-weight: 500;;
  opacity: 0.8;
}
footer .secondary_footer p.link {
  text-align: right;
}
footer .secondary_footer p.link a:hover {
  color: var(--color-white);
}
@media (max-width: 767px) {
  footer .main_footer .social_icons{
    margin-bottom: 20px;
  }
  footer .secondary_footer p {
    text-align: center;
  }
  footer .secondary_footer p.link {
    text-align: center;
  }
}

/**== Footer Css Close ==**/
/**== Breadcrumb Css Open ==**/
.page_banner_top {
  height: 480px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 50px;
  z-index:1;
}
.page_banner_top h1{
  text-align: center;
  /* font-size: 45px;
  font-weight: 600;
  /* margin-bottom: 15px; */
  color: var(--color-primary);
  color:var(--color-white);
  font-size:55px;
  /* margin: 0; */
  text-shadow: 4px 4px 10px #000000b3
}
@media(max-width:767px){
  .page_banner_top {
    height: 270px;
    padding: 120px 20px 60px;
  }
  .page_banner_top h1{
    font-size: 32px;
  }
}
.breadcrumb {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  color: var(--color-white);
}
.breadcrumb li {
  margin-right: 10px;
}
.page_banner_top .breadcrumb li.active {
  font-weight: bold;
}
.breadcrumb li a {
  font-size:16px;
}
.breadcrumb li a:hover {
  color: #b6b6b6;
  cursor: pointer;
}
.breadcrumb li a i{
	margin-right:5px;
}
.breadcrumb>li+li:before {
  padding: 0 5px;
  content: "/";
  font-weight: 400;
}
/**== Breadcrumb Css Close ==**/

/**== Banner Css Close ==**/
.banner {
  position: relative;
  width: 100%;
  min-height: 90vh;
  overflow: hidden;

}
.banner video{
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: 0;
  width: 100%;
}
.banner .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width:1400%;
  height: 100%;;
  background: rgb(51 51 51 / 32%);
  z-index: 1;
}
.banner .text-container{
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  text-align: center;
  z-index: 3;
}
.banner_content{
  max-width: 600px;
  margin-top: 120px;
  text-align: center;
}
.enquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.enquiry-btn i {
  margin-bottom: 3px;
  font-size: 18px;
}
.banner h1 {
  color:var(--color-white);
  font-size:55px;
  margin: 0;
  text-shadow: 4px 4px 10px #000000b3
}
@media(max-width:767px){
  .banner {
    height: 100%;
        min-height: 500px;
  }
  .banner video{
   object-fit:cover;   
  }
  .banner h1 {
    font-size:45px;
  }
  
}

/**== banner Css Close ==**/
/**counter css starts here**/

.counter-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  grid-template-rows: repeat(1, 1fr);
  gap: 40px;
  margin-top: -70px;
  position: relative;
  z-index: 5;
}
.counter-item {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.counter-item > div {
  display: flex;
  justify-content: center;
}
.counter-item img {
  max-width: 60px;
  width:100%;
}
.counter-value, .counter-title {
  display: flex;
  justify-content: center;
  text-align: center;
}
.counter-value {
  font-size: 36px;
  padding-top: 8px;
  font-weight: 600;
  color: var(--color-primary);
}
.counter-title {
  margin: 0;
}

@media (max-width: 767px) {
  .counter-container {
    grid-template-columns: 2fr; 
    padding: 0px 10px 0px 10px;
    grid-template-columns: repeat(2, 1fr); 
    grid-template-rows: repeat(1, 1fr);
    gap: 10px;
    margin-top:40px;
  }
  .counter-value {
    font-size: 28px;
    
  }
  
}

/**counter css ends here**/
/**Package css Start here**/
.packages-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 80px;
}

.package {
  position: relative;
  display: flex;
  justify-content: right;
  width: 100%;
  max-width: 20%;
  height: 500px;
  color: #fff;
  background-size: cover;
  background-position: center;
  transform: skew(-5deg) scale(1.1);
  transition: transform 0.3s ease-in-out;
  transform-origin: center;
}

.package::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: background 0.3s ease-in-out;
}

.package:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

.package-content {
  position: absolute;
  z-index: 2;
  transform: skew(5deg);
  bottom: 60px;
  right: 70px;
  text-align: right;
  width: 70%;
}

.package h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color:var(--color-white)
}

.package p {
  font-size: 16px;
  margin-bottom: 20px;
}

.package .btn {
  transform: skew(-5deg);
}

.package:hover {
  transform: skew(-5deg) scale(1.2);
  z-index: 2;
}

.packages-container:hover .package:not(:hover) {
  transform: skew(-5deg) scale(1.1);
}

@media (max-width: 768px) {
  .package {
      max-width: 50%;
      height: 350px;
  }
  .packages-container {
    overflow: hidden;
  }
  .packages-container {
  margin-top: 50px;
}

}

@media (max-width: 480px) {
  .package {
      max-width: 100%;
  }
}


/**Package css ends here**/


/**Experience css starts here**/


.experience-row {
  padding: 60px 0px;
  display: flex;
  flex-direction: row;
}
.experience-row h2 {
  font-size: 42px;
  padding: 20px 0px 30px 0px;
}
.experience-col-1 {
  padding-top: 30px;
  width: 50%;
  height: 600px;
  position: -webkit-sticky;
  position: sticky;
  top: 130px;
}
.about-experience {
  display: flex;
}
.about-experience img{
  width: 30%;
  height: 100%;
}
.about-experience-content {
  padding-top: 50px;
  padding-right: 100px;
}
.experience-col-2 {
  padding-top: 30px;
  width: 50%;
}
.experience-item {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.experience-item {
  position: relative;
}

.experience-item h4 {
  font-size: 24px;
  padding-bottom: 5px;
}
.experience-content {
  display: inline-flex;
  flex-direction: row;
}
.experience-content h4 {
  font-size: 32px;
  padding-left: 20px;
  font-weight: 500;
  width: 30%;
}
.experience-content p {
  width: 70%;
  padding: 15px 30px 0px 20px;
}
.experience-img img {
  width: 100%;
  object-fit: cover;
  height: 500px;
}


@media (max-width:767px) {
  .experience-row {
    padding: 30px 10px;
    flex-direction: column;
    row-gap: 30px;
  }
  .experience-col-1 {
    position: relative;
    width: 100%;
    height: 100%;
	  top:0;
  }
  .experience-col-2 {
    width: 100%;
  }
  .experience-item {
    margin-bottom: 20px;
  }
  .about-experience-content {
    padding-right: 0px;
  }
  .experience-content h4 {
    font-size: 24px;
    padding-left: 10px;
  }
  .experience-content p {
    width: 100%;
    padding: 15px 0px 0px 30px;
  }
  .experience-img img {
  height: 300px;
  }
 
}

/**Experience css ends here**/

/**Memory gallery section starts here**/


.memory-gallery-section {
	background-size:cover;
	background-position:bottom center;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.memory-gallery-section p {
  font-size: 20px;
}


/**Memory gallery section ends here**/


/** Testimonial section starts here**/


.testimonial-bg {
  position: relative;
  background: url('../img/testimonial-bg-3.jpg') no-repeat left center;
  background-size: cover;
  background-attachment: fixed;
  color: white;
  overflow: hidden; 
}
.testimonial-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 1; 
}
.testimonial-slider {
  position: relative; 
  padding-bottom: 50px;
  z-index: 2; 
  display: flex;
  flex-direction: row;
  margin: auto;
}
.testimonial-item {
  text-align: center;
  width: 80%;
  margin: auto;
}
.testimonial-title {
  padding: 50px 0px 20px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative; 
  z-index: 2;
}
.testimonial-title p {
  font-size: 20px;
  color: white;
}
.testimonial-title h2 {
  color: white;
}
.testimonial-title img {
  width: 30px;
}
.testimonial-guest-img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
}
.testimonial-content {
  padding: 20px 0;
}
.testimonial-content p {
  width: 70%;
  margin: auto;
}
.testimonial-content h3 {
  padding: 20px 0;
  font-family: "Dancing Script", cursive;
  font-size: 32px;
  color: white;
}
@media (max-width:767px) {
  .slick-slider {
    width: 100%;
  }
  .testimonial-content p {
    width: 100%;
    margin: auto;
  }
}

/** Testimonial section ends here**/


/** FAQs section css starts here**/


.FAQs-container {
  padding: 50px 0px;
}
.FAQs-video-section h2 {
  font-size: 24px;
  font-weight: 500;
}
.faq-youtube-video video {
	width: 100%;
	object-fit: cover;
	height: 450px;
}
	
@media (max-width:767px) {
	.faq-youtube-video video {
	width: 100%;
	object-fit: cover;
	height: 300px;
}
}
.FAQs-content-section h2,
.package-content-section h2 {
  font-size: 24px;
  font-weight: 500;
  border-bottom: 2px solid black;
  padding-bottom: 20px;
}

.faq_container, 
.package_faq_container{
  border-bottom: 1px solid #d8d8d8;
}

.faq_question, 
.package_faq_question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.answercont, 
.package-content-section .answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer, 
.package-content-section .answer {
  padding: 0 10px 20px;
  line-height: 1.5rem;
}

.fqa_headline_container h2 span, 
.package-content-section h2 span {
  font-weight: 700;
}

.faq_question-text h3, 
.package-content-section .package_faq_question-text h3 {
  font-size: 16px;
  margin: 0 !important;
  padding: 10px 0px;
}

/* Icon styling */
.icon:hover {
  cursor: pointer;
}

.icon-shape{
  position: relative;
  width: 20px;
  height: 20px;
}

.icon .icon-shape::before{
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 3px;
  background: var(--color-heading);
  border-radius: 3px;
  transition: all 0.5s ease;
}

.icon .icon-shape::after{
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 20px;
  background: var(--color-heading);
  border-radius: 3px;
  transition: all 0.5s ease;
}

.icon .icon-shape.active::before{
  transform: translate(-50%, -50%) rotate(180deg);
  transition: all 0.5s ease;
}

.icon .icon-shape.active::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.5s ease;
}
/*second col css starts here*/
.accordion-header {
  padding: 0 !important;
}
.accordion-header button {
  margin: 0;
  padding: 0;
}
.accordion-header button:hover {
  background: none !important;
  color: black;
  transform: none;
  box-shadow: none;
  text-shadow: none;
}
.accordion-header button:focus {
  border-color: white;
  background-color: none;
}
/*second col css ends here*/


/** FAQs section css ends here**/


/** Blogs section css starts here**/


.blog-title-section {
  text-align: center;
  padding: 50px 0px 20px 0px;
}
@media (max-width: 767px) {
  .blog-title-section {
  padding: 0px 0px 20px 0px;
  }
}
.blog-title-section h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}
.blog-title-section p {
  font-size: 20px;
  font-weight: 400;
}
.blog-container {
  padding-bottom: 50px;
}
.blog{padding:40px 0;}

.blog-list-content { 
  padding: 20px 25px 10px;
  background-color: #f5f8fa;
  box-shadow: 0 30px 30px 0 rgba(0,0,0,.1);
  margin: 0px; 
  position: relative; 
  z-index: 1;  
}

.blog-footer { 
  padding: 15px 0;
  display: flex;
  align-items: center;
}

.blog-list {
  margin-bottom: 20px;
}

.blog-list figure{
	overflow:hidden;
	margin:0;
	display: block;
}
.blog-list img {
  object-fit: cover;
  height: 250px;
  width: 100%;
  transition: transform 0.5s ease;
}

.blog-list:hover img {
transform: scale(1.1);
}

.blog-list-content .title a { 
  font-size: 18px; 
  font-weight: bold;  
  color: #666;
  transition: all 0.3s ease;
}

.blog-list-content .title:hover a {
  color: var(--color-primary);
}

.blog-footer i {
  color: var(--color-blue);
  margin-right: 10px;
  font-size: 16px;
  transition: color 0.3s ease;
}

.blog-footer span {
  color: var(--color-text); 
  font-weight: 400;
}

.blog-list:hover .blog-footer i {
  color: var(--color-primary); 
}
.page-content {
	padding: 0px 10px 50px 10px
}
.page-content .single-blog-content .single-blog-title {
	text-align: center;
	padding-bottom: 30px;
	border-bottom: 1px solid #BABABA;
}
.single-blog-content {
	max-width: 1000px;
	margin: 0 auto;
}
.single-blog-content figure {
	margin-top: 60px;
}
.single-blog-content .content {
	padding-top: 5px;
}
.single-blog-content .content h2 {
	font-size: 28px;
}
@media (max-width:767px) {
	.single-blog-content h2 {
		margin: 0px;
	}
	.single-blog-content figure {
	margin-top: 30px;
	}
}
/** Blogs section css starts here**/


/** Footer section css starts here**/

.primary-footer {
  background-color: var(--color-light);
  padding: 70px 0px 50px 0px;
}
.about-box p {
  font-size: 16px;
}
.about-box h3 {
  color: #3b3b3b;
}
.footer-contact-box {
  display: flex;
  flex-direction: row;
  gap: 50px;
}
.contact_details p a span {
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 16px;
}
.contact_details p a:hover span {
  color: var(--color-secondary);
}
.copyright-container {
  background-color: var(--color-secondary);
  padding:10px 0;
}
.copyright-container p {
  font-weight: 500;
  padding: 0px;
  margin: 0;
  color: var(--color-white);
}
p.copyright_digital{
    text-align:right;
}

.footer-box {
  border: 1px solid var(--color-text);
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
}
.footer-box h3 {
  color: #3b3b3b;
}
.footer-box ul {
  padding-left: 2px;
  list-style: none;
}
.btn-call-now {
  background-color: var(--color-primary);
}
@media (max-width:767px) {
  .primary-footer {
    padding: 50px 0px 50px 0px;
  }
  .footer-box {
    padding: 0;
    margin: 20px 0px;
    border: none;
    border-radius: 0;
  }
  .copyright-container p {
      text-align:center;
  }
}
/** Footer section css starts here**/


/** Balloon section css starts here**/
#balloon-container {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 60px;
  z-index: 9999;
}

.balloon {
  width: 100%;
  position: relative;
  transition: transform 0.1s ease-out;
}


/** Balloon section css ends here**/



/** Contact us section css starts here**/


.contact-info-section {
  margin-top: -200px;
  z-index: 1;
}
.contact-info-box {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 8px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
    position: relative;
}
.contact-info-box h3 {
  margin: 0;
  padding: 10px 0px;
}
.contact-info-box a {
  transition: all 0.3s ease;
  text-align: center;
  width: 70%;
  margin: auto;
}
.contact-info-box a:hover {
  text-decoration: underline;
}
.contact-info-box .contact-icon {
  height: 50px;
  width: 50px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-info-box .contact-icon i {
  color: var(--color-white);
  font-size: 20px;
}
.form-section {
  padding: 50px 0px;
}
.contact-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-bottom: 30px;
}
.contact-title h2 {
  font-size: 32px;
}
.contact-title p {
  width: 75%;
  margin: auto;
}
.contact-title ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 10px;
}
/* .message-box {
  border: 1px solid var(--color-text);
  padding: 20px;
  border-radius: 8px;
} */
.contact-form-section {
	max-width: 1000px;
	margin: auto;
}
.contact-content {
  max-width: 1000px;
  margin: 0 auto;
}
.contact-content h3 {
  padding: 0px 0px 40px 0px;
  margin: 0 !important;
  text-align: center;
}
.contact-content .contact-balloons {
	display: flex;
	justify-content: center;
}
.contact-content img {
	width: 20%;
	margin: 0 auto;
}
.message-box {
  width: 80%;
  margin: auto;
  padding: 20px;
  border: 1px solid #BABABA;
  border-radius: 8px;
}
.message-box h4 {
  text-align: center;
  padding-bottom: 10px;
}
.message-box form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
/* h2 {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
  color: #333;
} */
.message-box label {
  margin-bottom: 5px;
  color: var(--color-heading);
}
.message-box .form-group {
  display: flex;
  flex-direction: column;
  width: 48%;
}
.form-group select {
	padding: 10px;
}
.message-box input, select, textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.message-box input:focus, .message-box select:focus, .message-box textarea:focus {
  border-color: #007BFF;
  outline: none;
}
.message-box .btn-message {
  width: 100%;
  display: flex;
  justify-content: center;
}
.message-box button {
  padding: 10px 15px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width:48%;
}
.message-box button:hover {
  background-color: #0056b3;
  transform: scale(1.0);

}
.map {
  height: 500px;
}
.map-iframe {
  height: 500px;
  width: 100%;
  zoom: 1;
}
@media (max-width:767px) {
  .contact-info-section {
    margin-top: -50px;
  }
  .contact-content {
    padding-top: 50px;
  }
  .contact-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding-top: 0;
  }
  .contact-content img {
    width: 100px;
    margin: auto;
  }  
  .message-box {
  width: 100%;
  padding: 10px;
  }
  .message-box .form-group {
    width: 100%;
  }
  .message-box button {
    width: 100%;
  }
  .message-box label {
	  text-align: left;
  }
  .message-box form {
  gap: 10px;
  }
}


/** Contact us section css ends here**/

/** About us css starts here**/
.about-hero {
  padding: 30px 0px 100px 0px;
}
.about-hero h2 {
  text-align: left;
}
.about-hero h3 {
  color: #555555;
  font-weight: 500;
}
.about-img {
  position: relative;
}
.about-img .about-img-full {
  width: 80%;
}
.about-img .about-img-small {
  width: 300px;
  position: absolute;
  right: 0;
  bottom: -100px;
}
@media (max-width:767px){
  .about-hero {
    padding: 0px 0px 50px 0px;
  }
  .about-img .about-img-full {
    width: 100%;
  }
  .about-img .about-img-small {
    width: 150px;
    position: absolute;
    right: 0;
    top: -100px;
  }
}


/** About us css ends here**/


/** Packages css starts here**/
.p1-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-bottom: 1px solid #c5c5c5;
}
.p1-title span {
  padding: 5px 10px;
  background-color: #e4e4e4;
  border-radius: 8px;
  margin-bottom: 10px;
  color: rgb(80, 80, 80);
}
.p1-content {
  padding: 30px 0px;
}
.p1-content .package-img {
	object-fit: cover;
	width: 100%;
	max-height: 400px;
}
.accordion-header:hover {
  background-color: #e4e4e4;
}
.accordion-button:hover,
.accordion-button:focus {
  box-shadow: none;
  background-color: none !important;
}
.accordion-button {
  padding: 10px !important;
}
.accordion-button:not(.collapsed)::after {
  background-image: url('../img/down-arrow.png');
}
.accordion-button:not(.collapsed) {
  background-color: var(--color-primary) !important;
  box-shadow: none;
  color: white;
}
.accordion-button:not(.collapsed):hover {
  background-color: var(--color-primary) !important;
  box-shadow: none;
  color: white;
}
.accordion-body h6 {
  font-weight: 600;
  font-size: 16px;
}
.package-image-gallery {
  display: flex;
  flex-direction: column;
}
.package-gallery-item {
  display: flex;
  flex-direction: row;
  gap: 20px;
  border-radius: 8px;
  overflow: hidden;
}
.package-gallery-sub-item {
  border-radius: 8px;
  overflow: hidden;
}


/** Packages css starts here**/

/**pricing page css Opens**/
.pricing-section h2 {
    text-align: center;
    position: relative;
	padding-bottom: 30px;
}
.pricing-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%; 
    transform: translateX(-50%); 
    width: 65%; 
    height: 1px;
    background-color: #BABABA;
}
.pricing-section .price-table {
	max-width: 800px;
	margin: 0 auto;
	padding-top: 30px;
	padding-bottom: 50px;
}
.pricing-section .price-table table {
	border-radius: 5px;
	overflow: hidden;
}
.pricing-section .price-table .table thead tr {
	background-color: var(--color-secondary);
	color: white;
}
.pricing-section .price-table .table tbody tr:nth-child(odd) {
    background-color: var(--color-light);
}
/**pricing page css Closes**/


.hard-center {
    max-width: 1000px;
    margin: 0 auto;
  }

  /**festive offer Open **/

.festive-offer {
    position: relative;
  }
  .festive-offer a:hover {
    color: black !important;
  }
.festive-offer img {
  width: 50px;
  position: absolute;
  top: 0px;
  left: 0;
  opacity: 0.5;
  z-index: -1;
}
@media (max-width: 767px) {
  .festive-offer img {
    display: block;
    width: 30px;
    left: 10px;
   top:5px;
}
}
  /**festive offer Closes **/

    
  /** same but chnage this part completely at very top of file **/
  
  img {
    max-width: 100%;
  }
  
  .m-80 {
    margin: 80px 0;
  }
  
  .m-60 {
    margin: 60px 0;
  }
  
  .m-40 {
    margin: 40px 0;
  }
  
  .m-30 {
    margin: 30px 0;
  }
  .mb-60{
    margin-bottom: 60px;
  }
  .mb-10{
    margin-bottom: 10px;
  }
  .mb-50{
    margin-bottom: 50px;
  }
  .mb-40{
    margin-bottom: 40px;
  }
  .mb-30{
    margin-bottom: 30px;
  }
  .p-80 {
    padding: 80px 0;
  }
  
  .innerpage,
  .p-60 {
    padding: 60px 0;
  }
  .pt-40 {
    padding-top: 40px;
  }
  .pt-30 {
    padding-top: 30px;
  }
  .px-50 {
    padding: 50px 0px;
  }
  .pt-20 {
    padding-top: 20px;
  }
  .pt-60 {
    padding-top: 60px;
  }
  .pb-50 {
    padding-bottom: 50px;
  }
  .p-40 {
    padding: 40px 0;
  }
  
  .p-30 {
    padding: 30px 0;
  }
  
  .p-0 {
    padding: 0;
  }
  .title_section{
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 60px;
  }
  @media (max-width: 767px) {
    .m-80 {
      margin: 50px 0;
    }
  
    .m-60 {
      margin: 30px 0;
    }
  
    .m-40 {
      margin: 20px 0;
    }
  
    .m-30 {
      margin: 15px 0;
    }
    .mb-60{
      margin-bottom: 30px;
    }
    .mb-50{
      margin-bottom: 25px;
    }
    .mb-40{
      margin-bottom: 20px;
    }
    .mb-30{
      margin-bottom: 15px;
    }
    .p-80 {
      padding: 50px 0;
    }
  
    .innerpage,
  .p-60 {
      padding: 30px 0;
    }
  
    .p-40 {
      padding: 20px 0;
    }
  
    .p-30 {
      padding: 15px 0;
    }
    .title_section{
      margin-bottom: 20px;
    }
  }


  /** same but chnage this part completely **/


  /** pop up css Opens **/


.popup {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: background-color 0.5s ease;
  }
  
  .popup.show {
    display: flex;
    animation: fadeIn 0.5s forwards;
  }
  
  .popup-content {
    position: relative;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    transform: scale(0.9); 
    animation: popIn 0.5s forwards;
  }
  
  .close {
    position: absolute;
    top: 0px;
    right: 25px;
    font-size: 50px;
    cursor: pointer;
    color: white;
  }
  
  .popup-image {
    max-width: 100%;
    height: 550px;
  }
  
  @keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
  }
  
  @keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
  }
  
  @keyframes popIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
  }
  
  @keyframes popOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0;
    }
  }
  
  @media(max-width:767px) {
        .popup-image {
            height: 410px;
          }
  }
  
  /** pop up css Closes **/
  
  
  /**color gradient for festival menu **/
  
  .color-gradient {
    background-image: -webkit-linear-gradient(92deg, #cc2b2b, #4040ce); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: hue 10s infinite linear;
    font-size: 20px !important;
    font-weight: 700;
    font-family: "Leckerli One", cursive !important;
    position: relative; 
    display: inline-block;
    text-shadow: 0px 0px 10px rgba(158, 158, 158, 0.4);
  }
  
  @-webkit-keyframes hue {
    from {
        -webkit-filter: hue-rotate(0deg);
    }
    to {
        -webkit-filter: hue-rotate(-360deg);
    }
  }
  
  @media (max-width:767px) {
  .color-gradient {
    background-image: -webkit-linear-gradient(92deg, #ffffff, #ffffff); 
  }  
}
  /**color gradient for festival menu **/
  
  
  /** festive offer css Opens **/
  .festive-overview {
    padding-bottom: 50px;
  }
  .overview-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  .overview-content .country-list {
    font-weight: 600;
    color: #303030;
  }
  .event-highlight h2 {
    text-align: center;
    margin: 0;
  }
  .about-balloon-festive h2 {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #BABABA;
    margin-bottom: 40px;
  }
  .festive-accordion {
    padding: 50px 0px;
  }
  .festive-partners-section {
    padding: 60px 0px;
  }
  .festive-partners {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  
  .partners-item {
    flex: 1 0 21%; 
    margin: 10px; 
    display: flex; 
    justify-content: center; 
    align-items: center;
  }
  
  .partners-item img {
    max-width: 100%; 
    height: auto; 
    object-fit: contain; 
    height: 150px; 
  }
  .event-gallery {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .event-gallery-item img {
    object-fit: cover;
    height: 100%;
  }
  @media (max-width:767px) {
    .event-highlight h2 {
      padding-bottom: 10px;
      margin-top: 0 !important;
    }
    .event-gallery {
      margin-bottom: 20px;
    }
    .festive-partners-section {
      padding: 30px 10px;
    }
    .hard-center {
      padding-left: 10px;
      padding-right: 10px;
    }
  }
  .custom-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .custom-table th, .custom-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    color: #525252;
  }
  
  .custom-table tbody tr:nth-child(even) {
    background-color: #e6e6e6; 
  }
  
  
  /** festive offer css Closes **/
  
  
  /**404 error page css starts**/
  
  .my-custom-section {
	  padding: 40px; 
	  background: #F2F3F5; 
  }
  .not-found-page {
	  display:flex;
	  flex-direction:column;
	  align-items:center;
	  margin-top:100px;
  }
  .error-img-container {
	  width: 250px;
	  margin-bottom:50px;
  }
   .not-found-page img {
	  object-fit: cover;
  }
  .error-container {
	  display:flex; 
	  flex-direction:column;
	  text-align:center;
	  align-items:center;
	  width: 50%;
	  margin: auto;
	  padding: 30px;
	  border: 1px solid #BABABA;
	  border-radius: 8px;
  }
  .error-container p {
	  font-size: 16px;
  }
  .buttons-container {
	  display: flex;
	  flex-direction: row;
	  gap: 20px;
  }
  .error-btn {
	  margin-top: 5px;
  }
  @media (max-width:767px) {
	  .buttons-container {
	  flex-direction: column;
	  gap: 0px;
	}
	.error-container {
		width: 100%;
	}
	.error-img-container {
	  width: 200px;
	}
	.error-btn {
		margin-top: 20px;
	}
  }
  
  
  /**404 error page css ends**/
.video-thumbnail-wrapper {
	position: relative;
	overflow: hidden;
}

.video-thumbnail-wrapper img {
	transition: transform 0.3s ease-in-out;
}

.video-thumbnail-wrapper:hover img {
	transform: scale(1.1);
}

.video-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 50px;
	color: white;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.video-thumbnail-wrapper:hover .video-play-icon {
	opacity: 1;
}

.slick-e.slick-slider {
    width: 100%;
}
.slick-e .gallery-item {
    padding: 0;
}

.slick-e .gallery-item img {
    display: block;
    width: 100%;
    height: 320px;
	object-fit:cover;
}


.slick-e .slick-track {
    display: flex;
    justify-content: flex-start;
}

.slick-e .slick-slide {
    display: flex;
    justify-content: center;
    margin: 0;
}
