
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  /* font-family: "Open Sans", sans-serif; */
  color: #444444;
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  font-style: normal;    font-size: 20px;

}

a {
  color: #6e6660;
  text-decoration: none;
}

a:hover {
  color: #f1775d;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
      font-family: 'Philosopher', sans-serif;

}
.cormorant-infant-regular {
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  font-style: normal;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background:#ed3128;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top em {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #bd294c;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;border-top: 3px solid #ed3128;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #ff4e00;
}

#header .logo img {
    padding: 0;
    margin: 0;
    margin-top:-44px;
    z-index: 1000;
    position: absolute;
    width: 150px;
}
.header .logo img {
    max-height: 75px;
    margin-right: 6px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5px 10px 20px;
    font-size: 20px;
    color: #6e6660;
    white-space: nowrap;
    transition: 0.3s;
    font-weight: 700;
    margin-left: 10px;

}

.navbar a em,
.navbar a:focus em {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #333333;
    border-bottom: 5px solid #ff4e00;
    border-radius: 0% 0% 0% 30%;
    border-right: 1px solid #ff4e00;

}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #404042;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;border-radius: 0%;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #79767f;border-radius: 0%;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 7px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ed502e;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #0b2341;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 12, 21, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 105px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0b2341;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ed502e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ed502e;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


section {
  padding: 30px 0px;overflow: hidden;
}

.section-bg {
  background-color: #f6f9fd;
}

.section-title {
  padding-bottom: 40px;
}

.section-title p {
font-size: 20px;
    font-weight: 700;
    padding: 0;
    line-height: 1px;
    margin: 20px 0 5px 0;
    letter-spacing: 0px;
    text-transform: capitalize;
    color: #79767f;
}

.section-title p::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #585560;
  margin: 4px 10px;
}

.section-title h1 {
  margin: 0;
  margin: 0;
  font-size: 45px;
  font-weight: 700;
      font-family: 'Philosopher', sans-serif;

  color:#ed3128;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 22px;
    text-align: justify;

}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about {
    background: #e9e9e92bs;
}
.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
 
    position: relative;
    font-size: 20px;
    line-height: 20px;
    color: #333131;
    /* font-weight: 500; */
    font-family: "Cormorant Infant", serif;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul em {
  
  left: 0;
  
  font-size: 16px;
  color: #ed3128;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Cormorant Infant", serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 14px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: #ffffff;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 4px solid #8f8f8f;
    background: #69615b;

}

.about .content .btn-learn-more:hover {
  background: #ed502e;
  color: #fff;
  text-decoration: none;
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h5 {
  font-weight: 400;
  font-size: 25px;
  color: #ed3128;    line-height: 2;

}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 25px;
    font-weight: 600;
  color: #4d4949;    text-align: justify;

}

.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .accordion-list {
 /*  padding: 0 100px 60px 100px; */
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 10px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  color: #0b2341;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #ed502e;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #0b2341;
}

.why-us .accordion-list a.collapsed:hover {
  color: #ed502e;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ed502e 50%, rgba(237, 80, 46, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(237, 80, 46, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #ed502e;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
  .section-title p {
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    line-height: 24px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6e6660;
    font-family: "Cormorant Infant", serif;
}
}

@media (max-width: 992px) {
  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
  position: relative;
  background: #ffffff38;
}

.testimonials .testimonial-item .testimonial-img {
  width: 50%;
  border-radius: 10px;
 
  position: absolute;
  left: -65px;
}

.testimonials .testimonial-item .title3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #00145f;    text-align: right;

}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fdedea;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
    color: 
color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}
.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;    text-align:center;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ed502e;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ed502e;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgb(255 255 255 / 27%), rgb(0 0 0 / 77%)), url(../img/zoo.webp) center center;
    background-size: cover;
    padding: 100px 0;
    background-attachment: fixed;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;    text-align: center;    font-size: 35px;
    font-family: 'Philosopher', sans-serif;

}

