@import url('https://fonts.googleapis.com/css2?family=Reem+Kufi:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lateef:wght@200;300;400;500;600;700;800&display=swap');

/*----------------------------------------------------------------
                      Start Default Settings
  ----------------------------------------------------------------*/

/*========== All Transition Settings ==========*/

* {
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;

}

/*========== Block Settings ==========*/
:root {
    --main-color: #f90400;
    --second-color: #125f89;
    --primary-color: #233f5a;
    --black-color: #444;
    --main-grey: #f9f9f9;
    --white-color: #fff;
    --p-color: #444;
    scroll-behavior: smooth;

}

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

iframe {
    width: 100%;
    border: none;
}

ul,
ol,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

select:focus,
select:active {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    outline: 0;
}

textarea {
    height: 150px;
    padding-top: 20px;
}

textarea:focus {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/*========== Typography Settings ==========*/
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    font-family: "Tajawal", sans-serif;
}

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

h2 {
    font-size: 40px;
    font-weight: 600;
}

h3 {
    font-weight: 500;
    font-size: 23px;
}

h4 {
    font-size: 23px;
    font-weight: 500;
}

h5 {
    font-size: 20px;
    font-weight: 500;
}

p {
    line-height: 2;
    font-weight: 500;
    color: var(--p-color);
    letter-spacing: 0.5px;
}

/*========= Alignment CSS ==========*/
body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: "Tajawal", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--black-color);
}

/* ============= Reset CSS =========== */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="subject"]:focus,
textarea:focus,
.form-select:focus {
    outline: none !important;
    border: 1px solid var(--main-color);
    -webkit-transform: translate3d(0px, 0px, 5px);
    transform: translate3d(0px, 0px, 5px);
    font-size: 16px;
    color: var(--main-color);
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, .1);
    ;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="url"],
input[type="tel"],
input[type="date"],
input[type="search"],
input[type="password"],
input[type="subject"],
textarea,
.form-select {
    background: var(--white-color);
    border: 1px solid #ddd;
    outline: 0;
    width: 100%;
    padding: 13px 20px;
    resize: none;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    border-radius: 15px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="number"],
input[type="tel"],
input[type="date"],
input[type="search"],
input[type="password"],
input[type="subject"],
.form-select {
    height: 60px;
}

textarea {
    height: 220px;
    padding-top: 20px;
}

.text-msg {
    margin-bottom: 15px !important;
}

textarea:focus {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/*========== Block Settings ==========*/
a,
a:hover,
a:focus,
a:active,
button:focus {
    text-decoration: none;
    border: none;
    outline: 0;
    color: #0d6efd;
}

ul ol,
li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

/*===================================================
                  btn classess
  ===================================================*/

.btn-effect {
  color: var(--main-color);
  border-radius: .5em;
  background-color: var(--second-color);
  color: var(--white-color);
  letter-spacing: .1em;
  text-align: center;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: .5s;
  padding: 10px;
  border: none;
  display: inline-block;
  min-width: 150px;
  margin: 20px 10px;
  width: fit-content;
}

.btn-effect span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: var(--main-color);
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: .5s;
  transition-delay: calc((var(--n) - 1) * .1s);
  z-index: -1
}

.btn-effect:hover {
    color: var(--white-color);
}

.btn-effect:hover span {
    transform: translatex(0) scale(2);
    -webkit-transform: translatex(0) scale(2);
    -moz-transform: translatex(0) scale(2);
    -ms-transform: translatex(0) scale(2);
    -o-transform: translatex(0) scale(2);
}

.btn-effect span:first-child {
    --n: 1
}

.btn-effect span:nth-child(2) {
    --n: 2
}

.btn-effect span:nth-child(3) {
    --n: 3
}

.btn-effect span:nth-child(4) {
    --n: 4
}

