@import url('https://fonts.googleapis.com/css2?family=Federo&family=Raleway:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

.btn-dark {
    background: #0B2B43;
}


/* width */

 ::-webkit-scrollbar {
    width: 8px;
}


/* Track */

 ::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

 ::-webkit-scrollbar-thumb {
    background: #0B2B43;
}


/* Handle on hover */

 ::-webkit-scrollbar-thumb:hover {
    background: #09395e;
}


/* extra code */

.nav-link {
    font-family: 'Federo', sans-serif;
    color: #4e4e4e;
}

.alert {
    z-index: 11;
    background: #fff;
    border-left: 5px solid #82d800;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.w-35 {
    width: 35%;
}

.title h1 {
    font-family: 'Federo', sans-serif;
    color: #4e4e4e;
}

.sub_title {
    width: 30%;
    text-align: center;
    border-bottom: 1px solid #000;
    line-height: 0.1em;
    margin: 3% auto;
}

.sub_title span {
    background: #fff;
    padding: 0 10px;
}

.paragraph {
    font-size: 20px;
    line-height: 30px;
    text-indent: 2px;
    word-spacing: 2px;
}

.desc {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 99;
    font-size: 45px;
    border: none;
    outline: none;
    color: #ffcc6c;
    cursor: pointer;
    background: transparent;
}

#myBtn:hover {
    color: #0B2B43;
}

@media (max-width:760px) {
    .sub_title {
        width: 90%;
    }
}

@media (max-width:500px) {
    .text-col-sm-center {
        text-align: center;
    }
    .title {
        margin: auto !important;
    }
    .sub_title {
        margin: 3% auto !important;
    }
    .w-35 {
        width: 100%;
    }
}


/* extra code end */


/* navbar start here */

#navbar {
    position: fixed;
    /* Make it stick/fixed */
    top: 0;
    /* Stay on top */
    width: 100%;
    /* F.navbar-navl width */
    transition: top 0.3s;
    /* Transition effect when sliding down (and up) */
    z-index: 10;
    transition: all .5s ease;
}

.navbar .megamenu {
    padding: 2rem;
}

.megamenu {
    background-color: #0B2B43 !important;
    color: #fffff3 !important;
}

.show {
    transition: .3s ease-in !important;
}

.mega-menu-links li a,
.nav-link {
    color: #fffff3;
    text-decoration: none;
    transition: 1s ease-out !important;
}

.mega-menu-links li {
    list-style: none;
    text-align: left;
}

@media all and (min-width: 992px) {
    .navbar .has-megamenu {
        position: static!important;
    }
    .navbar .megamenu {
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 0;
    }
}

@media(max-width: 991px) {
    .navbar.fixed-top .navbar-collapse,
    .navbar.sticky-top .navbar-collapse {
        overflow-y: auto;
        max-height: 90vh;
        margin-top: 10px;
    }
}

nav .navbar-nav {
    list-style: none;
}

nav .navbar-nav .nav-item {
    display: inline-block;
}

nav .navbar-nav .nav-item .nav-link {
    display: block;
    text-decoration: none;
    color: #f3f3f3;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px !important;
}

nav .navbar-nav .nav-item .nav-link,
nav .navbar-nav .nav-item .nav-link:after,
nav .navbar-nav .nav-item .nav-link:before {
    transition: all .5s;
}

nav .navbar-nav .nav-item .nav-link:hover {
    color: #0B2B43;
}


/* SHIFT */

.shift .navbar-nav .nav-item .nav-link {
    position: relative;
    z-index: 1;
}

.shift .navbar-nav .nav-item .nav-link:hover {
    color: #91640F;
}

.shift .navbar-nav .nav-item .nav-link:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    content: '.';
    color: transparent;
    background: #ffcc6c;
    visibility: none;
    opacity: 0;
    z-index: -1;
}

.shift .navbar-nav .nav-item .nav-link:hover:after {
    opacity: 1;
    visibility: visible;
    height: 100%;
}


/* Keyframes */

@keyframes fill {
    0% {
        width: 0%;
        height: 1px;
    }
    50% {
        width: 100%;
        height: 1px;
    }
    100% {
        width: 100%;
        height: 100%;
        background: #333;
    }
}


/* Keyframes */

@keyframes circle {
    0% {
        width: 1px;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        height: 1px;
        z-index: -1;
        background: #eee;
        border-radius: 100%;
    }
    100% {
        background: #aaa;
        height: 5000%;
        width: 5000%;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        border-radius: 0;
    }
}

.nav-link.active {
    background: #FFCC6C;
    color: #333 !important;
}


/* navbar end here */


