@font-face {
    font-family: CenturyGothic-Regular;
    src: url('../fonts/CenturyGothic-Regular.ttf');
}

@font-face {
    font-family: CenturyGothic-Bold;
    src: url('../fonts/CenturyGothic-Bold.TTF');
}

:root {
    --theme-color-1: #b2844d;
    --theme-color-2: #1f1f1f;
    --theme-color-3: #f2f2f2;
    --bg-white: #ffffff;
    --bg-black: #07070a;
    --font-color: #646464;
    --heading-color: #1f2324;
    --font-white: #ffffff;
    --font-black: #000000;
}


body {
    background-color: var(--bg-white);
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 25px;
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
    color: var(--font-color);
}

h1,
h2,
h3 {
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'CenturyGothic-Bold', sans-serif;
    font-weight: normal;
}

h4,
h5 {
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'CenturyGothic-Bold', sans-serif;
    font-weight: normal;
}

p {
    margin-bottom: 0;
}

a,
a:hover,
a:active,
a:focus {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn {
    border-radius: 0px;
    height: 46px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding: 10px 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
}

.btn-main {
    color: var(--font-white);
    background-color: var(--theme-color-1);
    transition: all .5s ease-out;
}

.btn-main:hover {
    background-position: left bottom;
    color: #fff;
    background-color: #623819;
}

.btn-secondary {
    color: var(--theme-color-1);
    background-color: var(--font-white);
    transition: all .5s ease-out;
}

.btn-secondary:hover {
    background-position: left bottom;
    color: #fff;
    background-color: var(--theme-color-1);
}

.main-content-container {
    width: 100%;
    position: relative;
    display: inline-block;
}

#loading {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: block;
	background-color: #fff;
	z-index: 9999;
	text-align: center;
}

#loading-image {
	position: absolute;
	top: 40%;
	z-index: 999;
	transform: translate(-50%);
	background-color: #fff;
	display: inline-block;
}

.error-msg{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}
.error-msg-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -15px;
    font-size: 10px;
    left: 0px;
    margin: 0;
    line-height: 0;
    color: red;
}
.success-msg{
    display: none;
    transition: ease-out 0.3s;
}
.success-msg-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: #2e7dab;
    font-size: 14px;
    z-index: 10;
    top: 65px;
    left: 0;
	color: #fff;
}

.subscribe-inner{
	position: relative;
}

.subscribe-inner form{
	position: relative;
}

.check-success-icon{
	margin-right: 10px;
    padding: 10px;
    color: #fff;
}

.error-msg-contact{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}
.error-msg-contact-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left:0;
    margin: 0;
    line-height: 0;
    color: red;
}
.success-msg-contact{
    display: none;
    transition: ease-out 0.3s;
}
.success-msg-contact-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: #001941;
    font-size: 14px;
    z-index: 10;
    bottom: -150px;
    left: 0;
    padding-left: 3px;
	color: #fff;
	width: 265px;
}
.success-msg p, .success-msg-display p{
    margin-bottom: 0;
}
.error-msg p, .error-msg-display p{
    margin-bottom: 0;
}

input:hover, input:focus, input:active{
    box-shadow: none;
    outline: none;
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    background: transparent;
    box-shadow: transparent;
    transition: none !important;
    height: auto;
    flex-direction: column;
    padding-top: 0px;
} 

.navbar-dark .navbar-nav .nav-link{
    color: var(--font-white);
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.dropdown .nav-link:after{
    font-family: "Fontawesome", sans-serif; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar.fixed-top{
    position: fixed;
    background-color: var(--bg-white);
    transition: all 0.35s ease;
    border-bottom: 1px solid #dee2e6;
}

.navbar.fixed-top .nav-link{
    color: var(--font-black) !important;
}

.navbar-nav .nav-item{
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: var(--theme-color-1);
}

.navbar.fixed-top .nav-link:hover{
    color: var(--theme-color-1) !important;
}

.nav-item.search .btn-main{
    white-space: nowrap;
}

@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
  
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
  
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
  
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.dropdown-menu{
    min-width: 12rem;
    transition: ease-in-out 0.3s;
    border: none;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--font-black);
    font-size: 16px;
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
    transition: ease-in-out 0.3s;
}

.navbar .nav-item:hover .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
}

