@font-face {
    font-family: regular;
    src: url(../fonts/Regular.woff);
}

@font-face {
    font-family: bold;
    src: url(../fonts/Bold.woff);
}

html {}
.whatapp_icon {
    position: fixed;
    right: 30px;
    bottom: 20px;
    line-height: 50px;
    z-index: 1000;
}
.whatapp_icon a {
    background: #25d366;
    color: #FFF;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    text-align: center;
}
body {
    font-family: 'Lexend Deca', sans-serif;
    color: #3f3f41;
    overflow-x: hidden;
}

section {
    position: relative;
}

a {
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

button:focus {
    outline: none;
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

img {
    width: 100%;
}

input {
    outline: none;
}

p {
    margin: 0;
    padding: 0;
    font-size: 17px;
    color: #333;
}

b {
    font-weight: 100;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 100;
    margin: 0;
}

.btn {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;

}

.btn:hover {
    filter: brightness(110%);
}

.trans {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.container {
    display: flex;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
}

header .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

a.logo {
    max-width: 14%;
    background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
}

a.logo img {
    max-width: 220px;
    opacity: 0;
}

header.header.fixed a.logo {
    background-image: url(../img/logo-color.png);
}

header .connect {}

header .connect a {
    color: #fff;
    font-size: 14.5px;
    letter-spacing: 0;
    margin: 0% 12px;
    text-transform: capitalize;
}

header .connect a img {
    width: 12px;
    margin-right: 8px;
    position: relative;
    top: -1px;
}

header .connect a.call,
header .connect a.wa {
    position: relative;
    padding-left: 25px;
}

header .connect a.call:before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 14px;
    height: 14px;
    background-image: url(../img/call-white.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

header .connect a.wa:before {
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    width: 20px;
    height: 20px;
    background-image: url(../img/wa-white.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

header.header.fixed .connect a.call:before {
    background-image: url(../img/call-black.svg);
}

header.header.fixed .connect a.wa:before {
    background-image: url(../img/wa-black.svg);
}

header.header.topbg {
    background-image: url(../img/bg-main.jpg);
    background-size: cover;
}

header.header.fixed {
    background-image: none;
    background-color: #fff;
}

header.header.fixed .connect a {
    color: #000;
}

header.header.fixed .trigger {
    background-image: url(../img/menu-black.svg);
}

.trigger {
    width: 40px;
    height: 40px;
    background-image: url(../img/menu.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    cursor: pointer;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(180deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(180deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(180deg);
    }
}

.trigger.trigger-bg {
    background-image: url(../img/close-white.png);
    background-size: 19px;
    -webkit-animation: spin 0.3s linear;
    -moz-animation: spin 0.3s linear;
    animation: spin 0.3s linear;
}

.banner {
    position: relative;
    background-color: #333;

}

.banner:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000075;
    z-index: 1;
}



.banner h1 {
    position: absolute;
    bottom: 5%;
    color: #fff;
    /* text-transform: uppercase; */
    /* font-family: 'Barlow Condensed', sans-serif; */
    font-family: queens;
    width: 50%;
    left: 10%;
    padding-bottom: 100px;
    font-size: 70px;
    z-index: 1;
}

/* .banner h1 span{
    font-size: 70px;
} */
.banner h1:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2px;
    height: 40%;
    background-color: #fff;
    animation: aftermove 3s infinite ease-in-out;
}

@keyframes aftermove {
    0% {
        height: 0%;
        top: 70%;
    }

    70% {
        height: 50%;
        top: 70%;
    }

    100% {
        height: 50%;
        top: 100%;
    }
}

.carousel-item .img-fluid {
    width: 100%;
}

/* 
anchors are inline so you need ot make them block to go full width
*/
.carousel-item a {
    display: block;
    width: 100%;
}













.title {
    margin-bottom: 30px;
    font-family: bold;
    font-size: 40px;
    line-height: 40px;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
    color: #333;
}

.title span {
    display: block;
    text-transform: capitalize;
    font-size: 20px;
    letter-spacing: 1px;
    color: #333;
    font-family: 'Lexend Deca';
}

.title i {
    font-style: normal;
    border-bottom: solid 2px #333;
}

.knowmore {
    color: #333;
    margin-top: 20px;
    display: table;
    font-size: 14px;
    border-bottom: solid 1px #333;
}

.knowmore:hover {
    color: #000;
}

.section1 {
    padding: 10% 0%;
    background-color: #fff;
}

.section1 .title {
    max-width: 100%;
    font-size: 29px;
    line-height: 50px;
}

.section1 p {
    font-size: 18px;
    line-height: 37px;
    letter-spacing: 0.2px;
}

.section1 .bdbox {
    display: table;
    background-image: url(../img/abta.jpg);
    background-position: left center;
    animation: bdmove 20s infinite alternate;
    position: relative;
}

.section1 .bdbox:after {
    content: '';
}

.section1 .bdbox img {}

@keyframes bdmove {
    from {
        background-position: left center;
    }

    to {
        background-position: right center;
    }
}

.section1 .row {
    align-items: center;
}

.section2 {
    background-color: #282828;
    padding: 7% 0%;
}

.section2 .container {
    display: block
}

.section2 .row:nth-child(1) {
    align-items: flex-start;
    margin-bottom: 50px;
}

.section2 .row:nth-child(2) {
    justify-content: space-between;
}

.section2 h2 {
    line-height: 124px;
    font-size: 110px;
    font-family: 'bold';
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #8a0001;
    animation: strokemove 3s infinite alternate;
}

@keyframes strokemove {
    0% {
        -webkit-text-stroke-color: #ccc;
    }

    50% {
        -webkit-text-stroke-color: #b49c84;
    }

    100% {
        -webkit-text-stroke-color: #fff;
    }
}


.section2 .item {
    text-align: center;
}

.section2 .item span {
    display: block;
    position: relative;
    margin-bottom: 20px;
}

.section2 .item span svg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.5;
}

.section2 .item span svg .pathx {

    stroke-dasharray: 100;
    stroke-dashoffset: 50;
    -webkit-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 2s ease;
}

.section2 .item:hover span svg .pathx {
    stroke-dasharray: 10;
}

.section2 .item:hover h6 {
    color: #b49c84;
}

.section2 .item img {
    max-width: 70%;
}

.section2 .item h6 {
    color: #ccc;
    text-transform: capitalize;
    font-family: 'bold';
    font-size: 20px;
}

.section2 p {
    color: #b9b9b9;
    margin-bottom: 20px;
    font-size: 17px;
}

.section2.section5 p,
.section2.section6 p {
    color: #282828;
}

.section2 p b {
    display: block;
    font-size: 24px;
    color: #ccc;
    padding-bottom: 5px;
}

.btn.btn-explore {
    background-color: #8a0001;
    font-family: bold;
    border-radius: 18px;
    width: 130px;
    font-size: 15px;
    padding: 7px 12px;
    color: #ccc;
}

.btn.btn-explore:hover {
    /* width: 120px; */
}

.section2.section3 {
    background-color: #fff;
}

.section2.section3 h2 {

    animation: strokemove2 3s infinite alternate;
}

@keyframes strokemove2 {
    0% {
        -webkit-text-stroke-color: #282828;
    }

    50% {
        -webkit-text-stroke-color: #b49c84;
    }

    100% {
        -webkit-text-stroke-color: #b49c84;
    }
}

.section2.section3 .row.woodrow a {
    display: block;

}

.section2.section3 .row.woodrow a:hover {}

.section2.section3 .item img {
    max-width: 70%;
}

.section2.section4 {
    background-color: #d9d1c4;
}

.section2.section4 h2 {
    animation: strokemove3 3s infinite alternate;
}

.section2.section4 p {
    color: #971e1f;
}


@keyframes strokemove3 {
    0% {
        -webkit-text-stroke-color: #971e1f;
    }

    50% {
        -webkit-text-stroke-color: #333333;
    }

    100% {
        -webkit-text-stroke-color: #971e1f;
    }
}

.section2.section4 .row.lightrow {}

.section2.section4 .row.lightrow .item:hover {
    filter: brightness(130%);
}

.section2.section4 .row.lightrow .item.item1 {
    animation: lightmove1 0.6s infinite alternate;
}

.section2.section4 .row.lightrow .item.item2 {
    animation: lightmove1 0.4s infinite alternate;
}

.section2.section4 .row.lightrow .item.item3 {
    animation: lightmove1 0.5s infinite alternate;
}

.section2.section4 .row.lightrow .item.item4 {
    animation: lightmove1 0.3s infinite alternate;
}

@keyframes lightmove1 {
    0% {
        filter: brightness(100%);
    }

    60% {
        filter: brightness(100%);
    }

    100% {
        filter: brightness(130%);
    }
}

.section2.section4 .row.lightrow .item:hover {
    animation: none;
    filter: brightness(140%);
}

.section2.section3.section5 .item {
    width: 33%;
    position: relative;
}

.section2.section6 {
    background-color: #ededed;
}

.section2.section6 h2 {
    animation: strokemove2 3s infinite alternate;
}

.testi {
    background-color: #b49c84;
    padding: 7% 0%;
}

.testi .container {
    display: block;
}

.testi .title {
    color: transparent;
    font-size: 50px;
    text-align: center;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
}

.quote {
    text-align: center;
    margin-bottom: 50px;
}

.quote img {
    width: 50px;
    margin-top: 30px;
}

.testi p {
    color: #fff;
    max-width: 70%;
    text-align: left;
    margin: 0px auto;
    line-height: 30px;
    letter-spacing: 0.7px;
}

.testi p span {
    display: block;
    text-align: right;
    text-transform: uppercase;
    font-family: bold;
    font-size: 13px;
    letter-spacing: 1px;
}

.testi .carousel-indicators {
    position: static;
    margin: 0;
    padding: 0;
    margin-top: 50px;
}

.carousel-indicators li {
    margin: 0px 7px;
    padding: 0;
    text-indent: 0;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0.3;
}

.carousel-indicators li.active {
    opacity: 1;
}

.testi .carousel-indicators li {
    width: 50px;
    height: 50px;
}

.testi .carousel-indicators li.active {
    opacity: 1;
}

.brands {
    padding: 7% 0%;
}

.brands .container {
    display: block;
}

.brands .title {
    text-align: center;
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #000;
    font-size: 50px;
}

.brands .mover {
    background-image: url(../img/brands.jpg);
    height: 50px;
    background-size: 722px;
    background-repeat: repeat-x;
    -webkit-animation: slide 7s linear infinite;
    margin-top: 70px;
}

@-webkit-keyframes slide {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -400px 0;
    }
}

.storesearch-cover {
    background-color: #ccc;
    background-image: url(../img/findbg.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: none;
}

.storesearch {
    padding: 12% 0%;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.storesearch .container {
    display: block;
}

.storesearch select {
    height: 50px;
    font-family: bold;
    -webkit-box-shadow: 0 4px 6px rgb(50 50 93 / 11%), 0 1px 3px rgb(0 0 0 / 8%);
    box-shadow: 0 4px 6px rgb(50 50 93 / 11%), 0 1px 3px rgb(0 0 0 / 8%);
}

.storesearch .btn {
    display: block;
    background-color: #8a0001;
    color: #fff;
    font-family: 'bold';
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    width: 100%;
    height: 50px;
    -webkit-box-shadow: 0 4px 6px rgb(50 50 93 / 11%), 0 1px 3px rgb(0 0 0 / 8%);
    box-shadow: 0 4px 6px rgb(50 50 93 / 11%), 0 1px 3px rgb(0 0 0 / 8%);
    border: solid 1px #ad9074;
}

.custom-select:focus {
    border-color: #e9bb00;
    box-shadow: 0 0 0 0.2rem rgb(252 204 6 / 85%);
}

footer {
    background-color: #282828;
    padding: 7% 0%;
}

footer .logo {
    perspective: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;

}

footer .logo .square {
    width: 100px;
    height: 100px;
    transform: rotateY(45deg);
    animation: rotateAnimation 2s linear infinite;
    background-image: url(../img/footerlogo.png);
    background-repeat: no-repeat;
    background-position: center;
}

@keyframes rotateAnimation {
    from {
        transform: rotateY(45deg);
    }

    to {
        transform: rotateY(225deg);
    }
}

footer .container {
    display: block;
}

footer .menu {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

footer .menu a {
    color: #ccc;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0px 25px;
}

footer .menu a:hover {
    color: #fff;
}

footer .catlinks {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    margin-top: 60px;
}

footer .catlinks a {
    position: relative;
    color: #ccc;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
    padding-left: 10px;
}

footer .catlinks a:hover {
    color: #fff;

}

footer .catlinks a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 14%;
    width: 2px;
    height: 74%;
    background-color: #8a0001;

}

footer .socialmedia {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 60px;
}

footer .socialmedia a {
    display: flex;
    width: 20px;
    border: solid 1px #ccc;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    margin: 0px 10px;
}

footer .socialmedia a:hover {
    border-color: #fff;
}

footer .socialmedia a img {
    width: 18px;
}

footer .end {
    justify-content: space-between;
    width: 100%;
    display: flex;
    margin-top: 60px;
}

footer .end p {
    font-size: 14px;
    color: #666;
}

footer .end a {
    font-size: 14px;
    color: #666;
}

footer .end a:hover {
    text-decoration: underline;
    color: #ccc;
}

.mobhide {
    display: block;
}

.pchide {
    display: none;
}

.megamenu {
    display: flex;
    position: fixed;
    z-index: 99;
    width: 100%;
    background-color: #ededed;
    right: -100%;
    top: 80px;
    height: 88vh;
    max-height: 700px;
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    opacity: 0;
}

.megamenu.active {
    right: 0%;
    opacity: 1;

}


.megamenu .product {
    /* width:16.6666666667%; */
    width: 14.28%;
    font-family: bold;
    font-size: 34px;
    color: #fff;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: #8a0001;
    border-right: solid 1px #dddddd;
    background-position: left top;
    background-size: 100%;
    background-repeat: no-repeat;
    padding-top: 12%;
    line-height: 38px;
}

.megamenu .product:hover {
    color: #8a0001;
    background-size: 110%;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: #8a0001;
}


.megamenu .product .btn {
    font-size: 14px;
    font-family: 'regular';
    -webkit-text-stroke-width: 0;
    font-family: bold;
    font-size: 15px;
    background-color: #ededed;
    border-radius: 20px;
    padding: 4px 13px;
    margin-top: 10px;
    border: solid 1px #8a0001;
    color: #8a0001;
}

.megamenu .product .btn:hover {
    background-color: #8a0001 !important;
    color: #fff;
}

.megamenu .product:hover .btn {
    background-color: #fff;
}

.megamenu span {
    display: inline-block;
    background-image: url(../img/menuline.png);
    background-position: left top;
    background-repeat: repeat-x;
    padding: 25px;
    padding-top: 60%;
    width: 100%;
}

.megamenu .product:hover span {}

.megamenu .product .links {
    margin-top: 15px;
}

.megamenu .product .links a {
    font-size: 14px;
    font-family: 'regular';
    -webkit-text-stroke-width: 0;
    -webkit-text-stroke-color: white;
    color: #8a0001;
    display: block;
    font-family: bold;
    font-size: 16px;
    line-height: 26px;
}

.megamenu .product .links a:hover {
    color: #8a0001;
}

.megamenu .menu {
    width: 16.6666666667%;
    background-color: #ededed;
}

.megamenu .menu a {
    display: block;
    font-family: bold;
    color: #8a0001;
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
}

.megamenu .menu a.active {
    color: #8a0001;
}

.megamenu .menu a:hover {
    color: #8a0001;

}

.megamenu .menu a img {
    width: 12px;
    position: relative;
    top: -1px;
    margin-right: 5px;
}

.productbanner {
    background-color: #ededed;
    margin-top: 80px;
}

.productbanner .row {
    width: 100%;
    align-items: center;
    margin: 0;
}

.productbanner .row .col-md-6 {
    padding: 0;
}

.productbanner h1 {
    color: #fff;
    font-family: 'bold';
    padding: 28px 0px;
    font-size: 60px;
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #282828;
}

.productbanner h1 span {
    position: relative;
}

.productbanner h1 span .icon {
    position: absolute;
    width: 50px;
    right: -70px;
    top: 4px;
}

.productbanner h1 span .icon img {
    -webkit-animation: rotation 2s infinite linear;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

.productbanner p {
    font-size: 16px;
    color: #282828;
}

.targetpage {
    background-color: #ededed;
    padding-bottom: 5%;
}

.targetpage .row {
    width: 100%;
    margin: 0;
}

.targetpage .item {
    width: 100%;
    background-size: 100%;
    background-position: center top;
    margin-bottom: 30px;
    height: 450px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 81px -16px rgb(50 50 93 / 25%), 0 24px 48px -24px rgb(0 0 0 / 30%);

}

.targetpage .item:hover {
    background-size: 110%;
}

.targetpage .item span {
    padding: 20px;
    padding-bottom: 30px;
    background-color: #ffffffed;
    width: 65%;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    position: absolute;
    right: 0;
    bottom: 0;
    box-shadow: 0 40px 81px -16px rgb(50 50 93 / 25%), 0 24px 48px -24px rgb(0 0 0 / 30%);
}

.targetpage h2 {
    font-family: 'bold';
    font-size: 40px;
    color: #fff;
    -webkit-text-stroke-width: 1.4px;
    -webkit-text-stroke-color: #000000;
    letter-spacing: -1px;
}

.targetpage .item:hover h2 {
    color: #8a0001;
    -webkit-text-stroke-color: #8a0001;
}

.targetpage h2 p {
    -webkit-text-stroke-width: 0px;
    color: #282828;
    font-size: 14.5px;
    font-family: regular;
    max-width: 90%;
    margin-top: 10px;
    letter-spacing: 0;
    display: none;
}

.targetpage .item .btn {
    color: #fff;
    background-color: #8a0001;
    font-family: bold;
    border-radius: 20px;
    padding: 0;
    font-size: 15px;
    height: 40px;
    width: 140px;
    line-height: 40px;
    margin-top: 15px;
}

.connecttab {
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    width: 100%;
    margin: 0px 15px;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.connecttab a {
    font-family: regular;
    color: inherit;
    padding: 20px 0px;
    font-size: 19px;
    position: relative;
}

.connecttab a.active {
    font-family: bold;
}

.connecttab a.active:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: #8a0001;
}

.connecttab a.active:hover {
    color: inherit;
}

.connecttab a:hover {
    color: #8a0001;
}

.bredcrumb {
    width: 100%;
    display: flex;
    width: 100%;
    justify-content: end;
}

.bredcrumb a {
    padding: 6px 10px 6px 0px;
    font-family: bold;
    font-size: 15px;
    color: inherit;
}

.bredcrumb a:hover {
    color: #8a0001;
}

.bredcrumb a:hover img {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
}

.bredcrumb a img {
    width: 9px;
    margin-top: -1.2px;
    margin-left: 5px;
}

.bredcrumb p {
    padding: 6px 10px 6px 0px;
    font-family: regular;
    font-size: 15px;
    color: #8a0001;
}

.productsdisplay {
    background-color: #ededed;
    padding-bottom: 5%;
}

.productsdisplay .container .row {
    width: 100%;

}


.productsdisplay .btn:hover {
    background-color: #8a0001;
}

.productsdisplay .container .item {
    background-color: #fff;
    border-radius: 3px;
    overflow: hidden;
    padding: 30px;
    margin-bottom: 25px;
    border: solid 1px #e7e7e7;
    border-bottom: solid 2px #8a0001;
}

.productsdisplay .container .item img {
    width: 100%;
    /* max-width: 80%; */
    display: table;
    margin: 0px auto;
}

.productsdisplay .container .item h3 {
    text-align: center;
    font-family: bold;
    font-size: 20px;
    margin-top: 20px;
    text-transform: capitalize;
}

.productsdisplay .container .item .btn {
    background-color: #ffffff;
    color: #282828;
    font-size: 13px;
    letter-spacing: 0px;
    border-radius: 17px;
    padding: 3px 10px 3px 10px;
    margin: 0px auto;
    display: table;
    margin-top: 10px;
    border: solid 1px #afafaf;
    margin-bottom: 10px;
}

.productsdisplay .container .item .btn:hover {
    border-color: #8a0001;
    color: #8a0001;
}

.inbanner {
    margin-top: 80px;
    background-position: center;
    background-size: 100%;
    position: relative;
}

.inbanner h1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000061;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    font-family: bold;
    color: transparent;
    -webkit-text-stroke-width: 1.4px;
    -webkit-text-stroke-color: #fff;
    letter-spacing: -1px;
}

.abtdata1 {
    padding: 5% 0%;
}

.abtdata1 .container {
    display: block;
}

.abtdata1 .container h6 {
    text-align: center;
    font-family: bold;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 20px;
    color: #8a0001;
}

.abtdata1 p {
    text-align: center;
}

.abtdata1 h5 {
    font-family: regular;
    text-align: center;
    margin-top: 50px;
    font-size: 20px;
    position: relative;

}

.abtdata1 h5:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: #dfdfdf;
    top: 50%;
    z-index: 1;

}

.abtdata1 h5 span {
    position: relative;
    z-index: 2;
    background-color: white;
    padding: 0px 5px;

}

.abtdata1 .cats {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 40px;
}

.abtdata1 .cats .item {
    width: 19%;
    background-color: #ededed;
    padding: 30px 20px 20px 20px;

}

.abtdata1 .cats .item:last-child {
    border: 0;
}

.abtdata1 .cats .item h4 {
    text-align: center;
    font-family: bold;
    font-size: 16px;
    margin-bottom: 10px;
    color: #8a0001;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.abtdata1 .cats .item p {
    font-size: 16px;
}

.abtdata1 .cats .item img {
    width: 65px;
    display: table;
    margin: 0px auto;
    margin-bottom: 20px;
}

.abtdata2 {
    background-color: #ededed;
    padding: 5% 0%;
}

.abtdata2 h2 {
    font-family: bold;
    font-size: 40px;
    color: #8a0001;
    margin-bottom: 15px;
}

.abtdata2 h3 {
    margin-bottom: 30px;
    font-size: 21px;
}

.abtdata2 p {
    color: #971e1f;
    margin-bottom: 15px;
}

.abtdata3 {
    position: relative;
    padding: 5% 0%;
    overflow: hidden;
    border-bottom: solid 1px #d5d5d5;
}

.abtdata3 .thumb {
    background-image: url(../img/abta.jpg);
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background-size: cover;
    background-position: center;
}

.abtdata3 .thumb.thumb2 {
    right: inherit;
    left: 0;
    background-image: url(../img/abtb.jpg);
}

.abtdata3 h2 {
    font-family: bold;
    font-size: 40px;
    color: #8a0001;
}

.abtdata3 h3 {
    margin-bottom: 30px;
    font-size: 21px;
    color: #d99147;
}

.abtdata3 p {}

.abtdata3.abtdata4 h3 {
    font-size: 27px;
}

.abtdata3 .padright50 {
    padding-right: 50px;
}

.abtdata3 .padleft50 {
    padding-left: 50px;
}

.pconly {}

.mobonly {
    display: none;
}

.contactbanner {
    background-color: white;
    margin-top: 80px;
    background-image: url(../img/contactbanner.jpg);
    background-position: center left;
    background-size: 100%;
    height: 380px;
}

.contactbanner .container {
    display: block;
}

.contactbanner .data {
    background-color: #8a0001;
    padding: 10% 30px 7% 30px;
    color: #fff;
    margin-top: 99px;
}

.quick {

    background-color: #ededed;
    padding: 5% 0%;
    border-bottom: solid 1px #e3dede;

}

.quick .container {
    display: block;
}

.quick .datanav {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.quick .title {
    font-size: 42px;
    -webkit-text-stroke-width: 1.5px;
    text-align: center;
}

.quick .title.title2 {
    text-align: left;
}

.quick .item {
    position: relative;
    padding: 20px 0px;
}

.quick .item .icon {
    width: 38px;
    margin: 0px auto;
    margin-bottom: 15px;
}

.quick .item .head {
    font-size: 21px;
    font-family: bold;
    margin-bottom: 10px;
    text-align: center;
}

.quick .item a {
    color: #8a0001;
    font-size: 14px;
    position: relative;
    padding: 6px 15px 6px 30px;
    border: solid 1px;
    border-radius: 12px;
    display: block;
    margin: 0 0 7px 0;
}

.quick .item a:before {
    content: '';
    position: absolute;
    left: 12px;
    top: 9px;
    width: 10px;
    height: 10px;
    background-image: url(../img/phone.svg);
}

.quick .item a:hover {
    background-color: #fff;
}

.quick.quick2 {
    background-color: #ffffff;
    position: relative;
}

.quick.quick2 .container {
    display: flex;
}

.quick .formnav {
    width: 44%;

}

.quick .formnav .form-control {
    background-color: #ffffff;
    border: solid 1px #dbdbdb;
    margin-bottom: 30px;
    height: 42px;
    font-size: 14px;
}

.quick .formnav .form-control::placeholder {
    color: #666;
}

.quick .formnav .btn {
    width: 100%;
    background-color: #8a0001;
    height: 50px;
    color: #fff;
    font-family: bold;
    font-size: 17px;
    letter-spacing: 2px;
    border-radius: 18px;
}

.quick .map {

    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.nolink {
    cursor: auto;
}

.offers {
    background-color: #ededed;
    padding-bottom: 5%;
}

.offers .item {
    overflow: hidden;
    border-radius: 7px;
    position: relative;
    margin-bottom: 30px;
    border: solid 1px #d7d7d7;
    box-shadow: 0 40px 81px -16px rgb(50 50 93 / 25%), 0 24px 48px -24px rgb(0 0 0 / 30%);
    background: #FFF;
}

/* 
.offers .item:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
background: rgba(255,255,255,0);
background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(255,255,255,1)));
background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0 );

} */
.offers .item .btn {
    /* position: absolute; */
    left: 0;
    bottom: 19px;
    color: #ffffff;
    background-color: #8a0001;
    font-family: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 8px;
    /* left: 50%;
    transform: translateX(-50%); */
    width: 100%;
    /* 90%*/
    height: 42px;
    line-height: 31px;
    z-index: 2;
    border: solid 1px #640001;
    -webkit-box-shadow: 0 4px 6px rgb(50 50 93 / 11%), 0 1px 3px rgb(0 0 0 / 8%);
    box-shadow: 0 4px 6px rgb(50 50 93 / 11%), 0 1px 3px rgb(0 0 0 / 8%);
}

.offers .item .btn:hover {
    color: #8a0001;
    background-color: #ffffff;

}

.carousel-control-next,
.carousel-control-prev {
    z-index: 2;
}

.carousel-indicators {
    bottom: 15%;
}

.stores {
    padding-top: 40px;
    padding-bottom: 70px;
}

.stores .container {
    display: block;
}

.stores .item {
    position: relative;
    border: solid 1px #ccc;
    background-color: #fff;
    border-radius: 5px;
    margin: 0px 0px;
    display: flex;
    margin-top: 15px;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 6px rgb(50 50 93 / 11%), 0 1px 3px rgb(0 0 0 / 8%);
    box-shadow: 0 4px 6px rgb(50 50 93 / 11%), 0 1px 3px rgb(0 0 0 / 8%);
}

.stores .item .data {
    width: 30%;
    padding: 5%;
}

.stores .item .data h1 {
    font-family: bold;
    color: #8a0001;
    margin-bottom: 15px;
    font-size: 25px;
}

.stores .item .data p {
    font-size: 15px;
}

.stores .item .data a {
    color: inherit;
    font-size: 15px;
}

.stores .item .data a:hover {}

.stores .item .thumb {
    width: 30%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
    height: 350px;
}

.stores .item .map {
    width: 40%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}


#app {
    position: relative;

    width: 100%;
    height: 100vh;

    font-family: monospace;
}

.a,
.b,
.c,
.d,
.e {
    position: absolute;

    width: 100%;
    height: 100%;
    overflow: hidden;

    display: flex;

    opacity: 50%;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    background-size: 100%;
}

.a {
    background-color: dodgerblue;
    background-image: url(../img/slide1.jpg);
    animation-name: fade-a;
}

.b {
    background-color: palevioletred;
    background-image: url(../img/slide2.jpg);
    animation-name: fade-b;
}

.c {
    background-color: teal;
    background-image: url(../img/slide3.jpg);
    animation-name: fade-c;
}

.d {
    background-color: goldenrod;
    background-image: url(../img/slide4.jpg);
    animation-name: fade-d;
}

.e {
    background-color: seagreen;
    background-image: url(../img/slide2.jpg);
    animation-name: fade-e;
}

@keyframes fade-a {
    0% {
        opacity: 1;
    }

    /* fade out once next element (B) fade in (15%) */
    15% {
        opacity: 1;
    }

    /* fade effect takes 5% (15% to 20%)  of the total animation duration */
    20% {
        opacity: 0;
    }

    /* fade in once the last element (E) fade out (95%) */
    95% {
        opacity: 0;
    }

    /* fade effect takes 5% (95% to 100%) of the total animation duration */
    100% {
        opacity: 1;
    }
}

@keyframes fade-b {
    0% {
        opacity: 0;
    }

    /* fade in */
    15% {
        opacity: 0;
    }

    /* faded in */
    20% {
        opacity: 1;
    }

    /* fade out */
    35% {
        opacity: 1;
    }

    /* faded out */
    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fade-c {
    0% {
        opacity: 0;
    }

    /* fade in */
    35% {
        opacity: 0;
    }

    /* faded in */
    40% {
        opacity: 1;
    }

    /* fade out */
    55% {
        opacity: 1;
    }

    /* faded out */
    60% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fade-d {
    0% {
        opacity: 0;
    }

    /* fade in */
    55% {
        opacity: 0;
    }

    /* faded in */
    60% {
        opacity: 1;
    }

    /* fade out */
    75% {
        opacity: 1;
    }

    /* faded out */
    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fade-e {
    0% {
        opacity: 0;
    }

    /* fade in */
    75% {
        opacity: 0;
    }

    /* faded in */
    80% {
        opacity: 1;
    }

    /* fade out */
    95% {
        opacity: 1;
    }

    /* faded out */
    100% {
        opacity: 0;
    }
}

.a span,
.b span,
.c span,
.d span,
.e span {
    width: 100%;

    font-size: 10vw;
    font-weight: bold;
    text-transform: uppercase;
    color: white;

    margin: 0;
    padding-left: 1ch;
    padding-right: 1ch;

    display: flex;
    justify-content: center;
    align-items: center;

    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.a span {
    width: 20%;
    margin-left: 0%;
    animation-name: kburns-a;
}

.b span {
    width: 20%;
    margin-left: 20%;
    animation-name: kburns-b;
}

.c span {
    width: 20%;
    margin-left: 40%;
    animation-name: kburns-c;
}

.d span {
    width: 20%;
    margin-left: 60%;
    animation-name: kburns-d;
}

.e span {
    width: 20%;
    margin-left: 80%;
    animation-name: kburns-e;
}

@keyframes kburns-a {
    from {
        transform: scale(1.2);
    }

    to {
        transform: translate3d(10%, 10%, 0) scale(2);
    }
}

@keyframes kburns-b {
    from {
        transform: scale(1.2);
    }

    to {
        transform: translate3d(-10%, 10%, 0) scale(2);
    }
}

@keyframes kburns-c {
    from {
        transform: scale(1.2);
    }

    to {
        transform: translate3d(10%, -10%, 0) scale(2);
    }
}

@keyframes kburns-d {
    from {
        transform: scale(1.2);
    }

    to {
        transform: translate3d(-10%, -10%, 0) scale(2);
    }
}

@keyframes kburns-e {
    from {
        transform: scale(1.2);
    }

    to {
        transform: translate3d(10%, -10%, 0) scale(2);
    }
}


.quote-form {
    font-size: 14px;
}

.quote-form .modal-title {
    font-family: 'Barlow Condensed', sans-serif;
}

/* .quote-form label{
    margin-bottom: 3px;
} */
.quote-form input,
.quote-form textarea {
    margin-bottom: 12px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #bdbdbd;
    padding: 9px 10px;
}

.quote-form textarea {
    height: 100px;
}

.quote-form input[type=file] {
    color: transparent;
    width: 90px;
    border: 0;
    padding: 0;
}


.quote-form input[type=file]::file-selector-button {
    border: 1px solid #BDBDBD;
    padding: 5px 10px;
    border-radius: .5;
    background-color: #F1F1F1;
    transition: 1s;
    border-radius: 20px;
    cursor: pointer;
}

.quote-form input[type=file]::file-selector-button:hover {
    background-color: #FFE4E4;
    border: 1px solid #bdbdbd;
}

.quote-form input[type=submit] {
    background-color: #8a0001;
    border-radius: 20px;
    color: #FFF;
    padding: 8px 15px;
}

.quote-form input[type=submit]:hover {
    background-color: #a30000;
}

.productsDetails {
    background-color: #ededed;
}

.productsDetailsSub {
    background-color: #FFF;
    padding: 50px;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 50px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 0 10px #ddd;
    position: relative;
}

.productsDetailsClose {
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px;
    cursor: pointer;
    max-width: 25px;
    z-index: 90;
}


.productsDetailsPic img {
    border-radius: 5px;
}

.productsDetailsCont {
    padding-left: 100px;
}

.productsDetailsCont .btn {
    margin-right: 10px;
    margin-top: 30px;
    padding: 10px;
}

.productsDetailsCont a.dowpdf {
    border: 1px solid #333;
    border-radius: 5px;
}

.productsDetailsCont a.dowpdf:hover {
    background: #cecece;
}

.productsDetailsCont a.enqsent {
    border: 1px solid #8A0001;
    background: #8A0001;
    border-radius: 5px;
    color: #FFF;
}

.productsDetailsCont a.enqsent:hover {
    filter: brightness(130%);
}

.productsDetailsCont .btn img {
    width: 18px;
    margin-right: 10px;
}




.productsDetailsCont ul {
    padding: 0;
    list-style: none;
}

.productsDetailsCont ul>li {
    display: flex;
    padding: 2px 0;
}

.productsDetailsCont ul>li span:first-child {
    width: 100px;
    padding-right: 20px;
}

.productsDetailsContHead {
    font-size: 28px;
    font-weight: bold;
    color: #8A0001;
    /* font-family: 'Barlow Condensed', sans-serif; */
}

.productsDetailsContPrice {
    font-size: 28px;
    color: #8A0001;
    font-weight: bold;
    padding: 14px 0;
    padding-left: 30px;
    position: relative;
    font-family: 'Barlow Condensed', sans-serif;
}

.productsDetailsContPrice::before {
    position: absolute;
    content: "₹";
    width: 30px;
    height: 30px;
    top: 14px;
    left: 0;
}

.uplobtn {
    border-radius: 20px;
    padding: 7px 15px;
    border: 1px solid #D1D1D1;
    background: #EBEBEB;
    cursor: pointer;
    margin-bottom: 20px;
}



.items {
    text-align: center;
    color: #FFF;
    font-size: 20px;
}

.items a {
    display: block;
    color: #737373;
}

.items a:hover {
    color: #7373738e;
}

.whites .items a {
    color: #FFF;
}

.whites .items a:hover {
    color: #ffffffa2;
}



.items .pic {
    overflow: hidden;
    margin-bottom: 10px;
}

.items img {
    transition: all 0.3s ease-in-out;
}

.items:hover img {
    scale: 1.1;
}

.h-offer {
    background: #FFFFFFDB;
    position: absolute;
    max-width: 300px;
    padding: 15px;
    margin: 0 0 -50px -100px;
    bottom: 0;
    box-shadow: 0 0 15px -1px #9f9d9d47;
    border-radius: 3px;
}

.h-offer-head {
    font-family: 'Barlow Condensed', sans-serif;
    font-style: normal;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
}

.h-offer-head span:first-child {
    font-size: 30px;
    text-transform: uppercase;
}

.h-offer-head span a:last-child {
    background: #8e0a0a;
    padding: 5px 12px 5px 12px;
    border-radius: 30px;
    color: #FFF;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 14px;
}

.h-offer-head span a:last-child:hover {
    background: #8a040496;
}


.itemContWrapper {
    padding: 15px;
}

.itemContWrapper h6 {
    color: #941617;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.itemContWrapper .dis {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 10px;
}

.itemContWrapper .btn {}

@keyframes mymove {
    100% {
        transform: translateX(-6400px);
    }
}


.marquee-wrapper.tiles .marquee-block {
    --total-marquee-items: 12;
}

.marquee-wrapper.electronics .marquee-block {
    --total-marquee-items: 11;
}

.marquee-wrapper.sanitary .marquee-block {
    --total-marquee-items: 15;
}

.marquee-wrapper.electricals .marquee-block {
    --total-marquee-items: 15;
}

.marquee-wrapper.plumbing .marquee-block {
    --total-marquee-items: 15;
}

.marquee-wrapper.all .marquee-block {
    --total-marquee-items: 37;
}

.marquee-wrapper.tiles .marquee-inner.to-left {
    animation: marqueeLeft 30s linear infinite;
}

.marquee-wrapper.electronics .marquee-inner.to-left {
    animation: marqueeLeft 20s linear infinite;
}

.marquee-wrapper.sanitary .marquee-inner.to-left {
    animation: marqueeLeft 20s linear infinite;
}

.marquee-wrapper.electricals .marquee-inner.to-left {
    animation: marqueeLeft 70s linear infinite;
}

.marquee-wrapper.plumbing .marquee-inner.to-left {
    animation: marqueeLeft 15s linear infinite;
}

.marquee-wrapper.all .marquee-inner.to-left {
    animation: marqueeLeft 70s linear infinite;
}

.marquee-wrapper {
    background: #FFF;
    margin: 0;
}

.marquee-wrapper .container-fluid {
    overflow: hidden;
    padding: 0;
}

.marquee-inner span {
    float: left;
    width: 50%;
}

.marquee-wrapper .marquee-block {
    /*--total-marquee-items:72;*/
    width: calc(120px * (var(--total-marquee-items)));
    height: 50px;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    margin: 20px auto;
    padding: 0px 0;
    max-width: 100%;
}

.marquee-inner {
    display: block;
    width: 200%;
    position: absolute;
}

/* .marquee-inner.to-left{animation: marqueeLeft 70s linear infinite;} */
/* .marquee-inner.to-right{animation: marqueeRight 25s linear infinite;} */
.marquee-item {
    width: 80px;
    height: auto;
    display: inline-block;
    margin: 0 20px;
    float: left;
    transition: all .2s ease-out;
}

.marquee-item img {
    max-width: 100%;
}

.h-offer-pic .items img {
    max-width: 100%;
}



.marquee-inner:hover {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

@keyframes marqueeLeft {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

@keyframes marqueeRight {
    0% {
        left: -100%;
    }

    100% {
        left: 0;
    }
}



@media only screen and (max-width: 767px) {

    .h-offer {
        position: relative;
        margin: 20px 0 0 0px;
        /* max-width: 100%; */
        max-width: calc(100vw - 30px);
    }


    .stores {
        padding-top: 0px;
        padding-bottom: 15px;
    }

    .stores .item {
        display: block;
    }

    .stores .item .data {
        width: 100%;
        padding: 20px;
    }

    .stores .item .thumb {
        width: 100%;
        height: 170px;
    }


    .stores .item .map {
        width: 100%;
        position: static;
        height: 150px;
    }

    .stores .item .data h1 {
        margin-bottom: 10px;
        font-size: 22px;
    }

    .title {
        font-size: 40px;
    }

    .btn.btn-explore {
        margin-top: 15px;
    }

    .carousel-indicators {
        bottom: 3%;
    }

    .banner .data h1 span {
        max-width: 100%;
        padding-left: 10px;
    }

    .quick .datanav {
        flex-wrap: wrap;
    }

    .productbanner h1 span .icon {
        width: 34px;
        right: -47px;
        top: 0px;
    }

    .quick .item {
        border-bottom: solid 1px #ccc;
        width: 100%;
    }

    .quick .item:last-child {
        border: 0;
    }

    .quick .item a {
        margin: 0px auto 7px auto;
        display: table;
    }

    .quick .item a:last-child {
        margin: 0px auto;
    }

    .quick.quick2 .container {
        flex-wrap: wrap;
    }

    .quick .formnav {
        width: 100%;
    }

    .quick .map {
        position: static;
        width: 100%;
        margin-top: 30px;
        height: 300px;
    }

    .quick .formnav .form-control {
        margin-bottom: 16px;
    }

    .quick .formnav .btn {
        height: 40px;
        font-size: 15px;
        border-radius: 8px;
        line-height: 28px;
    }

    .quick .title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .quick .title.title2 {
        text-align: center;
    }

    .contactbanner {
        margin-top: 60px;
        height: 205px;
        background-size: cover;
        background-position: center;
    }

    .offers {
        padding-top: 20px;
    }

    .offers .item {
        margin-bottom: 20px;
    }

    .pconly {
        display: none;
    }

    .mobonly {
        display: block;
    }

    p {
        font-size: 15px;
    }

    .abtdata2 img {
        width: 60%;
    }

    .abtdata2 h2 {
        font-size: 30px;
        margin-bottom: 5px;
        margin-top: 15px;
    }

    .abtdata2 h3 {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .abtdata2 {
        text-align: center;
    }

    .abtdata2 p {
        text-align: justify;
    }

    .abtdata3 .thumb {
        position: static;
        height: 200px;
        width: 100%;
        margin-bottom: 15px;
    }

    .abtdata3 .padleft50 {
        padding-left: 15px;
    }

    .abtdata3 .padright50 {
        padding-right: 15px;
    }

    .abtdata3 {
        padding: 0% 0% 25px 0%;
    }

    .abtdata3 h2 {
        font-size: 30px;
    }

    .abtdata3 h3 {
        margin-bottom: 15px;
        font-size: 16px;
    }

    .abtdata3 p {
        text-align: justify;
    }

    .abtdata3.abtdata4 h3 {
        font-size: 19px;
    }

    .inbanner {
        margin-top: 60px;
    }

    .abtdata1 p {
        text-align: justify;
    }

    .abtdata1 h5:before {
        display: none;
    }

    .abtdata1 h5 {
        max-width: 90%;
        margin: 0px auto;
        margin-top: 30px;
        font-size: 18px;
        color: #8a0001;
    }

    .abtdata1 .cats {
        margin-top: 10px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .abtdata1 .cats .item img {
        width: 47px;
    }

    .abtdata1 .cats .item {
        width: 100%;
        padding: 20px;
        margin-top: 5px;
    }

    .abtdata1 .cats .item p {
        font-size: inherit;
        text-align: center;
    }

    .targetpage .item span {
        padding: 20px 20px 30px 20px;
        align-items: baseline;
        flex-direction: column;
        width: 100%;
        border: 0;
    }

    .targetpage .item .btn {
        height: 34px;
        width: 96px;
        line-height: 33px;
        margin-top: 20px;
    }

    .targetpage .row {
        justify-content: space-between;
    }

    .targetpage .row div {
        margin: 0px;
        padding: 0px;
    }

    .targetpage .row div.col-md-6 {
        width: 49%;
    }

    .targetpage .row div.item {
        margin-top: 15px;
        background-size: contain;
        background-repeat: no-repeat;
        height: auto;
        padding-top: 410px;
    }

    .targetpage h2 p {
        max-width: 100%;
    }

    .targetpage h2 {
        font-size: 34px;
    }

    .productsdisplay .container .col-md-4 {
        width: 49.5%;
    }

    .productsdisplay .container .item img {
        max-width: 100%;
    }

    .productsdisplay .container div {
        margin: 0;
        padding: 0;
    }

    .productsdisplay .container .row {
        justify-content: space-between;
    }

    .productsdisplay .container .item {
        margin-bottom: 4px;
    }

    .productsdisplay .container .item h3 {
        font-size: 17px;
    }

    .productbanner h1 {
        font-size: 40px;
        padding-bottom: 0;

    }

    .productbanner {
        margin-top: 60px;
        padding-bottom: 20px;
    }

    .bredcrumb {
        justify-content: flex-start;
        margin-bottom: 15px;
    }

    .connecttab a {
        font-size: 15px;
        width: 100%;
        border-bottom: solid 1px #ccc;
        padding: 12px 0px;
    }

    .connecttab a:last-child {
        border-bottom: 0;

    }

    .connecttab {
        flex-wrap: wrap;
        border-bottom: 0;
        margin: 0;
        margin-top: 30px;
    }

    .productsdisplay .container {
        display: flex;
        justify-content: center;
    }

    .connecttab a.active {
        border-bottom: 0;
    }

    .megamenu {
        top: 60px;
        flex-wrap: wrap;
        height: 100vh;
        max-height: 100vh;
        overflow: auto;
    }

    .megamenu.active {}

    .megamenu .product {
        width: 100%;
        padding-top: 0;
        font-size: 28px;
        background-size: 32px;
        background-position: 90% 50%;
        border-right: 0;
        border-bottom: solid 1px #ddd;
        -webkit-text-stroke-width: 1px;
    }

    .megamenu .product.mob1 {
        background-image: url(../img/mob1.png) !important;
    }

    .megamenu .product.mob2 {
        background-image: url(../img/mob2.png) !important;
    }

    .megamenu .product.mob3 {
        background-image: url(../img/mob3.png) !important;
    }

    .megamenu .product.mob4 {
        background-image: url(../img/mob4.png) !important;
    }

    .megamenu .product.mob5 {
        background-image: url(../img/mob5.png) !important;
    }

    .megamenu .product.mob6 {
        background-image: url(../img/mob6.png) !important;
    }

    .megamenu span {
        width: 100%;
        padding: 10px 25px;
        background-image: url(../img/menumobline.png);
        background-size: 100%;
        background-repeat: repeat-y;
    }

    .megamenu span br {
        display: none;
    }

    .megamenu .product p {
        display: none;
    }

    .megamenu .product .btn {
        display: none;
    }

    .megamenu .menu {
        width: 100%;
        padding-top: 20px;
        padding-bottom: 100px;
    }

    .megamenu .menu a {
        width: 100%;
        padding: 6px 20px;
        font-size: 16px;
    }

    .megamenu .product:hover {
        background-size: 32px;
    }

    .bg {
        transform: none !important;
    }

    .pchide {
        display: block;
    }

    .mobhide {
        display: none;
    }

    .section2 h2 {
        font-size: 38px;
        -webkit-text-stroke-width: 1.5px;
        line-height: inherit;
    }

    .section1 .title {
        max-width: 100%;
    }

    header .connect {
        display: none;
    }

    header .container {}

    a.logo {
        transform: none;
        position: static;
    }

    footer {
        padding: 60px 0px
    }

    footer .menu {
        flex-wrap: wrap;
    }

    footer .menu a {
        margin: 5px 15px;
    }

    footer .catlinks {
        flex-wrap: wrap;
    }

    footer .catlinks a {
        font-size: 13px;
        letter-spacing: 0.5px;
        padding-left: 7px;
        width: 33.33333%;
        margin-bottom: 20px;
    }

    footer .catlinks a:before {
        top: 11%;
        height: 77%;
    }

    footer .catlinks {
        justify-content: space-between;
    }

    footer .end p {
        font-size: 11px;
    }

    footer .end a {
        font-size: 11px;
    }

    footer .logo {
        height: 50px;
    }

    footer .logo .square {
        width: 50px;
        height: 50px;
        background-size: contain;
    }

    .storesearch .row div {
        margin: 10px 0px;
    }

    .brands .mover {
        -webkit-animation: slide 4s linear infinite;
        margin-top: 40px;
    }

    .brands .title {
        -webkit-text-stroke-width: 1.5px;
        font-size: 40px;
    }

    .brands {
        padding: 60px 0px;
    }

    .testi .title {
        font-size: 40px;
        -webkit-text-stroke-width: 1px;
    }

    .testi {
        padding: 60px 0px;
    }

    .quote img {
        margin-top: 0px;
    }

    .testi p {
        max-width: 100%;
        line-height: 23px;
        letter-spacing: 0.5px;
        font-size: 16px;
    }

    .testi p span {
        padding-top: 15px;
    }

    .quote {
        margin-bottom: 20px;
    }

    .section2.section3 h2 {
        text-align: left;
    }

    .section2.section3 .item {}

    .section2 p {
        margin-bottom: 0px;
        font-size: 15px;
    }

    .section2.section3 .row:nth-child(1) {
        flex-direction: column-reverse;
    }

    .section2.section3 .item img {
        width: 100%;
    }

    .section2.section3 .row:nth-child(2) {
        justify-content: center;
    }

    .section2.section3 {
        padding: 30px 0px 35px 0px;
    }

    .section2 .item {
        width: 25%;
        margin-bottom: 10px;
        margin-bottom: 20px;
    }

    .section2 .item img {
        max-width: 70%;
        width: 95%;
    }

    .section2.section6 .item img {
        max-width: 100%;
        width: 100%;
    }

    .section2.section6 .item {
        width: 30%;
    }

    .section2.section4 {
        padding: 30px 0px 60px 0px;
    }

    .section2 .item h6 {
        font-size: 17px;
    }

    .section2.section3.section5 .item {
        width: 33%;
    }

    .section2.section3.section5 .row:nth-child(1) {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .section2.section3.section5 {
        padding: 30px 0px 5px 0px;
    }

    header {
        height: 60px;
    }

    .banner {

        /* margin-top: 60px; */
    }

    .banner .data h1 {
        font-size: 37px;
        margin-bottom: 20%;

    }

    .section1 .bdbox {
        display: none;
    }

    .carousel-control-next,
    .carousel-control-prev {
        display: none;
    }

    .productsDetailsSub {
        padding: 20px;
    }

    .productsDetailsCont {
        padding-left: 0px;
    }

    a.logo {
        max-width: 50%;
    }

    .productsDetailsClose {
        margin: 5px;
    }


    .banner h1 {
        font-size: 45px;
        left: 5%;
        width: 90%;
        bottom: 15%;
    }

    .a,
    .b,
    .c,
    .d,
    .e {
        background-size: cover;
    }

    .marquee-wrapper.all .marquee-inner.to-left {
        animation: marqueeLeft 5s linear infinite;
    }

}