:root {
  --black-color: #000000;
  --blonde-color: #afafaf;
}

* {
  padding: 0;
  margin: 0;
}
body {
  background-color: #fff;
  font-family: "Alexandria", sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #777;
  font-weight: 400;
  letter-spacing: -0.2px;
  position: relative;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
h1 {
  font-family: "Prata", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  font-size: 52px;
  line-height: 62px;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  font-weight: 400;
}
h2,
h3,
h4,
h5,
h6 {
  font-family: "Prata", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #282828;
}
h2 {
  font-size: 36px;
  color: #303133;
  margin: 0 0 8px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: -0.04em;
}
h3,
h4 {
  margin: 0 0 10px;
  font-weight: 400;
  line-height: 1.4;
  color: #303133;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 17px;
}
h4 {
  font-size: 15px;
}
h5,
h6 {
  font-size: 14px;
  margin: 0 0 10px;
}
img {
  border: none;
  outline: none;
}
ul {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}
p {
  font-size: 16px;
  margin-bottom: 15px;
}
a,
a:hover {
  text-decoration: none;
}
a:focus {
  outline: 0;
  text-decoration: none;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: var(--blonde-color);
}
::selection {
  background-color: var(--blonde-color);
  color: #fff;
}
::-moz-selection {
  background-color: var(--blonde-color);
  color: #fff;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #888 !important;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #888 !important;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #888 !important;
}
button {
  border: none;
  background: none;
}

/* Helper Classes */
.padding {
  padding: 80px 0;
}
.no-padding {
  padding: 0;
}
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.align-left { text-align: left; }
.align-right { text-align: right; }
.align-center { text-align: center; }
.text-black { color: #282828; }
.text-white { color: #ffffff; }
.overlay {
  width: 100%;
  position: relative;
  z-index: 1;
}
.overlay:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.bg-grey {
  background-color: #fcf9f5;
}
.bd-bottom {
  border-bottom: 2px solid #eee;
}
.bg-dark {
  background-color: var(--black-color);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #fff;
  height: 100%;
  width: 100%;
  transition: all 0.5s 0.2s ease;
}
.loader {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 80px;
  height: 80px;
  display: block;
  margin: auto;
  margin-top: -30px;
}
body.loaded #preloader {
  opacity: 0;
  visibility: hidden;
}

/* Button Style */
.default_btn {
  font-family: "Work Sans", sans-serif;
  letter-spacing: 0;
  background-color: var(--blonde-color);
  color: #fff;
  line-height: 45px;
  display: inline-block;
  padding: 0 25px;
  border-radius: 0;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.default_btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--black-color);
  transform-origin: right center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.default_btn:hover {
  color: #fff;
}
.default_btn:hover:before {
  transform-origin: left center;
  transform: scale(1, 1);
}

/* Section Heading */
.section_heading h3 {
  color: var(--blonde-color);
  font-weight: 400;
}
.section_heading h2 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 400;
  letter-spacing: 0;
}
.heading-line {
  margin-top: 20px;
  height: 10px;
  background: url(../img/heading-line.png) center center no-repeat;
  position: relative;
}

/* Transitions */
a,
a:hover,
.overlay,
img,
.form-control,
.form-control:hover,
button {
  transition: all 0.5s;
}

/* ==========================================================================
   Header Section
   ========================================================================== */
.header-section {
  background-color: var(--black-color);
  width: 100%;
  height: 80px;
  z-index: 999;
  position: fixed;
  left: 0;
  top: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.navbar-fixed-top.header-section {
  background-color: var(--black-color);
  box-shadow: 0 2px 5px rgba(16, 16, 16, 0.08);
  height: 80px;
  border-bottom: 0;
  padding: 0;
}
.navbar-fixed-top ul.nav > li > a {
  color: #ddd;
}
.navbar-fixed-top ul.nav > li > a:hover,
.navbar-fixed-top ul.nav > li > a:focus,
.navbar-fixed-top ul.nav > li.active > a {
  color: #ddd;
}
.logo-light,
.navbar-fixed-top .logo-light,
.logo-dark,
.navbar-fixed-top .logo-dark,
.navbar-fixed-top.header-section,
.header-section {
  transition: all 0.3s ease-in-out;
}
.navbar {
  border: medium none;
  border-radius: 0;
  margin: 0;
  position: relative;
  padding: 0;
  flex-wrap: nowrap;
}

/* Dropdown Style */
#mainmenu li ul {
  background-color: var(--black-color);
  width: 200px;
  height: auto;
  position: absolute;
  left: 0;
  top: 140%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease 0s;
  z-index: 999;
}
#mainmenu li:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
#mainmenu li ul li {
  border-bottom: 1px solid #333;
  display: block;
  position: relative;
  padding: 0;
}
#mainmenu li ul li:last-child {
  border: none;
}
#mainmenu li ul li a {
  font-family: "Work Sans", sans-serif;
  line-height: 45px;
  display: block;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: #ddd;
  text-transform: uppercase;
  transition: color 0.3s ease 0s, padding 0.3s ease 0s;
}
#mainmenu li > ul > li:hover a {
  background-color: var(--blonde-color);
  color: #fff;
}

