@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&display=swap');
:root {
    /* Background Color */
    --lg-font: 'Josefin Sans', sans-serif;
    ;
    --sm-font: 'Open Sans', sans-serif;
    --bg-custom: #084298;
    --white: #fff;
    --black: #000;
}

body {
    font-family: var(--sm-font);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
    overflow-x: hidden;
}

.text-justify {
    text-align: justify;
}


/* Custom */

a,
a:hover {
    text-decoration: none;
}

p {
    margin: 0;
}

.btn-danger {
    background: var(--bg-custom);
    border-color: var(--bg-custom);
    padding: 0.8rem 1.5rem;
    border-radius: 0;
}

.btn-danger:hover {
    color: var(--bg-custom);
    background: transparent;
    border-color: var(--bg-custom);
}

.title {
    text-align: center;
    margin: 0 auto 35px;
    position: relative;
    line-height: 50px;
    text-transform: uppercase;
    font-family: var(--lg-font);
}

.title::after {
    content: '';
    background: var(--bg-custom);
    width: 80px;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


/* Navigation */

#header .fixed-top {
    box-shadow: 0 0.125rem 0.675rem rgb(0 0 0 / 5%);
}

.navbar ul li a {
    color: #000;
    text-decoration: none;
    padding: 8px 12px;
    margin: 0 5px;
    text-transform: uppercase;
    position: relative;
}

.navbar ul li a::before {
    content: "";
    width: 65px;
    height: 45px;
    position: absolute;
    left: 15px;
    bottom: 7px;
    border: 5px solid#0d6efd;
    border-width: 0 0 2px 2px;
    transition: all 0.3s;
    opacity: 0;
}

.navbar ul li a::after {
    content: "";
    width: 65px;
    height: 45px;
    position: absolute;
    right: 7px;
    top: 15px;
    border: 5px solid#0d6efd;
    border-width: 2px 2px 0 0;
    transition: all 0.3s;
    opacity: 0;
}

.navbar ul li a:hover::before {
    left: -5px;
    bottom: -5px;
    opacity: 1;
}

.navbar ul li a:hover::after {
    top: -5px;
    right: -5px;
    opacity: 1;
}

.navbar ul li a:hover {
    background-color: var(--bg-custom)!important;
    color: #fff!important;
}

.navbar ul li ul li a::before,
.navbar ul li ul li a::after {
    display: none;
}

.navbar ul li ul li a {
    margin: 0;
}

.navbar-brand img {
    width: 260px;
}


/* Home */

.home {
    position: relative;
}

.home .home-banner-1,
.home .home-banner-2,
.home .home-banner-3,
.home .home-banner-4,
.home .home-banner-5 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 90% center;
    min-height: 675px;
    position: relative;
}

.home .home-banner-1 {
    background-image: url(../images/bg-1.jpg);
}

.home .home-banner-2 {
    background-image: url(../images/bg-2.jpg);
}

.home .home-banner-3 {
    background-image: url(../images/bg-3.jpg);
}

.home .home-banner-4 {
    background-image: url(../images/bg-4.jpg);
}

.home .home-banner .home-banner-text {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.493);
    bottom: 10%;
    left: 0;
    padding: 20px;
    position: absolute;
    color: #fff;
    /* transform: translate(-110%, -50%); */
}

.home .home-banner .home-banner-text h1 {
    font-size: 4rem;
    font-family: var(--lg-font);
}

.home .carousel-indicators [data-bs-target] {
    background-color: var(--bg-custom);
    width: 2.5rem;
    height: 0.31rem;
}

.home .carousel-control-next-icon,
.home .carousel-control-prev-icon {
    background: transparent;
}

.home .slider-icon {
    font-size: 3rem;
    font-weight: 600;
    color: var(--bg-custom);
}


/* About */

.about-img img {
    width: 97%!important;
}

.about-img .owl-dots {
    position: absolute;
    width: 100%;
    z-index: 20;
    margin: 0;
    top: auto;
    bottom: 15px;
}


/* Offers */

.offers {
    padding-top: 5rem;
}

.offers .offer-box .offer-image::before {
    position: absolute;
    content: '';
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(to right, rgba(255, 255, 255, 0)0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0)0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.offers .offer-box .offer-image img {
    transform: scale(1.02);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offers .offer-box:hover .offer-image::before {
    animation: effect_shine 1s;
}

@keyframes effect_shine {
    100% {
        left: 150%;
    }
}

.offers .offer-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.offers .offer-box .offer-info {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
    transition: all 250ms ease-out;
    justify-content: center;
    align-items: center;
}

.offers .offer-box .offer-info .headline-bigger {
    font-size: 4.375rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--white);
    font-family: var(--lg-font);
}

.offers .offer-box .offer-info .offer-title-1 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 300;
    margin-bottom: 0;
    letter-spacing: 2px;
}