.btn__effect {
  display: inline-flex;
  color: #ffffff;
  padding: 17px 38px;
  text-align: center;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #041126;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease-out;
  font-size: 16px;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  overflow: hidden;
  line-height: 180%;
  flex-shrink: 0;
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.btn__effect :before {
    box-sizing: border-box;
}

.btn__effect:before {
    content: "";
    pointer-events: none;
    opacity: 0.6;
    background: radial-gradient(circle at 20% 35%, transparent 0, transparent 2px, #ffffff 3px, #ffffff 4px, transparent 4px), radial-gradient(circle at 75% 44%, transparent 0, transparent 2px, #ffffff 3px, #ffffff 4px, transparent 4px), radial-gradient(circle at 31% 22%, transparent 0, transparent 2px, #ffffff 3px, #ffffff 4px, transparent 4px), radial-gradient(circle at 46% 52%, transparent 0, transparent 4px, #ffffff 5px, #ffffff 6px, transparent 6px);
    width: 100%;
    height: 300%;
    top: 0;
    left: 0;
    position: absolute;
    animation: bubbles 5s linear infinite both;
    -webkit-animation: bubbles 5s linear infinite both;
}

.btn__effect:after {
    position: absolute;
    width: 100%;
    height: 0;
    left: 0;
    top: 0;
    background-color: #3B71FE;
    content: "";
    transition: all 0.5s ease-out;
    z-index: -1;
    color: #ffffff;
}

@-webkit-keyframes bubbles {
    0% {
        transform: translate();
    }

    100% {
        transform: translate(0, -66.666%);
    }
}

.btn__effect:hover:after {
    height: 100%;
    transition: all 0.5s ease-out;
    color: #ffffff;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
}

.btn__effect:hover {
    color: #ffffff;
}

.btn_effect {
    font-size: 15px;
    color: #fff;
    display: inline-block;
    line-height: 45px;
    padding-left: 20px;
    padding-right: 20px;
    background: linear-gradient(90deg, rgb(29 74 117) 0%, rgb(59 112 165) 50%, rgb(97 149 197) 100%);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: relative;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-weight: 500;
    border: 0;
    white-space: nowrap;
    text-align: center;
}

.btn_effect:hover {
    background: linear-gradient(90deg, rgb(157 56 60) 0%, rgb(193 65 52) 50%, rgb(212 62 28) 100%);
    color: #fff;
}

.btn-effect:hover {
    color: var(--white-color);
}

.package-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.effect.blogs-btn {
    transition: all 0.2s linear 0s;
}

.blogs-btn {
    text-align: center;
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #f9fafb;
    text-transform: capitalize;
    font-size: 18px;
    padding: 9px 12px;
    border-radius: 20px;
    overflow: hidden;
    background: #ffae00;
    font-weight: 500;
    margin-top: 20px;
}

.effect.blogs-btn:before {
    content: "\f178";
    font-family: FontAwesome;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0px;
    height: 100%;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 0 50% 50% 0;
    transform: scale(0, 1);
    transform-origin: left center;
    transition: all 0.2s linear 0s;
}

.effect.blogs-btn:hover {
    text-indent: 30px;
    color: #ffffff;
}

.effect.blogs-btn:hover:before {
    transform: scale(1, 1);
    text-indent: 0;
    color: var(--main-color);
    background-color: #000 !important;
}

.effect.blogs-btn:hover {
    text-indent: 30px;
    color: #ffffff;
}

.fa-star {
    color: var(--second-color);
}

.effect.blogs-btn:hover {
    text-indent: 30px;
    color: #ffffff;
}

.package-card .effect.blogs-btn:before {
    content: "\f02c";
}

/*============== end My classess===============*/

.section-title {
    position: relative;
}

.section-title svg {
    width: 2em;
    height: 1em;
    fill: currentColor;
}

.section-title-span {
    color: #041126;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 19px;
    margin: 0;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.tixt_section {
    color: #00000082;
    font-size: 20px;
    padding: 0;
    margin-top: 15px;
    display: inline-block;
    position: relative;
    line-height: 1.5;
}

.section_title {
    position: relative;
    margin-bottom: 0;
}

.section_title svg {
    width: 2em;
    height: 1em;
    fill: currentColor;
}

.section_title h2 {
    color: var(--black-color);
    text-transform: capitalize;
    font-size: 40px;
    font-weight: 600;
    line-height: 45px;
}


.section-title h2 {
    color: var(--black-color);
    text-transform: capitalize;
    font-size: 30px;
    font-weight: 600;
    line-height: 45px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.tour-text {
    height: 90px;
    padding: 0 30px;
}


@media (max-width: 575.98px) {
    .section-title h2 {
        font-size: 18px;
        line-height: 32px;
    }

    .section_title p {
        font-size: 15px;
    }

    .section_title h2 {
        font-size: 20px;
    }

}

/*----------------------------------------------------------------

 ----------------------------------------------------------------*/

 /*----------------------------------------------------------------
          Start Navbar 
  ----------------------------------------------------------------*/

  .bg-gray {
    padding: 0;
    background-color: #212529;
}
.navbar_top {
  padding: 5px 15px;
}
.social-media .facebook:hover {
  background-color: #1877f2;
  color: #fff;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.social-media .twitter:hover {
  background-color: #1da1f2;
  color: #fff;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.social-media .linkedin:hover {
  background-color: #0a66c2;
  color: #fff;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.social-media .instagram:hover {
  background: linear-gradient(45deg,
      #405de6,
      #5851db,
      #833ab4,
      #c13584,
      #e1306c,
      #fd1d1d);
  color: #fff;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.social-media .tumblr:hover {
  background: repeating-linear-gradient(90deg, #d95e40 0%, #f2992e, #f7dd38, #56bc8a, #529ecc, #a77dc2, #d95e40 50%);
  color: #fff;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.social-media .youtube:hover {
  background-color: #f60000;
  color: #fff;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.social-media .wordpress:hover {
  background-color: #23779b;
  color: #fff;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.footer-link i{
  font-size: 22px;
  height: 21px;
  width: 23px;
}
.footer-widget .footer-link li:hover a {
  padding-left: 8px;
  color: #FFF;
}
.main-nav-bar .social-media li a {
  margin-right: 10px;
  transition: 0.4s;
  width: 27px;
  height: 27px;
  border-radius: 1px;
  font-size: 15px;
  line-height: 29px;
  text-align: center;
  color: #ffffff;
  border: 1px solid #8a9c9f;
  background: rgba(0, 0, 0, .1);
  display: block;
  border-radius: 50%;
}.navbar_top {
  padding: 5px 15px;
}

.navsLink, .navsLink-hasdropdown {
  font-size: 17px;
  font-weight: 500;
  padding: 5px 0px;
  display: inline-block;
  color: #000;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  text-decoration: none;
}.navsLink-hasdropdown:hover .dropdown-menu {
  display: block;
  transform: translateZ(0);
}
.navsLink-hasdropdown .dropdown-menu {
  transform: translateZ(100%);
  transition: 0.6s all ease-in-out;
  text-align: right;
}.navbar_top {
  padding: 5px 15px;
}
.icons {
  margin-right: 5px;
  font-size: 20px;
}.text {
  font-size: 20px;
}
.text_end {
  text-align: left !important;
}

.social-media li a {
  margin-right: 10px;
  transition: 0.4s;
  width: 33px;
  height: 34px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  border: 1px solid #8a9c9f;
  background: rgba(0, 0, 0, .1);
  display: block;
  border-radius: 50%;
}

/*===============================================================
      end Navbar
===============================================================*/

/*===========================================================
    start   our partners
===============================================================*/
.partnerSwiper {
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
  }
  
  .partnerSwiper .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    background-color: transparent;
    transition: 0.5s all ease-in-out;
    overflow: hidden;
    border: 1px dashed transparent;
  }
  
  .partnerSwiper .swiper-slide:hover {
    background-color: var(--main-grey);
    border: 1px dashed var(--main-color);
    border-radius: 20px;
  }
  
  .partnerSwiper .swiper-slide:hover.swiper-slide img {
    animation: zoomIn;
    animation-duration: 1s;
  }
  
  .partnerSwiper .swiper-slide img {
    display: block;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 20px 0;
  }
  
  /*===============================================================
      end   our partners
  ===============================================================*/
 
/*===============================================================
    start footer
===============================================================*/

footer {
    padding-top: 10px;
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .tree-footer-right {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  
  .tree-footer-left {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  footer .overlay {
    background: #233f5a;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .footer-widget h4 {
    position: relative;
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize;
    color: #ffffff;
    letter-spacing: .5px;
  }
  
  .footer-widget .line-footer {
    margin-bottom: 30px;
  }
  
  .footer-row {
    position: relative;
  }
  
  .footer-widget .footer-logo img {
    width: 150px;
    margin-bottom: 20px;
  }
  
  /* COMPANY LINKs */
  .footer-widget .footer-link {
    padding-left: 0;
  }
  
  .footer-widget .footer-link li {
    transition: .4s;
    display: block;
  }
  
  .footer-widget .footer-link li:first-child a {
    padding-top: 0;
  }
  
  .footer-widget .footer-link li:hover a {
    padding-left: 8px;
    color: #FFF;
  }
  
  .footer-widget .footer-link li a {
    font-size: 15px;
    color: #ffffff;
    display: block;
    transition: .4s;
    padding-top: 13px;
    padding-bottom: 13px;
    line-height: 14px;
  }
  
  .footer-widget .footer-link li span {
    padding-right: 5px;
    font-size: 10px;
  }
  
  .footer-widget p {
    font-weight: 500;
    color: #ffffff;
    font-size: 15px;
  }
  
  .footer-bar {
    z-index: 3;
    position: relative;
  }
  
  footer .copyright {
    position: relative;
    font-weight: 500;
    font-size: 14px;
    color: #f4f7fd;
    letter-spacing: 1.7px;
    line-height: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    border-top: 2px solid;
    margin-top: 25px;
  }
  
  footer .copyright a {
    color: #dc3545;
    font-weight: 700;
    font-size: 18px;
  }
  
  .social-media {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
  }
  
  .social-media li {
    display: inline-block;
  }
  
  .social-media li a:hover {
    background: #FFF;
    color: #1e2256;
    border: 1px solid #ffffff;
  }
  
  .tree-footer-left img,
  .tree-footer-right img {
    width: 60%;
  }
  
  .team-card {
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    padding-top: 20px;
    margin-bottom: 60px;
  }
  
  .card-item {
    margin-bottom: 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
  }
  
  .team-card .card-img {
    width: 190px;
    height: 190px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 8px solid #fff;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    margin-left: auto;
    margin-right: auto;
    margin-top: -60px;
  }
  
  .card-item .card-img {
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 50%;
  }
  
  .team-card .card-img img {
    height: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
  }
  
  .card-item .card-img img {
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 50%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  
  .team-card .card-body {
    padding: 20px;
  }
  
  .widget-title {
    margin-bottom: 30px;
    margin-top: 0;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .social-media li a {
    margin-right: 10px;
    transition: 0.4s;
    width: 40px;
    height: 40px;
    border-radius: 1px;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    color: #ffffff;
    border: 1px solid #8a9c9f;
    background: rgba(0,0,0,.1);
    display: block;
    border-radius: 50%;
  }
  
  .social-media .facebook:hover {
    background-color: #1877f2;
    color: #fff;
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
  
  .social-media .twitter:hover {
    background-color: #1da1f2;
    color: #fff;
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
  
  .social-media .linkedin:hover {
    background-color: #0a66c2;
    color: #fff;
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
  
  .social-media .instagram:hover {
    background: linear-gradient(45deg,
        #405de6,
        #5851db,
        #833ab4,
        #c13584,
        #e1306c,
        #fd1d1d);
    color: #fff;
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
  
  .social-media .tumblr:hover {
    background: repeating-linear-gradient(90deg, #d95e40 0%, #f2992e, #f7dd38, #56bc8a, #529ecc, #a77dc2, #d95e40 50%);
    color: #fff;
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
  
  .social-media .youtube:hover {
    background-color: #f60000;
    color: #fff;
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
  
  .social-media .wordpress:hover {
    background-color: #23779b;
    color: #fff;
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
 
  .footer-link i{
    font-size: 22px;
    height: 21px;
    width: 25px;
  }
  .footer-widget .footer-link li:hover a {
    padding-left: 8px;
    color: #FFF;
}
  @media (max-width: 575.98px) {
  
  .card-item {
    margin-top: 56px;
  }
  
  .payment_method {
    margin-bottom: 20px;
  }
  
  footer {
    height: 100%;
    margin-bottom: 65px;
    padding-top: 0;
  }
  .tree-footer-left img, .tree-footer-right img {
    display: none;
  }
  
  .copyright span{ 
    font-size: 17px;
  }
  
  }
  /*===============================================================
      end footer
  ===============================================================*/

  /*===============================================================
      start scroll-top
  ===============================================================*/
  .scroll-top {
    position: fixed;
    right: 10px;
    bottom: 6rem;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 1;
    visibility: hidden;
    transform: translateY(45px);
    transition: all 300ms linear;
  }
  
  .scroll-top:after {
    content:"🡩";
    position: absolute;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    color: var(--main-color);
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    border: 2px solid var(--main-color);
    box-shadow: none;
    border-radius: 50%;
  }
  
  .scroll-top svg {
    color: var(--main-color);
    border-radius: 50%;
    background: var(--white-color);
  }
  
  .scroll-top svg path {
    fill: none;
  }
  
  .scroll-top .progress-circle path {
    stroke: var(--main-color);
    stroke-width: 20px;
    box-sizing: border-box;
    transition: all 400ms linear;
  }
  
  .scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  /*===============================================================
      end scroll-top
  ===============================================================*/
  
  /*===============================================================
      start contact-floating-bo
  ===============================================================*/
  .contact-floatbox {
    position: fixed;
    cursor: pointer;
    left: 0;
    bottom: 1rem;
    z-index: 2222;
    padding: 10px;
  }
  
  .contact-floatbox a {
    margin: 0 5px;
  }
  
  .contact-floatbox a img {
    margin-top: 35px;
  }
  
  .tooltip-inner {
    background-color: var(--main-grey);
    color: var(--second-color);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--second-color);
    font-size: 14px;
    top: 0;
    font-family: "Tajawal", sans-serif;
  }
  
  .tooltip-arrow {
    width: 12px;
    height: 12px;
  }
  
  .tooltip {
    box-shadow: 0px 13px 48px 0px rgb(153 110 59 / 20%);
    max-width: 200px;
  }
  
  .phone_call {
    background: transparent;
    box-shadow: 0 0 0;
    border: 0;
    position: relative;
  }
  
  /*===============================================================
      end contact-floating-box
  ===============================================================*/
/*-====================================================================
                  Explore Apartment Types
=====================================================================--> */
.single-camp-hi {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.single-camp-hi img {
  transition: 0.3s;
  transform: scale(1);
  width: 100%;
  height: 265px;
}
.single-camp-hi:hover img {
  transform: scale(1.2);
}

.destination__card {
  position: relative;
  margin-bottom: 30px;
}

.destination__card-img-box {
  position: relative;
  overflow: hidden;
}

.destination__card-img-box--round {
  border-radius: 10px;
}

.destination__card-img-box--circle {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}

.destination__card-img {
  display: block;
  width: 100%;
  transition: all 500ms ease;
}

.destination__card-img--round {
  border-radius: 10px;
}

.destination__card-img--circle {
  width: 270px;
  height: 270px;
  border-radius: 50%;
}

.destination__card-overlay {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: RGBA(45, 35, 48, 0.5);
}

.destination__card-overlay--round {
  border-radius: 10px;
}

.destination__card-overlay--circle {
  border-radius: 50%;
}

.destination__card-content {
  display: table;
  text-align: right;
  position: absolute;
  bottom: 30px;
}

.destination__card-content--round {
  right: 10px;
}

@media (max-width: 425px) {
  .destination__card-content--round {
    left: 25px;
    bottom: 15px;
  }
}

.destination__card-content--circle {
  left: 50px;
  right: 50px;
  margin: auto;
  bottom: 50px;
}

.destination__card-btn {
  padding: 8px 10.5px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 6px 6px 6px 0px;
  margin-bottom: 1px;
  transition: all 700ms ease;
}
.destination__card-btn span{
color: var(--white-color);
}
.destination__card-btn--round {
  right: -50px;
}

.destination__card-btn--circle {
  right: -27px;
}

.destination__card-title {
  font-size: 30px;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  text-transform: capitalize;
}

.destination__card-title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.destination__card-title a:hover {
  background-size: 100% 1px;
}

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

.destination__card:hover .destination__card-btn {
  right: 0;
}

/* <!--====================================================================
                   Explore Apartment Types
=====================================================================--> */
  /*===============================================================
                    blognavigation 
  ===============================================================*/

  .blognavigation {
    margin-top: 20px;
  }
  
  .blognavigation li.active,
  .blognavigation li:hover,
  .tags a:hover {
    background: #202636;
    color: #fff;
  }
  
  .blognavigation .next,
  .blognavigation .prev {
    background-color: var(--primary-color);
    color: #fff;
  }
  
  .blognavigation .dots {
    font-size: 20px;
    margin: 0 5px;
  }
  
  .blognavigation a,
  .blognavigation li,
  .blognavigation span.current {
    display: inline-block;
    margin: 10px 3px;
    line-height: 30px;
    padding: 0 12px;
    font-size: 1rem;
    transition: .2s;
    border-radius: 5px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
  }
  
  .blognavigation a:hover,
  .blognavigation li:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #000;
    transition: .2s;
  }
  
  .blognavigation span.current {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
  }
  
  @media only screen and (min-width: 992px) {
    .blognavigation {
        margin-top: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
  }
  
  .blognavigation a,
  .blognavigation li,
  .blognavigation span.current {
    display: inline-block;
    margin: 10px 3px;
    line-height: 30px;
    padding: 0 12px;
    font-size: 1rem;
    transition: .2s;
    border-radius: 5px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
  }
  
  .blognavigation span.current {
    background: var(--primary-color);
    color: #fff;
  }
   /*===============================================================
                    blognavigation 
  ===============================================================*/
  
  /*===============================================================
   breadcrumb
  ===============================================================*/
  .breadcrumb {
    padding-left: 136px;
  }
  
  .banar{
    padding: 20px;
    background-color: #2222;
  }
  
  .bg-breadcrumb .breadcrumb {
    position: relative;
  }
  
  .baner_contant{
    text-align: center;
  }
  
  .image_banar{
    border-radius: 32px;
    height: 360px;
  }
  
.breadcrumb_contact{
  padding-top: 10%;
}

.brxe-breadcrumbs {
    font-size: 18px;
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    color: #ffff;
}
.brxe-breadcrumbs .separator {
    display: flex
;
}
.item{
    border-color: currentcolor;
    color: currentcolor;
    cursor: pointer;
    text-decoration: none;
}
/*===============================================================
 breadcrumb
===============================================================*/
/*===============================================================
            About US
===============================================================*/

.home-about-section {
    position: relative
  }

  .home-about-section .about-content .facility-card {
    background-color: #c6e4e4;
    border-radius: 10px;
    padding: 13px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: .5s
  }
  
  @media(min-width: 992px) and (max-width:1199px) {
    .home-about-section .about-content .facility-card {
      padding: 13px 10px
    }
  }
  
  .home-about-section .about-content .facility-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.05));
    display: flex;
    align-items: center;
    justify-content: center
  }
  
  .home-about-section .about-content .facility-card .icon svg {
    max-width: 26px
  }
  
  .home-about-section .about-content .facility-card .content h6 {
    color: var(--title-color);
    font-size: 17px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: .34px;
    text-transform: capitalize;
    margin-bottom: 0;
    transition: .5s
  }
  
  .home-about-section .about-content .facility-card:hover {
    background-color: var(--main-color)
  }
  
  .home-about-section .about-content .facility-card:hover .content h6 {
    color: var(--white-color)
  }
  
  .home-about-section .about-content .facility-card.two {
    background-color: #f0808054;
  }
  
  .home-about-section .about-content .facility-card.two:hover {
    background-color: var(--second-color)
  }
  
  .home-about-section .about-content .facility-card.two:hover .content h6 {
    color: var(--white-color)
  }
  
  .home-about-section .about-content .content-bottom-area {
    display: flex;
    align-items: center;
    gap: 45px
  }
  
  @media(max-width: 576px) {
    .home-about-section .about-content .content-bottom-area {
      flex-wrap: wrap;
      gap: 20px
    }
  }
  
  .home-about-section .about-content .content-bottom-area .primary-btn1 {
    padding: 16px 25px
  }
  
  .home-about-section .about-content .content-bottom-area .video-area {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer
  }
  
  .home-about-section .about-content .content-bottom-area .video-area .icon {
    position: relative
  }
  
  .home-about-section .about-content .content-bottom-area .video-area .icon .video-circle {
    stroke: var(--black-color);
    fill: none;
    transition: .5s
  }
  
  .home-about-section .about-content .content-bottom-area .video-area .icon .video-circle .top-half {
    stroke-dasharray: 320;
    stroke-dashoffset: 320;
    transition: stroke-dashoffset .8s cubic-bezier(.33, 1, .68, 1)
  }
  
  .home-about-section .about-content .content-bottom-area .video-area .icon i {
    color: var(--main-color);
    font-size: 16px;
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .home-about-section .about-content .content-bottom-area .video-area h6 {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .48px;
    text-transform: capitalize;
    margin-bottom: 0;
  }
  
  .home-about-section .about-content .content-bottom-area .video-area:hover .icon .video-circle .top-half {
    stroke-dashoffset: 0
  }
  
  .home-about-section .about-img-wrap {
    position: relative
  }
  
   .about-img img {
    border-radius: 38px;
    height: 619px;
    width: 745px;
   }
   
  .home-about-section .about-img-wrap .about-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 36px;
  }

  .home-about-section .about-img-wrap .experience {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #233f5a;
    padding: 15px 12px;
    max-width: 165px;
    width: 100%;
    border-radius: 10px;
  }
  
  @keyframes moveobject {
    50% {
      right: 50px;
    }
  }
  
  .home-about-section .about-img-wrap .experience h3 {
    color: var(--white-color);
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0
  }
  
  .home-about-section .about-img-wrap .experience p {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0
  }
  
  .home-about-section .about-img-wrap .vector {
    position: absolute;
    top: 258px;
    right: -248px;
    z-index: -1;
  }
/*===============================================================
            About US
===============================================================*/

/*===============================================================
                         Start Section Blog
===============================================================*/
.our-blogs {
    background-color: var(--white-color);
  }
  
  .blog {
    background-color: #fff;
  }
  
  .blog .blog-item {
    margin-bottom: 30px;
    border-radius: 10px;
  }
  
  .blog-img {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px;
  }
  
  .blog-img:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    content: "";
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    background: rgb(39 34 98 / 50%);
  }
  
  .blog-img:hover::before {
    opacity: 1;
    border-radius: 20px;
  }
  
  .our-blogs .blog-shape-map {
    position: absolute;
    left: 0;
    top: 3rem;
    animation: jumpping var(--duration, 6s) infinite linear;
  }
  
  .our-blogs .blog-shape-rocket {
    position: absolute;
    right: 3rem;
    animation: scaleup 2s infinite linear;
  }
  
  .our-blogs .blog-item a img {
    width: 500px;
    border-radius: 20px;
    height: 323px;
  }
  
  .our-blogs .blog-item:hover a img {
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    border-radius: 20px;
  }
  
  .blog-info {
    background: var(--main-grey);
    padding: 30px 30px;
    z-index: 1;
    border: 1px solid #f3f2f2;
    position: relative;
    margin: -50px 20px 0 20px;
    border-radius: 10px;
    height: 254px;
  }
  
  .blog-meta-box {
    justify-content: space-between;
  }
  
  .it-blog-meta i {
    padding-right: 0.2rem;
    color: var(--main-color);
  }
  
  .blog-info .title-post a h5 {
    display: block;
    color: var(--second-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
    height: 80px;
  }
  
  .blog-info .title-post a h5:hover {
    color: var(--main-color);
  }
  
  .blogs-btn {
    margin-top: 20px;
  }
  
  .blogs-btn a {
    padding: 10px;
    background: #ff950026;
    color: var(--main-color);
  }
  
  .blogs-btn a:hover {
    padding: 10px;
    background: var(--main-color);
    color: #fff;
  }
  
  .p-date {
    padding: 10px;
    text-align: center;
    position: absolute;
    top: -0.3rem;
    right: 1.5rem;
    min-width: 50px;
    height: auto;
    font-weight: 600;
    z-index: 20;
  }
  
  .our-blogs .p-date {
    background-color: var(--main-color);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  
  .day {
    color: #fff;
    margin: 2px auto;
    font-size: 16px;
    display: inline-block;
  }
  
  .p-date .discount {
    color: #fff;
    margin: 2px auto;
    font-size: 10px;
    display: inline-block;
    margin-right: 10px;
    padding: 7px;
    border-radius: 4px;
    background-color: var(--main-color);
  
  }
  
  .p-date .classification {
    color: var(--second-color);
    margin: 2px auto;
    font-size: 10px;
    display: inline-block;
    margin-right: 10px;
    padding: 7px;
    border-radius: 4px;
    background-color: #fff;
  }
  
  @keyframes scaleup {
    0% {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1);
    }
  
    100% {
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
      transform: scale(1.1);
    }
  }
  
  .category-price {
    right: -0.1rem;
    position: absolute;
    background: var(--main-color);
    padding: 10px 7px 10px 30px;
    z-index: 20;
    top: 2rem;
    color: var(--white-color);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 8% 48%);
  }
  
  .category-btn {
    color: var(--main-color);
    border-radius: 10px;
    font-size: 16px;
    text-transform: uppercase;
    margin: auto;
  }
  
  .category-btn img {
    height: 35px !important;
    width: 40px !important;
    transform: rotate(90deg);
  }
  
  .category-btn a {
    padding: 7px 10px;
    background: #dc354545;
    color: var(--main-color);
    border-radius: 10px;
    margin: 15px 0;
  }
  
  .category-btn a:hover {
    color: var(--white-color);
    background: var(--main-color);
  }
  
  @media only screen and (min-width: 992px) {
    .search-form {
        padding: 5px 15px;
        margin: 25px 0;
        border-radius: 29px;
        box-shadow: 1px 1px 5px 2px rgba(16, 12, 8, .5);
    }
  }
  
  .banner-search .search-form {
    width: 100%;
  }
  
  .search-form .form-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -5px;
  }
  
  
  @media only screen and (min-width: 992px) {
    .search-form .form-row {
        flex-wrap: nowrap;
    }
  }
  
  @media only screen and (min-width: 992px) {
    .input-group:last-of-type {
        border: none;
    }
  }
  
  @media only screen and (min-width: 992px) {
    .input-group {
        flex: 1;
        margin: 10px 5px;
        border: none;
        border-left: 1px solid var(--background-color-300);
        border-radius: 0;
    }
  }
 
  input[type="text"],
  input[type="email"],
  input[type="number"],
  input[type="url"],
  input[type="tel"],
  input[type="date"],
  input[type="search"],
  input[type="password"],
  input[type="subject"],
  textarea,
  .form-select {
    background: var(--white-color);
    border: 1px solid transparent;
    outline: 0;
    width: 100%;
    padding: 13px 20px;
    resize: none;
    color: #666;
    font-size: 20px;
    font-weight: 400;
    position: relative;
    border-radius: 15px !important;
    -webkit-border-radius: 15px !important;
    -moz-border-radius: 15px !important;
    -ms-border-radius: 15px !important;
    -o-border-radius: 15px !important;
}
  
  .our-blogs {
    padding-bottom: 34px;
    padding-top: 30px;
  }

  .search-form .search-select {
    appearance: none;
    background-position: 0;
    background-repeat: no-repeat;
  }
  
  .search-form .form-input, .search-form .search-select {
    line-height: 38px;
    border-radius: 5px;
    font-size: .9rem;
    color: var(--text-color);
    transition: all .3s ease-in-out;
    text-decoration: none;
    text-transform: none;
    font-family: Cairo, sans-serif;
    font-style: normal;
    outline: 0;
  }
  
  .home-about-section .about-img-wrap .experience:hover {
    transition:transform();
    transition:  transform var(--e-transform-transition-duration, .4s);
    -webkit-transition:transform();
    -moz-transition:transform();
    -ms-transition:transform();
    -o-transition:transform();
  }
  .our-blogs {
    background-color: #f1f5f9;
    padding-bottom: 34px;
    padding-top: 30px;
}
  
  /*===============================================================
                        End Section Blog 
  ===============================================================*/
  .tour_item{
    width: 410px;
  }
  .tours-item-para p{
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .tours-item-para {
    height: 65px;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 4px;
  }
  
  /*===============================================================
    contact-us
  ===============================================================*/
  .contact-us {
    position: relative;
  }
  .contact-us::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    bottom: 0;
    background-color: #233f5a;
    z-index: -1;
  }
  .contact-form-box {
    box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
    background-color: #e7ecf1;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
  }
  .contact-form-box div[class*=col-] {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact-form {
    padding: 20px;
  }
  .contact-form form {
    position: relative;
    z-index: 1;
  }
  .contact-form .comment,
  .contact-form .form-bg {
    width: 100%;
    padding-right: 15px;
    height: 44px;
    line-height: 44px;
    display: block;
    font-size: 1rem;
    margin-top: 20px;
    border: 1px solid #c6c6c6;
    background-color: #fff;
    border-radius: 5px;
    text-align: right;
  }
  .contact-form .comment {
    height: 110px;
  }
  .comment::placeholder,
  .form-bg::placeholder {
    opacity: .5;
  }
  .contact-form .submit {
    margin: 20px 37%;
    background-color: #233f5a;
    line-height: 32px;
    padding: 4px 88px 6px;
    color: #fff;
    font-size: 18px;
    border: 0;
    transition: .5s;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
    justify-content: center;
    display: flex;
    align-content: center;
    align-items: center;
  }
  .contact-form .submit:hover {
    cursor: pointer;
    background-color: var(--primary-color);
  }
  .form-bg.half-l,
  .form-bg.half-r {
    width: 100%;
  }
  .contact-form .search-select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-position: 2%;
    background-repeat: no-repeat;
    color: var(--primary-color);
  }
  
  @media only screen and (min-width: 992px) {
    .contact-form-box {
      height: 400px;
    }
    .contact-form-box img {
      width: 120%;
      height: auto;
      display: block;
      position: absolute;
      bottom: 0;
      border-radius: 10px;
    }
    .form-bg.half-l,
    .form-bg.half-r {
      width: 48% !important;
      display: inline-block;
    }
    .form-bg.half-l {
      float: left;
    }
  }

  .main-section {
    padding: 20px 0;
  }
  .bg-white {
    background-color: #fff;
  }
  @media only screen and (min-width: 992px) {
    .main-section {
      padding: 60px 0;
    }
  }
  .view-all-btn {
    background-color: var(--primary-color);
    padding: 2px 25px;
    color: #fff;
    border-radius: 50px;
    margin-top: 25px;
    display: inline-block;
    transition: .2s;
  }
  .view-all-btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
  }
  .get-in-touch {
    background-color: #203951;
    color: #fff;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    margin: 20px;
  }
  .get-in-touch a:hover {
    color: var(--secondary-color);
  }
  .get-in-touch-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color02);
  }
  .get-in-touch-txt {
    font-size: 1rem;
    font-weight: 700;
  }
  .get-in-touch-social {
    position: relative;
    width: auto;
    text-align: right;
    display: flex;
    flex-wrap: wrap;
    font-size: 1rem;
    margin-top: 25px;
  }
  .get-in-touch-social ul {
    display: inline-block;
    list-style: none;
    margin: 0 -5px;
    padding: 0;
  }
  .get-in-touch-social ul li {
    display: block;
    float: right;
    margin: 2px 10px;
  }
  .get-in-touch-social i {
    color: #fff;
  }
  .get-in-touch-social i:hover {
    color: var(--secondary-color);
  }

  @media only screen and (min-width: 992px) {
    .contact-us-inner {
      margin-bottom: 60px;
    }
    .get-in-touch-title {
      font-size: 1.6rem;
    }
    .get-in-touch-box {
      font-size: 1.1rem;
    }
    .get-in-touch-social {
      font-size: 1.1rem;
      padding: 5px 0;
    }
    .get-in-touch-bg,
    .get-in-touch-bg02 {
      width: 200px;
      height: 200px;
      transform: translateY(30%);
      bottom: 0;
      left: -80px;
    }
    .get-in-touch-bg02 {
      width: 80px;
      height: 80px;
      transform: translateY(-50%);
      bottom: 0;
      left: 60px;
    }
  }

  .get-in-touch-box {
    margin: 15px 0;
    position: relative;
  }
  .get-in-touch-box li {
    list-style-type: none;
    line-height: 2.5rem;
  }
  .get-in-touch-box i {
    color: var(--secondary-color);
    margin-left: 5px;
  }
  .contact-form,
  .get-in-touch {
    flex: 1;
  }
  .alert-row [class^=col] {
    padding-top: 0;
    padding-bottom: 0;
  }
  .headline::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-logo img {
      height: 85px !important;
      width: auto;
     
  }
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  .icon-moon {
    animation: rotate 2s linear infinite;
  }
  .icon-moon::before {
      font-family: yfont;
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .9em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .9em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .get-in-touch-box i {
      color: #fb0101;
  }
  
  .get-in-touch-box a{
  color: #fff;
  }
  
  .footer-link{
    display: flex;
    flex-direction: column;
  }
  
  /*===============================================================
    contact-us
  ===============================================================*/
    
/*===============================================================
    start   faq
============{===================================================*/

.faq {
  position: relative;
  z-index: 2;
}
.faq-thumb img{
  border-radius: 20px;
  width: 650px;
  height: 620px;
  object-fit: cover;
}

.accordion{
  position: relative;
  z-index: 22;
}
 .accordion .accordion-item {
    border: 1px solid #eee;
    padding: 0 20px;
    margin-bottom: 20px;
    border-radius: 20px;
}
 .accordion .accordion-item button[aria-expanded='true'] {
     border-bottom: 1px solid #eee;
}
.accordion .accordion-item button[aria-expanded='true'] .accordion-item {
  border: 1px solid #f94d1c !important;
}
.accordion .accordion-item button[aria-expanded='true'] .icon {
  border-radius: 0;
  transform: rotate(360deg);
}
 .accordion button {
     position: relative;
     z-index: 2;
     display: block;
     text-align: right;
     width: 100%;
     padding: 1em 19px;
     color: #f8f9fa;
     font-size: 1.15rem;
     font-weight: 400;
     border: none;
     background: none;
     outline: none;
}
.accordion button::before{
  position: absolute;
  top: 0;
  left: -20px;
  content: "";
  width: calc(100% + 40px);
  height: 100%;
  background-color: var(--second-color);
  z-index: -1;
  border-radius: 20px;
}
.accordion button[aria-expanded='true']::before{
  background-color: #d16363;
}
 .accordion button:hover, .accordion button:focus {
     cursor: pointer;
     color: var(--main-color);
}
 .accordion button:hover::after, .accordion button:focus::after {
     cursor: pointer;
     color: var(--second-color);
     border: 1px solid var(--second-color);
}
 .accordion button .accordion-title {
  font-weight: 500;
  margin-right: 20px;
  display: inline-block;
}

 .accordion button .icon {
     display: inline-block;
     position: absolute;
     top: 18px;
     right: 0;
     width: 22px;
     height: 22px;
     border: 1px solid;
     border-radius: 22px;
}
 .accordion button .icon::before {
     display: block;
     position: absolute;
     content: '';
     top: 9px;
     left: 5px;
     width: 10px;
     height: 2px;
     background: #ffffff;
}
 .accordion button .icon::after {
     display: block;
     position: absolute;
     content: '';
     top: 5px;
     left: 9px;
     width: 2px;
     height: 10px;
     background: #f8f9fa;
}
 .accordion button[aria-expanded='true'] {
     color: #ffffff;
     transition: none;
}

 .accordion button[aria-expanded='true'] .icon::after {
     width: 0;
}
 .accordion button[aria-expanded='true'] + .accordion-content {
     opacity: 1;
     max-height: 9em;
     transition: all 0.5s linear;
     will-change: opacity, max-height;
}
 .accordion .accordion-content {
     opacity: 0;
     max-height: 0;
     overflow: hidden;
     transition: opacity 200ms linear, max-height 200ms linear;
     will-change: opacity, max-height;
}
 .accordion .accordion-content p {
     margin: 15px auto;
   color: #666;
}

.button-play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.button {
  display: inline-block;
  position: relative;
}
.button.is-play {
  background-color: #fff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.button.is-play .button-outer-circle {
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.button.is-play .button-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
}
.button.is-play .button-icon .triangle {
  animation: fadeIn 7s ease;
}
.button.is-play .button-icon .path {
  stroke-dasharray: 90;
  stroke-dashoffset: 0;
  animation: triangleStroke 3s;
  animation-timing-function: ease;
}
.has-scale-animation {
  animation: smallScale 3s infinite;
}
.has-delay-short {
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes smallScale {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}

.image-content-one__single .image-inner:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media (prefers-reduced-motion: reduce) {
  .image-content-one__single img {
    -webkit-transition: none;
    transition: none;
  }
}

.image-content-one__image {
  position: relative;
  z-index: 2;
}

@keyframes animation_top_bottom {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.image-content-one__image-second {
  position: relative;
  bottom: 0;
  z-index: 2;
}

.image-content-one__image-second .image-inner {
  overflow: hidden;
  border-radius: 30px;
  border: 8px solid #fff;
  -webkit-box-shadow: 10px 0 30px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 10px 0 30px 0px rgba(0, 0, 0, 0.18);
  height: 500px;
  margin-top: 47px;
}

.image-content-one__single .image-inner {
  overflow: hidden;
  display: inline-block;
}

.image-content-one__single img {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  width: 524px;
  height: 500px;
}

.image-content-one__content {
  position: absolute;
  bottom: -30px;
  right: -20px;
  z-index: 11;
  background: #fff;
  padding: 12px;
  -webkit-box-shadow: 15px 30px 86px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 15px 30px 86px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  max-width: 280px;
}

@keyframes shapeMover {

  0%,
  100% {
    -webkit-transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }

  50% {
    -webkit-transform: perspective(400px) rotate(0deg) translateZ(15px) translateY(15px) translateX(15px);
    transform: perspective(400px) rotate(0deg) translateZ(15px) translateY(15px) translateX(15px);
  }
}

@media (max-width: 575.98px) {
  .gsc-column {
    display: none;
  }
}
.overlay_statistics {
  background: linear-gradient(0deg, #bda9ab5e, rgba(0, 0, 0, .2));
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 50px;
  padding-top: 50px;
}

/*===============================================================
    end   faq
===============================================================*/

/*===============================================================
tour
===============================================================*/
/* National Tour Start */
.national-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 330px;
}

.national-item img {
  transition: 0.5s;
  height: 330px;
}

.national-item:hover img {
  transform: scale(1.2);
}

.national-item .national-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  padding: 20px;
  background: rgba(0, 0, 0, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.national-item .national-plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.national-item:hover .national-plus-icon {
  opacity: 1;
}

.national-item .tour-offer {
  position: absolute;
  top: -1px;
  left: -1px;
  padding: 20px;
  border-top-right-radius: 40px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 80px;
  background: var(--bs-primary);
  color: var(--bs-white);
}

.national-info h5{
  font-size: 25px;
}

/*===============================================================
   tour
===============================================================*/

/*========================================
# banner
*========================================*/

.Banner-offer {
  background-color: var(--white-color);
  padding-bottom: 60px;
}

.Banner-offer-inner {
  padding: 40px ;
  position: relative;
  border-radius: 30px;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

@media (max-width: 767px) {
  .Banner-offer-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 575px) {
  .Banner-offer-inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.Banner-offer-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #233f5a 0%, rgba(45, 35, 48, 0) 100%);
  border-radius: 30px;
}

.Banner-offer-inner__row {
  position: relative;
  z-index: 2;
}

.Banner-offer .sec-title {
  margin-bottom: 29px;
  text-align: center;
}

.Banner-offer .sec-title__tagline,
.Banner-offer .sec-title__title {
  color: var(--white-color);
  font-size: 30px;
  margin-top: 10px;
  margin-bottom: 8px;
}

.Banner-offer .sec-title__tagline {
  font-size: 20px;
  margin-bottom: 0;
}

.Banner-offer .trevlo-btn:hover {
  color: var(--main-color);
}

.Banner-offer .trevlo-btn::after {
  background-color: var(--white-color)
}

.offer-two__image {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 24%;
  bottom: 0;
  z-index: 2;
  animation: rightToLeft 2500ms linear infinite;
  height: 300px;
}

@media (max-width: 1199px) {
  .offer-two__image {
    max-width: 370px;
    right: 40px;
  }
}

@media (max-width: 991px) {
  .offer-two__image {
    display: none;
  }
}

.offer-two__border-one {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  animation: leftToRight 2500ms linear infinite;
}

.offer-two__border-two {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

@media (max-width: 1199px) {
  .offer-two__border-two {
    max-width: 450px;
  }
}

@media (max-width: 991px) {
  .offer-two__border-two {
    max-width: 300px;
    animation: rightToLeft 2500ms linear infinite;
  }
}

@media (max-width: 767px) {
  .offer-two__border-two {
    max-width: 250px;
  }
}

@media (max-width: 575px) {
  .offer-two__border-two {
    max-width: 215px;
  }
}

@keyframes leftToRight {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes rightToLeft {
  0% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
}

  50% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0px);
  }
}

.destination-card {
  position: relative;
  transition: .5s
}

.destination-card img {
  border-radius: 10px;
  height: 300px;
  width: 100%;
  object-fit: cover;
}

@media(max-width:991px) {
  .destination-card img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.destination-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 12, 8, .4);
  border-radius: 10px
}

.destination-card .card-title {
  position: absolute;
  top: 70px;
  transform: translateX(0);
  opacity: 1;
  width: 100%;
  transition: .5s;
  text-align: center;
}

.destination-card .card-title h4 {
  color: var(--white-color);
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .54px;
  margin-bottom: 0
}

@media(max-width:767px) {
  .destination-card .card-title h4 {
    font-size: 25px
  }
}

.destination-card .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.4);
  text-align: center;
  opacity: 0;
  transition: all .5s ease-out
}

.destination-card .content h4 {
  margin-bottom: 20px
}

.destination-card .content h4 a {
  color: var(--white-color);
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .54px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--primary-color1);
  display: inline-block;
  transition: all .5s ease-out
}

.destination-card .content h4 a:hover {
  color: var(--primary-color2)
}

.destination-card .content .eg-tag {
  background-color: var(--main-color);
  padding: 18px 48px;
  white-space: nowrap;
  display: flex;
  margin-bottom: 15px;
  transition: all .5s ease-out
}

.destination-card .content .eg-tag span {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .4px
}

.destination-card .content .eg-tag span svg {
  fill: var(--white-color)
}

.destination-card:hover .content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1
}

.card-title p {
  color: #f8f9fa;
    margin-top: 15px;
    font-size: 15px;
}
/*========================================
# banner
*========================================*/
/*==================================================
# blog section
====================================================*/
.blog-section{
  padding-top: 10px;
  padding-bottom: 34px;
  }
  .blog-card {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, .08);
    transition: all .5s ease-out  ;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
}
  
  .blog-card .blog-card-img-wrap {
    position: relative;
    overflow: hidden;
    transition: all .5s ease-out  ;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
}
  
  @media(max-width:767px) {
    .blog-card .blog-card-img-wrap {
        width: 100%
    }
  }
  
  .blog-card .blog-card-img-wrap .card-img {
    overflow: hidden;
    display: block;
    position: relative;
    border-radius: 5px 5px 0 0;
    transition: all .5s ease-out;
  }
  
  .blog-card .blog-card-img-wrap .card-img img {
    border-radius: 5px 5px 0 0;
    transition: all .5s ease-out;
    min-width: 100%;
    height: 366px;
    overflow: hidden;
  }
  
  @media(max-width:991px) {
    .blog-card .blog-card-img-wrap .card-img img {
        width: 100%
    }
  }
  
  .blog-card .blog-card-img-wrap .card-img::after {
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    content: "";
    z-index: 1
  }
  
  .blog-card .blog-card-img-wrap .date {
    position: absolute;
    top: 13px;
    left: 13px;
    text-align: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(16, 12, 8, .4);
    -webkit-backdrop-filter: blur(1.7px);
    backdrop-filter: blur(1.7px);
    transition: .5s;
    z-index: 9
  }
  
  .blog-card .blog-card-img-wrap .date span {
    color: var(--white-color);
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .22px;
    text-transform: capitalize;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .5s
  }
  
  .blog-card .blog-card-img-wrap .date span strong {
    font-size: 17px;
    font-weight: 600
  }
  
  @media(min-width:992px) and (max-width:1199px) {
    .blog-card .blog-card-img-wrap .date {
        top: 5px;
        left: 5px;
        width: 60px;
        height: 60px
    }
  
    .blog-card .blog-card-img-wrap .date span {
        font-size: 10px
    }
  
    .blog-card .blog-card-img-wrap .date span strong {
        font-size: 16px
    }
  }
  
  @media(max-width:576px) {
    .blog-card .blog-card-img-wrap .date {
        top: 5px;
        left: 5px;
        width: 60px;
        height: 60px
    }
  
    .blog-card .blog-card-img-wrap .date span {
        font-size: 10px
    }
  
    .blog-card .blog-card-img-wrap .date span strong {
        font-size: 16px
    }
  }
  
  .blog-card .blog-card-content {
    padding: 10px 20px;
  }
  
  @media(max-width:767px) {
    .blog-card .blog-card-content {
        padding: 20px
    }
  }
  
  .blog-card .blog-card-content .blog-card-content-top>ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px
  }
  
  @media(min-width:992px) and (max-width:1199px) {
    .blog-card .blog-card-content .blog-card-content-top>ul {
        margin-bottom: 15px
    }
  }
  
  @media(max-width:576px) {
    .blog-card .blog-card-content .blog-card-content-top>ul {
        gap: 15px
    }
  }
  
  .blog-card .blog-card-content .blog-card-content-top>ul li {
    position: relative;
    color: rgba(16, 12, 8, .5);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .26px;
    text-transform: capitalize
  }
  
  .blog-card .blog-card-content .blog-card-content-top>ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -18px;
    background-color: var(--second-color);
    width: 5px;
    height: 5px;
    border-radius: 50%
  }
  
  @media(max-width:576px) {
    .blog-card .blog-card-content .blog-card-content-top>ul li::before {
        left: -10px
    }
  }
  
  .blog-card .blog-card-content .blog-card-content-top>ul li:first-child::before {
    display: none
  }
  
  .blog-card .blog-card-content .blog-card-content-top>ul li a {
    color: rgba(16, 12, 8, .5);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .26px;
    text-transform: capitalize;
    text-decoration: underline;
    transition: .5s
  }
  
  .blog-card .blog-card-content .blog-card-content-top>ul li a:hover {
    color: var(--second-color)
  }
  
  .blog-card .blog-card-content .blog-card-content-top>ul li:nth-child(2) a {
    text-decoration: none
  }
  
  .blog-card .blog-card-content .blog-card-content-top .blog-date {
    display: flex;
    align-items: center;
    gap: 5px
  }
  
  .blog-card .blog-card-content .blog-card-content-top .blog-date svg {
    fill: var(--main-color);
    opacity: .5
  }
  
  .blog-card .blog-card-content .blog-card-content-top .blog-date a {
    color: var(--main-color);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .26px;
    text-transform: capitalize;
    transition: .5s
  }
  
  .blog-card .blog-card-content .blog-card-content-top .blog-date a:hover {
    color: var(--second-color)
  }
  
  .blog-card .blog-card-content h5 {
    height: 50px;
  }
  
  .blog-card .blog-card-content h5 a {
    color: var(--main-color);
    font-size: 23px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .23px;
    text-transform: capitalize;
    transition: .5s
  }
  
  .blog-brif{
    height: 90px;
    margin-bottom: 10px;
  }
  
  .blog-brif p{
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  @media(min-width:1200px) and (max-width:1399px) {
    .blog-card .blog-card-content h5 a {
        font-size: 20px
    }
  }
  
  @media(max-width:1199px) {
    .blog-card .blog-card-content h5 a {
        font-size: 18px
    }
  }
  
  @media(min-width:992px) and (max-width:1199px) {
    .blog-card .blog-card-content h5 {
        margin-bottom: 20px
    }
  }
  
  .blog-card .blog-card-content h5:hover a {
    color: var(--second-color)
  }
  
  .blog-card .blog-card-content .bottom-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid;
  }
  
  .blog-card .blog-card-content .bottom-area>a {
    color: #2c445a;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .5s;
    margin-top: 14px;
  }
  
  .blog-card .blog-card-content .bottom-area>a>span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--second-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s
  }
  
  .blog-card .blog-card-content .bottom-area>a>span svg {
    stroke: var(--second-color);
    transition: .5s
  }
  
  .blog-card .blog-card-content .bottom-area>a:hover span {
    border-color: var(--main-color)
  }
  
  .blog-card .blog-card-content .bottom-area>a:hover span svg {
    transform: rotate(231deg);
    stroke: var(--main-color)
  }
  
  .blog-card .blog-card-content .bottom-area .social-list {
    display: flex;
    align-items: center;
    gap: 30px
  }
  
  .blog-card .blog-card-content .bottom-area .social-list li {
    position: relative;
    transition: .5s
  }
  
  .blog-card .blog-card-content .bottom-area .social-list li::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -17px;
    background: rgba(16, 12, 8, .2);
    width: 3px;
    height: 3px;
    border-radius: 50%
  }
  
  .blog-card .blog-card-content .bottom-area .social-list li:first-child::before {
    display: none
  }
  
  .blog-card .blog-card-content .bottom-area .social-list li a {
    color: rgba(16, 12, 8, .5);
    transition: .5s
  }
  
  .blog-card .blog-card-content .bottom-area .social-list li a i {
    font-size: 16px
  }
  
  .blog-card .blog-card-content .bottom-area .social-list li:hover a {
    color: var(--main-color)
  }
  
  .blog-card .blog-card-content .bottom-area>span {
    color: rgba(16, 12, 8, .5);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .24px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 5px
  }
  
  .blog-card .blog-card-content .bottom-area>span svg {
    fill: rgba(16, 12, 8, .5)
  }
  
  @media(min-width:992px) and (max-width:1199px) {
    .blog-card .blog-card-content.two {
        padding: 25px 15px
    }
  }
  
  @media(min-width:992px) and (max-width:1199px) {
    .blog-card .blog-card-content.two h5 a {
        font-size: 17px
    }
  }
  
  .blog-card:hover .blog-card-img-wrap .card-img img {
    transform: scale(1.05)
  }
  
  .blog-card:hover .blog-card-img-wrap .card-img::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent
  }
  
  .blog-card:hover .blog-card-img-wrap .date {
    background-color: var(--second-color)
  }
  
  .blog-card.two {
    display: flex;
    align-items: center
  }
  
  @media(max-width:576px) {
    .blog-card.two {
        flex-direction: column-reverse ;
    }
  }
  
  @media(max-width:767px) {
    .blog-card.two .blog-card-img-wrap {
        width: unset
    }
  }
  
  @media(max-width:576px) {
    .blog-card.two .blog-card-img-wrap {
        width: 100%
    }
  }
  
  .blog-card.two .blog-card-img-wrap .card-img {
    border-radius: 5px 0 0 5px
  }
  
  .blog-card.two .blog-card-img-wrap .card-img img {
    border-radius: 6px 5px 8px 5px;
    min-width: 296px;
    max-width: 290px;
    -o-object-fit: cover;
    object-fit: cover
  }
  
  @media(min-width:1200px) and (max-width:1399px) {
    .blog-card.two .blog-card-img-wrap .card-img img {
        min-width: 255px;
        max-width: 255px
    }
  }
  
  @media(min-width:992px) and (max-width:1199px) {
    .blog-card.two .blog-card-img-wrap .card-img img {
        min-width: 222px;
        max-width: 222px
    }
  }
  
  @media(max-width:767px) {
    .blog-card.two .blog-card-img-wrap .card-img img {
        min-width: 240px;
        max-width: 240px
    }
  }
  
  @media(max-width:576px) {
    .blog-card.two .blog-card-img-wrap .card-img img {
        min-width: unset;
        max-width: unset;
        width: 100%;
        border-radius: unset
    }
  }
  
  .blog-card.two .blog-card-content {
    padding: 25px 20px
  }
  
  @media(min-width:992px) and (max-width:1199px) {
    .blog-card.two .blog-card-content {
        padding: 15px 20px
    }
  }
  
  @media(max-width:767px) {
    .blog-card.two .blog-card-content {
        padding: 15px
    }
  }
  
  .location {
      color: #125f89;
      font-size: 18px;
  }
  .blog_cont{
      height: 382px;
  }

 .destination-footer .btn-effec {
  min-width:100px !important;
 }

.info-prop {
  border-bottom-width: 1px;
  border-top-width: 1px;
  padding-bottom: 20px;
  padding-top: 20px;
  gap: 26px;
  display: flex;
  align-items: center;
}

.tours-item .info-prop {
  border-bottom-width: 1px;
  border-top-width: 1px;
  padding-bottom: 10px;
  padding-top: 0px;
  gap: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 86px;
}

.info_prop{
  display: flex;
  gap: 7px;
}
.info-prop>div {
  border-left: 2px solid rgba(82, 85, 90, 0.1);
  padding-left: 8px;
}

.info_prop_img{
  padding-left: 3px;
}

.info_prop span {
  font-size: 17px;
}
 
  /*==================================================
  # blog section
  ====================================================*/

  /*===============================================================
               Start First-Tours
===============================================================*/

.swiper.first-tours-slider {
  width: 100%;
  max-height: 700px;
  padding: 0 30px 60px 30px;
}
.swiper-slide {
  background-position: center;
  background-size: cover;
  transition: 0.5 all ease-in-out;
}

.swiper-button-prev,
.swiper-button-next {
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 50%;
  color: #fff;
}
.hero-home .swiper-button-prev,
.hero-home .swiper-button-next{
  background-color: #f9f9f961;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 22px;
  color: #000;
}
.tours-packages {
  background-size: cover;
}

.tours-item {
  color: var(--main-color);
  background: var(--white-color);
  border-radius: 10px;
  border: 1px solid #fff;
  box-shadow: 0px 13px 48px 0px #f0f4f8;
}

.tours-item .image {
  margin: 10px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.tours-item .image img {
  min-width: 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  height: 270px;
  object-fit: cover;
}

.tours-item .image .ratting {
  position: absolute;
  left: 0;
  top: -5px;
  z-index: 2;
  color: white;
  font-size: 18px;
  padding: 30px 50px 20px;
  background: var(--second-color);
  -webkit-transform: rotate(-45deg) translate(-30px, -40px);
  -ms-transform: rotate(-45deg) translate(-30px, -40px);
  transform: rotate(-45deg) translate(-30px, -40px);
}

.tours-item .image .ratting i {
  color: white;
  font-size: 16px;
  margin: 0 5px 0 0;
}

.tours-item .image .heart {
  z-index: 2;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  background: white;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  color: var(--second-color);
}

.tours-item .content {
  padding: 18px 40px 20px;
}
.tours-item-para{
  height: 65px;
  overflow: hidden;
  margin-top: 10px;
}
.tour_item{
  width: 410px;
}
.tours-item-para p{
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media only screen and (max-width: 1599px) {
  .tours-item .content {
    padding-left: 22px;
    padding-right: 22px;
  }
}

.tours-item .content .location {
  display: block;
  margin-bottom: 10px;
}

.tours-item .content .location i {
  margin-right: 5px;
}

@media only screen and (max-width: 375px) {
  .tours-item .content h5 {
    font-size: 22px;
  }
}

.tours-item .content h5 a {
  color: var(--second-color);
  display: inline-block;
  height: 59px;
}

.tours-item .content h5 a:hover {
  text-decoration: underline;
}

.tours-item .destination-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #dee2e6;
}

.tours-item .destination-footer .price {
  font-size: 14px;
  margin-bottom: 5px;
}

.tours-item .destination-footer .price span {
  color: var(--second-color);
  font-size: 24px;
  font-weight: 500;
}

.tours-item .destination-footer .read-more {
  color: var(--second-color);
  margin-bottom: 5px;
}

.tours-item:hover .image img {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}

/* Read More */
.read-more {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-transform: capitalize;
}

.read-more i {
  color: white;
  float: right;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  margin-right: 5px;
  font-size: 0.9em;
  width: 20px;
  height: 20px;
  background: var(--main-color);
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
}

.read-more:hover {
  text-decoration: underline;
}

.read-more:hover i {
  background: var(--second-color);
}

.time{
  color: #041126;
  font-size: 20px;
}
.price{
  color: var(--main-color);
  font-size: 25px;
}
/*===============================================================
    first-tours
===============================================================*/
/*===============================================================
    start hero-header
===============================================================*/
.hero-header {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 80vh;
  min-height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
  background-position: 50% 50%;
  border-bottom: 1px solid #eee;
}

.hero-overlay {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.header-info {
  position: relative;
  width: 100%;
  height: 72vh;
}

.header-info span {
  color: var(--second-color);
  font-weight: 500;
}

.header-info h1 {
  color: var(--second-color);
}

.hero-thumb-video {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
}

.hero-thumb-video .button-play {
  margin-left: 50px;
}

.clip-text {
  font-size: 55px;
  font-weight: 800;
  line-height: 89px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 22px;
}

.clip-text {
  color: #fff;
  background-size: cover;
  background-position: center;
}

.small-header {
  color: #ffff;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2em;
  text-align: center;
}

.text-header {
  color: #ffff;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2em;
  text-align: center;
}

.cta-btn {
  text-align: center;
  margin-top: 63px;
}

@media (max-width: 575.98px) {
  .clip-text {
    font-size: 33px;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 18px;
    line-height: 46px;
}

}

.video-banner {
  position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden;
}

.video-banner video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.banner-content p {
  font-size: 1.2rem;
}

.banner-content button {
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background: #ff5722;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.banner-content button:hover {
  background: #e64a19;
}

.lgsSQ {
  width: 100%;
  z-index: 99999;
}
.eAhnCt {
  display: flex;
  width: 100%;
  padding: 32px;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  background: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.04) 0px 0px 4px 0px, rgba(0, 0, 0, 0.08) 0px 8px 16px 0px;
}
.eAhnCt .tab-container {
  display: flex;
  height: 40px;
  padding: 8px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
}

.eAhnCt .tab-container .tab {
  padding: 10px 20px;
  cursor: pointer;
  border-bottom: 3px solid rgb(211, 219, 230);
  transition: border-bottom 0.3s;
  width: 100%;
  text-align: center;
  color: rgb(91, 101, 115);
  font-family: materialMedium;
  font-size: 14px;
}

.eAhnCt .tab-container .tab.active {
  border-bottom: 3px solid rgb(118, 173, 225);
  color: rgb(26, 32, 40);
  font-family: materialSemiBold;
  font-size: 14px;
}
.eAhnCt .tab-container .tab {
  padding: 10px 20px;
  cursor: pointer;
  border-bottom: 3px solid rgb(211, 219, 230);
  transition: border-bottom 0.3s;
  width: 100%;
  text-align: center;
  color: rgb(91, 101, 115);
  font-family: materialMedium;
  font-size: 14px;
}
.eAhnCt .search-input {
  width: 100%;
  flex: 1 1 0%;
  min-height: 55px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  border: 1px solid rgb(176, 176, 176);
  border-radius: 8px;
}
.hXapEH {
  width: 100%;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  position: relative;
  height: 100%;
  margin: 0px;
}
.hXapEH .search-filter-bar {
  display: flex;
  flex-direction: row;
  gap: 8px;
  height: 100%;
  -webkit-box-align: center;
  align-items: center;
}

.eAhnCt .search-input .closed-input, .eAhnCt .search-input .opened-input {
  outline: none;
  border: none;
}

.eExzFZ {
  width: 100%;
  border: 1px solid rgb(198, 208, 222);
  border-radius: 10px;
  padding: 12px 8px;
  display: flex;
  flex-direction: row;
  -webkit-box-align: center;
  align-items: center;
  cursor: pointer;
  height: 100%;
  overflow: hidden;
}

.eAhnCt .search-input .closed-input > svg, .eAhnCt .search-input .opened-input > svg {
  width: 20px;
  height: 20px;
}

.eExzFZ span {
  margin-inline-start: 8px;
  font-size: 14px;
  color: rgb(142, 142, 142);
}

.eAhnCt .search-input .closed-input .placeholder, .eAhnCt .search-input .opened-input .placeholder {
  color: rgb(102, 102, 102);
  font-size: 16px;
}

.eAhnCt .dropdowns-container {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 8px;
  margin-bottom: 16px;
}
.btmPpN {
  position: relative;
  background-color: white;
  border: 1px solid rgb(176, 176, 176);
  padding: 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
  min-width: 160px;
  height: 55px;
  gap: 4px;
}
.btmPpN span {
  color: rgb(102, 102, 102);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* -====================================== header form ==========================================- */

.wpte-trip__search-fields {
  right: 10%;
  top: -95px;
  gap: 0;
  display: flex;
  width: 81%;
  flex-wrap: wrap;
  padding: 10px 9px 5px;
  background-color: rgb(0 0 0 / 63%);
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  border-radius: 17px !important;
  box-shadow: 0px 24px 64px 0px rgba(199, 206, 218, 0.25) !important;
  position: relative;
  z-index: 555;
  align-items: center;
  justify-content: space-around;
}

.fild_search {
  background-color: #fff;
  border: 1px solid #125f89 !important;
  border-radius: 8px !important;
  padding: 12px 40px 12px 58px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -5px;
  width: 72%;
}

@media only screen and (min-width: 786px) {
  .form-row {
      flex-wrap: nowrap;
  }

}

@media (max-width: 575.98px) {
.wpte-trip__search-fields {
top: -37px;
gap: 16px;
}

}
/*===============================================================
    end hero-header
===============================================================*/

.destination-gallery-section{
  padding-top: 32px;
  padding-bottom: 30px;
}
.national-info a {
  font-size: 20px;
  font-weight: 500;
}

.nav__link {
    padding: 20px 0;
color: var(--bs-dark);
font-size: 20px;
}
.call {
  color: #2c445a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

.range-slider {
  width: 400x;
  text-align: center;
  position: relative;
  background-color: #fff;
  border: 1px solid #125f89 !important;
  border-radius: 8px !important;
  padding: 12px 40px 26px 58px;
}

.range-slider .rangeValues {
  display: block;
}
input[type=range] {
  -webkit-appearance: none;
  border: 1px solid white;
  width: 244px;
  position: absolute;
  left: 2px;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 300px;
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #21c1ff;
  margin-top: -4px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #ccc;
}
input[type=range]::-moz-range-track {
  width: 300px;
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px;
}
input[type=range]::-moz-range-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #21c1ff;
}

input[type=range]:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px;
}
input[type=range]::-ms-track {
  width: 300px;
  height: 5px;
  background: transparent;
  border-color: transparent;
  border-width: 6px 0;
  color: transparent;
  z-index: -4;
}
input[type=range]::-ms-fill-lower {
  background: #777;
  border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
  background: #ddd;
  border-radius: 10px;
}
input[type=range]::-ms-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #21c1ff;
}
input[type=range]:focus::-ms-fill-lower {
  background: #888;
}
input[type=range]:focus::-ms-fill-upper {
  background: #ccc;
}
.range-slider p{
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.btn_serach{
  color: var(--main-color);
  border-radius: .5em;
  background-color: var(--second-color);
  color: var(--white-color);
  letter-spacing: .1em;
  text-align: center;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: .5s;
  padding: 17px;
  border: none;
  display: inline-block;
  min-width: 181px;
  margin: 0;
  width: fit-content;
}

.tour-heading_basic{
  display: none;
}
@media (max-width: 575.98px) {
  .fild_search {
    width: 274px
    
  }
  .about-img img {
    border-radius: 38px;
    height: 422px;
    width: 745px;
}
.tours-item .info-prop {
  gap: 4px;
}
.swiper.first-tours-slider {
  width: 100%;
  max-height: 700px;
  padding: 0 0 0 0px;
}
.destination-card .card-title {
  top: 15px;
  left: 1px;
}

.tour_item {
  width: 338px;
}

.blog-card-content .info-prop {
  gap: 0px;

}
.get-in-touch-social ul {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex
;
  align-items: center;
  justify-content: center;
}
.contact-form .submit {
  margin: 20px 11%;
}
.wpte-trip__search-fields {
  right: 0;
  width: 100%;
}

.range-slider {
  width: 83%;
}

input[type=range] {
  -webkit-appearance: none;
  border: 1px solid white;
  width: 273px;
  position: absolute;
  left: 6px;
}

.get-in-touch-box li {
  list-style-type: none;
  line-height: 2.5rem;
  font-size: 18px;
}

.breadcrumb_contact {
  padding-top: 29%;
}
.form-select, input[type="date"], input[type="number"] {
  padding: 15px 15px;
}
.tour-heading_basic{
  display: block;
}


.tour-details-title {
  font-size: 17px;
}

.tour_search .fild_search {
  width: 167px;
  margin-bottom: 5px;
  padding: 6px;
}

.tour_search .form-row {
  width: 50%;
}

.tour_search input[type="search"] {
  height: 40px !important;
    padding: 3px;
}

.tour_search .range-slider {
  width: 94%;
  padding: 11px;
}
.tour_search .range-slider p {

  margin-bottom: 11px;
}
.tour_search input[type=range] {
  -webkit-appearance: none;
  border: 1px solid white;
  width: 286px;
  position: absolute;
  left: 6px;
  bottom: 5px;
}

.tour_search  .btn_serach {
  padding: 6px;  
}

}

@media (max-width: 575.98px) {
  .tour_search .fild_search {
      width: 155px;
      margin-bottom: 5px;
  }
}

.hero-overlay {
  position: relative;
  width: 100%; 
  height: 100vh; 
  overflow: hidden; 
}

.hero-overlay video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; 
  min-height: 100%; 
  object-fit: cover; 
  z-index: -1;
}

.nfo_prop img {
  margin-left: 7px;
}

#header.animate-bg {
  transition: background-color .2s ease-in-out;
}

#header.animate {
  transition: box-shadow .2s ease-in-out;
}
#header {
  padding: 0 15px;
  box-sizing: border-box;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 0;
  background-color: #fff;
  color: #131624;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, .2);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header.animate #logo, #header.animate #logo path, #header.animate .right {
  transition: all .2s ease-in-out;
}
#logo {
  float: left;
  font-size: 20px;
  margin-bottom: 26px;
  line-height: 0;
}

