


/*===========================
  01.COMMON CSS 
===========================*/
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Story+Script&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Courgette&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Billy Ohio";
  src: url("../fonts/Billy%20Ohio.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
::-moz-selection {
  background-color: var(--primary-color1);
  color: var(--white-color);
}
::selection {
  background-color: var(--primary-color1);
  color: var(--white-color);
}

:root {
  --font-casa-yaax: "Josefin Sans", sans-serif;
  --font-poppins: "Bricolage Grotesque", sans-serif;
  --font-roboto: "Bricolage Grotesque", sans-serif;
  --font-courgette: "Courgette", sans-serif;
  --font-billy-ohio: "Billy Ohio", sans-serif;
  --font-caveat: "Story Script", sans-serif;
  --white-color: #fff;
  --white-color-opc: 255, 255, 255;
  --black-color: #110F0F;
  --black-color-opc: 17, 15, 15;
  --title-color: #110F0F;
  --title-color-opc: 17, 15, 15;
  --title-color2: #F6F3BC;
  --title-color2-opc: 246, 243, 188;
  --text-color: #525252;
  --white-text-color: #AAAAAA;
  --primary-color1: #1A4FBF;
  --primary-color1-opc: 23, 129, 254;
  --primary-color2: #0EA9D0;
  --primary-color2-opc: 14, 169, 208;
  --primary-color3: #285340;
  --primary-color3-opc: 40, 83, 64;
  --primary-color4: #1B2072;
  --primary-color4-opc: 27, 32, 114;
  --borders-color: #E8E8E8;
  --celeste-color:  #1A9BBF;
}

/*================================================
02. Mixins Css
=================================================*/
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-roboto);
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
body.experience-01 .daterangepicker td.active,
body.experience-01 .daterangepicker td.active:hover {
  background-color: var(--primary-color2);
}
body.experience-01 .daterangepicker td.in-range {
  background-color: rgba(var(--primary-color2-opc), 0.2);
}
body.experience-01 .daterangepicker td.active {
  background-color: var(--primary-color2);
}
body.experience-01 .daterangepicker .btn-primary {
  background-color: var(--primary-color2);
  border-color: var(--primary-color2);
}
body.experience-01 .daterangepicker.single td.active,
body.experience-01 .daterangepicker.single td.active:hover {
  background-color: var(--primary-color2);
}
body.experience-01 .daterangepicker.single .btn-primary {
  background-color: var(--primary-color2);
  border-color: var(--primary-color2);
}
body.package-details-page .daterangepicker .drp-calendar {
  min-width: 400px;
}
@media (max-width: 576px) {
  body.package-details-page .daterangepicker .drp-calendar {
    min-width: unset;
  }
}
body.package-details-page .daterangepicker .calendar-table th {
  padding: 4px;
  color: #aaa;
}
body.package-details-page .daterangepicker .calendar-table th.month {
  color: var(--title-color);
  font-size: 14px;
}
body.package-details-page .daterangepicker .calendar-table td {
  border-radius: 50%;
  padding: 5px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-poppins);
  width: 50px;
  height: 50px;
}
@media (max-width: 576px) {
  body.package-details-page .daterangepicker .calendar-table td {
    width: 40px;
    height: 40px;
  }
}
body.package-details-page .daterangepicker td.active,
body.package-details-page .daterangepicker td.active:hover {
  background-color: var(--primary-color1);
}
body.package-details-page .daterangepicker .monthselect {
  outline: none;
}
body.package-details-page .daterangepicker td.in-range {
  background-color: rgba(var(--primary-color1-opc), 0.1);
}
body.package-details-page .daterangepicker td.active {
  background-color: var(--primary-color1);
}
body.package-details-page .daterangepicker button {
  outline: none;
}
body.package-details-page .daterangepicker .btn-primary {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}
body.package-details-page .daterangepicker.single td.active,
body.package-details-page .daterangepicker.single td.active:hover {
  background-color: var(--primary-color1);
}
body.package-details-page .daterangepicker.single .monthselect {
  outline: none;
}
body.package-details-page .daterangepicker.single button {
  outline: none;
}
body.package-details-page .daterangepicker.single .btn-primary {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}

h1,
h2,
h4,
h5,
h6 {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-weight: 600;
  line-height: 1.4;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  h2 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 24px;
    line-height: 1.4;
  }
}

h4 {
  font-size: 25px;
}
@media (max-width: 576px) {
  h4 {
    font-size: 22px;
  }
}

h5 {
  font-size: 20px;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 576px) {
  p {
    font-size: 16px;
  }
}

input {
  border: none;
  outline: none;
}

button {
  outline: none;
  border: none;
}

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

a {
  text-decoration: none;
}

.pt-100 {
  padding-top: 100px;
}
@media (max-width: 991px) {
  .pt-100 {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .pt-100 {
    padding-top: 70px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .mb-100 {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .mb-100 {
    margin-bottom: 70px;
  }
}

.mb-60 {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .mb-60 {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .mb-60 {
    margin-bottom: 40px;
  }
}

.mb-70 {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .mb-70 {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .mb-70 {
    margin-bottom: 40px;
  }
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-50 {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .mb-50 {
    margin-bottom: 40px;
  }
}

/* Ball view
============= */

/* Ball drag
============= */

/* Ball close
============== */

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.8, 0.8, 0.8);
  }
  50% {
    opacity: 1;
  }
}
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--borders-color);
  background-color: transparent;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap svg {
  fill: none;
  transition: 0.5s;
}
.progress-wrap svg.progress-circle {
  stroke: var(--primary-color1);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}
.progress-wrap .arrow {
  fill: var(--primary-color1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.progress-wrap:hover {
  background-color: var(--primary-color1);
}
.progress-wrap:hover .arrow {
  fill: var(--white-color);
}
.marker{
  color: var(--celeste-color);

}
.primary-btn1 {
  background-color: var(--primary-color1);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 15px;
  color: var(--white-color);
  letter-spacing: 0.48px;
  line-height: 1;
  padding: 20px 24px;
  border-radius: 10px;
  position: relative;
  align-items: center;
  display: inline-flex;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
}
.primary-btn1 > span {
  transition: opacity 0.3s, transform 0.3s;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  background-color: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.primary-btn1 > span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 0;
  opacity: 0;
  transform: translate(0, 100%);
  transition: opacity 0.3s, transform 0.3s;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  white-space: nowrap;
}
.primary-btn1 > span svg {
  fill: var(--white-color);
  transition: 0.5s;
}
.primary-btn1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 102% 102%;
  border-radius: inherit;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  opacity: 0;
  z-index: -1;
}
.primary-btn1::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(110%);
  background-color: var(--black-color);
  overflow: hidden;
  transition: opacity 0.5s, transform 0.5s;
  z-index: -1;
}
.primary-btn1:hover {
  color: var(--white-color);
}
.primary-btn1:hover .arrow {
  fill: rgba(255, 255, 255, 0.15);
}
.primary-btn1:hover > span {
  transform: translateY(-150%);
  opacity: 0;
}
.primary-btn1:hover > span:nth-child(2) {
  opacity: 1;
  transform: translate(0%, -50%);
}
.primary-btn1:hover::after {
  transform: translate(0);
  border-radius: 0;
}
.primary-btn1.black-bg {
  background-color: var(--black-color);
  color: var(--white-color);
}
.primary-btn1.black-bg::after {
  background-color: var(--primary-color1);
}
.primary-btn1.black-bg:hover {
  color: var(--white-color);
}
.primary-btn1.two {
  border-radius: 100px;
}
.primary-btn1.three {
  background-color: var(--primary-color2);
}
.primary-btn1.three.black-bg {
  background-color: var(--black-color);
  color: var(--white-color);
}
.primary-btn1.three.black-bg::after {
  background-color: var(--primary-color2);
}
.primary-btn1.three.black-bg:hover {
  color: var(--white-color);
}
.primary-btn1.five {
  background-color: var(--primary-color4);
}

.select {
  margin-bottom: 25px;
}

.section-title h2 {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .section-title h2 {
    font-size: 37px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .section-title h2 {
    font-size: 28px;
    line-height: 1.3;
  }
}
.section-title p {
  color: var(--text-color);
  font-family: var(--font-roboto);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  padding-top: 20px;
  max-width: 545px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .section-title p {
    padding-top: 15px;
  }
}
@media (max-width: 576px) {
  .section-title p {
    padding-top: 10px;
    font-size: 16px;
  }
}
.section-title.white h2 {
  color: var(--white-color);
}
.section-title.white p {
  color: #AAAAAA;
}
.section-title.two p {
  margin-left: 0;
}

.slider-btn-grp {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 767px) {
  .slider-btn-grp {
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .slider-btn-grp {
    gap: 30px;
  }
}
.slider-btn-grp .slider-btn {
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid var(--black-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.slider-btn-grp .slider-btn svg {
  fill: none;
  stroke: var(--title-color);
  transition: 0.5s;
}
@media (max-width: 767px) {
  .slider-btn-grp .slider-btn {
    min-width: 35px;
    max-width: 35px;
    height: 35px;
  }
  .slider-btn-grp .slider-btn svg {
    width: 12px;
  }
}
.slider-btn-grp .slider-btn:hover {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}
.slider-btn-grp .slider-btn:hover svg {
  stroke: var(--white-color);
}
.slider-btn-grp .slider-btn.swiper-button-disabled {
  opacity: 0.5;
}
.slider-btn-grp.white .slider-btn {
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.slider-btn-grp.white .slider-btn i {
  color: rgba(255, 255, 255, 0.4);
}
.slider-btn-grp.white .slider-btn:hover {
  border-color: var(--white-color);
  background-color: var(--white-color);
}
.slider-btn-grp.white .slider-btn:hover i {
  color: var(--title-color);
}
.slider-btn-grp.two .slider-btn {
  background-color: var(--white-color);
  border-color: var(--borders-color);
}
.slider-btn-grp.two .slider-btn svg {
  stroke: none;
  fill: var(--title-color);
}
.slider-btn-grp.two .slider-btn:hover {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}
.slider-btn-grp.two .slider-btn:hover svg {
  fill: var(--white-color);
}
.slider-btn-grp.three .slider-btn {
  background-color: var(--white-color);
  border-color: var(--borders-color);
}
.slider-btn-grp.three .slider-btn svg {
  stroke: none;
  fill: var(--title-color);
}
.slider-btn-grp.three .slider-btn:hover {
  background-color: var(--primary-color3);
  border-color: var(--primary-color3);
}
.slider-btn-grp.three .slider-btn:hover svg {
  fill: var(--title-color2);
}
.paginations .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  background-color: rgba(170, 170, 170, 0.5);
  opacity: 1;
  position: relative;
  border-radius: 50%;
}
.paginations .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 50px;
  background-color: var(--primary-color1);
}
.paginations.two .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--black-color);
}
.paginations.three .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary-color3);
}

.daterangepicker td.start-date.end-date {
  border-radius: 50%;
}

.daterangepicker .drp-calendar {
  min-width: 270px;
}
.daterangepicker .calendar-table th {
  padding: 4px;
  color: #aaa;
}
.daterangepicker .calendar-table th.month {
  color: var(--title-color);
  font-size: 14px;
}
.daterangepicker .calendar-table td {
  border-radius: 50%;
  padding: 5px;
  font-size: 13px;
  font-family: var(--font-poppins);
}
.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: var(--primary-color1);
}
.daterangepicker .monthselect {
  outline: none;
}
.daterangepicker td.in-range {
  background-color: rgba(var(--primary-color1-opc), 0.1);
}
.daterangepicker td.active {
  background-color: var(--primary-color1);
}
.daterangepicker button {
  outline: none;
}
.daterangepicker .btn-primary {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}
.daterangepicker.single td.active,
.daterangepicker.single td.active:hover {
  background-color: var(--primary-color1);
}
.daterangepicker.single .monthselect {
  outline: none;
}
.daterangepicker.single button {
  outline: none;
}
.daterangepicker.single .btn-primary {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}