.btn-outline-danger {
    color: var(--bg-custom);
    border-color: var(--white);
    transition: all 0.3s ease-in-out;
}

.btn-outline-danger:hover {
    border-color: var(--bg-custom);
    background-color: var(--bg-custom);
    color: var(--white);
}


/* Featured Products */

.product-img {
    position: relative;
    overflow: hidden;
}

.btns {
    position: absolute;
    left: 0;
    bottom: -100%;
    font-size: 15px;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
}

.btns button {
    border: none;
    background-color: rgb(39, 39, 39);
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.btns button:hover {
    background-color: var(--bg-custom);
}

.product-img:hover .btns {
    bottom: 0;
}

.heart-icon {
    position: absolute;
    top: 16px;
    right: 15px;
    font-size: 18px;
}

.product-type {
    font-size: 13px;
    opacity: 0.8;
}

.product-name {
    transition: all 0.3s ease-in-out;
}

.product-name:hover {
    color: var(--bg-custom)!important;
}

.product-price {
    color: var(--bg-custom);
}

.rating {
    font-size: 13px;
}


/* 75% Off */

.up_to_off {
    position: relative;
}

.up_to_off::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    cursor: pointer;
    transition: 0.5s;
}

.up_to_off img {
    transition: 0.5s;
}

.up_to_off:hover img {
    transform: scale(1.1);
}

.up_to_content h2 {
    color: var(--white);
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}


/* Special Section */

.overviewBlock {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
}

.overviewBlock .overviewBlockBg {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.overviewBlock .overviewBlockDesc {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
}

.overviewBlock .overviewBlockDesc>div {
    width: 100%;
    height: auto;
}

.overviewBlock .overviewBlockDesc h4 {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 16px;
}

.overviewBlock .overviewBlockDesc h3 {
    font-weight: bold;
    text-transform: uppercase;
}

.overviewBlock .overviewBlockDesc a {
    margin-top: 5px;
}


/* footer */

footer a {
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--white)!important;
}

.copyright a:hover {
    color: var(--bg-custom)!important;
}

.copyright {
    color: var(--black);
    background: var(--white) !important;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer {
    background-color: #313131;
    color: #fff!important;
    padding: 20px 0 0;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col2 {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: var(--bg-custom);
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: var(--white);
    margin: 0 10px 10px 0;
    color: var(--bg-custom)!important;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: var(--white)!important;
    background-color: var(--bg-custom);
}


/*responsive*/

@media(max-width: 767px) {
    form.d-flex {
        justify-content: center;
    }
    li.nav-item {
        text-align: center;
    }
    .navbar ul li ul li a {
        text-transform: capitalize;
    }
    .navbar ul li a::before,
    .navbar ul li a::after,
    .navbar ul li ul li a::after,
    .navbar ul li ul li a::before {
        display: none;
    }
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}

.b-footer {
    color: #999;
    padding-top: 35px;
}


/* offersform */

.offersform {
    display: block;
}

.offersform form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offersform form input[type="email"] {
    width: 100%;
    height: 40px;
    border: solid 1px var(--bg-custom);
    text-indent: 0;
    color: #fff;
    border-radius: 0;
    background: transparent;
}

.offersform form button {
    padding: 0;
    width: 100%;
    height: 40px;
    text-align: center;
    cursor: pointer;
}

.offersform .btn-primary {
    background: var(--bg-custom);
    color: #fff;
    border: none;
    border-radius: 0;
    z-index: 2;
}

.offersform .btn-primary:before {
    background: #925102;
}

.offersform .btn-primary:hover {
    color: #fff;
}

.offersform .btn-primary:hover,
.offersform .btn-primary:focus,
.offersform .btn-primary.focus,
.offersform .btn-primary:active,
.offersform .btn-primary.active {
    background: var(--bg-custom)!important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #084298;
}

.footer-col ul li {
    list-style: none;
}

.owl-carousel .owl-item img {
    width: 95%;
}

.awards-content {
    justify-content: center;
    display: flex;
    padding: 20px;
    background-image: linear-gradient(60deg, transparent, rgb(238, 243, 255));
    flex-direction: column;
}

.awards-content p {
    text-align: justify;
}

.awards-content h3 {
    color: var(--bg-custom);
}

.ach-img {
    border: 5px solid var(--bg-custom);
    padding: 5px;
}

@media only screen and (max-width: 767px) {
    .reverse-col {
        flex-direction: column-reverse;
    }
}