#logo a {
  display: inline-block;
  height: 35px;
  padding: 0;
  margin-bottom: 20px;
}

#header .submenu-close {
  display: none;
  float: left;
  padding: 22px 20px 21px;
  transform: rotateY(180deg);
  cursor: pointer;
}
.search-wrapper {
  position: relative;
  display: inline-block;
  width: 50%;
}

#header .search-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

#header.animate input.search {
  transition: font-size .2s ease-in-out, border .2s ease-in-out;
}

#header .search-wrapper input.search {
  font-size: 15px;
  border-bottom-width: 1px;
}
.search-wrapper input.search {
  outline: none;
  border-radius: 0;
  box-sizing: border-box;
  border: none;
  background: #fff;
  box-shadow: 0px 10px 46px 0px rgba(1, 7, 39, .1);
  border-radius: 4px;
  font-size: 17px;
  line-height: 20px;
  padding: 22px 20px 22px 65px;
  width: 100%;
  background: url(../svg/search.svg) no-repeat 25px center;
  background-size: 19px;
}
input {
  margin-left: 10px;
}
.search-wrapper .close {
  position: absolute;
  top: 15px;
  left: 14px;
  display: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
#header.animate #logo, #header.animate #logo path, #header.animate .right {
  transition: all .2s ease-in-out;
}
#header .right {
  float: right;
  display: flex
