@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --theme-color: #000000;
  --theme-color-second: #eec436;
  --theme-color-third: #000;
  --theme-color-forth:#4a5d23;

  --heading-font: "Playfair", serif;
  --paragraph-font: "Poppins", sans-serif;
  --span-font: 'spanist';



  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;

}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 17px;
  color: #1e1e1e;
  background-color: #e5e4e2;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: "Poppins", sans-serif;
  /* color: var(--theme-color) !important; */
}


a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;

}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  line-height: 1;
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
  font-size: 75px;
  line-height: 1;
}

h2 {
  font-size: 64px;
  line-height: 1;
}

h3 {
  font-size: 44px;
}

h4 {}

h5 {}

h6 {}


.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* navbar----------- */


@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

* {
  box-sizing: border-box;
}

.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 68px;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  z-index: 999;
}

.m-backtotop>div.text {
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 68px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
	z-index: 9999999999999999999;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}

a.navbar-brand img {
  width: 104px;
}

.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color-second);
  color: #000000;
  display: inline-block;
  font-size: 14px;
  padding: 12px 6px;
  border-radius: 5px;
  width: 14rem;
  text-align: center;
  text-transform: capitalize;
  font-weight: 500;
}

a.comon-btn:hover {
  background: var(--theme-color);
  color: #fff;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.header_menu li a {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 29px 21px;
  display: inline-block;
  font-weight: normal;
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 200px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #000000 !important;
  z-index: 9999999999999;
}



#main_header .navbar-expand-lg {
  flex-wrap: nowrap;
  justify-content: space-between !important;
}

#main_header .navbar-expand-lg .navbar-nav {
  flex-direction: row;
  width: 100%;
}

.banner_sec h1 span {
  color: var(--theme-color-second);
  font-size: 100px;
}

.banner_sec {
  padding-top: 160px;
  padding-bottom: 90px;
}

.banner_sec .rating-box {
  color: #fff;
  margin-top: 55px;
}

.banner_sec .rating-box h6 {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  font-size: 16px;
  font-family: var(--paragraph-font);
}

.banner_sec .rating-box ul {
  margin-bottom: 0;
  color: orange;
  display: flex;
  gap: 2px;
  font-size: 15px;
}

.banner_sec .rating-box hr {
  opacity: 1;
  color: var(--theme-color-second);
  height: 3px;
  border-radius: 6px;
}

a.btn-2 {
  background-color: #0e1f0b;
  color: var(--theme-color-second);
}

.home_sec_3 h3 span {
  font-family: var(--paragraph-font);
  font-weight: 600;
}

.home_sec_5 h5 {
  font-family: var(--paragraph-font);

}

.home_sec_5 .img-box {
  position: relative;
}


.home_sec_5 .img-box .over-lay-1 {
  position: absolute;
  width: 90%;
  top: 0;
  left: 0;
}

.home_sec_5 .img-box .over-lay-2 {
  position: absolute;
  width: 90%;
  bottom: 0;
  left: 0;
}

.home_sec_5 .img-box h4 {
  font-size: 39px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.home_sec_5 .img-box p {
  font-size: 14px;
  line-height: normal;
}

.home_sec_5 .img-box a.comon-btn {
  width: 8rem;
}

.home_sec_5 .objet-fit {
  object-fit: cover;
}

.home_sec_5 .img-1 {
  height: 759px;
}

.home_sec_5 .img-2 {
  height: 429px;
}

.home_sec_5 .img-3 {
  height: 322px;
}

.home_sec_6 p span {
  color: var(--theme-color-second);
}

.home_sec_8 h2 span {
  color: var(--theme-color-second);
}

.faq_sec .heading {
  position: relative;
}

.faq_sec .heading img {
  position: absolute;
  top: 0;
  right: 0;
}

.faq_sec .heading h2 {
  color: var(--theme-color-second);
}

.faq_sec .accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: #f9f6f2;
}

.faq_sec .accordion-button {
  background: #f9f6f2;
  font-weight: 600;
  border: none;
  box-shadow: none;
  padding: 15px 20px;
  font-family: var(--paragraph-font);
}

.faq_sec .accordion-button:not(.collapsed) {
  background-color: #0d2911;
  /* dark green */
  color: #fff;
  box-shadow: none;
}

.faq_sec .accordion-body {
  background: #0d2911;
  color: #fff;
  font-size: 14px;
  padding: 15px 20px;
}