/*=====================================
  03. Header CSS
========================================*/
@keyframes fade-down {
  0% {
    opacity: 0;
    transform: scaleY(0);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
  }
}
@keyframes zoom-In-effect {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(10px) translateX(-50%);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: translateY(0px) translateX(-50%);
    visibility: visible;
  }
}
@keyframes fade-up2 {
  0% {
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
  }
}
@keyframes smooth-header {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes qode-draw {
  0%, 100% {
    clip-path: inset(-2px -2px);
  }
  42% {
    clip-path: inset(-2px -2px -2px 100%);
  }
  43% {
    clip-path: inset(-2px 100% -3px -2px);
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(10px) translateX(-50%);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: translateY(0px) translateX(-50%);
    visibility: visible;
  }
}
@keyframes fade-up2 {
  0% {
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
  }
}
@keyframes fade-up2 {
  0% {
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
  }
}
@keyframes fade-up2 {
  0% {
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
  }
}
@keyframes smooth-header {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes fade-up2 {
  0% {
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
  }
}
@keyframes qode-draw {
  0%, 100% {
    clip-path: inset(-2px -2px);
  }
  42% {
    clip-path: inset(-2px -2px -2px 100%);
  }
  43% {
    clip-path: inset(-2px 100% -3px -2px);
  }
}

header.style-3 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.8s ease-out 0s;
  background-color: transparent;
  padding: 0 70px;
  border-bottom: 1px solid rgba(var(--white-color-opc), 0.1);
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-3 {
    padding: 0 30px;
  }
}
@media (max-width: 1399px) {
  header.style-3 {
    padding: 0 10px;
  }
}
@media (max-width: 1199px) {
  header.style-3 {
    padding: 0;
  }
}
@media (max-width: 1199px) {
  header.style-3 {
    padding: 18px 0;
  }
}
header.style-3.sticky {
  box-sizing: border-box;
  background-color: var(--primary-color1);
  box-shadow: 5px 3px 40px rgba(0, 72, 88, 0.1);
  z-index: 999;
  opacity: 0.8;
}
@keyframes smooth-header {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
header.style-3 .header-logo {
  width: 250px;
}
@media (max-width: 1399px) {
  header.style-3 .header-logo {
    width: 105px;
  }
}
header.style-3 .logo-and-menu-area {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 1799px) {
  header.style-3 .logo-and-menu-area {
    gap: 80px;
  }
}
@media (max-width: 1699px) {
  header.style-3 .logo-and-menu-area {
    gap: 60px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-3 .logo-and-menu-area {
    gap: 40px;
  }
}
@media (max-width: 1399px) {
  header.style-3 .logo-and-menu-area {
    gap: 20px;
  }
}
header.style-3 .contact-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1199px) {
  header.style-3 .contact-area {
    margin-bottom: 15px;
  }
}
header.style-3 .contact-area .icon {
  min-width: 36px;
  max-width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--borders-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
header.style-3 .contact-area .icon svg {
  fill: var(--white-color);
}
header.style-3 .contact-area .content span {
  color: var(--white-color);
  font-family: var(--font-roboto);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 3px;
  display: block;
}
header.style-3 .contact-area .content a {
  color: var(--white-color);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  transition: 0.5s;
}
@media (max-width: 1399px) {
  header.style-3 .contact-area .content a {
    font-size: 17px;
  }
}
header.style-3 .contact-area .content a:hover {
  color: var(--primary-color1);
}
@keyframes fade-up2 {
  0% {
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
  }
}
header.style-3 .nav-right {
  display: flex;
  align-items: center;
  gap: 45px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-3 .nav-right {
    gap: 35px;
  }
}
@media (max-width: 1399px) {
  header.style-3 .nav-right {
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  header.style-3 .nav-right {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  header.style-3 .nav-right {
    gap: 25px;
  }
}
@media (max-width: 576px) {
  header.style-3 .nav-right {
    gap: 15px;
  }
}
header.style-3 .nav-right .mobile-menu-btn {
  display: none;
  visibility: hidden;
}
@media (max-width: 1199px) {
  header.style-3 .nav-right .mobile-menu-btn {
    display: flex;
    align-items: center;
    visibility: visible;
    justify-content: center;
    position: relative;
    min-width: 48px;
    max-width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid var(--borders-color);
  }
  header.style-3 .nav-right .mobile-menu-btn svg {
    fill: var(--white-color);
  }
  header.style-3 .nav-right .mobile-menu-btn:hover svg {
    animation: qode-draw 0.75s cubic-bezier(0.57, 0.39, 0, 0.86) 1 forwards;
  }
}
@media (max-width: 576px) {
  header.style-3 .nav-right .mobile-menu-btn {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
  }
  header.style-3 .nav-right .mobile-menu-btn svg {
    width: 18px;
  }
}
@keyframes qode-draw {
  0%, 100% {
    clip-path: inset(-2px -2px);
  }
  42% {
    clip-path: inset(-2px -2px -2px 100%);
  }
  43% {
    clip-path: inset(-2px 100% -3px -2px);
  }
}
header.style-3 .primary-btn1 {
  padding: 16px 28px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  header.style-3 .primary-btn1 {
    padding: 16px 24px;
  }
}
@media (min-width: 1200px) {
  header.style-3 .primary-btn1::after {
    background-color: var(--white-color);
  }
  header.style-3 .primary-btn1:hover {
    color: var(--title-color);
  }
  header.style-3 .primary-btn1:hover svg {
    fill: var(--title-color);
  }
}
header.style-3 .main-menu {
  display: inline-block;
}
header.style-3 .main-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header.style-3 .main-menu > ul > li {
  display: inline-block;
  position: relative;
  padding: 28px 0;
}
@media (max-width: 1399px) {
  header.style-3 .main-menu > ul > li {
    padding: 28px 2px;
  }
}
@media (min-width: 1200px) {
  header.style-3 .main-menu > ul > li:first-child {
    padding-left: 0;
  }
  header.style-3 .main-menu > ul > li:last-child {
    padding-right: 0;
  }
}
header.style-3 .main-menu > ul > li > a {
  color: var(--white-color);
  display: block;
  letter-spacing: 0.4px;
  padding: 5px 12px;
  line-height: 1;
  position: relative;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.5s ease-out 0s;
  position: relative;
  border: 1px dashed transparent;
  border-radius: 100px;
}
@media (max-width: 1399px) {
  header.style-3 .main-menu > ul > li > a {
    font-size: 14px;
    padding: 4px 9px;
  }
}
header.style-3 .main-menu > ul > li > a i {
  font-size: 11px;
  color: var(--white-color);
  transition: all 0.55s ease-in-out;
}
header.style-3 .main-menu > ul > li:hover > a {
  border-color: rgba(var(--white-color-opc), 0.3);
  background-color: rgba(var(--white-color-opc), 0.2);
  -webkit-backdrop-filter: blur(150px);
          backdrop-filter: blur(150px);
}
header.style-3 .main-menu > ul > li:hover > a i {
  color: var(--white-color);
}
header.style-3 .main-menu > ul > li.active > a {
  color: var(--white-color);
  border-color: rgba(var(--white-color-opc), 0.3);
  background-color: rgba(var(--white-color-opc), 0.2);
  -webkit-backdrop-filter: blur(150px);
          backdrop-filter: blur(150px);
}
header.style-3 .main-menu > ul > li.active > a i {
  color: var(--white-color);
}
header.style-3 .main-menu > ul > li.active > i {
  color: var(--primary-color1);
}
header.style-3 .mobile-logo-area .mobile-logo-wrap img {
  width: 110px;
}
header.style-3 .mobile-logo-area .menu-close-btn {
  height: 38px;
  width: 38px;
  border-radius: 10px;
  border: 1px solid var(--borders-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.35s;
}
header.style-3 .mobile-logo-area .menu-close-btn i {
  font-size: 26px;
  line-height: 1;
  color: var(--title-color);
  transition: 0.35s;
}
header.style-3 .mobile-logo-area .menu-close-btn:hover {
  background-color: var(--title-color);
}
header.style-3 .mobile-logo-area .menu-close-btn:hover i {
  color: var(--white-color);
}
@media only screen and (max-width: 1199px) {
  header.style-3 .main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    padding: 30px 20px !important;
    z-index: 99999;
    height: 100%;
    overflow: auto;
    background: var(--white-color);
    border-right: 1px solid var(--borders-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.03);
  }
  header.style-3 .main-menu.show-menu {
    transform: translateX(0);
  }
  header.style-3 .main-menu .menu-list {
    padding-top: 50px;
    padding-bottom: 30px;
    border: unset;
  }
  header.style-3 .main-menu > ul {
    float: none;
    text-align: left;
    padding: 5px 0px 20px 0;
  }
  header.style-3 .main-menu > ul > li {
    display: block;
    position: relative;
    padding: 0;
  }
  header.style-3 .main-menu > ul > li i {
    display: block;
  }
  header.style-3 .main-menu > ul > li > a {
    padding: 15px 0;
    display: block;
    border: unset;
    background-color: transparent;
    color: var(--title-color);
  }
  header.style-3 .main-menu > ul > li > a i {
    display: none;
  }
  header.style-3 .main-menu > ul > li:hover > a {
    color: var(--primary-color1);
  }
  header.style-3 .main-menu > ul > li:hover i {
    color: var(--primary-color1);
  }
  header.style-3 .main-menu > ul > li.active > a {
    color: var(--primary-color1);
    background-color: unset;
  }
  header.style-3 .main-menu > ul > li .bi {
    top: 13px;
    font-size: 20px;
    color: var(--title-color);
    line-height: 1;
  }
  header.style-3 .contact-area .icon {
    border-color: var(--black-color);
  }
  header.style-3 .contact-area .icon svg {
    fill: var(--black-color);
  }
  header.style-3 .contact-area .content span {
    color: var(--black-color);
  }
  header.style-3 .contact-area .content a {
    color: var(--black-color);
  }
  header.style-3 .contact-area .content a:hover {
    color: var(--primary-color1);
  }
}
header.style-3.two {
  border: unset;
}
header.style-3.two .nav-right {
  gap: 30px;
}
header.style-3.two .contact-area .icon {
  border: 1px solid rgba(238, 238, 238, 0.1);
  background-color: rgba(var(--white-color-opc), 0.2);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
@media (max-width: 1199px) {
  header.style-3.two .contact-area .icon {
    border-color: var(--black-color);
    background-color: unset;
    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
  }
}
@keyframes fade-up2 {
  0% {
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
  }
}
header.style-3.two .main-menu > ul > li > a {
  border: 1px solid transparent;
}
@media (max-width: 1199px) {
  header.style-3.two .main-menu > ul > li > a {
    border: unset;
  }
}
header.style-3.two .main-menu > ul > li:hover > a {
  border-color: rgba(var(--white-color-opc), 0.5);
  background-color: transparent;
  -webkit-backdrop-filter: unset;
          backdrop-filter: unset;
}
header.style-3.two .main-menu > ul > li:hover > a i {
  color: var(--white-color);
}
header.style-3.two .main-menu > ul > li.active > a {
  border-color: rgba(var(--white-color-opc), 0.5);
  background-color: transparent;
  -webkit-backdrop-filter: unset;
          backdrop-filter: unset;
}
header.style-3.two .main-menu > ul > li.active > a i {
  color: var(--white-color);
}
header.style-3.three {
  border-bottom: unset;
}
header.style-3.three .main-menu > ul > li > a {
  border: unset;
  padding: 5px 20px;
}
@media (max-width: 1699px) {
  header.style-3.three .main-menu > ul > li > a {
    padding: 5px 16px;
  }
}
@media (max-width: 1399px) {
  header.style-3.three .main-menu > ul > li > a {
    padding: 5px 10px;
  }
}
@media (max-width: 1199px) {
  header.style-3.three .main-menu > ul > li > a {
    padding: 12px 0;
  }
}
header.style-3.three .main-menu > ul > li.active > a {
  background-color: unset;
  border: unset;
  -webkit-backdrop-filter: unset;
          backdrop-filter: unset;
}
header.style-3.three .main-menu > ul > li:hover > a {
  background-color: unset;
  border: unset;
  -webkit-backdrop-filter: unset;
          backdrop-filter: unset;
}
header.style-3.three .nav-right .primary-btn1 {
  border-radius: 100px;
  background-color: rgba(var(--white-color-opc), 0.1);
  border: 1px solid rgba(var(--white-color-opc), 0.1);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}

/*=====================================
  04. Home1 Banner Section CSS
========================================*/
.centrado{
  display: flex;              /* activa flexbox */
  justify-content: center;    /* centra horizontalmente */
  align-items: center;        /* centra verticalmente */
  flex-direction: column;
}

.filter-wrapper {
  position: relative;
  margin-top: -115px;
  z-index: 9;
}
@media (max-width: 991px) {
  .filter-wrapper {
    margin-top: -110px;
  }
}
.filter-wrapper .filter-input-wrap {
  padding: 60px 40px 30px;
  background-color: var(--white-color);
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
}
@media (max-width: 1399px) {
  .filter-wrapper .filter-input-wrap {
    padding: 60px 30px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter-wrapper .filter-input-wrap {
    padding: 60px 20px 30px;
  }
}
@media (max-width: 767px) {
  .filter-wrapper .filter-input-wrap {
    padding: 50px 20px 30px;
  }
}
@media (max-width: 576px) {
  .filter-wrapper .filter-input-wrap {
    border-radius: 15px;
  }
}
.filter-wrapper .filter-input-wrap .filter-input {
  display: grid;
  grid-template-columns: 31% 24.5% 24.5% 14%;
  gap: 24px;
  display: none;
}
@media (max-width: 1399px) {
  .filter-wrapper .filter-input-wrap .filter-input {
    grid-template-columns: 29% 24% 24% 16%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter-wrapper .filter-input-wrap .filter-input {
    gap: 16px;
    grid-template-columns: 28% 24% 24% 18%;
  }
}
@media (max-width: 991px) {
  .filter-wrapper .filter-input-wrap .filter-input {
    grid-template-columns: repeat(2, 1fr);
    /* 3 items in first row */
    grid-auto-rows: auto;
  }
}
@media (max-width: 767px) {
  .filter-wrapper .filter-input-wrap .filter-input {
    grid-template-columns: repeat(1, 1fr);
    /* 3 items in first row */
    grid-auto-rows: auto;
  }
}
.filter-wrapper .filter-input-wrap .filter-input.show {
  display: grid;
}
.filter-wrapper .filter-input-wrap .filter-input .single-search-box .custom-select-dropdown .hotel-selected-date-checkin .daterangepicker {
  left: 0;
}
.filter-wrapper .filter-input-wrap .filter-input .single-search-box .custom-select-dropdown .hotel-selected-date-checkout .daterangepicker {
  right: 0 !important;
  left: unset;
}
@keyframes fade-down2 {
  0% {
    opacity: 0;
    transform: scaleY(0) translateX(-50%);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scaleY(1) translateX(-50%);
    visibility: visible;
  }
}
.filter-wrapper .filter-input-wrap .filter-input .primary-btn1 {
  padding: 20px 18px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter-wrapper .filter-input-wrap .filter-input .primary-btn1 {
    font-size: 14px;
    padding: 16px 24px;
  }
}
@media (max-width: 576px) {
  .filter-wrapper .filter-input-wrap .filter-input .primary-btn1 {
    padding: 17px 24px;
  }
}
.filter-wrapper .filter-input-wrap .filter-input .primary-btn1 svg {
  min-width: 18px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter-wrapper .filter-input-wrap .filter-input .primary-btn1 svg {
    min-width: 16px;
  }
}
.filter-wrapper .filter-input-wrap .filter-input.two {
  grid-template-columns: 20.5% 19% 19% 20% 13%;
}
@media (max-width: 1399px) {
  .filter-wrapper .filter-input-wrap .filter-input.two {
    grid-template-columns: 23% 18% 18% 19% 14.5%;
    gap: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter-wrapper .filter-input-wrap .filter-input.two {
    grid-template-columns: 23% 18% 18% 20% 14%;
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .filter-wrapper .filter-input-wrap .filter-input.two {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .filter-wrapper .filter-input-wrap .filter-input.two .primary-btn1 {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .filter-wrapper .filter-input-wrap .filter-input.two {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: auto;
  }
  .filter-wrapper .filter-input-wrap .filter-input.two .primary-btn1 {
    grid-column: span 1;
  }
}
.filter-wrapper .filter-input-wrap > p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
  margin-top: 15px;
}
.filter-wrapper .filter-input-wrap > p a {
  color: var(--primary-color1);
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  background: linear-gradient(to bottom, var(--primary-color1) 0%, var(--primary-color1) 98%);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0% 100%;
  transition: background-size 0.75s;
}
.filter-wrapper .filter-input-wrap > p a:hover {
  background-size: 100% 1px;
  background-position: left 100%;
}
.filter-wrapper.two {
  margin-top: -95px;
}
@media (max-width: 991px) {
  .filter-wrapper.two {
    margin-top: -100px;
  }
}
@media (max-width: 767px) {
  .filter-wrapper.two {
    margin-top: -110px;
  }
}
.filter-wrapper.two .filter-input-wrap {
  padding: 20px 40px;
}
@media (max-width: 1399px) {
  .filter-wrapper.two .filter-input-wrap {
    padding: 20px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter-wrapper.two .filter-input-wrap {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .filter-wrapper.two .filter-input-wrap {
    padding: 20px;
  }
}
.filter-wrapper.two .filter-input-wrap h6 {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15px;
}
.filter-wrapper.two .filter-input-wrap .filter-input {
  grid-template-columns: 31% 24% 24% 15%;
}
@media (max-width: 1399px) {
  .filter-wrapper.two .filter-input-wrap .filter-input {
    grid-template-columns: 29% 24% 24% 16%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter-wrapper.two .filter-input-wrap .filter-input {
    grid-template-columns: 28% 24% 24% 18%;
  }
}
@media (max-width: 991px) {
  .filter-wrapper.two .filter-input-wrap .filter-input {
    grid-template-columns: repeat(2, 1fr);
    /* 3 items in first row */
    grid-auto-rows: auto;
  }
}
@media (max-width: 767px) {
  .filter-wrapper.two .filter-input-wrap .filter-input {
    grid-template-columns: repeat(1, 1fr);
    /* 3 items in first row */
    grid-auto-rows: auto;
  }
}
.filter-wrapper.two .filter-input-wrap .filter-input.two {
  grid-template-columns: 20.5% 19% 19% 20% 13%;
}
@media (max-width: 1399px) {
  .filter-wrapper.two .filter-input-wrap .filter-input.two {
    grid-template-columns: 23% 18% 18% 19% 14.5%;
    gap: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter-wrapper.two .filter-input-wrap .filter-input.two {
    grid-template-columns: 23% 18% 18% 20% 14%;
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .filter-wrapper.two .filter-input-wrap .filter-input.two {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .filter-wrapper.two .filter-input-wrap .filter-input.two .primary-btn1 {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .filter-wrapper.two .filter-input-wrap .filter-input.two {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: auto;
  }
  .filter-wrapper.two .filter-input-wrap .filter-input.two .primary-btn1 {
    grid-column: span 1;
  }
}
.filter-wrapper.two .filter-input-wrap > p a {
  color: var(--primary-color2);
  background: linear-gradient(to bottom, var(--primary-color2) 0%, var(--primary-color2) 98%);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0% 100%;
  transition: background-size 0.75s;
}
.filter-wrapper.two .filter-input-wrap > p a:hover {
  background-size: 100% 1px;
  background-position: left 100%;
}
.filter-wrapper.three {
  margin-top: -95px;
}
@media (max-width: 991px) {
  .filter-wrapper.three {
    margin-top: -100px;
  }
}
@media (max-width: 767px) {
  .filter-wrapper.three {
    margin-top: -110px;
  }
}
.filter-wrapper.three .filter-input-wrap {
  padding: 20px 40px;
  background-color: var(--primary-color4);
}
@media (max-width: 1399px) {
  .filter-wrapper.three .filter-input-wrap {
    padding: 20px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter-wrapper.three .filter-input-wrap {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .filter-wrapper.three .filter-input-wrap {
    padding: 20px;
  }
}
.filter-wrapper.three .filter-input-wrap h6 {
  color: var(--white-color);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15px;
}
.filter-wrapper.three .filter-input-wrap .filter-input .primary-btn1 span svg {
  fill: none;
  stroke: var(--title-color);
}
.filter-wrapper.three .filter-input-wrap .filter-input .primary-btn1::after {
  background-color: var(--black-color);
}
.filter-wrapper.three .filter-input-wrap .filter-input .primary-btn1:hover span svg {
  stroke: var(--white-color);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter-wrapper.three .filter-input-wrap .filter-input .primary-btn1 {
    padding: 16px 14px;
  }
}
.filter-wrapper.three .filter-input-wrap > p {
  color: var(--white-color);
}
.filter-wrapper.three .filter-input-wrap > p a {
  color: var(--white-color);
  font-weight: 700;
  background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 98%);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0% 100%;
  transition: background-size 0.75s;
}
.filter-wrapper.three .filter-input-wrap > p a:hover {
  background-size: 100% 1px;
  background-position: left 100%;
}
.filter-wrapper.hotel-and-resort {
  margin-top: unset;
}
.filter-wrapper.hotel-and-resort .filter-input-wrap {
  padding: 20px 40px;
}
@media (max-width: 1399px) {
  .filter-wrapper.hotel-and-resort .filter-input-wrap {
    padding: 20px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter-wrapper.hotel-and-resort .filter-input-wrap {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .filter-wrapper.hotel-and-resort .filter-input-wrap {
    padding: 20px;
  }
}
.filter-wrapper.hotel-and-resort .filter-input-wrap h6 {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15px;
}
.filter-wrapper.hotel-and-resort .filter-input-wrap .filter-input {
  grid-template-columns: 31% 24% 24% 15%;
}
@media (max-width: 1399px) {
  .filter-wrapper.hotel-and-resort .filter-input-wrap .filter-input {
    grid-template-columns: 29% 24% 24% 16%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter-wrapper.hotel-and-resort .filter-input-wrap .filter-input {
    grid-template-columns: 28% 24% 24% 18%;
  }
}
@media (max-width: 991px) {
  .filter-wrapper.hotel-and-resort .filter-input-wrap .filter-input {
    grid-template-columns: repeat(2, 1fr);
    /* 3 items in first row */
    grid-auto-rows: auto;
  }
}
@media (max-width: 767px) {
  .filter-wrapper.hotel-and-resort .filter-input-wrap .filter-input {
    grid-template-columns: repeat(1, 1fr);
    /* 3 items in first row */
    grid-auto-rows: auto;
  }
}
.filter-wrapper.hotel-and-resort .filter-input-wrap .filter-input.two {
  grid-template-columns: 23% 23% 23% 23% ;
}
@media (max-width: 1399px) {
  .filter-wrapper.hotel-and-resort .filter-input-wrap .filter-input.two {
    grid-template-columns: 23% 18% 18% 19% 14.5%;
    gap: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter-wrapper.hotel-and-resort .filter-input-wrap .filter-input.two {
    grid-template-columns: 23% 18% 18% 20% 14%;
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .filter-wrapper.hotel-and-resort .filter-input-wrap .filter-input.two {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .filter-wrapper.hotel-and-resort .filter-input-wrap .filter-input.two .primary-btn1 {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .filter-wrapper.hotel-and-resort .filter-input-wrap .filter-input.two {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: auto;
  }
  .filter-wrapper.hotel-and-resort .filter-input-wrap .filter-input.two .primary-btn1 {
    grid-column: span 1;
  }
}
.filter-wrapper.hotel-and-resort .filter-input-wrap .travel-rating {
  display: flex;
  gap: 5px;
  align-items: start;
}
.filter-wrapper.hotel-and-resort .filter-input-wrap .travel-rating svg {
  fill: #E4C200;
  margin-top: 6px;
}
.filter-wrapper.hotel-and-resort .filter-input-wrap .travel-rating p {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .filter-wrapper.hotel-and-resort .filter-input-wrap .travel-rating p {
    font-size: 15px;
  }
}
.filter-wrapper.hotel-and-resort .filter-input-wrap .travel-rating p strong {
  color: var(--title-color);
  font-weight: 600;
}

/*=====================================
  05. Home1 Offer Section CSS
========================================*/

/*=====================================
  06. Home1 Destination Section CSS
========================================*/

/*=====================================
  07. Home1 Service Section CSS
========================================*/
.one-two strong { color: var(--primary-color1) }
.service-wrapper {
  padding: 60px 50px;
  border-radius: 20px;
  background-color: #F2F2FF;
}
@media (max-width: 1399px) {
  .service-wrapper {
    padding: 60px 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-wrapper {
    padding: 50px 15px;
  }
}
@media (max-width: 576px) {
  .service-wrapper {
    padding: 45px 15px;
    border-radius: 15px;
  }
}
.service-wrapper .section-title {
  text-align: center;
  margin-bottom: 30px;
}
.service-wrapper .section-title h2 {
  font-size: 32px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .service-wrapper .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .service-wrapper .section-title h2 {
    font-size: 28px;
  }
}
.service-wrapper .section-title svg {
  fill: rgba(82, 82, 82, 0.15);
  width: 100%;
}
.service-wrapper .service-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .service-wrapper .service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 25px;
  }
}
@media (max-width: 767px) {
  .service-wrapper .service-list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
  }
}
@media (max-width: 576px) {
  .service-wrapper .service-list {
    row-gap: 22px;
    margin-bottom: 35px;
  }
}
.service-wrapper .service-list .single-service {
  display: flex;
  gap: 20px;
  max-width: 370px;
  width: 100%;
}
@media (max-width: 1399px) {
  .service-wrapper .service-list .single-service {
    gap: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-wrapper .service-list .single-service {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .service-wrapper .service-list .single-service {
    max-width: unset;
  }
}
@media (max-width: 576px) {
  .service-wrapper .service-list .single-service {
    gap: 12px;
  }
}
.service-wrapper .service-list .single-service .icon {
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFB52A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}
.service-wrapper .service-list .single-service .icon svg {
  fill: var(--title-color);
}
.service-wrapper .service-list .single-service .content h4 {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .service-wrapper .service-list .single-service .content h4 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .service-wrapper .service-list .single-service .content h4 {
    margin-bottom: 5px;
  }
}
@media (max-width: 576px) {
  .service-wrapper .service-list .single-service .content h4 {
    font-size: 19px;
  }
}
.service-wrapper .service-list .single-service .content p {
  color: var(--text-color);
  font-family: var(--font-roboto);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .service-wrapper .service-list .single-service .content p {
    font-size: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-wrapper .service-list .single-service .content p {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .service-wrapper .service-list .single-service .content p {
    font-size: 14px;
  }
}
.service-wrapper .service-list .single-service:nth-child(2) .icon {
  background-color: #0AB5FF;
}
.service-wrapper.two {
  background-image: url(../images/bg.jpg), linear-gradient(180deg, #F1FEBF 0%, #F1FEBF 100%);
  background-size: cover;
  background-repeat: no-repeat;
}
.service-wrapper.two .section-title h2 {
  font-size: 25px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .service-wrapper.two .section-title h2 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .service-wrapper.two .section-title h2 {
    font-size: 22px;
    margin-bottom: 5px;
  }
}
.service-wrapper.two .section-title svg {
  fill: rgba(82, 82, 82, 0.15);
  width: 100%;
}
@media (max-width: 576px) {
  .service-wrapper.two .bottom-area {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.service-wrapper.three {
  background-image: url(../images/home3-service-bg.png), linear-gradient(180deg, #FFF2E2 0%, #FFF2E2 100%);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 45px 50px;
}
@media (max-width: 1399px) {
  .service-wrapper.three {
    padding: 45px 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-wrapper.three {
    padding: 40px 15px;
  }
}
@media (max-width: 576px) {
  .service-wrapper.three {
    padding: 40px 15px;
    border-radius: 15px;
  }
}
.service-wrapper.three .section-title {
  text-align: start;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
@media (max-width: 576px) {
  .service-wrapper.three .section-title {
    margin-bottom: 30px;
    gap: 15px;
  }
}
.service-wrapper.three .section-title h2 {
  max-width: 400px;
  width: 100%;
  line-height: 40px;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-wrapper.three .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .service-wrapper.three .section-title h2 {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .service-wrapper.three .section-title h2 {
    font-size: 24px;
    line-height: 36px;
  }
}
.service-wrapper.three .section-title h2 span {
  position: relative;
  z-index: -1;
}
.service-wrapper.three .section-title h2 span::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/service-title-shape.svg);
  width: 130px;
  height: 53px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .service-wrapper.three .section-title h2 span::before {
    top: -6px;
  }
}
@media (max-width: 576px) {
  .service-wrapper.three .section-title h2 span::before {
    width: 100px;
    height: 46px;
    background-size: contain;
    top: -3px;
  }
}
.service-wrapper.three .section-title a {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: 0.5s;
  margin-bottom: 10px;
}
.service-wrapper.three .section-title a svg {
  fill: none;
  stroke: var(--title-color);
  transition: 0.5s;
}
.service-wrapper.three .section-title a:hover {
  color: var(--primary-color1);
}
.service-wrapper.three .section-title a:hover svg {
  transform: rotate(45deg);
  stroke: var(--primary-color1);
}
.service-wrapper.three .service-list {
  margin-bottom: 0;
}
.service-wrapper.five {
  background-image: url(../images/home6-service-bg.png), linear-gradient(180deg, #F2F2FF 0%, #F2F2FF 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}
.service-wrapper.five .section-title {
  max-width: 510px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 45px;
}
.service-wrapper.five .section-title h2 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .service-wrapper.five .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .service-wrapper.five .section-title h2 {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .service-wrapper.five .section-title h2 {
    font-size: 25px;
    line-height: 36px;
  }
}
.service-wrapper.five .section-title h2 span {
  font-family: var(--font-courgette);
  font-weight: 400;
}
.service-wrapper.five .service-list .single-service:nth-child(1) .icon {
  background-color: #FFE100;
}
.package-info-list .bi{
  color: var(--primary-color2);
}
/*=====================================
  08. Home1 Travel Package Section CSS
========================================*/
.package-card {
  padding: 10px;
  border-radius: 20px;
  border: 1px solid var(--borders-color);
  background-color: var(--white-color);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card {
    padding: 5px;
  }
}
@media (max-width: 576px) {
  .package-card {
    padding: 5px;
  }
}
.package-card .package-img-wrap {
  position: relative;
}
.package-card .package-img-wrap .package-img {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 10px;
}
.package-card .package-img-wrap .package-img img {
  border-radius: 10px;
  min-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-out;
}
.package-card .package-img-wrap .package-img::after {
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1;
}
.package-card .package-img-wrap .slider-pagi-wrap .paginations .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #F0F0F0;
}
.package-card .package-img-wrap .slider-pagi-wrap .paginations .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 25px;
  background-color: var(--primary-color1);
}
.package-card .package-img-wrap .slider-btn-grp .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  z-index: 1;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  border: unset;
  background-color: rgba(var(--white-color-opc), 0.3);
  -webkit-backdrop-filter: blur(80px);
          backdrop-filter: blur(80px);
  opacity: 0;
}
.package-card .package-img-wrap .slider-btn-grp .slider-btn svg {
  fill: var(--white-color);
  stroke: none;
}
.package-card .package-img-wrap .slider-btn-grp .slider-btn:hover {
  background-color: var(--white-color);
  -webkit-backdrop-filter: unset;
          backdrop-filter: unset;
}
.package-card .package-img-wrap .slider-btn-grp .slider-btn:hover svg {
  fill: var(--primary-color1);
}
.package-card .package-content {
  padding: 20px 15px 15px;
}
@media (max-width: 1399px) {
  .package-card .package-content {
    padding: 20px 10px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card .package-content {
    padding: 20px 5px 15px;
  }
}
.package-card .package-content h5 {
  margin-bottom: 10px;
}
.package-card .package-content h5 a {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  transition: 0.5s;
}
.package-card .package-content h5 a:hover {
  color: var(--primary-color1);
}
@media (max-width: 1199px) {
  .package-card .package-content h5 a {
    font-size: 18px;
  }
}
.package-card .package-content .location-and-time {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card .package-content .location-and-time {
    gap: 5px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .package-card .package-content .location-and-time {
    gap: 5px;
  }
}
@media (max-width: 576px) {
  .package-card .package-content .location-and-time {
    margin-bottom: 25px;
  }
}
.package-card .package-content .location-and-time .location {
  display: flex;
  align-items: center;
  gap: 5px;
}
.package-card .package-content .location-and-time .location svg {
  fill: var(--text-color);
  transition: 0.5s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card .package-content .location-and-time .location svg {
    width: 12px;
  }
}
.package-card .package-content .location-and-time .location a {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  transition: 0.5s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card .package-content .location-and-time .location a {
    font-size: 13px;
  }
}
.package-card .package-content .location-and-time .location a:hover {
  color: var(--primary-color1);
}
.package-card .package-content .location-and-time .arrow {
  fill: var(--text-color);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card .package-content .location-and-time .arrow {
    width: 22px;
  }
}
.package-card .package-content .location-and-time span {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card .package-content .location-and-time span {
    font-size: 13px;
  }
}
.package-card .package-content .btn-and-price-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 5px;
}
.package-card .package-content .btn-and-price-area .primary-btn1 {
  padding: 13px 14px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card .package-content .btn-and-price-area .primary-btn1 {
    font-size: 14px;
    padding: 12px 13px;
  }
}
@media (max-width: 576px) {
  .package-card .package-content .btn-and-price-area .primary-btn1 {
    font-size: 14px;
    padding: 12px 13px;
  }
}
.package-card .package-content .divider {
  fill: var(--borders-color);
  width: 100%;
}
.package-card .package-content .bottom-area {
  padding-top: 5px;
}
.package-card .package-content .bottom-area ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}
.package-card .package-content .bottom-area ul li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--title-color);
  font-family: var(--font-roboto);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
}
.package-card .package-content .bottom-area ul li svg {
  fill: var(--text-color);
}
.package-card .package-content .bottom-area ul li .info {
  z-index: 1;
  cursor: pointer;
}
.package-card .package-content .bottom-area ul li .info svg {
  fill: #AAAAAA;
}
.package-card:hover .package-img-wrap .package-img img {
  transform: scale(1.1);
}
.package-card:hover .package-img-wrap .package-img::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.package-card:hover .package-img-wrap .slider-btn-grp .slider-btn {
  opacity: 1;
}
.package-card.two .package-img-wrap .slider-pagi-wrap .paginations .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary-color2);
}
.package-card.two .package-content h5 a:hover {
  color: var(--primary-color2);
}
.package-card.two .package-content .location-and-time .location a:hover {
  color: var(--primary-color2);
}
.package-card.two .package-content .location-and-time .arrow {
  fill: var(--text-color);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card.two .package-content .location-and-time .arrow {
    width: 22px;
  }
}
.package-card.two .package-content .location-and-time span {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card.two .package-content .location-and-time span {
    font-size: 13px;
  }
}
.package-card.three .package-img-wrap .slider-pagi-wrap .paginations .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary-color3);
}
.package-card.three .package-content h5 a:hover {
  color: var(--primary-color3);
}
.package-card.three .package-content .location-and-time .location a:hover {
  color: var(--primary-color3);
}
.package-card.three .package-content .location-and-time .arrow {
  fill: var(--text-color);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card.three .package-content .location-and-time .arrow {
    width: 22px;
  }
}
.package-card.three .package-content .location-and-time span {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card.three .package-content .location-and-time span {
    font-size: 13px;
  }
}

/*=====================================
  09. Home1 Offer Banner Section CSS
========================================*/

/*=====================================
  10. Home1 Location Search Section CSS
========================================*/

/*=====================================
  11. Home1 Partner Section CSS
========================================*/
@keyframes scroll-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/*=====================================
  12. Home1 Blog Section CSS
========================================*/

/*=====================================
  13. Home1 Testimonial Section CSS
========================================*/
@keyframes blink-ring {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.1;
  }
}

/*=====================================
  14. Home1 Faq Section CSS
========================================*/

/*=====================================
  15. Home1 Counter Section CSS
========================================*/
.counter-section {
  position: relative;
  padding: 45px 0;
  background-image: url(../images/papyrus.png);
  z-index: -1;
}
.counter-section .divider {
  position: relative;
}
.counter-section .divider::before {
  content: url(../images/home1-counter-divider.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  line-height: 1;
}
@media (max-width: 991px) {
  .counter-section .divider::before {
    display: none;
  }
}
.counter-section .divider:nth-child(1)::before {
  right: 10px;
}
@media (max-width: 1199px) {
  .counter-section .divider:nth-child(1)::before {
    right: 0;
  }
}
.counter-section .divider:nth-child(3)::before {
  right: -20px;
}
@media (max-width: 1199px) {
  .counter-section .divider:nth-child(3)::before {
    right: 0;
  }
}
.counter-section .single-counter {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.breefast{
  padding: 20px;
  background-color: var(--celeste-color);
  border-radius: 16px 16px 16px 0px;
  font-size: 16px;
    color: var(--white-color);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .counter-section .single-counter {
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .counter-section .single-counter {
    gap: 15px;
  }
}
.counter-section .single-counter .icon svg {
  fill: var(--primary-color1);
}
.counter-section .single-counter .icon.green svg {
  fill: #2E8B57;
}
.counter-section .single-counter .content .number {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .counter-section .single-counter .content .number {
    margin-bottom: 5px;
  }
}
.counter-section .single-counter .content .number h2,
.counter-section .single-counter .content .number span {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .counter-section .single-counter .content .number h2,
  .counter-section .single-counter .content .number span {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .counter-section .single-counter .content .number h2,
  .counter-section .single-counter .content .number span {
    font-size: 27px;
  }
}
.counter-section .single-counter .content span {
  color: var(--title-color);
  font-family: var(--font-roboto);
  font-size: 18px;
  font-weight: 500;
  line-height: 20.83px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .counter-section .single-counter .content span {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .counter-section .single-counter .content span {
    font-size: 15px;
  }
}
.counter-section.two {
  background-color: transparent;
  border-bottom: 1px solid var(--borders-color);
  padding: 72px 0;
}
@media (max-width: 991px) {
  .counter-section.two {
    padding: 50px 0;
  }
}
@media (max-width: 576px) {
  .counter-section.two {
    padding: 45px 0;
  }
}
.counter-section.two .divider::before {
  display: none;
}
.counter-section.three {
  background-color: transparent;
  padding: 0;
}
.counter-section.three .single-counter {
  gap: 15px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .counter-section.three .single-counter {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .counter-section.three .single-counter {
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .counter-section.three .single-counter {
    gap: 15px;
  }
}
.counter-section.three .single-counter .icon {
  min-width: 66px;
  max-width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: #D39B01;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .counter-section.three .single-counter .icon {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .counter-section.three .single-counter .icon {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
  }
}
@media (max-width: 576px) {
  .counter-section.three .single-counter .icon {
    min-width: 58px;
    max-width: 58px;
    height: 58px;
  }
}
.counter-section.three .single-counter .icon svg {
  fill: var(--white-color);
}
@media (max-width: 576px) {
  .counter-section.three .single-counter .icon svg {
    width: 35px;
  }
}
.counter-section.three .single-counter .icon.blue {
  background-color: #1768E2;
}
.counter-section.three .single-counter .icon.green {
  background-color: #2E8B57;
}
.counter-section.five {
  background-color: transparent;
  padding: 0;
}
.counter-section.five .single-counter {
  gap: 15px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .counter-section.five .single-counter {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .counter-section.five .single-counter {
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .counter-section.five .single-counter {
    gap: 15px;
  }
}
.counter-section.five .single-counter .icon {
  min-width: 66px;
  max-width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: #D39B01;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .counter-section.five .single-counter .icon {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .counter-section.five .single-counter .icon {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
  }
}
@media (max-width: 576px) {
  .counter-section.five .single-counter .icon {
    min-width: 58px;
    max-width: 58px;
    height: 58px;
  }
}
.counter-section.five .single-counter .icon svg {
  fill: var(--white-color);
}
@media (max-width: 576px) {
  .counter-section.five .single-counter .icon svg {
    width: 35px;
  }
}
.counter-section.five .single-counter .icon.blue {
  background-color: #1768E2;
}
.counter-section.five .single-counter .icon.green {
  background-color: #2E8B57;
}

/*=====================================
  16. Home1 Footer Section CSS
========================================*/
.footer-section {
  background-image: url(../images/hotel-room-bg-img.png), linear-gradient(180deg, #110F0F 0%, #110F0F 100%);
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-section .divider {
  fill: #292727;
  width: 100%;
}
@media (max-width: 991px) {
  .footer-section .divider {
    display: none;
  }
}
.footer-section .footer-menu-wrap {
  padding: 90px 0 100px;
}
@media (max-width: 1199px) {
  .footer-section .footer-menu-wrap {
    padding: 80px 0 90px;
  }
}
@media (max-width: 991px) {
  .footer-section .footer-menu-wrap {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .footer-section .footer-menu-wrap {
    padding: 50px 0;
  }
}
.footer-section .footer-menu-wrap .footer-logo-and-addition-info .address-area {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .footer-section .footer-menu-wrap .footer-logo-and-addition-info .address-area {
    margin: 35px 0;
  }
}
@media (max-width: 576px) {
  .footer-section .footer-menu-wrap .footer-logo-and-addition-info .address-area {
    margin: 25px 0;
  }
}
.footer-section .footer-menu-wrap .footer-logo-and-addition-info .address-area span {
  color: var(--white-text-color);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.footer-section .footer-menu-wrap .footer-logo-and-addition-info .address-area a {
  color: var(--white-text-color);
  font-family: var(--font-roboto);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  transition: 0.5s;
}
.footer-section .footer-menu-wrap .footer-logo-and-addition-info .address-area a:hover {
  color: var(--primary-color1);
}
@media (max-width: 576px) {
  .footer-section .footer-menu-wrap .footer-logo-and-addition-info .address-area a {
    font-size: 15px;
  }
}
@keyframes lang-Down {
  0% {
    opacity: 0;
    transform: translateY(0px) translateX(-50%);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: translateY(10px) translateX(-50%);
    visibility: visible;
  }
}
.footer-section .footer-menu-wrap .footer-widget .widget-title {
  margin-bottom: 35px;
}
@media (max-width: 576px) {
  .footer-section .footer-menu-wrap .footer-widget .widget-title {
    margin-bottom: 30px;
  }
}
.footer-section .footer-menu-wrap .footer-widget .widget-title h5 {
  color: var(--white-color);
  font-family: var(--font-roboto);
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 0;
}
.footer-section .footer-menu-wrap .footer-widget .widget-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-section .footer-menu-wrap .footer-widget .widget-list li {
  margin-bottom: 25px;
  line-height: 1;
}
.footer-section .footer-menu-wrap .footer-widget .widget-list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .footer-section .footer-menu-wrap .footer-widget .widget-list li {
    margin-bottom: 20px;
  }
}
.footer-section .footer-menu-wrap .footer-widget .widget-list li a {
  color: var(--white-text-color);
  font-family: var(--font-roboto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  transition: 0.5s;
}
.footer-section .footer-menu-wrap .footer-widget .widget-list li a:hover {
  color: var(--white-color);
}
@media (max-width: 576px) {
  .footer-section .footer-menu-wrap .footer-widget .widget-list li a {
    font-size: 15px;
  }
}
.footer-section .footer-bottom {
  padding: 20px 0;
  border-top: 1px solid #292727;
}
.footer-section .footer-bottom .copyright-and-payment-method-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .footer-section .footer-bottom .copyright-and-payment-method-area {
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .footer-section .footer-bottom .copyright-and-payment-method-area {
    gap: 15px;
  }
}
.footer-section .footer-bottom .copyright-and-payment-method-area p {
  color: var(--white-text-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
}
.footer-section .footer-bottom .copyright-and-payment-method-area p a {
  color: var(--white-color);
  transition: 0.5s;
}
.footer-section .footer-bottom .copyright-and-payment-method-area p a:hover {
  color: var(--primary-color1);
}
.footer-section.two .footer-menu-wrap {
  padding: 245px 0 100px;
}
@media (max-width: 1199px) {
  .footer-section.two .footer-menu-wrap {
    padding: 235px 0 90px;
  }
}
@media (max-width: 991px) {
  .footer-section.two .footer-menu-wrap {
    padding: 220px 0 70px;
  }
}
@media (max-width: 576px) {
  .footer-section.two .footer-menu-wrap {
    padding: 200px 0 50px;
  }
}
.footer-section.three .footer-menu-wrap .footer-logo-and-addition-info .address-area a:hover {
  color: var(--primary-color2);
}
.footer-section.three .footer-bottom .copyright-and-payment-method-area p a:hover {
  color: var(--primary-color2);
}
.footer-section.five .footer-menu-wrap .footer-logo-and-addition-info .address-area a:hover {
  color: var(--white-color);
}
.footer-section.five .footer-bottom .copyright-and-payment-method-area p a:hover {
  color: var(--title-color2);
}

/*=====================================
  17. Home2 Banner Section CSS
========================================*/
.home2-banner-section .home2-banner-slider .swiper-slide-active .banner-content h1 {
  animation: fadeInDown 1.7s;
}
.home2-banner-section .home2-banner-slider .swiper-slide-active .banner-content p {
  animation: fadeInUp 1.7s;
}

/*=====================================
  18. Home2 Package Slider Section CSS
========================================*/
@keyframes up-down {
  0% {
    transform: translateY(35px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(35px);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*=====================================
  19. Home2 Destination Section CSS
========================================*/
.destination-card2 .destination-img {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 20px;
}
@media (max-width: 576px) {
  .destination-card2 .destination-img {
    border-radius: 10px;
  }
}
.destination-card2 .destination-img img {
  border-radius: 20px;
  transition: all 0.5s ease-out;
}
.destination-card2 .destination-img::after {
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1;
}
.destination-card2 .destination-content {
  padding: 20px 10px 0;
  text-align: center;
}
@media (max-width: 1199px) {
  .destination-card2 .destination-content {
    padding: 15px 10px 0;
  }
}
.destination-card2 .destination-content h5 {
  margin-bottom: 2px;
}
.destination-card2 .destination-content h5 a {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  transition: 0.5s;
}
.destination-card2 .destination-content h5 a:hover {
  color: var(--primary-color1);
}
@media (max-width: 1199px) {
  .destination-card2 .destination-content h5 a {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .destination-card2 .destination-content h5 a {
    font-size: 19px;
  }
}
.destination-card2 .destination-content span {
  color: var(--text-color);
  font-family: var(--font-roboto);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 991px) {
  .destination-card2 .destination-content span {
    font-size: 15px;
  }
}
.destination-card2:hover .destination-img img {
  transform: scale(1.1);
}
.destination-card2:hover .destination-img::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.destination-card2.two .destination-img {
  width: 305px;
  height: 305px;
  border-radius: 50%;
}
@media (max-width: 1399px) {
  .destination-card2.two .destination-img {
    width: 270px;
    height: 270px;
  }
}
@media (max-width: 1199px) {
  .destination-card2.two .destination-img {
    width: 220px;
    height: 220px;
  }
}
@media (max-width: 767px) {
  .destination-card2.two .destination-img {
    width: 246px;
    height: 246px;
  }
}
@media (max-width: 576px) {
  .destination-card2.two .destination-img {
    width: 326px;
    height: 326px;
    margin: 0 auto;
  }
}
.destination-card2.two .destination-img img {
  width: 305px;
  height: 305px;
  border-radius: 50%;
}
@media (max-width: 1399px) {
  .destination-card2.two .destination-img img {
    width: 270px;
    height: 270px;
  }
}
@media (max-width: 1199px) {
  .destination-card2.two .destination-img img {
    width: 220px;
    height: 220px;
  }
}
@media (max-width: 767px) {
  .destination-card2.two .destination-img img {
    width: 245px;
    height: 245px;
  }
}
@media (max-width: 576px) {
  .destination-card2.two .destination-img img {
    width: 326px;
    height: 326px;
  }
}
.destination-card2.two .destination-img .arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  transition: 0.5s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .destination-card2.two .destination-img .arrow {
    width: 35px;
    height: 35px;
  }
}
.destination-card2.two .destination-img .arrow svg {
  fill: none;
  stroke: var(--black-color);
  transition: 0.5s;
}
.destination-card2.two .destination-img .arrow:hover {
  background-color: var(--primary-color1);
}
.destination-card2.two .destination-img .arrow:hover svg {
  stroke: var(--white-color);
  transform: rotate(45deg);
}
.destination-card2.two .destination-img:hover .arrow {
  opacity: 1;
}
.destination-card2.two .destination-content h5 a {
  color: var(--title-color);
  background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
  background-size: 0px 1px;
  background-repeat: no-repeat;
  background-position: right 90%;
  transition: background-size 0.75s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .destination-card2.two .destination-content h5 a {
    font-size: 17px;
  }
}
.destination-card2.two .destination-content h5 a:hover {
  background-size: 100% 1px;
  background-position: 0% 90%;
}
.destination-card2.three .destination-img .arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  transition: 0.5s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .destination-card2.three .destination-img .arrow {
    width: 35px;
    height: 35px;
  }
}
.destination-card2.three .destination-img .arrow svg {
  fill: none;
  stroke: var(--black-color);
  transition: 0.5s;
}
.destination-card2.three .destination-img .arrow:hover {
  background-color: var(--primary-color1);
}
.destination-card2.three .destination-img .arrow:hover svg {
  stroke: var(--white-color);
  transform: rotate(45deg);
}
.destination-card2.three .destination-img:hover .arrow {
  opacity: 1;
}
.destination-card2.three .destination-content h5 a {
  color: var(--title-color);
  background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 98%);
  background-size: 0px 1px;
  background-repeat: no-repeat;
  background-position: right 90%;
  transition: background-size 0.75s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .destination-card2.three .destination-content h5 a {
    font-size: 17px;
  }
}
.destination-card2.three .destination-content h5 a:hover {
  background-size: 100% 1px;
  background-position: 0% 90%;
}

/*=====================================
  20. Home2 About Section CSS
========================================*/

/*=====================================
  21. Home2 Offer Banner Section CSS
========================================*/

/*=====================================
  22. Home2 Award Banner Section CSS
========================================*/
.home2-award-banner-section {
  background-size: cover;
  background-repeat: no-repeat;
  padding: 140px 0;
  background-attachment: fixed;
}
@media (max-width: 1199px) {
  .home2-award-banner-section {
    padding: 120px 0;
  }
}
@media (max-width: 991px) {
  .home2-award-banner-section {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .home2-award-banner-section {
    padding: 80px 0;
  }
}
.home2-award-banner-section .banner-content {
  max-width: 755px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  text-align: center;
  padding: 0 15px;
}
.home2-award-banner-section .banner-content h2 {
  color: var(--white-color);
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 100px;
  line-height: 1;
  letter-spacing: 0.3em;
  position: relative;
  margin-left: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .home2-award-banner-section .banner-content h2 {
    font-size: 95px;
  }
}
@media (max-width: 1199px) {
  .home2-award-banner-section .banner-content h2 {
    font-size: 90px;
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .home2-award-banner-section .banner-content h2 {
    font-size: 85px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .home2-award-banner-section .banner-content h2 {
    font-size: 75px;
  }
}
@media (max-width: 576px) {
  .home2-award-banner-section .banner-content h2 {
    font-size: 70px;
    margin-bottom: 15px;
  }
}
.home2-award-banner-section .banner-content h2 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--white-color);
  position: absolute;
  top: 3px;
  left: 50.5%;
  transform: translateX(-50%);
}
.home2-award-banner-section .banner-content > span {
  color: var(--white-color);
  font-family: var(--font-courgette);
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  display: block;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .home2-award-banner-section .banner-content > span {
    font-size: 44px;
  }
}
@media (max-width: 1199px) {
  .home2-award-banner-section .banner-content > span {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .home2-award-banner-section .banner-content > span {
    font-size: 38px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .home2-award-banner-section .banner-content > span {
    font-size: 33px;
    margin-bottom: 25px;
  }
}
.home2-award-banner-section .banner-content .primary-btn1 {
  padding: 21px 30px;
}
@media (max-width: 576px) {
  .home2-award-banner-section .banner-content .primary-btn1 {
    padding: 20px 24px;
  }
}
.home2-award-banner-section.two {
  padding: 65px 0;
}
@media (max-width: 1399px) {
  .home2-award-banner-section.two {
    padding: 220px 0;
  }
}
@media (max-width: 1199px) {
  .home2-award-banner-section.two {
    padding: 190px 0;
  }
}
@media (max-width: 991px) {
  .home2-award-banner-section.two {
    padding: 160px 0;
  }
}
@media (max-width: 767px) {
  .home2-award-banner-section.two {
    padding: 115px 0;
  }
}
@media (max-width: 576px) {
  .home2-award-banner-section.two {
    padding: 90px 0;
  }
}
.home2-award-banner-section.two .award-and-content {
  text-align: center;
  max-width: 872px;
  width: 100%;
  margin: 0 auto;
}
.home2-award-banner-section.two .award-and-content img {
  border-radius: 20px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .home2-award-banner-section.two .award-and-content img {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .home2-award-banner-section.two .award-and-content img {
    border-radius: 15px;
  }
}
@media (max-width: 576px) {
  .home2-award-banner-section.two .award-and-content img {
    width: 210px;
  }
}
.home2-award-banner-section.two .award-and-content p {
  color: var(--white-color);
  margin-bottom: 60px;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 25px;
  line-height: 35px;
  text-align: center;
}
@media (max-width: 1399px) {
  .home2-award-banner-section.two .award-and-content p {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .home2-award-banner-section.two .award-and-content p {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .home2-award-banner-section.two .award-and-content p {
    font-size: 18px;
    line-height: 29px;
  }
}
@media (max-width: 576px) {
  .home2-award-banner-section.two .award-and-content p {
    font-size: 16px;
    line-height: 40px;
  }
}

/*=====================================
  23. Home2 Blog Section CSS
========================================*/

/*=====================================
  24. Home2 Testimonial Section CSS
========================================*/

/*=====================================
  25. Home2 Gallery Section CSS
========================================*/

/*=====================================
  26. Home3 Banner Section CSS
========================================*/
.home3-banner-section .paginations .swiper-pagination-bullet {
  background-color: var(--white-color);
}
.home3-banner-section .paginations .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-color1);
}
.home3-banner-section .home2-banner-slider .swiper-slide-active .banner-content .award-rating-area {
  animation: fadeInDown 1.7s;
}
.home3-banner-section .home2-banner-slider .swiper-slide-active .banner-content h1,
.home3-banner-section .home2-banner-slider .swiper-slide-active .banner-content p {
  animation: fadeInUp 1.7s;
}

/*=====================================
  27. Home3 Offer and Service Section CSS
========================================*/

/*=====================================
  28. Home3 Travel Package Section CSS
========================================*/

/*=====================================
  29. Home3 Destination Section CSS
========================================*/
.amenities{
  display: flex;
    align-items: center;
        justify-content: space-between;
    gap: 16px;
}

/*=====================================
  30. Home3 About Section CSS
========================================*/
.home3-about-section .about-wrapper {
  background-image: url(../images/home3-destination-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 100px;
}
.about-wrapper2 {
  background-image: url(../images/home4-about-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .home3-about-section .about-wrapper {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .home3-about-section .about-wrapper {
    padding-bottom: 70px;
  }
}
.home3-about-section .about-content .section-title {
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .home3-about-section .about-content .section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .home3-about-section .about-content .section-title {
    margin-bottom: 35px;
  }
}
.home3-about-section .about-content .section-title h4 {
  color: var(--primary-color1);
  font-family: var(--font-caveat);
  font-weight: 300;
  font-size: 32px;
  line-height: 35px;
  margin-bottom: 0;
  margin-top: 20px;
}
@media (max-width: 1399px) {
  .home3-about-section .about-content .section-title h4 {
    font-size: 23px;
  }
}
@media (max-width: 767px) {
  .home3-about-section .about-content .section-title h4 {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .home3-about-section .about-content .section-title h4 {
    font-size: 20px;
    line-height: 32px;
    margin-top: 15px;
  }
}
.home3-about-section .about-content .section-title p {
  max-width: unset;
  margin: 0;
}
@media (max-width: 1399px) {
  .home3-about-section .about-content .section-title p {
    font-size: 17px;
  }
}
@media (max-width: 1199px) {
  .home3-about-section .about-content .section-title p {
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .home3-about-section .about-content .section-title p {
    padding-top: 30px;
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .home3-about-section .about-content .section-title p {
    padding-top: 20px;
  }
}
.home3-about-section .about-content .section-title a {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: 0.5s;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .home3-about-section .about-content .section-title a {
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  .home3-about-section .about-content .section-title a {
    margin-top: 25px;
  }
}
.home3-about-section .about-content .section-title a svg {
  fill: none;
  stroke: var(--title-color);
  transition: 0.5s;
}
.home3-about-section .about-content .section-title a:hover {
  color: var(--primary-color1);
}
.home3-about-section .about-content .section-title a:hover svg {
  stroke: var(--primary-color1);
  transform: rotate(45deg);
}
.home3-about-section .about-content .review-area {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--borders-color);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 30px;
  position: relative;
}
@media (max-width: 1199px) {
  .home3-about-section .about-content .review-area {
    padding: 16px 25px;
  }
}
@media (max-width: 767px) {
  .home3-about-section .about-content .review-area {
    padding: 16px 20px;
  }
}
@media (max-width: 576px) {
  .home3-about-section .about-content .review-area {
    flex-wrap: wrap;
    border-radius: 15px;
  }
}
.home3-about-section .about-content .review-area .divider {
  fill: var(--title-color);
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
}
@media (max-width: 576px) {
  .home3-about-section .about-content .review-area .divider {
    display: none;
  }
}

/*=====================================
  31. Home3 Tour Guide Section CSS
========================================*/

/*=====================================
  32. Home3 Testimonial Section CSS
========================================*/
.home3-testimonial-section .testimonial-content .testimonial-slider-area .home3-testimonial-slider .swiper-slide-active .testimonial-card .rating-area,
.home3-testimonial-section .testimonial-content .testimonial-slider-area .home3-testimonial-slider .swiper-slide-active .testimonial-card h5,
.home3-testimonial-section .testimonial-content .testimonial-slider-area .home3-testimonial-slider .swiper-slide-active .testimonial-card p {
  animation: fadeInDown 1.7s;
}
.home3-testimonial-section .testimonial-content .testimonial-slider-area .home3-testimonial-slider .swiper-slide-active .testimonial-card .author-area {
  animation: fadeInUp 1.7s;
}

/*=====================================
  33. Home3 Blog Section CSS
========================================*/

/*=====================================
  34. Home4 Banner Section CSS
========================================*/

/*=====================================
  35. Home4 Feature Section CSS
========================================*/

/*=====================================
  36. Home4 Destination Section CSS
========================================*/

/*=====================================
  37. Home4 About Section CSS
========================================*/

/*=====================================
  38. Home4 Offer Slider Section CSS
========================================*/

/*=====================================
  39. Home4 Why Choose Us Section CSS
========================================*/
@keyframes waves {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
  }
}

/*=====================================
  40. Home4 Testimonial Section CSS
========================================*/
.home4-testimonial-section .testimonial-slider-area .home4-testimonial-slider .swiper-slide-active .testimonial-card .rating-area,
.home4-testimonial-section .testimonial-slider-area .home4-testimonial-slider .swiper-slide-active .testimonial-card h5,
.home4-testimonial-section .testimonial-slider-area .home4-testimonial-slider .swiper-slide-active .testimonial-card p {
  animation: fadeInDown 1.7s;
}
.home4-testimonial-section .testimonial-slider-area .home4-testimonial-slider .swiper-slide-active .testimonial-card .author-area {
  animation: fadeInUp 1.7s;
}
.home4-testimonial-section .home4-testimonial-img-slider .swiper-slide-thumb-active .testimonial-author-img img {
  transform: scale(1);
}

/*=====================================
  41. Home4 Counter Section CSS
========================================*/

/*=====================================
  42. Home4 Blog Section CSS
========================================*/

/*=====================================
  43. Home4 Faq Section CSS
========================================*/

/*=====================================
  44. Home5 Banner Section CSS
========================================*/
.home5-banner-section .home2-banner-slider .swiper-slide-active .banner-content h1,
.home5-banner-section .home2-banner-slider .swiper-slide-active .banner-content p {
  animation: fadeInDown 1.7s;
}
.home5-banner-section .home2-banner-slider .swiper-slide-active .banner-content .primary-btn1 {
  animation: fadeInUp 1.7s;
}

/*=====================================
  45. Home5 Offer Section CSS
========================================*/

/*=====================================
  46. Home5 Destination Section CSS
========================================*/

/*=====================================
  47. Home5 Service Section CSS
========================================*/

/*=====================================
  48. Home5 About Section CSS
========================================*/
@keyframes translate3dMove {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(5px, -5px, 0px);
  }
  50% {
    transform: translate3d(10px, 0, 0px);
  }
  75% {
    transform: translate3d(5px, 5px, 0px);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/*=====================================
  49. Home5 Tour Guide Section CSS
========================================*/

/*=====================================
  50. Home5 Testimonial Section CSS
========================================*/
.home5-testimonial-section .testimonial-wrapper .home4-testimonial-slider .swiper-slide-active .testimonial-card .rating-area,
.home5-testimonial-section .testimonial-wrapper .home4-testimonial-slider .swiper-slide-active .testimonial-card h5,
.home5-testimonial-section .testimonial-wrapper .home4-testimonial-slider .swiper-slide-active .testimonial-card p {
  animation: fadeInDown 1.7s;
}
.home5-testimonial-section .testimonial-wrapper .home4-testimonial-slider .swiper-slide-active .testimonial-card .author-area {
  animation: fadeInUp 1.7s;
}
.home5-testimonial-section .testimonial-author-area .home4-testimonial-img-slider .swiper-slide-thumb-active .testimonial-author-img img {
  transform: scale(1);
}

/*=====================================
  51. Home5 Blog Section CSS
========================================*/

/*=====================================
  52. Home6 Banner Section CSS
========================================*/
@keyframes imageAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.home6-banner-section .slider-btn-grp .franctional-pagi1 .swiper-pagination-total {
  font-size: 15px;
}
.home6-banner-section .home6-banner-slider .swiper-slide-active .banner-content h1,
.home6-banner-section .home6-banner-slider .swiper-slide-active .banner-content h2 {
  animation: fadeInDown 1.7s;
}
.home6-banner-section .home6-banner-slider .swiper-slide-active .banner-content .primary-btn1 {
  animation: fadeInUp 1.7s;
}

/*=====================================
  53. Home6 Destination Section CSS
========================================*/

/*=====================================
  54. Home6 Service Section CSS
========================================*/

/*=====================================
  55. Home6 Offer Banner Section CSS
========================================*/
.home6-offer-banner-section .home6-offer-sm-img-slider .swiper-wrapper {
  justify-content: space-between;
}
.home6-offer-banner-section .home6-offer-sm-img-slider .swiper-wrapper .swiper-slide {
  min-width: 80px;
  height: 80px;
}
@media (max-width: 576px) {
  .home6-offer-banner-section .home6-offer-sm-img-slider .swiper-wrapper .swiper-slide {
    min-width: 75px;
    max-width: 75px;
    height: 75px;
  }
}
.home6-offer-banner-section .home6-offer-sm-img-slider .swiper-slide-thumb-active .offer-sm-img img {
  transform: scale(1);
}
.home6-offer-banner-section .home6-offer-banner-slider .swiper-slide-active .banner-content .discount-area {
  animation: fadeInDown 1.7s;
}
.home6-offer-banner-section .home6-offer-banner-slider .swiper-slide-active .banner-content .location-area {
  animation: fadeInUp 1.7s;
}

/*=====================================
  56. Home6 About Section CSS
========================================*/

/*=====================================
  57. Home6 Activity Banner Section CSS
========================================*/
.home6-activity-banner-section .home6-activity-sm-img-slider .swiper-wrapper {
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 991px) {
  .home6-activity-banner-section .home6-activity-sm-img-slider .swiper-wrapper {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }
}
.home6-activity-banner-section .home6-activity-sm-img-slider .swiper-wrapper .swiper-slide {
  min-width: 70px;
  height: 70px;
}
.home6-activity-banner-section .home6-activity-sm-img-slider .swiper-slide-thumb-active .activity-sm-img img {
  transform: scale(1);
}
.home6-activity-banner-section .home6-activity-sm-img-slider .swiper-slide-thumb-active .activity-sm-img video {
  transform: scale(1);
}
.home6-activity-banner-section .home6-activity-banner-slider .swiper-slide-active .banner-content h2 {
  animation: fadeInDown 1.7s;
}
.home6-activity-banner-section .home6-activity-banner-slider .swiper-slide-active .banner-content a {
  animation: fadeInUp 1.7s;
}

/*=====================================
  58. Home6 Faq Section CSS
========================================*/

/*=====================================
  59. Home6 Newsletter Section CSS
========================================*/

/*=====================================
  60. Home7 Banner Section CSS
========================================*/
.home7-banner-section .home6-banner-slider .swiper-slide-active .banner-content > span {
  animation: fadeInDown 1.7s;
}
.home7-banner-section .home6-banner-slider .swiper-slide-active .banner-content h1,
.home7-banner-section .home6-banner-slider .swiper-slide-active .banner-content h2 {
  animation: fadeInDown 1.7s;
}
.home7-banner-section .home6-banner-slider .swiper-slide-active .banner-content .primary-btn1 {
  animation: fadeInUp 1.7s;
}

/*=====================================
  61. Home7 Destination Section CSS
========================================*/

/*=====================================
  62. Home7 About Section CSS
========================================*/

/*=====================================
  63. Home7 Popular Activity Section CSS
========================================*/

/*=====================================
  64. Home7 Offer Banner Section CSS
========================================*/
.home7-offer-banner-section .banner-wrapper .home7-offer-banner-slider .swiper-slide-active .banner-content h2,
.home7-offer-banner-section .banner-wrapper .home7-offer-banner-slider .swiper-slide-active .banner-content ul {
  animation: fadeInDown 1.7s;
}
.home7-offer-banner-section .banner-wrapper .home7-offer-banner-slider .swiper-slide-active .banner-content a {
  animation: fadeInUp 1.7s;
}

/*=====================================
  65. home7 Tour Guide Section Section CSS
========================================*/

/*=====================================
  66. Home7 Testimonial Section CSS
========================================*/
.home7-testimonial-section .testimonial-wrapper .home3-testimonial-slider .swiper-slide-active .testimonial-card .rating-area,
.home7-testimonial-section .testimonial-wrapper .home3-testimonial-slider .swiper-slide-active .testimonial-card h5,
.home7-testimonial-section .testimonial-wrapper .home3-testimonial-slider .swiper-slide-active .testimonial-card p {
  animation: fadeInDown 1.7s;
}
.home7-testimonial-section .testimonial-wrapper .home3-testimonial-slider .swiper-slide-active .testimonial-card .author-area {
  animation: fadeInUp 1.7s;
}
.home7-testimonial-section .testimonial-author-area .home4-testimonial-img-slider .swiper-slide-thumb-active .testimonial-author-img img {
  transform: scale(1);
}
.home7-testimonial-section.three .testimonail-wrapper-area .testimonial-wrapper .slider-btn-grp .progress-pagination .swiper-pagination-progressbar-fill {
  background: var(--primary-color1);
}

/*=====================================
  67. Home7 Activity Tab Section CSS
========================================*/

/*=====================================
  68. Home7 Blog Section CSS
========================================*/

/*=====================================
  69. Home7 Newsletter Section CSS
========================================*/

/*=====================================
  70. Home8 Banner Section CSS
========================================*/

/*=====================================
  71. Home8 Feature Section CSS
========================================*/

/*=====================================
  72. home8 visa slider Section CSS
========================================*/

/*=====================================
  73. home8 Process Section CSS
========================================*/

/*=====================================
  74. home8 Company Intro Section CSS
========================================*/

/*=====================================
  75. home8 Service Serve Section CSS
========================================*/

/*=====================================
  76. home8 Contact Section CSS
========================================*/

/*=====================================
  77. home8 testimonial Section CSS
========================================*/

/*=====================================
  78. Breadcrumb Section CSS
========================================*/

/*=====================================
  79. Destination Page CSS
========================================*/

/*=====================================
  80. Travel Inspiration Page CSS
========================================*/

/*=====================================
  81. Inspiration Details Page CSS
========================================*/
.inspiration-details .tag-and-social-area .social-area .social-list li a i.bi-twitter-x {
  font-size: 12px;
}

/*=====================================
  82. Package Details Page CSS
========================================*/

.package-details-page .package-details-warpper .package-info-wrap h4 {
  margin-bottom: 25px;
}
.package-details-page .package-details-warpper .package-info-wrap p {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .package-details-page .package-details-warpper .package-info-wrap p {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .package-details-page .package-details-warpper .package-info-wrap p {
    font-size: 16px;
  }
}
.package-details-page .package-details-warpper .package-info-wrap .package-info-list {
  margin: 0;
  list-style: none;
  padding: 40px;
  border: 1px solid var(--borders-color);
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  row-gap: 50px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .package-details-page .package-details-warpper .package-info-wrap .package-info-list {
    padding: 40px 20px;
    gap: 30px;
    row-gap: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-details-page .package-details-warpper .package-info-wrap .package-info-list {
    padding: 40px 20px;
    gap: 30px;
    row-gap: 50px;
  }
}
@media (max-width: 991px) {
  .package-details-page .package-details-warpper .package-info-wrap .package-info-list {
    gap: 40px;
    row-gap: 45px;
    padding: 40px 35px;
  }
}
@media (max-width: 767px) {
  .package-details-page .package-details-warpper .package-info-wrap .package-info-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
}
@media (max-width: 576px) {
  .package-details-page .package-details-warpper .package-info-wrap .package-info-list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
    padding: 35px 25px;
    border-radius: 15px;
  }
}
.package-details-page .package-details-warpper .package-info-wrap .package-info-list li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.package-details-page .package-details-warpper .package-info-wrap .package-info-list li svg {
  fill: var(--text-color);
}
.package-details-page .package-details-warpper .package-info-wrap .package-info-list li .content {
  line-height: 1;
}
.package-details-page .package-details-warpper .package-info-wrap .package-info-list li .content span {
  color: var(--text-color);
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.package-details-page .package-details-warpper .package-info-wrap .package-info-list li .content strong {
  color: var(--title-color);
  font-family: var(--font-roboto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-details-page .package-details-warpper .package-info-wrap .package-info-list li .content strong {
    font-size: 15px;
  }
}
.package-details-page .package-details-warpper h4 {
  line-height: 1.3;
  margin-bottom: 30px;
}

/*=====================================
  83. Package Grid Page CSS
========================================*/

/*=====================================
  84. Destination Page CSS
========================================*/

/*=====================================
  85. Destination Details Page CSS
========================================*/
.destionation-dt-customer-gallery-section .destionation-dt-customer-gallery-slider .swiper-wrapper,
.visa-dt-success-story-section .destionation-dt-customer-gallery-slider .swiper-wrapper {
  align-items: center;
}
.destionation-dt-customer-gallery-section .destionation-dt-customer-gallery-slider .swiper-slide:nth-child(even),
.visa-dt-success-story-section .destionation-dt-customer-gallery-slider .swiper-slide:nth-child(even) {
  max-height: 380px;
}
.destionation-dt-customer-gallery-section .destionation-dt-customer-gallery-slider .swiper-slide:nth-child(even) img,
.visa-dt-success-story-section .destionation-dt-customer-gallery-slider .swiper-slide:nth-child(even) img {
  width: 100%;
  max-height: 380px;
  min-height: 380px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .destionation-dt-customer-gallery-section .destionation-dt-customer-gallery-slider .swiper-slide:nth-child(even) img,
  .visa-dt-success-story-section .destionation-dt-customer-gallery-slider .swiper-slide:nth-child(even) img {
    max-height: 350px;
    min-height: 350px;
  }
}
@media (max-width: 1399px) {
  .destionation-dt-customer-gallery-section .destionation-dt-customer-gallery-slider .swiper-slide:nth-child(even) img,
  .visa-dt-success-story-section .destionation-dt-customer-gallery-slider .swiper-slide:nth-child(even) img {
    max-height: 320px;
    min-height: 320px;
  }
}
.destionation-dt-customer-gallery-section .destionation-dt-customer-gallery-slider .swiper-slide:nth-child(even) .success-story-card .success-story-content-wrap img,
.visa-dt-success-story-section .destionation-dt-customer-gallery-slider .swiper-slide:nth-child(even) .success-story-card .success-story-content-wrap img {
  max-height: unset;
  min-height: unset;
  width: 91px;
}
@keyframes waves {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
  }
}

/*=====================================
  86. Faq Page CSS
========================================*/

/*=====================================
  87. Contact Page CSS
========================================*/

/*=====================================
  88. Error Page CSS
========================================*/

/*=====================================
  89. Shop Page CSS
========================================*/

/*=====================================
  90. Product Details Page CSS
========================================*/

/*=====================================
  91. Cart Page CSS
========================================*/

/*=====================================
  92. Checkout Page CSS
========================================*/

/*=====================================
  93. Guider Details Page CSS
========================================*/
.guider-details-page .guider-img-wrap .guider-social-area .social-list li a i.bi-twitter-x {
  font-size: 12px;
}

/*=====================================
  94. Visa Package Page CSS
========================================*/

/*=====================================
  95. Visa Details Page CSS
========================================*/
@keyframes stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 30px;
  }
}

/*=====================================
  96. Hotel Page CSS
========================================*/

/*=====================================
  97. Hotel Details Page CSS
========================================*/

.calendar-wrapper {
  width: 820px;
  display: none;
}
@media (max-width: 991px) {
  .calendar-wrapper {
    width: 500px;
  }
}
@media (max-width: 767px) {
  .calendar-wrapper {
    position: absolute;
    top: 100px;
    height: auto;
  }
}
@media (max-width: 576px) {
  .calendar-wrapper {
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .calendar-wrapper .calendar-container {
    flex-direction: row;
  }
}
.calendar-wrapper .calendar-inner {
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.1019607843);
}
@media (max-width: 767px) {
  .calendar-wrapper .calendar-inner {
    height: auto;
    border-radius: 15px;
    padding-top: 5px;
  }
}
.calendar-wrapper .calendar-header h6 {
  font-size: 16px;
  margin-bottom: 0;
}
.calendar-wrapper .calendar-header button {
  border: 1px solid var(--borders-color);
}
.calendar-wrapper .calendar-header button svg {
  width: 14px;
}
@media (min-width: 992px) {
  .calendar-wrapper #calendar-prev .next-month {
    opacity: 0;
    visibility: hidden;
    display: block;
  }
}
.calendar-wrapper .calendar-days .day-name {
  font-size: 15px;
}
.calendar-wrapper .calendar-dates {
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 991px) {
  .calendar-wrapper .calendar-dates {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.calendar-wrapper .calendar-dates .date {
  font-size: 15px;
  line-height: 1.2;
  padding-bottom: 18px;
  color: var(--title-color);
}
.calendar-wrapper .calendar-dates .date .price {
  color: var(--title-color) !important;
  font-family: var(--font-roboto);
  font-size: 11px !important;
  font-weight: 600;
}
.calendar-wrapper .calendar-dates .date del {
  color: var(--text-color);
  font-size: 10px;
  font-weight: 500;
  display: block;
}
.calendar-wrapper .calendar-dates .date::before {
  background-color: #eee;
  border: unset;
  width: 55px;
  height: 55px;
}
@media (max-width: 576px) {
  .calendar-wrapper .calendar-dates .date::before {
    width: 50px;
    height: 50px;
  }
}
.calendar-wrapper .calendar-dates .date:hover::before {
  background-color: #eee;
}
.calendar-wrapper .calendar-dates .date.is-selected::before {
  background-color: var(--primary-color1);
  opacity: 1;
  visibility: visible;
}
.calendar-wrapper .calendar-dates .date.is-selected .price,
.calendar-wrapper .calendar-dates .date.is-selected del {
  color: var(--white-color) !important;
}
.calendar-wrapper .calendar-dates .date.today::before {
  background-color: rgba(var(--primary-color1-opc), 0.5);
  opacity: 1;
  visibility: visible;
}
.calendar-wrapper .calendar-dates .date.today.disabled .price,
.calendar-wrapper .calendar-dates .date.today.disabled del {
  color: var(--white-color) !important;
}
.calendar-wrapper .calendar-dates .date.in-range::before {
  background-color: rgba(var(--primary-color1-opc), 0.1);
  opacity: 1;
  visibility: visible;
}
.calendar-wrapper .calendar-dates .date.first-range, .calendar-wrapper .calendar-dates .date.last-range {
  color: var(--white-color);
}
.calendar-wrapper .calendar-dates .date.first-range .price,
.calendar-wrapper .calendar-dates .date.first-range del, .calendar-wrapper .calendar-dates .date.last-range .price,
.calendar-wrapper .calendar-dates .date.last-range del {
  color: var(--white-color) !important;
}
.calendar-wrapper .calendar-dates .date.first-range::before, .calendar-wrapper .calendar-dates .date.last-range::before {
  background-color: var(--primary-color1);
  opacity: 1;
  visibility: visible;
}
.calendar-wrapper .calendar-actions a {
  color: var(--white-color);
  font-family: var(--font-roboto);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 2px 12px;
  background-color: var(--primary-color1);
  border-radius: 5px;
  transition: 0.5s;
}
.calendar-wrapper .calendar-actions a:hover {
  background-color: var(--black-color);
}
.calendar-wrapper.active {
  display: block;
}
.calendar-wrapper.two {
  width: 410px;
}
@media (max-width: 767px) {
  .calendar-wrapper.two {
    position: absolute;
    top: 100px;
    height: auto;
  }
}
@media (max-width: 576px) {
  .calendar-wrapper.two {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .calendar-wrapper.two .calendar {
    padding: 15px 10px;
  }
}
.calendar-wrapper.two #calendar-prev .next-month {
  opacity: 1;
  visibility: visible;
  display: block;
}
.calendar-wrapper.two .calendar-header button {
  border: 1px solid var(--borders-color);
}
.calendar-wrapper.two .calendar-header button svg {
  width: 14px;
}
.calendar-wrapper.two .calendar-dates .date::before {
  border: unset;
  border: unset;
  width: 55px;
  height: 55px;
}
@media (max-width: 576px) {
  .calendar-wrapper.two .calendar-dates .date::before {
    width: 50px;
    height: 50px;
  }
}
.calendar-wrapper.two .calendar-inner {
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.1019607843);
}
@media (max-width: 767px) {
  .calendar-wrapper.two .calendar-inner {
    height: auto;
    padding-top: 0;
    border-radius: 10px;
  }
}

/*=====================================
  98. About page CSS
========================================*/
@keyframes waves {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
  }
}

/*=====================================
  99. Home9 Destination Section CSS
========================================*/
.home9-destination-section .home9-destination-slider .destination-card2 .destination-content {
  transform: translateY(100%);
  opacity: 0;
  transform-origin: bottom;
  transition: transform 0.75s ease-in-out, opacity 0.75s ease-in-out;
}
.home9-destination-section .home9-destination-slider .swiper-slide-active .destination-card2 .destination-content {
  transform: translateY(0);
  opacity: 1;
}
.home9-destination-section .slider-btn-grp {
  max-width: 515px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  margin-top: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 576px) {
  .home9-destination-section .slider-btn-grp {
    display: none;
  }
}
.home9-destination-section .slider-btn-grp .slider-btn {
  border-color: var(--borders-color);
}

/*=====================================
  100. Work Section CSS
========================================*/

/*=====================================
  101. Banner Bottom Area Section CSS
========================================*/

/*=====================================
  102. City Activities Section CSS
========================================*/

/*=====================================
  103. Home9 Banner Section CSS
========================================*/

/*=====================================
  104. Home9 Service Section CSS
========================================*/

/*=====================================
  105. Home9 Operator Banner Section CSS
========================================*/

/*=====================================
  106. Home9 Travel Package Section CSS
========================================*/
.home9-travel-package-section .package-card2 .package-img-wrap .slider-pagi-wrap .paginations .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #F0F0F0;
}
.home9-travel-package-section .package-card2 .package-img-wrap .slider-pagi-wrap .paginations .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 25px;
  background-color: var(--primary-color1);
}

/*=====================================
  107. Home4 About Section CSS
========================================*/

/*=====================================
  108. Home10 Banner Section CSS
========================================*/
.home10-banner-section {
  position: relative;
}
@media (max-width: 576px) {
  .home10-banner-section {
    margin-bottom: 340px;
  }
}
.home10-banner-section .banner-video-area {
  min-height: 900px;
  height: 900px;
  position: relative;
}
@media (max-width: 1399px) {
  .home10-banner-section .banner-video-area {
    min-height: 800px;
    height: 800px;
  }
}
@media (max-width: 576px) {
  .home10-banner-section .banner-video-area {
    min-height: 700px;
    height: 700px;
  }
}
.home10-banner-section .banner-video-area video {
  width: 100%;
  min-height: 900px;
  height: 900px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1399px) {
  .home10-banner-section .banner-video-area video {
    min-height: 800px;
    height: 800px;
  }
}
@media (max-width: 576px) {
  .home10-banner-section .banner-video-area video {
    min-height: 700px;
    height: 700px;
  }
}
.home10-banner-section .banner-video-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
background: linear-gradient(0deg,rgba(20, 20, 20, 0.39) 42%, rgba(26, 155, 191, 1) 100%);
}
.home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  padding: 240px 0 60px 0;
}
@media (max-width: 1699px) {
  .home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper {
    padding: 260px 0 60px 0;
  }
}
@media (max-width: 1399px) {
  .home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper {
    padding: 230px 0 60px 0;
  }
}
@media (max-width: 991px) {
  .home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper {
    padding: 200px 0 60px 0;
  }
}
@media (max-width: 767px) {
  .home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper {
    padding: 140px 0 50px 0;
  }
}
@media (max-width: 576px) {
  .home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper {
    padding: 170px 10px 70px 10px;
  }
}
.home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper .banner-content {
  margin-bottom: 45px;
}
@media (max-width: 576px) {
  .home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper .banner-content {
    margin-bottom: 30px;
  }
}
.home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper .banner-content h1 {
  color: var(--white-color);
  font-family: var(--font-casa-yaax);
  font-weight: 200;
  font-size: 70px;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper .banner-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 1399px) {
  .home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper .banner-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 1199px) {
  .home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper .banner-content h1 {
    font-size: 52px;
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper .banner-content h1 {
    font-size: 47px;
  }
}
@media (max-width: 767px) {
  .home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper .banner-content h1 {
    font-size: 42px;
  }
}
@media (max-width: 576px) {
  .home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper .banner-content h1 {
    font-size: 36px;
  }
}
.home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper .banner-content p {
  color: var(--white-color);
  font-family: var(--font-roboto);
  font-weight: 100;
  font-size: 22px;
  line-height: 1.3;
  text-align: center;
}
@media (max-width: 1399px) {
  .home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper .banner-content p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper .banner-content p {
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper .banner-content p {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper .banner-content p {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper .filter-wrapper {
    margin-top: 100px;
  }
}
.home10-banner-section .banner-content-wrap-and-filter .banner-filter-wrapper .filter-wrapper .filter-input-wrap .filter-input {
  display: grid;
  margin-bottom: 20px;
}

/*=====================================
  109. Home10 About Section CSS
========================================*/

/*=====================================
  110. Home10 Feature Section CSS
========================================*/

/*=====================================
  111. Home10 Tour Section CSS
========================================*/
.visual-tour-section .section-title h2 {
  letter-spacing: 10px;
}
@media (max-width: 1199px) {
  .visual-tour-section .section-title h2 {
    letter-spacing: 8px;
  }
}
@media (max-width: 767px) {
  .visual-tour-section .section-title h2 {
    letter-spacing: 6px;
  }
}
.visual-tour-section .visual-tour-slider .tour-img {
  position: relative;
}
.visual-tour-section .visual-tour-slider .tour-img > img {
  width: 100%;
  min-height: 540px;
  max-height: 540px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .visual-tour-section .visual-tour-slider .tour-img > img {
    min-height: 420px;
    max-height: 420px;
  }
}
@media (max-width: 1399px) {
  .visual-tour-section .visual-tour-slider .tour-img > img {
    min-height: 380px;
    max-height: 380px;
  }
}
@media (max-width: 991px) {
  .visual-tour-section .visual-tour-slider .tour-img > img {
    min-height: 350px;
    max-height: 350px;
  }
}
@media (max-width: 767px) {
  .visual-tour-section .visual-tour-slider .tour-img > img {
    min-height: 330px;
    max-height: 330px;
  }
}
.visual-tour-section .swiper-wrapper {
  align-items: center;
}
.visual-tour-section .swiper-wrapper .swiper-slide:nth-child(3n+2) .tour-img > img, .visual-tour-section .swiper-wrapper .swiper-slide:nth-child(3n+3) .tour-img > img {
  min-height: 420px;
  max-height: 420px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .visual-tour-section .swiper-wrapper .swiper-slide:nth-child(3n+2) .tour-img > img, .visual-tour-section .swiper-wrapper .swiper-slide:nth-child(3n+3) .tour-img > img {
    min-height: 330px;
    max-height: 330px;
  }
}
@media (max-width: 1399px) {
  .visual-tour-section .swiper-wrapper .swiper-slide:nth-child(3n+2) .tour-img > img, .visual-tour-section .swiper-wrapper .swiper-slide:nth-child(3n+3) .tour-img > img {
    min-height: 300px;
    max-height: 300px;
  }
}
@media (max-width: 991px) {
  .visual-tour-section .swiper-wrapper .swiper-slide:nth-child(3n+2) .tour-img > img, .visual-tour-section .swiper-wrapper .swiper-slide:nth-child(3n+3) .tour-img > img {
    min-height: 270px;
    max-height: 270px;
  }
}
@media (max-width: 767px) {
  .visual-tour-section .swiper-wrapper .swiper-slide:nth-child(3n+2) .tour-img > img, .visual-tour-section .swiper-wrapper .swiper-slide:nth-child(3n+3) .tour-img > img {
    min-height: 260px;
    max-height: 260px;
  }
}

.btn-area {
  position: relative;
  display: inline-block;
}
.btn-area .copy-email-btn {
  color: var(--title-color);
  font-family: var(--font-poppins);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  text-transform: lowercase;
  padding: 26px 48px;
  border: 1px solid var(--borders-color);
  border-radius: 100px;
  background-color: var(--white-color);
  transition: 0.5s;
}
@media (max-width: 1399px) {
  .btn-area .copy-email-btn {
    font-size: 30px;
    padding: 23px 47px;
  }
}
@media (max-width: 1199px) {
  .btn-area .copy-email-btn {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .btn-area .copy-email-btn {
    padding: 20px 39px;
  }
}
@media (max-width: 767px) {
  .btn-area .copy-email-btn {
    font-size: 24px;
    padding: 22px 38px;
  }
}
@media (max-width: 576px) {
  .btn-area .copy-email-btn {
    font-size: 22px;
    padding: 18px 26px;
  }
}
.btn-area .copy-email-btn:hover {
  background-color: var(--primary-color1);
  color: var(--white-color);
}

/*=====================================
  112. Home10 Hotel Room Section CSS
========================================*/
.home10-hotel-and-room-section .slider-btn-grp .progress-pagination2 .swiper-pagination-progressbar-fill {
  background: var(--white-color);
}
.web-pattern{
  background-image: url(../images/web-pattern.jpg);
}
.one-two{
  display: flex;
  gap: 35px;
}
.one-two2{
  justify-content: center;
   display: flex;
   gap: 15px;
}

.title-yaax {
   font-family: var(--font-casa-yaax) !important;
   font-size: 64px !important;
   font-weight: 100 !important;
   text-transform: uppercase;
}