


/* DESTINATION CARD */

.containerss {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
}
.tours-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  background-color: #fff;
}
.tours-card img {
  width: 100%;
  height: auto;
}
.tours-card h3 {
  margin: 10px 0;
  font-size: 18px;
  color: #333;
}






.kitano-chat-box {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
  position: fixed;
  bottom: 80px;
  right: 30px;
  display: none; /* Initially hidden */
}

.kitano-chat-header {
  background-color: rgb(49 5 5);
  color: white;
  padding: 15px;
  text-align: center;
}

.kitano-chat-header h3 {
  margin: 0;
  font-size: 18px;
}

.kitano-chat-header p {
  margin: 5px 0 0;
}

.kitano-chat-conversations {
  padding: 10px;
}

.kitano-conversation {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #f1f1f1;
}

.kitano-conversation.kitano-active {
  background-color: #e8f5e9;
}

.kitano-user-icon {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  margin-right: 10px;
}

.kitano-conversation-info {
  flex: 1;
}

.kitano-conversation-info p {
  margin: 0;
}

.kitano-new-conversation {
  background-color: rgb(49 5 5);
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  width: 100%;
  cursor: pointer;
}

.kitano-new-conversation:hover {
  background-color: #45a049;
}

.kitano-chat-button {
  background-color: #4CAF50;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.kitano-chat-button img {
  width: 30px;
 
}







.testimonials-container1 {
  text-align: center;
  color: white;
  padding: 50px 20px;
  background: url('https://www.kitanotours.com/images/Giraffes2-days-safari.jpg') no-repeat center center fixed;
  background-size: cover;
}
.testimonials-container1 h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
}
.testimonials1 {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.testimonial1 {
  background-color: white;
  color: black;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  padding: 20px;
  text-align: left;
}
.testimonial1 img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  object-fit: cover;
  float: left;
  margin-right: 15px;
}
.testimonial1 h3 {
  margin: 0;
  font-size: 1.2em;
}
.testimonial1 p {
  margin: 0;
}
.testimonial1 .rating1 {
  color: #4CAF50;
  margin-top: 10px;
}
.write-review {
  background-color: #4CAF50;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 30px;
}



@media print {
  body {
      display: none;
  }
}

.departure-section {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1200px;
  }
  
  .departure-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  }

.departure-item .date {
  background-color: #e6ffe6;
  border: 1px solid #f8c67c;
  border-radius: 50%;
  text-align: center;
  padding: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.departure-item .date .day {
  font-size: 20px;
  font-weight: bold;
  color: #bd4007;
}

.departure-item .date .month {
  font-size: 14px;
  color: #cc6d00;
}

.departure-item .details {
  flex: 1;
}

.departure-item .details h2 {
  margin: 0 0 5px;
  font-size: 18px;
  color: #333;
}

.departure-item .details p {
  margin: 0 0 10px;
  color: #666;
}

.departure-item .price {
  font-size: 18px;
  color: #333;
  font-weight: bold;
  margin: 10px 0;
}

.departure-item .action {
  margin-left: 20px;
}

.departure-item .action button {
  background-color: #3d1e01;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  transition: background-color 0.3s;
}

.departure-item .action button:hover {
  background-color: #351007;
}

@media (max-width: 768px) {
  .departure-item {
      width: 100%; /* Stack items vertically on smaller screens */
  }
}

.month-selector {
  margin-top: 20px;
  text-align: center;
}

.month-selector label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
}

.month-options {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* Adjust spacing between month options */
  margin-top: 10px;
}

.month-option {
  width: 40px; /* Adjust circle size */
  height: 40px; /* Adjust circle size */
  border-radius: 50%; /* Circle shape */
  background-color: #441f01; /* Default background color */
  color: #fff6f6; /* Text color */
  border: 2px solid transparent; /* Transparent border initially */
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease; /* Smooth transition */
}

.month-option:hover,
.month-option.active {
  background-color: #333; /* Background color on hover or when active */
  color: #fff; /* Text color on hover or when active */
  border-color: #333; /* Border color on hover or when active */
}

#selectedMonth {
  display: none;
}

