/*

TemplateMo 585 Barber Shop

https://templatemo.com/tm-585-barber-shop

*/

@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo-normal.woff2') format('truetype');
  /* font-weight: 400; */
  font-style: normal;
  font-display: swap;
}

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #DDA517;
  --secondary-color: #a37500;
  --section-bg-color: #f0f8ff;
  --custom-btn-bg-color: #a37500;
  --custom-btn-bg-hover-color: #FDBB2D;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #7fffd4;
  --link-hover-color: #a37500;

  --body-font-family: 'Unbounded', cursive;

  --h1-font-size: 54px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 20px;
  --btn-font-size: 16px;
  --copyright-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-thin: 200;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  text-transform: capitalize;
  font-family: 'Amita';
}

h1 {
  font-size: var(--h1-font-size);
  text-transform: capitalize;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  text-transform: capitalize;
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding: 100px 50px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.section-overlay+.container {
  position: relative;
}

.back-top-icon {
  font-size: var(--h2-font-size);
}


/*---------------------------------------
  CUSTOM BLOCK BACKGROUND OVERLAY               
-----------------------------------------*/
.custom-block-bg-overlay-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  transition: all 0.3s ease;
}

.custom-block-bg-overlay-wrap:hover {
  background: linear-gradient(90deg, #FDBB2D 0%, #22C1C3 100%);
  transform: scale(1.05);
}

.custom-block-bg-overlay-image {
  border-radius: var(--border-radius-medium);
  display: block;
  margin: auto;
  height: 100%;
  object-fit: cover;
  transform: rotate(8deg);
  /* object-position: top; */
}

.custom-block-bg-overlay-wrap:hover .team-info {
  bottom: 10px;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-italic {
  font-style: italic;
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sidebar {
  background: #0e0e0e;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 50px 0 0;
}

.sidebar-sticky {
  height: calc(100vh - 48px);
  overflow-x: hidden;
  overflow-y: auto;
  text-align: center;
  position: relative;
}

.navbar {
  background: transparent;
  z-index: 9;
}

.nav_icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav_icons.for-mob {
  display: none;
}

.logo-image {
  width: 220px;
  height: auto;
  /* margin-bottom: 70px; */
  /* filter: grayscale(1) ; */
}

.nav_icon {
  width: 40px;
  height: 40px;
  border: solid 1px gray;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease .3s;
}

.nav_icon:hover {
  background: var(--custom-btn-bg-color);
}

.nav_icon img {
  width: 14px;
}

.custom--banner .col-lg-3 {
  width: 20%;
}

.custom--banner .col-lg-9 {
  width: 100%;
}

#sidebarMenu .nav-link {
  color: #fff;
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  position: relative;
}

#sidebarMenu .nav-link.active,
#sidebarMenu .nav-link:hover {
  color: var(--primary-color);
}

.navbar-toggler {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  position: static;
  top: 0;
  bottom: 0;
  right: 16px;
  z-index: 222;
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 55px;
  height: 55px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  margin: auto;
  width: 25px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 25px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-image: url('../images/hero-background.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 50px;
  padding-bottom: 0;
  min-height: 665px;
  border-bottom: 15px solid var(--primary-color);
}

@media screen and (min-width: 991px) {
  .hero-section {
    height: calc(100vh - 0px);
  }
}

.hero-section::after {
  content: "";
  background: linear-gradient(90deg, #000000 0%, #000000 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.6;
}

.container {
  max-width: 1520px !important;
}

.price_left {
  width: 56%;
}

.price-list-section .row {
  justify-content: space-around;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.custom-banner-content {
  width: 70%;
  text-align: center;
  margin: 0 auto;
}

.custom-block {
  border: 10px solid var(--primary-color);
  border-radius: 100%;
  position: absolute;
  z-index: 2;
  bottom: -60px;
  right: -60px;
  padding: 50px 90px 50px 50px;
  width: 360px;
  height: 360px;
}

.custom_banner .text-black {
  color: white !important;
  text-transform: capitalize;
  font-weight: var(--font-weight-light);
  font-size: 18px;
}

.custom-block .custom-btn {
  background: var(--primary-color);
}

.custom-block .custom-btn:hover {
  background: var(--secondary-color);
}

.custom-block-image {
  border: 10px solid var(--primary-color);
  border-radius: 100%;
  position: absolute;
  top: -60px;
  right: 20px;
  left: 0;
  width: 120px;
  height: 120px;
  margin: auto;
  object-fit: cover;
}

.custom-ft-btm {
  display: flex;
  justify-content: space-between;
}

.custom-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 50px;
}

.custom-header {
  background: #000;
  padding: 16px 0;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
}

.custom-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}

.custom--banner .col-lg-3 {
  position: absolute;
  top: 0;
  width: 100% !important;
  height: max-content;
}

input#newsletter-email {
  background: rgb(20 20 20 / 37%);
  outline: none;
  border: none;
  width: 100%;
  height: 52px;
  color: #000;
  border: solid 1px #b2b2b2;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.32px;
  padding: 18px 160px 15px 18px;
  transition: all ease .4s;
}

.footer_newsletter p {
  font-size: 16px;
  line-height: 24px;
}

.form_news {
  position: relative;
  margin-bottom: 10px;
  width: 420px;
}

.form_news button {
  width: 149px;
  height: 52px;
  box-shadow: rgba(255, 255, 255, 0.28) 4px 4px 17.4px 0px inset;
  background: rgb(163 117 0);
  position: absolute;
  right: 0;
  height: 100%;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.32px;
  cursor: pointer;
  transition: all ease .4s;
}

.form_news button:hover {
  background: rgb(124, 89, 1);
}

input#newsletter-email:focus {
  box-shadow: 0px 1px 10px 1px rgb(163 117 0);
}

