@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..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:#b8a379;
  --theme-color-third: #000;

  --heading-font: "Playfair Display", 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: #f2ede4;
  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);
}

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

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

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: 80px;
}
h2 {
    font-size: 42px;
}
h3 {}

h4{
  font-size: 35px;
}

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

/* 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: 121px;
}
.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
}
#main_header{
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
}
.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);
  background: #000000;
background: #937D55;
background: linear-gradient(167deg, rgba(147, 125, 85, 1) 0%, rgba(77, 66, 50, 1) 65%);
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 12px 6px;
  border-radius: 500px;
  width: 13rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid #fff;
}
a.comon-btn:hover {
 
  color: #fff;
}

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

a.btn-dark{
    
background: #937D55;
background: linear-gradient(167deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 65%);
}
.header_menu li a {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    padding: 29px 19px;
    display: inline-block;
    font-weight: 500;
}

.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: #fff !important;
  z-index: 9999999999999;
}


.banner_sec {
    padding-top: 200px;
}

.banner_sec h1{
background: #B8A379;
background: linear-gradient(to bottom, #B8A379 0%, #FFFFFF 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
line-height: 1;

}

.banner_sec .rating ul{
  display: flex;
  gap:10px;
  color: orange;

}


.banner_sec .rating-box {
    padding-top: 80px;
    width: 74%;
}

.video_sec h4{
  color: var(--theme-color-second);
}

.video_sec p{
  font-size: 14px;
  line-height: 1.5;
}

.testimonial_sec h2{
  color: #000;
  background: #000000;
background: linear-gradient(to bottom, #000000 0%, #000000 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

}

/* 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;
}


.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;
}
.service_sec h5{
  font-family: var(--paragraph-font);
  margin-bottom: 0;
  text-transform: uppercase;
  
}
.service_sec h2{
  color: var(--theme-color-second);
}

.testimonial_sec .owl-dots{
  display: none;
}

.service_sec .service-box{
  position: relative;
}

.service_sec .service-box .overlay-1{
  width: 100%;
  position: absolute;
  top: 0;
}
.service_sec .service-box .overlay-2{
  width: 100%;
  position: absolute;
  bottom: 0;
}
.service_sec .service-box h3{
  text-transform: uppercase;
  font-size: 22px;
}
.service_sec .service-box .overlay-1 h3{
  font-size: 29px;
}
.service_sec .service-box img{
  object-fit: cover;
}
.service_sec .service-box-1 img {
    height: 663px;
}
.service_sec .service-box-2 img {
    height: 373px;
}
.service_sec .service-box-3 img {
    height: 282px;
}

.service_sec .service-box-1 .overlay-2 h3{
    font-size: 29px;
}

.why_choose_us .heading h5{
  text-transform: uppercase;
  font-family: var(--paragraph-font);
  margin-bottom: 0;
}

.why_choose_us .accordion-item {
    background-color: transparent;
    border: none;
}

.why_choose_us h2{
  color: #c5a46b;
}
.why_choose_us .accordion-button {
    
    background-color: transparent;
    color: #fff;
    font-family: var(--heading-font);
    font-size: 22px;
    border-bottom: 2px solid #fff;
    box-shadow: none;
}

.why_choose_us .accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "+";
    background-image: none;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
    color: #fff;
}
.why_choose_us .accordion-button:not(.collapsed)::after {
  content: "-";
    background-image: none;
    transform: rotate(0deg);
}



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

.element_nail_bar_sec .img-box .overlay-1{
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 20%;
}

.element_nail_bar_sec .img-box  h5{
  font-family: var(--paragraph-font);
}



.instagram-sec {
    background: #978157;
    background: linear-gradient(182deg, rgba(151, 129, 87, 1) 0%, rgba(84, 72, 54, 1) 100%);
    color: #fff;
}
.Instagram-sec h2{
  background: #000000;
background: repeating-linear-gradient(to top right, #ffffff 0%, #ffffff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

}
.Instagram-sec  p{
     color: #fff;
}

.blog_sec h3 {
  font-size: 28PX;
  font-family: var(--paragraph-font);
}

.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 , .blog_sec .blog-box .ober-lay h6{
  /* font-weight: 300; */
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 26px;
  line-height: 28px;
  font-family: var(--paragraph-font);
background: #FFFFFF;
background: repeating-linear-gradient(to top right, #FFFFFF 0%, #FFFFFF 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

}

