body {
  font-family: "Urbanist", sans-serif;
  color: #222325;
  position: relative;
  overflow-x: hidden;
  top: 0 !important;
  max-width: 100vw;
}

p {
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
}

.section-topic {
  font-family: "Freeman", sans-serif;
  font-size: 30px;
  line-height: 27px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0C321A;
}

.section-tag {
  font-size: 5px;
  text-transform: uppercase;
  font-weight: 700;
  color: #0C321A;
  line-height: 5px;
  letter-spacing: -1px;
}

.btn-green {
  background-color: transparent;
  font-size: 15px;
  font-weight: 400;
  border: none;
  text-transform: uppercase;
  padding: 10px 15px;
  color: #E6EFE3;
  border-radius: 0;
  transition: 0.3s;
  position: relative;
  z-index: 2;
}
.btn-green:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #0C321A;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.btn-green:after {
  content: "";
  width: 0;
  height: 100%;
  background: linear-gradient(to left, #0C321A, rgba(255, 255, 255, 0.1882352941));
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: 0.3s;
}
.btn-green:hover:after {
  width: 100%;
}

.btn-orange {
  background: #EF5D35;
  font-size: 15px;
  font-weight: 400;
  border: none;
  display: inline-block;
  padding: 10px 15px;
  color: #fff;
  border-radius: 0;
  z-index: 2;
  transition: 0.3s;
  position: relative;
}
.btn-orange:hover {
  background: #ef5a31;
}

.btn-room {
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid #EF5D35;
  display: inline-block;
  padding-bottom: 3px;
  color: #EF5D35;
  border-radius: 0;
  text-transform: uppercase;
}

#header nav {
  background-color: #fff;
  padding: 5px 0;
}
#header nav .logo {
  height: 60px;
}
#header nav #navbar-sticky li {
  padding: 20px 10px;
  margin: 0 !important;
  transition: 0.5s;
}
#header nav #navbar-sticky li .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #222325;
  padding: 0;
  margin: 0;
  line-height: 16px;
  transition: 0.5s;
}
@media (max-width: 990px) {
  #header nav #navbar-sticky li {
    text-align: center;
    padding: 10px 0;
  }
}
@media (max-width: 768px) {
  #header nav {
    background-color: #fff;
  }
  #header nav #navbar-sticky {
    height: 100vh;
    padding: 50px 0;
  }
  #header nav #navbar-sticky li .nav-link {
    color: #222325;
  }
}
@media (max-width: 990px) {
  #header nav {
    padding: 0;
  }
}

.hero {
  min-height: 600px;
  overflow: hidden;
  position: relative;
}
.hero .hero-card {
  height: 600px;
  position: relative;
}
.hero .hero-card img {
  height: 600px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero .hero-card .overlay {
  background: rgba(0, 0, 0, 0.3);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
}
.hero .hero-card h1 {
  font-size: 60px;
  line-height: 55px;
  font-weight: 700;
  font-family: "Freeman", sans-serif;
  animation: zoomIn 0.8s ease forwards;
  text-transform: uppercase;
}
.hero .hero-card .btn-orange {
  animation: downIn 0.8s ease forwards;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes downIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.destination-section {
  background: url("../img/bg.jpg");
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center;
}

.destination-card {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}
.destination-card img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.destination-card .overlay {
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4) 90%);
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  position: absolute;
}
.destination-card .content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px;
  text-align: center;
  width: 100%;
}
.destination-card .content h5 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
}
.destination-card .content p {
  color: #fff;
}
.destination-card .content .btn-book {
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid #EF5D35;
  text-transform: uppercase;
  padding-bottom: 1px;
  color: #EF5D35;
  border-radius: 0;
  display: inline-block;
  transition: 0.3s;
}
.destination-card .content .btn-book:hover {
  border-color: #fff;
  color: #fff;
}
.destination-card:hover img {
  transform: scale(1.1);
}