;
  align-items: center;
}
@media only screen and (min-width: 960px) {
  .hide-desktop {
      display: none !important;
  }
}
.right {
  text-align: right;
}
#header .filters-toggle {
  display: none;
  position: relative;
  float: right;
  padding: 20px;
  color: #08080e;
  text-decoration: none;
}
@media only screen and (min-width: 960px) {
  .hide-desktop {
      display: none !important;
  }
}
#header .filters-toggle span {
  position: relative;
  top: -3px;
  margin-right: 5px;
}
#header .filters-toggle .icon-close {
  position: absolute;
  right: 22px;
  top: 50%;
  margin-top: -8px;
  opacity: 0;
}

#header .right .buy {
  padding-left: 30px;
  padding-right: 30px;
  line-height: 26px;
  margin: 0;
}

a.button.primary {
  background-color:#125f89;
  color: #fff;
}

a.button, a.button span:after, a.splash-link, a.splash-link:after, .websites-form button.btn {
  transition: all 0.2s ease-in-out;
}
a.button {
  display: inline-block;
  margin: 0 5px 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 11px 80px;
  background-color: #dde7f0;
  color: #07070A;
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
  box-sizing: border-box;
}

#menu {
  display: block;
}

#header .menu-toggle {
  display: none;
  float: left;
  width: 22px;
  padding: 22px 20px;
}

