@font-face {
  font-family: Montserrat;
  src: url(../fonts/Montserrat-VariableFont_wght.ttf);
}

@font-face {
  font-family: itc Eras;
  src: url(../fonts/itc-eras-medium.otf);
}

@font-face {
  font-family: MyriadPro;
  src: url(../fonts/MyriadPro-Light.otf);
}

@font-face {
  font-family: MyriadPro-regular;
  src: url(../fonts/MYRIADPRO-REGULAR.OTF);
}

@font-face {
  font-family: PlayfairDisplay;
  src: url(../fonts/PlayfairDisplay-VariableFont_wght.ttf);
}

@font-face {
  font-family: RobotoCondensed;
  src: url(../fonts/RobotoCondensed-VariableFont_wght.ttf);
}

:root {
  --primary-color-one: #040480;
  --primary-color-two: #ca3534;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.color-one .card {
  background-color: #000000;
}

.color-two .card {
  background-color: #eba214;
}

.color-three .card {
  background-color: #152338;
}

.color-four .card {
  background-color: #416d50;
}

/* ======================================= */


a {
  text-decoration: none;
}

header .topbar .container-xxl {
  padding: 0rem 2.1rem;
  text-transform: uppercase;
  margin-top: 1.7rem;
  font-family: MyriadPro;
}

header .topbar .row div {
  padding: 0;
  margin: 0;
}

header .topbar .row div span {
  padding: 0;
  margin: 0;
  color: #000000;
  font-weight: bolder;
}

header .topbar .row div span:has(a) {
  color: var(--primary-color-two) !important;
}

header .topbar .row div span a {
  color: #000000;
}

header .topbar .row #navlinks a {
  color: #000000;
  margin: 0 0.85rem 0 0;
  font-weight: bolder;
  text-align: start;
}

header .topbar .row div:nth-child(3) {
  text-align: end;
}

header .topbar .sp-line {
  height: 0.7rem;
  background-color: #ffffff;
  border-bottom: 1px solid #ccc;
  display: block;
  width: 100%;
}

header .topbar .row .col-sm:nth-child(3) div {
  width: fit-content;
  margin-left: auto;
}

header .topbar .row .col-sm:nth-child(2) {
  text-align: center;
}

header .social-media-icons {
  display: flex;
  column-gap: 5px;
  margin-top: -5px !important;
}

header .social-media-icons img {
  width: 30px;
}

header .nav-branding img {
  -webkit-mask-image: linear-gradient(
    45deg,
    #000 25%,
    rgba(0, 0, 0, 0.2) 30%,
    #000 75%
  );
  mask-image: linear-gradient(
    45deg,
    #000 25%,
    rgba(0, 0, 0, 0.2) 50%,
    #000 75%
  );
  -webkit-mask-size: 300%;
  mask-size: 200%;
  animation: shiney infinite 3.5s ease-in-out;
  transition: mask-position 2s ease, -webkit-mask-position 2s ease;
}

@keyframes shiney {
  0% {
    -webkit-mask-position: -50%;
    mask-position: -50%;
  }

  100% {
    -webkit-mask-position: 150%;
    mask-position: 150%;
  }
}

@media (min-width: 990px) {
  header .nav-branding img {
    padding-left: 1rem;
    width: 300px;
  }

  .navigation {
    display: flex;
    padding: 1rem 0;
    justify-content: space-between;
  }

  .menubtn {
    display: none;
  }

  .closebtn {
    display: none;
  }

  .navigation .navbar {
    padding: 0 9px;
    width: fit-content;
    margin: auto;
    display: block;
  }
  .navigation .navbar-holder {
    display: flex;
  }

  #mySidenav {
    box-shadow: none !important;
    width: fit-content !important;
  }
  .sidenav #mainLinks{display: flex; gap: 0.7rem;}

  #mySidenav a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 21px;
    border-bottom: 3px solid #ffffff;
    margin: 0.6rem 0.8rem;
    transition: all 0.3s;
    transition-timing-function: cubic-bezier(0.77, 0.2, 0.05, 1);

    &:hover {
      border-bottom: 3px solid var(--primary-color-two);
    }
  }

  
  #linkShifter #navlinks a {
    transition: all ease 0.15s;
  }

  #linkShifter #navlinks a:hover {
    color: #c62a2d;
  }
  
.menuMobile{display: none;}
}

@media (max-width: 989px) {
  .topbar {
    display: none;
  }

  .navigation {
    display: flex;
    padding: 1rem;
    justify-content: space-between;
  }

  #mySidenav {
    transition-timing-function: cubic-bezier(0.77, 0.2, 0.05, 1);
  }

  .sidenav {
    height: 100%;
    box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 130vw;
    margin-left: -350px;
    position: fixed;
    z-index: 100000;
    left: 0;
    background-color: #ffffff;
    overflow-x: hidden;
    transition: 1s;
    padding-top: 60px;
  }


 
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    color: #353537;
    right: 19px;
    font-size: 35px;
    margin-left: 50px;
    transition: 0.4s;
    transition-timing-function: cubic-bezier(0.77, 0.2, 0.05, 1);
  }

  .sidenav .closebtn:hover {
    color: red;
  }

  .menu-trigger {
    position: relative;
    border: 0;
    text-align: left;
    color: #353537;
    background-color: #cccccc5c;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    padding: .5rem 1rem .5rem 2rem;
    width: 100%;
    display: block;
    margin-bottom: .3rem;
    &:focus{background-color: #1b3256; color: #ffff;
    &::after{content: "‒"; right: 22px;     top: 28%;}}
  }

  .menu-trigger::after {
    content: "+";
    display: inline-block;
    text-align: end;
    margin: 5px 0 5px 0;
    font-size: 32px;
    line-height: 0px;
    position: absolute;
    right: 20px;
    top: 30%;
    font-weight: 500 !important;
    /* transform: translatey(-50%); */
  }


  .dropdown .dropArea {
    display: none;
    margin: .3rem 0;
  }
  .dropdown .dropArea a{
    width: 100%;
    color: #1f1f1f;
    display: block;
    padding: 0.2rem 0 .2rem 2.6rem;
    margin: 0rem 1.7rem 0 0;
    text-transform: capitalize;
    font-weight: 450;
    color: #464455;
    font-family: RobotoCondensed;
  }

  .sidenav .nav-link {
    padding: 8px 8px 8px 4px;
    margin-left: 1rem;
    transition: all ease 0.2s;
    font-weight: 500;
    color: #464455;
  }

  .sidenav .social-media-ico {
    margin-top: 15rem;
    position: absolute;
    bottom: 20px;
    left: 20px;
  }

  .sidenav .social-media-ico a {
    width: 35px;
    /* height: 40px; */
    display: flex;
  }

  .sidenav .social-media-ico img {
    display: block;
    margin: auto;
    /* border-radius: 5px; */
    width: 100%;
  }


  .menuMobile{padding: 0; margin: 0;}
  .menuMobile img{width: 200px; margin: 0 auto; display: block;}
}

@media (max-height: 450px) {
  .sidenav a {
    font-size: 18px;
  }
  
}

@media (min-width: 850px) {
  .maximize {
    padding: 0 2.5rem;
  }
}

@media (max-width: 849px) and (min-width: 660px) {
  .maximize {
    padding: 0 1.5rem;
  }
}

@media (max-width: 659px) {
  .maximize {
    padding: 0 0.8rem;
  }
}

@media (max-width: 989px) and (min-width: 470px) {
  header .nav-branding {
    width: 100%;
    text-align: center;
  }

  header .nav-branding img {
    padding-left: 1rem;
    width: 270px;
  }
}

@media (max-width: 470px) {
  header .nav-branding {
    width: 100%;
    text-align: center;
    display: flex;
  }

  header .nav-branding a {
    display: block;
    margin: auto;
  }

  header .nav-branding img {
    width: 170px;
    margin-right: -2rem;
  }
}

@media (max-width: 989px) and (min-width: 355px) {
  .sidenav {
    width: 340px;
    border-radius: 0 22px 0 0px;
    top: 5px;
  }

  .sidenav a {
    font-size: 18px;
  }
}

@media (max-width: 355px) {
  .sidenav {
    width: 100vw;
    top: 0px;
  }

  .sidenav a {
    font-size: 16px;
  }
}

/* BODY CONTENT STYLING  */

/* GLOBAL CARDS size and some same similar style */

