/********** Template CSS **********/

   @font-face {
    font-family: 'Atami Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Atami Regular'), url('Atami-Regular.woff') format('woff');
    }
    
    @font-face {
    font-family: 'Atami Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Atami Bold'), url('Atami-Bold.woff') format('woff');
    }
:root {
    --primary: #5D70B4;
    --secondary: #2D9E5C;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
    font-family: 'Atami Regular',sans-serif !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
    font-family: 'Atami Regular',sans-serif !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
    font-family: 'Atami Regular'!important;
}
.navbar-nav li a span {
            font-family: 'Atami Regular' !important;
}


/*** Button ***/
.btn {
    font-family: 'Atami Regular';
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar {
    background: rgba(255, 255, 255, .7);
}
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Atami Regular';
    position: relative;
    margin-left: 40px;
    padding: 35px 0;
    color: #3D4B7C;
    font-size: 18px;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--secondary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}
span.mrp_price_of_product {
    padding-left: 5px;
}
.mrpprice{
    padding-left: 5px;
}
.discount-off{
    padding-bottom:0px;
    padding-top:16px;
}
span.discount_price {
    font-weight: 600;
    color: #584e4e;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
        left: 50px;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem!important;
    height: 3rem!important;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 350px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}
.foot a {
    color: #fff !important;
}

form#frmnewsltr .form-control {
    color: #fff;
}
/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}
.foot a {
    color: #fff !important;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}
.bg-foot {
    background: url(../img/best.jpg) center center no-repeat;
    background-size: cover;
    height: 600px;
}
.bg1 {
    background: url(../img/bg1.jpg) center center no-repeat;
    background-size: cover;
}
.bg2 {
    background: url(../img/bg2.jpg) center center repeat;
}
.bg3 {
    background: url(../img/bg3.jpg) center center repeat;
}


.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

a {
    color: #3D4B7C!important;
    text-decoration: none;
}
.contact-us-bg h3{
    margin-bottom: -142px !important;
    margin-top: -29px;
}
form#frmContactus input {
    font-size: 12px;
}
form#frmContactus .form-group {
    margin: 9px;
    padding: 0;
}
form#frmContactus .form-group textarea{
height: 59px!important;
    font-size: 12px;
}
.navbar-nav  .nav.navbar-nav .nav-item .nav>li>a:focus, .nav>li>a:hover {
    background-color: transparent!important;
    color: var(--secondary)!important;
}


.nav-item a:hover::before {
    width: 100%!important;
    left: 0px!important;
}


.nav>li>a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: .5s;
}

.navbar-nav  .nav.navbar-nav .nav-item .navbar-nav>li>a {
    padding-top: 0px!important;
    padding-bottom: 0px!important;
}

.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
    background-color: #eee;
    border-color: #;
}

/*8 may css*/
.navbar-nav>li>a {
    padding-top: 0px;
    padding-bottom: 27px;
    font-size: 18px;
}
.section-title h5 {
    margin: 45px 0 20px 0;
}
.notice{
        padding: 0;
}
p{
    font-size: 16px;
    line-height: 1.7;
    color: #6B6A75;
    padding: 0px 0 35px 0;
    font-family: 'Atami Regular' !important;
}
h5 {
 margin: 41px 0 0px 0;
    padding: 0 0 20px 0;
}
.section-title h1 {
    text-transform: initial;
}
.bg1 h4 {
    margin: 31.99px 0px;
    text-transform: initial;
}
.bg1 p {
    text-transform: initial;
}
.service-item:hover > a.btn{
    border:none;
}
/*a:hover .btn{*/
/*    background:#2bb1e0;*/
/*    color:#000;*/
/*}*/
.btn.btn-primary:hover {
     background:#2bb1e0;
      color: #000 !important;
}
.btn.btn-primary i :hover {
    color: #000 !important;
}
.nav-item ul li a span {
    font-size: 18px;
}
.service-item h4 {
    text-transform: initial;
}
.service-item p {
    text-transform: initial;
}
.testimonial-item h4 {
    text-transform: capitalize;
        padding: 30px 0 0px 0;
        margin-bottom:-13px !important;
}
.testimonial-item small {
    font-size: 14px;
        color: #6b6a75;
    margin: 0 0 0px -28px;
}
.navbar-nav.navbar-right > li.dropdown > a.account>img {
    max-width: 20px !important;
}
.cart img {
    width: 20px !important;
    height: 20px !important;
        /*margin: -126px 0 0 107px;*/
}
ol, ul, dl {
    margin: 0 0 0 -30px;
   }