/* ======================================= Home page css ============================================= */


/* carousel part start here*/

.carousel-item-image {
    filter: brightness(0.7);
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    padding-bottom: 6rem !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 1.25rem;
    color: #fff;
    text-align: center;
    filter: brightness(1.2);
}

.carousel_logo {
    width: auto;
    margin: auto;
    height: 40vh;
    filter: drop-shadow(2px 4px 6px black);
    animation: logo 1.5s ease-in;
}

@keyframes logo {
    from {
        opacity: 0;
        transform: rotateY(-180deg);
    }
    to {
        opacity: 1;
        transform: rotateY(0deg);
    }
}


/* carousel part end here*/


/* category part start here*/

.category_card {
    max-width: 100%;
    height: 400px;
    overflow: hidden;
}

.category_image {
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.85);
}

.card-img-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    bottom: auto !important;
    transform: translate(-50%, -50%);
    border-radius: calc(0.25rem - 1px);
    display: flex;
    justify-content: center;
    align-items: center;
    right: auto !important;
}


/* category part end here*/


/* owl carousel custom css start */

.owl-prev,
.owl-next {
    font-size: 5rem !important;
}

.owl-nav {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 25%;
    display: flex;
    color: #ffcc6c !important;
    justify-content: space-between;
}


/* owl carousel custom css end */


/* our service card */

.card-img-icon {
    width: 70px;
    height: 55px;
    margin: auto;
}

.card_hover {
    background: transparent;
    color: #0B2B43;
    transition: ease-in-out 0.3s;
}

.card_hover:hover {
    background: #0B2B43;
    color: #fff;
}


/* our service card end */


/* ================================================ About & Contact page css ============================================= */

.about-section {
    background: url(/static/images/c1.jpg);
    background-repeat: no-repeat;
    max-width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center center;
}

.text_about_us {
    color: #fff;
    background: #ffcc6c;
    padding: .5% 4%;
    font-size: 40px;
}

.dot_bg {
    background: url(/static/images/dot.png) no-repeat center;
    background-size: contain;
}

.about_ul li {
    list-style-type: none;
}

.contact-section {
    background: url(/static/images/c2.jpg);
    background-repeat: no-repeat;
    max-width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center center;
}

.contact_col {
    box-shadow: 0px 0px 5px lightgray, inset 0px 0px 5px lightgrey;
}

.social-link ul li {
    list-style: none;
}

.social-link ul li a {
    text-decoration: none;
    font-size: 32px;
}