.dropdown-menu li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.topbar{
    background-color: transparent;
    padding: 12px 0px;
    width: 100%;
    border-bottom: 1px dashed #464646;
    margin-bottom: 15px;
}

.topbar-contact-wrapper ul li{
    display: inline-block;
    margin-right: 15px;
}

.topbar-contact-wrapper ul li a{
    color: var(--font-white);
}

.topbar-contact-wrapper ul li a i{
    color: var(--font-white);
    margin-right: 10px;
}

.topbar-social{
    text-align: right;
}

.topbar-social li{
    display: inline-block;
    margin-left: 5px;
}

.topbar-social li a{
    color: var(--font-white);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar.fixed-top .topbar-contact-wrapper ul li a{
    color: var(--font-black);
}

.navbar.fixed-top .topbar-contact-wrapper ul li a i{
    color: var(--theme-color-1);
}

.navbar.fixed-top .topbar-social li a{
    color: var(--theme-color-1)
}

.navbar-brand img{
    width: 180px;
}

section{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 60px 0px;
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    z-index: 11;
}

.section-heading{
    font-size: 36px;
    font-family: 'CenturyGothic-Bold', sans-serif;
    color: var(--heading-color);
    margin-bottom: 15px;
    text-align: center;
}

.section-description{
    font-family: 'CenturyGothic-Bold', sans-serif;
    color: var(--font-black);
    text-align: center;
    font-size: 18px;
}

.banner-container{
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: url('../images/banner-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 650px;
    overflow: hidden;
}

.banner-container::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 60%);
    z-index: 9;
}

.banner-image-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 11;
    position: relative;
}

.banner-heading{
    font-size: 54px;
    color: var(--font-white);
    margin-bottom: 15px;
    font-family: 'CenturyGothic-Bold', sans-serif;
}

.banner-description{
    font-size: 18px;
    color: var(--font-white);
    margin-bottom: 0px;
    font-family: 'CenturyGothic-Bold', sans-serif;
}

.banner-btns{
    display: flex;
    width: 100%;
    position: relative;
    margin-top: 2rem;
}

.banner-layer-container{
    width: 100%;
    position: relative;
    display: inline-block;
    z-index: 10;
    margin-top: -6rem;
}

.banner-layer-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
    padding: 25px;
}

.banner-layer-wrapper.one{
    background-color: var(--theme-color-3);
}

.banner-layer-wrapper.two{
    background-color: var(--theme-color-1);
}

.banner-layer-wrapper.three{
    background-color: var(--theme-color-2);
}

.banner-layer-heading{
    width: 100%;
    position: relative;
    color: var(--heading-color);
    font-size: 24px;
    margin: 15px 0px;
}

.read-more-link{
    width: 100%;
    position: relative;
    display: inline-block;
    font-family: 'CenturyGothic-Bold', sans-serif;
    margin-top: 20px;
}

.two .banner-layer-heading{
    color: var(--font-white);
}

.three .banner-layer-heading{
    color: var(--font-white);
}

.two .banner-layer-description{
    color: var(--font-white);
}

.three .banner-layer-description{
    color: var(--font-white);
}

.two .read-more-link{
    color: var(--font-white);
}

.three .read-more-link{
    color: var(--font-white);
}

.banner-layer-wrapper img{
    width: 40px;
    margin-bottom: 15px;
}

.banner-book-appointment{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 4rem 0rem;
}

.banner-book-appointment h3{
    font-size: 28px;
    margin-bottom: 10px;
}

.about-container{
    background-color: var(--theme-color-3);
}

.about-content-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.about-content-wrapper h3{
    font-size: 32px;
    margin-bottom: 1.5rem;
}