.product-desc p {
    font-size: 16px;
    line-height: 0.9;
    color: #6B6A75;
     padding: 0px 0 0px 0; 
    font-family: 'Atami Regular';
}
.bg-primary a{
        font-family: 'Atami Regular',sans-serif !important;
}
.bg4 {
    background-color: #5D70B4;
}
.hov1:hover {
    background-color: #5d70b4ad;
    color: white;
}
.dropdown-menu li {
    position: relative;
    border-bottom: 1px solid #6b6a7538;
}
.navbar-nav.navbar-right > li.dropdown > .dropdown-menu li a:hover {
    color: #013499;
    background-color: #fff;
}
ul.navbar-nav > li > a {
    font-family: 'JaapokkiRegular';
    text-transform: uppercase;
    font-size: 14px;
    padding-top: 0px;
    padding-bottom: 0px;
    line-height: 20px;
    color: #5D70B4 !important;
}
.dropdown-menu>li>a {
    font-weight: 400;
    color: #5D70B4 !important;
}
.navbar-nav {
    margin-top: 24px;
}
li.dropdown.account-menu.show {
    left: 41.1px;

}

li.dropdown.account-menu .dropdown-menu{
    position: initial !important;

}
li.dropdown.user-menu .dropdown-menu.show{
    display: flex !important;
    
}
li.dropdown.user-menu.open .dropdown-menu{
    display: flex !important;
    
}

li.dropdown.account-menu.open {
    left: 41.1px;
    /*display: inline-block; !important;*/
}
li.dropdown.user-menu.open a {
    left: 31px;
}
li.dropdown.user-menu.show a {
    left: 31px;
}
ul.dropdown-menu{
    margin-bottom: -30px;
}
ul.dropdown-menu.show {
    margin-bottom: -30px;
}
.dropdown-toggle::after{
    top: 1px;
    position: relative;
}
.nav-bar i.fa.fa-times {
    display: block;
}
.nav-bar i.fa-bars {
    font-size: 35px;
    /*display: none;*/
     margin: 20px 0 0 -340px;
}
.white-text {
    color: #fff!important;
    font-size: 15px;
    margin: 0 0 0 -85px;
}
.sec4bg h4{
    margin: 20px 0 12px 0;
    font-size: 18px;
}
.middle-center p{
    margin: 0px 80px 0 -125px;
}
.animated .img-box-2 p {
    color: #fff !important;
    margin: 0 0 0 0;
}

/*.swatches{
        padding-left: 70px !important;
}*/
.fixed-pull-left{
        /*margin: 0 0 0 -148px;*/
}



/*detail page css*/
.offer {
    background: #01a748 !important;
}
.product-list h4 span, .product-detail h2 span {
    color: #5c71b4 !important;
}
strong{
  color: #01a748 !important;
}
.badge {
    background-color: #5065ae;
    border-radius: 50% !important;
        /*margin: -48px 0 0px 107px;*/
}
.btn-circle {
    background: #4c61ac!important;
    color: #fff !important;
}
span.cross-btn-st {
    color: #5c6fb3!important;
}

.space-top .formBtn {
    border: 2px solid #596cb2;
    color: #596cb2!important;
    margin-top: 30px;
}
button.formBtn.pull-right.checkout-btn:hover {
    border: 2px solid #576bb1;
    color: #ffffff!important;
    background: #576bb1!important;
}
p.basket-sku {
    margin-bottom: -35px !important;
}
.shipping-box h4 {
    font-size: 16px;
}
#header-sticky-wrapper {
    z-index: 99999;
    position: sticky;
}
header.navbar{
    position:fixed;
}
strong {
    color: #000!important;
}
.btn-login-with{
   color: #3b5998 !important;
}
.sec2bg {
    min-height: 0px !important;
}
.navbar-nav.navbar-right > li.dropdown > .dropdown-menu li a {
    padding: 0px 0 0 2px !important;
}