.social-link ul li:nth-child(1) a {
    background-image: linear-gradient( 380deg, #F58529, #FEDA77, #DD2A7B, #8134AF, #515BD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-link ul li:nth-child(2) a {
    color: #3b5998;
}

.social-link ul li:nth-child(3) a {
    color: #075e54;
}


/* ========================================= Product Page css =============================== */

.products-section {
    background: url(/static/images/c3.jpg);
    background-repeat: no-repeat;
    max-width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center center;
}

.accordion-button:not(.collapsed) {
    color: #ffffff !important;
    background-color: #c4c4c4 !important;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}


/* product detail */

.card-wrapper-prd-dtl {
    max-width: 1100px;
    margin: 0 auto;
}

.img_self {
    width: 100%;
    display: block;
}

.img-item {
    width: 45%;
}

.img-display {
    overflow: hidden;
}

.img-showcase {
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase img {
    min-width: 100%;
}

.img-select {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-item {
    margin: 0.3rem;
}

.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3) {
    margin-right: 0;
}

.img-item:hover {
    opacity: 0.8;
}

.product-content {
    padding: 2rem 1rem;
}

.product-title {
    font-size: 2rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
}

.product-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 80px;
    background: #12263a;
}

.product-link {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    background: #256eff;
    color: #fff;
    padding: 0 0.3rem;
    transition: all 0.5s ease;
}

.product-link:hover {
    opacity: 0.9;
}

.product-rating {
    color: #ffc107;
}

.product-rating span {
    font-weight: 600;
    color: #252525;
}

.product-price {
    margin: 1rem 0;
    font-size: 1rem;
    font-weight: 700;
}

.product-price span {
    font-weight: 400;
}

.last-price span {
    color: #f64749;
    text-decoration: line-through;
}

.new-price span {
    color: #256eff;
}

.product-detail h2 {
    text-transform: capitalize;
    color: #12263a;
    padding-bottom: 0.6rem;
}

.product-detail p {
    font-size: 1rem;
    opacity: 0.8;
}

.product-detail ul {
    margin: 1rem 0;
    font-size: 0.9rem;
    padding: 0;
}

.product-detail ul li {
    margin: 0;
    list-style: none;
    background: url(/static/images/checked.png) left center no-repeat;
    background-size: 18px;
    padding-left: 1.7rem;
    margin: 0.4rem 0;
    font-weight: 600;
    opacity: 0.9;
}

.product-detail ul .outofstock {
    margin: 0;
    list-style: none;
    background: url(/static/images/unchecked.png) left center no-repeat;
    background-size: 18px;
    padding-left: 1.7rem;
    margin: 0.4rem 0;
    font-weight: 600;
    opacity: 0.9;
}

.product-detail ul li span {
    font-weight: 400;
}

.purchase-info {
    margin: 1.5rem 0;
}

.purchase-info input,
.purchase-info .btn {
    border: 1.5px solid #ddd;
    border-radius: 25px;
    text-align: center;
    padding: 0.45rem 0.8rem;
    outline: 0;
    margin-right: 0.2rem;
    margin-bottom: 1rem;
}

.purchase-info input {
    width: 60px;
}

.purchase-info .btn {
    cursor: pointer;
    color: #fff;
}

.purchase-info .btn:first-of-type {
    background: #256eff;
}

.purchase-info .btn:last-of-type {
    background: #f64749;
}

.purchase-info .btn:hover {
    opacity: 0.9;
}

.social-links {
    display: flex;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #000;
    border: 1px solid #000;
    margin: 0 0.2rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.5s ease;
}

.social-links a:hover {
    background: #000;
    border-color: transparent;
    color: #fff;
}

@media screen and (min-width: 992px) {
    .card-prd-dtl {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.5rem;
    }
    .card-wrapper-prd-dtl {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .product-imgs {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .product-content {
        padding-top: 0;
    }
}

.space {
    margin-top: 3rem;
}

.card-wrapper-prd-dtl {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 575px) {
    .prd_title {
        display: none;
    }
    .space2 {
        margin-top: 5% !important;
    }
    .card-wrapper-prd-dtl {
        margin-top: 0rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 768px) {
    .card-wrapper-prd-dtl {
        margin-top: 0rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 986px) {
    #navbar {
        background: #0b2b43 !important;
    }
    .nav-link {
        display: inline-block;
    }
}


/* pre loader */

.loader-bg {
    width: 100%;
    height: 100%;
    background: #ffffff;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999999;
}

.loader-bg h3 {
    position: fixed;
    color: #0B2B43;
    font-size: 26px;
    text-align: center;
    text-transform: uppercase;
}

.loader {
    width: 8em;
    height: 8em;
    font-size: 22px;
    box-sizing: border-box;
    border-top: 0.3em solid #505050;
    border-radius: 50%;
    position: relative;
    animation: rotating 2s ease-in-out infinite;
    --direction: 1;
}

.loader span {
    position: absolute;
    color: #ffc107;
    width: inherit;
    height: inherit;
    text-align: center;
    line-height: 10em;
    font-family: sans-serif;
    animation: rotating 2s linear infinite;
}

.loader::before,
.loader::after {
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    box-sizing: border-box;
    top: -0.2em;
}

.loader::before {
    border-top: 0.3em solid #0B2B43;
    transform: rotate(120deg);
}

.loader::after {
    border-top: 0.3em solid #ffcc6c;
    transform: rotate(240deg);
}

@keyframes rotating {
    50% {
        transform: rotate(calc(180deg));
    }
    100% {
        transform: rotate(calc(360deg));
    }
}


/* banner */

.subcat-section {
    background: url(/static/images/c4.jpg);
    background-repeat: no-repeat;
    max-width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center center;
}

/* Social icons */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.hero {
    width: 30%;
    height: 20vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 40px;
    margin-bottom: 100px;
    margin-top: -100px;
}

.social-links {
    display: flex;
}

.social-links a {
    width: 40px;
    height: 40px;
    text-align: center;
    text-decoration: none;
    color: #000;
    box-shadow: 0 0 20px 10px rgba(255, 248, 248, 0.952);
    margin: 0 20px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s;
}

.social-links a .fab {
    font-size: 30px;
    line-height: 80px;
    position: relative;
    z-index: 10;
    transition: color 0.5s;
}

.social-links a::after {
    content: '';
    width: 100%;
    height: 100%;
    top: -90px;
    left: 0;
    background: #000;
    /* background: linear-gradient(-45deg, #ed1c94, #ffec17);*/
    position: absolute;
    transition: 0.5s;
}

.social-links a:hover::after {
    top: 0;
}

.social-links a:hover .fab {
    color: #fff;
}

.social-links a:hover {
    transform: translateY(-10px);
} 

.insta-feed {
    margin: 6% auto;
} 