/* Nav Menu */
ul.nav > li {
  position: relative;
}
ul.nav > li > a {
  color: #ddd;
  font-family: "Work Sans", sans-serif;
  display: inline-block;
  vertical-align: middle;
  padding: 0 20px;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 80px;
  z-index: 1;
}
ul.nav > li > a:hover,
ul.nav > li > a:focus,
ul.nav > li > a.active {
  background: none;
  color: #fff;
  opacity: 1;
}

/* Header Btn */
.header-btn {
  margin-left: 10px;
}
.header-btn .menu-btn {
  background-color: var(--blonde-color);
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 30px;
  height: 45px;
  line-height: 45px;
  display: block;
  margin: 0;
}
.header-btn .menu-btn:hover {
  opacity: 0.8;
}

/* Mobile Menu Toggle (hamburger) */
.menu-wrap {
  position: relative;
}
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  padding: 0;
  margin-left: 15px;
  background: none;
  border: none;
}
.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.mobile-menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu panel */
.mobile-menu {
  display: none;
  background-color: #fff;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 998;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.mobile-menu.open {
  display: block;
}
.mobile-menu ul {
  margin: 0;
  padding: 0;
}
.mobile-menu ul li a {
  display: block;
  padding: 12px 20px;
  color: #333;
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid #eee;
}
.mobile-menu ul li a:hover {
  background-color: #f5f5f5;
  color: #000;
}

/* Language Switcher */
.language-switcher {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

/* ==========================================================================
   Slider Section
   ========================================================================== */
.main_slider {
  position: relative;
  overflow: hidden;
}
.main_slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 670px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}
.main_slide:first-child {
  position: relative;
}
.main_slide.active {
  opacity: 1;
  z-index: 2;
}
.main_slide::after {
  content: "";
  background-color: #000;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.slider_content {
  position: relative;
  z-index: 10;
}
.slider_content h3 {
  margin-bottom: 20px;
  color: #ddd;
}
.slider_content h1 {
  margin-bottom: 20px;
  color: #fff;
}
.slider_content p {
  margin-bottom: 20px;
  color: #ddd;
}
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  width: 60px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.slider-prev:hover,
.slider-next:hover {
  opacity: 1;
}
.slider-prev {
  left: 0;
}
.slider-next {
  right: 0;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about_content h2 {
  font-size: 36px;
  line-height: 46px;
  color: var(--blonde-color);
  margin-bottom: 30px;
}
.about_content p {
  margin-bottom: 30px;
}
.about_section .about_content img {
  margin-bottom: 20px;
}
.about_section .about_img img {
  width: 60%;
  border-radius: 5px;
  box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.2);
}
.about_section .about_img_2 {
  margin: -180px 0 0 270px;
}
.about_section .about_img_3 {
  margin: -260px 0 0 40px;
}

/* ==========================================================================
   Service Section
   ========================================================================== */
.service_box {
  background-color: #fff;
  padding: 40px 30px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1),
    0px -6px 0px 0px rgba(248, 99, 107, 0.004);
}
.service_box i {
  font-size: 50px;
  margin-bottom: 20px;
  color: var(--blonde-color);
  display: block;
}
.service_box h3 {
  font-size: 22px;
}

/* ==========================================================================
   Book Section
   ========================================================================== */
.book_section {
  background-color: var(--black-color);
  position: relative;
}
.book_bg {
  background-image: url(../img/agustin_franco_corte-bg.webp);
  background-repeat: no-repeat;
  background-position: center left;
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
}
.map_pattern {
  background-size: contain;
  background-position: right center;
  opacity: 0.05;
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
}
.appointment_text h2 {
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-weight: 400;
}

/* ==========================================================================
   Team Section
   ========================================================================== */
