body {
    font-size: 15px;
    font-weight: 400;
    color: #848484;
    font-family: 'Josefin Sans', sans-serif;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb {
  background-color: #0b1840;
  outline: 1px solid slategrey;
}
h1, h2, h3, h4, h5, h6 {
    color: #0b1840;
    font-weight: 600;
    font-family: 'Josefin Sans', sans-serif;
}
p {
    font-size: 15px;
    font-weight: 400;
}
/*
.pageloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999;
    opacity: 1;
    background-color: #fff;
}
.pageloader::before {
    content: url(../img/preloader.gif);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100px;
    height: 100px;
    margin: auto;
}
*/
/***** Prealoader *****/
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    z-index: 1001;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
    left: 15px;
    bottom: 15px;
    border-radius: 50%;
}
#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background-color: lightgray;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: multiply;
    z-index: 1000;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
#loader-wrapper .loader-section.section-left {
    left: 0;
    background-color: #0b1840;
}
#loader-wrapper .loader-section.section-right {
    right: 0;
    background-color: #cf142e;
}
#loader {
    display: block;
    width: 100px;
    height: 100px;
    margin: 50 auto;
}
#loader img {
    width: 100px;
}
.circ-one {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background: #0b1840;
    border-radius: 100%;
    float: left;
    -webkit-animation: load-x 1s cubic-bezier(0.445, 0.1, 0.55, 0.9) infinite;
    animation: load-x 1s cubic-bezier(0.445, 0.1, 0.55, 0.9) infinite;
}
.circ-two {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background: #cf142e;
    border-radius: 100%;
    float: right;
    -webkit-animation: load-y 1s cubic-bezier(0.445, 0.1, 0.55, 0.9) infinite;
    animation: load-y 1s cubic-bezier(0.445, 0.1, 0.55, 0.9) infinite;
}
@-webkit-keyframes load-x {
    0% {
        left: -10px;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    25% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        z-index: 2;
    }
    50% {
        left: 60px;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    75% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        z-index: 1;
    }
    100% {
        left: -10px;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes load-x {
    0% {
        left: -10px;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    25% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        z-index: 2;
    }
    50% {
        left: 60px;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    75% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        z-index: 1;
    }
    100% {
        left: -10px;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-webkit-keyframes load-y {
    0% {
        right: -10px;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    25% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    50% {
        right: 60px;
        -webkit-transform: scale(1);
        transform: scale(1);
        z-index: 1;
    }
    75% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        z-index: 2;
    }
    100% {
        right: -10px;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes load-y {
    0% {
        right: -10px;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    25% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    50% {
        right: 60px;
        -webkit-transform: scale(1);
        transform: scale(1);
        z-index: 1;
    }
    75% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        z-index: 2;
    }
    100% {
        right: -10px;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
#loader p {
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 50;
    color: #cf142e;
    -webkit-animation: pulse 2s ease-in-out infinite;
    animation: pulse 2s ease-in-out infinite;
}
@-webkit-keyframes pulse {
    50% {
        opacity: 0.5;
    }
}
@keyframes pulse {
    50% {
        opacity: 0.5;
    }
}
.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
}
/***** Prealoader End *****/
.wrapper {
    position: relative;
}
.brand-border {
    width: 100%;
    height: 30px;
    transition: all ease 0.5s;
    background: rgba(11,24,64,1);
    background: -moz-linear-gradient(top, rgba(11,24,64,1) 0%, rgba(11,24,64,1) 33%, rgba(207,20,45,1) 33%, rgba(207,20,45,1) 50%, rgba(207,20,45,1) 67%, rgba(11,24,64,1) 67%, rgba(11,24,64,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(11,24,64,1)), color-stop(33%, rgba(11,24,64,1)), color-stop(33%, rgba(207,20,45,1)), color-stop(50%, rgba(207,20,45,1)), color-stop(67%, rgba(207,20,45,1)), color-stop(67%, rgba(11,24,64,1)), color-stop(100%, rgba(11,24,64,1)));
    background: -webkit-linear-gradient(top, rgba(11,24,64,1) 0%, rgba(11,24,64,1) 33%, rgba(207,20,45,1) 33%, rgba(207,20,45,1) 50%, rgba(207,20,45,1) 67%, rgba(11,24,64,1) 67%, rgba(11,24,64,1) 100%);
    background: -o-linear-gradient(top, rgba(11,24,64,1) 0%, rgba(11,24,64,1) 33%, rgba(207,20,45,1) 33%, rgba(207,20,45,1) 50%, rgba(207,20,45,1) 67%, rgba(11,24,64,1) 67%, rgba(11,24,64,1) 100%);
    background: -ms-linear-gradient(top, rgba(11,24,64,1) 0%, rgba(11,24,64,1) 33%, rgba(207,20,45,1) 33%, rgba(207,20,45,1) 50%, rgba(207,20,45,1) 67%, rgba(11,24,64,1) 67%, rgba(11,24,64,1) 100%);
    background: linear-gradient(to bottom, rgba(11,24,64,1) 0%, rgba(11,24,64,1) 33%, rgba(207,20,45,1) 33%, rgba(207,20,45,1) 50%, rgba(207,20,45,1) 67%, rgba(11,24,64,1) 67%, rgba(11,24,64,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0b1840', endColorstr='#0b1840', GradientType=0 );
}
header.active .brand-border {
    height: 0;
}
.navbar {
    z-index: 9999;
    transition: all ease 0.5s;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
    -ms-box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
    -o-box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
}
.navbar-collapse.hide {
    display: none;
}
.main-menu {
    position: relative;
}
.main-menu .navbar-nav .nav-link {
    color: #0b1840;
}
.main-menu .navbar-nav .nav-item.active .nav-link {
    color: #cf142e;
}
.main-menu .navbar-nav .nav-link {
    color: #0b1840;
}
.main-menu .navbar-nav .nav-item:hover .nav-link {
    color: #cf142e;
}
.main-menu .navbar-brand {
    position: absolute;
    left: auto;
    right: 0;
    top: -8px;
    width: 200px;
    margin: auto;
    padding: 10px;
    background-color: #fff;
    -webkit-box-shadow: 0 20px 20px -10px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 20px 20px -10px rgba(0, 0, 0, .3);
    -ms-box-shadow: 0 20px 20px -10px rgba(0, 0, 0, .3);
    -o-box-shadow: 0 20px 20px -10px rgba(0, 0, 0, .3);
    box-shadow: 0 20px 20px -10px rgba(0, 0, 0, .3);
}
.navbar-brand img {
    width: 100%;
    /*padding: 10px;*/
    margin: auto;
    display: block;
}
.menu-toggle span {
    width: 20px;
    height: 3px;
    border-radius: 50px;
    background-color: #0b1840;
    display: block;
    margin-bottom: 2px;
}
.menu-toggle span:nth-child(2) {
    background-color: #cf142e;
}
.pop-menu {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 100vh;
    color: #fff;
    background-color: #0b1840;
    overflow: auto;
    z-index: 9999;
    padding: 100px;
    transform: scale(0);
    -webkit-transition: all ease-out .5s;
    -moz-transition: all ease-out .5s;
    -ms-transition: all ease-out .5s;
    -o-transition: all ease-out .5s;
    transition: all ease-out .5s;
}
.pop-menu.show {
    transform: scale(1);
    -webkit-transition: all ease-in .5s;
    -moz-transition: all ease-in .5s;
    -ms-transition: all ease-in .5s;
    -o-transition: all ease-in .5s;
    transition: all ease-in .5s;
}
.pop-menu h4 {
    color: #cf142e;
    display: table;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 50px;
}
.pop-menu ul {
    display: inline-block;
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}
.pop-menu ul li {
    float: left;
    padding: 5px;
    margin-right: 20px;
}
.pop-menu ul li a {
    color: #fff;
    text-decoration: none;
}
.pop-menu ul li.dropdown {
    width: 100%;
    float: none;
    padding: 0;
}
.pop-menu ul li.dropdown h5 {
    color: #fff;
    position: relative;
    padding-bottom: 5px;
    display: inline;
    background-color: #cf142e;
    padding: 5px 10px;
    border-radius: 50px;
}
.pop-menu ul li.dropdown h5:before {
    /*content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #cf142e;*/
}
.pop-menu ul li.dropdown > a {
    width: 100%;
}
.pop-menu ul li.dropdown ul {
    width: 100%;
}
.pop-menu .closemenu {
    position: absolute;
    top: 20px;
    right: 20px;
}
.pop-menu .closemenu svg {
    fill: #fff;
}
section {
    padding: 60px 0;
}
.btn {
    border-radius: 0;
    padding: 5px 30px;
}
button:focus, .btn:focus {
    outline: none;
    box-shadow: none;
}
.btn-theme {
    color: #fff;
    background-color: #0b1840;
}
.btn-theme:hover {
    color: #fff;
    background-color: #cf142e;
    -webkit-box-shadow: 5px 5px 10px 0px rgba(11, 24, 64, 0.3);
    -moz-box-shadow: 5px 5px 10px 0px rgba(11, 24, 64, 0.3);
    -ms-box-shadow: 5px 5px 10px 0px rgba(11, 24, 64, 0.3);
    -o-box-shadow: 5px 5px 10px 0px rgba(11, 24, 64, 0.3);
    box-shadow: 5px 5px 10px 0px rgba(11, 24, 64, 0.3);
}
.btn-link {
    color: #0b1840;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
}
.btn-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: #cf142e;
    width: 0px;
    height: 2px;
}
.btn-link:hover {
    color: #cf142e;
    text-decoration: none;
}
.btn-link:hover::after {
    width: 100%;
    transition: all ease 0.5s;
}
.btn-link:focus {
    text-decoration: none;
}
.btn-search {
    padding: 5px;
}
.btn-search:hover svg {
    fill: #cf142e;
}
.btn-store {
    margin-right: 10px;
}
.btn-store span {
    color: #0b1840;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
}
.btn-store span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: #cf142e;
    width: 0px;
    height: 2px;
}
.btn-store:hover span {
    color: #cf142e;
    text-decoration: none;
}
.btn-store:hover span::after {
    width: 100%;
    transition: all ease 0.5s;
}
.btn-store:hover svg {
    fill: #cf142e;
}
.hover-border {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}
.hover-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-top: 5px solid #cf142e;
    border-left: 5px solid #cf142e;
    border-right: 5px solid #0b1840;
    border-bottom: 5px solid #0b1840;
    z-index: 9;
}
.hover-border img {
    -webkit-transition: all ease-out .5s;
    -moz-transition: all ease-out .5s;
    -ms-transition: all ease-out .5s;
    -o-transition: all ease-out .5s;
    transition: all ease-out .5s;
}
.hover-border:hover img {
    transform: scale(1.2);
    -webkit-transition: all ease-in .5s;
    -moz-transition: all ease-in .5s;
    -ms-transition: all ease-in .5s;
    -o-transition: all ease-in .5s;
    transition: all ease-in .5s;
} 
#main-categories h3 {
    display: inline-block;
    border: 1px solid #000;
    padding: 5px 20px 0;
    line-height: 45px;
    text-transform: uppercase;
}
#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 40px;
    display: block;
    text-decoration: none;
    display: none;
    -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;
}
#return-to-top::before {
    content: url(../img/to-top.png);
    margin: 0;
    position: relative;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}
#return-to-top:hover {
    bottom: 30px;
}
.inner-banner {
    padding: 100px 0 0;
    border-bottom: 1px solid #e1e1e1;
}
.inner-banner .container {
    position: relative;
    padding-bottom: 50px;
}
.inner-banner .container:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    margin: auto;
    width: 100px;
    height: 2px;
    background-color: #cf142e;
}
.inner-banner.inner-banner-box {
    padding: 300px 0 0;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: top !important;
    /*background-attachment: fixed !important;*/
}
.inner-banner.inner-banner.inner-banner-box h2 {
    color: #fff;
}
.inner-page .title {
    color: #fff;
    background-color: #cf142e;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}
.inner-page .categories h4 {
    color: #fff;
    background-color: #0b1840;
    padding: 5px 10px;
    padding-top: 10px;
    text-transform: uppercase;
    line-height: 1;
}
.inner-page .categories h4 span {
    display: block;
}
.inner-page ul {
    padding-left: 0;
    list-style: none;
    max-height: 150px;
    overflow-y: auto;
}
.inner-page .categories-list {
    max-height: 150px;
    overflow: auto;
}
.inner-page .categories-list li {
    display: block;
    padding: 5px;
    color: #666;
}
/*.inner-page .categories-list li a {
    display: block;
    padding: 5px;
    color: #666;
}*/
.inner-page .size-list li {
    float: left;
    padding: 5px;
    border: 1px solid #e1e1e1;
    margin-right: 2px;
    margin-bottom: 2px;
    height: 40px;
    width: 40px;
    line-height: 2;
    text-align: center;
}
.swiper-container .swiper-wrapper .swiper-slide img {
    width: 100%;
}
.swiper-button-next, 
.swiper-button-prev {
    color: #cf142e;
}
.swiper-pagination-bullet-active {
    background: #cf142e;
}
.contact {
    list-style: none;
    padding-left: 0;
}
.contact li a {
    display: block;
    color: #666;
}
.footer-top {
    color: #0b1840;
    background-color: #fff;
    line-height: 2;
    padding: 50px;
}
.footer-top .footer-logo {
    display: block;
    margin: auto;
    margin-bottom: 20px;
}
.footer-top h5 {
    color: #cf142e;
}
.footer-top ul {
    list-style: none;
    padding-left: 0;
}
.footer-top ul li span {
    font-size: 13px;
    font-weight: 600;
}
.footer-top ul li a {
    color: #0b1840;
    font-size: 15px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.footer-top ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    width: 0px;
    height: 1px;
}
.footer-top ul li a:hover {
    color: #cf142e;
    text-decoration: none;
}
.footer-top ul li a:hover::after {
    width: 100%;
    transition: all ease 0.5s;
}
.footer-top ul.footer-contact li a {
    color: #0b1840;
    font-size: 15px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    display: block;
    position: relative;
    overflow: hidden;
}
.footer-top ul.footer-contact li a:hover {
    color: #cf142e;
    text-decoration: none;
}
.footer-bottom {
    color: #fff;
    background-color: #cf142e;
    padding: 20px 50px 10px;
}
.footer-bottom p {
    margin-bottom: 0;
}
.footer-bottom p a {
    color: #fff;
}
.footer-bottom ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    float: right;
}
.footer-bottom ul li {
    float: left;
    margin-right: 20px;
}
.footer-bottom ul li:nth-last-child(1) {
    margin-right: 0;
}
.footer-bottom ul li a {
    color: #fff;
    font-size: 15px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.footer-bottom ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    width: 0px;
    height: 1px;
    
}
.footer-bottom ul li a:hover {
    color: #fff;
    text-decoration: none;
}
.footer-bottom ul li a:hover::after {
    width: 100%;
    transition: all ease 0.5s;
    
}