html,
body {
  overflow-x: hidden;
}

body {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-weight: 700;
}

img {
  max-width: 100%;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: #d0ae5e;
}

::selection {
  color: #fff;
  background: #d0ae5e;
}

.preloader {
  background: #d0ae5e;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99999;
}

.browser-screen-loading-content {
  text-align: center;
  height: 2em;
  max-width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 3em;
  left: 0;
  margin: auto;
}

/************************************/
/*****    Navigation area css   *****/
/************************************/

.navbar {
  margin-bottom: 0;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  /* filter: brightness(0) invert(1); */
  transition: all 0.3s;
}

.navbar-brand h1 {
  font-size: 30px;
  margin: 0;
  color: #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  text-transform: uppercase;
}

.navbar-brand h1 i {
  position: relative;
  top: 3px;
  color: #ecae1a;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

.navbar-default {
  background: #d0ae5e;
  border: none;
  border-bottom: 1px solid transparent;
  padding: 5px 0;
  border-radius: 0;
  z-index: 12;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.navbar-default .navbar-nav > li > a:hover {
  color: #fff;
}

.navbar-default .navbar-nav > li > a:focus {
  color: #fff;
}

.navbar-default .navbar-nav > li > a {
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.04em;
  padding: 17px 15px 13px;
  position: relative;
  font-weight: 600;
}

.active a {
  background: none !important;
  color: #282828 !important;
}

.navbar-default .active a:after {
  transform: scale(1) !important;
  -webkit-transform: scale(1) !important;
  -moz-transform: scale(1) !important;
}

.btn-custom {
  display: inline-block;
  background: #d0ae5e;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 15px;
  padding: 14px 40px;
  font-weight: 500;
  min-width: 200px;
  text-align: center;
  transition: all 0.4s;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  animation: buttonFloat 3s ease-in-out infinite;
}

/* Continuous movement */
@keyframes buttonFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }
}

.btn-custom:hover {
  background: #282828;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-custom:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-25deg);
  transition: 0.6s;
}

.btn-custom:hover:before {
  left: 120%;
}

.navbar-default .navbar-toggle {
  border-radius: 0;
  border-color: #fff;
  padding: 0;
}

.navbar-default .navbar-toggle .icon-bar {
  background: #fff;
}

.navbar-default .navbar-toggle:hover {
  background: none;
}

.sticky-header {
  top: 0;
}

/************************************/
/*****      Slider area css     *****/
/************************************/
.banner {
  position: relative;
  width: 100%;
  background: url(https://worldspa.in//public/front/images/home_banner.png)
    no-repeat center center;
  background-size: cover;
  background-position: top;
  padding: 40px 0 70px 0;
  overflow: hidden;
}

/* dark overlay */
.banner:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 28%);
}

/* text container */
.header-banner-text {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

/* heading */
.header-banner-text h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 15px;
}

.header-banner-text h1 span {
  color: #d8b06a;
}

/* image below text */
.banner-small-img img {
  width: 350px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: floatImg 4s ease-in-out infinite;
}

/* floating effect */
@keyframes floatImg {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.main-title {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}

.main-title:after {
  content: "\f100";
  font-family: "Flaticon";
  color: #d0ae5e;
  font-size: 40px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.main-title h2 {
  display: inline-block;
  font-size: 35px;
  color: #282828;
  font-family: "Merienda One", cursive;
  font-weight: normal;
  position: relative;
  padding-bottom: 50px;
  line-height: 1.5em;
}

.main-title h2:before {
  content: "";
  display: block;
  position: absolute;
  width: 46%;
  height: 1px;
  bottom: 14px;
  background: #d0ae5e;
  left: -20px;
}

.main-title h2:after {
  content: "";
  display: block;
  position: absolute;
  width: 46%;
  height: 1px;
  bottom: 14px;
  background: #d0ae5e;
  right: -20px;
}

.aboutus {
  padding: 50px 0;
}

.about-desc {
}

.about-desc h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
  animation: headingMove 1.5s ease;
}

.about-desc h2 span {
  color: #d8b06a;
  position: relative;
  display: inline-block;
}

/* underline animation */
.about-desc h2 span:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: #d8b06a;
  animation: lineGrow 1.5s ease forwards;
}

