body {
	background:#fff;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 300;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
}
a:focus, a:hover {
    color: #fff13 !important;
	text-decoration:none;
	outline: 0;
}
a{
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.btn:focus {
    box-shadow: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
}

h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 45px;
	text-transform: uppercase;
}
h5 {
    color: #fe7129;
    font-size: 18px;
    line-height: 16px;
}
img { max-width:100%;}
.section-padding {padding: 80px 0;}
::selection {
  background-color: #ff0054;
  color: #fff;
}

.underline-border {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.underline-border:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #ff0054;
  height: 2px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.underline-border:hover:before, .underline-border:focus:before, .underline-border:active:before {
  left: 0;
  right: 0;
}

.btn.theme-btn {
    background: #ff0054;
    border-radius: 0;
	border:none;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700 !important;
    letter-spacing: 2px;
    padding: 11px 20px;
	position:relative;
	overflow:hidden;
}
.btn.theme-btn::before, .btn.theme-btn::after {
    position: absolute;
    content: "";
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
    height: 100%;
    left: -100%;
    top: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.btn.theme-btn::after {
	-webkit-transition: all 0.7s ease-in-out;
	-moz-transition: all 0.7s ease-in-out;
	-o-transition: all 0.7s ease-in-out;
	transition: all 0.7s ease-in-out;
}
.btn.theme-btn:hover::before, .btn.theme-btn:hover::after{width:100%;left:100%;}

.heading {
    margin-bottom: 40px;
    text-align: center;
}
.h-border {
    display: inline-block;
    background: #000000;
    width: 45px;
    margin: auto;
    height: 2px;
    vertical-align: middle;
}
.g-border {
    height: 18px;
    display: inline-block;
    width: 18px;
    background: #ff0054;
    margin: auto;
    border-radius: 100%;
    vertical-align: middle;
    margin: 0 6px;
}

#header {
    transition: all 0.4s;
    background: #000;
    border-bottom: 1px solid #fff;
}
#header.fixed {
    position: fixed;
    z-index: 1000;
    border-color: #ff0054;
	width:100%;
}
#header .navbar ul li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    padding: 5px 0;
    margin: 0 15px;
	font-weight: 500;
}
#header .navbar ul li a:hover {
    color: #ff0054;
}
#header .navbar ul .login-box a:hover {
    color: #fff;
}
#header .navbar ul .login-box a {
    color: #fff;
    padding: 5px 25px;
    margin-left: 35px;
	margin-right: 0;
}

.modal .modal-dialog {
    transform: translateY(0) scale(0) rotateZ(360deg);
	transition: all 300ms ease-in-out;
}
.modal.show .modal-dialog {
    transform: translateY(170px) scale(1) rotateZ(0deg);
	transition: all 300ms ease-in-out;
}
.modal-backdrop.show {
    z-index: 99;
}
.modal-content {
    width: 70%;
    margin: 0 auto;
    padding: 10px 30px 30px;
	box-shadow: 0 16px 28px 0 rgba(0,0,0,0.22),0 25px 55px 0 rgba(0,0,0,0.21);
}
#loginmodal .modal-content .close {
    font-size: 1.8rem;
    color: #969DA4;
    opacity: 1;
    display: block;
    width: 15px;
    height: 40px;
    margin-left: auto;
    margin-bottom: 10px;
	outline:none;
}
.popup_form.login_form .form-group { position:relative;}
.popup_form.login_form .form-group .form-control {
    border-radius: 0;
    font-size: 12px;
}
.popup_form.login_form .iconed_field::before {

    position: absolute;
    top: 50%;
    color: #969DA4;
    width: 2em;
    text-align: center;
    font-size: 15px;
    transform: translateY(-50%);
    right: 0;

}
.popup_form.login_form .icon-user::before {
    content: "\f007";
    font-family: fontawesome;
}
.popup_form.login_form .icon-lock::before { content:"\f023"; font-family: fontawesome;}
.popup_form.login_form .forgot_password {
    color: #ff0054 !important;
    padding: 0 !important;
	margin-left: 30px !important;
}
.popup_form.login_form .form-group:last-child {
    margin-bottom: 0;
}
.popup_form.login_form  .submit_button {
    display: block;
    width: 100%;
    background: #ff0054;
    border: 0;
    color: #fff;
    padding: 8px 0;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
	transition: all 0.3s;
}
.popup_form.login_form  .submit_button:hover {opacity: 0.6;}
.popup_form.login_form .form-control:focus {
    box-shadow: none;
}