ul.navbar-right li {
    padding: 4px 0 !important;
}
ul.nav.navbar-nav  {
    /*margin-top: 13px !important;*/
}
ul.nav.navbar-right{
    /*margin: -94px 0 -79px 160px !important;*/
}
.social_nav {
    padding-top: 0px!important;
}
.navbar-nav li a  {
    font-family: 'Atami Regular' !important;
}
.bg0-hov:hover {
    background-color: #5d70b4 !important;
}
.ser-t b {
    background: #5468b0 !important;
}
.ser-t span i {
    border: 2px solid #4157a7 !important;
}
.formBtn {
    border: 2px solid #5769a9 !important;
    color: #5769a9!important;
}
button.formBtn:hover {
  background: #556ab1!important;
}
.display-table {
    margin-left: 104px;
}
h2.heading.m-text5.t-center.title-4 {
    margin: 29px 188px 0 0;
}
.display-table {
    height: 465px;
}
.p-r-15 {
    padding-right: 22px !important;
  margin-right: 21px;
    margin-left: -38px;
}
.section-title h5 {
    margin: 0px 0 20px 0 !important;
}
.bg6 {
    /*margin-top: 50px !important;*/
    padding-left: 115px;
}
/*.slick3-dots{
    display: inline-flex !important;
}
.slick3-dots li {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 51px;
    width: 90px;
    height: 90px;
    left: 140px;
    top: 456px;
    bottom: 22px;
}*/

/*.sec4bg.box-cat  {
    background-color: #5d70b4 !important;
}
.light-velet {
    color: #ffffff !important;
}
.container-fluid.py-5{
        background: #56565621;
}
.wrap-slick3 .next-slick2 {

  right: 11px;
  margin-top: 215px;
}
.wrap-slick3 .prev-slick2 {

  left: 125px;
    margin-top: 215px;
}
*/


