/********** moe's cuts **********/
:root {
    --primary: #F8ECCD;
    --secondary: #191C24;
    --light: #F8ECCD;
    --dark: #000000;
	--main: #D19B4D;
}
body{
	background-color:#F8ECCD
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 40px 0;
    color: black;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #F8ECCD;font-size: 20px
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .navbar.shadow-sm .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--light);
    } 
	.drd{
	 margin-left:150px;}
	.phn{
		color:white
	}

}

@media (min-width: 992px) {
    .navbar.shadow-sm .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    } 
.phn{
		color:white
	}
	
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
	.phn{
		color:white
	}

    }

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Service ***/
.service-item .btn {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 50px;
    height: 50px;
    color: var(--primary);
    background: var(--main);
    opacity: 0;
}

.service-item:hover .btn {
    right: 0;
    bottom: 0;
    opacity: 1;
}


/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .55);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 3px;
    color: var(--primary);
    background: var(--dark);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--secondary);
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var( --light);
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--main);
    letter-spacing: 1px;
    box-shadow: none;
}
.btn1{
	background-color: #D19B4D;
	border:1px solid #D19B4D;
	color:#F8ECCD
}
.btn1:hover{
	background-color: #F8ECCD;
		border:1px solid #F8ECCD
}

.footer .copyright {
    padding: 1.5rem;
    font-size: 15px;
    background: var(--main);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
.active{
	color:#F8ECCD
}
.active1{
	color:#F8ECCD
}
.active1:hover{
	color:#D19B4D
}
.navbar{
	background-image: url('../img/navbar-01.png')
}
.fothea{
	color:#F8ECCD;
	text-transform: lowercase
}
.fothea1{
	color:#F8ECCD;
	
}
.bg1{
background-image: url('../img/footer.png')
}



.nav-link{
	color:#F8ECCD
}
.dropdown-toggle{
	text-decoration:bold;
	background-color: #D19B4D;
	justify-content:center;
	border-radius: 7px;
	position:inherit;
		
}
.dropdown-toggle:hover{
	color:black;
	border-bottom:1px solid #F8ECCD;
	border-top: 1px solid #F8ECCD;
}
#moe{
	margin-right: 390px;
	margin-top:30px ;
	font-size: 40px;
	
}
@media screen and (min-width: 200px) and (max-width: 399px){
	#moe{
	margin-right: 7px;
	margin-top:1px ;
	font-size: 25px}
	.hdim{
	width:100px;
		height: 30px;
	}
	.imm{
		width:150px
	}
	.phn{
		color:white
	}
	
		
}
@media screen and (min-width: 400px) and (max-width: 767px){
	#moe{
	margin-right: 50px;
	margin-top:1px ;
	font-size: 25px}
	.hdim{
	width:100px;
		height: 80px;}
	.phn{
		color:white
	}
		
}
@media screen and (min-width: 768px) and (max-width: 1023px){
	#moe{
	margin-right: 350px;
	margin-top:1px ;
	font-size: 40px}	
	.hdim{
	width:200px;
		height: 100px;
	margin-top: -400px}
	.phn{
		color:white
	}
}
@media screen and (min-width: 1024px) and (max-width: 1300px){
	#moe{
	margin-right: 0px;
	margin-top:1px ;
	font-size: 40px}	
	  .navbar .navbar-nav .nav-link,
    .navbar.shadow-sm .navbar-nav .nav-link {
        margin-right: 40px;
        padding: 20px 0;
    }
	.hdim{
	width:200px;
	height: 150px;
}

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 0px solid var(--light);
    } 
	.drd{
	 margin-left:0px;}
	.phn{
		color:white
	}
}

.me-3{
	color:#D19B4D
}
.fa-phone-alt .text-primary  {
	color:#D19B4D
}
.text-primary  {
	color:#D19B4D
}
.start-us{
	background-color:#D19B4D;
	font-size: 30px;
	color:#F8ECCD;
	text-align: center;
	text-decoration: bold;
	border-radius: 7px
}
.hdim{
	width:200px;
	height: 150px;
	background-color: #F8ECCD;
	border-radius: 7px;
	text-align: center;
	border:2px solid #D19B4D;
}

.ap{
	color:black;
}
.ap1{
	color:white;
}
.ap2{
	color:#F37100;
	font-size: 20px;
}


.bg{
	background-image: url("../img/pricesqure.png")
}
.vid{
	margin-top:-1%;
width: 400px;
	height: 230px;
	
}
.map{
	width:1100px;
	height:550px;
}
@media screen and (min-width: 200px) and (max-width: 389px){

	.vb{
		position: center;
		width: 310px;
		height: 200px;
	}
	.do{
		text-align:justify;
		width:300px
	}
	.map{
		width:310;
		height: 250;
	}
}
@media screen and (min-width: 390px) and (max-width: 766px){

	.vb{
		position: center;
		width: 310px;
		height: 200px;
	}
			.do{
		text-align:justify;
		width:300px
	}
		.map{
		width:310;
		height: 250;
	}
}
@media screen and (min-width: 765px) and (max-width: 1300px){
	.vb{
		position: center;
		width: 350px;
		height: 200px;
	}
			.do{
		text-align:justify;
		width:300px
	}
	.map{
	width:1100px;
	height:550px;
}
}


/* line 2, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
.section_title h3 {
  font-size: 50px;
  font-weight: 400;
  line-height: 51px;
  color: #222222;
  font-family: "Yeseva One", cursive;
  margin-bottom: 21px;
}

@media (max-width: 767px) {
  /* line 2, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
  .section_title h3 {
    font-size: 27px;
    line-height: 33px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 2, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
  .section_title h3 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  /* line 2, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
  .section_title h3 {
    font-size: 33px;
    line-height: 40px;
  }
}

@media (max-width: 767px) {
  /* line 21, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
  .section_title h3 br {
    display: none;
  }
}

/* line 27, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
.section_title p {
  font-size: 16px;
  line-height: 32px;
  color: #7f7f7f;
  font-weight: 400;
}

/* line 104, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
.mb-55 {
  margin-bottom: 53px;
}

@media (max-width: 767px) {
  /* line 104, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
  .mb-55 {
    margin-bottom: 30px;
  }
}

@media (min-width: 760px) and (max-width: 1800px) {
  /* line 104, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
  .mb-55 {
    margin-bottom: 40px;
  }
  .head1{
   
	  background: linear-gradient(to right, #B27F2B, #F7DE7C, #FFF3A5, #F7DE7C, #B27F2B); 
            -webkit-text-fill-color: transparent; 
            -webkit-background-clip: text;
			
			
            font-size: 40px;
			margin-left:40px;
}
}
.head1{
    font-weight: 300;
	  background: linear-gradient(to right, #B27F2B, #F7DE7C, #FFF3A5, #F7DE7C, #B27F2B); 
            -webkit-text-fill-color: transparent; 
            -webkit-background-clip: text;
			
			
            font-size: 20px;
}
.head2{
    font-weight: 300;
	  background: linear-gradient(to right, #B27F2B, #F7DE7C, #FFF3A5, #F7DE7C, #B27F2B); 
            -webkit-text-fill-color: transparent; 
            -webkit-background-clip: text;
			
			
            font-size: 17px;
}

/* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_team.scss */