#menu ul {
  list-style: none;
}

#menu > ul > li > a {
  padding: 25px 20px;
  height: 70px;
  font-weight: 500;
  box-sizing: border-box;
}
#menu ul li a {
  display: block;
  line-height: 20px;
  color: #08080e;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  cursor: pointer;
}#menu > ul > li.active > a {
  color: #7a7c8d;
}
#menu > ul > li > a {
  padding: 25px 20px;
  height: 70px;
  font-weight: 500;
  box-sizing: border-box;
}
#menu ul li a {
  display: block;
  line-height: 20px;
  color: #08080e;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  cursor: pointer;
}

#menu ul > li > .submenu {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  background-color: #f6f7f9;
  border-top: 1px solid #e3e6ee;
  box-shadow: 0px 10px 10px 0px rgba(58, 63, 67, 0.12);
}
#menu .submenu.with-tabs .wrapper {
  display: flex;
  text-align: right;
  padding: 40px 0 50px;
}
.wrapper {
  position: relative;
  box-sizing: border-box;
  max-width: 1212px;
  margin: 0 auto;
  padding: 0 30px;
  z-index: 6666;
}

#menu .submenu.with-tabs .tabs-nav {
  width: 25%;
  flex-shrink: 0;
  border-left: 1px solid #e3e6ee;
  margin-left: 40px;
}

