/*--------------
Fonts
---------------*/
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Playfair Display", serif;
  /* overflow: hidden; */
}

h1 {
  letter-spacing: 2px;
}
.section-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}
/*-------------
preloader
-----------------*/

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2100;
  background-color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .preloader.fade-out{
    display: block;
}   */
.contact-info .map iframe {
    border: 1px solid #686565;
}
.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 60px;
  height: 60px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #e5b0aa;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*Start Scroll Button To Top*/
.scroll {
  position: fixed;
  right: 20px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  border-radius: 2px;
  background-color: #e5b0aa;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  z-index: 1000;
  text-align: center;
  line-height: 50px;
  font-size: 28px;
  cursor: pointer;
}
.scroll.active {
  opacity: 1;
  visibility: visible;
}
/*End Scroll Button To Top*/
/*Start Header*/
header {
  background-color: transparent;
  z-index: 1000;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #fdf6f6;
  transform: translateY(-80px);
  transition: transform 0.4s;
}
@media (max-width: 991px) {
  header::before {
    height: 63px;
    transform: translateY(-63px);
  }
}
header.show::before {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px #c1bbbaab;
}
/* header.show a{
    color: #000000;
} */
header.show .lists a:hover,
header.show .logo a,
header.show .lists a.active {
  color: #e5b0aa;
}
header.show .lists a.active::before {
  background-color: #e5b0aa;
}

header.show .menu-toggle > span,
header.show .menu-toggle > span::before,
header.show .menu-toggle > span::after {
  background-color: #fff;
}
header.show .menu-toggle.active span::before,
header.show .menu-toggle.active span::after {
  background-color: #fff;
}
@media (max-width: 991px) {
  header.show a {
    color: #bdbdbd;
  }
  .menu-toggle.active .lists a {
    color: #bdbdbd;
  }
}

a {
  color: #fff;
  text-decoration: none;
  font-size: 19px;
  transition: 0.3s;
  font-weight: 600;
}
.lists a.active {
  color: #000;
}
.lists a.active::before {
  width: 100%;
  background-color: #000;
}
.header.show .lists.show a {
  color: #ababab;
}
a:hover {
  color: #e5b0aa;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
}
.logo a {
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  font-weight: 700;
  font-size: 2.3rem;
  font-family: serif;
  color: #fff;
}
.logo a img {
  width: 100px;
  margin-top: -5px;
}
@media (max-width: 991px) {
  .logo a img {
    display: block;
    width: 50px;
    margin-top: 6px;
  }
}
@media (max-width: 575px) {
  .logo-column {
    padding-left: 4px;
  }
}

.links {
  text-align: right;
  padding: 15px;
}

nav {
  padding: 15px;
}

header.show nav {
  padding-top: 8px;
}
nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
nav .menu-toggle {
  right: 10px;
  position: absolute;
  top: 11px;
  display: none;
  z-index: 99;
  cursor: pointer;
  text-align: center;
  width: 30px;
  height: 30px;
}
nav .menu-toggle > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3px;
  background-color: #fff;
}
nav .menu-toggle > span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
  left: 0;
  top: 11px;
}
nav .menu-toggle > span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
  left: 0;
  bottom: 6px;
}
header.show .menu-toggle > span,
header.show .menu-toggle > span::before,
header.show .menu-toggle > span::after {
  background-color: #000000;
}
.header.show .nav {
  padding: 10px;
}
.lists {
  padding-top: 12px;
}

.lists a {
  position: relative;
  text-transform: uppercase;
}
.lists a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 4px;
  width: 0;
  background-color: #e5b0aa;
  transition: all 0.4s;
}
.lists a:hover::before {
  width: 100%;
}