@media only screen and (max-width: 700px) {
    .p-r-15 {
    margin-right: 0px;
}
    .bg6 {
    padding-left: 19px !important;
}
    .respon1 {
       width: 33%;
     }
     .section-title h5 {
         margin: -27px 0 20px 0;
    }
    p {
    font-size: 16px;
     padding: 0px; 
  }
.p-b-90 {
      padding-bottom: 70px;
      }
   .best-dream-img {
    padding-bottom: 0%;
        margin-top: 33px;
   }
   .service-item {
    margin-bottom: -15px;
  }
  .test-sec {
    background: #EEF9FF !important;
}
 .owl-item.center .test-sec {
    background: #FFFFFF !important;
}
.service-item p {
    text-transform: initial;
    padding: 0 25px 40px 25px;
}
.testimonial-item h4 {
    margin-bottom: -30px !important;
    font-size: 20px;
}
.testimonial-item small {
    margin: 0 0 0px -20px;
}
.bo2 {
    border-left: 1px solid #d9d9d9 !important;
    border-right: 1px solid #d9d9d9 !important;
}

.p-r-15 {
    margin-left: 0px !important;
}
.white-text {
    font-size: 15px;
     margin: 0 0 0 0px; 
}
strong {
    color: #000!important;
}
div.no-padding .img-responsive {
    display: inline-flex !important;
}
h2.heading.m-text5.t-center.title-4 {
    margin: 30px 0px 0 0;
}
.p-r-15 {
     padding-right: 0px !important; 
    margin-left: -8px !important;

}
.s-text8, .s-text8 a {
    margin: 0 0 55px 0;
}
.sec12bg {
    background-color: #ffffff;
    /* background-image: url(https://www.mybilberry.com/uploads/product/imgbg/presto_18954.jpg); */
    background-size=cover: ;
    background-image: none !important;
}
.sec12bg .btn-cart a.btn.addtocart {
    color: #5e71b5!important;
    background: #ffffff!important;
    border-color: #5e71b5!important;
}
.sec12bg .btn-cart a.btn.addtocart:hover {
    color: #ffffff!important;
    background: #5e71b5!important;
    border-color: #5e71b5!important;
}
.formBtn {
    width: 100%!important;
    /*margin: 0 70px 0 -13px;*/
}
header .mobile-menu nav {
    top: 250px !important;
}
.nav-bar i.fa.fa-times {
    color: #777 !important;
        margin-top: -38px;
}
header .mobile-menu nav {
    top: 307px !important;
}
/*.space-gap {
    padding: 25px 0px;
}
img.img-logo {
    margin-top: -36px !important;
}
*/
.click
{
    margin: 0px 0 0 0;
}
.fa-times .click
{
    margin: 58px 0 0 0;
}
.slick-track {
    margin-top: 90px;
}
.carousel-control-next-icon {
    margin-top: 60px;
}
.carousel-control-prev-icon{
        margin-top: 80px;
}
ul.nav.navbar-right {
    margin: -94px 0 -79px 160px !important;
}
.cart img {
    margin: -126px 0 0 107px;
    width: 28px !important;
    height: 24px !important;
    margin-top: -3px !important;
}
.badge {

     margin: -48px 0 0px 107px; 
}
#image-slider{
        width: 2527px;
    transform: translate3d(-1083px, 0px, 0px);
    height: 419px;
    padding-bottom: 0%;
/*    padding-top: 153px;*/
}
.form-horizontal{
    margin-top: 142px !important;
}
 ul.navbar-nav > li:last-child a {
    margin-right: 35px !important;
    padding-left: 7px !important;
}   
.menu a:link, a:visited {
    text-decoration: none;
    color: #fff !important;
    text-decoration: none;
}
.menu a:link, a:visited {
    text-decoration: none;
    color: #fff7!important;
    text-decoration: none;
    /* color: #ff5800; */
}
.bg-primary.bg-matt {
    margin: 60px 0 0 0;
}
.swatches {
    padding-left: 30px !important;
}
.sec1bg.ts-padding .white-text {
    color: #000!important;
    margin: 0;
}
img.img-logo {
    height: auto;
}
.nav-bar i.fa.fa-times {
    margin-top: 10px;
}
header .mobile-menu nav {
    bottom: 3px !important;
}
header .mobile-menu nav {
    top: 306px !important;
}
.navbar-nav.navbar-right > li.dropdown > a.account>img {
    margin: 11px 0 0 0;
    max-width: 24px !important;
}
.top_nav .welcome-text{
    display:none !important;
}
.lSSlideWrapper #image-slider{
/*    height: 500px !important;*/
/*    margin: -70px 0 0 0;*/
}
.setup-content .form-horizontal {
    margin-top: -60px !important;
}
.cart-row.itme span {
    font-size: 10px;
        top: 0px;
}
.form-space-top .box-form{
    margin-top: -120px;
}
ul.navbar-nav > li:last-child a {
    margin-top: 10px ;
}
.bg-inner.bg-innner.itme {
    margin-top: 55px !important;
}
.sec4bg h4 {
    margin: 0px 0 0px 0;
}
span.remove_product {
    position: relative;
    top: -25px !important;
    left: 18px;
}

}

@media only screen and (max-width: 1200px){
 ul.navbar-nav > li:last-child a {
    margin-right: 35px !important;
    padding-left: 7px !important;
}   
.menu a:link, a:visited {
    text-decoration: none;
    color: #fff !important;
    text-decoration: none;
}
.menu a:link, a:visited {
    text-decoration: none;
    color: #fff7!important;
    text-decoration: none;
    /* color: #ff5800; */
}
.service-item .rounded {
    padding: 0 15px 0 15px;
}
.testimonial-carousel .owl-dots {
    margin-left: 100px;
    display: block;
}    
 .testimonial-carousel .owl-dot{
        margin-top: 35px;
 }

 .navbar-nav > li.dropdown.open > .dropdown-menu {
    margin-top: 0px ;
    margin-left: -8px;
    display: flex;
}
.navbar-nav.navbar-right > li.dropdown > .dropdown-menu li a {
    padding: 0px 0 0 0px !important;
    font-size: 11px;
}   

}