.faq_sec .accordion-button:focus {
  box-shadow: none;
}

.faq_sec .accordion-button::after {
  filter: invert(0.5);
}

.faq_sec .accordion-button:not(.collapsed)::after {
  filter: brightness(100%) invert(1);
}

/* testimonial_sec */

.testimonial_sec ul {
  gap: 1px;
  font-size: 17px;
  color: #f4cf00;
  margin-bottom: 9px;
}

.testimonial_sec .review-item p {
  font-size: 15px;
  line-height: 25px;
  color: #535353;
  margin-bottom: 28px;
}

.testimonial_sec .owl-nav {
  position: absolute;
  left: -290px;
  display: none;
}

.testimonial_sec .review-item p strong {
  font-weight: 500;
  margin-bottom: -10px;
  display: block;
  color: #000;
  line-height: 1.4;
}

.testimonial_sec .review-item {
  margin-bottom: 22px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 0 5px;
  margin: 30px 0;
}

.testimonial_sec .btom_content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testimonial_sec .btom_content p {
  font-size: 16px;
  margin-bottom: 0;
}

.testimonial_sec .btom_content img {
  width: 185px;
}

.review-item .top_content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.testimonial_sec .review-item img {
  width: 26px !important;
}

.map {
  line-height: 0 !important;
}

.Instagram-sec img {
  border-radius: 20px;
}

/* Blog Sec */

.blog_sec {
  background-color: #000;
  /* color: #fff;  */
}

.blog_sec h2 {
  color: #000;
}

.blog_sec h3 {
  font-size: 28PX;
}

.blog_sec .blog-box p {
  margin-bottom: 7px;
}

.blog_sec .blog-box {
  position: relative;
}

.blog_sec .blog-box .ober-lay {
  position: absolute;
  bottom: 26px;
  left: 10px;
  padding: 10px 18px;
  width: 100%;
}

.blog_sec .blog-box .ober-lay h5 {
  /* font-weight: 300; */
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 26px;
  line-height: 28px;
}

.blog_sec .text-dark p {
  margin-bottom: 7px;
  /* color: #dfdfdf; */
  font-size: 16px;
}


.blog_sec img {
  border-radius: 6px;
}

.blog_sec .text-dark h5 {
  /* color: #fff; */
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}

.blog_sec .text-dark h5 b {
  /* color: #fff; */
  font-size: 16px;
  font-weight: 400 !important;
}

/* ******* */

/* Footer Sec */

footer {
  padding: 80px 0;
}

footer .ft_logo .content p {
  margin-bottom: 0;
  padding-left: 25px;
  font-size: 15px;
  line-height: 1.5;
}

footer .ft_contact_info ul li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 16px;
  font-weight: 500;
}

footer .ft_contact_info ul li a {
  font-size: 14px;
  color: #a8a8a8 !important;
}

footer .ft_contact_info ul {
  margin-bottom: 0;
  display: flex;
  justify-content: start;
  gap: 65px;
  margin-top: 45px;
}

footer .ft_menu_content ul {
  display: flex;
  gap: 24px;
  text-transform: uppercase;
  font-size: 14px;
  justify-content: space-between;
  margin-bottom: 0;
}

footer .ft_menu_content ul li a {
  color: #d2d2d2;
}

footer .ft_menu_content {
  padding-top: 25px;
  margin-top: 30px;
  border-top: 1px solid #eee;
}

footer .copy_content .social_icon a img {
  width: 38px;
}

footer .copy_content .social_icon {
  display: flex;
  align-items: center;
  gap: 15px;
}

footer .copy_content p {
  color: #ccc;
}

footer .copy_content {
  margin-top: 45px;
}

footer .ft_contact_info2 ul li {
  display: flex;
  align-items: center;
  font-size: 15px;
  gap: 9px;
  margin-bottom: 7px;
}

footer .ft_contact_info2 ul li a {
  color: #fff;
}

footer .copy_content .social_icon a {
  font-size: 18px;
  color: #fff;
}

.home_sec_8 h2 {
  color: #4a5d23;
}

.banner_sec  h1 span {
  color: #4a5d23 !important;
}



.inner-banner h1 {
    color: var(--theme-color-forth);
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #fff;
}
.inner-banner {
  color: #fff;
}

.inner-banner .breadcrumb {
  font-family: var(--heading-font);
}

.inner-banner .breadcrumb a {
  color: #e7eae3;
}