.homeSlider .item {
    background-size: cover;
	background-position: right;
    position: relative;
    z-index: 1;
    height: 650px;
}

.homeSlider .m-slider {
    display: none !important;
}

.about.rs_withgap {
    margin-top: 130px;
}
.about{
    position: relative;
}

.about .box .text-box  p {
    margin-top: 25px;
    margin-bottom: 25px;
}

.about .box .diamond_j_cont {
    position: absolute;
    right: 0;
    width: 652px;
    right: 0;
    top: -120px;
}
.about .box .diamond-img {
    background-image: url(../images/Diamond_Sprite.png);
    width: 180px;
    height: 150px;
    background-size: 100%;
    margin-left: auto;
    margin-right: auto;
    background-position: left 3px top -2837px;
    position: -webkit-sticky;
    position: sticky;
    z-index: 99;
    top: 240px;
}
.about .box .diamond_b {
    margin-top: 0;
    margin-right: 9px;
    height: 156px;
    overflow: visible;
}
.diamond_j_cont {
    position: absolute;
    right: 0;
    width: 652px;
    right: 0;
    top: -120px;
}

.product-category {
    background: #F9F9F9;
}
.product-category .mt-4 {
    margin-top: 30px !important;
}
.product-category .box {
    overflow: hidden;
}
.product-category .box .img-box img {
    width: 100%;
    position: relative;
    transition: all 0.8s;
}
.product-category .box:hover img {
    transform: scale(1.3);
	opacity: 0.6;
}
.product-category .box .img-box .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}
.product-category .box .img-box .title a {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}
.product-category .box .img-box figcaption  {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.product-category .box .img-box figcaption::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    border: 1px solid #fff;
    content: '';
}

.product-category .box:hover figcaption::before {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.4s;
}
.product-category .box figcaption::before {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.shop-features.section-padding {
    padding: 40px 0;
}
.shop-features .box {
    margin-bottom: 30px;
	overflow: hidden;
}

.shop-features .box:hover .img-box img {
    opacity: .8;
    transform: scale(1.1);
}
.shop-features .box .img-box img {
    opacity: 1;
    transition: all .5s linear;
    transform: scale(1.0);
	width: 100%;
}
.shop-features .box .img-box .text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
	color:#fff;
}
.shop-features .box .img-box .text-box h2 {
    font-size: 3.5em;
    text-transform: uppercase;
    letter-spacing: .4em;
    margin-bottom: 30px;
    font-weight: 700;
}

.shop-features .box .img-box .text-box h3 {
    font-size: 1.3em;
    font-weight: 700;
    letter-spacing: .3em;
    margin-bottom: 1em;
    text-transform: uppercase;
}
.shop-features .box .img-box .text-box p {
    font-size: 15px;
    font-weight: 400;
}


.our-featured .ourFeatured .item {
    padding: 0 15px;
    text-transform: uppercase;
    text-align: center;
    overflow: hidden;
}
.our-featured .ourFeatured .item .img-box {
    background: #f7f7f7;
	position:relative;
}

.our-featured .ourFeatured .item .text-box {
    position: absolute;
    top: 50%;
    width: 250px;
	transform: translateY(-50%);
	overflow:hidden;
}