.about-content-wrapper p{
    margin-bottom: 2rem;
}

.about-image-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
}

.about-image-wrapper img{
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.funfactor-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.funfactor-img{
    margin-right: 20px;
}

.funfactor-img img{
    width: 40px;
}

.funfactor-content h3{
    font-size: 32px;
    color: var(--theme-color-1);
    margin-bottom: 5px;
}

.funfactor-content p{
    color: var(--heading-color);
    text-transform: uppercase;
    font-family: 'CenturyGothic-Bold', sans-serif;
}

.services-container{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 350px;
    background-image: url('../images/services-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.service-navtabs .nav-pills .nav-item{
    flex: 25%;
}

.service-navtabs .nav-pills .nav-item .nav-link{
    width: 100%;
    background-color: var(--font-white);
    text-align: center;
    display: flex;
    border-radius: 0px;
    padding: 20px;
    justify-content: center;
    height: 70px;
    color: var(--heading-color);
    text-transform: uppercase;
    font-family: 'CenturyGothic-Bold', sans-serif;
}

.service-navtabs .nav-pills .nav-item .nav-link.active{
    background-color: var(--theme-color-1);
    color: var(--font-white);
}

.service-layer{
    margin-top: -70px;
    position: relative;
    width: 100%;
    background-color: transparent;
    padding-bottom: 60px;
}

.service-navtabs .tab-content{
    background-color: var(--font-white);
    padding: 3rem;
    padding-bottom: 15px;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
}

.sercice-list-item{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.sercice-list-item h3{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    margin-bottom: 15px;
}

.barber-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    height: 100%;
    background-color: var(--font-white);
}

.barder-image{
    min-width: 160px;
    height: 100%;
    position: relative;
    display: inline-block;
    width: 160px;
}

.barder-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.barder-content{
    width: 100%;
    padding: 25px;
}

.barber-name{
    font-size: 20px;
    margin-bottom: 5px;
}

.barber-designation{
    text-transform: uppercase;
    margin-bottom: 15px;
}

.barber-social{
    margin-top: 20px;
}

.barber-social li{
    display: inline-block;
}

.barber-social li a{
    margin-right: 15px;
}

.barber-contact{
    position: absolute;
    right: 0;
    bottom: 0;
}

.barber-contact li a{
    width: 30px;
    height: 30px;
    background-color: var(--theme-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
}

.barber-contact li {
    margin-top: 10px;
}

.barbers-container{
    background-color: var(--theme-color-3);
}

.trends-image-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 250px;
}

.trends-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cares-container{
    background-color: var(--theme-color-3);
}

.care-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 25px;
    background-color: var(--font-white);
    height: 100%;
}

.care-content h3{
    font-size: 20px;
    color: var(--heading-color);
}

.care-content ul {
    margin: 5px 0px;
}

.care-content ul li{
    display: inline-block;
}

.care-content ul li i{
    color: #b2844d;
}

.care-content h4{
    font-size: 20px;
    color: var(--heading-color);
}

.care-image{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.care-image img{
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.testimonial-container{
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: url('../images/testimonial.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.testimonial-container:before{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    content: '';
    background-color: rgb(0 0 0 / 60%);
}

.testimonial-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    z-index: 11;
    height: 100%;
}

.testimonial-content{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--font-white);
    padding: 20px;
    text-align: center;
}

.testimonial-content h3{
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--heading-color);
    text-transform: uppercase;
}

.testimonial-author{
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: center;
    flex-direction: column;
    margin-top: 20px;
}

.testimonial-author img{
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
}

.testimonial-author h3{
    color: var(--font-white);
    font-size: 18px;
    margin-top: 10px;
}

.testimonial-author p{
    color: var(--font-white);
}

.testimonial-content::after{
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #fff;
    font-size: 0;
    line-height: 0;
    float: left;
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translate(-50%, 0px);
}

.map-container{
    background-color: var(--theme-color-3);
}

.location-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--theme-color-1);
    padding: 2rem;
}