.barber_video--sec {
  padding: 100px 0;
}

.barber_video {
  display: flex;
}

.barber_head {
  text-align: center;
  margin-bottom: 40px;
}

.custom-container {
  padding: 0 50px;
  max-width: 1420px;
  margin: 0 auto;
}

.barber_video video {
  height: 100%;
  max-height: 700px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section h6 {
  color: var(--secondary-color);
}

.about-section .custom-block-bg-overlay-image {
  width: 100%;
  max-height: 350px;
}

.about-section .custom-block-bg-overlay-wrap {
  position: relative;
}

.team-info {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 10px 40px;
  padding: 10px 17px 10px 20px;
  transition: all 0.3s ease;
}


/*---------------------------------------
  FEATURED               
-----------------------------------------*/
.featured-section {
  background-image: url('../images/discount-bg.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  text-align: center;
}

.featured-section .section-overlay {
  opacity: .9;
}

.featured-section h2 {
  color: var(--primary-color);
}

.featured-section p {
  color: var(--white-color);
}

.featured-section strong {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
}


/*---------------------------------------
  SERVICES             
-----------------------------------------*/
.services-thumb {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.services-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0.00) 0%, #000 100%);
  /* opacity: 0.5; */
  z-index: 2;
}

/* .services-thumb:hover .services-info {
  border-color: var(--primary-color);
  border-width: 5px;
} */

.services-thumb:hover .services-image {
  transform: scale(1.05);
}

.services-image {
  border-radius: var(--border-radius-medium);
  display: block;
  margin: auto;
  transition: all 0.3s;
}

.services-thumb-price {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  font-size: var(--copyright-font-size);
  margin-left: auto;
  padding: 5px 10px;
}

.services-info {
  border-radius: var(--border-radius-medium);
  border: 1px solid var(--white-color);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 25px 30px;
  transition: all 0.3s ease;
  z-index: 3;
}

.services-info:hover p {
  max-height: 1000px;
}

.services-info h4 {
  color: var(--white-color);
}

.service_info_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.service_info_wrap h4 {
  width: 75%;
}

.service_info_wrapper p {
  margin: 0;
  color: white;
  font-size: 16px;
  line-height: 26px;
  max-height: 0;
  overflow: hidden;
  transition: all linear 1.5s 0s;
  width: 100%;
}


/*---------------------------------------
  PRICE LIST             
-----------------------------------------*/
.price-list-section {
  padding-top: 0!important;
  padding-bottom: 100px;
}

.price-list-thumb-wrap {
  padding-right: 50px;
}

.price-list-thumb {
  margin-bottom: 18px;
}
.price-list-thumb-wrap strong span {
    color: #a37500;
}
.price-list-thumb:last-child {
  margin-bottom: 0;
}

.price-list-thumb h6 strong {
  color: #a37500;
}

.price-list-thumb-divider {
  background: var(--p-color);
  flex: auto;
  height: 2px;
  margin: auto 15px 0;
}

.price-list-section .custom-block-bg-overlay-wrap {
  padding: 0;
}


/*---------------------------------------
  BOOKING               
-----------------------------------------*/
.booking-section {
  background-image: url('../images/seat-bg.jpg');
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-size: cover;
  background-position: center;
}

.calendly_form {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
}

.calendly_head {
  text-align: center;
}

.booking-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 65px;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
  filter: hue-rotate(45deg);
}