@keyframes headingMove {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes lineGrow {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.about-desc p {
  color: #707070;
  font-size: 15px;
  line-height: 1.8em;
  margin-bottom: 1.5em;
}

.what-do-you {
  padding: 50px 0;
  background: url(../images/what-bg.jpg) no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

.what-do-you:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(208, 174, 94, 0.8);
}

.whatdoyou-heading h2 {
  color: #fff;
  font-size: 35px;
  font-family: "Merienda One", cursive;
  font-weight: normal;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.whatdoyou-heading p {
  font-size: 14px;
  color: #fff;
  line-height: 1.5em;
  margin-bottom: 1.5em;
}

.whatdoyou-heading .btn-custom {
  background: #fff;
  color: #282828;
  margin-top: 20px;
}

.whatdoyou-heading .btn-custom:hover {
  background: #282828;
  color: #fff;
}

.whatdoyou-box {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d0ae5e;
  margin-bottom: 15px;
}

.whatdoyou-box figure {
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  height: 325px;
  position: relative;
}

.whatdoyou-box figure img {
  width: 100%;
  height: 100%;
  object-position: top;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(70%);
}

.whatdoyou-box:hover figure img {
  transform: scale(1.12);
}

.whatdoyou-body {
  padding: 15px;
  text-align: center;
}

.whatdoyou-body h3 {
  color: #282828;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 0;
}

.whatdoyou-body h3 span {
  font-weight: 500;
}

.whatdoyou-body p {
  font-size: 14px;
  color: #d0ae5e;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
}

._ad_services_btn {
  display: flex;
  justify-content: space-between;
}

.whatdoyou-body .btn-custom {
  margin-top: 10px;
  margin-bottom: 10px;
  background: #282828;
  color: #d0ae5c;
  min-width: 0;
  padding: 10px 17px;
  font-size: 12px;
  font-weight: 600;
}

.whatdoyou-body .btn-custom:hover {
  background: #d0ae5c;
  color: #fff;
}

.services {
  padding: 50px 0 40px;
  background: url(../images/services-bg.png) no-repeat center center;
  background-size: cover;
}

.service-box {
  position: relative;
  margin-bottom: 60px;
}

.service-box .icon-box {
  color: #d0ae5f;
  font-size: 66px;
  position: absolute;
  line-height: 1em;
  text-align: center;
  width: 100%;
}

.service-left {
  text-align: right;
  padding-right: 120px;
}

.service-left .icon-box {
  width: 100px;
  right: 0;
  top: 4px;
}

.service-right {
  text-align: left;
  padding-left: 120px;
}

.service-right .icon-box {
  width: 100px;
  left: 0;
  top: 4px;
}

.service-box h3 {
  font-size: 24px;
  text-transform: uppercase;
  color: #d0ae5f;
  font-weight: 500;
}

.service-box p {
  color: #707070;
  font-size: 15px;
  line-height: 1.5em;
}

.membership {
  background: #282828;
  padding: 50px 0;
}

.membership .main-title h2 {
  color: #fff;
}

.membership-box {
  background: #fff;
  padding: 20px;
  margin-bottom: 10px;
}

.membership-header {
  text-align: center;
}

.membership-header h3 {
  font-size: 20px;
  color: #d0ae5e;
  text-transform: uppercase;
  position: relative;
  padding: 25px 0;
  z-index: 1;
  margin: 10px 0;
}

.membership-header h3 span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  color: #e6e6e6;
  font-size: 60px;
  z-index: -1;
}

.membership-header h4 {
  font-size: 30px;
  color: #000;
  font-weight: 600;
}

.membership-header h4 span {
  font-size: 18px;
  color: #d0ae5e;
  font-weight: normal;
  padding-left: 8px;
}

.membership-body ul {
  padding: 0;
  margin: 0;
}

.membership-body ul li {
  font-size: 16px;
  color: #000000;
  text-transform: uppercase;
  list-style: none;
  border-bottom: 1px solid #dadada;
  padding: 16px 0;
}

.membership-body ul li:last-child {
  border-bottom: none;
}

.membership-body ul li:before {
  content: "\f138";
  font-family: FontAwesome;
  color: #d0ae5e;
  font-size: 18px;
  padding-right: 20px;
}

.membership-footer .btn-custom {
  padding: 16px;
  border-radius: 0;
  display: block;
  margin-top: 16px;
  text-align: center;
}

.ourteam {
  padding: 50px 0;
}

.team-single {
  text-align: center;
}

.team-single figure {
  display: inline-block;
  border: 6px solid #d0ae5e;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  max-width: 280px;
}

.team-single h3 {
  font-size: 24px;
  color: #282828;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.team-single p {
  color: #d0ae5e;
  font-size: 18px;
}

.gallery {
  padding: 50px 0 50px;
  background: #f8f8f8;
}

.row.no-pad {
  margin-right: 0;
  margin-left: 0;
}

.row.no-pad > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.gallery .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.gallery-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-box a {
  display: block;
  overflow: hidden;
  position: relative;
}

.gallery-box figure {
  margin-bottom: -1px;
}

.gallery-img {
  width: 100%;
  height: 200px;
  /* apne according */
  object-fit: cover;
  transition: all 0.5s ease;
}

/* Overlay */
.gallery-box a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: 0.4s ease;
  z-index: 1;
}

/* Plus Icon */
.gallery-box a::after {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 36px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
  z-index: 2;
}

/* Hover Effects */
.gallery-box:hover .gallery-img {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(0.75);
}

.gallery-box:hover a::before {
  opacity: 1;
}

.gallery-box:hover a::after {
  transform: translate(-50%, -50%) scale(1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(208, 174, 94, 0);
  transition: all 0.4s;
}

.gallery-info {
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  transition: all 0.3s;
  text-align: center;
  transform: translate(0, -50%);
  opacity: 0;
}

.gallery-box:hover .gallery-overlay {
  background: rgba(208, 174, 94, 0.7);
}

.gallery-box:hover .gallery-info {
  top: 50%;
  opacity: 1;
}

.gallery-info h3 {
  color: #fff;
  font-size: 24px;
  font-family: "Merienda One", cursive;
  font-weight: normal;
  letter-spacing: 0.04em;
}

.gallery-info p {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

.contact {
  padding: 50px 0;
  background: linear-gradient(#f4f1f1 60%, #fff 40%);
}

.contact-box {
  max-width: 746px;
  margin: 0 auto;
  background: #fff;
  border: 10px solid #d0ae5e;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 3px 4px 28.13px 0.87px rgba(0, 0, 0, 0.24);
}

.contact-info p {
  font-size: 18px;
  color: #aaa6a6;
  padding-bottom: 8px;
}

.contact-info p i {
  font-size: 20px;
  padding-right: 10px;
}

.contact-form {
  margin-top: 60px;
}

.contact-form .form-group {
  max-width: 480px;
  margin: 0 auto 20px;
}

.contact-form .form-control {
  background: #f4f1f1;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 14px;
  height: auto;
  resize: none;
}

.contact-form .btn-custom {
  border: none;
  padding: 15px 20px;
  border-radius: 0;
  margin-top: 20px;
}

._ad_text_logo {
  display: flex;
  align-items: center;
  color: #fff !important;
}

._ad_text_logo img {
  height: 100%;
  border-radius: 5px;
}

._ad_text_logo h3 {
  margin-bottom: 0;
}

.about-image img {
  border-radius: 10px;
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.membership-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.membership-body th,
.membership-body td {
  border: 1px solid #ddd;
  padding: 18px 10px;
  font-size: 14px;
  text-align: center;
}

.membership-body th {
  font-weight: 600;
}

.membership-body td {
  color: #333;
}

footer {
  background: #1c1b1d;
  padding: 20px;
  color: #fff;
}

.footer-top-logo {
  text-align: center;
  margin-bottom: 30px;
}

.footer-top-logo a {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-decoration: none;
}

.footer-top-logo i {
  color: #d0ae5e;
  font-size: 45px;
  vertical-align: middle;
  margin-right: 10px;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 55px;
}

.footer-main {
  align-items: flex-start;
}

.footer-column p {
  color: #eee;
  font-size: 14px;
  line-height: 22px;
}

.footer-column h3 {
  font-family: serif;
  font-size: 26px;
  margin-bottom: 35px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: #d0ae5e;
  padding-left: 10px;
}

.footer-social {
  margin: 25px 0;
}

.footer-social a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-right: 12px;
}

.footer-social a:hover {
  color: #d0ae5e;
}

.copyright {
  margin-top: 35px;
  font-size: 13px;
}

.copyright span {
  color: #d0ae5e;
}

.hours span {
  margin-left: 15px;
}

._ad_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

._ad_nav .btn-custom {
  background: #282828;
  margin-left: 30px;
  color: #d0ae5e !important;
}

._ad_nav .btn-custom:focus {
  background-color: #282828 !important;
}

._ad_nav .btn-custom:hover {
  background-color: #282828 !important;
}

._ad_price {
  position: absolute;
  bottom: 10px;
  width: 100%;
  font-size: 24px;
  color: #d0ae5e;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}

.short-banner {
  width: 100%;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Image */
.banner-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark transparent overlay */
.short-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Heading */
.short-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.short-content h1 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  margin: 0;
  font-family: Arial, sans-serif;
  animation: headingFloat 3s ease-in-out infinite;
}

@keyframes headingFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

.contact-map {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border-radius: 10px;
}

.footer-top-logo img {
  width: 100%;
  max-width: 80px;
  margin-right: 20px;
  border-radius: 5px;
}

.floating-contact a {
  width: 50px;
  height: 50px;
  position: fixed;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-size: 26px;
}

/* Left WhatsApp */
.whatsapp-btn {
  right: 20px;
  bottom: 10px;
  background: #25d366;
}

/* Right Call */
.call-btn {
  right: 20px;
  bottom: 70px;
  background: #007bff;
}

/* animation all css */
.header-banner {
  overflow: hidden;
}

.header-banner img {
  width: 100%;
  display: block;
  animation: bannerMove 8s ease-in-out infinite;
  margin: auto;
}

#typing-text {
  font-weight: 700;
  transition: 0.4s;
}

#typing-text::after {
  content: "|";
  animation: blink 0.7s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Continuous Banner Animation */
@keyframes bannerMove {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

[data-aos] {
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.spa-counter-section {
  background: #d0ae5e;
  padding: 50px 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.counter-box {
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.counter-box h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  font-family: Georgia, serif;
  margin-bottom: 10px;
  line-height: 1;
}

.counter-box h2 span {
  font-size: 56px;
}

.counter-box p {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/*  */

.section-heading p {
  font-size: 16px;
  padding-bottom: 40px;
  max-width: 800px;
  margin: auto;
  font-weight: 500;
}

.why-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  height: 100%;
  transition: 0.4s;
  border: 1px solid #ececec;
  margin-bottom: 20px;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: #d0ae5e;
}

.why-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: #282828;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.why-card:hover .icon {
  background: #d0ae5e;
}

.why-card .icon i {
  color: #fff;
  font-size: 30px;
}

.why-card h4 {
  font-size: 20px;
  font-weight: 600;
}

.why-card p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 14px;
}

/*  */

@media (min-width: 768px) and (max-width: 991px) {
  ._ad_text_logo h3 {
    font-size: 16px;
  }

  .navbar-default .navbar-nav > li > a {
    font-size: 12px;
    padding: 12px 10px;
  }
}

/****************************************
		 Responsive Media Query
****************************************/

@media only screen and (max-width: 1200px) {
  .btn-custom {
    min-width: auto;
  }
}

@media only screen and (max-width: 991px) {
  .about-image {
    margin-top: 20px;
    text-align: center;
  }

  .whatdoyou-heading {
    margin-bottom: 60px;
  }

  .membership-box {
    margin-bottom: 30px;
  }

  .footer-info {
    text-align: center;
  }

  .footer-menu {
    text-align: center;
    margin-top: 30px;
  }
}

/* Mobile Layout */
@media only screen and (max-width: 767px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .navbar-brand {
    max-width: 48px;
  }

  ._ad_nav .btn-custom {
    margin-left: 0;
    width: max-content;
    font-size: 12px;
    color: #d0ae5e !important;
    font-weight: 600;
    padding: 10px 15px;
  }

  .contact-map iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
  }

  .footer-column {
    margin-bottom: 35px;
  }

  .footer-top-logo {
    text-align: center;
  }

  .short-banner {
    height: 150px;
  }

  .short-content h1 {
    font-size: 28px;
  }

  #responsive-menu {
    display: block;
  }

  .navbar-brand img {
    float: left;
  }

  .navbar {
    padding: 2px 0;
    min-height: auto;
  }

  .navbar-header {
    padding: 8px 0;
  }

  .navbar-header:after {
    content: "";
    display: block;
    clear: both;
  }

  .slicknav_menu {
    margin-left: -15px;
    margin-right: -15px;
    padding: 0;
    background: none;
  }

  .slicknav_menu ul {
    background: #d0ae5e;
  }

  .slicknav_menu li {
    padding: 0 10px;
  }

  .slicknav_menu .active a {
    color: #24292f;
    background: none !important;
  }

  .slicknav_menu a {
    color: #fff;
    padding-top: 6px;
    padding-bottom: 6px;
    text-transform: uppercase;
    border: 1px solid #f1e1e1;
    margin: 5px 5px;
    font-weight: 500;
  }

  .slicknav_menu a a {
    border: none !important;
  }

  .slicknav_nav .slicknav_row:hover,
  .slicknav_nav a:hover {
    color: #24292f;
  }

  .slicknav_menu .active a {
    color: #24292f !important;
    font-weight: 600;
  }

  .slicknav_btn {
    padding: 4px 4px;
    background: none;
  }

  ._ad_nav {
    display: initial;
  }

  .slicknav_icon-bar {
    box-shadow: none;
    border-radius: 0;
    margin: 2px 0;
  }

  .aboutus,
  .what-do-you,
  .contact {
    padding: 50px 0;
  }

  .services,
  .ourteam {
    padding: 60px 0 20px;
  }

  .gallery {
    padding-top: 60px;
  }

  .main-title {
    margin-bottom: 40px;
  }

  .main-title h2 {
    font-size: 22px;
  }

  .about-desc h2,
  .whatdoyou-heading h2 {
    font-size: 30px;
  }

  .whatdoyou-box {
    margin-bottom: 30px;
  }

  .service-left .icon-box,
  .service-right .icon-box {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto 30px;
  }

  .service-right {
    padding-left: 0;
    text-align: center;
  }

  .service-left {
    padding-right: 0;
    text-align: center;
  }

  .membership-box {
    max-width: 380px;
    margin: 0 auto 30px;
  }

  .team-single {
    margin-bottom: 40px;
  }

  .contact-box {
    padding: 20px;
  }
}

/* Small Mobile Layout */
@media (max-width: 576px) {
  .counter-box h2 span {
    font-size: 42px;
  }
  .counter-box h2 {
    font-size: 32px;
  }

  .counter-box p {
    font-size: 12px;
  }

  .counter-box {
    padding: 0;
  }

  .header-banner-text h1 {
    font-size: 22px;
  }

  .about-desc h2,
  .whatdoyou-heading h2 {
    font-size: 22px;
  }

  .counter-grid {
    gap: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .footer-top-logo a {
    font-size: 26px;
  }

  .team-single figure {
    max-width: 200px;
  }

  .main-title h2:before {
    width: 30%;
    left: 0px;
  }

  .main-title h2:after {
    width: 30%;
    right: 0px;
  }

  .team-single h3 {
    font-size: 20px;
  }

  .team-single p {
    font-size: 16px;
  }

  .footer-logo a {
    min-width: 180px;
  }

  .footer-social {
    margin-bottom: 0px;
  }

  .footer-info p {
    font-size: 12px;
  }

  .footer-menu ul li a {
    font-size: 12px;
  }

  .gallery-info h3 {
    font-size: 18px;
  }

  .gallery-info p {
    font-size: 14px;
  }
}