#menu ul {
  list-style: none;
}

#menu .submenu.with-tabs .tabs-nav li {
  float: none !important;
  display: block;
  margin-bottom: 5px;
}

#menu .submenu.with-tabs .tabs-nav li.active a {
  color: #0089f7;
}
#menu .submenu.with-tabs .tabs-nav li a {
  display: block;
  padding: 7px 10px;
  font-weight: 500;
}
#menu ul > li ul li a {
  color: #2a2b39;
}
#menu ul li a {
  display: block;
  line-height: 20px;
  color: #08080e;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  cursor: pointer;
}
#menu .submenu.with-tabs .tab {
  width: calc(75% - 40px);
}

#menu ul {
  list-style: none;
}

#menu ul li {
  float: right;
}

#menu .submenu.with-tabs .tab ul li {
  width: 31.3333%;
  margin: 0 1%;
  margin-bottom: 5px;
}

#menu .submenu.with-tabs .tab ul li a {
  position: relative;
  padding: 7px 10px 7px 40px;
}
#menu ul > li ul li a {
  color: #2a2b39;
}
#menu ul li a {
  display: block;
  line-height: 20px;
  color: #08080e;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  cursor: pointer;
}

#menu ul li:hover > a, #menu ul li.active:hover > a, #menu ul li a:not(.button):hover {
  color: #0089f7;
}
#menu > ul > li.active > a {
  color: #7a7c8d;
}
#menu > ul > li.active > a {
  color: #7a7c8d;
}
#menu > ul > li > a {
  padding: 25px 20px;
  height: 70px;
  font-weight: 500;
  box-sizing: border-box;
}
#menu ul li a {
  display: block;
  line-height: 20px;
  color: #08080e;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  cursor: pointer;
}
#menu ul > li:hover > .submenu {
  display: block;
}
#menu ul > li > .submenu {
  display: none;
  position: absolute;
  left: 10%;
  width: 80%;
  background-color: #f6f7f9;
  border-top: 1px solid #e3e6ee;
  box-shadow: 0px 10px 10px 0px rgba(58, 63, 67, 0.12);
}