.our-featured .ourFeatured .item .text-box .item-limit {
    transform: translateX(100%);
}
.our-featured .ourFeatured .item:hover .text-box .item-limit {
    transform: translateX(0);
}
.our-featured .ourFeatured .item .text-box h4 {
    line-height: 60px;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    transition: all 350ms ease-in-out 0s;
}
.our-featured .ourFeatured .item .text-box .shop-btn {
    font-size: 10px;
    line-height: 28px;
    background: #222;
    display: inline-block;
    padding: 0 10px;
    color: #FFF;
    position: relative;
    margin: 5px 0;
    transition: all 350ms ease-in-out 0s;
    font-weight: 400 !important;
    transform: translateX(-200%);
}
.our-featured .ourFeatured .item:hover .text-box .shop-btn {
    transform: translateX(0);
}
.our-featured .ourFeatured .item .text-box .shop-btn:hover {
    background: #ff0054;
}
.our-featured .ourFeatured .item .text-box .item-name {
    font-size: 16px;
    color: #000;
    line-height: 40px;
	font-weight:400;
}


.our-featured .ourFeatured .item .text-box .item-name::after {
    content: "";
    display: block;
    margin: auto;
    width: 50px;
    height: 1px;
    background-color: #ff0054;
}

.our-featured .item .text-box a span:hover {
    color: #ff0054;
}
.our-featured .item .text-box a span {
    color: #000;
    font-weight: 500;
    font-size: 14px;
    margin-top: 15px;
    display: block;
}

.our-featured .slick-arrow {
    background: #000;
    width: 35px;
    height: 35px;
    z-index: 99;
    transition: all 0.4s;
	
}
.our-featured .slick-arrow:hover {
    background: #ff0054;
}
.our-featured .slick-prev {
    left: -20px;
}
.our-featured  .slick-next {
    right: -20px;
}