.team_section .team_members .team_member {
  position: relative;
  overflow: hidden;
}
.team_section .team_members .team_member img {
  width: 100%;
}
.team_section .team_members .team_member .overlay {
  background-color: rgba(158, 138, 120, 0.8);
  display: block;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  position: absolute;
  left: 0;
  bottom: -100px;
  width: 100%;
}
.team_section .team_members .team_member:hover .overlay {
  bottom: 0;
}
.team_section .team_members .team_member:hover img {
  filter: grayscale(1);
}
.team_section .team_members .team_member .overlay h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}
.team_section .team_members .team_member .overlay p {
  margin: 0 0 5px;
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

/* ==========================================================================
   Testimonial Section
   ========================================================================== */
.testimonial_section {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 0 0;
  background-size: cover;
  padding: 200px 0;
}
.testimonial_item {
  color: #fff;
  text-align: center;
}
.testimonial_item h4 {
  font-size: 14px;
  margin: 0 0 25px;
}
.testimonial_item p {
  font-family: "Prata", sans-serif;
  font-size: 24px;
  line-height: 36px;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing_section .price_wrap h3 {
  background-color: var(--blonde-color);
  display: inline-block;
  padding: 10px 15px;
  color: #fff;
  margin: 0 0 20px;
}
.pricing_section .price_wrap .price_list li {
  margin-bottom: 40px;
  position: relative;
}
.pricing_section .price_wrap .price_list li h4 {
  position: relative;
  color: #333;
  font-size: 18px;
  letter-spacing: 0.5px;
  margin: 0 0 6px;
  overflow: hidden;
  width: 90%;
}
.pricing_section .price_wrap .price_list li h4:after {
  color: #bbb;
  content: "--------------------" "--------------------" "--------------------" "--------------------";
  font-weight: normal;
  margin-left: 10px;
  position: absolute;
  top: -2px;
  white-space: nowrap;
  width: 0;
}
.pricing_section .price_wrap .price_list li span.price {
  font-family: "Prata", sans-serif;
  font-size: 24px;
  color: var(--blonde-color);
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
}
.pricing_section .price_wrap .price_list li p {
  margin: 0;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta_section {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 0 0;
  background-size: cover;
  padding: 200px 0;
  width: 100%;
}
.cta_section .cta_content h2 {
  color: #fff;
  font-size: 42px;
  line-height: 56px;
  margin-bottom: 15px;
}
.cta_section .cta_content p {
  color: #ddd;
}

/* ==========================================================================
   Footer Widget Section
   ========================================================================== */
.widget_section {
  background-color: var(--black-color);
  padding: 100px 0;
}
.widget_social {
  display: block;
  text-align: left;
}
.widget_social li {
  display: inline-block;
}
.widget_social li a {
  color: #777;
  font-size: 12px;
  margin-right: 20px;
}
.widget_social li a:hover {
  color: var(--blonde-color);
}
.opening_time li {
  color: #999;
  line-height: 35px;
}
.footer_widget {
  color: #fff;
}
.footer_widget h3 {
  color: #fff;
}
.footer_widget p {
  color: #999;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer_section {
  display: block;
  background-color: var(--black-color);
  border-top: 1px solid #333;
  padding: 30px 0;
}
.footer_section .copyright {
  font-size: 14px;
  color: #ddd;
}

/* ==========================================================================
   404 Error Section
   ========================================================================== */
.not_found_section {
  padding: 120px 0;
}

/* ==========================================================================
   Page Header
   ========================================================================== */
.page_header {
  background-image: url(../img/barberia-peluqueria-masculina.webp);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  height: 500px;
  position: relative;
  z-index: 1;
}
.page_header .section_heading h2 {
  color: #fff;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-form {
  background-color: #fff;
  padding: 50px 40px;
  box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1),
    0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  border-radius: 3px;
}
.form-control {
  background-color: #fff;
  border-radius: 0;
  padding: 15px 10px;
  box-shadow: none;
  border: 2px solid #eee;
}
.form-control:focus {
  border-color: var(--blonde-color);
  box-shadow: none;
  outline: none;
}

/* ==========================================================================
   Scroll To Top
   ========================================================================== */
#scroll-to-top {
  background-color: var(--blonde-color);
  display: none;
  width: 35px;
  height: 35px;
  text-align: center;
  font-size: 14px;
  line-height: 35px;
  color: #fff;
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 999;
}
#scroll-to-top:hover {
  background-color: #897666;
  color: #fff;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  ul.nav > li > a {
    padding: 0 10px;
  }
  .testimonial_item p {
    font-size: 22px;
    line-height: 32px;
  }
}

@media (max-width: 992px) {
  .sm-padding {
    padding: 15px;
  }
  .main_slide {
    height: 510px;
  }
  .about_section .about_content {
    padding: 0;
  }
  .about_section .about_img_2 {
    margin: -90px 0 0 150px;
  }
  .about_section .about_img_3 {
    margin: -175px 0 0 31px;
  }
  .menu-wrap ul.nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .header-btn {
    margin-left: 0;
  }
  .header-btn .menu-btn {
    font-size: 10px;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
  }
  .testimonial_section {
    padding: 100px 0;
  }
}

@media all and (max-width: 767px) {
  body,
  p {
    font-size: 13px;
    line-height: 24px;
  }
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 22px;
    line-height: 32px;
  }
  h3 {
    font-size: 16px;
  }
  p br {
    display: none;
  }
  .about_content h2,
  .section_heading h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .testimonial_section,
  .padding {
    padding: 60px 0;
  }
  .xs-padding {
    padding: 15px;
  }
  .main_slide {
    height: 420px;
  }
  .slider_content h1 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 10px;
  }
  .slider_content h3 {
    margin-bottom: 5px;
  }
  .book_bg {
    width: 100%;
  }
  .about_img {
    margin-top: 40px;
  }
  .cta_section .cta_content h2 {
    font-size: 32px;
    line-height: 46px;
  }
  .footer_social,
  .footer_section {
    text-align: center;
  }
}

@media all and (max-width: 480px) {
  .footer_section .copyright,
  .footer_social {
    text-align: center;
  }
}

@media all and (max-width: 380px) {
  .slider_content .btn_group a {
    margin: 0 10px 10px 0;
  }
}
