@charset "UTF-8";


.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.duration-xs {
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
}

.duration-sm {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.duration-md {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.duration-lg {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.duration-xl {
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
}

/*animation-timing-function: sets the animation speed
( linear | ease | ease-in | ease-out | ease-in-out | cubic-bezier ).*/

.timing-linear {
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.timing-ease-in {
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.timing-ease-out {
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.timing-ease-in-out {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.timing-cubic-bezier {
  -webkit-animation-timing-function: cubic-bezier;
  animation-timing-function: cubic-bezier;
}

/*animation-delay: the delay before our animation will start.*/

.delay-xs {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.delay-sm {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-md {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.delay-lg {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.delay-xl {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

/*how many times it will iterate through animation.*/

.iteration-infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.iteration-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.iteration-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
}

.iteration-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
}

.iteration-4 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
}

.iteration-5 {
  -webkit-animation-iteration-count: 4;
  animation-iteration-count: 4;
}

/* animation-direction: gives you the ability to change the loop direction, from start to end ,
or from end to start, or both.*/

.direction-normal {
  -webkit-animation-direction: normal;
  animation-direction: normal;
}

.direction-reverse {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.direction-alternate {
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.direction-alternate-reverse {
  -webkit-animation-direction: alternate-reverse;
  animation-direction: alternate-reverse;
}

/* animation-fill-mode: specifies which styles will be applied to the element when our animation is finished*/

.fill-mode-none {
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
}

.fill-mode-forwards {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.fill-mode-backwards {
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

.fill-mode-both {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}



/*-- fadeInUp --*/

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*-- slideInLeft -- */

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

/*-- slideInRight- - */

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;

    -moz-box-sizing: border-box;
         box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.slick-arrow{
	width:30px;
	height:30px;
	background:none;
	border:none;
	font-size:0;
	position:absolute;
	top:50%;
	transform:translate(-50%);
	opacity:0;
	filter: alpha(opacity=0);		
}
.slick-arrow.slick-prev{
	/*left:33px;*/
	background-image:url(../images/pre.png);
	background-position:center;
	background-repeat:no-repeat;
}
.slick-arrow.slick-next{
	right:-33px;
	background-image:url(../images/next.png);
	background-position:center;
	background-repeat:no-repeat;
}
.slick-slider:hover .slick-arrow{
	opacity:1;
	filter: alpha(opacity=100);
	
}

.related_pro .slick-arrow{
	opacity:1;
	filter: alpha(opacity=100);
	background:none;
	background-repeat:no-repeat;
	
	top:40%;
	transform:translate(-40%);
}
.related_pro .slick-arrow.slick-prev{
	background-image:url(../images/pre_white.png);
}
.related_pro .slick-arrow.slick-next{	
	background-image:url(../images/next_white.png);
}
@charset "utf-8";

/* CSS Document */



/* @font-face {

    font-family: 'proxima_novalight';

    src: url('../fonts/proximanova-light-webfont.eot');

    src: url('../fonts/proximanova-light-webfont.eot?#iefix') format('embedded-opentype'),

         url('../fonts/proximanova-light-webfont.woff2') format('woff2'),

         url('../fonts/proximanova-light-webfont.woff') format('woff'),

         url('../fonts/proximanova-light-webfont.ttf') format('truetype'),

         url('../fonts/proximanova-light-webfont.svg#proxima_novalight') format('svg');

    font-weight: normal;

    font-style: normal;



}



@font-face {

    font-family: 'proxima_nova_rgregular';

    src: url('../fonts/proximanova-regular-webfont.eot');

    src: url('../fonts/proximanova-regular-webfont.eot?#iefix') format('embedded-opentype'),

         url('../fonts/proximanova-regular-webfont.woff2') format('woff2'),

         url('../fonts/proximanova-regular-webfont.woff') format('woff'),

         url('../fonts/proximanova-regular-webfont.ttf') format('truetype'),

         url('../fonts/proximanova-regular-webfont.svg#proxima_nova_rgregular') format('svg');

    font-weight: normal;

    font-style: normal;

}



@font-face {

    font-family: 'proxima_nova_rgbold';

    src: url('../fonts/proximanova-bold-webfont.eot');

    src: url('../fonts/proximanova-bold-webfont.eot?#iefix') format('embedded-opentype'),

         url('../fonts/proximanova-bold-webfont.woff2') format('woff2'),

         url('../fonts/proximanova-bold-webfont.woff') format('woff'),

         url('../fonts/proximanova-bold-webfont.ttf') format('truetype'),

         url('../fonts/proximanova-bold-webfont.svg#proxima_nova_rgbold') format('svg');

    font-weight: normal;

    font-style: normal;



}

@font-face {

    font-family: 'proxima_novasemibold';

    src: url('../fonts/proximanova-semibold-webfont.eot');

    src: url('../fonts/proximanova-semibold-webfont.eot?#iefix') format('embedded-opentype'),

         url('../fonts/proximanova-semibold-webfont.woff2') format('woff2'),

         url('../fonts/proximanova-semibold-webfont.woff') format('woff'),

         url('../fonts/proximanova-semibold-webfont.ttf') format('truetype'),

         url('../fonts/proximanova-semibold-webfont.svg#proxima_novasemibold') format('svg');

    font-weight: normal;

    font-style: normal;

}
*/


@font-face {

    font-family: 'latoregular';

    src: url('../fonts/lato-regular-webfont.eot');

    src: url('../fonts/lato-regular-webfont.eot?#iefix') format('embedded-opentype'),

         url('../fonts/lato-regular-webfont.woff2') format('woff2'),

         url('../fonts/lato-regular-webfont.woff') format('woff'),

         url('../fonts/lato-regular-webfont.ttf') format('truetype'),

         url('../fonts/lato-regular-webfont.svg#latoregular') format('svg');

    font-weight: normal;

    font-style: normal;

}



*{

	 margin:0; 

	 padding:0; 

	 outline:none;



	 box-sizing: border-box;

	 -webkit-box-sizing: border-box;

	 -moz-box-sizing: border-box;

	 -ms-box-sizing: border-box;

	 -o-box-sizing: border-box;

}

html {

     text-rendering: optimizeLegibility !important;

     -webkit-font-smoothing: antialiased !important;

}

html, body{
	overflow-x: hidden;
}

body{

	font-family: 'Nunito', sans-serif;
	font-weight: 400;

	color:#171414;

}

h1{

	font-size:26px;

	line-height:28px;

	color:#0b0b0b;

	margin:0 0 50px;

	text-transform:uppercase;

}

h2{

	font-size:14px;

	line-height:17px;

	color:#3a3434;

	margin:0 0 20px;

	text-transform:uppercase;

	background-image:url(../images/dot.png), url(../images/dot.png);

	background-position:center top, center bottom;

	background-repeat:no-repeat;

	padding:10px 0;

}

h3{

	font-size:21px;

	line-height:25px;

	margin:0 0 40px;	

}

h4{

	font-size:20px;

	line-height:22px;

	color:#060606;

	margin:0 0 10px 0;

	text-transform:uppercase;	

}

h5{

	font-size:17px;

	line-height:25px;	

	margin:0 0 17px 0;		

}

p{

	font-size:16px;

	line-height:25px;

	color:#242424;

	margin-bottom:15px;

}

p:last-child{

	margin-bottom:0;

}

ul, ol{

	list-style:none;

	margin:0;

}

img{

	max-width:100%;

}



a, a:hover{

	text-decoration:none;

}



::-moz-selection {

  color:#fff;

  background: #d7374e;

}

::selection {

  color: #fff;

  background:#d7374e;

}



header, nav, section, article, aside, footer {

   display:block;

}



.container-fluid{	

	position:relative;

	max-width:1200px;

}

.product_div, .news img, footer .social li a, .pink_button, .gray_button, .mainNav, .open_close, .pro_img img, .related_pro .product_div .pro_img, input, textarea, select, .select_box:after, .form_cover .fa, .txt_cover, .news_title, .read_more, .related_pro .product_div .pro_img a{

    -webkit-transition: all .3s ease-out;

    -moz-transition: all .3s ease-out;

    -o-transition: all .3s ease-out;

    transition: all .3s ease-out;

}

.bgcover{

	background-position:center center;

	background-repeat:no-repeat;

	

	-webkit-background-size: cover;

    -moz-background-size: cover;

    -o-background-size: cover;

     background-size: cover;

	

}



header, .section, footer{

	width:100%;

	float:left;

	position:relative;	

}

.gap{

	padding-top:55px;

	padding-bottom:55px;

}



.container-slider{

	font-family: 'latoregular';

}

.product_div a, .read_more, .pink_button, .gary_button, .publishdate, .mega_drop ul li a{

	font-family: 'Nunito', sans-serif;
	font-weight: 600;

}

h1, h4, .header_contact, .accordion.acc_with_icon .accordion_in .acc_head{

	font-family: 'Nunito', sans-serif;
	font-weight: 700;

}

p{

	font-family: 'Nunito', sans-serif;
	font-weight: 300;

}

.prd-buy {
    display: none;
}
.postid-997 .prd-learn-more, .postid-3191 .prd-learn-more, .postid-3070 .prd-learn-more {
    display: none;
}
.postid-997 .prd-buy, .postid-3070 .prd-buy, .postid-3191 .prd-buy{
    display: block;
}
.mini-cart {
    display: none !important;
}
.page-id-10 .mini-cart {
    display: block !important;
}
/*-- header section --*/

header{

	/*padding:20px 0 15px;*/
	padding:20px 0 0;

	border-bottom:#d6334a solid 3px;

}



.logo{

	padding-top:12px;

}

.header_top{

	text-align: right;

}

.header_contact{

	font-size:16px;

	line-height:18px;

	color:#000000;

	display:inline-block;

	padding-top: 12px;

	margin-right:15px;	

}

.header_search{

	display:inline-block;

	width:100%;

	max-width:312px;

	height:40px;

	position:relative;

	margin-right:14px;	

}

.header_contact span{

	display:inline-block;

	padding:0 15px;

	border-right:#363636 solid 1px;

}

.header_contact span:last-child{

	border:none;

}

.header_contact span .fa{

	margin-right:6px;

}

.header_search{

	display:inline-block;

}



.header_search input{

	width:100%;

	height:40px;

	border:#e1e1e1 solid 1px;

	padding:5px 35px 5px 16px;

}

.header_search button{

	position:absolute;

	top:0;

	right:0;

	width:30px;

	height:40px;

	color:#716f6f;

	background:none;

	border:none;

}

.mainnavigation{

	padding-top:15px;

}

/*-- banner section --*/

.carousel-control{

	width:32px;

	height:53px;

	background:rgba(255,255,255,.4);

	color:#000;

	padding-top: 13px;

	top:50%;

	transform:translateY(-50%);

}

.carousel-control.left{

	left:6%;

}

.carousel-control.right{

	right:6%;

}



.container-slider{

	position:absolute;

	top:0;

	bottom:0;

	left:0;

	right:0;

	margin:auto;

	width:100%;

	max-width:1050px;

	height:100%;

	font-family: 'latoregular';

}

.txt{

	display:table;

	float:right;

	text-align: center;

	margin-top: 9.3%;

}

.txt_top{

	width:auto;

	display:table;

	padding:15px 40px;

	position:relative;

	background:#dc1337;

	color:#fff;

	text-align:center;

	text-transform:uppercase;

	font-size:27px;

	line-height:30px;

	margin:0 auto 20px;

	box-shadow:0 1px 2px 0 rgba(0, 0, 0, 0.7);

	text-shadow: 1px 1px 0px rgba(0, 0, 0, .7);

}

.txt_top:after{

	content:"";

	width:205px;

	height:20px;

	background:#9d001d;

	position:absolute;

	top:100%;

	right:38px;	

	



    transform: rotate(0deg) skew(-75deg) translate(0px);

    -webkit-transform: rotate(0deg) skew(-75deg) translate(0px);

    -moz-transform: rotate(0deg) skew(-75deg) translate(0px);

    -o-transform: rotate(0deg) skew(-75deg) translate(0px);

    -ms-transform: rotate(0deg) skew(-75deg) translate(0px);

}



.txt_bottom{

	width:auto;

	display:table;

	padding:15px 40px;

	position:relative;

	background:#fff;

	color:#141111;

	text-align:center;

	text-transform:uppercase;

	font-size:22px;

	line-height:30px;

	margin: 0 auto 0 56px;

	font-weight:bold;

	box-shadow:0 1px 3px 0 rgba(0, 0, 0, 0.6);

}



.carousel-inner > .item > img, .carousel-inner > .item > a > img{

	width:100%;

	max-width:inherit;

}

/*-- feature products section */

.feature_pro, .company_details, .latest_news{

	text-align:center;

}

.feature_pro p, .company_details p, .latest_news p{

	max-width:875px;

	margin:0 auto 15px;

}

.product_div{

	width:100%;

	max-width:270px;

	border:#e1e1e1 solid 1px;

	margin:0 auto;

	padding:20px 10px;

	text-align:center;

	position:relative;

}

.feature_pro .product_div:after {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  margin: auto;

  width: 0%;

  max-width: 320px;

  height: 100%;

  content: '';

  border-top: #d7374e solid 1px;

  border-bottom: #d7374e solid 1px;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  

  z-index:-1;

}

.feature_pro .product_div:before {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  margin: auto;

  width: 100%;

  max-width: 320px;

  height: 0%;

  content: '';

  border-left: #d7374e solid 1px;

  border-right: #d7374e solid 1px;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  z-index:-1;

}

.feature_pro .product_div:hover {

  border: #fff solid 1px;

}

.feature_pro .product_div:hover:after {

  width: 100%;

}

.feature_pro .product_div:hover:before {

  height: 100%;

}



.product_div:hover{

	border-color:#fff;

}

.feature_pro p, .latest_news p{

	margin-bottom:45px;

}

.pros_name{

	font-size:17px;

	line-height:22px;

	padding-bottom:5px;

	text-transform:uppercase;

	background:url(../images/dot.png) center bottom no-repeat;

}

.pro_name{

	float: left;

    font-size: 14px;

    line-height: 17px;

    margin-bottom: 0;

    min-height: 43px;

    text-transform: uppercase;

    width: 100%;

}

.product_div a{

	color:#171414;

	font-size:13px;

	line-height:22px;

	font-weight:bold;

	text-transform:uppercase;

}

.product_div a .fa{

	margin-left:5px;

}

.product_div:hover a{

	color:#d7374e;

}

.pro_img{

	float: left;

    height: 90px;

    margin: 10px 0;

    width: 100%;

}

.pro_img img{

	height: 100%;

    margin: 0 auto;

    max-width: 100%;

    transform: scale(1);

    width: auto;

}

.feature_pro .product_div:hover .pro_img img{

	transform: scale(1.15);

}

/*-- company details section --*/

.company_details{

	background-position:center;

	background-attachment:fixed;

}

.company_details, .company_details h1, .company_details h2, .company_details a{

	color:#fff;

}

.company_details p{

	color:#bfbfbf;

}

.tint{

	background:rgba(0,0,0,.8);

}



/*-- new section --*/

.news{

	width:100%;

	max-width:370px;

	max-height:238px;

	position:relative;

	margin:0 auto;	

	overflow:hidden;

}

.news, .news a{

	color:#fff;

}

.news .txt_cover{

	bottom: 0;

    height: 62px;

    left: 0;

    margin: auto;

    padding: 10px 15px;

    position: absolute;

    right: 0;

    width: 100%;

	background:url(../images/news_bg.png) center bottom repeat-x;

}

.news_title{

	color: #fff;

    float: left;

    font-size: 17px;

    line-height: 25px;

    max-width: 230px;

    padding: 15px 0;

    width: 80%;
	text-align:left;

}

.read_more{

	float: right;

    padding: 18px 0 15px;

    width: 24%;

}

.news img{

	width:100%;

}

.news_ex, .date{

	display:none;

	width:100%;

	float:left;	

}

.news_ex p{

	color:#bfbfbf;

	margin-bottom:10px;

}

.news:hover img{

	

}

.news:hover .txt_cover{

	height:100%;

	padding-top:10%;

	background:rgba(0,0,0,.8);

}

.news:hover .news_title, .news:hover .read_more{

	width:100%;

	max-width:inherit;	

	text-align:center;

	padding:5px 0;

	float:left;

}

.news:hover .read_more{

	margin-top:10px;

}

.news:hover .news_ex, .news:hover .date{

	display:block;

}



/*-- footer --*/

footer{

	padding:55px 0;

	background:#000;	

}

footer, footer a, footer p{

	color:#a4a4a4;

	font-size:14px;

	line-height:25px;

}

footer a:hover{

	color:#d7374e;

}

footer h3{

	color:#fff;

}

.footer_logo{

	margin-bottom:38px;

}

footer .social{

	margin-bottom:18px;

}

footer .social li{

	display:inline-block;

}

footer .social li a{

	width:30px;

	height:30px;

	display:block;

	text-align:center;

	font-size:11px;

	line-height:16px;

	color:#ffffff;

	padding-top: 8px;

}

footer .social li.fb a{

	background:#3a589b;

}

footer .social li.tw a{

	background:#598dca;

}

footer .social li.link a{

	background:#007ab9;

}

footer .social li a:hover{

	background:#d7374e;

}



footer .quick_links ul li{

	display:inline-block;

	float:left;

	width:50%;

	margin-bottom:2px;

}



/*-- enquery --*/

.pink{

	color:#db1337;

}

.inner_page h1{

	margin:0 0 25px;

}

.inner_banner{

	position:relative;

}

.inner_banner .txt{

	margin:auto;

	float:none;

	position:absolute;

	left:50%;	

	top:50%;

	transform:translate(-50%, -50%);	

}

@media screen and (-webkit-min-device-pixel-ratio:0) { 

    /* Safari and Chrome */

    .inner_banner .txt_top {

     

    }



    /* Safari only override */

    ::i-block-chrome, .inner_banner .txt_top {

      width: 325px;

    }

}

.inner_banner .txt_top{

	min-width: 325px;

}

.inner_banner .txt_bottom{

	margin:0 auto 0 30px

}



.enquiry{

	margin-bottom:40px;

}

.enquiry_cover{

	width:100%;

	max-width:1108px;

	margin:45px auto 0;

}

.enquiry_cover button{

	float:right;

}



/*-- input style --*/

input, textarea, select{

	width:100%;

	height:40px;

	border:#cacbcb solid 1px;

	border-radius:4px;

	padding:5px 10px;

	color:#4d4d4d;

}

input:focus, textarea:focus, select:focus, input:hover, textarea:hover, select:hover{

	border-color:#d6334a;

	padding-left:28px;

}

textarea{

	height:195px;

	padding:10px 10px;

}

select{

	line-height: 34px;

}

select option{

	padding:8px;

}

.pink_button, .gray_button{

	width:auto;

	display:table;

	padding:10px 12px;

	font-size:14px;

	line-height:22px;

	color:#fff;

	text-align:center;

	text-transform:uppercase;

	border:#d6334a solid 2px;

	outline:#d6334a solid 2px;

	background:#d6334a;

}

.gray_button{

	border:#4a4848 solid 2px;

	outline:#4a4848 solid 2px;

	background:#4a4848;

}

.pink_button:hover{

	outline:#d6334a solid 2px;

	border:#fff solid 2px;

	color:#fff;	

}

 .gray_button:hover{

	outline:#4a4848 solid 2px;

	border:#fff solid 2px;

	color:#fff;	

}

.form_cover{

	margin-bottom:12px;

	position:relative;

}

.form_cover .fa{

	position:absolute;

	top:12px;

	left:10px;

	opacity:0;

	color:#d12635;

	visibility:hidden;

	-moz-animation-delay: 1s;

	-webkit-animation-delay: 1s;

     animation-delay: 1s;

}

.form_cover:hover .fa, .form_cover.active .fa{

	opacity:1;

	visibility:visible;

}
.form_cover.active input, .form_cover.active textarea, .form_cover.active select{

	border-color:#d6334a;

	padding-left:28px;

}
.select_box{

	width:100%;

	height:40px;

	float:left;

	position:relative;

}

.select_box:after{

	width:35px;

	height:40px;

	position:absolute;

	top:0;

	right:0;

	background:#fff;

	content:"\f0d7";

	font-family: 'FontAwesome';

	border:#cacbcb solid 1px;

	border-left:none;

	border-radius:0 4px 4px 0;

	text-align:center;

	padding-top: 10px;

	pointer-events: none;

}

.select_box:hover:after, .form_cover.active .select_box:after{

	border-color:#db1337;

}

/*-- about page --*/

.about h1, .related_pro h1{

	margin: 0 0 20px;

}

.about_img{

	padding-top:50px;

}

.related_pro{

	background-position:center;

	background-attachment:fixed;

}

.related_pro, .related_pro h1, .related_pro a, .related_pro p{

	color:#fff;

}

.pro_slider{

	width:95%;

	margin:0 auto;

}

.related_pro .product_div{

	border:none;

}

.related_pro .product_div .pro_img{

	width:187px;

	height:187px;

	border-radius:50%;

	border:#c3c3c3 solid 5px;

	background:#fff;

	overflow:hidden;

	position:relative;

	float:none;

	margin:0 auto 20px;

	text-align:center;

	z-index:9;

	transform:scale(1);	

}

	

.related_pro .product_div .pro_img:hover{

	border:#fff solid 3px;

	box-shadow:0 0px 4px 2px rgba(0, 0, 0, 0.4) inset;

	transform: scale(1.1);

}

.related_pro .product_div .pro_img img{

	width:auto;

	height:auto;

	max-height:100%;

	position:absolute;

	left:0;

	right:0;

	margin:auto;

	top:40%;

	transform:translateY(-40%);	

}



.related_pro .product_div .pro_img a{

	background:#d12635;

	border-radius: 50%;

    bottom: -70px;

    color: #fff;

    font-size: 16px;

    height: 119px;

    left: 0;

    line-height: 25px;

    margin: auto;

    padding: 15px 0 0;

    position: absolute;

    right: 0;

    text-align: center;

    width: 129px;

	z-index:2;	

}

.related_pro .product_div .pro_img:after {

  position: absolute;

  border-radius: 50%;

  top: 0;

  left: 0;

  right: 0;

  margin: auto;

  width: 100%;

  max-width: 320px;

  height: 100%;

  content: '';

  opacity:0;

  border: #d7374e solid 2px;  

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  

  z-index:1;

}



.related_pro .product_div .pro_img:hover {

  border: #fff solid 4px;

}

.related_pro .product_div .pro_img:hover:after {

  opacity:1;

}





@media screen and (-webkit-min-device-pixel-ratio:0) { 

    /* Safari and Chrome */

    .related_pro .product_div .pro_img a {

     

    }

    

	.related_pro .product_div .pro_img:hover{

	

	}

    /* Safari only override */

    ::i-block-chrome,.related_pro .product_div .pro_img a {

     background:url(../images/details.png) center no-repeat;

	 display:block;

	 bottom: -34px;

     width: 140px;

	 padding: 47px 0 0;

    }

	::i-block-chrome,.related_pro .product_div .pro_img:hover {

	border:#fff solid 3px;	

	}

	

}		

/*-- contact page --*/

.contact h5{

	color:#db1337;

}

.address{

	margin-top:30px;

}

.contact_icon{

	float:left;

	width:28px;

	font-size:17px;

	color:#000;

}

.contact_details{

	float:left;

	color:#000;

	width: 80%;

}

.half{

	width:50%;

	float:left;

	margin-top:18px;

}



.gmap iframe{

	width:100%;

	height:280px;

}

.gmap.gap{

	padding-bottom:0;

}



/*-- product details page --*/

.row.gap{

	padding-bottom:0;

}



.nopadding_left{

	padding-left:0;

}

.nopadding_right{

	padding-right:0;

}



/*-- accordian --*/

.accordion {

  position: relative;

  margin: 0;

  padding: 0;

  list-style: none;

  margin-bottom: 20px;

}



.accordion .accordion_in {  

  position: relative;

  z-index: 10;  

  overflow: hidden;

}



.accordion .accordion_in .acc_head {

  position: relative;

  background: #f2f2f2;

  padding: 12px;

  font-size: 14px;

  display: block;

  cursor: pointer;

  border: 1px solid #dbdbdb;

  border-radius:4px;

  overflow:hidden;

}

.accordion .accordion_in .acc_head .acc_icon_expand {

  display: block;

  width: 45px;

  height: 46px;

  position: absolute;

  right: 0;

  top:0;

  background: url(../images/plus.png) center;

}



.accordion .accordion_in .acc_content { 

  padding: 10px 0 15px;

  display:none;

}

.accordion .accordion_in:nth-of-type(1) .acc_content{

	display:block;

}

.accordion .accordion_in .acc_content h1:first-of-type,

.accordion .accordion_in .acc_content h2:first-of-type,

.accordion .accordion_in .acc_content h3:first-of-type,

.accordion .accordion_in .acc_content h4:first-of-type,

.accordion .accordion_in .acc_content h5:first-of-type,

.accordion .accordion_in .acc_content h6:first-of-type {

  margin-top: 5px;

}



.accordion .accordion_in.acc_active > .acc_content {

  display: block;

}

.accordion .accordion_in.acc_active > .acc_head {

  background: #F9F9F9;

}

.accordion .accordion_in.acc_active > .acc_head .acc_icon_expand {

  background: url(../images/minus.png) center;

}

.accordion.acc_with_icon .accordion_in .acc_head{

  color:#060606;

  font-size:18px;

  line-height:22px;

  text-transform:uppercase;

  padding-right: 40px;

  margin-bottom:15px; 

}



.pro_details .pink_button, .pro_details .gray_button{

	float:left;

	margin-right:15px;

}



/*-- blog page --*/

.blog{

	padding-bottom:40px;

}

.blog h3{

	margin:0 0 16px;

}

.blog h3 a{

	color:#000;

}

.blog h3 a:hover{

	color:#dc1337;

}

.blog_div{

	padding-left:45px;

	margin-bottom:40px;

}

.blog_img{

	width:100%;

	max-width:527px;

	margin-bottom:15px;

}

.publishdate{

	position:absolute;

	top:0;

	left:0;

	width:45px;

	padding:15px 5px;

	background:#dc1337;

	color:#fff;

	text-align:center;

	text-transform:uppercase;

}

.d{

	font-size:19px;

	line-height:20px;

}

.m{

	font-size:14px;

	line-height:15px;

}



/*-- blog details page --*/



.aligncenter,

div.aligncenter {

    display: block;

    margin: 5px auto 5px auto;

}



.alignright {

    float:right;

    margin: 5px 0 35px 35px;

}



.alignleft {

    float: left;

    margin: 5px 35px 35px 0;

}



a img.alignright {

    float: right;

    margin: 5px 0 35px 35px;

}



a img.alignnone {

    margin: 5px 35px 35px 0;

}



a img.alignleft {

    float: left;

    margin: 5px 35px 35px 0;

}



a img.aligncenter {

    display: block;

    margin-left: auto;

    margin-right: auto

}



.blog_details h1{

	margin:0 0 15px;

}

.blog_details ul{

	margin:40px 0;

}

.blog_details ul li{

	width:50%;

	float:left;

	font-size:16px;

	line-height:25px;

	color:#242424;

	position:relative;

	padding:0 5px 0 20px;

	margin-bottom:10px;

}

.blog_details ul li:after{

	content:'\f105';

	font-family: 'FontAwesome';

	top:0;

	left:0;

	position:absolute;

	font-size:18px;

	color:#d53349;

}



.leave_comment{

	margin:70px 0 25px;

}

.leave_comment h1{

	font-size:20px;

	line-height:22px;

	margin:0 0 30px 0;

}

.leave_comment textarea{

	height:120px;

}

.leave_comment button{

	float:right;

}

.reply_img{

	width:63px;

	height:63px;

	border-radius:50%;

	float:left;

	overflow:hidden;

	margin-right:20px;

}

.reply_txt{

	float:left;

	width:88%;

}

.date_name{

	margin-bottom:20px;

}

.date_name span{

	display:inline-block;

}

.date_name .pd{

	margin-right:25px;

}

.date_name .rd{

	float:right;

}

.date_name .pd .fa{

	margin-right:10px;

}

.reply_txt .date_name {

	margin-top:10px;

}





/*-- menu --*/

.navigation{

	width: auto;

	float:right;

}

.navigation,

.navigation ul,

.navigation ul li,

.navigation ul li a,

.navigation #menu-button {

  margin: 0;

  padding: 0;

  border: 0;

  list-style: none;

  line-height: 1;

  display: block;

  position: relative;

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

.navigation ul{

	float:right;	

}

.navigation:after,

.navigation > ul:after {

  content: ".";

  display: block;

  clear: both;

  visibility: hidden;

  line-height: 0;

  height: 0;

}

.navigation #menu-button {

  display: none;

}

.navigation {  

  background: #ffffff;

}

#menu-line {

  position: absolute;

  top: 0px;

  left: 0;

  height: 45px;

  background: #d6334a;
  
  display:none !important;

  -webkit-transition: all 0.25s ease-out;

  -moz-transition: all 0.25s ease-out;

  -ms-transition: all 0.25s ease-out;

  -o-transition: all 0.25s ease-out;

  transition: all 0.25s ease-out;

}
.navigation:hover #menu-line{
	display:block !important;
}
.navigation > ul > li {

  float: left;
  position:relative;  

}

.navigation > ul > li:last-child {

	margin-right:0;

}

.navigation.align-center > ul {

  font-size: 0;

  text-align: center;

}

.navigation.align-center > ul > li {

  display: inline-block;

  float: none;

}



.navigation > ul > li > a {

  /*padding: 4px 14px;*/
  padding:4px 14px 15px 14px;

  font-size: 16px;

  line-height:22px;

  text-decoration: none;

  text-transform: uppercase;

  color: #2b2b2b;

  cursor: pointer;

  -webkit-transition: color .2s ease;

  -moz-transition: color .2s ease;

  -ms-transition: color .2s ease;

  -o-transition: color .2s ease;

  transition: color .2s ease;

}



.navigation > ul > li:hover > a,

.navigation > ul > li.active > a {

  color: #fff;  

}

.navigation > ul > li.active > a, .navigation > ul > li.current_page_item > a, .navigation > ul > li.current-menu-parent > a{

 background:#d6334a;
 color:#fff;	

}

.navigation > ul > li.has-sub > a:after{

	display:none;

}
.navigation ul ul{
	position:absolute;
	top:100%;
	left:0;
	background: #d6334a;
	padding: 25px 0;
	width: 250px;
	display:none;
	z-index:999;
}
.navigation ul ul:after{
	content: "";
	width: 100vw;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	background: rgba(214,51,74,.4);
	z-index: 9;
}
.navigation ul ul:before{
	content: "";
	width: 100vw;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	background: rgba(214,51,74,.4);
	z-index: 8;
}
.navigation ul ul ul:after, .navigation ul ul ul:before{
	display:none;
}
/*.navigation > ul > li:hover > ul,*/ .navigation > ul > li > ul.open-sub{
	display:block;
}
.navigation ul ul li{

	width:100%;

	float:left;

	border-bottom:rgba(255,255,255,.1) solid 1px;

	position:relative;

	padding:3px 25px;
	z-index:11;

}
.navigation ul ul li:last-child{
	border:none;
}

.navigation ul ul li:after{

	content:"\f105";

	font-family: 'FontAwesome';

	position:absolute;

	top:9px;

	left:14px;

	color:#fff;

	font-size:14px;

}
.navigation ul ul li:hover{
	background:#fff;
}
.navigation ul ul li:hover:after{
	color:#3b3535;
}
.navigation ul ul li a{

	font-size:14px;

	line-height:22px;

	color:#fff;

	padding:5px 8px;

	display:block;

}
.navigation ul ul li:hover a, .navigation ul ul li:hover ul li:hover a{
	color:#3b3535;
}
.navigation ul ul li ul{

	position:absolute;

	left:99%;

	top:0;

	padding:0;

	display:none;

}
.navigation ul ul li:hover ul li a{
	color:#fff;
}
.navigation ul ul li:hover ul{

	display:block !important;

}
.nav_icon{

	display:none;

}

/*.mega_drop{

	width:100%;

	position:absolute;

	left:0;

	right:0;

	top: 124px;

	width:100%;

	z-index:9999;

	background:rgba(214,51,74,.4);

}

.mega_drop ul{

	 background:#d6334a;

	 padding:25px 0;

	 width:250px;

	 float:left;

	 display:none;

 }

.mega_drop ul li{

	width:100%;

	float:left;

	border-bottom:rgba(255,255,255,.1) solid 1px;

	position:relative;

	padding:3px 25px;

}
.mega_drop ul li:last-child{
	border:none;
}

.mega_drop ul li:after{

	content:"\f105";

	font-family: 'FontAwesome';

	position:absolute;

	top:9px;

	left:14px;

	color:#fff;

	font-size:14px;

}
.mega_drop ul li:hover{
	background:#fff;
}
.mega_drop ul li:hover:after{
	color:#3b3535;
}
.mega_drop ul li a{

	font-size:14px;

	line-height:22px;

	color:#fff;

	padding:5px 8px;

	display:block;

}
.mega_drop ul li:hover a, .mega_drop ul li:hover ul li:hover a{
	color:#3b3535;
}
.mega_drop ul li ul{

	position:absolute;

	left:99%;

	top:0;

	padding:0;

	display:none;

}
.mega_drop ul li:hover ul li a{
	color:#fff;
}
.mega_drop ul li:hover ul{

	display:block !important;

}*/





.carousel-inner > .item .txt{

	opacity:0;

	margin-right:15%;

	

}

.carousel-inner > .item.active .txt{

	opacity:1;

	

  -webkit-animation: opacity_animation 1s ease-out forwards; /* Safari 4+ */

  -moz-animation:    opacity_animation 1s ease-out forwards; /* Fx 5+ */

  -o-animation:      opacity_animation 1s ease-out forwards; /* Opera 12+ */

  animation:         opacity_animation 1s ease-out forwards; /* IE 10+, Fx 29+ */

}



@-webkit-keyframes opacity_animation {

  0%   { opacity: 0; margin-right:15%;}

  100% { opacity: 1; margin-right:0;}

}

@-moz-keyframes opacity_animation {

  0%   { opacity: 0; margin-right:15%;}

  100% { opacity: 1; margin-right:0;}

}

@-o-keyframes opacity_animation {

  0%   { opacity: 0; margin-right:15%;}

  100% { opacity: 1; margin-right:0;}

}

@keyframes opacity_animation {

  0%   { opacity: 0; margin-right:15%;}

  100% { opacity: 1; margin-right:0;}

}


/*-- accordion --*/
.omsc-accordion{
	width:100%;
	float:left;
}
.omsc-accordion .omsc-toggle{
	border:none;
	background:#fff;
}
.omsc-accordion .omsc-toggle .omsc-toggle-title{
  color:#060606;
  font-size:18px;
  line-height:22px;
  text-transform:uppercase;
  font-family: 'Nunito', sans-serif;
font-weight:700;
  background: #f2f2f2;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom:14px; 
  position: relative;
  padding:12px;
}
.omsc-accordion .omsc-toggle-inner{
	padding:10px 0 20px 0;
}
.omsc-accordion .omsc-toggle-title:after {
    background: #dc1337;
    content: "\f067";
    font-family: "FontAwesome";
    font-weight: normal;
    height: 46px;
    left: auto;
    position: absolute;
    right: 0;
    top: 0px;
    width: 43px;
	color:#fff;
	text-align:center;
	padding:12px 0 0;
	border-radius:0 4px 4px 0;
}
.omsc-accordion .omsc-toggle.omsc-expanded .omsc-toggle-title:after {
    content: "\f068";
	font-family: "FontAwesome";
}
.acc_content li {
    font-size: 16px;
    color: #242424;
    line-height: 25px;
    font-family: 'Nunito', sans-serif;
	font-weight:300;
    margin: 0 0 4px;
}

.page-id-10 .inner_banner .txt_bottom {
    display: none !important;
}

.page-id-10 .inner_banner .txt_top::after {
    display: none;
}
.page-id-75 .txt_bottom {
    display: none;
}

.page-id-75 .txt_top::after {
    display: none;
}
@charset "utf-8";
/* CSS Document */


@media screen and (max-width: 1280px) {
	.navigation > ul > li > a {
	font-size: 14px;
    line-height: 22px;
    padding: 4px 12px;
	}
    	
	.carousel-inner > .item .txt {
    display: table;
    float: none;
    margin: 12% auto 0 !important;
    text-align: center;
    }
	.feature_pro .slick-arrow{
		top: -35px;
        transform: translate(-0%);
	}
		
	.feature_pro .slick-arrow.slick-prev{
		left:auto;
		right:50px;
	}
   .feature_pro .slick-arrow.slick-next{
	   right:0;
   }
   .news .txt_cover{
	   height:auto;
	   background:rgba(0,0,0,.6);
   }
   .read_more {
    float: right;
    padding: 5px 0;
    width: 100%;
   }
   .news_title{
	   width:100%;
	   max-width:inherit;
	   padding:5px 0;
   }
}

@media screen and (max-width: 991px) {
  body{
	  overflow-x:hidden;
  }
  .header_top {
    padding-top: 15px;
    text-align: right;
   }
   .mainnavigation {
    border-top: 1px solid rgba(0,0,0,.1);
    padding-top: 15px;
	margin-top: 11px;
   }
  .navigation {
    display: table;
    float: none;
    margin: 0 auto;
  }
  .mega_drop{
	top: 167px;  
  }
  .quick_links{
	  margin-bottom:20px;
  }
  /*-- about --*/
  .slick-arrow.slick-next{
	  right:0px;
  }
  .related_pro .slick-arrow.slick-prev {    
    left: 33px;
    z-index: 99;
   }
}
@media screen and (max-width: 968px) {
	.feature_pro .slick-arrow.slick-prev {
    left: auto;
    right: 57px;
    }
	.feature_pro .slick-arrow.slick-next {
    right: 18px;
   }
}
@media screen and (max-width: 940px) {
	.mega_drop {
    top: 186px;
   }
}
@media screen and (max-width: 865px) {
   /*-- index-- */
   .txt {   
    margin: 6% auto 0;    
    }
	.news:hover .txt_cover{
	height:100%;
	padding-top:0;
 }
 .related_pro .slick-arrow{
	 top:100%;
 }
 .related_pro .slick-arrow.slick-prev {
    left: 46%;
 }
 .related_pro .slick-arrow.slick-next {
    right: 40%;
 }
}

@media screen and (max-width: 768px) {
   .section{
		text-align:center;
	}
   footer{
		padding:55px 0 20px;
	}
  footer, footer a, footer p{
	 text-align:center;
  }
  footer .quick_links ul li {
    display: inline-block;
    float: none;
    margin: 2px 8px 8px;
    width: auto;
 }
  header {    
    padding: 10px 0 10px;
 }
 .logo{
	 text-align:center;
	 margin-bottom:1px;
	 padding-top: 0;
 }
 /*-- menu --*/
 .mainnavigation {
    display:none;
  }

 .nav_icon{	
	background:#d6334a;
	color: #fff;
    display: block;
    float: right;
    font-size: 18px;
    padding: 10px 15px;
	position:fixed;
	top:0;
	right:0;
	cursor:pointer;
	z-index:999;
 }
 
 /*-- index page --*/
   .feature_pro .slick-arrow.slick-prev{
		left:42%;
		
	}
  .feature_pro .slick-arrow.slick-next{
	   right:42%;
   }
   .news{
	 margin-bottom:15px;
 }
 .news:hover .txt_cover{
	height:100%;
	padding-top:10%;
 }
 /*-- inner page --*/
 .inner_banner{
	 min-height:200px;
	 background-position:center center;
	background-repeat:no-repeat;
	
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
     background-size: cover;
 }
 .inner_banner img{
	 display:none;
 }
 
 /*-- enquiry --*/	
 .enquiry_cover .nopadding_left {
    padding-left: 15px;
  } 
 .enquiry_cover .nopadding_right {
    padding-right: 15px;
 } 
 
 /*-- contact --*/
 .detail_address, .detail_call{
	clear: both;
    float: none;
    margin: 0 auto 10px;
    max-width: 350px;
 }
 /*-- product details --*/
 .pro_details .pull-right{
	 margin-bottom:20px;
 }
 /*-- blog page --*/
 .blog_div{
	 padding-left:15px;
 }
 .publishdate{
	 left:15px;
 }
 /*-- blog details --*/
 blog_details{
	 text-align:left;
 }
 .blog_details ul li{
	width:100%;
	text-align:left;
 }
 .reply_txt {
    float: left;
    width: 85%;
  }
  .blog_img {
    margin: 0 auto 15px;
  }
  .date_name span {
	 float:left;
	 }
   
}  
@media screen and (max-width: 710px) {  
	.header_contact{
		margin-bottom:10px;
	}
}

@media screen and (max-width: 640px) {  
 /*-- index --*/
 .carousel-inner > .item{
	 min-height:280px;
	 background-position:center center;
	background-repeat:no-repeat;
	
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
     background-size: cover;
 }
 .carousel-inner > .item > img, .carousel-inner > .item > a > img{
	display:none;
 }
  
 /*-- blog details --*/ 
 .reply_txt {
    float: left;
    width: 80%;
 }	
	
}

@media screen and (max-width: 480px) {
 	
  .inner_banner .txt{
		width:90%;
	}
 .txt_top{
	 font-size:22px;
	 line-height:28px;
 }
 /*-- index --*/
 .feature_pro .slick-arrow.slick-prev{
		left:30%;
		
	}
  .feature_pro .slick-arrow.slick-next{
	   right:30%;
   }
   .txt_bottom{
	  margin: 0 0; 
   }
 /*-- contact --*/
 .contact_icon{
	 width:100%;
 }
 .contact_details {    
    float: none;
    width: 100%;
 }
 .half{
	 width:100%;
 }
 /*-- blog details --*/ 
 .reply_img{
	 margin:0 auto 15px;
	 float:none;
 }
 .reply_txt {
    float: left;
    width: 100%;	
 }
 /*--about --*/
 .related_pro .slick-arrow.slick-next {
    right: 35%;
}	
 
}
@media screen and (max-width: 380px) {
.header_contact span{
	border:none;
	width:100%;
}
}
@media screen and (max-width: 360px) {
	/*-- index --*/
	.txt {
      margin: 12% auto 0;
     }
	.txt_bottom{
	  margin: 0 auto; 
    }
	/*-- inner page --*/
	.inner_banner .txt_top{
		min-width:inherit;		
	}
	.txt_top:after{
		display:none;
	}
	.inner_banner .txt_bottom {
       margin: 0 auto;
     }
		 
}