#menu > ul > li.has-menu:hover > a:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: calc(50% - 7px);
  bottom: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 7px 7px;
  border-color: transparent transparent #e3e6ee transparent;
}#menu > ul > li.has-menu:hover > a:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  left: calc(50% - 6px);
  bottom: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent #f6f7f9 transparent;
}

#menu .submenu.with-tabs .tabs-nav li.active a:after {
  display: block;
}

#menu .submenu.with-tabs .tabs-nav li a:after {
  content: "";
  display: none;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/move-left.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
      display: block !important;
  }

  #menu ul {
      display: none;
      /* flex-direction: column; */
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  #menu ul li {
      margin: 10px 0;
  }

  #menu ul li a {
      padding: 10px;
      display: block;
  }

  #menu.active ul {
      display: flex;
      justify-content: flex-end;
  }

  .right.hide-desktop {
      display: none;
  }

  #menu .submenu.with-tabs .wrapper {
    display: flex
;
    text-align: right;
    padding: 40px 0 50px;
    flex-direction: column;
}
#menu .submenu.with-tabs .tabs-nav li {
  float: left !important;
}
#menu .submenu.with-tabs .tab {
  width: 100%;
}

#menu ul > li > .submenu {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  background-color: #f6f7f9;
  border-top: 1px solid #e3e6ee;
  box-shadow: 0px 10px 10px 0px rgba(58, 63, 67, 0.12);
}