.cards-parent h1 {
  text-align: center;
  color: #000000;
  margin: 2rem 0;
  text-transform: uppercase;
  font-family: RobotoCondensed;
}

.card-holder {
  justify-content: center;
  gap: 2rem;
}
.cards-parent .card .cc-desp{
  height: 90px;
}

.cards-parent .card-holder .card:has(.img-hov) .card__body {
  height: 100px;
}
.cards-parent .card-holder .card__body {
  padding: .8rem 1.2rem;
}

.cards-parent .card-holder .card-lower {
  padding: 1.2rem;
  background-color: #f0f0f0;
}

.cards-parent .card-holder .img-hov {
  overflow: hidden;
  display: block;
  border-bottom: 1px solid #ccc;
}

.cards-parent .card-holder .img-hov img {
  width: 357px;
  height: 148px;
  object-fit: cover;
  transition: all ease 0.9s;
  transform: scale(1.05);
}

.cards-parent .card-holder .card:hover .img-hov img {
  transform: scale(1);
}

.cards-parent .card-holder .card-lower p {
  font-family: RobotoCondensed;
  color: #3f3f3f;
  font-size: 17px;
  font-weight: 450;
}

.card-holder .card {
  width: 355px;
  padding: 0;
  border-radius: 0;
  border: 0;
}

.card-holder .g-card-heading {
  color: #ffffff;
  font-family: RobotoCondensed;
  font-weight: 400;
  text-transform: capitalize;
}

.card-holder .g-card-heading span {
  display: block;
  font-family: PlayfairDisplay;
  font-style: italic;
  font-weight: 400;
  text-transform: none !important;
}

.card-holder .card .uppercase {
  text-transform: uppercase;
}

.card-holder .btn-holder {
  display: flex;
  justify-content: space-between;
  height: 28px;
}

.card-holder .btn-holder .price-tag {
  color: #ffff;
  clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 0% 100%, 12% 50%, 0% 0%);
  background-color: var(--primary-color-one);
  text-align: center;
  margin: 0;
  padding: 5px 2rem;
  margin-top: -1px;
}

.card-holder .btn-holder .price-tag h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  /* font-family: MyriadPro-regular; */
  font-family: RobotoCondensed;
}

.card-holder .card a {
  background-color: #f11f20;
  padding: 5px 1.6rem;
  color: #ffffff;
  font-size: 15px;
  font-family: RobotoCondensed;
}

.card-holder .card a:hover {
  animation: shine 260ms;
}

.cards-parent .holder-header {
  margin: 2.8rem 0;
  text-align: center;
}

.cards-parent .holder-header .red {
  color: #c62a2d;
  text-transform: none;
  font-weight: 400;
}

.cards-parent .holder-header .gray {
  color: #39383e;
  text-transform: none;
  font-weight: 450;
}

.cards-parent .holder-header h2 {
  margin-bottom: 1.2rem;
  font-family: RobotoCondensed;
}

.cards-parent .holder-header p {
  font-family: RobotoCondensed;
  color: #000000;
  font-weight: 450;
}
/* ================================================ */
/* comemented for temporary reason by Mustufa */

/* .cards-parent:has(.poster){
  .img-hov{
    img{height: 350px;}
  }
} */

/* .card__body:has(.poster){
  padding: 0 !important;
  h3{ padding: 1.2rem;}
  .poster{
    img{
      width: 100%;
    }
  }
} */
/* ================================================ */
@media (max-width: 879px) {
  .cards-parent .holder-header p br {
    display: none;
  }

  .cards-parent .holder-header p {
    font-size: 17px;
    font-weight: 400;
  }
}

@media (min-width: 879px) {
  .cards-parent .holder-header p {
    font-size: 20px;
  }
}