.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: 15px;
    line-height: 1.4;
    font-weight: 400;
    font-family: var(--paragraph-font);
    background: #FFFFFF;
    background: repeating-linear-gradient(to top right, #000 0%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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


.map {
  line-height: 0 !important;
}
.map iframe{
  width: 100%;
}
.Instagram-sec img {
  border-radius: 20px;
}


/* 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: #c5a46b;
}
footer .ft_menu_content {
    padding-bottom: 25px;
    margin-top: 70px;
    border-bottom: 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;
}

.banner_sec h3{
  font-size: 50px;
  color: #fff;
     background: #B8A379;
    background: linear-gradient(to bottom, #B8A379 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


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

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

.our-service .service-box {
  position: relative;
}

.our-service .service-box .over-lay {
  position: absolute;
  width: 100%;
  left: 0;
}

.our-service .service-box .over-lay h4 {
  margin-bottom: 0;
  color: var(--theme-color-second);
}

.our-service .service-box .over-lay p {
  font-size: 14px;
  line-height: normal;
}

.our-service .service-box h4 {
  font-size: 28px;
}

.our-service .service-box .over-lay a.comon-btn {
  padding: 8px;
  width: 10rem;
}

.our-service .service-box#bottom .over-lay {
  bottom: 0;

}

.our-service .service-box#top .over-lay {
  top: 0;

}

.our-service .heading h5 {
  font-family: var(--paragraph-font);
  text-transform: uppercase;
  font-size: 25px;
  color: #000;
  margin-top: 25px;
}

.our-service .heading h5 a {
  color: green;
}



.menu-sec h3 {
  color: var(--theme-color-second);
}

.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: var(--theme-color-second);
  
}
.menu-sec .v-line {
    width: 2px;
    background-color: var(--theme-color-second);
    height: 100%;
    margin: 0 auto;
}

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

.inner-banner h1 {
    color: #f4f4f4;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #fff;
}


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

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

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



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);
  background: #FFFFFF;
background: repeating-linear-gradient(to top right, #FFFFFF 0%, #FFFFFF 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 20px;
}




.inner-blog-left-sec {
    box-shadow: rgb(255 255 255) 0px 8px 24px;
    border: rgb(255 255 255);
    /* padding: 15px 19px 35px; */
    border-radius: 8px;
    padding-bottom: 35px;
    background: #fff;
}
.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-left-sec h2{
  font-size: 35px;
}
/* inner-blog-right-sec */

.inner-blog-right-sec {
   box-shadow: rgb(255 255 255) 0px 8px 24px;
    border: rgb(255 255 255);
    padding: 15px 19px 35px;
    border-radius: 8px;
    padding-bottom: 35px;
    background: #fff;
}

.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%;
}


.signature-service .heaidng h2 {
    color: #000000;
    font-size: 22px;
    background: #000000;
background: repeating-linear-gradient(to top right, #000000 0%, #000000 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

}

.element_nail_bar_sec h5{
   color: #000000;
    font-size: 22px;
    background: #000000;
background: repeating-linear-gradient(to top right, #000000 0%, #000000 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.mc_dowell h2{
background: #FCD870;
background: repeating-linear-gradient(to top right, #FCD870 0%, #FCD870 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

}
.mc_dowell h5{
background: #FCD870;
background: repeating-linear-gradient(to top right, #FCD870 0%, #FCD870 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

}

.policy p a{
  color: var(--theme-color-second);
}

.policy ul li{
  font-size: 16px;
  margin-bottom: 15px;
}

.policy ul li a{
  color: var(--theme-color-second);
}

.Instagram-sec a.comon-btn{
  width: 17rem;
  border: 1px solid #fff;
}

.menu-sec .accordion-item {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125);
    color: #000;
    margin-bottom: 15px;
}


.accordion-item .accordion-header {

    margin: 0;
    margin-bottom: 15px;
    background: #FCD870;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    margin-bottom: 0;
    font-family: var(--paragraph-font);
}



/* css */
/* 09-12-2025 */

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

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


/* css 13-12-2025 */
section#portfolio h4 {
    font-size: 26px;
}


a.transparent-btn{
  background-color: transparent;
   background: linear-gradient(263deg, rgba(0, 0, 0, 0) 0%, rgba(252, 216, 112, 0) 33%, rgba(222, 191, 99, 0) 81%, rgba(0, 0, 0, 1) 100%);
   color: #fff;
}

.element_nail_bar_sec h6 {
    font-family: var(--paragraph-font);
    font-size: 20px;
    font-weight: 600;
}

.faq_sec .accordion-button {
  color: #000000;
  background-color: #dacfbb;
  box-shadow: none;
}

.faq_sec .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: transparent;
    box-shadow: none;
}

.faq_sec .accordion-item {
    margin-block: 15px;
    border-radius: 5px;
    overflow: hidden;
    color: #ffffff;
    background-color: #000000;
    background: #978157;
    background: linear-gradient(182deg, rgba(151, 129, 87, 1) 0%, rgba(84, 72, 54, 1) 100%);
    border: 1px solid !important;
}


.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "+";
    background-image: none;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
    color: #000000;
}
.faq_sec .accordion-button:not(.collapsed)::after {
  content: "-";
    background-image: none;
    transform: rotate(0deg);
    
}
img.wp-smiley, img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

footer .map iframe{
  height: 200px;
}
.sub-menu-toggle{
	display: none;
}
.custom-pagination ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
	margin-top: 40px;
}
.custom-pagination ul li a, .custom-pagination ul li span {
    width: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #f4f4f4;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
	gap: 5px;
	border: 1px solid #b8a379;
}
.custom-pagination ul li .current {
    background: #b8a379;
    color: #fff;
}
.custom-pagination ul li a:hover {
    background: #b8a379;
    color: #fff;
}
.inner-blog-sec1 img{
	height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
}
.inner-blog-left-sec .inner-blog-sec1 .blog-head {
    display: flex;
    align-items: center;
    gap: 20px;
}
.inner-blog-left-sec .blog-comment-sec #submit {
  color: #ffffff !important;
  background-color: #b8a379 !important;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #b8a379;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.5s;
}

.inner-blog-left-sec .blog-comment-sec #submit:hover {
  background: #938c8c !important;
  border: 1px solid #938c8c;
  color: #000;
  transition: 0.5s;
}
input#wp-comment-cookies-consent {
    width: 40px;
}