/* Put these at the absolute top of style.css (before any other rules) */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/open-sans-v44-latin-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/open-sans-v44-latin-500italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v44-latin-700.woff2') format('woff2');
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  font-family: "Open Sans", sans-serif;
  color: #2e0900;
  background: #dfe2d5;
  /* Control width of body for extra large browsers */
	max-width: 1600px; 
	margin: 0 auto !important; 
	float: none !important; 
  box-shadow: 0 0 15px #aaa;
}

a {
  color: #5e9f7c;
}

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  /* right: 15px; */
  right: max(15px, 50vw - 785px);
  bottom: 15px;
  background: #5e9f7c;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 7px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #7b5804;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Replace AOS animations with vanilla CSS JS - ChatGPT
--------------------------------------------------------------*/
[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: 
    opacity 300ms ease-out,
    transform 300ms ease-out;
  will-change: opacity, transform;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  max-width: 1600px;
  margin: auto;
}

#header.header-scrolled {
  background: rgba(94, 159, 124, 0.8);
  height: 60px;
  padding: 10px 0;
}

#header .logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 767px) {
  #header {
    height: 60px;
    padding: 10px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
  margin-top: -10px;
  background: rgba(255, 255, 255, 0.2);
}

.nav-menu a {
  display: block;
  position: relative;
  color: #2e0900;
  padding: 20px 15px;
  transition: 0.3s;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.header-scrolled .nav-menu > ul > li {
  background: none;
}

.header-scrolled .nav-menu a {
  color: #fff;
}

.header-scrolled .nav-menu a:hover, .header-scrolled .nav-menu .active > a, .header-scrolled .nav-menu li:hover > a {
  background: rgba(255, 255, 255, 0.2);
}

/* .nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #25607a;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #5e9f7c;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
} */

/* Mobile Navigation */
/* .mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 30px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

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

.mobile-nav {
  position: fixed;
  top: 100px;
  right: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #7b5804;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #dde06f;
  font-size: 22px;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #fff;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(30, 48, 56, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
} */


/* Chag */
@media (max-width: 991px){
  .nav-menu{
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background:#7b5804;
    padding-top:100px;
    transition:0.3s;
    z-index:9999;
  }

  .nav-menu ul {
    display: flex;
    flex-direction: column;
  }

  .nav-menu > ul > li {
    background: none;
  } 

  .nav-menu a{
    font-size:22px;
    padding:12px 20px;
    color: #fff;
    /* color:#dde06f; */
  }

  .nav-menu-open .nav-menu{
    right:0;
  }

  .mobile-nav-overlay{
    position:fixed;
    inset:0;
    background:rgba(30,48,56,.6);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:1;
  }

  .nav-menu-open .mobile-nav-overlay{
    opacity:1;
    visibility:visible;
  }

  .mobile-nav-toggle {
    background: none;
    border: none;
    font-size: 30px;
    color: #fff;
  }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/* ChatGPT */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Picture wrapper must be positioned */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

#hero .hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
/* end ChatGPT */


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

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
} */

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 50px;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 56px;
  color: #87020c;
  text-shadow: -3px 3px 4px #2f4858;
  background: rgba(250,250,250,.4);
}

#hero h2 {
  color: #191914;
  margin-bottom: 50px;
  font-size: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: -1px 2px 3px #2f4858;
  background: rgba(250,250,250,.6);
}

#hero .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #f1a7ac;
  color: #f1a7ac;
  background: #2e0900a8;
}

#hero .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 767px) {
  #hero h1 {
    font-size: 28px;
    color: #fb2433;
    letter-spacing: 1px;
    line-height: 36px;
    padding-left: 7px;
    padding-right: 7px;
    text-shadow: -1px 1px 2px #2f4858;
    background: rgba(250, 250, 250, .7);
  }
  #hero h2 {
    font-size: 20px;
    color: #553d05;
    letter-spacing: 1px;
    line-height: 24px;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 30px;
    text-shadow: -1px 1px 1px #2f4858;
    background: rgba(250, 250, 250, .6);
  }
}

/* @media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #hero {
    width: 100%;
    height: 100vh;
    background: url("../img/hero-bgIpad.webp") top center;
    background-size: cover;
    position: relative;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  #hero {
    width: 100%;
    height: 100vh;
    background: url("../img/heroMobile-bg.webp") top center;
    background-size: cover;
    position: relative;
  }
}

@media (max-width: 1366px) and (orientation: landscape) {
    #hero {
      width: 100%;
      height: 100vh;
      background: url("../img/hero-bg.webp") top center;
      background-size: cover;
      position: relative;
    }
}  */

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #245f373d;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  margin-bottom: 30px;
  color: #2e0900;
  z-index: 2;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 122px;
  height: 66px;
  background: url("../img/section-title-bg.png") no-repeat;
  z-index: -1;
}