.cta .cta-btn {
  font-family: "Cormorant Infant", serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #ffffff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #ff7600;
    border: 2px solid #ffffff;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #0b2341;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #ed502e;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info .title2 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #0b2341;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #1a5298;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #123a6d;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ed502e;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #f59f8c;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ed502e;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ed502e;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(11, 35, 65, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #e9f1fb;
}

.faq .faq-item i {
  color: #669ee5;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: "Poppins", sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
    background: #f6f9fd;
    min-height: 57px;
    margin-top: 58px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 74px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b2341;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
font-size: 25px;
    float: right;
    font-weight: 600;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #123a6d;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
 background-image: linear-gradient(to bottom, #29292c 42%, #29292c 100%);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 20px;font-family: "Cormorant Infant", serif;
}

#footer .footer-top {
  padding: 60px 0 30px 0; border-top:5px solid #ffffff;
    
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Cormorant Infant", serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul em {
  padding-right: 2px;
  color: #dbd9de;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;    font-size: 20px;

}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #d8d8d9;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #ed502e;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ef6445;
}

#footer .copyright {
  border-top:1px solid #ed3128;
  text-align: center;
  padding-top: 30px;    font-size: 18px;

}
#footer .copyright p {
  
  text-align: center;
  

}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 18px;
    color: #fff;
    font-weight: 700;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

.title2 {
   font-size: 40px;    color: #050505;

    font-weight: 600;
    font-family: 'Philosopher', sans-serif;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 60vh;
  background: url("../img/zoo.webp") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgb(0 0 0 / 28%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero 
.container {
  padding-top: 72px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 62px;
  }
}


#hero .btn-get-started {
  
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
 background: #f67200;
   
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
 

}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
.title3 {
    font-size: 23px;
    color: #5e5d61;
    font-weight: 600;
}

p.para {
    color: #fff;
}
.title4 {
   font-size: 45px;
    font-weight: 700;
    font-family: 'Philosopher', sans-serif;
    color: #ffffff;
}
.amt {
    font-size: 19px;
    font-weight: 600;
    color:#ffffff;
        font-family: 'Philosopher', sans-serif;

}
@media only screen and (max-width: 321px){
#header .logo img {
    max-height: 70px;
    margin-top: -20px;
}

.title2 {
    font-size: 17px;
    font-weight: 600;
    color: #c22b4f;
    font-family: 'Philosopher', sans-serif;
}
.cta p {
    color: #fff;
    text-align: center;
    font-size: 21px;
    font-family: 'Philosopher', sans-serif;
}
}
@media only screen and (max-width: 480px){
#header .logo img {
    padding: 0;
    margin: 0;
    margin-top: -18px;
    z-index: 1000;
    position: absolute;max-height: 70px;
}
.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
    text-align: justify;
    border-bottom: 1px solid #ccc;
    font-size: 18px!important;
}
.cta p {
    color: #fff;
    text-align: center;
    font-size: 21px;
    font-family: 'Philosopher', sans-serif;
}
.title2 {
    font-size: 28px;
    font-weight: 600;
    color: #c22b4f;
    font-family: 'Philosopher', sans-serif;
}
.section-title h1 {
    margin: 0;
    margin: 0;
    font-size: 31px;
    font-weight: 700;
    
    color: #a6192e;
}

}

@media only screen and (max-width: 1024px){
.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 19px;
    font-size: 17px;
    color: #0b2341;
    white-space: nowrap;
    transition: 0.3s;
    font-weight: 700;
}
#header .logo img {
    padding: 0;
    margin: 0;
   margin-top: -30px;
        z-index: 1000;
        position: absolute;
        max-height: 100px;
        width: 125px;
}
}