@media only screen and (max-width: 769px) {
  .top_header_area {
    height: 10px!important;
    margin-top: -10px;
}
header .mobile-menu nav {
    top: 245px !important;
}
header .mobile-menu nav ul li a {
    padding: 6px 20px !important;
}
.testimonial-item.bg-light.my-4 {
    height: 370px !important;
}
.cms-content .p-b-30 {
    margin-top: -78px !important;
}
section.contact-area {
    margin-top: 80px !important;
}
/* .quantity_fild input {
    width: 15px !important;
} */
.quantity_fild .value-button {
    width: 25px !important;
}
.stepwizard-step {
    display: inline-grid;
    text-align: center;
    position: relative;
    margin-top: 50px;
}
a.btn.btn-success.btn-circle {
    margin: 0 7px 0 15px;
}
a.btn.btn-success-2.btn-circle.unActivetab {
    margin: 0 7px 0 8px;
}
.stepwizard {
    margin-bottom: 70px !important;
}
.cart-row.itme {
    margin-top: 0px !important;
}
.text-left.mb-5 {
    padding-bottom: 0;
    margin-bottom: 0px !important;
    font-size: 15px;
}
.cart-row.itme .cross-btn-st, .m_sub_price, .box-padding {
    font-size: 13px;
    top: 3px !important;
}
.checkout-btn {
    width: 70%!important;
    margin: 0 70px 0 -13px;
}
button.formBtn.form-back-Btn {
    margin-left: 35px;
    margin-bottom: -10px;
}
button.formBtn.pull-right.place-oreder.mobile-space {
           margin-right: 15px;
    /* margin-top: 16px; */
    margin-bottom: 30px;
}
p.basket-sku {
    margin-bottom: -30px !important;
}
.space-top button.formBtn{
        margin: auto;
    width: 85% !important;
}
.mobile-space .formBtn {
    margin: auto;
    margin-right: 19px;
    width: 85% !important;
}
.form-group.product-options {
    margin-left: -10px;
}
#msg-box3-5 {
   /* height: 800px !important;*/
       height: auto !important;
}
.form-horizontal {
        margin-top: 125px !important;
    margin-bottom: 65px;
}
button.btn-login-with-submit.submit-bg.m-b-10 {
    margin-top: 30px;
}
.form-space-top {
    margin-top: 160px !important;
}
form.form-horizontal.reset-password {
    margin-top: 29px !important;
}
.form-space-top.reset-password1 {
    margin-top: 67px !IMPORTANT;
}
.mobile-space-one .boder-login.space-top {
    margin-top: 65px !important;
    margin-bottom: -50px;
}
span.login100-form-title.p-b-40 {
    margin-top: 0px !important;
}
.box-padding-price.form1 {

    margin-top: 56px;
}
.space-padding {
    margin-top: 71px;
}
.box-form .login100-form-title-1 {
    margin-bottom: 66px !important;
}
.form-space-top.profile {
    margin-top: -60px !important;
}
.col-md-6.form-space-top .box-social {
    margin-top: -195px;
}
form#frmLogin {
    margin-top: -4px !important;
}
.form-space-top .login100-form-title {
    margin-top: -133px !important;
}
.setup-content .form-horizontal .text-dark {
    margin-top: 75px !important;
}
.box-padding-login h3 {
    margin-bottom: 15px !important;
}
button.formBtn.pull-right.checkout-btn {
    margin-right: 59px;
}
/*.item-slick1.item2-slick1.slick-slide.slick-current {
    height: 30vh;
}
.item-slick1.item1-slick1.slick-slide.slick-current.slick-active {
    height: 30vh;
}
.bg3 {
    margin-top: -146px;
}
.carousel-control-next-icon {
    margin-top: -30px;
}
.carousel-control-prev-icon {
    margin-top: -15px;
}*/
.item-slick1 {
    height: 204px;
}
.bg6 a, .bg6 .single-contact, .bg6 .t-center {
    font-size: 12px !important;
    text-align: left;
}
.contact-us-bg {
    height: 555px !important;
}
.size_chart {
    margin-top: 0px !important;
}

.cms-content {
    margin-top: 60px !important;
}
.panel-default>.panel-heading {
    margin: 0px 15px 5px 15px !important;
}

