@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');

:root {
    --black: #000;
    --white: #fff;
    --primary_color: #C11622;
    --secondary_color: #5B0A10;
    --font-family: Poppins, sans-serif;
    --center__color: #93e6ff;
    --font-heading: "Rubik", sans-serif;
}

ul,
li {
    list-style: none;
    padding: 0;
}

ul {
    margin: 0;
}

a {
    color: #000;
    text-decoration: none;
}


@font-face {
    font-family: 'Brans';
    src: url('../fonts/Brans-Bold.eot');
    src: url('../fonts/Brans-Bold.ttf') format('embedded-opentype'),
        url('../fonts/Brans-Bold.woff2') format('woff2'),
        url('../fonts/Brans-Bold.woff') format('woff'),
        url('../fonts/Brans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Brans';
    src: url('../fonts/Brans-Light.eot');
    src: url('../fonts/Brans-Light.woff2') format('woff2'),
        url('../fonts/Brans-Light.woff') format('woff'),
        url('../fonts/Brans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

body {
    background: #000;
}


/*Top Bar Section Begin*/

.top___bar__sec .container-fluid {
    padding: 0;
}

.top___bar__sec {
    border-bottom: 2px solid #500A0F;
    padding: 10px 0;
}

.top___bar___content marquee {
    color: var(--white);
    font-size: 23px;
    padding: 8px 0;
}

.marquee {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    gap: 50px;
    animation: scroll-marquee 20s linear infinite;
}

.marquee-content p {
    margin: 0;
    white-space: nowrap;
    font-size: 24px;
    color: var(--white);
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*Top Bar Section End*/

/*Header  Section Begin*/

.header___icon___top {
    background: var(--black);
    box-shadow: 0px 10px 40px var(--secondary_color);
    height: 130px;
    padding: 30px 40px;
    border-bottom-right-radius: 110px;
    text-align: center;
    margin-top: -40px;
}

.header___icon___top ul li a {
    background: #000;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    border: 1px solid #c11622;
    transition: 0.5s ease-in-out;
    color: #fff;
}

.header___icon___top ul li a img {
    width: 23px;
}

.header___icon___top ul li a:hover {
    background: #c11622;
    transition: 0.5s ease-in-out;
}

.header___icon___top ul li {
    display: inline-block;
    padding: 0 10px 0 0;
}

.header___icon___top.right___header {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 110px;
}

.logo__sec__main {
    text-align: center;
    background: var(--black);
    box-shadow: 0px 0px 30px var(--secondary_color);
    width: 250px;
    margin: 20px auto;
    border-radius: 80px;
    border: 1px solid #545454;
    padding: 10px 0;
    position: relative;
    left: -50px;
}

.logo__sec__main:after {
    content: '';
    position: absolute;
    background: #000;
    box-shadow: 0px 10px 30px var(--secondary_color);
    width: 630px;
    height: 130px;
    top: -21px;
    right: -180px;
    z-index: -1;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 100px;
    display: flex;
    align-items: center;
}

.logo__sec__main img {
    width: 100%;
}

.manu___main ul li {
    display: inline-block;
    padding: 0 22px 0 20px;
}

.manu___main ul li a {
    color: var(--white);
}

header .row {
    align-items: center;
}

.manu___main ul li a {
    font-size: 18px;
}

header {
    position: absolute;
    width: 100%;
    z-index: 99;
}

.manu___main {
    text-align: center;
}

/*Header  Section End*/


/*Banner Section Begin*/

.banner___main .carousel-caption {
    right: 0;
    text-align: left;
    top: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
    left: 0;
    justify-content: center;
    padding: 0;
}

.banner___main .carousel-caption .container-fluid {
    padding: 0 170px;
}

.banner__content h1 {
    font-size: 80px;
    line-height: 90px;
    font-weight: bold;
    margin-bottom: 20px;
}

.banner__content p {
    font-size: 20px;
    line-height: 35px;
    color: var(--white);
    font-weight: 300;
}

.right___banner__img {
    position: relative;
    z-index: 9;
}

.right___banner__img:after {
    content: '';
    background: url(../images/product-bottom-img.svg);
    width: 543px;
    height: 334px;
    position: absolute;
    bottom: -210px;
    right: 107px;
    z-index: -1;
}

.banner____sec___main {
    background: url(../images/banner-img-01.jpg) no-repeat;
    width: 100%;
    height: 1080px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    overflow: hidden;
    z-index: 99;
}

.banner___text {
    text-align: center;
    position: absolute;
    z-index: 99;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    top: 110px;
    opacity: 0.6;
    left: -50px;
}

.banner___product___sec {
    text-align: center;
}

.center___sec {
    margin: 0 auto;
}

.banner___product___sec img {
    margin: 0 auto;
    position: relative;
    z-index: -1;
}

.thumb___box {
    text-align: center;
    margin: 0 auto;
    background: #AF131E;
    background: linear-gradient(90deg, rgba(175, 19, 30, 1) 0%, rgba(91, 10, 16, 1) 100%);
    width: 120px;
    height: 110px;
    border: 1px solid var(--secondary_color);
    margin: 0 30px 0 0;
    border-radius: 10px;
    display: flex;
}

.thumb___box img {
    margin: auto;
}

.thumb___sec___main {
    z-index: 99;
    margin-top: -30px;
    position: relative;
}

.our___products__sec .products___sec span.featured,
.our___products__sec .products___sec span.exclusive {
    position: absolute;
    top: -31px;
    background: var(--primary_color);
    padding: 10px 20px;
    border-radius: 120px;
    color: var(--white);
    text-transform: capitalize;
    right: 40%;
}

.products___sec:hover span.featured,
.products___sec:hover span.exclusive {
    background: var(--secondary_color);
}

.tab-single .single-des {
    width: 100%;
}

.shop.single .single-des table {
    width: 100% !important;
}

.shop.single .single-des table tbody tr td,
.shop.single .single-des table tbody tr th {
    padding: 25px 30px;
    border-bottom: 1px solid #fff;
    background: var(--secondary_color);
    border-right: 1px solid #fff;
}

.products___bottom {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 99%;
    text-align: center;
}

.products___bottom img {
    position: relative;
    z-index: -1;
}

.center___heading___sec h2 {
    text-align: center;
    font-size: 100px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
}

.category___sec {
    border-top: 1px solid #C11622;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
}

.padding___70 {
    padding: 70px 0;
}

.body__breadcrumbs {
    background: url(../images/banner-img-01.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0;
}

.body__bread__inner h2 {
    font-size: 50px;
    font-weight: 600;
    color: white;
}


.inner___img {
    height: 550px;
    object-fit: cover;
}

.inner___banner .carousel-caption {
    top: 50px;
}

/*Banner Section End*/


/*Category Section Begin*/

.categorysec__box {
    border: 1px solid #270407;
    border-radius: 330px;
    text-align: center;
    width: 280px;
    height: 280px;
    box-shadow: 0px 0px 30px var(--secondary_color);
    position: relative;
    transition: 0.5s ease-in-out;
}

.category___sec .container-fluid {
    padding: 0 100px;
}

.category__overlay h3 {
    color: var(--white);
    font-size: 40px;
}

.category__overlay p {
    color: var(--white);
    font-size: 18px;
    font-weight: 300;
}

.category__overlay {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
}

.categorysec__box:hover .category___img img {
    opacity: 0.2;
    width: 80%;
    transform: rotate(-35deg);
    transition: 0.7s ease-in-out;
}

.category___img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: 0.5s ease-in-out;
}

.category___img img {
    transform: rotate(-0deg);
    transition: 0.7s ease-in-out;
    width: 100%;
}

.categorysec__box:hover .category__overlay {
    opacity: 1;
    transition: 0.7s ease-in-out;
}

.category__autoplay .slick-track {
    overflow: unset;
    padding: 20px 20px;
    padding-bottom: 30px;
}

.categorysec__box:after {
    content: '';
    position: absolute;
    background: url(../images/category-vector-img-01.png);
    width: 25px;
    height: 25px;
    top: 43%;
    right: -48px;
    background-size: cover;
}

/*Category Section End*/
/*Our Reseacrh Section Begin*/

.research___head___con h2 {
    font-size: 78px;
    text-align: left;
    color: var(--white);
    text-transform: uppercase;
    line-height: 120px;
    position: relative;
    z-index: 9;
    font-weight: bold;
}

.reseach___sec__main .container-fluid {
    padding: 0 100px;
}

.research___head___con h2 span {
    color: #000;
    -webkit-text-stroke: 2px #fff;
    -webkit-text-fill-color: var(--secondary_color);
}

.researh___para p {
    color: var(--white);
    width: 80%;
    font-size: 18px;
    line-height: 30px;
}

.research___img___sec {
    position: relative;
}

.research___img___sec img {
    position: absolute;
    right: -60px;
    margin-top: -480px;
}

.reseach___sec__main {
    background: url(../images/research-bg.png);
    background-size: cover;
    padding: 240px 0 370px;
    background-position: 100%;
}

.btn___sec ul li {
    display: inline-block;
    padding: 0 20px 0 0;
}

.btn___sec ul li a {
    font-size: 18px;
    background: transparent;
    padding: 13px 30px;
    display: inline-block;
    color: var(--white);
    border-radius: 50px;
    font-family: 'Rubik';
    font-weight: 300;
    border: 2px solid var(--secondary_color);
    transition: 0.5s ease-in-out;
}

.btn___sec {
    padding-top: 20px;
}

.btn___sec ul li a:hover {
    background: var(--primary_color);
    transition: 0.5s ease-in-out;
}

.badge___tag01 img {
    position: absolute;
    bottom: -335px;
    left: -180px;
}

.research___tag__overlay {
    position: absolute;
    top: 154px;
    left: -90px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 34%;
}

.badge___tag01 {
    position: relative;
}

.research___tag__overlay p {
    color: var(--white);
    font-size: 15px;
    width: 83%;
    line-height: 22px;
}

.research___tag__overlay span {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 20px;
}

.badge___tag01.badge___tag02 img {
    left: auto;
    bottom: -475px;
    right: 40px;
}

.badge___tag01.badge___tag02 .research___tag__overlay {
    right: 70px;
    left: auto;
    top: 293px;
}

.badge___tag01.badge___tag03 img {
    left: auto;
    bottom: -120px;
}

.badge___tag01.badge___tag03 .research___tag__overlay {
    top: -50px;
    left: auto;
    right: 30px;
    bottom: auto;
}

/*Our Reseacrh Section End*/
/*Our Products Section Begin*/

.our___products__sec .container-fluid {
    padding: 0 90px;
}

.price___tag span.text-success {
    color: var(--white) !important;
}

.heading__pro h3 {
    color: var(--white);
    font-size: 90px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 100px;
}

.heading__pro p {
    color: var(--white);
    font-size: 19px;
    line-height: 29px;
    font-weight: 300;
    margin-bottom: 0;
}

.our___products__sec {
    border-top: 2px solid var(--primary_color);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom: 2px solid var(--primary_color);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.product__img__sec {
    background: #1E0406;
    text-align: center;
    padding: 80px 0 30px;
    height: -webkit-fill-available;
    border-top-left-radius: 230px;
    border-top-right-radius: 230px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    transition: 0.5s ease-in-out;
}

.products___sec {
    margin: 0 50px 0 20px;
    border: 2px solid rgb(91 10 16 / 43%);
    background: #000;
    padding: 30px;
    border-top-left-radius: 230px;
    border-top-right-radius: 230px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0px 10px 150px #1e0406;
    position: relative;
    transition: 0.5s ease-in-out;
    margin-bottom: 100px;
}

.products__weight {
    display: flex;
    padding: 0 20px;
    align-items: center;
    background: #000;
    margin: 0 20px;
    padding: 8px 20px;
    border-radius: 50px;
}

.label___span span {
    color: var(--white);
    font-size: 17px;
    width: 130px;
    display: inline-block;
    text-align: left;
}

.products__img {
    padding-bottom: 35px;
}

.products__img img {
    width: 100%;
}

.select___pro select {
    width: 100px;
    background: transparent;
    border: none;
    font-size: 18px;
    color: var(--white);
    margin-left: 16px;
}

.select___pro select option {
    color: #000;
}

.label___span {
    border-right: 1px solid var(--primary_color);
}

.select___pro select:focus-visible {
    box-shadow: none;
    border: 0;
    outline: none;
}

.rating__pro ul li {
    display: inline-block;
    padding: 0 7px 0 0;
    font-size: 18px;
    color: var(--primary_color);
    opacity: 0.5;
}

.rating__pro {
    padding-top: 20px;
}

.descri__name {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product__desc p {
    margin-bottom: 0;
    color: var(--white);
    font-size: 19px;
    font-weight: 300;
}

.product__name h6 {
    margin-bottom: 0;
    color: var(--white);
    font-size: 21px;
}

.product__name h6 a {
    color: #fff;
}

.pro__btn {
    border: 1px solid var(--primary_color);
    border-radius: 50px;
    margin-top: 30px;
    position: absolute;
    width: 87%;
    bottom: -21px;
    padding: 11px 25px 11px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000;
}

.product__des_main {
    padding-bottom: 40px;
}

.btn___cart a {
    background: var(--primary_color);
    padding: 11px 40px;
    border-radius: 50px;
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 17px;
    transition: 0.5s ease-in-out;
}

.price___tag small {
    text-decoration: line-through;
    font-size: 21px;
    color: var(--primary_color);
    font-weight: 300;
}

.price___tag span {
    font-size: 21px;
    color: var(--white);
    font-weight: 300;
}

.products___sec:hover {
    box-shadow: 0px 10px 70px rgb(193 22 34 / 54%);
    border: 2px solid rgb(193 22 34 / 67%);
    transform: scale(1.1);
}

.products___sec:hover .product__img__sec {
    background: #440a0e;
}

.products___sec:hover .btn___cart a {
    background: var(--secondary_color);
    transition: 0.5s ease-in-out;
}

.our___products__sec .col-sm-4:nth-child(even) .products___sec {
    margin-top: 0;
}

/*Our Products Section End*/

/*Review Section Begin*/

.review___sec__main .row.review__row {
    background: var(--black);
    padding: 100px 30px;
    box-shadow: 0px 0px 30px rgb(193 22 34 / 39%);
    margin: 0 30px;
    border-radius: 280px;
    position: relative;
}

.review__circle__img {
    text-align: center;
}

.review___name h2 {
    color: var(--white);
    font-weight: 600;
    font-size: 25px;
    display: inline-block;
    text-transform: uppercase;
}

.review___name h2 span {
    padding-left: 10px;
}

.review___name span {
    padding-left: 15px;
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 400;
    font-size: 18px;
}

.rating___list ul li {
    display: inline-block;
    color: var(--primary_color);
    opacity: 0.5;
}

.rating___sec {
    display: flex;
    padding-bottom: 20px;
}

.rating___number {
    padding-left: 10px;
    color: var(--white);
    font-size: 16px;
}

.review___name {
    padding-bottom: 10px;
}

.rating__para p {
    color: var(--white);
    font-size: 19px;
    line-height: 34px;
    font-weight: 200;
}

.review___rightimg {
    position: absolute;
    top: -360px;
    right: 0;
}

.review___sec__main {
    margin-top: 220px;
    position: relative;
}

.review___sec__main .slick-dots li button:before {
    color: var(--primary_color);
    font-size: 56px;
}

.review___sec__main .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--secondary_color);
}

.heading___review__sec h5 {
    font-size: 210px;
    position: absolute;
    top: -16%;
    color: #5b0a1021;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    width: 100%;
    right: 0;
}

.center___off h6 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 297px;
    color: #130203;
    opacity: 0.8;
    stroke: 1px solid #C11622;
    -webkit-text-stroke: 2px rgb(193 22 34 / 23%);
    text-align: center;
}

.newsletter_heading h5 {
    color: var(--white);
    font-size: 57px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    text-align: center;
}

.newsletter__para p {
    font-size: 20px;
    color: var(--white);
    line-height: 33px;
    font-weight: 300;
}

.newsletter_heading {
    padding-bottom: 40px;
}

.newsform {
    margin-left: 50px;
    position: relative;
}

.newsform input {
    width: 100%;
    height: 70px;
    border-radius: 50px;
    background: transparent;
    border: 1px solid var(--primary_color);
    color: #fff !important;
    padding: 0 30px;
    font-size: 18px;
}

.newsform input::placeholder {
    color: white;
}

.newsform input:focus-visible {
    outline: none;
}

.newsform button {
    position: absolute;
    top: 20px;
    right: 6px;
    background: var(--primary_color);
    border: 0;
    width: 150px;
    height: 60px;
    top: 5px;
    border-radius: 60px;
    font-size: 20px;
    font-family: var(--font-heading);
    color: var(--white);
    text-transform: uppercase;
}

.mr-tp {
    margin-top: -240px;
    position: relative;
}

.center___off {
    position: relative;
}

.center___off:after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 330px;
    background: linear-gradient(to bottom, rgb(0 0 0), #00000000);
    transform: rotate(180deg);
}

/*Review Section End*/

/*Footer Section Begin*/

footer {
    border-top: 1px solid var(--primary_color);
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    margin-top: 60px;
}

.logo__footer {
    text-align: center;
    margin-top: -70px;
}

.logo__footer img {
    border: 1px solid var(--primary_color);
    border-radius: 110px;
    background: var(--black);
    box-shadow: 0px 0px 50px rgb(193 22 34 / 39%);
    padding: 17px 30px;
    width: 60%;
}

.logo__footer a {
    display: inline-block;
}

.fda___des {
    text-align: center;
    color: #fff;
}

.fda___des h2 {
    font-weight: 600;
    font-size: 36px;
    padding-bottom: 20px;
}

.fda___des p {
    font-size: 18px;
    line-height: 33px;
}

.social__media__link ul li {
    display: inline-block;
    padding: 0 10px 0 0;
    transform: rotate(-360deg);
    transition: 0.5s ease-in-out;
}

.social__media__link {
    padding-top: 20px;
}

.footer__heading {
    color: var(--white);
    padding-bottom: 20px;
}

.footer__heading h6 {
    font-size: 30px;
    font-weight: bold;
}

footer .container-fluid {
    padding: 0 70px;
}

.footer___links ul li a {
    color: var(--white);
    font-size: 19px;
    padding-bottom: 16px;
    display: inline-block;
}

.footer___det ul li {
    color: var(--white);
    display: block;
    padding-bottom: 12px;
    font-size: 17px;
}

.copy__right {
    padding-top: 30px;
}

.copytext p {
    font-size: 18px;
    color: var(--white);
    font-weight: 300;
}

.design__by {
    text-align: right;
    color: var(--white);
    font-size: 18px;
}

.design__by a {
    color: var(--primary_color);
    font-size: 19px;
    font-weight: 600;
    text-decoration: underline;
}

/* Dropdown Mini Cart */
.shopping-item {
    position: absolute;
    right: 80px;
    top: 59%;
    background: #000000;
    width: 320px;
    box-shadow: 0 5px 15px rgb(193 22 34);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 111111111;
}

/* Show on hover */
.sinlge-bar.shopping:hover .shopping-item {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Cart header */
.shopping-item .dropdown-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #000000;
    font-weight: 600;
    color: #FFF;
    border-bottom: 1px solid #eee;
}

/* Cart items list */
.shopping-item .shopping-list {
    display: block;
    max-height: 280px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 10px;
}

/* Individual cart item */
.shopping-item .shopping-list li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #c11622;
    padding: 8px 0;
    margin: 0;
    color: #fff;
}

.shopping-item .shopping-list li:last-child {
    border-bottom: none;
}

.shopping-item .cart-img {
    flex: 0 0 55px;
    margin-right: 10px;
}

.shopping-item .cart-img img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 5px;
}

/* Product name */
.shopping-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #333;
}