.agileits_reservation {
    z-index: 999;
    background-image: linear-gradient(to bottom, #595661 16%, #595661 68%);
    padding: 1em;
    -webkit-box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%);
    -moz-box-shadow: 0px 1px 8px 0px rgba(24, 24, 23, 0.42);
    box-shadow: 0px 5px 8px 5px rgb(24 24 23 / 42%);
    
}
.span1_of_1 {
    float: left;
    list-style: none;
    /* width: 30.9%; */
    padding-top: 10px;padding-right: 15px;
    padding-left: 15px;
}
.agileits_reservation input[type="text"], select#adult, select#children, select#selrooms, .phone_email1 input[type="email"] {
    width: 100%;
    color: #54525c;
    font-size: 16px;
    padding: 10px 20px 10px 24px;
    outline: none;
    background: #ffffffe3;
    border: 1px solid #ccc;
    font-weight: 700;

}
.agileits_reservation em.bi {
    position: absolute;
    color: #454545;
    font-size: 15px;
    margin-top: 14px;
    margin-left: 5px;
}
.date_btn input[type="submit"] {
    text-transform: capitalize;
    width: 100%;
    background:#4a0910;
    color: #ffffff;
    padding: 8px 0;
    border: none;
    font-size: 20px;
    outline: none;
    font-weight: 700;
    letter-spacing: 2px;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    transition: .5s all;
}
@media (max-width: 480px){
.agileits_reservation input[type="text"], select#adult, select#children, select#selrooms, .phone_email1 input[type="email"] {
    width: 100%;
    color: #1d6554;
    font-size: 15px;
    padding: 10px 35px 10px;
    outline: none;
    background: #ffffff;
    border: 1px solid #ccc;
}

.section-title p {
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    line-height: 17px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6e6660;
    font-family: "Cormorant Infant", serif;
}
.title4 {
    font-size: 27px;
    font-weight: 700;
    
    color: #ffffff;
    /* line-height: 56px; */
}
a.btn-get-started.animate__animated.animate__fadeInUp.scrollto.center {
   
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #ffffff;
    background: #fcd274;
    color: #040404;
}

}

@media (max-width: 480px){
.col-xs-12.span1_of_1.book_date {
    width: 100% !important;
}
.agileits_reservation {
    z-index: 999;
    background-image: linear-gradient(to bottom, #595661 16%, #595661 68%);
    padding: 1em;
    -webkit-box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%);
    -moz-box-shadow: 0px 1px 8px 0px rgba(24, 24, 23, 0.42);
    box-shadow: 0px 5px 8px 5px rgb(24 24 23 / 42%);
    margin-top: 20px!important;
    
}
}
@media only screen and (max-width: 768px){
.col-lg-2.col-sm-4.col-xs-12.span1_of_1.book_date.both {
    clear: both;
}


}

section#about {
   /*  margin-top: 73px; */
}
@media (min-width: 992px){
.col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
    float: left;
}}
.well {
    
    padding: 19px;
   
    background-color:#404042;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
}
@media (min-width: 992px){
.col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
    float: left;
}
.col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
    float: left;
}
.col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
    float: left;
}
.col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
    float: left;
}
}
.gpdn {
    padding-top: 10px;
    color: #fff;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
..form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: maroon; /* Set background color to maroon */
    background-clip: padding-box;
    border: var(--bs-border-width) solid #878787;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, background-color .15s ease-in-out;
}

/* Add hover effect with grey background */
.form-control:hover {
    
    border-color: darkgrey;
    font-size: 20px;
}

.agileits_reservation.tp {
    margin-top: 0px;
}
img.icon {
    position: absolute;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #ed502e;
    line-height: 1;
}
.ftr-link {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
        font-family: 'Philosopher', sans-serif;
}

.box{
    background: linear-gradient(#1515158a, #000000db);
    font-family: "Cormorant Infant", serif;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.box:hover{ box-shadow: 0 0 20px -7px rgba(0,0,0,0.35); }
.box img{
    width: 100%;
    height: auto;
    opacity: 1;
    transition: all 0.5s ease 0s;
}
.box:hover img{ 
    opacity: 0.3;
}
.box .box-content{
    color: #fff;
    background-color:#ff7600;
    width: 100%;
    padding: 7px 10px 5px;
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 2;
    transition: all 0.25s ease;
}
.box:hover .box-content{
    top:0;    
}
.box .title{
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 1px;
}
.box .post{
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
    display: block;
}
.box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) scaleY(0);
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transition: all 0.3s ease 0s;
}
.box:hover .icon{
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scaleY(1);
}
.box .icon li{
    margin: 0 3px;
    display: inline-block;
}
.box .icon li a{
    color: #0846da;
    background: #fff;
    font-size: 14px;
    line-height: 32px;
    height: 30px;
    width: 30px;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}