#menu .submenu.with-tabs .tabs-nav {
  /* width: 100%; */
  flex-shrink: 0;
  border-left: 1px solid #e3e6ee;
  margin-left: 0;
  flex-direction: column;
}

}

#menu .tab ul li {
  float: right;
}

.form_row{
  width: 100%;
}

.info-prop img {
  height: 22px;
}

.sec-title--two h2 {
  color: var(--white-color);
  font-size: 30px;
  margin-top: 10px;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  #menu.active ul {
    display: flex
;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: flex-start;
}
  #menu .tabs-nav{
      display: none;
      flex-direction: column;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  #menu.active ul {
    display: flex
;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
}

}

@media (max-width: 767px) {
  .tab {
      display: none !important; 
  }
  .tab.active {
      display: block !important; 
  }

  #menu.active .nav_act {
  top: 16px;
    left: 0;
    width: 57%;
    display: flex
;
    flex-direction: row;
    justify-content: flex-start;
}
#menu .submenu.with-tabs .tab ul li {
  width: 100%;
  margin: 0 1%;
  margin-bottom: 5px;
}

}

.tours-item-para {
  height: 65px;
  overflow: hidden;
  margin-top: 8px;
  margin-bottom: 5px;
}

@media (max-width: 575.98px) {
  .wpte-trip__search-fields {
    right: 0;
    width: 100%;
    z-index: 0;
}
  .blog-card-content .info-prop {
      gap: 7px;
      flex-direction: column;
      align-items: flex-start;
  }
.get-in-touch {
  margin: 0;
}

.overlay_statistics {
  padding-top: 3px;
}
.our-blogs {
  padding-bottom: 25px;
  padding-top: 0;
}

#header .menu-toggle {
  display: none;
  float: left;
  width: 29px;
  padding: 22px 20px;
  color: #f90400;
  font-size: 26px;
}

.search-form .input-group {
  display: flex
;
  flex-wrap: wrap;
  align-items: stretch;
  width: 53%;
}
.search-form .form-row .btn-effect {
  padding: 17px;
}


}

.sec-title--two p {
  color: var(--white-color);
  font-size: 30px;
  margin-top: 10px;
  margin-bottom: 8px;
}

.right {
    position: sticky;
    top: 30px !important;
    margin-bottom: 25px;
}

.about__img img{
  border-radius: 38px;
  height: 405px;
  width: 745px;
}

.about-img img {
  border-radius: 38px;
  height: 507px;
  width: 745px;
}

.bg-gray .social-media li a {
  width: 31px;
  height: 32px;
  font-size: 15px;
  line-height: 34px;
}

.fild_search {
    padding: 18px 40px 12px 58px;
}

#brxe-qbjqlu {
  min-height: 497px !important;
}

.project-facilities ul li{
  margin-left: 84px;
  font-size: 19px;
}

.project-facilities ul li::before {
  font: var(--fa-font-solid);
  content: "\f0e7";
  width: 20px;
  height: 20px;
  color: #dc3545;
  margin-left: 8px;
  font-size: 16px;
}

.info-prop>div {
  border-left: 2px solid rgba(82, 85, 90, 0.1);
  padding-left: 23px;
}