@charset "utf-8";
/* CSS Document */

/*--------RESET CSS--------*/
body {
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	padding:0;
	background:#fff;
	color:#000000;
	text-align:center;
	font-family: 'Lexend Deca';
	font-weight:400;
	}
div, ul, h1, h2, h3, h4, h5, li, p, img, form, input, textarea {margin: 0;padding: 0;}
header, section, footer, aside, nav, main, article, figure {display: block;}
table, tr, td {border: 0;}
a {outline: none;color: inherit;text-decoration: none;}
img {border: none; height:auto;}
li {list-style: none;}
* {box-sizing: border-box;}
.img-full {max-width: 100%;}
.clearall {
	clear: both;
	font-size: 1px;
	line-height: 1px;
	height: 1px;
	}
:root{
	--black:#000000;
	--white:#ffffff;
	--brown:#bfa16a;
	--red:#971a2f;
	--light-blue:#f3f6fa;
	--dark-blue:#131e2e;
	--light-red:#c71f3b;
	--yellow:#efbd72;
	--border-color:#d7d7d7;
	--dark-grey:#0e0e0e;
	--light-grey:#f6f6f6;
	--green:#61bc00;
	--grey:#656565;
	}
/*--------FONTS--------*/


@font-face {
    font-family: 'Gentium Basic';
    src: url('GentiumBasic-Italic.woff2') format('woff2'),
        url('GentiumBasic-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
	}

@font-face {
	font-family: 'Lexend Deca';
	src: url('LexendDeca-Black.woff2') format('woff2'),
	url('LexendDeca-Black.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
	}
@font-face {
	font-family: 'Lexend Deca';
	src: url('LexendDeca-Medium.woff2') format('woff2'),
	url('LexendDeca-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	}
@font-face {
	font-family: 'Lexend Deca';
	src: url('LexendDeca-Bold.woff2') format('woff2'),
	url('LexendDeca-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
	}
@font-face {
	font-family: 'Lexend Deca';
	src: url('LexendDeca-Light.woff2') format('woff2'),
	url('LexendDeca-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
	}
@font-face {
	font-family: 'Lexend Deca';
	src: url('LexendDeca-Regular.woff2') format('woff2'),
	url('LexendDeca-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
	}
@font-face {
	font-family: 'Lexend Deca';
	src: url('LexendDeca-SemiBold.woff2') format('woff2'),
	url('LexendDeca-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
	}
@font-face {
	font-family: 'Lexend Deca';
	src: url('LexendDeca-ExtraBold.woff2') format('woff2'),
	url('LexendDeca-ExtraBold.woff') format('woff');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
	}

/*--------MAIN CSS START--------*/
.container {
	width:1170px;
	margin:0 auto;
	padding:0;
	position:relative;
	}
/*--------TOP-STRIP--------*/
.topStrip{
	background:#0e0e0e;
	float:left;
	width:100%;
	padding:12px 0;
	}
.top_caption{
	float:left;
	width:100%;
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content:space-between;
	}
.top_reviews{
	float:left;
	width:auto;
	font-size:14px;
	line-height:20px;
	font-weight:300;
	letter-spacing:0.5px;
	color:var(--white);
	}
.top_reviews img{
	display:inline-block;
	vertical-align:middle;
	margin:-3px 10px 0 0;
	}
.top_contact{
	float:left;
	width:auto;
	font-size:20px;
	line-height:30px;
	font-weight:900;
	letter-spacing:0.5px;
	color:var(--brown);
	}
.top_contact img{
	display:inline-block;
	vertical-align:middle;
	margin:-3px 10px 0 0;
	}

/*--------TOP-FIX-BAR--------*/
.topFixBar{
	float: left;
	width: 100%;
	margin-bottom:80px;
	}
.header{
	float:left;
	width:100%;
	background:#ffffff;
	height:80px;
	padding:15px 0;
	margin-top:-80px;
	top:80px;
	position:relative;
	-webkit-box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	}
.fixed-nav .header{
	position: fixed;
	top:0;
	z-index: 11;
	margin-top:0;
	-webkit-transition: margin .3s ease-out;
	transition: margin .3s ease-out;
	-webkit-box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	}				
.logo{
	float:left;
	margin-top:10px;
	}
ul.topMenu{
	display:inline-block;
	vertical-align:top;
	margin:0 0 0 0;
	}
ul.topMenu li{
	float:left;
	padding:15px 20px;
	position:relative;
	color:#000000;
	min-width: 170px;
    text-align: left;
	}
ul.topMenu li a{
	font-size:17px;
	line-height:22px;
	letter-spacing:0.5px;
	}
ul.topMenu li:hover{
	background: var(--brown);
    color: var(--white);
	}
ul.topMenu li:hover a img{filter: brightness(99);}
a.navBarBtn{
    float: right;
	width: 250px;
    height: 50px;
	background:var(--red);
    color: var(--white);
    font-size:20px;
    text-align: center;
    line-height:46px;
	font-weight:800;
	letter-spacing:0.5px;
	}
a.navBarBtn:hover{background:var(--light-red);}


ul.topMenu li .dropMenu{
	position:absolute;
	opacity: 0;
	visibility: hidden;
	display: none;
	padding:0;
	transform: translateY(50px);
	-webkit-transform: translateY(50px);
	-ms-transform: translateY(50px);
	transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	background: var(--brown);
	top:32px;
	left:0;
	overflow:hidden;
	z-index:99;
	}
.dropMenu ul{
	float:left;
	width:100%;
	}
.dropMenu ul li{
	float:left;
	width:100%;
	border:none;
	text-align:left;
	padding:0 !important;
	}
.dropMenu ul li a{
	float:left;
	width:100%;
	font-size:16px;
	line-height:18px;
	text-align:left;
	padding:14px 20px;
	border-top: 1px solid #dcba7b;
	text-align:left;
	color:#fff;
	font-weight:500;
	text-transform:capitalize;
	letter-spacing:0.5px;
	}
.dropMenu ul li:hover{
	background: var(--brown);
    color: var(--white);
	}
ul.topMenu li:hover .dropMenu{
	opacity: 1;
	visibility: visible;
	display:block;
	transform: translateY(18px);
	-webkit-transform: translateY(18px);
	-ms-transform: translateY(18px);
	}
	
/*--------HAMBURGER MENU--------*/
.mobMenuIcon{
    cursor: pointer;
    position:absolute;
    right: 0px;
    top: 14px;
	z-index:16;
	height:30px;
	}
.mobMenuIcon button{
	outline: none;
    -webkit-appearance: none;
	background: none;
	padding:0;
    cursor: pointer;
	border: none;
	}
.mobMenuIcon span{
	color:#000;
	display:inline-block;
	vertical-align:top;
	font-size:16px;
	font-weight:300;
	margin-top:4px;
	margin-right:5px;
	}
.bar1, .bar2, .bar3 {
	width: 25px;
	height: 3px;
	background-color: #000;
	transition: 0.4s;
	-webkit-border-radius: 2px 2px 2px 2px;
	border-radius: 2px 2px 2px 2px;
	}
.bar2{margin: 4px 0;}
.dl-active .bar1 {
	-webkit-transform: rotate(-45deg) translate(-5px, 5px);
	transform: rotate(-45deg) translate(-5px, 5px);
	background:#000;
	}
.dl-active .bar2 {opacity: 0;}
.dl-active .bar3 {
	-webkit-transform: rotate(45deg) translate(-5px, -5px);
	transform: rotate(45deg) translate(-5px, -5px);
	background:#000;
	}	
.mobilemenu{
	left:0;
	position:fixed;
	top:102px;
	background:rgba(255,255,255,1);
	z-index:10;
	right:0;
	bottom:0;
	overflow:scroll;
	display:none;
	border-top: 1px solid #dddddd;
	}
.mobimenu-top{ top:60px;}	
.mobilemenu li{
	float:left;
	width:100%;
	text-align:left;
	border-bottom:1px solid #dddddd;
	}
.mobilemenu li a{
	float:left;
	width:100%;
	padding:15px 20px;
	font-size:17px;
	line-height:22px;
	letter-spacing:0.5px;
	color:#000;
	}	
.mobilemenu li a:hover{color:#000;}


.menuOpen{
	position:relative;
	}
.menuOpen:after{
	content:'+';
	position:absolute;
	right:20px;
	top:12px;
	color:#000;
	font-size:22px;
	line-height:22px;
	}
.menuOpen.mnutog:after{
	content:'-';
	}
ul.dropdown-mobile{
	float:left;
	width:100%;
	display:none;
	padding:0 25px 10px;
	}
ul.dropdown-mobile li{ 
	border:none;
	}
ul.dropdown-mobile li a{
	border:none;
	font-size:15px;
	padding:10px 32px;
	color:#000;
	position:relative;
	}
ul.dropdown-mobile li a:before{
	position:absolute;
	left:15px;
	top:18px;
	background:#333;
	width:6px;
	height:6px;
	border-radius:50%;
	content:"";
	}

/*------BANNER CSS------*/
.banner {
    float:left;
    width:100%;
	padding:60px 0 80px;
	background: url(../images/banner.jpg) no-repeat center top;
	background-size:cover;
	}
.banner_right{
	float:right;
	width:60%;
	text-align:left;
	}
.banner_text1{
	float:left;
	width:100%;
	font-family: 'Gentium Basic';
	font-size:26px;
	line-height:30px;
	font-weight:400;
	font-style:italic;
	color:var(--brown);
	letter-spacing:0.5px;
	}
.banner_head{
	float:left;
	width:100%;
	margin-top:25px;
	font-size:58px;
	line-height:70px;
	font-weight:700;
	color:var(--white);
	padding-bottom:30px;
	position:relative;
	}
.banner_head span{
	color:var(--brown);
	}
.short_border{
	position:absolute;
	bottom:0;
	left:50%;
	height:5px;
	width:60px;
	transform:translateX(-50%);
	background:var(--brown);
	}
.banner_head .short_border{
	left:0;
	transform:none;
	}
.banner_text2{
	float:left;
	width:100%;
	margin-top:30px;
	font-size:18px;
	line-height:26px;
	font-weight:300;
	letter-spacing:0.5px;
	color:var(--white);
	}
.button_box{
	display:inline-block;
	vertical-align:top;
	width:100%;
	max-width:350px;
	margin-top:40px;
	text-align: center;
	}
.common_button{
	float:left;
	width:100%;
	height:65px;
	background:var(--red);
	color:var(--white);
	font-size:24px;
	line-height:63px;
	font-weight:900;
	letter-spacing:0.5px;
	text-align:center;
	text-transform:uppercase;
	}

.common_button:hover{background:var(--light-red);}

/*----SECTION-1----*/
.sec1{
	float:left;
	width:100%;
	padding:60px 0 60px;
	background:var(--white);
	position:relative;
	}
.head_top_text{
	float:left;
	width:100%;
	font-family: 'Gentium Basic';
	font-size:30px;
	line-height:36px;
	font-weight:400;
	font-style:italic;
	color:var(--brown);
	letter-spacing:0.5px;
	padding-bottom:20px;
	position:relative;
	}
.common_head{
	float:left;
	width:100%;
	margin-top:20px;
	font-size:50px;
	line-height:56px;
	font-weight:700;
	color:var(--black);
	}
.common_head span{ color:var(--brown);}
.s1_mid_box{
	float:left;
	width:100%;
	margin-top:40px;
	padding:16px 20px;
	background:url(../images/s1-bg.jpg) no-repeat center bottom;
	background-size:cover;
	position:relative;
	overflow:hidden;
	}
.s1_mid_box:before{
	position:absolute;
	left:50%;
	transform:translateX(-50%);
	-webkit-transform:translateX(-50%);
	bottom:0;
	width:505px;
	height:95px;
	background:url(../images/s1-box-btm-img.png) no-repeat center center;
	background-size:100%;
	content:"";
	}
.s1_box_inner{
	float:left;
	width:100%;
	padding:50px 100px 180px;
	border:1px solid var(--brown);
	position:relative;
	}
.s1_box_text1{
	float:left;
	width:100%;
	font-family: 'Gentium Basic';
	font-size:36px;
	line-height:50px;
	font-weight:400;
	color:var(--white);
	letter-spacing:0.5px;
	}
.s1_bottom_list{
	float:left;
	width:100%;
	padding:0 40px;
	margin-top:45px;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	}
.s1_bottom_list li{
	display:inline-block;
	vertical-align:top;
	position:relative;
	width:25%;
	padding:0 55px;
	text-align:left;
	}
.s1_bottom_list li:after{
	content:'';
	position:absolute;
	top:20px;
	bottom:0;
	width:1px;
	right:0;
	background:#c2c2c2;
	}
.s1_bottom_list li:last-child:after{ display:none;}
.s1_bottom_list li span{
	float:left;
	width:100%;
	font-size:50px;
	line-height:56px;
	font-weight:700;
	color:var(--brown);
	}
.s1_bottom_list li p{
	float:left;
	width:100%;
	font-size:20px;
	line-height:26px;
	font-weight:500;
	color:var(--black);
	margin-top:15px;
	}
.button_contact{
	float:left;
	width:100%;
	font-size:20px;
	line-height:26px;
	font-weight:500;
	color:var(--black);
	margin-top:8px;
	}
.button_contact img{
	display:inline-block;
	vertical-align:middle;
	margin:-3px 10px 0 0;
	width:24px;
	}

/*----SECTION-2----*/
.sec2{
	float:left;
	width:100%;
	padding:60px 0 60px;
	background:var(--light-blue);
	position:relative;
	}
.s2_mid{
	float:left;
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	}
.s2_mid_col{
	width:31%;
    margin: 50px 0 30px;
	position:relative;
	}
.s2_col_img{
	float:left;
	width:100%;
	}
.s2_col_text_box{
	position:absolute;
	bottom:-30px;
	width:90%;
	padding:0 25px;
	left:50%;
	transform:translateX(-50%);
	background:var(--light-blue);
	}
.s2_col_icon{
	display:inline-block;
	vertical-align:top;
	margin-top:-20px;
	}
.s2_col_head{
	float:left;
	width:100%;
	margin-top:15px;
	font-size:26px;
	line-height:30px;
	font-weight:700;
	color:var(--dark-blue);
	letter-spacing:0.3px;
	position:relative;
	padding-bottom:20px;
	}
.s2_col_text_box .common_text{ margin-top:15px;}
.s2_col_link{
	float:left;
	width:100%;
	font-size:16px;
	line-height:20px;
	font-weight:400;
	color:var(--black);
	margin-top:20px;
	}
.s2_col_link img{
	display:inline-block;
	vertical-align:middle;
	margin:-3px 0 0 10px;
	}

/*----SECTION-3----*/
.sec3{
	float:left;
	width:100%;
	padding:60px 0 60px;
	background:var(--white);
	position:relative;
	}
.s3_left{
	float:left;
	width:42%;
	text-align:left;
	}
.s3_left .short_border {
    left: 0;
    transform: none;
	}
.common_text{
	float:left;
	width:100%;
	font-size:17px;
	line-height:25px;
	font-weight:300;
	letter-spacing:0.5px;
	color:var(--black);
	margin-top:30px;
	}

.s3_right{
	float:right;
	width:52%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	}
.s3_right_box{
	width:47%;
	margin-top:30px;
	padding:25px 20px 20px;
	border:2px solid var(--dark-blue);
	position:relative;
	text-align:left;
	}
.s3_right_box:first-child, .s3_right_box:nth-child(2){ margin-top:0;}
.s3_box_head{
	float:left;
	width:100%;
	font-size:26px;
	line-height:32px;
	font-weight:700;
	color:var(--black);
	padding:0 80px 25px 0;
	position:relative;
	}
.s3_box_head .short_border{
	left:0;
	transform:none;
	}
.s3_box_icon{
	position:absolute;
	top:25px;
	right:20px;
	}
.s3_right_box .common_text{ margin-top:20px;}

/*----SECTION-4----*/
.sec4{
	float:left;
	width:100%;
	padding:60px 0 60px;
	background:var(--light-blue);
	position:relative;
	}
.s4_mid{
	float:left;
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	}
.s4_mid_col{
	width:22%;
	position:relative;
	margin-top:45px;
	}
.s4_mid_col:after{
	content:'';
	position:absolute;
	top:17px;
	right:-120px;
	left:185px;
	height:3px;
	background:url(../images/s4-step-dot.png) repeat-x;
	}
.s4_mid_col:last-child:after{ display:none;}
.s4_col_step{
	display:inline-block;
	vertical-align:top;
	width:40px;
	height:40px;
	border:3px solid var(--black);
	border-radius:50%;
	font-size:24px;
	line-height:32px;
	font-weight:700;
	}
.s4_col_icon{
	display:block;
	margin:30px auto 0;
	}
.s4_col_head{
	float:left;
	width:100%;
	margin-top:20px;
	padding-bottom:25px;
	font-size:26px;
	line-height:30px;
	font-weight:700;
	color:var(--dark-blue);
	position:relative;
	}
.s4_mid_col .common_text{ margin-top:20px;}

/*----SECTION-5----*/
.sec5{
	float:left;
	width:100%;
	padding:60px 0 60px;
	background:var(--white);
	position:relative;
	}
.s5_slider{
	float:left;
	width:100%;
	margin-top:45px;
	}
.test_box{
	float:left;
	width:30%;
	padding:20px 30px 15px;
	border:1px solid var(--brown);
	text-align:left;
	}
.test_quote{
	float:left;
	}
.test_text{
	float:left;
	width:100%;
	font-size:17px;
	line-height:26px;
	font-weight:300;
	color:var(--black);
	letter-spacing:0.5px;
	font-style:italic;
	margin-top:20px;
	}
.test_name{
	float:left;
	font-size:20px;
	line-height:22px;
	font-weight:400;
	color:var(--black);
	letter-spacing:0.3px;
	margin-top:20px;
	}
.test_name span{
	font-size:14px;
	}
.test_star{
	float:right;
	margin-top:50px;
	}




/*----FOOTER----*/
.footer{
	float:left;
	width:100%;
	padding:50px 0 60px;
	background:#17171d;
	position:relative;
	}
.links_box{
	float:left;
	width:100%;
	text-align:left;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	}
.footer_logo_sec{
	width:38%;
	padding-right:70px;
	}
.lead_sec{
	width:22%;
	}
.footer_logo{
	float:left;
	}
.footer_text{
	float:left;
	width:100%;
	margin-top:25px;
	font-size:16px;
	line-height:24px;
	font-weight:300;
	color:var(--white);
	letter-spacing:0.5px;
	}

.footer_link_head{
	float:left;
	width:100%;
	margin-top:20px;
	font-size:20px;
	line-height:26px;
	font-weight:700;
	letter-spacing:0.3px;
	color:var(--brown);
	}
.footer_links{
	float:left;
	width:100%;
	margin-top:10px;
	}
.footer_links li{
	float:left;
	width:100%;
	margin-top:15px;
	}
.footer_links li a{
	float:left;
	width:100%;
	font-size:16px;
	line-height:16px;
	font-weight:300;
	letter-spacing:0.3px;
	color:var(--white);
	}
.quick_sec{
	width:17%;
	}
.support_sec{
	width:23%
	}
.support_box{
	float:left;
	width:100%;
	}
.support_link{
	float:left;
	width:100%;
	font-size:16px;
	line-height:20px;
	font-weight:300;
	letter-spacing:0.3px;
	color:var(--white);
	margin-top:10px;
	}
.support_link:first-child{ margin-top:23px;}
.support_link span{
	display:inline-block;
	vertical-align:middle;
	width:100px;
	}
.support_link span img{
	display:inline-block;
	vertical-align:middle;
	margin:-2px 10px 0 0;
	}



/*--------COPYRIGHT--------*/
.copyright{
	float:left;
	width:100%;
	padding:30px 0;
	background:var(--white);
	text-align:center;
	}
.copyright_text{
	float:left;
	width:100%;
	font-size:16px;
	line-height:24px;
	font-weight:400;
	letter-spacing:0.3px;
	color:var(--black);
	}

/*========LISTING-PAGE========*/

/*--------BANNER--------*/
.listing_banner{
	float:left;
	width:100%;
	position:relative;
	padding:60px 0 70px;
	background:url(../images/listing-banner.jpg) no-repeat center center;
	background-size:cover;
	}
.listing_banner_left{
	float:left;
	width:58%;
	text-align:left;
	}

/*------SECTION-1------*/
.listing_sec1{
	float:left;
	width:100%;
	background:var(--white);
	padding:50px 0 80px;
	}
.listing_s1_mid{
	float:left;
	width:100%;
	background:var(--white);
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	}
.listing_s1_col{
	width:31.5%;
	margin:30px 2.75% 0 0;
	background:var(--dark-blue);
	}
.listing_s1_col:nth-child(3n){ margin-right:0;}
.listing_col_img{
	float:left;
	width:100%;
	}
.listing_s1_textbox{
	float:left;
	width:100%;
	position:relative;
	padding:30px 20px 30px;
	text-align:left;
	}
.listing_s1_icon{
	position: absolute;
    top: -28px;
    left: 20px;
	width:55px;
	height:55px;
	border-radius:50%;
	padding:9px;
	background:var(--dark-blue);
	display:flex;
	align-items:center;
	justify-content:center;
	}
.listing_s1_icon img{
	display:block;
	margin:0 auto;
	max-width:100%;
	}
.listing_s1_head{
	float:left;
	width:100%;
	font-size:26px;
	line-height:30px;
	font-weight:700;
	color:var(--yellow);
	letter-spacing:0.5px;
	}
.listing_s1_text{
	float:left;
	width:100%;
	font-size:16px;
	line-height:24px;
	font-weight:300;
	color:var(--white);
	letter-spacing:0.5px;
	margin-top:15px;
	}
.listing_s1_link{
	display:inline-block;
	vertical-align:middle;
	font-size:18px;
	line-height:20px;
	font-weight:300;
	letter-spacing:0.5px;
	text-decoration:underline;
	color:var(--white);
	margin-top:20px;
	}
.listing_s1_link img{
	display:inline-block;
	vertical-align:middle;
	margin:0 0 0 10px;
	}


/*========HAIR-STRAIGHTNER========*/
/*------BANNER-SEC-------*/
.hair_banner{
	float:left;
	width:100%;
	position:relative;
	padding:70px 0 70px;
	background:url(../images/hair-banner.jpg) no-repeat center center;
	background-size:cover;
	}
.hair_banner_left{
	float:left;
	width:58%;
	text-align:left;
	}
.hair_banner .banner_head{
	font-size:50px;
	line-height:64px;
	margin-top:0;
	}
.hair_banner .banner_head span{
	color:var(--yellow);
	}
.hair_banner_list{
	float:left;
	width:100%;
	margin-top:25px;
	}
.hair_banner_list li{
	float:left;
	width:100%;
	margin-top:12px;
	font-size:20px;
	line-height:26px;
	font-weight:400;
	color:var(--white);
	letter-spacing:0.5px;
	padding-left:35px;
	background:url(../images/hair-banner-list-check.png) no-repeat 0px 7px; 
	}
.hair_banner .common_button{ font-size:21px;}
.hair_banner .button_contact{ color:var(--white);}
.hair_banner_right{
	float:right;
	width:35%;
	}
.hair_banner_img{
	float:left;
	width:100%;
	}
/*--------SECTION-1--------*/
.hair_sec1{
	float:left;
	width:100%;
	padding:20px 0 60px;
	background:var(--white);
	position:relative;
	}
.hair_s1_left{
	float:left;
	width:60%;
	text-align:left;
	}
.hair_common_head{
	float:left;
	width:100%;
	font-size:30px;
	line-height:40px;
	font-weight:700;
	color:var(--black);
	padding-bottom:20px;
	margin-top:40px;
	border-bottom:1px solid var(--border-color);
	}
.hair_common_img{
	float:left;
	width:100%;
	margin-top:30px;
	}
.hair_subhead{
	float:left;
	width:100%;
	font-size:19px;
	line-height:27px;
	font-weight:700;
	color:var(--black);
	margin-top:30px;
	}
.hair_injuries_list{
	float:left;
	width:100%;
	margin-top:15px;
	}
.by_three.hair_injuries_list{ margin-top:10px;}
.hair_injuries_list li{
	float:left;
	width:100%;
	padding-left:20px;
	position:relative;
	font-size:17px;
	line-height:25px;
	font-weight:500;
	margin-top:15px;
	}
.by_three.hair_injuries_list li{ width:33.33%;}
.hair_injuries_list li:before{
	content:'';
	position:absolute;
	top:10px;
	left:0;
	width:8px;
	height:8px;
	border-radius:50%;
	background:var(--brown);
	}
.hair_feature_list{
	float:left;
	width:100%;
	margin-top:10px;
	}
.hair_feature_list li{
	float:left;
	width:100%;
	margin-top:20px;
	padding-left:55px;
	position:relative;
	}
.hair_feature_list li img{
	position:absolute;
	top:8px;
	left:0;
	width:40px;
	}
.hair_feature_list li span{
	float:left;
	width:100%;
	font-size:22px;
	line-height:30px;
	font-weight:600;
	color:var(--black);
	}
.hair_feature_list li p.common_text{ margin-top:0;}
.hair_faq_container{
	float:left;
	width:100%;
	margin:10px 0 0 0;
	}	
.up-slide-dwn{
	float:left;
	width:100%;
	background:#fff;
	margin-top:20px;
	-webkit-box-shadow:0 2px 10px 1px rgba(0,0,0,0.1);
	box-shadow:0 2px 10px 1px rgba(0,0,0,0.1);
	}
.accordion{
	float:left;
	width:100%;
	text-align:left;
	background:url(../images/close.png) no-repeat 98.5% center;
	padding:20px 45px 20px 20px;
	font-size:19px;
	line-height:25px;
	font-weight:400;
	color:var(--black);
	letter-spacing:0.5px;
	cursor:pointer;
	position:relative;
	}
.accordion.last{border-bottom:none;}
.acdn-heading.accordion-open{
	background:url(../images/open.png) no-repeat 98.5% center;
	border-bottom:1px solid #e1e1e1;
	}
.acdn-content{
	float:left;
	width:100%;
	text-align:left;
	padding:20px 20px 15px 20px;
	}
.up-slide-dwn .common_text{ margin-top:0;}
.hair_s1_right{
	float:right;
	width:33%;
	}
.hair_form{
	float:left;
	width:100%;
	border:1px solid var(--dark-blue);
	margin-top:50px;
	background:var(--light-grey);
	}
.hair_form_top{
	float:left;
	width:100%;
	background:var(--dark-grey);
	padding:15px 10px;
	text-align:center;
	position:relative;
	}
.hair_form_top p{
	float:left;
	width:100%;
	font-size:25px;
	line-height:35px;
	font-weight:700;
	color:var(--white);
	}
.hair_form_top p span{ color:var(--yellow);}
.hair_form_top:after{
	content:'';
	position:absolute;
	bottom:-13px;
	left:50%;
	transform:translateX(-50%);
	border-top:13px solid var(--dark-grey);
	border-left:13px solid transparent;
	border-right:13px solid transparent;
	}
.hair_form_bottom{
	float:left;
	width:100%;
	padding:10px 18px 25px;
	}
.hair_form_bottom_head{
	float:left;
	width:100%;
	margin-top:20px;
	font-size:21px;
	line-height:27px;
	font-weight:600;
	color:var(--black);
	}
.agents{
	float:left;
	width:100%;
	margin-top:15px;
	font-size:17px;
	line-height:25px;
	font-weight:300;
	letter-spacing:0.5px;
	}
.online{
	display:inline-block;
	vertical-align:middle;
	margin:-1px 10px 0 0;
	width:9px;
	height:9px;
	border-radius:50%;
	background:var(--green);
	animation: fade 1s ease-in-out infinite;
	}
@keyframes fade{
	0%{opacity:100%;}
	50%{opacity:30%;}
	70%{opacity:100%;}
	100%{opacity:100%;}
	}
.hair_form_btn{
	float:left;
	width:100%;
	height:60px;
	margin-top:10px;
	background:var(--red);
	font-size:22px;
	line-height:58px;
	font-weight:600;
	color:var(--white);
	}
.hair_form_btn img{
	display:inline-block;
	vertical-align:middle;
	margin:-3px 15px 0 0;
	filter: brightness(0) invert(1);
	}
.hair_form_btn:hover{
	background:var(--light-red);
	}
.hair_or{
	float:left;
	width:100%;
	margin-top:25px;
	position:relative;
	}
.hair_or span{
	display:inline-block;
	vertical-align:middle;
	background:var(--light-grey);
	padding:0 10px;
	position:relative;
	font-size:18px;
	line-height:18px;
	font-weight:500;
	text-transform:uppercase;
	}
.hair_or:before{
	content:'';
	position:absolute;
	top:12px;
	left:0;
	right:0;
	height:1px;
	background:var(--border-color);
	}
.hair_form_bottom form{
	float:left;
	width:100%;
	margin-top:5px;
	}
.hair_form_input{
	float:left;
	width:100%;
	height:50px;
	margin-top:10px;
	border:1px solid var(--border-color);
	border-radius:4px;
	overflow:hidden;
	}
.hair_form_input input{
	float:left;
	width:100%;
	height:100%;
	border:none;
	outline:none;
	-webkit-appearance:none;
	padding:0 15px;
	font-family: 'Lexend Deca';
	font-size:16px;
	line-height:20px;
	font-weight:400;
	letter-spacing:0.3px;
	color:#000;
	}
.hair_form_submit{
	float:left;
	width:100%;
	height:60px;
	margin-top:20px;
	background:var(--red);
	border:none;
	outline:none;
	-webkit-appearance:none;
	font-family: 'Lexend Deca';
	font-size:21px;
	line-height:21px;
	font-weight:800;
	text-transform:uppercase;
	color:var(--white);
	letter-spacing:0.3px;
	}
.hair_form_submit:hover{
	background:var(--light-red);
	}
	

/*========CONTACT_PAGE========*/
.contact_section{
	float:left;
	width:100%;
	padding:60px 0 80px;
	}
.contact-right{
	float:right;
	width: 33%;
	}
.contact-right .hair_form{ margin:0;}
.contact-left{
	float:left;
	width:62%;
	text-align:left;
	}
.contact_text1 {
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
    color: #08080a;
	}
.contact_text2 {
	width:85%;
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    color: #000;
    letter-spacing: 0.3px;
    margin-top: 15px;
	}
.contact_row{
	float:left;
	width:100%;
	margin-top:40px;
	margin-bottom:20px;
	}
.contact_col{
	float:left;
	width:50%;
	padding-right:30px;
	}
.contact_col1{ width:40%;}
.contact_col2{ width:60%;}
.contact_row h4{
	font-size:22px;
	line-height:28px;
	color:#000;
	font-weight:500;
	}
.address-text{
	font-size:18px;
	line-height:28px;
	color:#000;
	letter-spacing:0.5px;
	margin-top:10px;
	font-weight:300;
	}
.contact_col ul{
	float:left;
	width:100%;
	}
.contact_col ul li{
	float:left;
	width:100%;
	font-size:18px;
	line-height:28px;
	color:#000;
	letter-spacing:0.5px;
	margin-top:15px;
	font-weight:300;
	text-align:left;
	position:relative;
	}
.contact_col ul li img{
	display:inline-block;
	vertical-align:middle;
	width:25px;
	margin-right:5px;
	}


/*========HAIR-STRAIGHTNER-V2========*/
.hair_banner_v2{ padding:40px 0 40px;}
.hair_banner_v2 .hair_banner_left{ padding-top:50px;}
.hair_banner_v2 .button_box{ margin-top:60px;}
.hair_banner_right .hair_form{
	margin-top:0;
	border: 1px solid #353e4c;
	}
.v2_banner_list{
	float:left;
	width:100%;
	margin-top:60px;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	}
.v2_banner_list li{
	width:20%;
	position:relative;
	text-align: left;
	}
.v2_banner_list li span{
	float:left;
	width:100%;
	font-size:42px;
	line-height:42px;
	font-weight:700;
	color:var(--brown);
	}
.v2_banner_list li p{
	float:left;
	width:100%;
	font-size:16px;
	line-height:20px;
	font-weight:400;
	color:var(--white);
	letter-spacing:0.3px;
	margin-top:10px;
	}
.v2_banner_list li:after{
	content:'';
	position:absolute;
	top:10px;
	right:-20px;
	width:1px;
	top:10px;
	bottom:0;
	background:var(--white);
	}
.v2_banner_list li:last-child:after{
	display:none;
	}
.hair_form_bottom_head2{ margin-top:10px;}
.v2_hair_right{
	float:left;
	width:100%;
	border:1px solid var(--black);
	border-radius:8px;
	margin-top:50px;
	overflow:hidden;
	}
.v2_hair_top{
	float:left;
	width:100%;
	background:#fef3c7;
	text-align:center;
	padding:14px 10px;
	}
.v2_hair_top p{
	float:left;
	width:100%;
	font-size:20px;
	line-height:24px;
	font-weight:600;
	color:#ff0000;
	text-transform:uppercase;
	}
.v2_hair_top p img{
	display:inline-block;
	vertical-align:middle;
	margin:-4px 10px 0 0;
	}
.v2_hair_bottom{
	float:left;
	width:100%;
	padding:25px 20px 15px;
	background:var(--white);
	}
.v2_right_img{
	float:left;
	width:100%;
	}
.v2_right_list{
	float:left;
	width:100%;
	margin-top:10px;
	text-align:left;
	}
.v2_right_list li{
	float:left;
	width:100%;
	margin-top:10px;
	padding:0 0 15px 40px;
	border-bottom:1px solid var(--border-color);
	position:relative;
	}
.v2_right_list li:last-child{ border-bottom:none;}
.v2_right_list li img{
	position:absolute;
	left:0;
	top:5px;
	}
.v2_right_list li span{
	float:left;
	width:100%;
	font-size:15px;
	line-height:20px;
	font-weight:300;
	color:var(--grey);
	letter-spacing:0.3px;
	}
.v2_right_list li p{
	float:left;
	width:100%;
	font-size:16px;
	line-height:20px;
	font-weight:400;
	color:var(--black);
	letter-spacing:0.3px;
	margin-top:5px;
	}


.fl{ float:left;}
.fr{ float:right;}
.showTab, .showMob{ display:none;}
.showDesk{ display:block;}
.hideDesk{ display:none;}	


/*---------Media Querry---------*/

@media only screen and (max-width:1187px){
.container{width:1004px;}

.topFixBar { margin-bottom: 70px;}
.header { height: 70px; padding: 10px 0; margin-top: -70px; top: 70px;}
a.navBarBtn { width: 200px;}
ul.topMenu { margin: 12px 20px 0 0;}
ul.topMenu li { padding: 0 15px;}

.banner { padding: 50px 0 70px;}
.banner_right { width: 64%;}
.banner_head { font-size: 54px; line-height: 64px;}

.sec1 { padding: 50px 0;}
.common_head { font-size: 46px; line-height: 54px;}
.s1_bottom_list li span { font-size: 46px; line-height: 52px;}
.s1_bottom_list li p { font-size: 19px; line-height: 25px;}
.s1_bottom_list li { padding: 0 38px;}

.sec2 { padding: 50px 0;}
.s2_mid_col { width:31.5%; margin: 40px 0;}
.s2_col_img { object-fit: cover; height: 450px;}
.s2_col_text_box { padding: 0 15px; bottom:-40px;}
.s2_col_head { margin-top: 10px;}
.s2_col_text_box .common_text{ line-height:24px;}

.sec3 { padding: 50px 0;}
.s3_left { width: 45%;}
.s3_right_box { width: 48%; padding: 20px 15px 15px;}
.s3_box_icon { top: 20px; right: 15px;}

.sec4 { padding: 50px 0;}
.s4_mid_col { width: 24%;}
.s4_mid_col:after { top: 17px; right: -86px; left: 170px;}
.s4_col_icon { width: 110px; margin-top:20px;}
.s4_col_head { margin-top: 15px;}

.sec5 { padding: 50px 0;}
.test_box { padding: 20px 20px 15px;}

.footer { padding: 50px 0;}
.footer_logo_sec { width: 33%; padding-right: 40px;}
.lead_sec { width: 22%;}
.quick_sec { width: 17%;}
.support_sec { width: 28%;}

/*========LISTING-PAGE========*/
.listing_banner_left { width: 63%;}
.listing_sec1 { padding: 30px 0 60px;}
.listing_s1_head { font-size: 24px; line-height: 32px;}

/*========HAIR-STRAIGHTNER========*/
.hair_banner { padding: 50px 0 50px;}
.hair_banner .banner_head { font-size: 44px; line-height: 56px;}
.hair_banner_img { margin-top: 20px;}
.hair_sec1 { padding: 10px 0 50px;}
.hair_s1_left { width: 62%;}
.hair_s1_right { width: 35%;}
.hair_common_head { font-size: 28px; line-height: 38px;}
.hair_injuries_list li { padding-left: 15px;}

.hair_form_top p { font-size: 23px; line-height: 31px;}
.hair_form_bottom_head { margin-top: 15px; font-size: 20px; line-height: 26px;}


/*========HAIR-STRAIGHTNER-V2========*/
.v2_banner_list li span{font-size: 34px;line-height: 38px;}
.v2_banner_list li p{font-size: 14px;line-height: 20px;}

}


@media only screen and (max-width:1021px){
.container{width:750px;}
.showDesk {display: none;}
.showTab {display: block;}

.topStrip { padding: 8px 0;}
.top_reviews { font-size: 13px;}
.top_reviews img { width: 80px;}
.top_contact { font-size: 17px; line-height: 24px; font-weight: 800;}
.top_contact img { width: 25px;}

.topFixBar { margin-bottom: 60px;}
.header { height: 60px; padding: 14px 0; margin-top: -60px; top: 60px;}
.logo { margin-top:0;}
.mobMenuIcon { right: 15px; top: 8px;}

.banner { padding: 40px 0 60px;}
.banner_right { width: 67%;}
.banner_text1 { font-size: 22px; line-height: 28px;}
.short_border { height: 4px;}
.banner_head { margin-top: 15px; font-size: 44px; line-height: 56px; padding-bottom:20px;}
.banner_text2 { font-size: 17px; line-height: 25px;}
.button_box { max-width: 300px;}
.common_button { height: 55px; font-size: 22px; line-height: 52px;}
.button_contact { font-size: 18px; line-height: 24px;}

.sec1 { padding: 40px 0;}
.head_top_text { font-size: 25px; line-height: 31px; padding-bottom: 15px;}
.common_head { font-size: 32px; line-height: 40px; margin-top:15px;}
.s1_mid_box { margin-top: 30px;  padding: 12px 14px;}
.s1_box_inner { padding: 40px 50px 140px;}
.s1_box_text1 { font-size: 27px; line-height: 39px;}
.s1_bottom_list { padding: 0; margin-top: 35px;}
.s1_bottom_list li { padding: 0 25px;}
.s1_bottom_list li span { font-size: 36px; line-height: 44px;}
.s1_bottom_list li p { font-size: 17px; line-height: 23px; margin-top:10px;}

.sec2 { padding: 40px 0;}
.s2_mid_col { width: 32%; margin: 30px 0 40px;}
.s2_col_img { height: 420px;}
.s2_col_text_box { width: 95%; padding:0 10px;}
.s2_col_head { font-size: 22px; line-height: 28px; padding-bottom: 15px;}
.common_text { font-size: 16px; line-height: 24px; margin-top:20px;}

.sec3 { padding: 40px 0;}
.s3_left { width: 100%; text-align:center;}
.s3_left .short_border{ left:50%; transform:translateX(-50%);}
.s3_right { width: 100%; margin-top:30px;}
.s3_right_box { width: 48%; padding: 20px 20px 15px; margin-top:20px;}
.s3_box_head { font-size: 22px; line-height: 28px; padding: 0 60px 20px 0;}
.s3_box_icon { width: 50px;}

.sec4 { padding: 40px 0;}
.s4_mid { justify-content: space-evenly;}
.s4_mid_col { width: 40%; margin-top: 40px; padding:0 10px;}
.s4_mid_col:after { display:none;}
.s4_col_icon { width: 90px;}
.s4_col_head { padding-bottom: 15px; font-size: 22px; line-height: 28px;}
.s4_mid_col .common_text { margin-top: 15px;}

.sec5 { padding: 40px 0;}
.s5_slider { margin-top: 30px;}
.test_box { padding: 20px 15px 15px;}
.test_quote { width: 60px;}
.test_text { font-size: 16px; line-height: 24px; margin-top: 15px;}
.test_name { font-size: 17px; line-height: 19px; margin-top: 15px;}
.test_star { margin-top: 45px; width: 80px;}

.footer { padding: 40px 0;}
.footer_logo_sec { width: 34%; padding-right: 40px;}
.footer_text { margin-top: 20px; font-size: 14px; line-height: 22px;}
.lead_sec { width: 22%; padding-right:30px;}
.quick_sec { width: 14%; padding-right: 20px;}
.footer_link_head { margin-top: 10px; font-size: 18px; line-height: 24px;}
.footer_links li a { font-size: 14px; line-height: 14px;}
.support_sec { width: 30%;}
.support_link { font-size: 14px; line-height: 18px;}
.support_link span { width: 80px; margin-top:-4px;}
.support_link span img { margin: -2px 5px 0 0; width: 17px;}

.copyright { padding: 20px 0;}
.copyright_text { font-size: 14px; line-height: 22px;}

/*========LISTING-PAGE========*/
.listing_banner { padding: 40px 0 50px;}
.listing_banner_left { width: 69%;}
.listing_sec1 { padding: 10px 0 40px;}
.listing_s1_mid{ padding:0 5px;}
.listing_s1_textbox { padding: 25px 15px 30px;}
.listing_s1_head { font-size: 21px; line-height: 27px;}
.listing_s1_icon { top: -25px; width: 50px; height: 50px;}
.listing_s1_link { font-size: 17px; line-height: 17px;}

/*========HAIR-STRAIGHTNER========*/
.hair_banner { padding: 40px 0;}
.hair_banner_left { width: 60%;}
.hair_banner_right { width: 37%;}
.hair_banner .banner_head { font-size: 34px; line-height: 44px;}
.hair_banner_img { margin-top: 12px;}
.hair_banner .common_button { font-size: 18px; font-weight:700;}
.hair_sec1 { padding: 10px 0 40px;}
.hair_common_head { font-size: 26px; line-height: 34px; padding-bottom: 15px; margin-top: 30px;}
.hair_common_img { margin-top: 25px;}
.hair_subhead { margin-top: 25px;}
.by_three.hair_injuries_list { margin-top: 0;}
.by_three.hair_injuries_list li { width: 50%; padding-left: 20px; font-size: 16px; line-height: 22px; letter-spacing: 0.5px;}
.hair_injuries_list { margin-top: 10px;}
.hair_feature_list li span { font-size: 20px; line-height: 28px;}
.up-slide-dwn { margin-top: 15px;}
.acdn-heading.accordion-open { background-position: 98% center;}
.accordion { background-position: 98% center; padding: 10px 40px 10px 15px; font-size: 17px; line-height: 24px;}
.acdn-content { padding: 15px 0 10px 15px;}

.hair_form_top { padding: 10px 10px 13px;}
.hair_form_top p { font-size: 18px; line-height: 26px;}
.hair_form_top:after {
    bottom: -10px;
    border-top: 10px solid var(--dark-grey);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
	}
.hair_form_bottom { padding: 10px 12px 20px;}
.hair_form_bottom_head { margin-top: 15px; font-size: 17px; line-height: 23px;}
.agents { margin-top: 10px; font-size: 15px; line-height: 23px;}
.hair_form_btn { height: 55px; font-size: 19px; line-height: 55px;}
.hair_or { margin-top: 20px;}
.hair_form_input input { padding: 0 12px; font-size: 14px;}
.hair_form_submit { height: 55px; font-size: 20px;}

/*========CONTACT_PAGE========*/
.contact_col1{ width:100%;}
.contact_col2{ width:100%;}


}

@media only screen and (max-width:767px){
.container{width:100%; padding:0 15px; max-width:600px; box-sizing:border-box;}
.showDesk{display:none;}
.showMob{display:block;}
.hideMob{ display:none;}

.top_caption{ justify-content:center;}

.top_reviews { display:none;}
.top_contact { font-size: 16px; line-height: 20px;}
.top_contact img { width: 18px; margin: -2px 5px 0 0;}

.topFixBar { margin-bottom: 50px;}
.header { height: 50px; padding: 12px 0; margin-top: -50px; top: 50px;}
.logo { width: 100px;}
.mobMenuIcon { top: 5px;}
.mobilemenu { top: 86px;}
.mobimenu-top { top: 50px;}

.banner { padding: 40px 0 50px; background: url(../images/banner-mob.jpg) no-repeat left top; background-size: cover;}
.banner_right { width: 100%; text-align:center;}
.banner_text1 { font-size: 17px; line-height: 23px;}
.banner_head { margin-top: 10px; font-size: 29px; line-height: 38px; padding-bottom: 15px;}
.banner_head .short_border{ left:50%; transform:translateX(-50%);}
.banner_text2 { font-size: 16px; line-height: 24px; margin-top: 15px;}
.button_box{ margin-top:30px;}
.common_button { font-size: 20px;}
.button_contact img { margin: -2px 8px 0 0; width: 21px;}
.button_contact { font-size: 16px; line-height: 20px;}

.sec1 { padding: 30px 0;}
.head_top_text { font-size: 20px; line-height: 26px; padding-bottom: 10px;}
.common_head { font-size: 26px; line-height: 34px; margin-top: 10px;}
.s1_mid_box { margin-top: 20px; padding: 10px 10px;}
.s1_box_inner { padding: 30px 20px 70px;}
.s1_mid_box:before{width: 260px; height: 40px;}
.s1_box_text1 { font-size: 20px; line-height: 30px;}
.s1_bottom_list { margin-top: 0;}
.s1_bottom_list li{ width:49%; padding:0 20px; margin-top:25px;}
.s1_bottom_list li:nth-child(2):after{ display:none;}
.s1_bottom_list li span { font-size: 26px; line-height: 30px;}
.s1_bottom_list li p { font-size: 16px; line-height: 22px;}

.sec2 { padding: 30px 0;}
.s2_mid_col { width: 100%; margin:50px 0 0;}
.s2_col_text_box { bottom: 0; width:90%;}

.sec3 { padding: 30px 0;}
.s3_left { width: 100%;}
.s3_right { width: 100%;margin-top: 5px;}
.s3_right_box { width:100%; padding: 20px 15px; margin-top: 20px;}
.s3_right_box:first-child, .s3_right_box:nth-child(2) { margin-top: 20px;}
.s3_box_head { font-size: 20px; line-height: 26px; padding: 0 55px 15px 0;}

.sec4 { padding: 30px 0;}
.common_text { margin-top: 15px;}
.s4_mid{ width:calc(100% + 30px); margin-left:-15px;}
.s4_mid_col { width:250px !important; padding: 0px 20px;}
.s4_col_step:after {
	content: '';
	position: absolute;
	top: 17px;
	right: -70px;
	left: 185px;
	height: 3px;
	background: url(../images/s4-step-dot.png) repeat-x;
	}
.s4_col_step.no_dots:after{ display:none;}
.s4_col_head { font-size: 20px; line-height: 26px;}

.sec5 { padding: 30px 0;}
.s5_slider { width:calc(100% + 30px); margin-left:-15px;}
.test_box { width: 320px !important;}

.footer { padding: 30px 0;}
.footer_logo_sec { width: 100%;}
.lead_sec { width: 60%; padding-right: 0;}
.quick_sec { width: 40%; padding-right: 0px;}
.support_sec { width: 100%;}
.footer_link_head { margin-top: 30px;}
.footer_links { margin-top: 5px;}

.copyright { padding: 15px 0;}
.copyright_text { font-size: 12px; line-height: 20px;}

/*========LISTING-PAGE========*/
.listing_banner { padding: 30px 0 40px; background: url(../images/banner-mob.jpg) no-repeat left top; background-size: cover;}
.listing_banner_left { width: 100%; text-align:center;}
.listing_s1_col { width:100%; margin: 30px 0 0 0;}

/*========HAIR-STRAIGHTNER========*/
.hair_banner { padding: 20px 0 150px;}
.hair_banner_left{ width:100%; text-align:center;}
.hair_banner_right { width: 100%;}
.hair_form_top p {font-size: 22px;line-height: 28px;}
.hair_banner .banner_head { font-size: 26px; line-height: 34px;padding-bottom: 20px;}
.hair_banner_list { float:none; display:inline-block; vertical-align:top; max-width:350px; margin-top: 10px; text-align:left;}
.hair_banner_list li { margin-top: 10px; font-size: 16px; line-height: 24px; padding-left: 30px;}
.hair_banner_img { margin-top: 30px;}
.hair_sec1 { padding:0 0 30px 0;}
.hair_s1_right { width: 100%; margin-top:-120px;}
.hair_form { margin-top: 0;}
.hair_form_bottom { padding: 10px 15px 20px;}
.hair_s1_left { width: 100%;}
.hair_common_head { font-size: 22px; line-height: 30px; padding-bottom: 10px; margin-top: 25px;}
.hair_subhead { margin-top: 20px; font-size: 18px; line-height: 26px;}
.by_three.hair_injuries_list li { width: 100%;}
.hair_feature_list li span { font-size: 19px; line-height: 27px;}
.accordion { padding: 15px 30px 15px 15px;}
.acdn-content { padding: 15px 10px 10px 15px;}


/*========HAIR-STRAIGHTNER-V2========*/
.hair_banner_v2{ padding:20px 0;}
.hair_banner_v2 .hair_banner_left {padding-top: 0;}
.hair_banner_v2 .hair_banner_right{ margin-top:25px;}
.v2_banner_list{ margin-top:10px; margin-bottom:30px;}
.hair_form_bottom_head2{ margin-top:5px;font-size: 20px;}
.v2_banner_list li{ width:50%; margin-top:20px;}
.v2_banner_list li:after{right: -5px;}
.v2_banner_list li:nth-child(2n):after{ display:none;}
.v2_hair_s1_right{ margin:0 0 0;}
.v2_hair_right{margin-top: 35px;}
.v2_hair_top p{ font-size:19px;}

/*========CONTACT_PAGE========*/
.contact_section{ padding:30px 0;}
.contact-right{ width:100%;}
.contact-left{ width:100%; margin-top:30px;}
.contact_text1 {font-size: 26px;line-height: 30px;}
.contact_text2 {width: 100%;font-size: 17px;line-height: 24px;margin-top: 14px;}
.contact_row{margin-top: 30px;}
.contact_col{ padding:0;}
.contact_row h4 {font-size: 20px;line-height: 25px;}
.address-text{ font-size:17px;}
.contact_col ul li{ font-size:17px;}
.contact_col ul li img{width: 22px;}







}