.box .icon li a:hover{
    text-shadow: 4px 4px 0 rgba(0,0,0,0.2);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.5);
}
@media only screen and (max-width:990px){
    .box{ margin: 0 0 30px; }
}
.b-x {
 
    padding: 30px 30px;background: #59566124;
}
footer#footer a {
    color: #fff;
}
a.twitter, .facebook , .instagram , .linkedin {
    background: #daa520;
}
#fsocial {
    position: fixed;
    width: 200px;
    height: auto;
    float: right !important;
    margin: 440px -52px;
    border-radius: 5px 5px 5px 5px;
    /* box-shadow: 0px 1px 1px rgb(0 0 0 / 20%); */
    z-index: 5000;
    right: 0;
    text-align: center;
    font-size: 24px;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #313030;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px;
}
.contact .info-box i {
  font-size: 32px;
  color: #ff5821;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #ffded4;
  float: left;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #656262;
  font-weight: 700;
  margin: 10px 0 10px 68px;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin: 0 0 0 68px;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
    font-weight: 700;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #ff5821;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #ff5821;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;    margin-top: 10px;

}
.contact .php-email-form button[type=submit]:hover {
  background: #ff7e54;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
        float: left;
    }
	.col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
        float: left;
    }
}

.container-fluid.tp {
    margin-top: 70px;
}
p.para-upper {
    font-family: "Cormorant Infant", serif;
    font-size: 18px;
    
}
.rm_oth {
   margin-top: 20px;
   background: #fbfbfb;
   font-size: 16px;
}
button#myBtn {
    background: #595661;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 8px 30px;
    border: 2px solid transparent;
}



/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values .card {
  border: 0;
  padding: 282px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.values .card-body {
  z-index: 10;
  background: linear-gradient(to bottom, #070707 16%, #3a3735d4 68%);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}
.values .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
.values .card-title a {
  color: #fff;
}
.values .card-text {
  color: #fff;
}
.values .read-more a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  transition: 0.4s;
}
.values .read-more a:hover {
  text-decoration: underline;
}
.values .card:hover .card-body {
   background:linear-gradient(to bottom, #bd294c 30%, #595661d6 92%);
}
.values .card:hover .att {
    color: #fff;
}
.values .card:hover .read-more a, .values .card:hover .card-title, .values .card:hover .card-title a, .values .card:hover .card-text {
  color: #fff;
}
.att {
    color: #bd294c;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 15px;
    
}
.card-body {
     flex:none; 
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
    color: var(--bs-card-color);
}

.bg {
    background: #e6e6e5;
}
footer#footer p {
    font-size: 20px;
}
/* Features Section - Home Page
------------------------------*/
.features .features-item {
  color: rgba(var(--color-default-rgb), 0.8);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item .t-1 {
color:#404042;
    font-weight: 600;
    font-size: 28px;
    font-family: 'Philosopher', sans-serif;
}


}

.features .features-item .btn-get-started {
  background-color: var(--color-primary);
  color: var(--color-inverse);
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
}

.features .features-item .btn-get-started:hover {
  background-color:#595661;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.features .features-item img {
  border: 6px solid var(--color-box-background);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.features .features-item .features-img-bg {
  position: relative;
  min-height: 500px;
}

@media (max-width: 640px) {
  .features .features-item .features-img-bg {
    min-height: 300px;
  }
}

.features .features-item .features-img-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.features .features-item .image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
}

.features .features-item .image-stack .stack-back {
  grid-column: 4/-1;
  grid-row: 1;
  width: 100%;
  z-index: 1;
}

.features .features-item .image-stack .stack-front {
  grid-row: 1;
  grid-column: 1/span 8;
  margin-top: 20%;
  width: 100%;
  z-index: 2;
}
.features .features-item img {
    border: 6px solid #fff;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}
.features .features-item .btn-get-started {
  background-color:#ed3128;
    color: #ffffff;
    padding: 8px 30px 10px 30px;
    border-radius: 4px;
    font-family: 'Philosopher', sans-serif;
    font-size: 20px;
}
#features p {
    font-size: 21px;
    font-weight: 500;
    color: #535353;
    text-align: justify;
}
section#features {
    background:#ffffff;
}
.title-3 {
        font-size: 20px;
    color: #012444;
    font-weight: 600;
   text-transform: capitalize;
   padding-bottom:10px;     font-family: 'Larken Extra Bold Italic';

}
a.twitter {
    background: #1DA1F2;
}
a.facebook {
    background: #3b5998;
}
a.instagram {
    background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}
a.linkedin {
    background: #0A66C2;
}
a.youtube {
    background:#a71c12;
}
@media (min-width: 992px) {
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
        float: left;
    }
}
.btn-danger {
    background: #47090f;
}
.btn-danger:hover {
    background: #585560;
}
#cookieConsent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
    display: none;
}