#bgTitleDark h2::after {
  background: url("../img/section-title-bg-dark.png") no-repeat;
}

.section-title p {
  margin-bottom: 0;
  font-size: 19px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
  position: relative;
  z-index: 10;
}

/* .about .content {
  padding: 30px 30px 30px 0;
} */

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #ffffff;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;
  font-size: 18px;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6), -1px -1px 2px rgba(0,0,0,0.4);
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (min-width: 992px) {
  .about {
    background: #f0f4f8 url("../img/about-warner-family-no-bg.webp") center top no-repeat;
    background-size: cover;
    padding: 60px 0;
    position: relative;
  }

  .about::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(122, 89, 1, 0.55);
    z-index: 9;
  }

  .about .content {
    padding: 30px 30px 30px 0;
  }

  .about .img-fluid,
  .about figcaption {
    display: none;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.services .icon-box::before {
  content: '';
  position: absolute;
  background: white;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #468764;
  /* background: #5e9f7c; */
  top: 0;
  border-radius: 0px;
}

.services .icon {
  margin-bottom: 15px;
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #5e9f7c;
  transition: all 0.3s ease-in-out;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 19px;
}

.services .title span {
  color: #111;
}

.services .description {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title span, .services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-bottom: 30px;
  /* background-color: #005a50; */
  background-color: #5e9f7c;
}

.counts .count-box {
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 44px;
  color: #5e9f7c;
  float: left;
}

.counts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  margin-left: 60px;
}

.counts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-size: 19px;
}

/* fun with Grok */
.simple-smile-svg, .building-alt-svg, .bucket-svg, .workers-svg {
  display: block;
  width: 44px;               
  height: 44px;
  /* color: #5e9f7c;              */
  color: #2d4839;
  fill: currentColor;        
  float: left;
  margin-right: 16px;       
  line-height: 1;  
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(74, 126, 98, 0.8), rgba(62, 107, 83, 0.8)), url("https://res.cloudinary.com/rorg/image/upload/v1652193646/DJs/cta-bg-nathan-lg_oytr5z.jpg") fixed center center;
  /* background: linear-gradient(rgba(94, 159, 124, 0.8), rgba(94, 159, 124, 0.8)), url("https://res.cloudinary.com/rorg/image/upload/v1652193646/DJs/cta-bg-nathan-lg_oytr5z.jpg") fixed center center; */
  background-size: cover;
  padding: 60px 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6), -1px -1px 2px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1366px) and (orientation: landscape), (max-width: 1024px) {
  .cta:before {
    content: "";
    display: block;
    position: fixed;
    left: 0;
    top: 60px;
    width: 100%;
    height: 100%;
    z-index: -10;
    background: linear-gradient(rgba(73, 126, 98, 0.8), rgba(62, 107, 83, 0.8)), url("https://res.cloudinary.com/rorg/image/upload/v1652193636/DJs/cta-bg-nathan-mobile_yxomdx.jpg") no-repeat center center;
    /* background: linear-gradient(rgba(94, 159, 124, 0.8), rgba(94, 159, 124, 0.8)), url("https://res.cloudinary.com/rorg/image/upload/v1652193636/DJs/cta-bg-nathan-mobile_yxomdx.jpg") no-repeat center center; */
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
  .cta {
    background: none;
  }
  .services, .gallery, .team  {
    background: #dfe2d5;
  }
  .testimonials, .contact {
    background: #b4c3af;
  }
}

@media (max-width: 991px) {
  .about {
    background: #7b5804;
    /* z-index: -9; */
  }
}

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

.cta p {
  color: #fff;
  font-size: 21px;
}

.cta .cta-btn {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta .cta-btn:hover {
  border-color: #fff;
  background-color: #7b5804;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding-bottom: 30px;
  background-color: #005a50;
}

.faq .faq-item {
  margin-bottom: 40px;
}

.faq .faq-item h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #d3e7f8;
}

.faq h2, .faq p {
  color: #eaffac;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6), -1px -1px 2px rgba(0, 0, 0, 0.4);
}

.faq .section-title .lead {
  letter-spacing: .5px;
  font-size: 19px;
  text-shadow: 
    1px 1px 2px rgba(0,0,0,0.6),
    -1px -1px 2px rgba(0,0,0,0.4);
}

.faq p {
  font-size: 17px;
}

.faq h3 {
  color: #d3e7f8;
}

.faq .figure-caption {
  color: #8996a2;
}

.faq .figure-caption a {
  color: #4ab77c;
}

.faq .figure-caption a:hover {
  color: #b98f2d;
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

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

.gallery #gallery-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #ecf5f9;
  border-radius: 50px;
  padding: 2px 15px;
}

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

.gallery #gallery-flters li:hover, .gallery #gallery-flters li.filter-active {
  color: #5e9f7c;
}

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