.inner-banner {
  padding: 175px 0;
}


#portfolio .img-box {
  background-color: #000;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  line-height: 0
}

#portfolio .img-box .over-lay {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: .3s
}

#portfolio .img-box .over-lay a {
  display: flex;
  background-color: #fff;
  color: #000;
  font-size: 20px;
  height: 30px;
  width: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 60px
}

#portfolio .img-box:hover .over-lay {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 1;
  visibility: visible;
  transition: .3s
}

#portfolio .img-box img {
    opacity: 1;
    transition: .3s;
    height: 325px;
    object-fit: cover;
}

#portfolio .img-box:hover img {
  opacity: .5;
  transition: .3s
}

#portfolio .content {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center
}

.video-box {
  background-color: var(--theme-color-third) !important;
  color: #fff;
}

.map {
  line-height: 0;
}

.map iframe {
  width: 100%;
}


.spa-pedicure p span a {
  color: #0e1f0b;
}

.spa-pedicure p span {
  font-size: 22px;
}

.spa-pedicure-3 ul li {
  display: flex;
  gap: 10px;
}

.spa-pedicure-3 ul li i {
  color: var(--theme-color-second);
  font-size: 35px;
}
.arcylic-1 h6 {
    font-family: var(--paragraph-font);
    font-size: 30px;
}


.satisfied-center {
  background-color: #e7eae3;
}

.satisfied-center h2 {
  color: var(--theme-color-third);
}

.satisfied-center .rating-box .img-box {
  width: 55px;
  height: 55px;
  overflow: hidden;
  border-radius: 600px;
}

.satisfied-center .rating-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  justify-content: space-between;
}

.satisfied-center .rating-box span {
  background-color: #eec436;
  font-size: 14px;
  width: 50px;
  display: flex;
  justify-content: center;
  gap: 2px;
  border-radius: 600px;
  padding: 2px 10px;
}

.satisfied-center .review-box .content {
  height: 140px;
  overflow-y: scroll;
  margin-bottom: 18px;
}

.satisfied-center .review-box .content p {
  font-style: italic;
}

.satisfied-center .google-box p {
  font-size: 14px;
  line-height: normal;
}

.satisfied-center .google-box p span {
  font-size: 12px;
}

.satisfied-center .google-box {
  display: flex;
  align-items: center;
  margin-top: 10px;
  justify-content: space-between;
}

.satisfied-center .google-box .img-box {
  width: 20px;
  height: 20px;
  overflow: hidden;
}

.satisfied-center .google-box .img-box img {
  height: 100% !important;
}

.satisfied-center .owl-nav img {
  width: 20px;
}
.review{
  background-color: #fff!important;
  color: #000!important;
}


.contact-us {
  background-color: #e7eae3;
}

.contact-us h3 {
  color: var(--theme-color-third);
}

.contact-us form input {
  padding: 14px;
  border: 1px solid #000;
}

.contact-us form textarea {
  padding: 14px;
  border: 1px solid #000;
  height: 155px;
}

.contact-us form button {
  padding: 14px;
  width: 100%;
  border: none;
  background-color: #666;
  color: #fff;
  font-size: 15px;
}

.contact-us .card i {
  font-size: 60px;
  color: var(--theme-color-second);
  margin-bottom: 15px;
}

.contact-us .card {
  height: 300px;
}

.contact-us .card a {
  color: #666;
}

.contact-us .card h5 {
  font-family: var(--paragraph-font);
  margin-bottom: 15px;
  text-transform: uppercase;
}


.fixed_info {
  display: flex;
  justify-content: space-around;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
}

.fixed_info .book-main {
  background-color: var(--theme-color-third);
  display: inline-flex;
  width: 100%;
  text-align: center;
  padding: 16px 5px;
  color: #fff;
  text-transform: uppercase;
  justify-content: center;
  gap: 15px;
  align-items: center;
  font-weight: 600;
}

.fixed_info .book-main.green-btn {
  background-color: var(--theme-color-second);
  color: #000;
}

.fixed-right {
  width: fit-content;
  position: fixed;
  top: 50%;
  right: -30px;
  transform: rotate(90deg);
  z-index: 999;
}

.fixed-right a {
  background-color: var(--theme-color-third);
  color: var(--theme-color-second);
  /* width: 12rem; */
  display: inline-block;
  padding: 8px 19px;
  /* height: 200px; */
  text-transform: uppercase;
  line-height: 1;
}