.location-contacts-info{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.contact-heading{
    font-size: 20px;
    color: var(--font-white);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.location-contacts-info ul li{
    margin-bottom: 15px;
}

.location-contacts-info ul li:last-child{
    margin-bottom: 0px;
}

.location-contacts-info ul li a{
    color: var(--font-white);
    display: flex;
    align-items: baseline;
}

.location-contacts-info ul li a i{
    margin-right: 15px;
}

.location-opening ul li{
    padding: 10px 0px;
    border-top: 1px solid rgb(255 255 255 / 18%);
}

.location-opening ul li p{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--font-white);
}

.contact-container{
    width: 100%;
    background-image: url('../images/contact-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-container::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgb(0 0 0 / 60%);
    z-index: 10;
}

footer{
    background-color: var(--theme-color-2);
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 3rem 0 2rem 0;
}

.contact-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    z-index: 11;
}

.contact-input{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: rgb(255 255 255 / 10%);
    padding: 10px 15px;
    border: none;
    color: var(--font-white);
}

.contact-group .btn-main{
    width: 100%;
    max-width: 100%;
}

.footer-about{
    width: 100%;
    position: relative;
    display: inline-block;
    padding-right: 5rem;
}

.footer-about img{
    width: 140px;
    margin-bottom: 25px;
}

.footer-about p{
    color: var(--font-white);
    margin-bottom: 10px;
}

.footer-about p:last-child{
    margin-top: 2rem;
}

.footer-quick-links{
    position: relative;
    width: 100%;
    display: inline-block;
}

.footer-heading{
    font-size: 20px;
    color: var(--font-white);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.footer-quick-links ul li{
    margin-bottom: 10px;
}

.footer-quick-links ul li:last-child{
    margin-bottom: 0px;
}

.footer-quick-links ul li a{
    color: var(--font-white);
}

.footer-follow ul li{
    display: inline-block;
    margin-right: 10px;
}

.footer-follow ul li a{
    color: var(--font-white);
}

.theme-selection{
    position: fixed;
    width: 70px;
    right: 0;
    top: 50%;
    transform: translate(0%, 0%);
    background-color: var(--theme-color-1);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    z-index: 99;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-selection ul li a .light{
    width: 40px;
    height: 40px;
    background-color: var(--font-white);
    display: inline-block;
}

.theme-selection ul li a .dark{
    width: 40px;
    height: 40px;
    background-color: var(--font-black);
    display: inline-block;
}

.theme-selection ul li a p{
    color: var(--font-white);
    margin-bottom: 10px;
    text-align: center;
}

.theme-selection ul li:last-child a p{
    margin-bottom: 0px;
}

/* dark theme */

body.dark {
    background-color: var(--bg-black);
    color: var(--font-white);
}

.dark .one .banner-layer-description{
    color: var(--font-color);
}

.dark .one .read-more-link{
    color: var(--heading-color);
}

.dark .banner-book-appointment h3{
    color: var(--font-white);
}

.dark .about-container{
    background-color: var(--bg-black);
    padding-bottom: 0;
}

.dark .about-content-wrapper h3{
    color: var(--font-white);
}

.dark .funfactor-content p{
    color: var(--font-white);
}

.dark .service-layer{
    background-color: transparent;
}

.dark .sercice-list-item p{
    color: var(--font-color);
}

.dark .barbers-container{
    background-color: var(--bg-black);
}

.dark .section-heading{
    color: var(--font-white);
}

.dark .section-description{
    color: var(--font-white);
}

.dark .barber-designation{
    color: var(--font-color);
}

.dark .barber-description{
    color: var(--font-color);
}

.dark .barber-social li a{
    color: var(--font-color);
}

.dark .cares-container{
    background-color: var(--bg-black);
}

.dark .care-content p{
    color: var(--font-color);
}

.dark .testimonial-content p{
    color: var(--font-color);
}

.dark .map-container{
    background-color: var(--bg-black);
}
#g-mapdisplay img{max-height:none;max-width:none!important;background:none!important;}