.gallery .gallery-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 4px 4px 7px #2f4d5a;
  z-index: 1;
}

.gallery .gallery-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.gallery .gallery-wrap .gallery-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.gallery .gallery-wrap .gallery-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(94, 159, 124, 0.75);
  transition: 0.3s;
  width: 50%;
}

.gallery .gallery-wrap .gallery-links a:hover {
  background: rgba(94, 159, 124, 0.95);
}

.gallery .gallery-wrap .gallery-links a + a {
  border-left: 1px solid #8ec4dd;
}

.gallery .gallery-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.gallery .gallery-wrap:hover .gallery-links {
  opacity: 1;
  bottom: 0;
} 


/* Added Grok for lightbox to replace Venobox */
/* Lightbox Overlay */
#gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(30, 48, 56, 0.9); /* Matches your mobile overly */
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

#gallery-lightbox.active {
  opacity: 1;
  display: flex;
}

#gallery-lightbox img {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease; /* Bounce-in easing */
}

#gallery-lightbox.active img {
  transform: scale(1);
  opacity: 1;
}

/* Close Button */
.lb-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  background: rgba(94, 159, 124, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lb-close:hover {
  background: rgba(94, 159, 124, 1);
}

/* Navigation Arrows */
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 50px;
  cursor: pointer;
  background: rgba(94, 159, 124, 0.6);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-prev:hover, .lb-next:hover {
  background: rgba(94, 159, 124, 0.9);
}

/* Title */
.lb-title {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: rgba(30, 48, 56, 0.8);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 18px;
  max-width: 80%;
  text-align: center;
}
/* End Grok */


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

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

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

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #fff;
  font-size: 18px;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #fff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

/* .testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #5e9f7c !important;
} */

.testimonials-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

/* Tablet */
@media (min-width: 768px) {
  .testimonial-item {
    flex: 0 0 calc(50% - 10px);
  }
}

/* Desktop */
@media (min-width: 900px) {
  .testimonial-item {
    flex: 0 0 calc(33.333% - 14px);
  }
}

/* Dots */
.carousel-dots {
  margin-bottom: 20px;
  text-align: center;
}

.carousel-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
}

.carousel-dot.active {
  background: #5e9f7c;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  overflow: hidden;
}

.team .member .member-info {
  position: absolute;
  top: 85%;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #2f4d5a;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  max-height: 95px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #2f4d5a;
  position: relative;
  padding-bottom: 10px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

@media (max-width: 991px) {
  .team .member {
    margin-bottom: 110px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 80px;
}

.contact .info-box {
  color: #444444;
  background: #fff;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #5e9f7c;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b2c8c1;
}

.contact .click-connect i:hover {
  color: #fff;
  background-color: #7b5804;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
  height: 450px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 700;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 700;
}

.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: 14px;
}

.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
  background-color: #5e9f7c;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #5e9f7c;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #7b5804;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #2f4858;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  /* margin-top: -90px; */
  margin-bottom: 15px;
  background: white;
  color: #2f4d5a;
  border-top: 4px solid #5e9f7c;
  text-align: center;
  padding: 30px 20px;
}

#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: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

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

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

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 700;
  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 i {
  padding-right: 2px;
  color: #b5d9e9;
  font-size: 18px;
  line-height: 1;
}

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

#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: #b7840e;
  text-decoration: underline;
}

#footer .copyright {
  border-top: 1px solid #385b6b;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

#footer .copyright a {
  color: #92ebbb;
  text-decoration: underline;
}

#footer .copyright a:hover {
  color: #b7840e;
  /* text-decoration: underline; */
}

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

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

/*--------------------------------------------------------------
# Thanks
--------------------------------------------------------------*/
#thanks img {
  width: 250px;
  height: auto;
}

.thanks .btn {
  box-shadow: 2px 3px 5px #555;
  color: aqua;
  background-color: crimson;
}
.thanks .btn:hover {
  background-color: #7b5804;
  color: #fff;
}

/*--------------------------------------------------------------
404 Not Found Page
--------------------------------------------------------------*/
.not-found {
  text-align: center;
  padding: 50px;
  font-size: large;
  color: #eeddcc;
}

.not-found img {
  display: inline-block;
}

.not-found .btn {
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
}

.not-found ol>li {
  line-height: 1.7em;
  text-align: start;
}