#cookieConsent a {
    color: #4CAF50;
}

#acceptCookies {
    margin-left: 20px;
    padding: 5px 10px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    cursor: pointer;
}
.b-x {
    
    background: url(../img/bcg.webp) center center;
    background-size: cover;
   
   
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/


.position-relative {
    position: relative !important;
}

.services .service-item {
  background-color: var(--surface-color);
  padding: 50px 30px;
  margin-top: 36px;
  transition: all ease-in-out 0.3s;
  position: relative;
  border: 1px solid #ccc;
  text-align: center;
}

.services .service-item .icon {
  background: #ff4f02;
  color: var(--contrast-color);
  margin: 0;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border:6px solid #f8f7f7;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
 line-height: 24px;
    font-size: 20px;
    margin-bottom: 0;
    text-align: center;
}
}

.services .service-item:hover {
  background: var(--background-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}

.services .service-item:hover .icon {
  background: #585560;
  border: 2px solid var(--accent-color);
}

.services .service-item:hover .icon i {
  color: var(--accent-color);
}
.testimonials {
    color: var(--default-color);
   
    padding: 60px 0;
    scroll-margin-top: 118px;
    overflow: clip;
	
	background: linear-gradient(rgb(255 255 255 / 27%), rgb(0 0 0 / 77%)), url(../img/testimonials-bg.jpg) center center;
    background-size: cover;
    
    background-attachment: fixed;
   
}
a:hover {
    color: 
color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}
a:hover {
    --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}
.light-background {
    --background-color: #fffaf9;
    --surface-color: #ffffff;background: url(../img/amt-bc.webp) left center;
}
.title-2 {
    font-size: 34px;
    font-weight: 700;
    font-family: 'Philosopher', sans-serif;
    color: #050505;
}
.title5 {
    font-weight: 700;
    font-size: 34px;
    color: #bd294c;
    line-height: 2;
    font-family: 'Philosopher', sans-serif;
}
span#more {
    font-size: 25px;
    text-align: justify;
}
#cookieConsent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
    display: none;
}

#cookieConsent a {
    color: #4CAF50;
}

#acceptCookies {
    margin-left: 20px;
    padding: 5px 10px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    cursor: pointer;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.swiper-container {
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url('assets/img/testimonials-bg.jpg') no-repeat center center/cover;
        }

        .swiper-slide {
            text-align: center;
            color: #fff!important;
        }

        .testimonial-card {
            background: rgba(0, 0, 0, 0.7);
            border-radius: 8px;
            padding: 20px;
            max-width: 600px;
            margin: auto;
        }

        .testimonial-card img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 10px;
        }

        .testimonial-card h3 {
            font-size: 1.5rem;
            margin: 10px 0 5px;
        }

        .testimonial-card p {
            font-size: 1rem;
            line-height: 1.6;
        }

        .testimonial-card .stars {
            color: #ffd700;
            margin: 10px 0;
        }