.account-profile .spec h2 {
    margin-top: 45px;
}
.ser-t {
    margin: 23px auto 0 auto;
    width: 49%;
    display: block;
}
.navbar-nav.navbar-right > li.dropdown > .dropdown-menu {
    /*display: block;*/
}
.navbar-nav.navbar-right > li.dropdown > .dropdown-menu li a {
    padding: 0px 0 0 0px !important;
    font-size: 15px;
    width: 160%;
}
ul.navbar-nav > li:last-child a {
    margin-top: 5px !important;
}
input#btnSubmit {
    width: 90% !important;
    border-radius: 20px;
}
.login-with-facebook .social-login i, span {
    color: #4a5a96;
    /*font-size: 18px;*/
}
.single-contact span {
    color: #fff;
    font-size: 12px;
}
.form-space-top.register-page {
    margin-top: 100px !important;
}
.register-page button#btnRegister {
    margin-bottom: -15px !important;
}
.navbar-nav > li.dropdown.open > .dropdown-menu {
    display: block;
}
.reset-password2 {
    margin-top: 175px !important;
}
.dropdown-menu li {
    border-bottom: none;
}
.jil-link {
    float: right !important;
}
.cart-plus, .cart-min {
    padding: 5px !important;
}




}


.reset-password2 .box-form {
    border-right: none;
}
.reset-password2 .formBtn {
    width: 50%;
}
.reset-password2 .login100-form-title {
        margin-top: 80px !important;
    padding-bottom: 43px !important;
}
.reset-password2 {
    /*margin-top: -11px !important;*/
}
.reset-password-sec {
    height: auto !important;
}

.profile_image .img-responsive {
    width: auto !important;
    margin-bottom: 20px;
}
.form-space-top .form-group label {
    margin-bottom: 10px;
    font-size: 17px;
}
.img-responsive {
    /*width: 100% !important;*/
    margin-bottom: 20px;
}
input#btnSubmit {
    width: 65%;
    margin-top: 20px;
}
[class*="cms-content"] {
     padding-bottom: 100px !important; 
}
.cms-content {
padding: 100px 0 0 0 !important;
}
section.banner.bgwhite {
    padding-bottom: 0;
}
#msg-box3-5 {
    height: 550px;
}
section.contact-area {
    margin-top: 30px;
}
.cms-content .page-content {
    margin-top: -67px;
}
.page-content .section-title {
    margin-top: 50px;
}
p#status_msg {
    font-size: 12px;
}
.form-back-Btn {
    border-radius: 23px!important;
    margin-top: 15px;
}
span.cross-btn-st {
    margin-left: 12px;
}
.col-md-12.hidden-xs .basket-sku {
    margin-bottom: -32px !important;
}
.stepwizard {
    margin-bottom: 0px !important;
}
.box-form {
    margin-top: -90px;
}
.box-form .login100-form-title-1 {
    margin-bottom: 25px;
}
button#btnRegister {
    margin-top: 10px;
}
span.login100-form-title-1.p-b-40 {
    margin-bottom: 60px;
    margin-top: -50px;
}
span.login100-form-title.p-b-40 {
    margin-top: -60px;
}
.login-form span.login100-form-title.p-b-40 {
    margin-top: 30px;
}












.social_nav .nav.navbar-nav {
      margin-top: -5px !important;
}

.navbar-nav.navbar-right > li.dropdown > .dropdown-menu {
    margin-top: 0px !important;
}
.size_chart {
    margin-top: -25px;
}
.section-title{
    margin-top: -20px;
}

/*.navbar-nav.navbar-right > li.dropdown.open > .dropdown-menu {
    display: flex;
}
.navbar-nav.navbar-right > li.dropdown.show > .dropdown-menu {
    display: flex !important;
    visibility: visible;
}
.navbar-nav.navbar-right > li.dropdown.open > a.account {
    color: #333;
    left: 35px;
}
.navbar-nav.navbar-right > li.dropdown.show > a.account {
    color: #333;
    left: 35px;
}*/


.panel-default>.panel-heading {
    background-color: black;
    border-color: #fff;
    color: #fff;
    padding: 15px 20px !important;
    margin: 0px 45px 10px 45px;
}
.btn-warning {
    color: #000;
   border: 2px solid #5a6db3 !important;
    color: #5a6db3 !important;
    text-transform: uppercase;
    font-size: 19px !important;
    background-color: white !important;
}
.btn-warning:hover {
    background-color: #5a6db3 !important;
    border-color: #5a6db3 !important;
    text-transform: uppercase;
    font-size: 19px !important;
}
.user-auth-nav .account {
    margin-left: 28px !important;
}

.cart-plus, .cart-min {
    font-weight: bold;
    }