.our___products__sec .shop-top {
    background: #1e0406;
    border-radius: 90px;
    padding: 30px 50px;
    box-shadow: 0px 2px 30px var(--secondary_color);
}

.our___products__sec .shop-top .single-shorter {
    color: var(--white);
    font-size: 18px;
    font-weight: 200;
    display: flex;
    align-items: center;
}

.our___products__sec .shop-top .single-shorter select {
    width: 170px;
    height: 50px;
    border: 0;
    background: var(--secondary_color);
    color: #fff;
    border-radius: 40px;
    padding: 0 10px;
    font-size: 17px;
}

.product__searcher input {
    width: 350px;
    height: 50px;
    border: 0;
    background: var(--secondary_color);
    color: #fff !important;
    border-radius: 40px;
    padding: 0 20px;
    font-size: 17px;
}

.product__searcher a {
    color: white;
    font-size: 20px;
}

.product__searcher input::placeholder {
    color: white;
}

.product__searcher input:focus-visible {
    outline: none;
}

span.dis__price {
    padding-right: 5px;
}

.pagination___sec svg {
    width: 2%;
}

.pagination___sec {
    padding-bottom: 50px;
    text-align: center;
}

.pagination___sec p.text-sm.text-gray-700.leading-5 {
    padding: 30px 0 13px;
    font-size: 19px;
    color: var(--white);
}

