
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?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');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    display: inline-block;
    text-decoration: none;
}
li{
    list-style: none;
}
ul,p,h1,h2,h3,h4,h5,h6{
    margin: 0;
}
@media (min-width: 1400px) and (max-width: 1599px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1080px;
    }
}
header {
    position: relative;
    background: #211F20;
}
header.scrolled {
    position: fixed;
    width: 100%;
    top: 0;
    transition: all 0.3s ease;
    animation: goDown 0.5s ease-in-out forwards;
    z-index: 999;
    box-shadow: 2px 0px 10px 0px #3B3B3B57;
}
@keyframes goDown {
    0% {
        top: -60px;
    }

    100% {
        transform: translateY(0px);
    }
}
a.navbar-brand img {
    width: 100%;
    object-fit: cover;
}
header #navbarNav {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    justify-content: center;
    width: 100%;
}
.unique-btn {
    background: #C59D5F;
    border: 1px solid #C59D5F;
    color: #FFFFFF;
      font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-left: auto;
    position: relative;
    z-index: 1;
    padding: 11px 25px;
    transition: all 0.3s ease;
}
.unique-btn:hover{
     transition: all 0.3s ease;
      background: #211F20;
}
.navbar-brand {
    position: relative;
    z-index: 1;
}
.header-menu li a {
    color: #FFFFFF;
      font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0 30px !important;
     transition: all 0.3s ease;
}
.header-menu li a:hover{
    color: #C59D5F !important;
    transition: all 0.3s ease;
}
/*.header-menu li.current-menu-item a{
    position: relative;
    color: #FFFFFF !important;
}
.header-menu li.current-menu-item a::before {
    content: ' ';
    position: absolute;
    background: #C59D5F;
    width: 50px;
    height: 2px;
    bottom: -10px;
    left: 50%;
    transform: translatex(-50%);
}*/


/* <========== banner================> */
.hero-banner {
    position: relative;
}

.banner-item-img {
    height: 90vh;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.banner-item-img::before{
  content: ' ';
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.224) 44.55%, rgba(0, 0, 0, 0.08) 100%);
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 11;

}
.banner-content {
    position: relative;
    z-index: 11;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}
.banner-content h1 {
    color: #FFFFFF;
      font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 56px;
    line-height: 66px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.banner-content p{
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
font-weight: 600;
font-size: 18px;
line-height: 60px;
letter-spacing: 0.5px;
text-transform: capitalize;

}
.same-btn {
    background: #C59D5F;
    border: 1px solid #C59D5F;
    color: #FFFFFF;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 42px;
    transition: all 0.3s ease;
}
.same-btn:hover{
    background: #211F20;
     transition: all 0.3s ease;
}
.hero-banner .owl-dots {
    position: absolute;
    bottom: 30px;
    margin: 0 !important;
    left: 0;
    right: 0;
    text-align: center;
}

.hero-banner .owl-dots .owl-dot span {
    width: 33px !important;
    height: 3px !important;
    display: block;
}

/* <============= about-section==============> */

.about-section {
    background: #1F1F1F;
    position: relative;
    padding: 86px 0;
}
.about-section-img {
    position: relative;
}
.about-section-img img {
    object-fit: cover;
    width: 100%;
    position: relative;
}
.about-section-img::before {
    content: ' ';
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.574) 0%, rgba(0, 0, 0, 0) 44.12%, rgba(0, 0, 0, 0.574) 100%);
    z-index: 111;
}
.about-section-meta {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2rem;
    gap: 30px;
}
.about-section-meta::before {
    content: ' ';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    background: #C59D5F;
    height: 70%;
    width: 2px;
}
.all-same-heading h2 {
    color: #FFFFFF;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 66px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.about-section-meta p {
    color: #D3D3D3;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 32px;
    letter-spacing: 0px;
    text-transform: capitalize;
}
.about-section-meta p span{
    color: #C59D5F;
    font-weight: 600;
}



/* <======== service============== */