.contact-block-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  padding: 0;
  min-height: 200px;
}

.contact-block {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  transform: rotate(8deg);
  height: 100%;
  padding: 20px 40px;
}

.contact-block h6 {
  transform: rotate(-8deg);
}

.contact-block .custom-icon {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: relative;
}

.contact-block strong {
  display: block;
  color: var(--white-color);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
  transition: all 0.3s;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: var(--section-bg-color);
  border-color: transparent;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  position: relative;
  padding: 80px 50px;
  padding-top: 0;
}

.site-footer::after {
  content: "";
  background: linear-gradient(90deg, #FDBB2D 0%, #22C1C3 100%);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.site-footer strong {
  display: block;
  color: var(--secondary-color);
}

.copyright-text {
  font-size: var(--copyright-font-size);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin: 0 3px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: all 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

/* Mine Custom Css */

.custom-footer-logo {
  width: 240px;
  margin-bottom: 20px;
  display: flex;
}

.custom_barber_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 100px;
}

.barber_block {
  width: 48%;
}

.booking-custom {
  background: url(../images/book-bg.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 2;
}

.booking-custom::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #000000d0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.booking-custom h2 {
  color: white;
}

.custom_video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.custom_video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.custom-hamburger {
  display: none;
}

.bullet--sec {
  padding-top: 100px;
}

.bullet_head {
  text-align: center;
  margin-bottom: 40px;
}

.bullet_head h2 {
  text-transform: capitalize;
}

.bullet_wrapper {
  display: flex;
  gap: 20px;
}

.bullet_card {
  width: 33%;
  padding: 30px 20px;
  /* background: #c7c7c7; */
  box-shadow: 1px 4px 27px 1px #bfbfbf63;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.bullet_card:hover::before {
  width: 100%;
}

.bullet_card:hover {
  h3 span {
    color: white;
  }
}

.bullet_card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #a37500;
  z-index: -1;
  /* scale: 0; */
  /* border-radius: 100%; */
  transition: all ease 1s;
}

.bullet_card h3 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
}

.bullet_card h3 span {
  transition: all ease 1s;
  color: #a37500;
}

.bullet_card p {
  font-size: 16px;
  line-height: 28px;
  color: black;
  margin-bottom: 0;
  font-weight: 400;
  transition: all ease 1s;
}

/* Custom Footer */
.custom-footer {
  padding: 43px 0 35px;
  background: #000;
  position: relative;
  overflow-x: hidden;
}

.ft-logo {
  display: flex;
  width: 300px;
}

.custom-ft-container {
  max-width: 1420px;
  padding: 0 50px;
  width: 100%;
  margin: 0 auto;
}

.ft_right_img {
  position: absolute;
  right: -135px;
  top: 0;
  width: 272px;
  height: auto;
}

.ft_top_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
}

.ft_in_wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.ft_address p {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  text-transform: capitalize;
}

.ft_address {
  max-width: 260px;
}

.ft_address p b {
  color: #B57A11;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.ft_address h3 {
  font-size: 28px;
  color: white;
  font-weight: 700;
  text-transform: capitalize;
}

.ft_timing h3 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  text-transform: capitalize;
}

.ft_timing p {
  color: #B57A11;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-transform: capitalize;
}

.ft_social .site-footer-link {
  color: white;
  font-weight: 300;
}

.ft_social h5 {
  color: white;
}

.copyright-center {
  padding: 5px 0;
  background: #0e0e0e;
}