.v-line {
  width: 1px;
  background-color: var(--theme-color-third);
  margin: 0 auto;
  display: block;
}

.menu-sec h3 {
  color: var(--theme-color-third);
}
.menu-sec h2 {
	color: var(--theme-color-third);
	font-size: 64px;
	font-family: var(--heading-font);
	line-height: 1;
	margin: 0;
	margin-bottom: 15px;
	font-weight: 500;
}

.menu-sec p span {
  font-size: 19px;
  display: block;
  margin-bottom: 25px;
}


.menu-sec p b {
  font-size: 18px;
}

.menu-sec .menu-list li {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
}

.menu-sec .menu-list li:last-child {
  margin: 0;
}

.menu-sec .menu-list li i {
  font-weight: bold;
  color: #eec436;
  ;
}

.fixed-right {
  width: fit-content;
  position: fixed;
  top: 50%;
  right: -30px;
  transform: rotate(90deg);
  z-index: 999;
}

.fixed-right a {
  background-color: var(--theme-color-third);
  color: var(--theme-color-second);
  /* width: 12rem; */
  display: inline-block;
  padding: 8px 19px;
  /* height: 200px; */
  text-transform: uppercase;
  line-height: 1;
}


.arcylic-1 {
  background-color: #e7eae3;
}

.arcylic-1 h3 {
  color: var(--theme-color-third);
	font-size: 40px;
}

.arcylic-1 h2 {
	color: var(--theme-color-third);
	font-size: 44px;
	font-family: var(--heading-font);
	line-height: 1;
	margin: 0;
	margin-bottom: 15px;
	font-weight: 500;
}

.arcylic-1 h6 {
  font-family: var(--paragraph-font);
  font-size: 30px;
}

.arcylic-1 h6 a {
  color: #0e1f0b;
}

.arclic-2 h2 {
	font-size: 44px;
	font-family: var(--heading-font);
	line-height: 1;
	margin: 0;
	margin-bottom: 15px;
	font-weight: 500;
}

.arclic-2 h6 {
  font-family: var(--paragraph-font);
  font-weight: 600;
  font-size: 25px;
}

.spa-pedicure p span a {
  color: #0e1f0b;
}

.spa-pedicure p span {
  font-size: 22px;
}

.spa-pedicure-3 ul li {
  display: flex;
  gap: 10px;
}

.spa-pedicure-3 ul li i {
  color: var(--theme-color-second);
  font-size: 35px;
}

.footer a img {
  width: 150px !important;
}

#satisfied-center .review-box {
  color: #000;
}

#nail-box h6 {
  font-size: 19px;
  font-weight: 700;
}

.text-large {
  font-size: 25px;
  color: var(--theme-color-second);
}



.inner-blog-left-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  /* padding: 15px 19px 35px; */
  border-radius: 8px;
}

.inner-blog-left-sec .inner-blog-sec1 p {
  color: #000000ab;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head p {
  color: #606060;
  margin-bottom: 12px;
}