.gallery-card {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}
.gallery-card img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.gallery-card .overlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  opacity: 0;
  transition: 0.3s;
}
.gallery-card:hover img {
  transform: scale(1.1);
}
.gallery-card:hover .overlay {
  opacity: 1;
}

.package {
  background: linear-gradient(to left, transparent 50%, #0C321A 50%);
  overflow: hidden;
  max-width: 100%;
}
.package .section-tag,
.package .section-topic {
  color: #fff;
}
.package .swiper-button-next,
.package .swiper-button-prev {
  position: relative;
  background-color: #EF5D35;
  color: #fff;
  border: none;
  border-color: #EF5D35;
  transition: 0.3s;
}
.package .swiper-button-next:hover,
.package .swiper-button-prev:hover {
  background-color: #fff;
  color: #EF5D35;
}
@media (max-width: 990px) {
  .package {
    background: #0C321A;
  }
}

.swiper-pagination {
  bottom: 12px !important;
  text-align: center;
  width: 100%;
  position: absolute;
}

.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
  border-radius: 50%;
  margin: 0 7px !important;
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  transition: 0.3s;
}
.swiper-pagination-bullet:before {
  height: 22px;
  width: 22px;
  border: 0.02rem solid #fff;
  position: absolute;
  content: "";
  left: -3px;
  top: -3px;
  border-radius: 50%;
}
.swiper-pagination-bullet:hover {
  background: #EF5D35;
}

.swiper-pagination-bullet-active {
  background: #EF5D35;
}

.tour-place {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.tour-place li {
  font-size: 14px;
  line-height: 14px;
  color: #222325;
  font-weight: 400;
  padding-bottom: 5px;
  border-bottom: 1px solid #222325;
}
.tour-place li a {
  font-size: 14px;
  line-height: 14px;
  color: #222325;
  font-weight: 400;
}

.package-card {
  background-color: #f5f5f5;
  overflow: hidden;
}
.package-card .package-img {
  overflow: hidden;
  height: 200px;
  width: 100%;
}
.package-card .package-img img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.package-card .content {
  padding: 20px;
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 180px;
}
.package-card .content h5 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  color: #222325;
}
.package-card .content p {
  font-size: 16px;
  line-height: 20px;
}
.package-card .content .btn-book {
  background-color: #EF5D35;
  font-size: 15px;
  font-weight: 400;
  border: none;
  text-transform: uppercase;
  padding: 10px 15px;
  color: #fff;
  border-radius: 0;
  display: inline-block;
  transition: 0.3s;
}
.package-card .content .btn-book:hover {
  background-color: #222325;
}
.package-card .content h6 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  color: #EF5D35;
}
.package-card .content h4 {
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  color: #EF5D35;
}
.package-card .content .days {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  color: #222325;
}
.package-card .content .days i {
  font-size: 16px;
  border-radius: 50%;
  text-align: center;
  margin-right: 5px;
  color: #0C321A;
}
@media (max-width: 990px) {
  .package-card .content {
    height: auto !important;
  }
}
.package-card:hover .package-img img {
  transform: scale(1.1);
}

.review {
  background-color: #E6EFE3;
}

