*{
	margin: 0;
	padding: 0;
}

a:hover{
	text-decoration: none;
}

body{
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 14px;
	word-wrap: break-word;
}
.blink-bg{
		color: #fff;
		padding: 10px;
		display: inline-block;
		border-radius: 5px;
		animation: blinkingBackground 2s infinite;
	}
	@keyframes blinkingBackground{
		0%		{ background-color: #10c018;}
		25%		{ background-color: #1056c0;}
		50%		{ background-color: #ef0a1a;}
		75%		{ background-color: #254878;}
		100%	        { background-color: #04a1d5;}
	}
p{
	color: #333;
}

.pb-80{
	padding-bottom: 80px;
}

:focus{
	outline: none;
	box-shadow: none;
}

h1, h2, h3, h4, h5, h6{
	font-family: 'Trirong', serif;
}

.py-80{
	padding: 40px 0 !important;
}

/*button scss*/

.mas_btn_sm{
	font-size: 12px;
    font-weight:600;
    font-style: normal;
    line-height: 16px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 20px;
    color: #fff;
    background-color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    transition: all .5s ease;
}

.mas_btn_sm:hover{
	background-color: #3a3a3a;
	color: #fff;
}

.mas_btn_md{
	font-size: 12px;
    font-weight: 600;
    font-style: normal;
    line-height: 16px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    padding: 1.5em 3em;
    color: #fff;
    display: inline-block;
    background-color: #e8b936;
    transition: all .5s ease;

}

.mas_btn_md:hover{
	background-color: #3a3a3a;
	color: #fff;
}

.mas_btn_lg{
    font-size: 10px;
    padding: 1em 2em;
}

/*main heading*/

.main_heading{
	font-family: "Trirong",serif;
}

.main_heading .sub_heading{
	 font-family: "Montserrat",sans-serif;
	 font-size: 12px;
	 color: #e7b739;
	 position: relative;
	 line-height: 1.5em;
	 font-weight:600;
	 text-transform: uppercase;
	 padding-left: 3.8em;
}

.main_heading .sub_heading:before{
	content: "";
	margin-right: 0.5em;
	border-top: 2px solid;
    width: 3.36em;
    height: 0.31em;
    position: absolute;
    left: 0;
    top: 6px;
}


.main_heading .heading{
	font-size: 2rem;
    font-weight: 600;
    color: #50493d;
    margin-top: 20px;
    margin-bottom: 20px;
}

/*heading ends*/


.header_topbar{
	padding-top:5px;
	background-color:#e8b936;
}

.fixed {
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 999;
    background-color: #fff;
    padding: 20px 0;
    top: 0;
    border-bottom: 1px solid #ddd;
}

.logo h1 a{
	font-size: 24px;
    text-transform: capitalize;
    color: #50493d;
    text-decoration: underline;
}

.header_topbar .header_tapbar_buttons p{
	margin-bottom: 0;
	margin-right: 30px;
	font-weight: 600;
	font-family: 'Trirong', serif;
	display: none;

}

.header_topbar .header_tapbar_buttons p span{
	min-width: 24px;
	height: 24px;
	color: #1a1a1a;
	text-align: center;
	line-height: 22px;
	border: 2px solid #1a1a1a;
	border-radius: 50%;
	display: inline-block;
	margin-right: 5px;
}

.header_topbar .header_tapbar_buttons p a{
	color: #1a1a1a;
	font-weight:600;
}


 /*header navigation*/

 .header_navbar{
 	padding: 20px 0;
 	border-top: 1px solid #ddd;

 }

 .fixed{
 	position: fixed;
 	width: 100%;
 	left: 0;
 	
 }

 .toggle_menu {
 	margin: auto;
    width: 32px;
    height: 32px;
    border: 2px solid #1a1a1a;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    border-radius: 50%;
    color: #1a1a1a;
    font-size: 12px;
   	display: -webkit-flex;
   	display: -moz-flex;
   	display: -ms-flex;
   	display: -o-flex;
   	display: flex;
   	-ms-align-items: center;
   	align-items: center;
   	justify-content: center;
    cursor: pointer;
}


 .header_navigation_ul{
 	margin-bottom: 0;
 }

.header_navigation_ul li{
	font-size: 13px;
	font-weight: 400;
	margin: 0 15px;
	list-style: none;
	display: inline-block;
}

.header_navigation_ul li:first-child{
	margin-left: 0;
}

 .header_navigation_ul li a{
 	color: #1a1a1a;
 	text-transform: uppercase;
 	position: relative;
 	transition: all .5s ease;
 	padding-bottom: 7px;
 	font-weight:600;
 }

 .header_navigation_ul li a:after{
 	content: "";
 	width: 100%;
 	height: 3px;
 	position: absolute;
 	top: 100%;
 	left: 0;
 	transform: scale(0,1);
 	background-color: #3a3a3a;
 	transition: all .5s ease;
 }

 .header_navigation_ul li.active a{
 	color: #1a1a1a;
 }

 .header_navigation_ul li.active a:after{
 	transform: scale(1,1);
 }

 .header_navigation_ul li a:hover{
 	color: #3a3a3a;
 }

 .header_navigation_ul li a:hover:after{
 	transform: scale(1,1);
 }

 .header_social a{
 	border-radius: 50%;
 	margin-left: 10px;
 	display: inline-flex;
 	align-content: center;
 	justify-content: center;
 	align-items: center;
 	transition: all .5s ease;
 }

 .header_social a:hover{
/* 	border-color: #a8c024;
 	color: #a8c024;*/
 }

 .carousel{
 	display: -webkit-flex;
 	display: -moz-flex;
 	display: -ms-flex;
 	display: -o-flex;
 	display: flex;
 	-ms-align-items: center;
 	align-items: center;
	border-top: 1px solid #ddd;
 }


 .carousel .hair_offer_info{
 	width: 100%;
 	margin: auto;
 	padding: 0 15px;
 	position: absolute;
 	top: 0;
 	left: 0;
 	bottom: 0;
 	right: 0;
 	display: -webkit-flex;
 	display: -moz-flex;
 	display: -ms-flex;
 	display: -o-flex;
 	display: flex;
 	-ms-align-items: flex-start;
 	align-items: flex-start;
 	-webkit-flex-direction: column;
 	-moz-flex-direction: column;
 	-ms-flex-direction: column;
 	-o-flex-direction: column;
 	flex-direction: column;
 	justify-content: center;
 	font-family: "Trirong",serif;

 }

 .carousel .hair_offer_price{
 	padding-top: 0;
 	font-size: 36px;
    line-height: 40px;
    margin-bottom: 15px;
 }

 .carousel-control-prev, .carousel-control-next{
 	opacity: 1 !Important;
 	width: 8%;
 }

 .carousel-control-prev span, .carousel-control-next span{
 	width: 50px;
 	height: 50px;
 	display: -webkit-flex;
 	display: -moz-flex;
 	display: -ms-flex;
 	display: -o-flex;
 	display: flex;
 	-ms-align-items: center;
 	align-items: center;
 	justify-content: center;
 	background-color: #e5e1dc;
 	color: #000;
 	opacity: 1 !important;
 	font-size: 18px;
 	transition: all .5s ease;
 }

 .carousel-control-prev span:hover, .carousel-control-next span:hover{
 	background-color: #1a1a1a;
 	color: #fff;
 }


 .additional_section{
 	padding: 30px 0;
 	background-color: #1a1a1a;
 }

 .additional_section .container{
 	display: -webkit-flex;
 	display: -moz-flex;
 	display: -ms-flex;
 	display: -o-flex;
 	display: flex;
 	-ms-align-items: center;
 	align-items: center;
 	justify-content: space-between;
 }

 .additional_section .text_info{
 	color: #fff;
 	font-size: 20px;
 	font-family: 'Trirong', serif;
 	font-weight: 600;

 }

 .additional_section .text_info a{
 	color: #e8b936;
 	font-weight: 600;
 }

 .additional_section .text_info a:before{
 	content: "\f095";
 	font-family: 'fontAwesome';
 	font-size: 16px;
 	color: #e8b936;
 	min-width: 24px;
	height: 24px;
	text-align: center;
	line-height: 22px;
	border: 2px solid #e8b936;
	border-radius: 50%;
	display: inline-block;
	margin-right: 5px;
	line-height: 22px;
 }



 /*services section start here*/

 .services{
 	padding: 40px 0;
 	background-color: #f1eee9;
 }

 .services_card{
 	position: relative;
 	margin-top: 20px;
 }

 .services_card_info{
 	font-family: 'Trirong', serif;
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 18px;
	background-color: rgba(0,0,0,.5);
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: flex-end;
	align-items: flex-end;
	justify-content: space-between;
	transition: all .5s ease;
	
 }

 .services_card_info h3 a{
 	font-size: 20px;
 	color: #fff;
 }

 .services_card_info > a{
 	width: 48px;
 	height: 48px;
 	display: -webkit-flex;
 	display: -moz-flex;
 	display: -ms-flex;
 	display: -o-flex;
 	display: flex;
 	-ms-align-items: center;
 	align-items: center;
 	justify-content: center;
 	color: #fff;
 	font-size: 16px;
 	background-color: #3a3a3a;
 }

 .services_card:hover .services_card_info{
 	background-color: rgba(0,0,0,.3);
 }

 .about{
 	padding: 40px 0; 
 }

 .about_what_we_offer h5{
 	margin-bottom: 20px;
 }

 .about_what_we_offer img{
 	border: 1px solid #ddd;
 }

  .main_heading p{
  	margin-bottom: 0;
  }

 .about_what_we_offer ul{
 	display: -webkit-flex;
 	display: -moz-flex;
 	display: -ms-flex;
 	display: -o-flex;
 	display: flex;
 	-ms-align-items: center;
 	align-items: center;
 	justify-content: space-between;
 	list-style: none;
 	flex-wrap: wrap;
 	margin-bottom: 30px;
 }

  .about_what_we_offer ul li {
    width: 100%;
    margin-bottom: 5px;
    padding: 15px;
    background-color: #f5f5f5;
}
.about_what_we_offer ul li i {
    margin-right: 10px;
}

 /*hair offer section*/

 

@media (min-width: 768px) {
	.hair_offer{
 		font-family: 'Trirong', serif;
	 	padding: 80px 0;
	 	background-image: url('../images/bg-8.jpg');
	 	background-size: cover;
	 	background-position: center;
 		
 		}
		.hair_offer1{
 		font-family: 'Trirong', serif;
	 	padding:50px 0;
	 	background-image: url('../images/b1.jpg');
	 	background-size: cover;
	 	background-position: center;
 		
 		}
 	}

 .hair_offer img{
 	max-width: 100%;
 	max-height: 100%;
 }
 .hair_offer1 img{
 	max-width: 100%;
 	max-height: 100%;
 }
@media (min-width: 768px) {
		.hair_offer img{
 		display: none;
 	}
	.hair_offer1 img{
 		display: none;
 	}
}

 .stylish_font{
 	font-weight: 32px;
 	color: #e7b739;
 	font-weight: 400;
 	font-family: 'Great Vibes', cursive;
 }

 .hair_offer_info{
 	position: relative;
 }

 .hair_offer_price{
 	font-size: 24px;
 	color: #50493d;
 	text-align: center;
 	font-weight: 700;
 	padding-top: 80px;
 	margin-bottom: 15px;
 
 }

 .hair_offer_price span{
 	display: block;
 }

.hair_offer_discount{
	position: absolute;
    font-size: 1.876em;
    font-weight: 600;
    right: 0px;
    top: 0px;
    color: #ffffff;
    background-color: #e7b739;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    width: 3.56em;
    height: 3.56em;
    line-height: 1em;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
}

@media (min-width: 320px) and (max-width: 767px){
	.hair_offer_discount{
		top:-30px;
		width: 3em;
    	height: 3em;
    	padding: 10px;
    	font-size: 1.4em;
	}
}
 /*advantages*/

 .advantages{
 	padding: 40px 0; 
 }

 .advantages_box ul{
 	list-style: none;
 	font-family: 'Trirong', serif;
 	margin-bottom: 0;
 }
 .advantages_box .main_heading{
	margin-bottom: 50px;
 }

 .advantages_box ul li {
 	display: -webkit-flex;
 	display: -moz-flex;
 	display: -ms-flex;
 	display: -o-flex;
 	display: flex;
 	margin-bottom: 15px;

 }

 .advantages_box ul li:last-child{
 	margin-bottom: 0;
 }

 .advantages_box ul li span{
		 min-width: 25px;
		width: 30px;
		height: 25px;
 	margin-right: 10px;
 	background-color: #f1efea;
 	display: -webkit-flex;
 	display: -moz-flex;
 	display: -ms-flex;
 	display: -o-flex;
 	display: flex;
 	-ms-align-items: center;
 	align-items: center;
 	justify-content: center;
 }


.one_click_hair{
	background-color: #1a1a1a;
}

 /*one click damage hair*/
@media (min-width: 768px){
	.one_click_hair{
 	background-image: url('../images/hair_damage.jpg');
 	background-size: cover;
 	padding:50px 0;
 	background-color: transparent;
 }

}
 
 .one_click_hair .hair_offer_price{
 	color: #e7b739;
 	padding-top: 0;
 	font-size: 53px;
 }


 .one_click_hair .stylish_font{
 	color: #e7b739;
	font-weight:bold;
 }

 .before_after{
 	padding: 80px 0;
 }

 .before_after .owl-carousel img{
 	width: 100%;

 }

  .before_after .main_heading{
  	margin-bottom: 40px;
  }

 .before_after_info{
 	padding-left: 80px;
 	font-family: 'Trirong', serif;
 }

 .before_after_info h4{
 	margin-bottom: 20px;
 }

  .before_after_info p{
  	margin-bottom: 30px;
  }

  .before_after .owl-nav{
  	position: absolute;
  	top: -110px;
  	right: 0;
  }

  .before_after .owl-nav button{
  	width: 44px;
  	height: 44px;
  	display: -webkit-flex;
  	display: -moz-flex;
  	display: -ms-flex;
  	display: -o-flex;
  	display: flex;
  	-ms-align-items: center;
  	margin-left: 10px;
  	align-items: center;
  	justify-content: center;
  	background-color: #f1efea !important;
  	display: inline-block;
  }

 /*restoration*/

 .restoration{
 	padding: 20px 0px;
 	background-image: url('../images/hair_restoration.jpg');
 	background-size: cover;
 }

 .mas_accordian_label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.mas_accordian_label span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1efea;
    color: #000;

}

.active_label span{
	background-color: #1a1a1a;
	color: #fff;
}


.mas_accordian_box:not(:last-child){
	margin-bottom: 20px;
}

.mas_accordian_label {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #fff;
}

.mas_accordian_label h3 {
    font-size: 18px;
    font-weight: 600;
    margin-left: 20px;
    margin-bottom: 0;
}

.mas_accordian_label{
	padding: 10px;
}

.mas_accordian_content{
	padding: 20px;
	display: none;
}

.accordian_active{
	display: block;
}

.mas_accordian_content p{
	color: #989083;
	font-family: 'Trirong', serif;
	line-height: 22px;
	font-weight: 500;
	margin-bottom: 0;
}

.testimonial{
	margin-top: 20px;
}

.testimonial_box_info{
	padding: 25px;
	background-color: #3a3a3a;
	font-family: 'Trirong', serif;
}

.testimonial_box_info p {
    font-size: 24px;
    color: #fff;
    line-height: 40px;
    text-align: center;
}

.testimonial_box_info cite{
	color: #e7b739;
}

.owl-dots{
	text-align: center;
}


.testimonial .owl-dot {
    margin-top: 15px;
    width: 70px;
    height: 70px;
    border: 1px solid #ddd !important;
    position: relative;    
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 50px;
    opacity: .7;
}

.testimonial .owl-dot:focus{
	outline: 0;
}

.testimonial .owl-dot.active{
	opacity: 1;
}

.testimonial .owl-dot:nth-child(1){
	background-image: url('../images/t1.jpg');
}

.testimonial .owl-dot:nth-child(2){
	background-image: url('../images/t2.jpg');
}

.testimonial .owl-dot:nth-child(3){
	background-image: url('../images/t3.jpg');
}

.testimonial .owl-dot.active:before{
	content: " ";
	width: 15px;
	height: 15px;
	background-color: #3a3a3a;
	position: absolute;
	top: -59px;
	left: 0;
	right: 0;
	margin: auto;
	transform: rotate(45deg);
}

/*notice hari fall call back*/

.call_back{
	padding: 120px 0;
	background-color: #555;
}

.call_back .heading{
	color: #fff;
	margin-bottom: 0;
}

.call_back_form{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;

}

.call_back_form .call_back_form_fields{
	width: 100%;
	max-width: 47%;
	margin-bottom: 20px;
}

.call_back_form .call_back_form_fields input{
	width: 100%;
	height: 55px;
	background-color: #f7f5f2;
	border: 1px solid #f7f5f2;
	font-family: 'Trirong', serif;
	font-size: 14px;
	color: #989692;
	text-indent: 10px;
}

.call_back_form .call_back_form_fields  select{
	width: 100%;
	height: 55px;
	background-color: #f7f5f2;
	border: 1px solid #f7f5f2;
	font-family: 'Trirong', serif;
	font-size: 14px;
	color: #989692;
	text-indent: 10px;
}

.call_back_form input[type="submit"]{
	background-color: #e7b739;
	color: #fff;
	text-indent: 0;
	text-transform: capitalize;
	border: none;
}

.call_back_form_fields_term{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	color: #c7c3bc;
}

.call_back_form_fields_term input{
	margin-right: 10px;
	font-family: 'Trirong', serif;
}

/*notice_hair_lose*/
.notice_hair_lose{
	background-color: #f7f5f2;
}

@media (min-width: 768px) {
	.notice_hair_lose{
		background-color: #dcdcda;
		background-image: url("../images/promo-bg234.jpg");
 	
 	}
}


@media (min-width: 768px) {
		.notice_hair_lose img{
 		display: none;
 	}
}
.notice_hari_lose .hair_offer_price{
	font-size: 44px;
}

.notice_hair_lose .hair_offer_price{
	padding-top: 0;
}

/*contact section*/

.contact{
	padding: 80px 0 80px;
}

.contact .main_heading{
	margin-bottom: 30px;
}

.contact_info {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	font-family: 'Trirong', serif;
}

.contact_info .contact_info_box{
	width: 100%;
	max-width: 45%;
	margin-bottom: 20px;
}

.contact_info_box a{
	color: #333;
}

.contact_info .contact_info_box h4{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	font-size: 18px;

}

.contact_info .contact_info_box h4 span{
	width: 32px;
	height: 32px;
	border: 2px solid #e7b739;
	color: #e7b739;
	border-radius: 50%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}

/* blog card content */

.blog .main_heading{
	margin-bottom: 30px;
}

.blog_card_thumbnail{
	margin-bottom: 20px;
}

.blog_card_content h3 a{
	font-size: 22px;
    line-height: 30px;
    display: inline-block;
    margin-bottom: 10px;
    color: #50493d;
    transition: all .5s ease;
}

.blog_card_content h3 a:hover{
	color: #e7b739;
}

.blog_card_content{
	font-family: 'Trirong', serif;
}

.blog_card_content time{
	color:#e7b739;
	position: relative;
	padding-right: 10px;
	margin-right: 10px;
}

.blog_card_content time:after{
	content: " ";
	width: 1px;
	height: 14px;
	position: absolute;
	top: 5px;
	right: -1px;
	background-color: #989083;
}

.blog_card_content time span{
	width: 24px;
	min-width: 24px;
	height: 24px;
	display: -webkit-inline-flex;
	display: -moz-inline-flex;
	display: -ms-inline-flex;
	display: -o-inline-flex;
	display: inline-flex;
	border: 2px solid #e7b739;
	color: #e7b739;
	font-size: 14px;
	border-radius: 50%;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	margin-right: 5px;
}

.blog_card_content .entry_meta > span{
	color: #333;
}

.blog_card_content .entry_meta{
	margin-bottom: 20px;
}

/*inner banner */

.inner_banner{
	padding: 60px 0;
	background-image: url('../images/inner-banner.jpg');
	background-size: cover;
	position: relative;
	z-index: 1;
	background-position: center;
}


.inner_banner h2{
	font-size: 28px;
	color: #fff;
	margin: 0;
	text-transform: capitalize;
}

.default_pages{
	margin-top: 30px;
	margin-bottom: 10px;
}

.default_pages img{
	margin-bottom: 30px;
}

.default_pages p{
	margin-bottom: 20px;
}

.post_thumbnail .entry_meta {
	font-weight: 600;
    font-family: 'Trirong', serif;
    margin-top: -7px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    padding-bottom: 20px;
}

.post_thumbnail .entry_meta time {
	color: #e8b936;
	position: relative;
	padding-right: 10px;
	margin-right: 10px;
}

.post_thumbnail .entry_meta time:after{
	content: " ";
	position: absolute;
	top: 7px;
	left: 100%;
	width: 1px;
	height: 12px;
	background-color: #989083;
}


.footer{
	background-color: #555;
}

.footer ul{
	margin: 0;
    padding-left: 0;
    list-style-type: none;
}

.footer ul li{
	position: relative;
	font-size: 13px;
	line-height: 22px;
	text-transform: capitalize;
}

.footer ul li:before{
    content: ' ';
    display: inline-block;
    width: 3px;
    height: 3px;
    position: static;
    margin-right: 0.7em;
    background-color: #e7b739;
    vertical-align: middle;

}

.footer ul li a{
	color: #989083;
}

.footer h4 {
    font-size: 20px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.footer p {
    color:#989083;
}
.quick_detail {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}

.quick_detail a{
	color: #989083;
	margin-bottom: 10px;
}

.quick_detail a i{
	color: #e8b936;
	width: 15px;
	margin-right: 5px;
}
.footer_social a{
 	width: 27px;
 	height: 27px;
 	border-radius: 50%;
 	margin-right: 10px;
 	display: inline-flex;
 	align-content: center;
 	justify-content: center;
 	border: 2px solid #e8b936;
 	color:#e8b936;
 	align-items: center;
 	transition: all .5s ease;
 }

.copyright{
	background-color: #444;
	padding: 15px 0;
}

.copyright p{
	margin-bottom: 0;
	color:#989083;
}

.carousel .carousel-indicators{
	margin-left: 100px;
	justify-content: flex-start;
}

.carousel .carousel-indicators li{
	margin-left: 0;
	margin-right: 0;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: #fff;
	opacity: 1;
	margin-right: 10px;
}
.carousel .carousel-indicators li.active{
	background-color: #e7b739;
}

.carousel-control-prev, .carousel-control-next{
	display: none;
}

.carousel .hair_offer_info a{
		display:none;
	}

	.hair-loss-prob .content-wrapper{
		background-color: #f1efea;
	}

	.hair-loss-prob .content-wrapper [class*="col"]{
		padding: 0px;
	}

	.hair-loss-prob .content-wrapper .main-content{
		padding: 50px 15px;
	}
	
	@media (min-width: 768px) {
	.hair-loss-prob .content-wrapper .main-content{
		padding: 50px;
	}
}

	.hair-loss-prob .content-wrapper .main-content a{
		margin-top: 20px;
	}

	.about_one_click{
		/*background-image: url("../images/b1.jpg");*/
	}

	.about_one_click .hair_offer_price{
		color: #e7b739;
	}