@media (max-width: 991px) {
  nav {
    padding: 5px;
  }
  nav .menu-toggle {
    display: block;
  }
  nav ul {
    display: block;
  }
  nav ul li {
    text-align: center;
    display: block;
    margin-bottom: 40px;
  }
  nav a {
    color: #bdbdbd;
  }
  .lists {
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.8);
    height: 100%;
    padding-top: 120px;
    transition: all 0.3s;
  }
  .lists.show {
    right: 0;
  }
  .lists.show a.active,
  header.show .lists.show a.active {
    color: #e5b0aa;
  }
  .lists.show a.active::before {
    background-color: #e5b0aa;
  }
  header.show .lists.show a {
    color: #bdbdbd;
  }
  header.show .lists.show a:hover {
    color: #e5b0aa;
  }
  .menu-toggle.active {
    top: -50px;
    right: 10px;
  }
  .menu-toggle.active span::before {
    transform: rotate(-45deg) translateX(-3px) translateY(2px);
    top: 80px;
  }
  .menu-toggle.active span::after {
    transform: rotate(45deg) translateX(-4px) translateY(-4px);
    bottom: -62px;
  }
}
/*End Header*/
/*Start Home*/
.home {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-size: cover;
  padding-top: 100px;
  background-color: #efc8bc;
}
.home h1 {
  text-transform: uppercase;
  font-size: 2.8rem;
  letter-spacing: 2px;
  color: #000000;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.6;
}
.home p {
  color: #555;
  margin-bottom: 40px;
  font-weight: 400;
}
.home a {
  padding: 10px;
  background-color: #ffff;
  border-radius: 0;
  width: 120px;
  text-transform: capitalize;
  color: #000000;
  font-weight: 400;
}
header.show .lists a {
  color: #000;
}
@media (min-width: 991px) {
  .home h1 {
    width: 53%;
  }
}
@media (max-width: 991px) {
  .home-info {
    margin-bottom: 40px;
  }
}
/*End Home*/
/*Start About*/
.about {
  /* background-color: #edefef; */
  background-color: rgb(239 234 233 / 73%);
  /* background-color: #F9EDE5; */
}
.about h1,
.services h1,
.brands h1,
.team h1,
.clients h1 {
  color: #e5b0aa;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

@media (max-width: 991px) {
  .about h1,
  .services h1,
  .brands h1,
  .team h1,
  .clients h1,
  .fav .fav-info h1 {
    font-size: 23px;
  }
}
.about h1::before,
.services h1::before,
.brands h1::before,
.team h1::before,
.clients h1::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: calc(50% - 40px);
  height: 4px;
  width: 80px;
  background-color: #e5b0aa;
}
.about .about-info {
  padding: 20px;
  color: #000000;
  text-align: center;
}

/*End About*/
/*Start Favorite*/
.fav {
  background: url("../images/hairdresser-cut-hair-her-client-hair-salon.jpg")
    center no-repeat;
  background-size: cover;
  height: auto;
  position: relative;
}
.fav .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.fav .fav-info {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #ffff;
}
@media (max-width: 991px) {
  .fav .fav-info p {
    font-size: 18px;
  }
}
.fav .fav-info h1 {
  margin-bottom: 30px;
  color: #e5b0aa;
}
/*End Favorite*/
/*Start Services*/
.services p {
  text-align: center;
  color: #ababab;
}
.services .services-items {
  margin-top: 40px;
}
.services .services-item {
  padding: 12px;
  color: #bdbdbd;
  text-align: center;
  transition: all 0.4s;
}

.services .services-item h3 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 25px;
  color: #e5b0aa;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: "Poppins", sans-serif;
}
.services .services-item .image {
  width: 100px;
  height: 100px;
  background-color: #e5b0aa;
  border-radius: 50%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.services .services-item .image img {
  margin-top: 15px;
}
.services .services-item p {
  color: #777;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
}
/*End Services*/
/*Start Brands*/
.brands {
  height: auto;
}
/* .item-brand{
    width: 200px; 
    height: 180px;
    background: url('../images/brand-1.png') no-repeat center;
    background-size:contain;
} */

/*End Brands*/
/*Start Team*/
.client-info,
.team-info,
.person-info {
  text-align: center;
}
.team-info p {
  margin-top: 40px;
}
.team-img {
  margin-top: 30px;
  margin-bottom: 30px;
}
.team .person-info {
  position: relative;
}
.team .person-info::before {
  content: "";
  position: absolute;
  bottom: -14px;
  left: calc(50% - 30px);
  height: 4px;
  width: 60px;
  background-color: #e5b0aa;
}
.team .person-info p {
  margin-top: 20px;
  margin-bottom: 30px;
  color: #777;
}
/*End Team*/
/*Start Our Clients*/
.clients {
  position: relative;
  background: url("../images/testimonials-bg-1.jpg") no-repeat center;
  background-size: cover;
  height: auto;
}
.clients .client-info p {
  color: #000;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 40px;
}
.clients .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(46 43 43 / 42%);
}
/* .clients-slickSlider .client-item{
    height:auto;
    text-align: center;
} */
/* .clients-slickSlider .client-item img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: block;
    margin: 40px auto; 
} */
.client-item .client-item-info h4 {
  margin-top: 20px;
  margin-bottom: 20px;
}
/* .clients-slickSlider .client-item .client-item-info p{
    color: #000;
    text-transform: capitalize;
    font-size: 19px;
    margin-top: 20px;
    font-weight: 500;
} */

/*End Our Clients*/
/*Start Footer*/
.footer {
  background-color: #ededed;
}
/* .footer .footer-info{
    padding-top: ;
} */
.footer h4 {
  position: relative;
  color: #333;
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 20px;
}
.footer h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 4px;
  width: 60px;
  background-color: #e5b0aa;
}
/*End Footer*/