.brands { background: #F9F9F9;}
.brands .brands-name li {
    display: inline-block;
    border: 1px solid #d0d0d0;
    margin-right: 5px;
    padding: 5px 1px;
	transition: all 300ms ease-in-out 0s;
	background:#fff;
}
.brands .brands-name li:hover {border-color:#ff0054;}
.brands .brands-name li img {transition: all 300ms ease-in-out 0s;}
.brands .brands-name li:hover img {transform: scale(1.1);}

.footer {

    background-image: url(../images/footer-bg.jpg);
    background-position: bottom center;
    background-size: auto;
    position: relative;
    color: #fff;

}
.footer::before {
    content: "";
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.footer .footer-box .social-icon li {
    display: inline-block;
    margin-right: 5px;
}
.footer .footer-box .social-icon li a {
    display: block;
    width: 35px;
    height: 35px;
    line-height: 38px;
    text-align: center;
    font-size: 16px !important;
    color: #fff !important;
    background: #606060;
    transition: all 0.4s;
	position:relative;
}
.footer .footer-box .social-icon li a:hover {
    background: #ff0054;
    border-radius: 50%;
    transform: rotate(360deg);
}
.footer .box li a::before {
    content: "\f178";
    position: absolute;
    right: 35px;
    font-family: FontAwesome;
    font-size: 12px;
    line-height: 22px;
    opacity: 0;
    transition: all 0.3s;
}
.footer .box li a:hover::before {right: 10px; opacity: 1;}
.footer .footer-box p {
    margin: 20px 0;
}
.footer .box h4 {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
	margin-bottom:25px;
	margin-top: 35px;
}
.footer .box ul li {list-style:none;}
.footer .box ul li a {
    line-height: 30px;
    color: #fff;
    font-size: 14px;
}
.footer .box ul li a:hover {
	color:#ff0054;
    transition: all 0.4s;
}
.footer .box .form-group .form-control {
    font-size: 12px;
    background-color: transparent;
	color:#fff;
    border: 1px solid #fff;
    border-radius: 0;
	position:relative;
    padding-left: 38px;
}
.footer .box .form-group .form-control:focus {
    border-color: #ff0054 !important;
    box-shadow: none;
}
.footer .box .form-group .form-control::placeholder{color:#fff;}
.footer .box .form-group .fa.fa-envelope {

    position: absolute;
    line-height: 38px;
    margin-left: 15px;

}
.footer .box form .Sub-btn {
    display: block;
    width: 100%;
    padding: 8px !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
}

.copy-right {background:#222; color:#fff; padding: 12px 0;}
.copy-right p { margin-bottom: 0; line-height:30px;}

.copy-right ul li {display: inline-block;}
.copy-right ul li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    padding: 5px 0;
    margin: 0 15px;
    font-weight: 500;
}
.copy-right ul li a:hover {
    color: #ff0054 !important;
}








@media screen and (min-width: 1600px) {.homeSlider .item {height: 700px;}}

@media screen and (max-width: 1199px) { 

.brands .brands-name li {width: 10em;}
.brands .brands-name .list-width {
    max-width: 96%;
}
.footer .footer-box .social-icon li a {
    width: 30px;
    height: 30px;
    line-height: 32px;
}
.footer .footer-box .social-icon li {
    margin-right: 0px;
}
.about .diamond_j_cont {
    display: none;
}
.fullContent {
    max-width: 100% !important;
    flex: 0 0 100%;
    text-align: center;
}
.about.rs_withgap {
    margin-top: 0;
}

}




@media screen and (max-width: 991px) {

.navbar-toggler {padding: 0;width: 75px;}	
#header .ham1.active .bottom {stroke-dashoffset: -138px;}
#header .ham1 .top {stroke-dasharray: 40 139;}
#header .ham1.active .top {stroke-dashoffset: -98px;}
#header .line {fill: none;transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;stroke: #ff0054;stroke-width: 5;stroke-linecap: round;}
#header .ham1 .bottom {stroke-dasharray: 40 180;}
#header .hamRotate.active {transform: rotate(45deg);width: 80%;}
#header .hamRotate {width: 80%;}
#header .ham1.active .top {stroke-dashoffset: -98px;}
#header .navbar ul .login-box a {padding: 5px 25px; display: inline-block; margin-left: 15px;}
#header .navbar .navbar-nav { margin-bottom: 15px;} 
#header .navbar ul li a {margin-bottom: 5px;}
.brands .brands-name .list-width { max-width: 65%;}
.brands .brands-name li { margin-bottom: 10px;}

.mobile-slider { display: block;}
.mobile-slider .item {height: 450px;background-position: center; background-size: cover;}
.homeSlider { display: none;}

.about .box .diamond_b {
    margin-bottom: 220px;
}
.section-padding {padding: 60px 0;}

}

@media screen and (max-width: 767px) {
.brands .brands-name .list-width {max-width: 58%;}
.mobile-slider .item {height: 350px;}


.about .box .diamond-img {
    width: 80px;
    height: 60px;
    background-position: left -2px top -3917px;
    top: 240px;
}

.about .box .diamond_b {
    margin-top: 0;
    margin-bottom: 80px;
    height: 72px;
}
.shop-features .box .img-box .text-box h2 {
    font-size: 2.5em;
    margin-bottom: 5px;
}
.shop-features .box .img-box .text-box h3 {
    font-size: 1em;
    margin-bottom: 5px;
}
.shop-features .box .img-box .text-box p {
    font-size: 12px;
}

.product-category .box {
    margin-bottom: 30px;
}
.product-category .box .img-box figcaption::before {
    bottom: 60px;
}
.copy-right p {text-align:center;}
.copy-right ul.text-right {text-align: center !important;}


}


@media screen and (max-width: 575px) {
.navbar-brand {margin-left: 15px; max-width: 15%;}
.section-padding {padding: 30px 0;}
}

@media screen and (max-width: 480px) {


}	


@media screen and (min-width: 992px) {.mobile-slider { display: none;}}