/* Responsive adjustments for mobile */
@media (max-width: 480px) {
  .month-options {
      flex-wrap: wrap;
  }
  
  .month-option {
      width: 35px; /* Adjust circle size for smaller screens */
      height: 35px; /* Adjust circle size for smaller screens */
      font-size: 12px; /* Adjust font size for smaller screens */
      margin: 5px; /* Adjust margin between month options */
  }
}



.tanzaniasafari {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}
.box {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  width: 100%; /* Default to full width */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  box-sizing: border-box; /* Include padding and border in width calculation */
}
.box-header {
  background-color: rgb(30 2 2);
  color: white;
  padding: 10px;
  border-radius: 5px 5px 0 0;
  text-align: center;
}
.unique-experience {
  font-style: italic;
  color: #cd6a06;
}

@media (min-width: 480px) {
  .box {
      width: calc(50% - 20px);
  }
}

@media (min-width: 768px) {
  .box {
      width: calc(33.333% - 20px);
  }
}

.kitano-tabs {
  background-color: #f9f9f9;
  padding: 20px;
}
.kitano-tabs__wrapper {
  max-width: 1300px;
  margin: 0 auto;
}
.kitano-tabs__inner {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}
.kitano-tabs__sidebar {
  width: 100%; /* Full width on small screens */
  padding-right: 0;
}
.kitano-tabs__link {
  display: block;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #432201;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
.kitano-tabs__link.active {
  background-color: #0d1721;
}
.kitano-tabs__content {
  width: 100%;
  display: none;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 20px;
}
.kitano-tabs__content.show {
  display: block;
}
.kitano-tabs__content p {
  color: #34495e;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .kitano-tabs__sidebar {
    width: 30%;
    padding-right: 20px;
  }
  .kitano-tabs__content {
    width: 70%;
    margin-top: 0; /* Remove top margin on larger screens */
  }
}



/* Language selector */
.language-selector {
  position: absolute;
  top: 20px; /* Adjust as needed */
  left: 20px; /* Adjust as needed */
  z-index: 9999;
  background-color: #fff;
  width: 100%;

}

.language-selector select {
  
  padding: 5px;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  width: 100%;
  border: none;
  cursor: pointer;
}

.flag-icon {
  width: 20px;
  height: auto;
  margin-right: 5px;
}



/* end Language selector */

.tanzania-gallery-container {
  text-align: center;
  padding: 20px;
}
.tanzania-gallery-container h1 {
  margin-bottom: 20px;
  color: #333;
}
.tanzania-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding: 20px;
}
.tanzania-gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.2s;
}
.tanzania-gallery img:hover {
  transform: scale(1.05);
}


.containerre {
  max-width: 1800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.section-title {
  color: #333;
}
.section-content {
  line-height: 1.6;
}
.testimonial {
  margin-top: 20px;
  padding-left: 20px;
  border-left: 3px solid #333;
}

.icon-section {
  text-align: center;
}

.icon-title {
  font-weight: bold;
  background-color: #f7f7f7; /* Light gray background */
  padding: 5px 10px; /* Padding for space around the text */
  border-radius: 5px; /* Rounded corners */
}



.container-medium {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.tours-list {
  margin: 40px 0;
}

.tours-list__swiper {
  margin: auto;
  padding: 15px;
  gap: 5px; 
}

.tours-list__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px; /* Adjust the gap between cards */
}


.tl-card {
  position: relative;
  width: 320px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tl-card__img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.tl-card__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.tl-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 0 0 10px 10px;
}

.tl-card__title-overlay {
  font-size: 1.6rem;
  font-weight: bold;
}

.tl-card__price-overlay {
  font-size: 1.4rem;
  margin-top: 5px;
}

.tl-card__button-overlay {
  margin-top: 10px;
}

.tl-card__content {
  padding: 20px;
}

.tl-card__head {
  margin-bottom: 15px;
}

.tl-card__days {
  font-size: 1.4rem;
  color: #666;
}
.tl-card__img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.tl-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.button-t {
  background-color: #f08306;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px; /* Adjust the border-radius to make the button rounded */
  cursor: pointer;
  transition: background-color 0.3s;
  display: inline-block; /* Set display to inline-block */
}

.button-t:hover {
  background-color: #632107;
}

























/* Style for the container of each image with title */
.image-with-title {
  position: relative;
  display: inline-block;
  margin: 10px;
  perspective: 1000px; /* Set perspective for the 3D effect */
}

/* Style for the title overlay */
.title-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  background-color: #a85807; /* Adjust background color and opacity */
  padding: 10px;
  text-align: center;
  opacity: 1; /* Initially hidden */
  transition: opacity 0.3s ease; /* Smooth transition */
}