.copyright-center p {
  color: rgb(202, 202, 202);
  font-size: 12px;
  font-weight: 400;
  line-height: 35px;
  text-transform: capitalize;
  text-align: center;
  margin: 0;
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 62px;
  }

  .custom-banner-content {
    width: 100%;
  }

  .custom-ft-btm {
    flex-direction: column;
  }
}

@media screen and (max-width: 991px) {
  .nav_icons.for-desk {
    display: none;
  }

  .nav_icons.for-mob {
    display: flex;
  }

  .custom-navigation {
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    background: black;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: all ease .8s;
  }

  .navbar-toggler.active .navbar-toggler-icon:after {
    transform: rotate(-45deg);
  }

  .ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .hamRotate.active {
    transform: rotate(45deg);
  }

  .hamRotate180.active {
    transform: rotate(180deg);
  }

  .line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #ffffff;
    stroke-width: 5.5;
    stroke-linecap: round;
  }

  .ham2 .top {
    stroke-dasharray: 40 121;
  }

  .ham2 .bottom {
    stroke-dasharray: 40 121;
  }

  .ham2.active .top {
    stroke-dashoffset: -102px;
  }

  .ham2.active .bottom {
    stroke-dashoffset: -102px;
  }

  .custom-hamburger {
    display: flex;
    width: 60px;
    position: relative;
    z-index: 3;
  }

  .navbar-toggler.active .navbar-toggler-icon:before {
    transform: rotate(45deg);
  }

  .navbar-toggler.active .navbar-toggler-icon {
    background: transparent;
  }

  .custom-navigation.open {
    transform: translateX(0);
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  /* .custom--banner .col-lg-3 {
    width: 100%;
  } */

  .section-padding,
  .hero-section {
    padding: 50px 25px;
  }

  .custom-block {
    display: none;
  }

  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .booking-form {
    padding: 45px;
  }

  .price_left {
    width: 100%;
  }

  .ft_in_wrapper {
    flex-wrap: wrap;
    row-gap: 40px;
  }

  .ft_right_img {
    top: auto;
    bottom: 0;
    opacity: 0.3;
  }
  .bullet_wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .bullet_card {
    width: 48%;
  }
}

@media screen and (max-width: 767px) {
  .custom--banner .col-lg-9 {
    width: 100%;
  }

  .form_news {
    max-width: 420px;
    width: 100%;
  }
.barber_video--sec {
  padding: 50px 0;
}
.custom_banner .text-black br{
    display: none;
}
  .hero-section {
    align-items: flex-start !important;
    padding-top: 110px !important;
  }

  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .custom--banner .col-lg-3 {
    width: 100%;
  }

  .custom_barber_wrapper {
    row-gap: 40px;
  }

  .custom_banner .text-black {
    font-size: 16px;
  }

  .barber_block {
    width: 100%;
  }

  .team-info {
    margin: 0;
  }

  .hero-section {
    min-height: 100vh;
    align-items: center !important;
  }

  .custom-services .col-12 {
    padding: 0;
  }

  .services-info {
    margin: 10px;
    padding: 15px 13px;
  }

  .service_info_wrap h4 {
    width: 65%;
  }

  .custom-services .col-12:last-child {
    margin-top: 24px;
  }

  .service_info_wrapper p {
    max-height: max-content;
    font-size: 13px;
    line-height: 18px;
  }

  .services-thumb::after {
    background: linear-gradient(180deg, rgb(0 0 0 / 56%) 0%, #000 100%);
  }

  .price_left {
    width: 100%;
    padding: 0;
  }

  .price-list-thumb-wrap {
    padding: 0;
  }

  .price-list-thumb-wrap h6 {
    font-size: 13px;
  }

  .price-list-thumb-divider {
    margin: auto 6px 0;
  }

  /* .price-list-thumb h6 strong{
    font-size: 12px;
  } */
  .site-footer {
    padding: 60px 20px;
  }

  .custom-header-wrap {
    padding: 0 20px;
  }

  .logo-image {
    width: 160px;
  }

  .custom-container, 
  .custom-ft-container {
    padding: 0 20px;
    text-align: center;
  }

  .ft_top_wrapper {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
  }

  .ft_in_wrapper {
    justify-content: center;
  }

  .footer_newsletter p br {
    display: none;
  }
  .bullet_card {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .services-info h4 {
    font-size: 20px;
  }

  .booking-form {
    padding: 35px;
  }
}