.about {
  background: linear-gradient(to right, transparent 65%, #E6EFE3 65%), url("../img/bg.jpg");
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center;
}
.about p {
  font-size: 18px;
  line-height: 22px;
}
.about .count li h5 {
  font-size: 30px;
  line-height: 25px;
  font-weight: 500;
  text-transform: uppercase;
  color: #0C321A;
  font-family: "Freeman", sans-serif;
}
.about .count li h6 {
  font-size: 18px;
  line-height: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #0C321A;
  font-family: "Freeman", sans-serif;
}
.about .count li .section-tag {
  padding: 5px 0;
}
.about img {
  border: 5px solid #fff;
  transform: rotate(2deg);
}
@media (max-width: 990px) {
  .about {
    background: url("../img/bg.jpg");
  }
}

.about-page p {
  font-size: 18px;
  line-height: 22px;
  text-align: justify;
}
.about-page p span {
  font-weight: 500;
}
.about-page .title3 {
  font-family: "Freeman", sans-serif;
  font-size: 35px;
  line-height: 33px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0C321A;
  padding-left: 5px;
  border-left: 5px solid #0C321A;
}
.about-page .title4 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  color: #222325;
  font-style: italic;
}
.about-page .vision {
  background: linear-gradient(to right, rgba(34, 35, 37, 0.9), rgba(34, 35, 37, 0.9)), url("../img/serv-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.about-page .vision .vision-card {
  padding: 20px;
  border: 1px solid #fff;
  color: #fff;
  height: 300px;
}
.about-page .vision .vision-card h5 {
  font-size: 25px;
}
.about-page .vision .vision-card p {
  text-align: left;
}
@media (max-width: 990px) {
  .about-page .vision .vision-card {
    height: auto;
    width: 100%;
  }
}

.room-page {
  background-color: #E6EFE3;
}
.room-page .title5 {
  font-size: 25px;
  line-height: 25px;
  font-weight: 600;
  color: #222325;
  font-style: italic;
}

.room-card {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.room-card img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.activity {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/serv-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.activity .section-tag,
.activity .section-topic {
  color: #fff !important;
}

.activity-card {
  background-color: #f5f5f5;
  overflow: hidden;
}
.activity-card .activity-img {
  overflow: hidden;
  height: 200px;
  width: 100%;
}
.activity-card .activity-img img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.activity-card .content {
  padding: 20px;
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 190px;
}
.activity-card .content h5 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  color: #222325;
}
.activity-card .content p {
  font-size: 16px;
  line-height: 20px;
}
.activity-card .content .btn-book {
  background-color: #EF5D35;
  font-size: 15px;
  font-weight: 400;
  border: none;
  text-transform: uppercase;
  padding: 10px 15px;
  color: #fff;
  border-radius: 0;
  display: inline-block;
  transition: 0.3s;
}
.activity-card .content .btn-book:hover {
  background-color: #222325;
}
@media (max-width: 990px) {
  .activity-card .content {
    height: auto !important;
  }
}
.activity-card:hover .activity-img img {
  transform: scale(1.1);
}

.blog {
  background: url("../img/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.blog-card {
  background-color: #f5f5f5;
  overflow: hidden;
}
.blog-card .blog-img {
  overflow: hidden;
  height: 200px;
  width: 100%;
  position: relative;
}
.blog-card .blog-img img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.blog-card .blog-img .date {
  position: absolute;
  width: 50px;
  height: 50px;
  text-align: center;
  margin: 20px;
  top: 0;
  right: 0;
  background-color: #EF5D35;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.blog-card .blog-img .date h6 {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 10px;
}
.blog-card .blog-img .date h4 {
  color: #fff;
  font-weight: 600;
  font-size: 30px;
  line-height: 25px;
}
.blog-card .content {
  padding: 20px;
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 225px;
}
.blog-card .content h5 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  color: #222325;
}
.blog-card .content p {
  font-size: 16px;
  line-height: 20px;
}
.blog-card .content .btn-book {
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid #EF5D35;
  text-transform: uppercase;
  padding-bottom: 1px;
  color: #EF5D35;
  border-radius: 0;
  display: inline-block;
  transition: 0.3s;
}
.blog-card .content .btn-book:hover {
  color: #0C321A;
  border-color: #0C321A;
}
@media (max-width: 990px) {
  .blog-card .content {
    height: auto !important;
  }
}
.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.page-banner {
  height: 300px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 300px contain;
  position: relative;
  background-attachment: fixed;
  overflow: hidden;
}
.page-banner img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.page-banner h5 {
  font-family: "Freeman", sans-serif;
  font-size: 30px;
  line-height: 27px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}
.page-banner h6 {
  font-family: "Freeman", sans-serif;
  font-size: 80px;
  line-height: 80px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  position: absolute;
  display: inline-block;
  opacity: 0.3;
  z-index: 3;
}
@media (max-width: 990px) {
  .page-banner h6 {
    display: none;
  }
}
.page-banner .overlay {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
}

.title1 {
  color: #0C321A;
  font-weight: 700;
  font-size: 25px;
}

.title2 {
  color: #222325;
  font-weight: 700;
  font-size: 22px;
}

.journey-page {
  background-color: #E6EFE3;
}

.slider-side {
  background: url("../img/bg.jpg");
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center;
}

.contact-page {
  background-color: #E6EFE3;
}
.contact-page hr {
  background-color: #222325 !important;
  height: 1px !important;
  border: none;
}

.contact-card i {
  background-color: rgba(12, 50, 26, 0.1);
  width: 45px;
  height: 45px;
  color: #0C321A;
  font-size: 25px;
  text-align: center;
  line-height: 45px;
  transition: 0.3s;
}
.contact-card a,
.contact-card p {
  font-size: 17px;
  font-weight: 400;
  color: #222325;
  line-height: 20px;
}
.contact-card a {
  transition: 0.3s;
}
.contact-card a:hover {
  color: #EF5D35;
}
.contact-card:hover i {
  background-color: #EF5D35;
  color: #fff;
}

frame {
  height: 300px;
}

.book-form {
  background-color: #E6EFE3;
}
.book-form .input-container {
  border: 1px solid #74767E;
  padding: 0;
  position: relative;
}
.book-form .input-container input,
.book-form .input-container textarea {
  padding: 8px 10px;
  border: none;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  color: #222325;
  margin-top: 5px;
  background-color: transparent;
}
.book-form .input-container input:active, .book-form .input-container input:focus, .book-form .input-container input:focus:active,
.book-form .input-container textarea:active,
.book-form .input-container textarea:focus,
.book-form .input-container textarea:focus:active {
  background-image: none;
  outline: 0;
  box-shadow: none;
}
.book-form .input-container label {
  font-size: 10px;
  position: absolute;
  font-weight: 500;
  left: 10px;
  top: -7px;
  background-color: #E6EFE3;
  padding: 1px 3px;
}

.contact-form input,
.contact-form textarea {
  padding: 8px 10px;
  border: none;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  color: #222325;
  margin-top: 5px;
  background-color: rgba(12, 50, 26, 0.1);
}
.contact-form input:active, .contact-form input:focus, .contact-form input:focus:active,
.contact-form textarea:active,
.contact-form textarea:focus,
.contact-form textarea:focus:active {
  background-image: none;
  outline: 0;
  box-shadow: none;
}
.contact-form label {
  font-size: 12px;
  font-weight: 500;
  color: #0C321A;
}

.itinerary .item {
  border-bottom: 1px solid #0C321A;
}
.itinerary .item .title {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;
}
.itinerary .item .title:hover {
  background-color: rgba(12, 50, 26, 0.1);
}
.itinerary .item .title h5 {
  margin-bottom: 10px;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  color: #0C321A;
  margin: 0;
}
.itinerary .item .title .arrow {
  transition: transform 0.3s ease;
  font-weight: 400;
  font-size: 25px;
  color: #0C321A;
}
.itinerary .item .title .arrow.rotate {
  transform: rotate(45deg);
}
.itinerary .item .content {
  display: none;
  padding: 10px;
}
.itinerary .item .content h5 {
  font-size: 20px;
  color: #0C321A;
  padding: 0;
  font-weight: 400;
  margin: 15px 0 5px;
  line-height: 22px;
}
.itinerary ul {
  margin-top: 10px;
}
.itinerary ul li {
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  padding-left: 15px;
  position: relative;
  padding-bottom: 5px;
}
.itinerary ul li:before {
  position: absolute;
  width: 8px;
  height: 10px;
  left: 0;
  top: 5px;
  background-color: #0C321A;
  content: "";
}
.itinerary ul li strong {
  font-weight: 500;
}

footer {
  background: #0C321A;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding: 100px 0 30px;
  position: relative;
}
footer .logo {
  height: 60px;
  filter: brightness(0) invert(1);
  text-align: center;
}
footer .navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
footer .navigation li {
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 16px;
  transition: 0.5s;
  transition: 0.3s;
}
footer .navigation li:hover {
  color: #EF5D35;
}
footer .footer-contact {
  text-align: left;
}
footer .footer-contact h5 {
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}
footer .footer-contact a,
footer .footer-contact p {
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
}
footer .footer-contact a {
  transition: 0.3s;
}
footer .footer-contact a:hover {
  color: #EF5D35;
}
footer .social-links {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
  justify-content: center;
}
footer .social-links li i {
  font-size: 14px;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  text-align: center;
  border-radius: 50%;
  margin: 0 5px 5px 0;
  transition: 0.3s;
}
footer .social-links li i:hover {
  background-color: #EF5D35;
}
footer .section-topic {
  color: #fff;
}
footer .copyright {
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  line-height: 18px;
}

.swiper-button-prev {
  height: 45px;
  width: 45px;
  border: none;
  background-color: #fff;
  border-radius: 50%;
  color: #222325;
  transition: 0.3s;
}
.swiper-button-prev:after {
  content: "\f12f";
  font-family: "bootstrap-icons";
  font-size: 18px;
}
.swiper-button-prev:hover {
  background-color: #EF5D35;
  color: #fff;
}

.swiper-button-next {
  color: #222325;
  height: 45px;
  width: 45px;
  background-color: #fff;
  border-radius: 50%;
  border: none;
  transition: 0.3s;
}
.swiper-button-next:after {
  content: "\f138";
  font-family: "bootstrap-icons";
  font-size: 18px;
}
.swiper-button-next:hover {
  background-color: #EF5D35;
  color: #fff;
}

.home-chat {
  position: fixed;
  left: 0;
  top: 30%;
  z-index: 20;
}
.home-chat li {
  background-color: #222325;
  margin-bottom: 5px;
  padding: 2px;
  border-bottom-right-radius: 40px;
  border-top-right-radius: 40px;
  display: block;
  width: auto;
  transform: translateX(-65px);
  transition: 0.3s;
}
.home-chat li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-chat li a p {
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  padding-right: 5px;
}
.home-chat li a i {
  width: 35px;
  height: 35px;
  background-color: #fff;
  color: #222325;
  line-height: 35px;
  font-size: 15px;
  display: block;
  text-align: center;
  transition: 0.5s;
  border-radius: 50%;
}
@media (max-width: 990px) {
  .home-chat li {
    transform: translateX(0px);
  }
  .home-chat li p {
    display: none;
  }
}
.home-chat li:hover {
  transform: translateX(0px);
}

#preloader {
  width: 100%;
  position: fixed;
  height: 100%;
  background-color: #E6EFE3;
  left: 0;
  top: 0;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloader img {
  width: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  animation: zoom-ani 5s ease-in-out infinite;
  top: 50%;
}

.whatsapp-icon {
  width: 50px;
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 10;
  animation: zoom-ani 5s ease-in-out infinite;
}

@keyframes zoom-ani {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.Language {
  display: flex;
  align-items: center;
  position: fixed;
  right: 0;
  bottom: 20%;
  z-index: 22;
  margin: 0;
  overflow: hidden;
}
.Language p {
  padding: 3px 8px;
  margin: 0 5px 0 0;
}
.Language select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.5921568627);
  text-align: center;
  cursor: pointer;
  border-radius: 0;
  border: none;
  font-weight: 400;
  font-size: 12px;
  border: none;
  color: black;
  padding: 2px;
  margin: 0;
  text-transform: uppercase;
}
.Language select:focus {
  border: none;
}
.Language select:active {
  border: none;
}

.VIpgJd-ZVi9od-ORHb,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
  display: none !important;
}/*# sourceMappingURL=styles.css.map */