.inner-blog-left-sec .inner-blog-sec1 h3 {
  font-weight: 600;
  margin-bottom: 18px;
  /* font-size: 29px; */
}
.inner-blog-left-sec .inner-blog-sec1 img {
    border-radius: 5px;
    margin-bottom: 0;
    height: 250px;
    object-fit: cover;
}
.inner-blog-left-sec .inner-blog-sec1 h2 , .inner-blog-left-sec .inner-blog-sec1 h3{
  color: var(--theme-color-forth);
}
.inner-blog-left-sec .inner-blog-sec1 .share-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1c1c1c2b;
  margin-bottom: 10px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul {
  display: flex;
  gap: 15px;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li i {
  font-size: 17px;
  color: var(--theme-color);
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head i {
  color: var(--theme-color);
  font-size: 16px;
  margin-right: 3px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li a {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .navigation-sec .navigation a {
  color: var(--theme-color);
  font-size: 15px;
  font-weight: 600;
}

.inner-blog-left-sec .navigation-sec .navigation i {
  color: var(--theme-color);
}

.inner-blog-left-sec .navigation-sec .blog-contain {
  padding: 25px 18px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  border-radius: 5px;
  height: 100%;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top {
  padding-bottom: 15px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top img {
  border-radius: 5px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading h3 {
  color: #000;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p strong {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p {
  color: #000000ab;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading .blog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-comment .contact-form {
  padding: 20px 25px;
  border: 1px solid rgba(69, 69, 70, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #000;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form input {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form textarea {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button {
  color: #ffffff;
  background-color: #000;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #000;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.5s;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button:hover {
  background: #1c1c1c3b;
  border: 1px solid #1c1c1c3b;
  color: #000;
  transition: 0.5s;
}

.inner-blog-left-sec .admin-sec p {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul {
  display: flex;
  gap: 25px;
  align-items: center;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li i {
  font-size: 18px;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li a {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content {
  border-top: 1px solid #1c1c1c3b;
  border-bottom: 1px solid #1c1c1c3b;
  padding: 10px 20px;
}

.inner-blog-left-sec .admin-sec img {
  border-radius: 5px;
}


/* inner-blog-right-sec */

.inner-blog-right-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 35px 21px;
  border-radius: 8px;
}

.inner-blog-right-sec .blog-search form {
  position: relative;
  border: 1px solid #1c1c1c3b;
  border-radius: 5px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
}

.inner-blog-right-sec .blog-search form input {
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
}

.inner-blog-right-sec .blog-search form button {
  /* position: absolute;
top: 0;
right: 0;
width: 50px;
height: 100%; */
  cursor: pointer;
  background: none;
  border: 0;
  font-size: 15px;
  color: #000000;
}

.inner-blog-right-sec .popular-sec .popular-cards1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1c1c1c3b;
  padding: 15px 0;
  gap: 10px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .img-top img {
  width: 130px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 p {
  color: #000000ab;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0;
}

.inner-blog-right-sec .popular-sec .popular-cards1 a {
  color: #000000ab;
  font-size: 15px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .heading {
  width: 100%;
}


/* Contact Form 7 CSS */
form.wpcf7-form.init p, form.wpcf7-form.invalid p, form.wpcf7-form.sent p {
	margin-bottom: 0px !important;
}

/* Blog Navigation CSS */
.center {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

a.page-numbers {
	color: #000000;
	padding: 10px 10px;
	text-decoration: none;
	transition: background-color 0.5s;
	border: 1px solid #ddd;
	border-radius: 5px;
	margin: 0px 5px;
	padding: 10px 15px;
	font-size: 18px;
}

a.page-numbers:hover {
	background-color: #d6d4d4;
}

span.page-numbers.current {
	background-color: #938c8c;
	color: #fff;
	padding: 10px 15px;
	text-decoration: none;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	margin: 0px 5px;
	font-size: 18px;
	z-index: 3;
	border-radius: 5px;
}


/* Blog Leave A Comment CSS */
.inner-blog-left-sec .inner-blog-comment .contact-form {
	padding: 20px 25px;
	border: 1px solid rgba(69, 69, 70, 0.2);
	border-radius: 8px;
	background: #fff;
	color: #000;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


#respond {
	/*     max-width: 600px; */
	margin: 0 auto;
}
#respond #reply-title small a{
	color: white !important;
	background-color: #000 !important;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
#respond h2 {
	font-size: 24px;
	margin: 24px 0 16px 0;
	font-weight: 500;
}
#respond form {
	display: block;
	margin-top: 0em;
	border: none;
}
#respond form p{
	color: #6d6d6d;
	margin: 0;
	line-height: 26px;
	margin-bottom: 21px;
	font-size: 16px;
}
#respond .comment-form-comment,
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url {
	margin-bottom: 20px;
}

#respond label {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
}

#respond textarea,
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

#respond .comment-form-cookies-consent {
	margin-top: 20px;
}

#respond .form-submit {
	margin-top: 20px;
}

#respond .submit {
	background-color: #938c8c;
	color: white;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

#respond .submit:hover {
	background: #000000;
	color: #fff;
	transition: all 0.8s;
}#respond .comment-form-cookies-consent input {
	width: 18px;
	height: 12px;
}
#respond .comment-form-cookies-consent input,
#respond .comment-form-cookies-consent label {
	display: inline;
}
#respond p.logged-in-as a{
	color: #0f3ca1 !important;
	text-decoration: underline;
	display: inline-block !important;
}
#comments .comment-author a{
	color: #000 !important;
}
#comments .comment-metadata a{
	color: #000 !important;
}
#comments .comment-metadata a.comment-edit-link{
	color: white !important;
	background-color: #000 !important;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
#comments span.comment-reply a{
	color: white !important;
	background-color: #000 !important;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	margin-right: 10px !important;
}

/* Blog Search CSS */
input#search-form-1 {
	border: none;
	outline: none;
	width: 100%;
}
.single-post label {
	width: 100%;
}
.search-form label {
	width: 100% !important;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    font-size: 28px;
    color: #eec436 !important;
}