@keyframes shine {
  0% {
    background: linear-gradient(30deg, hsl(260, 85%, 95%) 0%, #f11f20 25%);
  }

  25% {
    background: linear-gradient(
      30deg,
      #f11f20 0%,
      hsl(260, 85%, 95%) 25%,
      #f11f20 50%
    );
  }

  50% {
    background: linear-gradient(
      30deg,
      #f11f20 0%,
      hsl(260, 85%, 95%) 50%,
      #f11f20 75%
    );
  }

  75% {
    background: linear-gradient(
      30deg,
      #f11f20 0%,
      hsl(260, 85%, 95%) 75%,
      #f11f20 100%
    );
  }

  100% {
    background: linear-gradient(30deg, #f11f20 0%, hsl(260, 85%, 95%) 100%);
  }
}

/* Gallery slider Multiple Images slider */
/* ================================================ */
@media (min-width:950px) {
  .domestis-slider .multi-slider {
    width: 75%;
  }
  
}

.domestis-slider{background-color: #E0E0E0;}


.domestis-slider .slick-track{ margin: auto;}



.multi-slider h4 {
  font-family: RobotoCondensed;
  background-color: #39383e;
  margin: 0 2px;
  font-weight: 400;
  color: #ffffff;
  padding: 0.8rem 0;
  font-size: 18px;
  text-align: center;
}

.slick-slide img {
  width: 98%;
}

.slick-slide {
  text-align: center;
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  /* cursor: pointer; */
  display: block;
  margin: 0 auto;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* ===================================== */
/* FOOTER ABOVE */
/* ===================================== */

.review_footer_above .row {
  justify-content: center;
}

.review_footer_above .card {
  border: 0;
  text-align: center;
}

.review_footer_above .card a {
  transition: all ease 0.2s;
  display: flex;
  border: 1px solid #c82a2b;
  outline: 5px solid #ffffff9d;
}

.review_footer_above .card a img {
  filter: brightness(0) saturate(100%) invert(17%) sepia(100%) saturate(2705%)
    hue-rotate(345deg) brightness(91%) contrast(87%);
}

.review_footer_above .card a span {
  display: block;
  margin: auto;
}

.review_footer_above .card h5 {
  color: #c82a2b;
  margin: 0.6rem 0;
  font-family: RobotoCondensed;
  font-weight: 450;
}

.review_footer_above .card:hover a {
  outline: 5px solid #ff35359d;
  border-color: #ff353561;
  background-color: #c82a2b;
  border-radius: 20%;

  & span {
    filter: brightness(0) saturate(100%) invert(100%) sepia(7%) saturate(111%)
      hue-rotate(214deg) brightness(122%) contrast(100%);
  }
}



@media (min-width: 385px) {
  .review_footer_above .row {
    gap: 1rem;
  }

  .review_footer_above .card {
    width: 170px;
  }

  .review_footer_above .card a {
    height: 140px;
    border-radius: 20% / 10%;
  }

  .review_footer_above .card a img {
    width: 60px;
  }
}

@media (max-width: 384px) {
  .review_footer_above .row {
    row-gap: 1rem;
  }

  .review_footer_above .card {
    width: 140px;
  }

  .review_footer_above .card a {
    height: 110px;
    margin-bottom: 0.4rem;
    border-radius: 20%;
  }

  .review_footer_above .card a img {
    width: 40px;
  }
}

/* ===================================== */
/* FOOTER */
/* ===================================== */

footer {
  background-color: #353537;
  color: #ffffff;
}

footer .shape {
  display: flex;
}

footer .shape span {
  width: fit-content;
  margin: -1.4rem auto 3rem auto;
  display: block;
  background-color: #c62b29;
  clip-path: polygon(100% 50%, 96% 100%, 4% 100%, 0 50%, 4% 0, 96% 0%);
}

footer .shape h5 {
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

footer .container-xxl .row {
  margin-top: 2rem;
  justify-content: space-between;
  border-top: 1px solid #cccccc38;
  font-family: Arial, Helvetica, sans-serif;
}

footer .container-xxl .row div {
  padding: 0;
  margin: 0.4rem 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
}

footer .container-xxl .row div:has(img) {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 0;
}

footer .container-xxl .row div:has(img) img {
  width: 30px;
}

footer .container-xxl .row div:has(a) {
  text-align: end;

  & a {
    color: #fdffbb;
  }
}

@media (max-width: 770px) {
  footer .container-xxl .row div:has(img) {
    margin: 0.5rem 0;
  }
}

@media (min-width: 1400px) {
  footer .container-xxl .row {
    padding: 1rem 0;
  }
}

@media (max-width: 1400px) {
  footer .container-xxl .row {
    padding: 1rem;
  }
}

@media (min-width: 650px) {
  footer .shape span {
    padding: 0.7rem 4rem;
  }

  footer .container-xxl .row div {
    font-size: 15px;
    text-shadow: 0px 1px #ffffff70;
  }
}

@media (max-width: 650px) {
  footer .shape span {
    padding: 0.7rem 2rem;
  }

  footer .shape h5 {
    font-size: 0.9rem;
  }

  footer .container-xxl .row div {
    font-size: 13px;
  }
}



.footer-slider img{
  filter: brightness(0) saturate(100%) invert(49%) sepia(5%) saturate(10%) hue-rotate(26deg) brightness(94%) contrast(88%);
}

/* ==============================
package parent page style
============================== */
.heading-global-pkg {
  margin-bottom: 1.8rem;
}

.heading-global-pkg h2:nth-child(1) {
  color: var(--primary-color-two);
  font-family: RobotoCondensed;
  font-weight: 400;
  margin: 0;
  font-size: 32px;
}

.heading-global-pkg h2:nth-child(2) {
  color: var(--primary-color-one);
  font-family: PlayfairDisplay;
  font-weight: 500;
  font-style: italic;
  font-size: 28px;
}

.pckg-detail .center-heading {
  color: var(--primary-color-two);
  font-weight: 400;
  font-family: RobotoCondensed;
  text-align: center;
  margin-bottom: 1.2rem;
}

.pckg-detail h3 {
  color: #000000;
  font-weight: 400;
  font-family: RobotoCondensed;
}

.pckg-detail p {
  color: #676767;
  font-weight: 400;
  font-family: RobotoCondensed;
}

.pckg-detail li {
  color: #676767;
  font-weight: 400;
  font-family: RobotoCondensed;
}

.pckg-parent .order-list-itinerary p {
  color: #555;
  font-family: RobotoCondensed;
}

.pckg-parent .order-list-itinerary {
  position: relative;
  margin: 3rem 0 1.5rem 0;
}

.pckg-parent .order-list-itinerary .separator {
  width: 2px;
  height: 100%;
  display: block;
  position: absolute;
  left: 146px;
  background-color: #ccc;
}

.pckg-parent .order-list-itinerary .itinerary-holder .steps {
  display: flex;
  column-gap: 1rem;
}

.pckg-parent .order-list-itinerary .itinerary-holder .steps .date {
  width: 6.5rem;
}

.pckg-parent .order-list-itinerary .itinerary-holder .steps .date h3 {
  font-size: 18px;
}

.pckg-parent .order-list-itinerary .itinerary-holder .steps .date h3 span {
  display: block;
  font-size: 17px;
  color: gray;
  font-weight: 400;
}

.pckg-parent .order-list-itinerary .itinerary-holder .steps .number {
  position: relative;
  text-align: center;
  /* vertical-align: middle; */
  padding: 0.56rem 0;
  font-size: 21px;
  font-weight: 600;
  color: var(--primary-color-two);
  border: 2px solid #7e7e7e;
  border-radius: 50%;
  background-color: #ffffff;
  height: 3.4rem;
  width: 3.4rem;
}

.pckg-parent .order-list-itinerary .itinerary-holder .msg {
  background-color: #eef3f7;
  width: 100%;
  position: relative;
  padding: 1rem;
  border-radius: 7px;
}

.pckg-parent .order-list-itinerary .itinerary-holder .msg .indicator {
  position: absolute;
  height: 1.2rem;
  display: block;
  background-color: #eef3f7;
}

.pckg-parent .order-list-itinerary .itinerary-holder .msg p {
  margin: 0;
}

.pckg-parent .text-para {
  margin: 2rem 0;
}

.pckg-parent .bullet-item {
  margin: 2.3rem 0;
  color: #555;
}

.pckg-parent .bullet-item li {
  list-style: none;
}

.pckg-parent .bullet-item li::before {
  content: "\2022";
  /* font-size: 25px; */
  margin-bottom: -5px;
  line-height: 1px;
  color: var(--primary-color-two);
  margin-right: 3px;
}

.pckg-parent h3 {
  font-size: 25px;
}

/* *********RESPONSIVE*********** */

@media (min-width: 670px) {
  .pckg-parent .order-list-itinerary .itinerary-holder {
    display: flex;
    column-gap: 1rem;
    margin-bottom: 1rem;
  }

  .pckg-parent .order-list-itinerary .itinerary-holder .steps .date h3 {
    text-align: end;
  }

  .pckg-parent .order-list-itinerary .itinerary-holder .msg .indicator {
    left: -13px;
    top: 15px;
    clip-path: polygon(100% 0, 0 55%, 100% 100%);
    width: 0.8rem;
  }
}

@media (max-width: 669px) {
  .pckg-detail .itinerary-holder .steps .date h3 {
    margin: 0;
    margin-top: 0.4rem;
    margin-bottom: -0.3rem;
    width: 4rem;
  }

  .pckg-parent .bullet-item li {
    margin-left: 8px;
  }

  .pckg-detail .itinerary-holder .steps .date {
    margin: 0;
    padding-left: 70px;
  }

  .pckg-detail .itinerary-holder .steps .number {
    position: absolute !important;
    left: 0;
  }

  .pckg-parent .order-list-itinerary .separator {
    display: none;
  }

  .pckg-parent .order-list-itinerary .itinerary-holder .steps {
    /* justify-content: space-between; */
    margin: 2rem 0;
  }

  .pckg-parent .order-list-itinerary .itinerary-holder .msg .indicator {
    left: 11px;
    top: -15px;
    width: 1.5rem;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
}

.pckg-detail .li-grid li {
  padding: 0.2rem 0;
}

@media (min-width: 600px) {
  .pckg-detail .li-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 1rem !important;
  }
}

@media (max-width: 600px) and (min-width: 460px) {
  .pckg-detail .li-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 1rem !important;
  }
}

@media (max-width: 460px) {
  .pckg-parent .bullet-item li::before {
    margin-left: -5px;
  }

  .pckg-detail .li-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 1rem !important;
  }
}

/*============================= 
SIDE CARD HERE GLOBAL USE
============================== */
.side-card .sticky-frame {
  position: sticky;
  position: -webkit-sticky;
  top: -140px;
}

.side-card .card h4 {
  font-family: RobotoCondensed;
  /* padding: 0 1.5rem; */
  padding-bottom: 5px;
  margin-left: 1.5rem;
  width: fit-content;
  border-bottom: 2px dashed #ccc;
}

.side-card .card {
  background-color: #f8f8f8;
  border: 1px solid #dadada;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}

.side-card iframe {
  border-radius: 12px 0 12px 0;
}

.side-card .card .fare-info {
  margin: 0.5rem 1.5rem;
}

.side-card .card .fare-info p {
  margin: 7px 0;
  font-family: RobotoCondensed;
  color: #5a5a5a;
}

.side-card .card .fare-info p span {
  color: var(--primary-color-one);
}

.side-card .card .fare-info p:has(.deadline) span {
  color: #da251d;
}

.side-card .pricing {
  border-top: 1px solid #ccc;
  padding: 1rem 1.5rem;
}

.side-card .pricing h3 {
  margin: 0;
  font-family: RobotoCondensed;
}

.side-card .pricing h3 span {
  font-size: 14px;
  font-weight: 400;
  padding-left: 0.2rem;
}

.side-card .register-btn {
  transition: all ease 0.2s;
  background-color: var(--primary-color-two);
  padding: 1rem;
  text-align: center;
  margin: 1rem 1rem 0 1rem;
  border-radius: 6px;
  color: #ffffff;
}

.side-card .inquire-btn {
  position: relative;
  transition: all ease 0.2s;
  background-color: #32a067;
  padding: 1rem;
  /* text-align: center; */
  margin: 1rem 1rem 0 1rem;
  border-radius: 6px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  column-gap: 0.4rem;
  outline: 2px solid #ffffff00;

  &:hover {
    background-color: #ffffff;
    color: #32a067 !important;
    outline: 1px solid #2cb742;
  }
}

.side-card .inquire-btn span {
  font-size: 25px;
  margin-top: -0.1rem;
}

/* broucher btn */
.side-card .download-btn{
  text-transform: uppercase;
  transition: all ease 0.4s;
  background-color: var(--primary-color-one);
  padding: .7rem 2rem;
  width: fit-content;
  text-align: center;
  margin: 1rem auto;
  margin-bottom: 0;
  border-radius: 55px;
  color: #ffffff;
  & h6{margin: 0; font-size: 13px !important; }
  &:hover{
    background-color: #fff;
    color: var(--primary-color-one);
    outline: 1px solid var(--primary-color-one);
  }
}
/* broucher btn */


/* Added By Abdul Samad */
.price1_label{
  font-family: 'RobotoCondensed';
  color: #5a5a5a
}

.poster_detail{
  width: 100% !important;
}

.red1 {
  color: #000;
  text-transform: none;
  font-weight: 400;
  font-family: 'RobotoCondensed';
}

.custom_card1{
  border: none !important;
  background-color: transparent !important;
}

.detail_thumbnail{
  max-width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
@media (min-width:990px) {
  .detail_thumbnail{
    width: 388px;}
}
@media (max-width:990px) {
  .detail_thumbnail{
    width: 105%;}
}

.custom_placeholder a::after{
  content: "";
  background-image: url(../images/play-yt-icon.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 5rem;
  height: 5rem;
  z-index: 5;
  top: 55%;
  left: 53%;
  transform: translate(-50px, -50px);
}

/* Basic styling */
.tab {
  overflow: hidden;
}

.tab button {
  background-color: #f2f2f2;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 20px;
  transition: 0.3s;
}

.tab button:hover {
  background-color: #ddd;
}

.tab button.active {
  background-color: #ccc;
}

.tabcontent {
  display: none;
  padding: 20px;
  border-top: 1px solid #ccc;
}

.category-news{
  margin-left: 16px;
  font-family: RobotoCondensed;
  color: var(--primary-color-two);
  font-weight: 400;
  font-size: 16px;

}

.category-news span{

  color: #ffffff;
  background-color: var(--primary-color-two);
  padding: 4px 11px;
  font-weight: 500;
  font-size: 13px;

}

/* Added By Abdul Samad */

.change_font{
  font-family: 'RobotoCondensed';
}

.side-card .register-btn h6 {
  margin: 0;
}

.side-card .inquire-btn h6 {
  margin: 0;
}

.side-card .register-btn:hover {
  background-color: #0054a6;
}

.side-card .view-video {
  text-align: center;
  margin: 2rem auto 0 auto;
  transition: all ease 0.3s;
  display: block;
  padding: 0.3rem 1.5rem;
  border: 1px solid #dd4b39;
  color: #dd4b39;
  width: fit-content;
  border-radius: 30px;
}

.side-card .view-video:hover {
  background-color: #dd4b39;
  color: #ffffff;
}

.side-card .view-video button {
  display: none;
}

/* *********RESPONSIVE*********** */

@media (min-width: 991px) {
  .side-card {
    padding-left: 1.8rem;
  }
}

@media (max-width: 491px) {
  .side-card {
    padding: 0;
  }
}

/* ==========================================
NEWS UPDATE 
========================================== */

.news-update h1 {
  text-align: center;
  font-family: RobotoCondensed;
  font-weight: 400;
  color: var(--primary-color-two);
}

.news-update .row {
  margin: 3.5rem 0;
}

.news-update .box_news {
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  margin: 1.5rem 0;
  position: relative;
}

.news-update .box_news:hover .image img {
  transform: scale(1.05);
  opacity: 0.8;
}

.news-update .box_news:hover p {
  color: gray;
}

.news-update .col-lg-6 {
  padding: 0;
  margin: 0;
}

.news-update .col-lg-6 .card__body .image img {
  transition: all ease-in-out 0.3s;
}

.news-update .col-lg-6 .card__body .description p {
  margin: 0;
  color: #3f3f3f;
  font-family: MyriadPro-regular;
}

.news-update .col-lg-6 .card__body .description .heading h4 {
  color: #1f1f1f;
  font-size: 23px;
  font-family: RobotoCondensed;
  font-weight: 400;
}

.news-update .col-lg-6 .card__body .description .heading h4:hover {
  color: var(--primary-color-one);
  text-decoration: underline;
}

.news-update .col-lg-6 .card__body .description .heading span {
  color: gray;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 1.2rem;
}

.back-btn {
  background-color: var(--primary-color-two);
  color: #ffffff;
  border: 2px solid var(--primary-color-two);
  display: block;
  width: fit-content;
  margin: 1rem 0 0 0;
  border-radius: 30px;
  padding: 0.3rem 1.5rem;
  transition: all ease-in-out 0.2s;
  font-weight: 500;
}

.back-btn:hover {
  background-color: #ffffff;
  color: var(--primary-color-two);
}

/* *****************RESPONSIVE**************** */

@media (min-width: 670px) {
  .news-update .col-lg-6 .card__body {
    display: flex;
    padding: 0;
  }

  .news-update .col-lg-6 .card__body .description .heading h4 {
    padding-right: 1.5rem;
  }

  .news-update .col-lg-6 .card__body .image {
    overflow: hidden;
    width: 200px;
    height: 150px;
    border-radius: 9px;
    background-color: #000;
    position: absolute;
    left: 0;
  }

  .news-update .col-lg-6 .card__body .image img {
    width: 248px;
    height: 165px;
    object-fit: contain;
  }

  .news-update .col-lg-6 .card__body .description {
    padding-left: 200px;
    margin: 0 0 0 1rem;
  }

  .news-update .col-lg-6 .card__body .description .heading {
    border-left: 2px solid #ccc;
    padding: 0;
    padding-left: 1rem;
  }

  .news-update .col-lg-6 .card__body .description p {
    padding: 0 0.5rem 0 1rem;
  }
}

@media (max-width: 670px) {
  .news-update .col-lg-6 .card__body {
    display: block;
  }

  /* ADDED BY ABDUL */
  .category-news{
    margin-left: 0px !important;
  }
  /* ADDED BY ABDUL */
  
  .news-update .col-lg-6 .card__body .image {
    background-color: #000;
    /* height: 150px; */

    border-radius: 22px 0 22px 0;
    overflow: hidden;
    margin-bottom: 1rem;
  }

  .news-update .col-lg-6 .card__body .image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 670px) and (min-width: 430px) {
  .news-update .col-lg-6 .card__body .description p {
    font-size: 17px;
  }
}

/* =============================================
NEWS DETAILS PAGE 
============================================= */

.news-details .box_news .news-body .image img {
  width: 100%;
}

.news-details .box_news .news-body .description {
  display: flex;
  font-family: RobotoCondensed;
  font-weight: 400;
  color: #ffffff;
}

.news-details .box_news .news-body .description div {
  margin: auto 0;
  display: block;
}

.news-details .box_news .news-body .description div span {
  background-color: var(--primary-color-two);
  display: block;
  width: fit-content;
  margin-bottom: 0.3rem;
  padding: 0 5px;
}

.news-details .box_news .news-body .description div h1 {
  display: inline;
  background-color: var(--primary-color-one);
  color: #ffffff;
  font-weight: 400;
}

.news-details h4 {
  color: #1f1f1f;
  font-size: 25px;
  font-family: RobotoCondensed;
  font-weight: 400;
}

.news-details .date {
  color: gray;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  display: block;
}

.news-details p {
  color: #383838;
  font-size: 17px;
  font-weight: 400;
  font-family: RobotoCondensed;
}

.news-details img {
  max-width: 100%;
}

/* *****************RESPONSIVE**************** */
@media (max-width: 745px) {
  .news-details .box_news br {
    display: none;
  }
}

@media (min-width: 745px) {
  .news-details .box_news .news-body .image {
    width: 40%;
  }

  .news-details .box_news .news-body .description div h1 {
    line-height: 53px;
  }
}

@media (max-width: 745px) {
  .news-details .box_news .news-body .description div h1 {
    line-height: calc(2vw + 30px);
  }
}

@media (max-width: 745px) and (min-width: 620px) {
  .news-details .box_news .news-body .image {
    width: 83%;
  }
}

@media (min-width: 600px) {
  .news-details .box_news {
    margin: 2rem 0;
  }

  .news-details .box_news .news-body {
    display: flex;
    column-gap: 0.7rem;
  }
}

@media (max-width: 600px) {
  .news-details .box_news {
    margin-bottom: 1rem;
  }

  .news-details .box_news .news-body .description div span {
    margin-top: 0.8rem;
  }
}

/* =========================================
BOOKING FORM 
========================================= */

.booking li {
  list-style: none;
  border-bottom: 1px solid #ccc;
  margin: 0;
  padding: 0.7rem 0;
}

.booking .row {
  background-color: #f5f5f5;
}

.booking .row div h3 {
  padding: 0.7rem 0;
  margin: 0;
  border-bottom: 1px solid #ccc;
  font-size: 20px;
}

.booking .row div {
  text-align: center;
}

.booking .row div {
  padding: 0;
  border: 1px solid #ccc;
}

.booking .row div:nth-child(1) div {
  border: 0;
}

.booking .row div:nth-child(1) div h5 {
  display: block;
  margin: auto;
  font-family: RobotoCondensed;
  font-weight: 450;
}

/* *************************************
RESPONSIVE 
************************************* */

@media (min-width: 990px) {
  .booking .row div:nth-child(1) div {
    display: flex;
    width: 100%;
    height: 70%;
  }
}

@media (max-width: 990px) {
  .booking .row div:nth-child(1) div h5 {
    font-size: 16px;
    background-color: var(--primary-color-one);
    color: #ffffff;
    padding: 0.8rem;
  }

  /* .booking .row div:nth-child(1) div{ margin: .8rem;} */
}

@media (min-width: 576px) {
  .booking {
    padding: 0 1rem;
  }
}

@media (max-width: 575px) {
  .booking .row .col-sm {
    width: 50%;
  }

  .booking li {
    font-size: 16px;
  }

  .booking .row div h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
  }
}

/* =============================================== */
/* whatsapp btn */
/* =============================================== */

.msg-direct-ws {
  width: fit-content;
  padding: 0 1rem;
  transition: all ease 0.1s;
  border-radius: 50px;
  overflow: hidden;
  background-color: #2cb742;
  outline: 0px solid #2cb742;
  border: 2px solid #2cb742;
  text-decoration: none;
  display: flex;
}

.msg-direct-ws span {
  display: block;
}

.msg-direct-ws div:nth-child(1) {
  padding: 0.3rem 0;
  padding-right: 0.6rem;
  transition: all ease 0.2s;
}

.msg-direct-ws div:nth-child(1) img {
  width: 27px;
}

.msg-direct-ws div:nth-child(2) {
  padding: 0.3rem 0;
  padding-right: 1rem;
  color: #ffffff;
  font-weight: 600;
  transition: all ease 0.2s;
}

.msg-direct-ws:hover {
  border: 2px solid #ffffff;
  background-color: #ffffff;
  outline: 2px solid #2cb74193;
}

.msg-direct-ws:hover div:nth-child(2) {
  color: #2cb742;
}

/* =============================================== */
/* SUB GALLERY PAGE/ ARCHIVE */
/* =============================================== */
.sub-gallery-holder .row {
  /* column-gap: 1.5rem; */
  justify-content: center;
}

.sub-gallery-holder .card {
  padding: 0;
  width: 340px;
  border: 0;
  /* text-align: center; */
}

.sub-gallery-holder .card h6 {
  border-left: 7px solid var(--primary-color-two);
  padding-left: 0.5rem;
  font-size: 18px;
  transition: all ease 0.2s;
}

.sub-gallery-holder .card:hover h6 {
  color: #000000;
  border-color: var(--primary-color-one);
}

.sub-gallery-holder .card span {
  width: 100%;
  display: flex;
  overflow: hidden;
  background-position: center;
  background-size: 100%;
  transition: ease-in-out 0.4s;
  border-radius: 12px 0 12px 0;
  margin-bottom: 0.6rem;
}

.sub-gallery-holder .card span h5 {
  margin-left: auto;
  margin-top: auto;
  margin-bottom: 0;
  background-color: var(--primary-color-one);
  color: #ffffff;
  padding: 10px 20px 10px 40px;
  clip-path: polygon(0% 100%, 19% 0%, 100% 0%, 100% 100%);
  /* main key element for animation */
  margin-right: -14rem;
  transition: all ease-in-out 0.6s;
}

.sub-gallery-holder .card:hover span {
  background-size: 105%;
}

.sub-gallery-holder .card:hover span h5 {
  margin-right: 0rem;
}

/* ********************
Responsive
******************** */

@media (min-width: 500px) {
  .sub-gallery-holder .card span {
    height: 191px;
  }
}

@media (max-width: 500px) {
  .sub-gallery-holder .card span {
    height: 165px;
  }
}

/* =============================================== */
/* useful links */
/* =============================================== */

.useful-links {
  font-family: RobotoCondensed;
}

.useful-links h3 {
  color: var(--primary-color-two);
  margin-bottom: 1rem;
}

.useful-links .grid-li {
  margin-bottom: 2rem;
}

.useful-links .grid-li li {
  /* counter-increment: custom; */
  list-style: none;
  z-index: 12;
  position: relative;
  padding: 0.3rem 0;
  margin: 1rem;
  border-bottom: 1px solid #cccccc6b;
}

.useful-links .grid-li li a {
  color: rgb(70, 70, 70);
}

.useful-links .grid-li li:hover a {
  color: var(--primary-color-two);
}

.useful-links .grid-li li span {
  background-color: #555;
  text-align: center;
  padding: 5px 0;
  width: 36px;
  display: block;
  left: -17px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  height: 35px;
}

.useful-links .grid-li li span img {
  width: 23px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(48deg) brightness(103%) contrast(102%);
  margin: auto;
}

/* *****************************
RESPONSIVE
***************************** */

@media (min-width: 990px) {
  .useful-links .grid-li {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 500px) {
  .useful-links .grid-li li a {
    padding-left: 1.9rem;
  }
}

@media (max-width: 500px) {
  .useful-links .grid-li li {
    padding-left: 1.5rem;
  }
}

/* =============================================== */
/* download links */
/* =============================================== */

.download-links {
  font-family: RobotoCondensed;
}

.download-links h3 {
  color: var(--primary-color-two);
  margin-bottom: 1rem;
}

.download-links .grid-li {
  margin-bottom: 2rem;
}

.download-links .grid-li li {
  counter-increment: custom;
  list-style: none;
  z-index: 12;
  position: relative;
  padding: 0.3rem 0;
  margin: 1rem;
  border-bottom: 1px solid #cccccc6b;
}

.download-links .grid-li li:hover a {
  color: var(--primary-color-two);
}

.download-links .grid-li li a {
  position: relative;
  z-index: 1;
  color: rgb(70, 70, 70);
  width: 100%;
  display: block;
}

.download-links .grid-li li span {
  background-color: #555;
  text-align: center;
  padding: 5px 0;
  width: 36px;
  display: block;
  left: -17px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  height: 35px;
}

.download-links .grid-li li span img {
  width: 18px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(48deg) brightness(103%) contrast(102%);
  margin: auto;
}

.download-links .grid-li li:first-child {
  counter-reset: custom;
}

/* *****************************
RESPONSIVE
***************************** */

@media (min-width: 990px) {
  .download-links .grid-li {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 500px) {
  .download-links .grid-li li a {
    padding-left: 1.9rem;
  }
}

@media (max-width: 500px) {
  .download-links .grid-li li {
    padding-left: 1.5rem;
  }
}

/* ============================= */
/* LIGHT BOX HEADING STYLE  */
/* ============================= */

.lightbox h5 {
  position: absolute;
  bottom: -8px;
  right: -150px;
  z-index: 2;
  color: #ffffff;
  font-size: 17px;
  background-color: var(--primary-color-one);
  padding: 10px 20px 10px 40px;
  clip-path: polygon(0% 100%, 19% 0%, 100% 0%, 100% 100%);
  transition: all ease 0.6s;
}

.lightbox .box:hover h5 {
  right: 0px;
}

.lightbox .box a {
  border-radius: 12px 0 12px 0;
}

.lightbox .inner {
  padding-bottom: 0 !important;
}

.lightbox .card {
  padding: 0;
  width: 400px;
  max-width: 100%;
  border: 0;
}

.lightbox .card h6 {
  margin-left: 1rem;
  border-left: 7px solid var(--primary-color-two);
  padding-left: 0.5rem;
  font-size: 18px;
  display: inline-block;
  transition: all ease 0.2s;
}

/* ********************Responsive******************* */

@media (min-width: 1170px) {
  .lightbox .box {
    width: 400px !important;
  }

  .lightbox .box .inner {
    width: 400px;
  }

  .lightbox .box a {
    width: 100% !important;
    height: 230px !important;
  }
}

@media (max-width: 1170px) {
  .lightbox .box {
    width: 100% !important;
  }

  .lightbox .box .inner {
    width: 100%;
  }
}

.lightbox .box-container {
  display: flex;
  padding-left: 0;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================== */
/* package slider gallery  */
.package-slider {
  margin-top: -2.5rem !important;
  overflow: hidden !important;
  width: 95%;
  padding: 0;
}

.package-slider .slide img {
  border-radius: 12px 0 12px 0;
  background-color: #eef3f7;
}

.package-slider .slide {
  position: relative;
  padding-top: 3rem;
}

.package-slider .slide p {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  left: 47%;
  color: #ffffff;
  background-color: #000000;
  opacity: 0;
  padding: 4px 0;
  border-radius: 5px;
  width: 80%;
  font-size: 14px;
  transition: all ease 0.3s;
}

.package-slider .slide:hover p {
  opacity: 1;
}

.package-slider .slide p::before {
  content: "";
  width: 15px;
  height: 20px;
  background-color: #000;
  display: block;
  position: absolute;
  bottom: -12px;
  left: 47%;
  clip-path: polygon(100% 0%, -28% 0%, 47% 78%);
}

/* ==========RECENT CHANGE===================== */



@media (min-width:720px) {

  .package-slider .slide img {
    width: 290px;
    height: 100px;
    object-fit: fill;
  }
}
@media (max-width:720px) and (min-width:520px) {
  .package-slider .slide img {
    width: 290px;
    height: 100px;
    object-fit: fill;
  }
  
}



@media (max-width:520px) {
  .package-slider .slide img {
    width: 290px;
    height: 80px;
    object-fit: fill;
  }
  
}
/* =============================== */



@media (min-width: 1150px) {
  .package-slider {
    margin: 0 2%;
  }

  .package-slider .slide img {
    width: 160px !important;
  }
}



/* @media (min-width: 790px) {
  .package-slider .slide img {
    width: 290px;
    height: 100px;
    object-fit: fill;
  }
} */
@media (max-width: 790px) {
  .package-slider {
    width: 100%;
  }

  .package-slider .slide img {
    width: 91% !important;
  }

  .package-slider .slide p {
    font-size: 12px !important;
  }
}

/* =================================================== */
/* VIDEO GALLERY  */
.video-gallery .inner {
  position: relative;
}

.video-gallery a::after {
  content: "";
  background-image: url(../images/play-yt-icon.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 5rem;
  height: 5rem;
  z-index: 5;
}

@media (min-width: 420px) {
  .video-gallery img {
    height: 312px;
    margin: -2.5rem 0;
  }

  .video-gallery a::after {
    top: 33%;
    left: 39%;
  }
}

@media (max-width: 420px) {
  .video-gallery img {
    object-fit: cover;
  }

  .video-gallery a::after {
    top: 31%;
    left: 36%;
  }
}

/* =================================================== */
/* ============================== */
/* modal styling  */
.modal-body {
  padding: 0;
  border: 0px !important;
}

.modal-content {
  border: 0px !important;
}

.modal-content button {
  background-color: transparent;
  width: 2rem;
  border: 0;
  color: #ffffff;
  padding: 0;
  text-shadow: 1px 1px 1px #000;
  margin-left: auto;
  font-size: 25px;
}


/* modal styling ends */
/* ============================== */

/* ============================== */
/* EMBEDED VIDEO FRAME  */
/* ============================== */
.ytb-embed {
  display: flex;
}

.ytb-embed iframe {
  border-radius: 17px;
}

@media (min-width: 680px) {
  .ytb-embed iframe {
    width: 660px;
    height: 360px;
  }
}

@media (max-width: 680px) and (min-width: 450px) {
  .ytb-embed iframe {
    width: 90%;
    display: block;
    margin: auto;
    height: 225px;
  }
}

@media (max-width: 450px) {
  .ytb-embed iframe {
    width: 290px;
    display: block;
    margin: auto;
    height: 163px;
  }
}

/* ============================== */
/* Testimonials */
/* ============================== */

.testimonials {
  padding: 40px 0;
}

.testimonials .heading {
  margin-bottom: 60px;
}

.testimonials .heading h2 {
  font-size: 30px;
  font-weight: 700;
  color: #313e4b;
  margin-bottom: 20px;
}

.testimonials .heading h2 span {
  font-weight: 300;
  color: var(--primary-color-two);
  margin: 0;
}

.testimonials .heading p {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin: 0;
  color: #727f8c;
}

.testimonials .box {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  margin-bottom: 40px;
  transition: all 0.4s ease-in-out;
}

.testimonials .box h3 {
  font-size: 18px;
  font-weight: 500;
  color: #313e4b;
}

.testimonials .box:hover {
  transform: translateY(-10px);
}

.testimonials .box p {
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  margin: 0;
  color: #727f8c;
  margin-bottom: 20px;
  margin-top: 10px;
  padding-right: 20px;
}

.testimonials .content .category {
  font-family: RobotoCondensed;
  color: var(--primary-color-two);
  font-weight: 400;
  font-size: 16px;
}

.testimonials .content .category span {
  color: #ffffff;
  background-color: var(--primary-color-two);
  padding: 4px 11px;
  font-weight: 500;
  font-size: 13px;
}

.testimonials .box .image {
  width: 170px;
  display: block;
}

.testimonials .box .image img {
  width: 120px;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  display: block;
}

.testimonials .box .icon {
  border: 1px solid #eee;
  color: #777777;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.testimonials .box .icon:hover {
  color: #ffffff;
  border: 1px solid var(--primary-color-two);
  background: var(--primary-color-two);
}

/* ******************************************** */
/* RESPONSIVE */
/* ******************************************** */

@media (min-width: 600px) {
  .testimonials .box {
    display: flex;
    justify-content: space-between;
    padding: 40px;
  }

  .testimonials .box .image img {
    width: 120px;
  }
}

@media (max-width: 600px) {
  .testimonials .box h3 {
    margin-bottom: 110px;
  }

  .testimonials .box {
    /* display: flex; */
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    transition: all 0.4s ease-in-out;
  }

  .testimonials .box .image {
    width: fit-content;
    display: block;
    text-align: center;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
  }

  .testimonials .box .image img {
    width: 80px;
    margin: auto 0;
  }
}

/* ========================================
CUSTOM BANNER GLOBAL
======================================== */
.cstm-banner{overflow: hidden;}
/* .cstm-banner .row .bg .plane{animation: flyfly 3s ease-in-out;} */

/* @keyframes flyfly {
  0%{opacity: 0; right: 100%; top:100%;}
  30%{opacity: 1; transform: scale(1); right: 75%; top: 75%; }
  40%{ transform: scale(1.25);}
  75%{ transform: scale(1);}
  100%{right: 0; top:20px;}
  
} */
/* ============================================== */
/* RESPONSIVE  */

@media (min-width:990px) {
  .cstm-banner .row .bg .shapee{width: 3.5vw; height: 7vw; right: -5vw; bottom: 1.5vw;}
  .cstm-banner .row div:nth-child(2){width: 47vw; text-align: end;margin-right: 4vw;}
}
@media (max-width:990px) and (min-width:600px) {
  .cstm-banner .row .bg .shapee{width: 3.5vw; height: 7vw; right: -4.5vw; bottom: 1.5vw;}}
@media (max-width:990px) {
  .cstm-banner .row div:nth-child(2){width: 48.5vw; text-align: end;margin-right: 4vw;}
}

@media (min-width:600px) {

.cstm-banner .row h1{position: absolute; bottom: 2vw; left: 40px; font-size: 4.5vw; font-weight: 450; font-family: RobotoCondensed;}
.cstm-banner .row{ background-color:#C82A29; color: #ffffff; justify-content: space-between; }
.cstm-banner .row .bg{ position: relative; width: 48vw;}
.cstm-banner .row .bg .shapee{background-color: #C82A29; display: block; position: absolute; clip-path: polygon(0 0, 0% 100%, 100% 49%);}
.cstm-banner .row .bg .plane{position: absolute; right: 0; top: 20px; }
.cstm-banner .row .bg .plane img{width: 8.8vw;}

.cstm-banner .row div:nth-child(2) img{width: 50.5vw;}
}
@media (max-width:600px) {
  .cstm-banner .row{position: relative;}
  .cstm-banner h1{color: #ffffff; position: absolute; bottom: 30px; left: 40px; z-index: 1; font-size: 9.5vw; font-weight: 450; font-family: RobotoCondensed; border-left: 6px solid var(--primary-color-one); padding:0 2rem 0 0.5rem;}
  .cstm-banner .row .plane{display: none;}
  .cstm-banner .row .shapee{display: none;}
 .cstm-banner .row div:nth-child(2){height: fit-content; background-color: var(--primary-color-two); width: 110vw;}
 .cstm-banner .row div:nth-child(2) img{-webkit-mask-image: linear-gradient(to right, transparent, black);
  mask-image: linear-gradient(to right top, transparent 3%, black 44%);}
}

@media (max-width:600px) and (min-width:350px){
  .cstm-banner .row div:nth-child(2){text-align: center;}
  .cstm-banner .row div:nth-child(2) img{height: 350px; width: 100%; object-fit: cover;}
}
@media (max-width:350px){
  .cstm-banner .row div:nth-child(2){text-align: end;}
  .cstm-banner .row div:nth-child(2) img{height: 222px; margin-top: -1px;}
}

/* ============================================== */
.btn-viewall:hover .viewall-btn {
  border-color: #ffffff;
  background-color: var(--primary-color-two);
  outline: 8px solid #c930302f;
}

.viewall-btn {
  text-align: center;
  font-family: MyriadPro-regular;
  display: block;
  z-index: 2;
  outline: 15px solid #ffffff;
  transition: all 0.3s ease;
  margin: 2.5rem auto;
  width: 9rem;
  color: gray;
  border: 1px solid gray;
  border-radius: 30px;
  background-color: #ffffff;
  position: relative;
}

/* .btn-viewall hr{ height: 1px; border-bottom: 1px solid red; z-index: 1; left: 0; position: absolute;} */
.viewall-btn a {
  display: block;
  color: gray;
  transition: all 0.3s ease;
  padding: 4px 28px;
}

.btn-viewall {
  position: relative;
}

.btn-viewall hr {
  transition: all 0.3s ease;
  margin-top: -3.6rem;
  z-index: -1;
  border-top: 1px solid gray;
}

.btn-viewall:hover a {
  color: #ffffff;
  font-weight: 450;
}

.btn-viewall:hover hr {
  border-top: 1px solid var(--primary-color-two);
}

.plyr__progress input[type="range"] {
  color: red;
}

.ytp-expand-pause-overlay .ytp-pause-overlay {
  display: none;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  background: transparent;
  background-color: red;
  padding: 11px 22px;
  border-radius: 11px;
}

.plyr__volume input[type="range"] {
  color: red;
}

.plyr__controls__item:first-child {
  background: transparent !important;
}

/* FAQS =================================================== */
/* .faqs .show{background-color: red !important; color: red !important;} */
.faqs .category-btn {
  border-radius: 8px;
  background-color: #c82a29;
  transition: all 0.3s ease;
  color: #ffffff;
  border: 0;
  padding: 12px 25px;
  width: 17.5rem;
  font-weight: 500;
}

.faqs .category-btn:hover {
  background-color: #0054a6;
}

.faqs .btn-set-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 2rem;
  row-gap: 1rem;
}

.faqs .accordion-button {
  background-color: #ffffff;
  color: #000000;
  position: relative;
  padding-left: 43px;
}

.faqs .accordion-button span {
  background-color: var(--primary-color-two);
  color: #ffffff;
  padding: 4px 0;
  transition: all ease 0.3s;
  text-align: center;
  position: absolute;
  left: 8px;
  display: block;
  width: 27px;
  font-weight: 500;
  border-radius: 50%;
}

.faqs .accordion-button::after {
  display: none;
}

.faqs .accordion-button:focus {
  z-index: 2;
  color: #000000 !important;
  background-color: #cccccc3a !important;
  border: 0px;
  outline: 0px;
  box-shadow: 0 0 0 0 transparent;
}

.faqs .accordion-button:focus span {
  background-color: #000;
}

/* ================================== */
/* ABOUT US PAGE STYLING */
/* ================================== */
/* .about-content{} */
.readmore-expandable {
  max-width: 100%;
  width: 990px;
}

.readmore-expandable p {
  text-align: center;
  font-weight: 400;
  color: #727272;
  font-family: MyriadPro-regular;
}

/* GLOBAL USE  */
#expandable-area {
  max-height: 0px;
  transition: all ease 0.5s;
  overflow: hidden;
}

.expandable-area {
  max-height: 0px;
  transition: all ease 0.8s;
  overflow: hidden;
}

/* =================================== */
.readmore-expandable button {
  margin: auto;
  background-color: #ffffff;
  position: relative;
  border: 0;
  color: var(--primary-color-two);
  font-size: 17px;
  display: block;
}

.readmore-expandable button::after {
  content: "";
  z-index: -1;
  width: 3rem;
  margin-bottom: 5px;
  height: 0;
  margin-left: 7px;
  border-top: 1px solid var(--primary-color-two);
  display: inline-block;
}

.readmore-expandable button::before {
  content: "";
  z-index: -1;
  width: 3rem;
  margin-bottom: 5px;
  margin-right: 7px;
  height: 0;
  border-top: 1px solid var(--primary-color-two);
  display: inline-block;
}

/* **************RESPONSIVE***************** */
@media (min-width: 650px) {
  .readmore-expandable p {
    font-size: 19px;
  }
}

@media (max-width: 650px) {
  .about-content .maximize {
    padding: 0;
  }

  .readmore-expandable p {
    font-size: 15px;
  }
}

/* ============================= */
/* PARALLAX SECTION  */

.parallax-parent {
  text-align: center;
}

.parallax-parent .parallax {
  background-image: url(../images/img-about-mission.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-parent .parallax .inner {
  display: flex;
  height: 400px;
  color: #ffffff;
  font-weight: 500;
}

.parallax-parent .parallax .inner .content {
  display: block;
  margin: auto;
  width: 930px;
  max-width: 100%;
}

.parallax-parent .parallax .inner p {
  text-shadow: 3px 5px 5px #000000a6;
}

.parallax-parent .parallax .inner .content h2::after {
  content: "";
  display: block;
  border-top: 3px solid var(--primary-color-two);
  width: 4rem;
  margin: 0.5rem auto 0 auto;
}

/* **************RESPONSIVE***************** */
@media (min-width: 650px) {
  .parallax-parent .parallax .inner p {
    font-size: 21px;
  }
}

@media (max-width: 650px) {
  .parallax-parent .parallax .inner p {
    font-size: 17px;
  }
}

/* ============================= */
/* ICON GRID SERVICES */
.icon-service ul {
  display: grid;
  padding: 0;
}

.icon-service ul li {
  display: flex;
  transition: all ease 0.3s;
  list-style: none;
  margin: 0.3rem 0;
  box-shadow: 2px 2px 9px #cccccc8f;
  height: 4rem;
  padding: 0.5rem 0.5rem 0.5rem 4rem;
  position: relative;
}

.icon-service ul li p {
  display: block;
  margin: auto 0;
  transition: all ease 0.1s;
}

.icon-service ul li span {
  transition: all ease 0.3s;
  background-color: var(--primary-color-two);
  color: #ffffff;
  display: inline-block;
  margin-right: 0.5rem;
  padding: 1rem 0;
  text-align: center;
  width: 3rem;
  position: absolute;
  left: 9px;
}

.icon-service ul li:hover {
  background-color: var(--primary-color-two);
  color: #ffff;

  & span {
    color: var(--primary-color-two);
    background-color: #ffff;
    border-radius: 50%;
  }

  & p {
    font-weight: 500;
  }
}

/* *************RESPONSIVE************ */
@media (min-width: 1260px) {
  .icon-service ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (max-width: 1260px) and (min-width: 990px) {
  .icon-service ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 990px) and (min-width: 570px) {
  .icon-service ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 500px) {
  .icon-service ul {
    gap: 1rem;
  }
}

@media (max-width: 570px) {
  .icon-service ul {
    grid-template-columns: 1fr;
  }
}

/* ========================================================= */
/* SERVICES PAGE STYLING */

.vert-card {
  /* background-color: #cccccc2a; */
  /* background-image: linear-gradient(to bottom, #ffffff 1%, #cccccc2a 99%); */
  padding: 0 0 2rem 0;
}

.vert-card .card {
  width: 100%;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.106);
  border-radius: 0;
  border: 0;
  position: relative;
  margin: 1.5rem 0;
}

.vert-card .card:nth-child(odd) .inner .image{
  background-position: right;
  animation: moveImgReverse 35s linear infinite;
}
.vert-card .card:nth-child(even) .inner .image{
  background-position: left;
  animation: moveImg 35s linear infinite;
}
.vert-card .card .inner .image {
  transition: all ease 0.3s;
  background-color: #000000;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

@keyframes moveImg {
  0% {
    background-position: left;
  }

  50% {
    background-position: right;
  }
}

@keyframes moveImgReverse {
  0% {
    background-position: right;
  }

  50% {
    background-position: left;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 129, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 129, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 129, 0, 0);
  }
}

/* .vert-card .card .inner .ico-arrow {
  transition: all ease-in-out 0.3s;
  position: absolute;
  top: 4.5%;
  transform: translateY(-50%);
  background-image: linear-gradient(to right, red 50%, orange);
  color: #ffffff;
  border-radius: 50%;
  padding: .7rem 0;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  height: 3.5rem;
  width: 3.5rem;
  left: 18.2rem;
  box-shadow: 0 0 0 0 rgb(255, 0, 0);
  transform: scale(1);
  animation: pulse 2s infinite;
} */

.vert-card .card .inner .description p {
  font-family: MyriadPro;
}

.vert-card .card .description h4 {
  color: #443c3c;
  margin-bottom: 1.5rem;
}

.vert-card .card .inner .description h4::before {
  content: "";
  position: relative;
  width: 4%;
  height: 2px;
  transition: all ease 0.3s;
  background-color: red;
  display: block;
  margin: 1rem 0 0.5rem 0;
}

.vert-card .card button {
  background-color: transparent;
  border: 0;
  color: var(--primary-color-two);
  padding: 0;
  text-transform: capitalize;
}

.vert-card .card:hover .image {
  animation-play-state: paused;
  filter: brightness(0.8);
}

@media (min-width: 920px) {
  .vert-card .card .inner {
    display: flex;
    position: relative;
    min-height: 320px;
  }
  .vert-card .card .inner .image {
    width: 20rem;
    height: 100%;
    background-size: cover;
    max-height: 600px;
    display: inline-block;
    overflow: hidden;
    position: absolute;
    left: 0;
  }
  .vert-card .card .inner .description {
    margin-left: 21.5rem;
    padding: 0.95rem 2rem 1rem 1rem;
    margin-top: 0rem;
  }

  .vert-card .card .inner .ico-arrow {
    transition: all ease-in-out 0.3s;
    position: absolute;
    top: 4.5%;
    transform: translateY(-50%);
    background-image: linear-gradient(to right, red 50%, orange);
    color: #ffffff;
    border-radius: 50%;
    padding: 0.7rem 25px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    height: 3.5rem;
    width: 3.5rem;
    left: 18.2rem;
    box-shadow: 0 0 0 0 rgb(255, 0, 0);
    transform: scale(1);
    animation: pulse 2s infinite;
  }

  .vert-card .card:hover .description h4::before {
    width: 8%;
  }
}

@media (max-width: 920px) {
  .vert-card .card .inner {
    display: block;
    height: 100%;
  }
  .vert-card .card {
    height: 100%;
  }
  .vert-card .card .inner .image {
    background-size: cover;
    display: inline-block;
    overflow: hidden;
  }

  .vert-card .card .inner .ico-arrow {
    transition: all ease-in-out 0.3s;
    position: absolute;
    top: 0;
    left: 0;
    height: 3.5rem;
    width: 8rem;
    clip-path: polygon(0 0, 0 100%, 100% 0);
    background-image: linear-gradient(to right, red 50%, orange);
    color: #ffffff;
    /* padding: .7rem 0; */
    /* text-align: center; */
    padding: 0 2rem;
    font-size: 23px;
    font-weight: 500;
    box-shadow: 0 0 0 0 rgb(255, 0, 0);
    /* animation: pulse 2s infinite; */
  }
  .vert-card .card:hover .description h4::before {
    width: 10%;
  }
}

@media (max-width: 920px) and (min-width: 465px) {
  .vert-card .card .inner .image {
    width: 100%;
    height: 21rem;
  }
  .vert-card .card .inner .description {
    padding: 1rem;
  }
}

@media (max-width: 465px) {
  .vert-card .maximize {
    padding: 0;
  }
  .vert-card .card .inner .image {
    width: 100%;
    height: 12rem;
  }
  .vert-card .card .inner .description {
    padding: 0.7rem;
  }
}

/* =========================================== */
/* INTERNATIONAL TOUR CATEGORY BTNS  */

.tour-category {
  row-gap: 2rem;
  display: grid;
}

@media (min-width:1100px) {
  .tour-category {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
@media (max-width:1100px) and (min-width:950px) {
  .tour-category {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
@media (max-width:950px) and (min-width:850px) {
  .tour-category {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width:850px) and (min-width:700px) {
  .tour-category {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width:700px) and (min-width:550px) {
  .tour-category {
    grid-template-columns: 1fr 1fr;
  }
}


.tour-category div{text-align: center;}
.tour-category a {
  position: relative;
  /* overflow: hidden; */
  color: #443c3c;
  font-weight: 500;
  transition: 0.4s ease-in-out;
  /* display: block; */

  margin: 0 auto;
  padding: 7px 0;
  width: 7rem;
  max-width: 100%;
  text-align: center;
  border-bottom: 2px dashed #ccc;
  /* border-radius: 22px; */
}
.tour-category a::before {
  content: "";
  /* background-color: var(--primary-color-two); */
  width: 0;
  border-bottom: 2px dotted var(--primary-color-two);
  transition: 0.4s ease-in-out;
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
}
.tour-category a:hover {
  color: var(--primary-color-two);
  border-color: #ffffff;
  &::before {
    width: 100%;
    background-color: var(--primary-color-two);
  }
}


.custom_hover {
  color: #ca3534 !important;
  border-color: #ffffff;
  border-bottom: 2px solid #ca3534 !important;
}






/* ================+============== */
/* CONTACT US PAGE  */
.contactus .detail-holder {text-align: center;}
.contactus .detail-holder span{font-family: RobotoCondensed;
  color: var(--primary-color-two); font-size: 20px;
  font-weight: 450; margin-bottom: .5rem; display: block;}
.contactus .detail-holder span::before{content: ''; border-top: 1px solid var(--primary-color-two); display: inline-block; margin-right: 7px; margin-bottom: 6px;}
.contactus .detail-holder span::after{content: ''; border-top: 1px solid var(--primary-color-two); display: inline-block; margin-left: 7px; margin-bottom: 6px;}

.contactus .detail-holder h3{color: var(--primary-color-two); font-weight: 450; font-family: RobotoCondensed; }

.contactus button{transition: all ease 0.3s; background-color: var(--primary-color-two); color: #ffffff; margin: 2rem auto 0 auto; display: block; position: relative; padding: 0; padding-right: 12px; border-radius: 22px; border: 0; & span{ margin: 0; margin-right: 5px; background-color: #ffffff; color: var(--primary-color-two); border-radius: 22px; padding: 7px 10px;}}
.contactus button:hover{box-shadow: 1px 1px 29px #ccc; background-color: #000000;}

.contactus .detail-holder p{font-family: RobotoCondensed;
  color: #000000;
  margin: 0;
 & a{color: var(--primary-color-two);}
}

.contactus iframe{max-width: 100%; max-height: 75vw;}


.rating-star-div{
  color: orange;
  font-size: 16px;
}

.custom_m10{
  margin-top: 10px
}

@media (min-width: 380px){
  .contactus .detail-holder span::before{width: 5rem;}
    .contactus .detail-holder span::after{width: 5rem;}
}
@media (max-width: 380px){
  .contactus .detail-holder span::before{width: 20%;}
    .contactus .detail-holder span::after{width: 20%;}
}
@media (min-width: 880px){
  .contactus .detail-holder p {
    font-size: 20px;
    font-weight: 450;}
}
@media (max-width: 879px){
  .contactus .detail-holder p {
    font-size: 17px;
    margin-bottom: .3rem;
    font-weight: 400;}
}



/* Added by abdul samad 02-DEC-2024 */
.whatsappSticky {
  width: 40px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  animation: pulse-animation 2s infinite;
  box-shadow: 0px 0px 1px 1px #0000001a;
  display: block;
  right: 40px;
  bottom: 50px;
  position: fixed;
}
.whatsappSticky img {
  width: 100%;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.281);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
/* Added by abdul samad 02-DEC-2024 */