.pagination___sec span.relative.z-0.inline-flex.shadow-sm.rounded-md a {
    background: var(--secondary_color) !important;
    padding: 14px 20px !important;
    color: var(--white);
    font-size: 19px;
    border: 1px solid rgb(255 255 255 / 9%) !important;
    margin: 0 5px;
}

.pagination___sec .flex.justify-between.flex-1.sm\:hidden a {
    background: var(--secondary_color) !important;
    margin: 0 10px;
    padding: 10px 20px !important;
    border: 1px solid rgb(255 255 255 / 9%) !important;
    color: var(--white);
    font-size: 17px;
}

.pagination___sec span.relative.z-0.inline-flex.shadow-sm.rounded-md span.relative.inline-flex.items-center.px-4.py-2.-ml-px.text-sm.font-medium.text-gray-500.bg-white.border.border-gray-300.cursor-default.leading-5 {
    background: var(--secondary_color) !important;
    padding: 14px 20px !important;
    color: var(--white);
    font-size: 19px;
    border: 1px solid rgb(255 255 255 / 9%) !important;
    margin: 0 5px !important;
}

.shop .single-shorter label {
    margin-right: 10px;
}

/* Quantity and price */
.shopping-item p.quantity {
    font-size: 13px;
    color: #666;
    margin: 5px 5px 0;
}