.tnp-subscription label {
    display: block;
    color: inherit;
    font-weight: 400;
    line-height: normal;
    padding: 0;
    margin: 0;
    margin-bottom: .25em;
    font-size: .9em;
}

.tnp-email {
    padding: 14px !important;
    border: 1px solid #000 !important;
    border-radius: .25rem !important;
}

.tnp-subscription div.tnp-field {
    margin-bottom: .7em;
    border: 0;
    padding: 0;
}

.tnp-field input[type=submit] {
    position: inherit;
}

.tnp-subscription input.tnp-submit {
    background-color: #444;
    color: #fff;
    width: auto;
    height: auto;
    margin: 0;
    display: inline-block;
}

.tnp-subscription div.tnp-field {
    margin-bottom: .7em;
    border: 0;
    padding: 0;
}

.tnp-submit {
    padding: 14px !important;
    width: 100% !important;
    border: none !important;
    background-color: gold !important;
    color: #000 !important;
    font-size: 18px !important;
}

.book-now .rating-box {
    border: 1px solid #d7cdcd;
    padding: 10px 15px;
    border-radius: 4px;
}

.book-now .rating-box p {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

ul.blg-ul {
    list-style: none;
    margin-left: 20px;
}

ul.blog-ul-i {
	list-style: disc;
	margin-left: 20px;
}
.drink-1 h2 {
    font-family: var(--heading-font);
    color: #b8860b !important;
    font-weight: bold;
}
.drink-1 .fst-italic {
    font-size: 25px;
    font-family: var(--heading-font);
    color: #b8860b !important;
    font-family: "Montserrat", sans-serif;
}
.drink-1 .row.g-3.wine-box.justify-content-between.align-items-center {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
}
.drink-1 .wine-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #7b5c2e;
    border-bottom: 2px solid #000;
    padding-bottom: 21px;
    margin-bottom: 20px;
    font-family: (--heading-font);
    font-size: 25px;
    font-family: "Montserrat", sans-serif;
}
.drink-1 .info p {
    font-size: 18px !important;
    font-family: "Montserrat", sans-serif !important;
}
.drink-1 .wine-box img {
    width: 80px !important;
    margin-left: auto;
    display: block;
    font-family: "Montserrat", sans-serif;
}
#drink-item-5 img{
	width: 95px !important;
}
#drink-item-6 img{
	width: 95px !important;
}
#drink-item-7 img{
	width: 95px !important;
}
#drink-item-8 img{
	width: 95px !important;
}
#drink-item-10 img{
	width: 95px !important;
}
#drink-item-11 img{
	width: 95px !important;
}

.drink-1 .wine-box .img-largr {
    width: 95px !important;
    font-family: "Montserrat", sans-serif;
}
.ftr-social {
    display: flex;
    gap: 10px;
	margin-top:15px;
}
.ftr-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    background-color: #ffffff4b;
    color: #fff;
    border-radius: 600px;
}
/*08.09.25  */
.inner-area .heading ul li{
	list-style:disc;
	margin-left:30px;
	padding-top:10px;
}
.menu-sec p .pedi-fnt{
    font-size: 22px !important;
}

.home_sec_2 .heading ol li {
	padding-top:15px;
}
h2.black-hding{
	font-family: var(--heading-font) !important;
    line-height: 1 !important;
	font-weight: 500 !important;
	color: #000000 !important;
	font-size: 44px !important;
}
.arclic-2 .heading ul li{
	list-style:disc;
	margin-left:30px;
	margin-top:10px;
}

.menu-sec .sub-h3 {
	font-size: 25px !important;
	font-weight: bolder !important;
	line-height: 27px !important;
}

h2.dip_nails {
	font-size: 44px;
	font-family: var(--heading-font);
	line-height: 1;
	margin: 0;
	margin-bottom: 15px;
	font-weight: 500;
}

footer .ft-list li a{
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}
footer .ft-list li {
  margin-bottom: 10px;

}

footer h5{
  font-family: var(--paragraph-font);
}

.signature-service {
  background-color: #e7eae3;
}

.signature-service h2 {
  color: var(--theme-color-third);
}

.signature-service .sign-box {
  color: #000000;
}