.review {font-family: 'Philosopher', sans-serif; font-size:25px; font-weight:500;}
.btn-get-started {
    background-color: #ed3128;
    color: #ffffff;
    padding: 8px 30px 10px 30px;
    border-radius: 4px;
    font-family: 'Philosopher', sans-serif;
    font-size: 20px; text-align:center;
}
.btn-get-started:hover {
    background-color:#79767f; color:#fff;
    
}

.center {
    text-align: center;
    margin-top: 10px;
}
.ada  {
    background: #404042;
    color: #fff;
    text-align: center;
    font-size: 20px;
    padding: 10px;
}
.ada a {
    color: #fff;
}
section#contact {
    padding: 10px;
}
label {
    display: inline-block;
    font-size: 16px;    font-weight: 700;

}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 0px !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.ame {
    font-size: 22px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #F44336;
        margin-bottom: 20px;    font-family: 'Philosopher', sans-serif;


}
.footer-gallery {
    width: 100%;
       max-width: 100%;


}

.flex-w {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap
}

.item-gallery-footer {
    display: block;
    position: relative;
    width: calc((100% - 20px) / 4);
    margin-right: 5px;
    margin-bottom: 5px;
}

.wrap-pic-w img {
    width: 100%
}

.item-gallery-footer::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s
}
.container-fluid.bcg {
    background: #f1f4e5;
    padding: 10px 10px;
}
.col-lg-2.col-sm-3.col-xs-6.center {
    float: left;
}
.title3 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
}
.clearfix::after {
    display: block;
    clear: both;
    content: ""
}
@media (max-width: 480px) {
    .title3 {
        font-size: 10px;
        color: #5e5d61;
        font-weight: 600;
    }
}
.videoWrapper {
	position:relative;
	padding-bottom:52.25%;
	padding-top:25px;
	height:0
}
.videoWrapper iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%
}


.reserve {margin:0 auto; color:#ed3128; line-height:32px; font-weight:bold; font-size:26px;}
.imenu { width:90%; margin:0 auto; background: #f1f4e5; padding:18px 14px;}
.check1{ margin:0px 12px; float:left; width:14%; font-family:"Cormorant Infant", serif; }
#submit{float:left; margin-top:5px; }
.message1{ font-size:16px; background:#fff;
width:98%; padding:10px 8px;
border: 1px double #cecece;
overflow:hidden;
margin:0 auto; font-weight: 700;
color:#444; font-family:"Cormorant Infant", serif; border-radius:10px;
}
.message{font-size:16px; border-radius:10px;
width:100%; padding:9px;
border: 1px double #cecece; font-weight: 700;
overflow:hidden; background:#fff;
margin:0 auto;
color:#444; font-family:"Cormorant Infant", serif;
}
input[type="submit"]
.palace-button, input[type="submit"], input#searchsubmit {
background-color:#ed3128; border:none; color:#fff; font-size: 16px; font-family:"Cormorant Infant", serif; padding:8px 32px; font-weight:bold;  border-radius:6px; letter-spacing:1px;}
::-webkit-input-placeholder {
   color: #333333;
}

:-moz-placeholder { /* Firefox 18- */
   color: #333333;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #333333;  
}

:-ms-input-placeholder {  
   color: #333333;  
}
.map1{ font-size:12px;
padding:10px;  font-family: 'Poppins', sans-serif;
width:50%;
margin-right:15px; background:#fff;
border: 1px double #929292;
color:#444;
float:left; border-radius: 20px;
}
label { display:none;}


@media only screen and (max-width:580px)
{ 
#reserve {margin:0 auto; position:relative; top:0px;}
.check1{width:40%; float:left; padding:5px 0; margin:5px 10px;}
}
@media only screen and (min-width:581px) and (max-width:768px)
{
#reserve {margin:0 auto; position:relative; top:0px;}
.check1{width:40%; float:left; padding:5px 0; margin:5px 10px;}
}