/* Remove button */
.shopping-item a.remove {
    color: var(--primary_color);
    font-size: 14px;
    transition: 0.3s;
}

.shopping-item a.remove:hover {
    background: var(--primary_color);
    color: white;
}

/* Bottom area (total + checkout) */
.shopping-item .bottom {
    padding: 12px 15px;
    border-top: 1px solid #c11622;
}

.shopping-item .bottom .total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
}

.shopping-item .bottom .btn {
    display: block;
    text-align: center;
    background: var(--primary_color);
    color: #fff;
    padding: 10px 0;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
    width: auto;
    height: auto;
}

.shopping-item .bottom .btn:hover {
    background: var(--primary_color);
}

.right-bar span.total-count {
    color: white;
}

.social__media__link {
    text-align: right;
}

.social__media__link ul li img {
    width: 64%;
}


/*Footer Section End*/


/*contact Us Section Begin*/

.form-main {
    border: 1px solid var(--primary_color);
    box-shadow: 0px 0px 30px var(--primary_color) !important;
    border-radius: 10px;
}

.form-main .title h4 {
    font-size: 35px;
    color: var(--primary_color);
    font-weight: bold;
}

.form-main .title h3 {
    color: var(--white);
    font-size: 70px;
}

.contact-us .form .form-group label {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-us .form .form-group input {
    margin-bottom: 10px;
    height: 55px;
    border-radius: 5px;
}

.contact-us .form .form-group textarea {
    border-radius: 5px;
}

.contact-us .form-group.button button {
    background: var(--secondary_color);
    color: var(--white);
    margin-top: 20px;
    padding: 20px 40px;
    height: auto !important;
    font-size: 17px;
    border-radius: 10px;
}

.contact-us .form-group.button button:hover {
    background: var(--primary_color);
}

.contact-us .single-head {
    background: #000;
    height: auto;
    border-radius: 10px;
    border: 1px solid var(--primary_color);
}

.contact-us .single-info i {
    background: var(--white);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    border-radius: 10px;
    color: var(--primary_color);
}

.contact-us .single-info h4.title {
    color: var(--white);
    font-size: 35px;
    margin-bottom: 0;
}

.contact-us .single-info ul li a,
.contact-us .single-info ul li {
    color: var(--white);
    font-size: 21px;
}

/*contact Us Section End*/

.calculator___sec__main {
    border-top: 2px solid var(--primary_color);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom: 2px solid var(--primary_color);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 50px 60px;
}

.heading__cal h2 {
    color: var(--white);
    font-size: 50px;
    padding-bottom: 10px;
}

.heading__cal p {
    font-size: 21px;
    color: var(--white);
    font-weight: 300;
}

.syringe__box {
    box-shadow: 0px 0px 30px var(--secondary_color);
    border-radius: 110px;
    display: flex;
    padding: 30px 0;
    align-items: center;
    margin-left: 70px;
    margin-bottom: 70px;
}

.syringe__box__head {
    background: radial-gradient(circle, rgba(175, 19, 30, 1) 0%, rgba(91, 10, 16, 1) 80%);
    border-radius: 70px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: -40px;
}

.syringe__box__head h6 {
    margin-bottom: 0;
    color: #fff;
    font-weight: 300;
    font-size: 21px;
}

.syringe__box__img {
    padding: 0 40px;
}

.select__quantity {
    border: 2px solid #740d14;
    padding: 60px 70px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.select__quantity__options {
    padding-left: 100px;
}

.select__quantity__options h3 {
    color: var(--white);
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 400;
}

.select__quantity__options ul li button {
    background: radial-gradient(circle, rgba(175, 19, 30, 1) 0%, rgba(91, 10, 16, 1) 80%);
    border-radius: 70px;
    border: 0;
    width: 100px;
    height: 39px;
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    margin: 0 10px 0 0;
}

.quantity__main {
    margin-left: 90px;
}

.select__quantity__img {
    position: relative;
}

.select__quantity__img:after {
    content: '';
    position: absolute;
    border: 1px solid #C11622;
    height: 100%;
    right: -40px;
}

.dose___img h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    font-size: 42px;
}

.dose___img {
    padding: 60px 0 80px;
}

.dose___img img {
    width: 100%;
}

.body__breadcrumbs {
    padding: 230px 0 130px;
}

.customer_dashboard .nav-tabs li.nav-item a {
    text-align: left;
    padding: 23px 20px;
    border-radius: 0;
    border-bottom: 1px solid #efefef;
    color: #ffffff;
    font-size: 17px;
}

.dashboard_content .card-body .form-group {
    font-size: 19px;
    padding-bottom: 10px;
}

.mobile-nav {
    position: fixed;
    width: 80%;
    height: 100%;
    overflow-y: scroll;
    top: 0;
    right: -80%;
    z-index: 12;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    background: var(--primary_color);
}

.mobile-nav .logo-main {
    font-size: 16px;
    color: #8795a0;
    padding: 15px 0 15px 24px;
    display: inline-block;
}

.mobile-nav img {
    width: 130px;
}

.mobile-nav nav {
    height: 100%;
}

.mobile-nav nav li a {
    color: #fff;
    font-weight: 400;
    display: block;
    padding: 15px 24px;
    border-top: 1px solid #d6d8db;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
font-size: 16px;}

.mobile-nav nav li a .fa {
    font-size: 20px;
    float: right;
}

.mobile-nav nav li ul {
    display: none;
    background: #fff;
}

.mobile-nav nav li ul li a {
    font-weight: 500;
    font-size: 14px;
color: #000;}

.app-container.active {
    left: -80%;
}

.app-container {
    position: relative;
    left: 0;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    display: block;
    }

.mobile-nav-btn {
    display: none;
    position: absolute;
    top: 4px;
    height: 30px;
    padding: 6px 7px;
    border-radius: 4px;
    right: 10px;
    z-index: 100;
    cursor: pointer;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    z-index: 14;
}

.mobile-nav-btn {
    display: block;
    z-index: 99999;
    top: 50px;
}

.mobile-nav-btn.active {
    right: 2%;
    z-index: 999999999;
    top: 50px;
    }

.mobile-nav-btn span {
    display: none;
    height: 3px;
    width: 22px;
    background-color: transparent;
    display: block;
    margin-bottom: 6px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    position: relative;
    top: 8px;
}

.lines:before, .lines:after {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: top .3s .6s ease,-webkit-transform .3s ease;
    transition: top .3s .6s ease,transform .3s ease;
}


.mobile-nav-btn .lines:before {
    top: 0;
    content: "\f0c9";
    font-family: 'FontAwesome';
    font-size: 26px;
    color: #fff;
    position: absolute;
    right: 0;
    background: transparent;
    padding: 6px 15px;
    border-radius: 45px;
    border: 1px solid #fff;
}

.mobile-nav-btn.active .lines:before {
        content: "\f00d";
        background: var(--primary_color);
        }

.mobile-nav.active {
    z-index: 9999999;
}

.mobile-nav.active {
    height: 100%;
    right: 0;
}

.mobile-nav ul {
    padding-top: 100px;
}

ul.firstlevel.unstyled {
    padding: 0;
}


.mobile__cart ul li {
    display: block;
    margin-bottom: 20px;
}

.mobile__cart ul li img {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile__cart ul li a {
    background: var(--primary_color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.mobile__cart {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 99;
    display: none;
}


.mobile__cart span.total-count {
    font-size: 19px !important;
    color: #fff;
    position: absolute;
    top: -10px;
    right: 35px;
    background: #000;
    width: 30px;
    text-align: center;
    border-radius: 50px;
    height: 30px;
    border: 1px solid #fff;
}

/*Responsive Begin*/

@media (max-width: 1920px) {

    .right___banner__img:after {
        right: 45px;
    }

}

@media (max-width: 1600px) {

    .category__overlay h3 {
        color: var(--white);
        font-size: 25px;
    }

    .category__overlay p {
        color: var(--white);
        font-size: 16px;
        font-weight: 300;
    }

    .banner__content h1 {
        font-size: 64px;
        line-height: 70px;
    }

    .banner__content p {
        font-size: 17px;
        line-height: 31px;
    }

    .right___banner__img:after {
        bottom: -220px;
        right: 57px;
        width: 80%;
        background-size: contain;
    }

    .right___banner__img img {
        width: 210px;
    }

    .center___heading___sec h2 {
        font-size: 80px;
    }

    .categorysec__box {
        width: 230px;
        height: 230px;
    }

    .categorysec__box:after {
        right: -41px;
    }

    .category___img img {
        width: 90%;
    }

    .research___head___con h2 {
        -webkit-text-stroke: 1px #0000007d;
        font-size: 73px;
        line-height: 90px;
    }

    .research___tag__overlay p {
        color: var(--white);
        font-size: 14px;
        width: 103%;
        line-height: 20px;
    }

    .badge___tag01.badge___tag02 .research___tag__overlay {
        right: 120px;
    }

    .heading__pro h3 {
        font-size: 65px;
        line-height: 80px;
    }

    .heading__pro p {
        font-size: 17px;
        line-height: 27px;
    }

    .btn___cart a {
        padding: 11px 30px;
        font-size: 15px;
    }

    .price___tag span {
        font-size: 19px;
    }

    .review___rightimg {
        top: -190px;
        right: -40px;
    }

    .review___rightimg img {
        width: 80%;
    }

    .rating__para p {
        font-size: 17px;
        line-height: 30px;
    }

    .review___name h2 {
        font-size: 21px;
    }

    .newsletter_heading h5 {
        font-size: 47px;
    }

    .newsletter__para p {
        font-size: 18px;
        line-height: 30px;

    }

    .fda___des p {
        font-size: 16px;
        line-height: 29px;
    }

    .footer___links ul li a {
        font-size: 16px;
        padding-bottom: 12px;
    }

    .copytext p {
        font-size: 16px;
    }

    .design__by {
        font-size: 16px;
    }

    .banner__content h1 {
        font-size: 70px;
    }

    .shop.single .product-des .product_options h6 {
        font-size: 23px;
    }

    .shop.single .quantity h6 {
        font-size: 23px;
    }

    h3.section-heading {
        font-size: 50px;
        line-height: 50px;
    }

    .form-main .title h4 {
        font-size: 30px;
    }

    .form-main .title h3 {
        font-size: 40px;
    }

    .contact-us .single-info ul li a,
    .contact-us .single-info ul li {
        font-size: 18px;
    }

    .contact-us .single-info h4.title {
        font-size: 27px;
    }

    .logo__sec__main {
        left: 0;
    }

    .logo__sec__main:after {
        width: 570px;
        height: 130px;
        top: -21px;
        right: -130px;
    }

    .manu___main ul li {
        padding: 0 13px 0 20px;
    }

    .manu___main ul li a {
        font-size: 16px;
    }

}

@media (max-width: 1440px) {

    .banner__content h1 {
        font-size: 55px;
        line-height: 60px;
    }

    .banner___main .carousel-caption .container-fluid {
        padding: 0 140px;
    }

    .right___banner__img img {
        width: 190px;
    }

    .banner__content h1 {
        font-size: 60px;
    }

    .categorysec__box {
        width: 190px;
        height: 190px;
    }

    .categorysec__box:after {
        right: -43px;
    }

    .research-img-new {
        width: 790px;
    }

    .research___head___con h2 {
        font-size: 62px;
        line-height: 70px;
    }

    .researh___para p {
        font-size: 15px;
    }

    .badge___tag01.badge___tag03 .research___tag__overlay {
        top: -60px;
        left: auto;
        right: 0px;
        bottom: auto;
    }

    .research___tag__overlay {
        width: 42%;
    }

    .badge___tag01.badge___tag02 .research___tag__overlay {
        right: 110px;
    }

    .heading__pro h3 {
        font-size: 57px;
        line-height: 70px;
    }

    .product__img__sec {
        padding: 50px 0 30px;
    }

    .btn___cart a {
        padding: 11px 20px;
    }

    .price___tag span {
        font-size: 16px;
    }

    .heading___review__sec h5 {
        font-size: 140px;
        top: -10%;
    }

    .review___rightimg img {
        width: 70%;
    }

    .review___rightimg {
        top: -130px;
        right: -160px;
    }

    .review___sec__main {
        overflow: hidden;
    }

    .banner___text img {
        width: 100%;
    }

    .logo__sec__main:after {
        width: 530px;
        height: 130px;
        top: -21px;
        right: -80px;
    }

    .logo__sec__main img {
        width: 80%;
    }

    .logo__sec__main {
        padding: 20px 0;
    }

    .right___banner__img:after {
        bottom: -210px;
        right: -3px;
    }

    .btn___sec ul li a {
        font-size: 16px;
    }

    .pro__btn {
        padding: 10px 25px 11px 3px;
    }

    .syringe__box__img img {
        width: 100%;
    }

    .syringe__box__head {
        width: 190px;
        height: 130px;
        left: -30px;
    }

    .select__quantity__options ul li button {
        width: 70px;
        height: 39px;
        margin: 0 2px 0 0;
        font-size: 16px;
    }

    .select__quantity__options h3 {
        font-size: 21px;
    }


    .select__quantity__options {
        padding-left: 70px;

    }

    .select__quantity {
        padding: 50px 60px;
    }

    .dose___img h2 {
        font-size: 37px;
    }

    .heading__cal h2 {
        font-size: 35px;
    }

    .inner___img {
        height: 550px;
    }

    .newsform input {
        font-size: 16px;
    }

    .newsform button {
        font-size: 17px;
    }

    .marquee-content p {
        font-size: 16px;
    }

    .banner__content h1 {
        font-size: 57px;
    }

    .newsletter_heading h5 {
        font-size: 40px;
    }

    .newsletter__para p {
        font-size: 17px;
    }

    .fda___des h2 {
        font-size: 32px;
    }

    .center___off h6 {
        font-size: 237px;
    }

    .badge___tag01 img {
        position: absolute;
        bottom: -275px;
    }

    .research___tag__overlay {
        top: 97px;
    }

}




@media (max-width: 1366px) {

    .banner___main .carousel-caption .container-fluid {
        padding: 0 70px;
    }


    .banner__content h1 {
        font-size: 48px;
        line-height: 50px;
    }

    .banner__content p {
        font-size: 16px;
        line-height: 29px;
    }

    .center___heading___sec h2 {
        font-size: 60px;
    }

    .research-img-new {
        width: 630px;
    }

    .research___head___con h2 {
        font-size: 56px;
        line-height: 63px;
    }

    .badge___tag01.badge___tag03 img {
        left: auto;
        bottom: -110px;
        width: 60%;
    }

    .badge___tag01.badge___tag03 .research___tag__overlay {
        top: -40px;
        left: auto;
        right: -60px;
    }

    .research___tag__overlay p {
        color: var(--white);
        font-size: 13px;
        width: 90%;
    }

    .research___tag__overlay span {
        font-family: var(--font-heading);
        color: var(--white);
        font-size: 17px;
    }

    .research___img___sec img {
        position: absolute;
        right: -90px;
        margin-top: -330px;
    }


    .badge___tag01 img {
        width: 60%;
    }

    .badge___tag01 img {
        position: absolute;
        bottom: -185px;
    }

    .research___tag__overlay {
        top: 37px;
    }

    .research___tag__overlay {
        top: 37px;
        left: -110px;
    }

    .New___badge {
        right: -100px;
    }

    .research___tag__overlay {
        top: 37px;
        left: -112px;
    }

    .badge___tag01.badge___tag02 img {
        left: auto;
        bottom: -295px;
        right: -90px;
    }

    .badge___tag01.badge___tag02 .research___tag__overlay {
        right: -60px !important;
        left: auto;
        top: 143px;
    }

    .review___rightimg {
        top: -130px;
        right: -220px;
    }

    .fda___des p {
        font-size: 15px;
    }

    .manu___main ul li {
        padding: 0 5px 0 20px;
    }

    .reseach___sec__main {
        padding: 160px 0 130px;
    }

    .heading__pro p {
        font-size: 15px;
        line-height: 25px;
    }

    .product__img__sec {
        padding: 50px 0 20px;
    }

    .product__name h6 {
        margin-bottom: 0;
        color: var(--white);
        font-size: 19px;
    }

    .rating__para p {
        font-size: 14px;
        line-height: 26px;
    }

    .copytext p {
        font-size: 15px;
    }

    .syringe__box__head {
        width: 190px;
        height: 100px;
    }

    .select__quantity__options ul li button {
        width: 70px;
        height: 39px;
        margin: 0 2px 10px 0;
    }

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

}


@media (max-width: 1200px) {

    .logo__sec__main:after {
        width: 480px;
        height: 130px;
        top: -21px;
        right: -60px;
    }

    .logo__sec__main img {
        width: 70%;
    }

    .manu___main ul li {
        padding: 0 5px 0 16px;
    }

    .manu___main ul li a {
        font-size: 15px;
    }

    .banner__content h1 {
        font-size: 42px;
        line-height: 40px;
    }

    .right___banner__img img {
        width: 160px;
    }

    .right___banner__img:after {
        bottom: -250px;
        right: 77px;
        width: 70%;
        background-size: 100%;
    }

    .center___heading___sec h2 {
        font-size: 50px;
    }

    .categorysec__box {
        width: 140px;
        height: 140px;
    }

    .category__overlay h3 {
        color: var(--white);
        font-size: 12px;
    }

    .category__overlay p {
        color: var(--white);
        font-size: 12px;
        font-weight: 300;
        line-height: 17px;
    }

    .research___head___con h2 {
        font-size: 52px;
        line-height: 60px;
    }

    .researh___para p {
        font-size: 14px;
    }


    .research___tag__overlay span {
        font-size: 14px;
    }

    .research___tag__overlay p {
        line-height: 18px;
    }

    .research___tag__overlay {
        top: 47px;
        left: -116px;
    }

    .badge___tag01.badge___tag02 .research___tag__overlay {
        right: -70px !important;
        left: auto;
        top: 163px;
    }

    .badge___tag01.badge___tag03 .research___tag__overlay {
        top: -20px;
        left: auto;
        right: -70px;
    }

    .heading__pro h3 {
        font-size: 40px;
        line-height: 55px;
    }

    .product__name h6 {
        font-size: 17px;
    }

    .products___sec {
        margin: 0 30px 0 10px;
    }

    .btn___cart a {
        padding: 11px 16px;
        font-size: 12px;
    }

    .review___name h2 {
        font-size: 15px;
    }

    .review___rightimg img {
        width: 60%;
    }

    .review___rightimg {
        top: -110px;
        right: -330px;
    }


    .review__circle__img {
        display: none;
    }

    .newsletter__para p {
        font-size: 15px;
    }

    .footer___det ul li {
        font-size: 14px;
    }

    .top___bar__sec {
        position: relative;
        z-index: 99999;
    }

    .products___sec {
        margin: 0 30px 60px 10px;
    }

    .newsletter_heading h5 {
        font-size: 30px;
    }

    .shop.single .quantity h6 {
        font-size: 20px;
    }

    .shop.single .cat {
        font-size: 17px;
    }

    .shop.single .product-des .short h4 {
        font-size: 30px;
    }

}

@media (max-width: 1100px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 576px) {
    
    .mobile__cart {
        display: block;
    }
    
    .header___icon___top.right___header ul {
        display: none;
    }
    
    .reseach___sec__main {
        padding: 0px 0 130px;
    }

    .manu___main {
        text-align: center;
        display: none;
    }

    .banner__img {
        height: 960px;
    }

    .carousel-caption .col-sm-6 {
        width: 100%;
        flex: 100%;
    }
    
    header{
        overflow: hidden;
    }
    

    .banner___main .carousel-caption .container-fluid {
        padding: 0 40px;
    }

    .right___banner__img.text-center {
        display: none;
    }

    .banner__img {
        height: 650px;
    }

    .category___sec .container-fluid {
        padding: 0 20px;
    }



    .categorysec__box {
        width: 200px;
        height: 200px;
    }

    .research___img___sec {
        position: relative;
        display: none;
    }

    .reseach___sec__main .container-fluid {
        padding: 0 40px;
    }

    .research___head___con h2 {
        font-size: 36px;
        line-height: 44px;
    }

    .reseach___sec__main .col-sm-6 {
        max-width: 100%;
        flex: 100%;
    }

    .researh___para p {
        font-size: 14px;
        width: 100%;
    }

    .our___products__sec .container-fluid {
        padding: 0 40px;
    }

    .our___products__sec .row.align-items-center .col-sm-4 {
        max-width: 100%;
        flex: 100%;
    }

    .our___products__sec .row.align-items-center .col-sm-8 {
        max-width: 100%;
        flex: 100%;
    }

    .our___products__sec .row.pt-5.mt-5 .col-sm-4 {
        max-width: 100%;
        flex: 100%;
    }

    .review___rightimg {
        display: none;
    }


    .row.review__row .col-sm-4 {
        max-width: 100%;
        flex: 100%;
    }


    .review___sec__main .row.review__row {
        border-radius: 20px;
    }

    .row.mr-tp .col-sm-6 {
        max-width: 100%;
        flex: 100%;
    }

    .logo__sec__main img {
        width: 60%;
    }

    .logo__sec__main:after {
        top: -61px;
        right: -40px;
    }

    .banner__content h1 {
        font-size: 40px;
        line-height: 45px;
    }

    .btn___cart a {
        padding: 13px 23px;
        font-size: 15px;
    }

    footer .container-fluid {
        padding: 0 50px;
    }

    footer .col-sm-3 {
        max-width: 100%;
        flex: 100%;
    }

    footer .col-sm-6 {
        max-width: 100%;
        flex: 100%;
        text-align: left;
    }

    .fda___des {
        text-align: left;
        color: #fff;
        margin-top: 20px;
    }

    .footer__heading {
        text-align: left !important;
    }

    .footer___det.text-end {
        text-align: left !important;
    }

    .social__media__link {
        text-align: left;
    }

    .copytext {
        text-align: center;
    }

    .design__by {
        font-size: 16px;
        text-align: center;
    }

    header .col-sm-6 {
        display: none;
    }

    header .col-sm-3 {
        max-width: 50%;
        flex: 50%;
    }

    header .col-sm-3.p-0 {
        max-width: 40%;
        flex: 40%;
    }

    .header___icon___top {
        position: relative;
        left: 58px;
        display: n;
    }

    .center___heading___sec h2 {
        font-size: 40px;
    }

    .categorysec__box {
        width: 160px;
        height: 160px;
    }

    .research___head___con h2 {
        font-size: 27px;
        line-height: 34px;
    }



}

@media (max-width: 450px) {

    .center___off h6 {
        font-size: 127px;
    }

    .banner__content h1 {
        font-size: 31px;
        line-height: 40px;
    }

    .heading__pro h3 {
        font-size: 35px;
        line-height: 45px;
    }

    .center___off h6 {
        font-size: 127px;
    }

    .newsform {
        margin-left: 0;
        position: relative;
    }

    .newsletter_heading h5 {
        font-size: 19px;
    }

    .newsform button {
        font-size: 15px;
    }

    .categorysec__box:after {
        display: none;
    }

    .our___products__sec .shop-top {
        padding: 30px 20px;
    }

    .shop .shop-shorter {
        float: none;
        flex-direction: column;
    }

    .our___products__sec .shop-top .single-shorter select {
        width: 100%;
    }

    .product__searcher.shop_products_search {
        width: 100%;
    }

    .our___products__sec .shop-top .single-shorter {
        width: 100%;
    }

    .product__searcher input {
        width: 100%;
    }

    .pagination___sec span.relative.z-0.inline-flex.shadow-sm.rounded-md a {
        margin: 0 5px 20px;
        display: inline-block;
    }

    a.relative.inline-flex.items-center.px-2.py-2.-ml-px.text-sm.font-medium.text-gray-500.bg-white.border.border-gray-300.rounded-r-md.leading-5.hover\:text-gray-400.focus\:z-10.focus\:outline-none.focus\:ring.ring-gray-300.focus\:border-blue-300.active\:bg-gray-100.active\:text-gray-500.transition.ease-in-out.duration-150 {
        display: none;
    }

    span.relative.inline-flex.items-center.px-2.py-2.text-sm.font-medium.text-gray-500.bg-white.border.border-gray-300.cursor-default.rounded-l-md.leading-5 {
        display: none;
    }

    .shop.single .product-gallery .slides li img {
        width: 70%;
        margin: 0 auto;
        padding: 50px 0;
    }

    .shop.single .product-gallery .slides li {
        position: relative;
        text-align: center;
    }

    .shop.single .product-des .product_options {
        gap: 0;
        flex-direction: column;
        text-align: left;
        text-transform: capitalize;
    }

    .shop.single .product-des .product_options h6 {
        display: inline-block;
        font-size: 30px;
        font-weight: 500;
        color: white;
        margin: 20px 0;
        width: 100%;
        text-align: left;
    }

    .product_options select {
        width: 100% !important;
        height: 50px !important;
        padding: 0 10px;
    }


    .shop.single .product-des {
        padding-left: 10px;
    }

    .shop.single .add-to-cart {
        display: block;
    }

    .shop.single .add-to-cart .btn {
        height: auto;
        padding: 0 35px;
        margin-right: 5px;
        margin-top: 6px;
        width: 100%;
        padding: 10px 0;
        margin-top: 30px;
        font-size: 20px;
    }

    .shop.single .product-des {
        margin-top: 50px;
    }

    .logo__sec__main {
        width: 160px;
    }

    .logo__sec__main img {
        width: 80%;
    }

    .calculator___sec__main {
        padding: 50px 0px;
    }

    .syringe__box__head {
        width: 190px;
        height: 100px;
    }

    .syringe__box__head h6 {
        font-size: 17px;
    }

    .syringe__box {
        margin-left: 40px;
    }

    .syringe__box__img {
        padding: 0 20px 0 0;
    }

    .select__quantity {
        flex-direction: column;
        padding: 50px 40px;
        text-align: center;
    }

    .select__quantity__options {
        padding-left: 0;
    }

    .quantity__main {
        margin-left: 0px;
    }

    .select__quantity__img {
        position: relative;
        margin-bottom: 30px;
    }

    .select__quantity__img:after {
        display: none;
    }

    .contact-us .form-main {
        padding: 19px;
    }

    .form-main .title h4 {
        font-size: 25px;
    }

    .form-main .title h3 {
        font-size: 25px;
    }


}

@media (max-width: 390px) {

    .banner__content h1 {
        font-size: 25px;
        line-height: 31px;
    }

    .banner___main .carousel-caption .container-fluid {
        padding: 0px 30px;
    }

    .btn___sec ul li a {
        font-size: 14px;
        padding: 13px 23px;
    }

    .btn___sec ul li {
        display: inline-block;
        padding: 0 10px 0 0;
    }


    .btn___cart a {
        padding: 13px 10px;
        font-size: 12px;
    }

    .products___sec {
        margin: 0 30px 50px 10px;
        padding: 11px;
    }

    .review___sec__main .row.review__row {
        border-radius: 20px;
        padding: 40px 20px;
    }

    .review___sec__main {
        margin-top: 40px;
    }

    .newsletter_heading h5 {
        font-size: 27px;
    }

    .newsletter_heading {
        padding-bottom: 10px;
    }

    .reseach___sec__main {
        padding: 10px 0 130px;
    }


    footer .container-fluid {
        padding: 0 20px;
    }
    
        .pro__btn {
        padding: 6px 25px 11px 0px;
    }
    
    .our___products__sec .products___sec span.featured, .our___products__sec .products___sec span.exclusive {
        top: -20px;
        right: 30%;
    }

}

/*Responsive End*/

/*Responsive End*/