/* Style for the title text */
.title-overlay h2 {
  margin: 0;
}



/* When hovering over the image, show the title overlay */
.image-with-title:hover .title-overlay {
  opacity: 1;
}

/* Style for the image */
.image-with-title img {
  width: 280px; /* Adjust size as needed */
  height: auto;
  
  border-radius: 10px;
  transition: transform 0.5s; /* Smooth transition for the 3D effect */
}




.page-title {
  text-shadow: 1px 0 rgb(150, 77, 9), 0 1px black, 1px 0 black, 0 1px rgb(150, 64, 7);
  font-size: 28px;
  color: rgb(179, 85, 19);
  line-height: 32px;
}

.icon-sections {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 30px;
  border-radius: 10px;
}

.icon-section {
  width: 250px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin: 10px;
  background-color: #f9f9f9;
}

.icon-section img {
  display: block;
  margin: 0 auto; /* Add this line to center the icons */
  width: 60px;
  margin-bottom: 10px;
}
.icon-section h3,
.icon-section p {
    text-align: center; /* Add this line to center the text */
}


.icon-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.icon-section p {
  font-size: 16px;
  color: #666;
}




.containerr {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.review-card {
  flex-basis: 48%; /* Adjust width as needed */
  border: 1px solid #ca8383;
  padding: 20px;
  margin-bottom: 20px;
}
.image-side {
  flex-basis: 48%; /* Adjust width as needed */
}
.image-side img {
  max-width: 100%;
  height: auto;
}



 /* Classic Border Style */
 .classic-border {
  border: 2px solid black;
  padding: 20px;
  margin: 10px;
}
/* Layout Styles */
.custom-layout {
  display: flex;
  flex-direction: column;
}
.left-section, .right-section {
  width: 100%;
}
.image {
  max-width: 100%;
  height: auto; /* Maintain aspect ratio */
}


/* 3D Title Styles */
.title-3d {
  text-shadow: 2px 2px 2px #ffffff; /* Add a 3D shadow effect */
  color: #a85405; /* Chocolate color */
      font-family: 'Arial', sans-serif; /* Use a common font */
  
      font-weight: bold; /* Make it bold */
      text-align: center;
    
}
/* Media Query for phones */
@media screen and (min-width: 600px) {
  .custom-layout {
    flex-direction: row;
  }
  .left-section, .right-section {
    width: 50%;
  }
}



/* Sehemu ya Sponsor */
.sponsor-section {
  width: 100%;
  overflow: hidden; /* Zuia scroll bar isionekane */
  background-color: #f8f8f8;
  padding: 10px 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container ya mabanners yote */
.sponsor-container {
  display: flex;
  white-space: nowrap; 
  animation: slide-left 15s linear infinite; /* Muda wa ku-slide */
}

/* Kila banner moja moja */
.sponsor-banner {
  flex-shrink: 0;
  padding: 0 20px; /* Nafasi kati ya banners */
}

/* Picha za mabanners */
.sponsor-banner img {
  max-width: 150px;
  max-height: 100px;
  height: auto;
  border-radius: 10px;
}

/* Keyframes: Kutoka kulia kwenda kushoto */
@keyframes slide-left {
  0% {
    transform: translateX(30%); /* Banner zinaanza nje ya skrini kulia */
  }
  100% {
    transform: translateX(-100%); /* Zinafika nje ya skrini kushoto */
  }
}

/* Kichwa cha sponsor */
.sponsor-title {
  text-align: center;
  margin-bottom: 20px;
}

.sponsor-title h2 {
  font-size: 24px;
  font-weight: bold;
}

/* Responsive kwa simu */
@media only screen and (max-width: 768px) {
  .sponsor-banner {
    padding: 0 10px; /* Punguza nafasi kati ya banners kwa simu */
  }
}










h1 {
  color: rgb(245, 106, 55);
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}



:root {
       --same-wlh: 60px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cairo", sans-serif;
}


.wrappers .button {
  display: inline-block;
  height: var(--same-wlh);
  width: var(--same-wlh);
  float: left;
  margin: 0 5px;
  overflow: hidden;
  background: #819ff7;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.wrappers .button:hover {
  width: 200px;
}

.wrappers .button .icon {
  display: inline-block;
  text-align: center;
  height: var(--same-wlh);
  width: var(--same-wlh);
  border-radius: 50%;
  box-sizing: border-box;
  line-height: var(--same-wlh);
  transition: all 0.3s ease-out;
}

.wrappers .button:nth-child(1):hover .icon {
  background: #4267b2;
}
.wrappers .button:nth-child(2):hover .icon {
  background: #c32aa3;
}
.wrappers .button:nth-child(3):hover .icon {
  background: black;
  color: white;
}
.wrappers .button:nth-child(4):hover .icon {
  background: #25d366;
}
.wrappers .button:nth-child(5):hover .icon {
  background: #25d366;
}
.wrappers .button:nth-child(6):hover .icon {
  background: #ff5;
}

.wrappers .button .icon i {
  font-size: 25px;
  line-height: var(--same-wlh);
  transition: all 0.3s ease-out;
}

.wrappers .button:hover .icon i {
  color: white;
}

.wrappers .button span {
  font-size: 20px;
  font-weight: 500;
  line-height: var(--same-wlh);
  margin-left: 10px;
}



* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.slowFade {
    display: flex;
    align-items: flex-start;
    background: #fff;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.slowFade .slide img {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    height: auto;
    background: #000;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    opacity: 0;
    transform: scale(1.5) rotate(15deg);
    -webkit-animation: slowFade 32s infinite;
            animation: slowFade 32s infinite;
}
.slowFade .slide:nth-child(3) img {
    -webkit-animation-delay: 8s;
            animation-delay: 8s;
}
.slowFade .slide:nth-child(2) img {
    -webkit-animation-delay: 16s;
            animation-delay: 16s;
}
.slowFade .slide:nth-child(1) img {
    -webkit-animation-delay: 24s;
            animation-delay: 24s;
}
@keyframes slowFade {
    25% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
    40% {
        opacity: 0;
    }
}

@-webkit-keyframes slowFade {
    25% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
    40% {
        opacity: 0;
    }
}


#MATERU {
  background-image: linear-gradient(to bottom right, red, yellow);
}

.about-us {
  position: relative;
  margin-bottom: 127px;
  margin-top: -130px;
  z-index: 11; }

.about-us-inner {
  position: relative;
  padding-right: 15px; }

.about-us-inner::after {
  position: absolute;
  content: '';
  top: -50px;
  left: -80px;
  width: calc(100% + 132px);
  height: calc(100% + 100px);
  background: #fff;
  z-index: -1;
  -webkit-box-shadow: 0px 5px 37px 0px rgba(16, 145, 255, 0.15);
  -moz-box-shadow: 0px 5px 37px 0px rgba(16, 145, 255, 0.15);
  box-shadow: 0px 5px 37px 0px rgba(16, 145, 255, 0.15);
  border-top-left-radius: 61px;
  border-bottom-right-radius: 61px; }

.about-us-tab ul.nav {
  display: block; }

.about-us-tab ul.nav-tabs {
  border-bottom: none; }

.about-us-tab ul li a.nav-link {
  font-size: 18px;
  color: #252e45;
  border: none;
  padding: 0;
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  border-bottom: 1px solid #dddddd; }

.about-us-tab ul li:last-child a.nav-link {
  border-bottom: none; }

.about-us-tab ul li a i {
  font-size: 22px;
  margin-right: 15px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #b0b0b0;
  text-align: center; }

.about-us-tab ul li a.nav-link.active {
  border-bottom: 1px solid #dddddd;
  color: #ff6600;
  text-decoration: line-through; }

.about-us-tab ul li:last-child a.nav-link.active {
  border-bottom: none; }

.about-us-tab ul li a.nav-link.active i {
  color: #b0b0b0; }





.u-image,
.u-background-effect-image,
.u-video-poster {
  object-fit: cover;
  display: block;
  vertical-align: middle;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: repeat;
  border-radius: 5px;
  border-image: 4px;

}
h4 {
	font-size: 1.25rem;}
.u-hover-palette-2-light-1:hover,
.u-hover-palette-2-light-1[class*="u-border-"]:hover,
.u-hover-palette-2-light-1:focus,
.u-hover-palette-2-light-1[class*="u-border-"]:focus,
.u-active-palette-2-light-1.u-active.u-active,
.u-active-palette-2-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-2-light-1:hover,
a.u-button-style.u-hover-palette-2-light-1[class*="u-border-"]:hover,
a.u-button-style:hover > .u-hover-palette-2-light-1,
a.u-button-style:hover > .u-hover-palette-2-light-1[class*="u-border-"],
a.u-button-style.u-hover-palette-2-light-1:focus,
a.u-button-style.u-hover-palette-2-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-2-light-1:active,
a.u-button-style.u-button-style.u-active-palette-2-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-2-light-1.active,
a.u-button-style.u-button-style.u-active-palette-2-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-2-light-1,
a.u-button-style.u-button-style.active > .u-active-palette-2-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-2-light-1,
li.active > a.u-button-style.u-button-style.u-active-palette-2-light-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #e68387 !important;
}
a.u-link.u-hover-palette-2-light-1:hover {
  color: #e68387 !important;
}
.u-palette-2-light-2,
.u-body.u-palette-2-light-2,
.u-container-style.u-palette-2-light-2:before,
.u-container-layout.u-palette-2-light-2:before,
.u-table-alt-palette-2-light-2 tr:nth-child(even) {
  color: #111111;
   
  background-color: #ebafb1;
  border-radius: 20px;
  box-shadow: rgba(160, 18, 18, 0.25);
  overflow: hidden;
}
.u-button-style.u-palette-2-light-2,
.u-button-style.u-palette-2-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f1b5b8 !important;
  }
.text-center {
	text-align: center;
  }

.button {
	display: inline-block;
	padding: 12px 30px;
	text-align: center;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-size: 14px;
	text-transform: capitalize;
	letter-spacing: 0.7px;
	font-weight: 600;
	border: 0;
	border-radius: 35px;
	background: #200101;
	transition: all 500ms ease;
	cursor: pointer;
	color: rgb(255, 255, 255);
	position: relative;
	margin-top: 25px;
	overflow: hidden;
	-webkit-box-shadow: 0 5px 30px rgba(20, 20, 20, 0.7);
	box-shadow: 0 4px 20px rgba(50, 51, 51, 0.85);
	text-decoration: none;
}
.slub1-safari{
    width: 100%;
    height: 449px;
    display: inline-block;
    border-radius: 3px;
    box-shadow: 5px 10px 18px #949292;
    cursor: pointer;
    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.55));
    display: inline-block;
    margin: right 20px;;
    position: relative;
    vertical-align: middle;
    overflow: hidden;
	
}
.slub2-safari{
    height: 349px;
    display: inline-block;
    border-radius: 3px;
    box-shadow: 5px 10px 18px #949292;
    cursor: pointer;
	background: linear-gradient(#d58e9093, #ebafb1a1);
    display: inline-block;
    margin: 0px;
    position: relative;
    vertical-align: middle;
    overflow: hidden;
}
.slub3-safari{
    height: 395px;
    display: inline-block;
    border-radius: 3px;
    box-shadow: 5px #241f1fe0;
    cursor: pointer;
	background: linear-gradient(#c2b5b5, hsla(25, 38%, 87%, 0.575));
    display: inline-block;
    margin: 0px;
    position: relative;
    vertical-align: middle;
    overflow: hidden;
}
.button:hover {
	color: rgb(180, 152, 29);
	background: #6e602a;
	transform: translateY(-28px);

}
.num-1{
	width: 100px;
  height: 50px; /* as the half of the width */
  background-color: transparent;
  border-top-left-radius: 55px;  /* 100px of height + 10px of border */
  border-top-right-radius: 55px; /* 100px of height + 10px of border */
  border: 1px solid rgb(188, 132, 13);
  border-bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -36px;
  box-shadow: 5px 5px 8px #000;
}



dl, ol, ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.bg-fixed {
	background-attachment: fixed;
}

.bg-img {
	background-size: cover;
	background-repeat: no-repeat;
}

.section-padding {
	padding: 100px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 75px;
}

.section-title h2 {
	font-weight: 900;
	text-transform: capitalize;
	font-size: 33px;
	line-height: 1.3;
	color: rgb(59, 50, 26);
}

.small-title {
    color: #2c2929;
    margin-bottom: 10px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    background: rgba(114, 146, 230, 0.15);
    padding: 5px 20px;
    border-radius: 30px;
    display: inline-block;
}

.display-table {
	width: 100%;
	height: 100%;
	display: table;
}

.table-cell {
	display: table-cell;
	vertical-align: middle;
}

.mr-top-50 {
	margin-top: 50px;
}

.back-to-top {
	position: fixed;
	display: none;
	color: #fff;
	width: 40px;
	height: 42px;
	line-height: 40px;
	border-radius: 5px;
	right: 25px;
	bottom: 20px;
	text-align: center;
	background: #5c531e;
	transition: background 0.5s;
	z-index: 11;
}

.back-to-top i {
	color: #fff;
	font-size: 20px;
}

.v-middle {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}

.valign {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.animation-bounce {
	-webkit-animation: bounce 3s infinite ease-in-out;
	-o-animation: bounce 3s infinite ease-in-out;
	-ms-animation: bounce 3s infinite ease-in-out;
	-moz-animation: bounce 3s infinite ease-in-out;
	animation: bounce 3s infinite ease-in-out;
}

@-webkit-keyframes bounce {
	0% {
		transform: translateY(-5px);
	}

	50% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(-5px);
	}
}

@keyframes bounce {
	0% {
		transform: translateY(-5px);
	}

	50% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(-5px);
	}
}
ontact-area .form-message.success {
	background: #03b103;
	color: #fff;
	padding: 10px 15px;
	border-radius: 3px;
}

contact-area .form-message.error {
	background: #ff4d15;
	color: #fff;
	padding: 10px 15px;
	border-radius: 3px;
}


/*---text blow---*/
.neonText {
    color: rgb(209, 188, 188);
    text-shadow:
        0 0 7px #fff,
        0 0 10px #fff,
        0 0 21px #fff,
        0 0 42px #5271ff,
        0 0 82px #5271ff,
        0 0 92px #5271ff,
        0 0 102px #5271ff,
        0 0 151px #5271ff;
  }
    
  body {
    font-size: 10px;
    font-family: "Yellowtail", sans-serif;
    background-color: #f9fdf9;

  }  
  
   h6 {
    text-align: center;
    font-weight: 400;
  }
    
  h6 {
      font-size: 3.2rem;
      animation: pulsate 0.11s ease-in-out infinite alternate;     
  }
    
  h6 {
      font-size: 1.8rem;
  }
  
  @keyframes pulsate {
      
    0% {
  
        text-shadow:
        0 0 4px #fff,
        0 0 11px #fff,
        0 0 19px #fff,
        0 0 40px #5271ff,
        0 0 80px #5271ff,
        0 0 90px #5271ff,
        0 0 100px #5271ff,
        0 0 150px #5271ff;
    
    }
    
    0% {
  
      text-shadow:
      0 0 4px #fff,
      0 0 10px #fff,
      0 0 18px #fff,
      0 0 38px #5271ff,
      0 0 73px #5271ff,
      0 0 80px #5271ff,
      0 0 94px #5271ff,
      0 0 140px #5271ff;
  
  }
  
  
  }.neonText {
	animation: flicker 1.5s infinite alternate;
	color: rgb(56, 17, 5);
  }
  
 
  
  /* Flickering animation */
  @keyframes flicker {
	  
	0%, 18%, 22%, 25%, 53%, 57%, 100% {
  
		text-shadow:
		0 0 4px #fff,
		0 0 11px #fff,
		0 0 19px #fff,
		0 0 40px #0fa,
		0 0 80px #0fa,
		0 0 90px #0fa,
		0 0 100px #0fa,
		0 0 150px #0fa;
	
	}
	
	20%, 24%, 55% {        
		text-shadow: none;
	}    
  }
  
  
  /* Additional styling */
	
 
  
  body {
	font-size: 18px;
	background-color: #ffffff;
  }  
  
  h6 {
	text-align: center;
	text-transform: uppercase;
	font-weight: 400;
  }

  
/* booking now */

  