.service-section {
    background: #0F0F0F;
    padding: 100px 0;
    position: relative;
}
.service-section::before {
    content: ' ';
    position: absolute;
    background-image: url('../images/choose-section-img.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 230px;
    height: 174px;
    top: 30px;
    left: 50px;
}
.service-section h2{
    text-align: center;
}
.service-section-meta {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-top: 50px;
}
.service-meta-single {
    background: #1F1F1F;
    border: 1px solid #1F1F1F ;
    padding: 20px 0 20px 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}
.service-meta-single:hover{
   border:1px solid  #C59D5F;
    transition: all 0.3s ease;
}
.service-meta-single h3{
    color: #FFFFFF;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.2px;
    text-transform: uppercase;

}
.service-single-discription {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
}
.service-single-discription p{
    color: #D3D3D3;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0px;
    text-transform: capitalize;

}
.service-single-discription h4 {
    color: #C59D5F;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: uppercase;
    border-left: none !important;
    border: 1px solid #C59D5F;
    padding: 2px 10px 1px 25px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.service-single-discription h4:after {
    content: "";
    position: absolute;
    left: -17px;
    top: 5px;
    width: 30px;
    height: 27px;
    border-top: none !important;
    border-left: none !important;
    border: 1px solid #C59D5F;
    transform: rotate(-45deg);
    z-index: 3;
    background: #1f1f1f;
}


/* <============== barbers-section===========> */

.barbers-section {
    background: #0F0F0F;
    position: relative;
    padding-bottom: 100px;
}
.barbers-section h2{
    text-align: center;
}
.barbers-section-meta {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
    margin-top: 44px;
}
.barbers-section-single {
    text-align: center;
}
.barbers-single-img {
    width: 100%;
}
.barbers-single-img img {
    object-fit: cover;
    width: 100%;
}
.barbers-section-single h3 {
    color: #FFFFFF;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: normal;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 15px;
}
.barbers-section-single h5 {
    color: #FFFFFF;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.barbers-section-single p {
    color: #D3D3D3;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
    margin: 10px;
}


/* <========= appointment section========== */

.appointment-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 74px 0;
    z-index: 1;
}
.appointment-section::before {
    content: ' ';
    position: absolute;
    background: linear-gradient(89.84deg, rgba(0, 0, 0, 0.78) 0.14%, rgba(0, 0, 0, 0.62) 37.58%, rgba(0, 0, 0, 0) 99.86%);
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
}
.appointment-section-meta {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    gap: 21px;
}
.appointment-section-meta h2 {
    font-size: 56px !important;
    padding-right: 10rem;
}
.appointment-section-meta p{
    color: #D3D3D3;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0px;
    text-transform: capitalize;

}
.call-us,.mail-us {
    display: flex;
    align-items: center;
    gap: 22px;
   
}
.call-img {
    background: #C59D5F;
    height: 52px;
    width: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.call-content h6 ,.mail-content h6{
    color: #FFFFFF;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}
.call-content a,.mail-content a {
    color: #D3D3D3;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0px;
    text-transform: capitalize;
}

.appointment-form {
    background: #FFFFFF;
    padding: 32px;
}
.appointment-form h3 {
    color: #000000;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 66px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.appointment-form input,.appointment-form textarea ,.appointment-form select {
    color: #666666;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0px;
    text-transform: capitalize;
    border-radius: 0 !important;
    padding: 8px 15px !important;
    /*margin-bottom: 18px !important;*/
}
.form-control:focus {
    background-color: unset !important;
    border-color:#000000 !important;
    outline: 0 !important;
    box-shadow:none !important;
}
.form-submit-btn {
    background: #C59D5F;
    border: 1px solid #C59D5F;
    color: #FFFFFF !important;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 16px !important;
    line-height: 60px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0 !important;
    width: 100%;
    transition: all 0.3s ease;
}
.form-submit-btn:hover{
    background: white;
     transition: all 0.3s ease;
    color: #C59D5F !important;
}


/* <=========footer=====> */

footer {
    background: #211F20;
    padding: 80px 0 30px 0;
}
.footer-meta p {
    color: #C8C8C8;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0px;
    text-transform: capitalize;
    margin: 20px 0;
    padding-right: 51px;
}
.footer-meta ul{
    padding: 0;
}
.media-links {
    display: flex;
    gap: 10px;
    padding: 0;
}
.media-links li a {
    color: white;
    background-color: #2d2d2d;
    padding: 5px 10px;
    transition: all 0.3s ease;
}
.media-links li a:hover{
    
    color: #C59D5F;
    transition: all 0.3s ease;
}
.footer-meta h3 {
    color: #FFFFFF;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.footer-meta ul li{
    margin-bottom: 15px;
}
.footer-meta ul li a {
    color: #C8C8C8;
    font-family: "Poppins", sans-serif;
font-weight: 400;
font-size: 16px;
line-height: normal;
letter-spacing: 2%;
text-transform: capitalize;
transition: all 0.3s ease;
}
.footer-meta ul li a:hover{
color: #C59D5F;
transition: all 0.3s ease;
}
.footer-location {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
}
.footer-location a{
    color: #DBDBDB;
}
.footer-copy-right {
    border-top: 1px solid #FFFFFF1F;
    margin-top: 60px;
    padding-top: 25px;
    text-align: center;
}
.footer-copy-right p {
    color: #AFAFAF;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
    text-transform: capitalize;
}
.footer-logo img {
    object-fit: cover;
    width: 100%;
}