@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 400;
    line-height: 1.5;
    color: #666565;
    font-size: 14px;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'NexaBold';
    src: url(../fonts/NexaBold/NexaBold.otf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_7 {
    padding-top: 70px;
}

.pb_7 {
    padding-bottom: 70px;
}

.py_7 {
    padding: 70px 0px;
}

.theme_btn {
    padding: 12px 40px;
    border: unset;
    border-radius: 30px;
    color: #ffffff;
    z-index: 1;
    background: #0074d9;
    position: relative;
    font-size: 16px;
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
    text-transform: uppercase;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 0;
    background-color: #72d219;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'NexaBold';
    font-size: 60px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 25px;
}

h2 {
    font-family: 'NexaBold';
    font-size: 48px;
    line-height: 1.2;
    color: #010101;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'NexaBold';
    font-size: 24px;
    line-height: 1;
    color: #0074d9;
    font-weight: 600;
    margin: 0 0 10px;
}

h4 {
    font-family: 'NexaBold';
    font-size: 24px;
    line-height: 1;
    color: #000000;
    font-weight: 500;
    margin: 0 0 10px;
}

h5 {
    font-family: 'NexaBold';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'NexaBold';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
    width: 80%;
}

.menuSec ul {
    position: relative;
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: space-around;
}

.menuSec ul li {
    position: relative;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 50px;
    height: 10px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000;
    background-clip: padding-box;
    border: 0;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    /* background: rgba(0, 0, 0, 0.1); */
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #0074d9;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Tabs  */


/* Header */

header {
    background: #0074d9;
    padding-right: 18%;
    padding-left: 7%;
    padding-bottom: 15px;
    position: relative;
}

.topSec p,
.topSec a {
    color: #ffffff;
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 0;
}

ul.top-links {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
    justify-content: end;
}

ul.top-links a {
    display: flex;
    align-items: center;
    gap: 8px;
}


/*.shop-cart-box {*/


/*    position: absolute;*/


/*    right: -13%;*/


/*    top: 0;*/


/*    text-align: center;*/


/*    display: flex;*/


/*    justify-content: end;*/


/*}*/

.shop-cart-box {
    position: absolute;
    right: 7%;
    top: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.shop-cart-box a span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-top: 5px;
}


/*.shop-cart-box a {background: #000000;display: block;width: 115px;padding: 22px 0;}*/

.shop-cart-box a {
    background: #000000;
    display: block;
    width: 115px;
    padding: 50% 0;
    height: 100%;
    color: #fff;
    position: relative;
}

.top-right {
    display: flex;
    justify-content: end;
    gap: 30px;
}

form.filter-boxes {
    display: flex;
    justify-content: end;
}

form.filter-boxes select,
form.filter-boxes input {
    background-color: transparent;
    border: 1px solid #ffffff8c;
    padding: 8px 12px;
    color: #ffffff;
    font-size: 14px;
    width: 220px;
    border-radius: 4px;
}

form.filter-boxes select {
    background-image: url(../images/arrow-down.png);
    background-size: 10px 6px;
}

form.filter-boxes input::placeholder {
    color: #ffffff;
}

.search-field {
    position: relative;
    display: flex;
    align-items: center;
}

.search-field button {
    position: absolute;
    background: transparent;
    padding: 0;
    border: none;
    color: #ffffff;
    right: 10px;
}

.topSec:before {
    content: '';
    position: absolute;
    height: 1px;
    width: 120vw;
    background: #ffffff73;
    bottom: 16px;
    left: -20vw;
}

.topSec {
    padding: 5px 0 20px;
    position: relative;
}


/*span.items-in-cart {*/


/*    position: absolute;*/


/*    background: #fff;*/


/*    display: flex;*/


/*    align-items: center;*/


/*    justify-content: center;*/


/*    width: 15px;*/


/*    height: 15px;*/


/*    top: 24%;*/


/*    right: 24%;*/


/*    border-radius: 50%;*/


/*    font-size: 10px;*/


/*}*/

span.items-in-cart {
    position: absolute;
    background: #fff;
    display: flex !IMPORTANT;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    top: 30%;
    right: 24%;
    border-radius: 50%;
    font-size: 10px;
    color: #000;
    font-size: 10px !IMPORTANT;
}


/* Header */


/* Banner */

.banner_text h3 {
    font-size: 32px;
}

section.main_slider {
    position: relative;
}

section.main_slider::before {
    position: absolute;
    content: "";
    background: url(../images/dam2.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 241px;
    height: 290px;
    top: 0;
    left: 30%;
    z-index: 1;
    pointer-events: none;
}

.banner_text {
    position: relative;
}

.banner_text::before {
    position: absolute;
    content: "";
    background: url(../images/dam3.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 262px;
    height: 207px;
    bottom: -45%;
    right: 7%;
    z-index: 1;
    pointer-events: none;
}

.carousel-indicators {
    margin-bottom: 2rem;
}


/* Banner */


/* Explore */

section.explore-sec h2 {
    font-size: 30px;
}

.impression {
    position: relative;
    display: flex;
}

.impression-txt {
    position: absolute;
    right: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
}

.impression-txt h4 {
    font-size: 40px;
    color: #010101;
}

.impression-txt .theme_btn {
    font-size: 12.5px;
    width: fit-content;
    margin: 0 auto;
}

.blue-box {
    background: #0074d9;
    padding: 20px 20px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 55% 41%;
    gap: 25px;
    margin-bottom: 25px;
}

.blue-box h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

.blue-box img {
    width: 100%;
    border-radius: 10px;
}

.transparent-box {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    gap: 20px;
}

.transparent-box h2 {
    margin-bottom: 10px;
}

.transparent-box p {
    font-size: 14px;
    text-align: justify;
    color: #666565;
    line-height: 1.5;
    font-weight: 400;
}

.transparent-box .theme_btn {
    font-size: 12.5px;
}


/* Explore */


/* Products */

.product-info h4 {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 21px;
}

.stars {
    color: #ffc107;
    margin-bottom: 10px;
    display: none;
}



.price span {
     font-size: 24px;
    color: #000000;
    font-weight: 500;
    justify-content: center;
    gap: 15px;
}

.product-wrap {
    position: relative;
    height: 100%;
    margin: 20px 0;
}

.product-info {
    padding: 25px 0;
    height: auto;
    display: grid;
    align-content: space-between;
}

.fp-slider .slick-slide {
    margin: 0;
}

.product-img img {
    width: 100%;
}

.slick-prev::before {
    content: "\f359";
}

.slick-next::before {
    content: "\f35a";
}

.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    font-size: 35px;
    color: #ffffff;
    width: fit-content;
    height: fit-content;
    opacity: 1 !important;
}

.slick-prev {
    left: unset;
    right: 4%;
}

.slick-prev,
.slick-next {
    top: -6%;
    width: fit-content;
    height: fit-content;
    opacity: 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-next {
    right: 0;
}

.slick-prev::after,
.slick-next::after {
    position: absolute;
    content: "";
    background: #0074d9;
    width: calc(100% + 70%);
    height: calc(100% + 45%);
    z-index: -1;
}

.slick-prev::after {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.slick-next::after {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}


/* Products */


/* Images */

.abt-img {
    position: relative;
    display: flex;
    align-items: center;
}

.abt-content {
    position: absolute;
    width: 90%;
    padding-left: 25px;
}

.abt-content h3 {
    margin: 0 0 5px;
}

.abt-content h2 {
    margin-bottom: 5px;
}

.abt-content p {
    font-size: 14px;
    color: #666565;
}

.sale-txt {
    position: absolute;
    padding-left: 25px;
}

.gift-box {
    position: relative;
    display: flex;
    align-items: center;
}

.sale-txt h2 {
    color: #ffffff;
    font-size: 60px;
}

.sale-txt h2 span {
    font-size: 48px;
    display: block;
}

.middle-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.birthday-txt {
    position: absolute;
    background: #0074d9c9;
    padding: 25px 25px;
    width: 60%;
    margin: 0 auto;
    border-radius: 12px;
}

.birthday-txt p {
    color: #ffffff;
    font-family: 'NexaBold';
    font-size: 24px;
    line-height: 1.2;
}

.birthday-txt a {
    color: #fff;
    font-family: 'NexaBold';
    font-size: 16px;
    text-transform: uppercase;
    border-bottom: 1px solid #ffffff;
}

.more-imgs {
    margin-top: 25px;
}


/* Images */


/* Testimonials */

.testi-header {
    display: flex;
    justify-content: space-between;
}

.person-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.title h5 {
    margin-bottom: 0;
    font-size: 24px;
    color: #6d6a6a;
    line-height: 1;
}

.testi-txt p {
    margin-bottom: 0;
    text-align: justify;
}

.testi-txt {
    margin-top: 15px;
}

.testi-wrap {
    outline: 1.5px solid #0074d9;
    padding: 20px 20px;
    background: #ffffff;
    border-radius: 12px;
}

.testi-slider .slick-slide {
    margin: 10px 15px;
    opacity: 1;
}

section.testi-sec .slick-prev,
section.testi-sec .slick-next {
    top: -20%;
}


/* Testimonials */


/* Gift */

.gift-txt-cont h2 {
    font-size: 82px;
}

.gift-txt-cont {
    width: 50%;
}

section.best-gift {
    background: url(../images/small-gift.jpg);
    background-size: cover;
    height: 514px;
    display: flex;
    align-items: center;
}


/* Gift */


/* Blogs */

.blog-slider .slick-slide {
    margin: 0 0;
}

.blog-img {
    position: relative;
    display: flex;
}

span.blog-date {
    font-size: 18px;
    position: absolute;
    background: #0074d9a1;
    font-family: 'NexaBold';
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 10px;
    top: 15px;
    left: 15px;
}

.blog-txt h4 {
    font-size: 30px;
}

.blog-txt {
    border: 1px solid #0074d9;
    padding: 20px 20px 10px;
    border-top: none;
    background: #ffffff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.blog-txt p {
    text-align: justify;
}

.blog-slider .slick-prev,
.blog-slider .slick-next {
    top: -12%;
}


/* Blogs */


/* Company Logos */

.logoipsum .slick-slide img {
    width: 70%;
    margin: 0
}

.logoipsum .slick-active {
    opacity: 1
}

.logoipsum .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 60px 0
}

.logo:before {
    position: absolute;
    content: '';
    width: 23%;
    left: -85px;
    height: 1px;
    background: #000;
    top: 18px
}

.logo {
    position: relative
}

section.footer {
    background: #f7e9df;
    display: none;
}


/* Company Logos */


/* Footer */

footer {
    background: #111111;
}

img.footerLogo {
    margin-bottom: 15px;
}

footer p {
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
}

footer h5 {
    font-size: 25px;
    color: #ffffff;
    text-transform: uppercase;
}

ul.linkList li a {
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 2;
}

ul.linkList.contact-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 3;
}

.footer-text p {
    text-align: justify;
    width: 90%;
}

.middle-footer {
    background: #0074d9;
    padding: 40px 0;
}

.footer-text img {
    width: 30%;
    margin-top: -40px;
}

.signup {
    display: grid;
    grid-template-columns: 365px auto;
    align-items: center;
    gap: 15px;
}

.signup p {
    font-size: 18px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 400;
}

.signup input {
    width: 100%;
    background: #111111;
    border: none;
    padding: 10px 15px;
    color: #ffffff;
    border-radius: 25px;
    font-size: 14px;
}

.signup input::placeholder {
    color: #ffffff;
}

.payment-social {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 40px;
}

ul.social-links {
    display: flex;
    margin: 0;
    gap: 10px;
}

ul.social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #000000;
    color: #ffffff;
}

.copyright-txt p {
    margin: 0;
    text-transform: uppercase;
    padding: 20px 0;
}

.main-footer {
    padding: 70px 0 25px;
}


/* Footer */

.background-pattern {
    background-image: url(../images/pngwing.jpg);
    background-size: cover;
    background: #fff;
}


/* --------------------------------------- Inner Pages ---------------------------------- */


/* About */

section.inner-banner {
    background: url(../images/inner-banner.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
    height: 470px;
}

section.inner-banner h1 {
    font-size: 90px;
}

.abt-txt.half {
    padding: 0 0 0 30px;
}

.abt-txt p {
    text-align: justify;
    font-size: 16px;
    margin-bottom: 1.5rem;
}

.abt-txt.half h2 {
    margin-bottom: 20px;
}

section.abt-sec {
    padding: 100px 0 70px;
    position: relative;
}

section.abt-sec::before {
    position: absolute;
    content: "";
    background: url(../images/bg-rect.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 427px;
    height: 650px;
    left: 0;
    top: 0;
}


/* About */


/* products start */

.main {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.catogeriesbox {
    background-color: #0d6efd;
    padding: 20px 19px 20px;
    border-radius: 10px 10px 0 0;
}

.catogeriesbox h4 {
    color: #ffffff;
    font-size: 26.11px;
    line-height: 20px;
    font-weight: 600;
    padding: 10px 15px 0;
}

.frequently-list #collapsetwo a {
    padding-left: 15px;
}

.frequently-list #collapsetwo li {
    padding-left: 30px;
}

.frequently-list .dash {
    /* padding: 0 25px; */
    /* color: #fff; */
    /* font-size: 19px; */
}

.frequently-list .dollar {
    /* color: #fff; */
    /* font-size: 15px; */
    /* font-weight: 300; */
}

section.productsec {
    padding: 100px 65px;
}

section.productsec.product-page-sec .product-bx {
    margin-bottom: 25px;
}

#accordion .panel-heading {
    padding: 0;
}

#accordion .panel-title>a {
    display: block;
    padding: 30px 20px;
    outline: none;
    text-decoration: none;
    color: #0d6efd;
    /* border-bottom: 1px solid #0000004d; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    font-size: 23.21px;
    font-weight: 400;
}

#accordion .panel-heading .panel-title>a.accordion-toggle::before,
#accordion a[data-toggle="collapse"]::before {
    content: "\f068";
    float: right;
    font: normal normal normal 14px/1 FontAwesome;
    width: 30px;
    height: 30px;
    font-size: 12px;
    border-radius: 50px;
    text-align: center;
    padding: 9px 9px;
    margin: -7px 0;
    color: #B5C448;
    font-size: 21px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#accordion .panel-heading .panel-title>a.accordion-toggle.collapsed::before,
#accordion a.collapsed[data-toggle="collapse"]::before {
    content: "\f067";
    font: normal normal normal 14px/1 FontAwesome;
    color: #B5C448;
    font-size: 21px;
}

.frequently-list .panel-body ul li a {
    color: #000;
    font-size: 17.4px;
    font-weight: 400;
    padding-left: 35px;
    text-transform: uppercase;
}

.frequently-list .panel-group {
    margin-bottom: 0;
}

.frequently-list .panel-body ul li i {
    float: right;
    margin-top: 5px;
}

.frequently-list .panel-body ul li {
    padding-right: 40px;
}

.frequently-list {
    border: 1px solid #00000042;
    box-shadow: 0px 0px 6px 4px #0000000f;
    border-top: 0;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.panel-body ul {
    padding: 0;
    margin-bottom: 0;
    background: #fff;
    /* border: 1px solid #adb5bd; */
    /* border-top: 0; */
}

.frequently-list .panel-body li {
    display: block;
    border-bottom: 1px solid #00000042;
    width: 100%;
    font-family: 'Poppins';
    padding: 30px 0px 30px 0px;
    align-items: center;
}

.frequently-list .panel-body li:last-child {
    border: 0 !important;
}

.frequently-list .panel {
    border: none;
    border-top: 0;
}

.frequently-list .panel-default>.panel-heading {
    background-color: transparent;
}

.frequently-list h4.panel-title {
    padding: 0px 12px 0px 15px;
    color: #b79e55;
    border-bottom: 1px solid #acacac;
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
}

.frequently-list .panel-body {
    padding: 0 !important;
}

.paddingbottom {
    padding: 0 0 50px;
}

.frequently-list .panel-group .panel-heading+.panel-collapse>.panel-body,
.panel-group .panel-heading+.panel-collapse>.list-group {
    border: 0;
}

.frequently-list .panel-group .panel {
    margin: 0;
}

.defaultlist select {
    width: 100%;
    height: 70px;
    padding: 0 15px;
    border: 1px solid #00000042;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #000;
    font-family: 'Poppins';
    /* appearance: auto; */
    background-color: #fff;
    /* border-top: none; */
    font-size: 19px;
    padding: 0 22px;
    background-image: url(../images/down.png);
    background-size: inherit;
    border-radius: 10px;
}

.showinglist p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    text-align: right;
    margin: 14px 0 0;
    color: #000;
}

.productlistbox1 {
    margin: 0 0 50px;
}

.product-page-prdtc {
    box-shadow: 6px 5px 10px 5px #00000012;
}

.panel-body.below ul li input {
    margin-left: 10%;
    width: 17px;
    height: 17px;
}

section.productsec.product-page-sec.fruit h4 {
    font-size: 18px;
    line-height: 25px;
}

.pagination {
    justify-content: start;
    gap: 10px;
}

.page-link {
    color: #000;
}

.product-box.inr-pg {
    margin-bottom: 3%;
    width: 33%;
}

.frequently-list.price-filter .panel-body ul li a {
    font-size: 23.21px;
}

.frequently-list.price-filter .panel-body ul li {
    border-bottom: none;
    padding: 25px 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    padding: 0;
    font-size: 16px;
    border: 1px solid #00000063;
}

.page-link:hover,
.page-link.active {
    color: #fff;
    background: #0d6efd;
    border: none;
}

.side-img img {
    width: 100%;
}

.side-img {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    margin-top: 50px;
}

.side-img .box-txt h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.side-img .box-txt {
    text-align: center;
    margin-bottom: 60px;
}

.side-img .box-txt h4 {
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}

.side-img .box-txt a.btn {
    font-size: 11px;
    font-weight: 500;
}

.catogeriesbox.price-filter-list {
    margin-top: 50px;
}

.pagiess {
    margin-top: 50px;
}


/* products end */


/* Products End */


/* Blog */

section.blog-sec.inner-blog-sec .blog-wrap {
    padding: 0 0 50px;
}


/* Blog */


/* Contact */

section.apoint-sec form input,
section.apoint-sec form select,
section.apoint-sec form textarea {
    border-radius: 0;
    border: 1px solid #cacaca;
    padding: 12px 25px;
    background: #f8f8f8;
}

section.apoint-sec form input::placeholder,
section.apoint-sec form textarea::placeholder {
    color: #000;
    font-size: 14px;
    font-weight: 400
}

.apt-btn button {
    /* border-radius:0; */
    width: 50%;
    height: 50px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

section.apoint-sec {
    margin: 6% 0
}

.contact-us {
    padding-top: 100px;
    padding-bottom: 50px
}

.contact-us h3 {
    color: #000;
    font-size: 48px;
    margin: 0;
    padding-bottom: 10px;
    font-weight: 700;
    text-transform: capitalize;
}

.contact-us p {
    font-size: 14px;
    line-height: 25px;
    font-family: Poppins;
    font-weight: 400;
    width: 55%
}

.contact-us input {
    margin-top: 20px;
    width: 100%;
    padding: 15px 10px;
    border: 1px solid #d2d2d2;
    border-radius: 6px
}

.contact-us textarea {
    margin-top: 20px;
    width: 100%;
    padding: 15px 10px;
    border: 1px solid #d2d2d2;
    border-radius: 3px;
    height: 120px;
    resize: none
}

.contact-us button {
    height: 52px;
    width: 45%;
    text-align: center;
    border: 0;
    margin-top: 20px;
    font-size: 18px;
    border-radius: 5px;
}

.detai-s {
    margin-top: 30px;
    padding-bottom: 15px
}

.detai-s i {
    color: #fff200;
    line-height: 80px;
    font-size: 30px
}

.detai-s a {
    color: #000000b3;
    font-size: 14px;
    line-height: 40px;
    font-family: Poppins;
    font-weight: 400
}

section.contact-us .soccail-icon {
    justify-content: start;
    display: flex;
    gap: 15px;
}

section.contact-us .soccail-icon i {
    /* background:#f25764; */
}

.detai-s img {
    height: 50px;
    line-height: 53px;
    margin-top: 20px
}

.detai-s h6 {
    margin: 0;
    color: #000;
    font-family: Poppins;
    font-weight: 600;
    font-size: 16px;
    line-height: 11px
}

.detai-s .row {
    display: flex;
    align-items: center;
    gap: 0
}

.detai-s i {
    color: #000;
    line-height: 80px;
    font-size: 45px;
    height: 90px;
}

.Leave-wrap {
    background: #fff;
    box-shadow: 0 0 5px #00000047;
    padding: 40px 30px;
}

.socails ul li img {
    width: 26px;
    height: 29px;
    object-fit: none
}

iframe {
    width: 100%;
    height: 600px
}

.apt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

section.contact-us .soccail-icon a {
    color: #fff;
    background: #0d6efd;
    border-radius: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.detai-s .col-lg-7.col-9 {
    padding-left: 40px !important;
}


/* Contact */


/*login Start*/

.log-p {
    padding: 100px 0px;
}

section.log-p {
    position: relative;
}

.log-form {
    border: 1px solid #cacaca;
    padding: 45px 20px;
    background-color: #fdfdfd;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    background: #ffffff;
}

.log-form h2 {
    color: #000;
    font-weight: 600;
    /* text-transform: uppercase; */
    text-align: center;
    margin: 0 auto 25px;
    width: fit-content;
    position: relative;
}

.log-form input {
    width: 100%;
    border: 1px solid #cacaca;
    padding: 10px 20px;
    margin-top: 10px;
    background: #ffffff;
    margin-bottom: 10px;
}

.log-form ::placeholder {
    color: #333333;
    font-weight: 400;
}

.btn-submits {
    background: #0d6efd;
    color: #fff;
    font-size: 16px;
    padding: 10px 30px;
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 20px;
    border: 1px solid transparent;
}

.btn-submits:hover {
    box-shadow: inset 300px 0 0 0px #fff, inset -295px 0 0 0px #fff;
    color: #000000;
    transition: 1.3s ease-in-out;
}

.log-form-footer {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 10px;
}

.log-form-footer input {
    width: 20px;
}

.log-form-footer a {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.log-form p {
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    padding-top: 20px;
}

.log-form p a {
    text-decoration: underline;
    color: #7f8085;
    font-weight: 600;
}

.log-form.chg {
    position: relative;
}


/*login End*/


/* Cart */

section.add-to-cart {
    padding: 5% 0;
}

.add-to-cart input {
    width: 100%;
    text-align: center;
    height: 49px;
    border-radius: 6px;
    border: 1px solid #ebebeb;
    font-size: 23px;
    color: rgb(0 0 0);
    font-weight: 500;
    margin-top: 24px;
}

.add-to-cart a {
    font-size: 19px;
    display: block;
    text-align: center;
    padding-top: 9px;
    color: #333333;
    font-weight: 500;
    text-decoration: none;
    font-family: 'cereM';
}

.add-to-cart h4 {
    font-size: 19px;
    font-weight: 500;
    color: #333333;
    text-align: center;
    font-family: 'cereM';
}

.add-to-cart .table>tbody>tr>td,
.add-to-cart .table>tbody>tr>th,
.add-to-cart .table>tfoot>tr>td,
.add-to-cart .table>tfoot>tr>th,
.add-to-cart .table>thead>tr>td,
.add-to-cart .table>thead>tr>th {
    vertical-align: middle;
}

.total-section {
    border: none;
    padding: 27px 40px;
    border: 1px solid #00000024;
    background: #f7f7f7;
}

.total-section ul {
    font-family: 'Poppins';
    list-style: none;
    margin-bottom: 0;
}

.total-section li {
    font-size: 18px;
    padding-bottom: 15px;
    color: #333333;
    font-family: 'Poppins';
    font-weight: 600;
}

li.color-change {
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18.96px;
    text-transform: uppercase;
    font-family: 'Poppins';
}

.total-section li.color-change span {
    font-weight: 600;
    font-size: 18px;
    color: #000;
    font-family: 'Poppins';
}

.total-section li span {
    float: right;
}

.ship-estimate {
    padding: 0 40px 25px 40px;
    border: 1px solid #00000029;
    margin-top: 100px;
    background: #f7f7f7;
}

.ship-estimate li {
    color: #000;
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
    font-family: 'Poppins';
    margin-bottom: 0;
}

.ship-estimate ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 25px 0 0 0;
    font-family: 'Poppins';
    list-style: none;
}

.ship-estimate .grey-style {
    color: #333333;
    font-size: 18px;
    font-family: 'Poppins';
    font-weight: 400;
}

.proceed a {
    color: #000;
    text-align: left;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    /* background: #000000; */
    font-family: 'Poppins';
    text-transform: capitalize;
}

.proceed .checkout-btn {
    padding: 15px;
    width: 100%;
    font-size: 19px;
    margin-top: 4px;
    border-radius: 0px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    background: #0d6efd;
    font-family: 'Poppins';
    font-weight: 500;
}

.or-amazon {
    margin-top: 50px;
    position: relative;
    border: 2px solid #cecece;
    /* top: 25px; */
    padding: 30px 50px;
    border-radius: 5px;
}

.or-amazon p {
    font-size: 18px;
    position: absolute;
    background: #fff;
    top: -18px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    padding: 3px 20px;
    color: #333333;
    display: block;
    text-transform: uppercase;
    /* border: 2px solid #cecece; */
    font-family: 'Poppins';
    font-weight: 500;
}

.or-amazon a {
    text-decoration: none;
    text-align: center;
}

.product-img {
    display: inline-block;
    width: 100%;
    /* padding: 10px 10px; */
    /* border: 1px solid #000; */
}

.product-img img {
    background: #fff;
    height: 300px;
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 10px 0 #0000002b;
    background: #fff;
}

.table> :not(:last-child)> :last-child>* {
    border-bottom-color: currentColor;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    /* background-color: #ef165d; */
    padding: 16px 15px;
    text-transform: uppercase;
}

.table-space h3 {
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 19px;
    line-height: 30px;
    color: #333333;
    font-family: 'Poppins';
}

.space .row {
    align-items: center;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: #c2c2c2;
    border-style: solid;
    border-width: 0;
}

th.qty {
    text-align: center;
}

a.remove {
    font-size: 22px;
    width: 45px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    background-color: #0d6efd;
    color: #fff;
}

.table-space h6 {
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 17px;
    line-height: 30px;
    color: #333333;
    font-family: 'Poppins';
}

.add-to-cart thead {
    background: #0d6efd;
}

.space span {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins';
    line-height: 30px;
}


/* Cart */


/* check out page css */

.rdio-btn ul {
    display: flex;
    margin-bottom: 20px;
}

.rdio-btn ul li:first-child {
    margin-right: 65px;
}

.checkout-main label {
    color: #333333;
    font-weight: 500;
    font-size: 14px;
    padding-left: 30px;
}

.checkout-main input[type="text"],
input[type="password"] {
    border-radius: 0;
    width: 75%;
    margin-bottom: 20px;
    /* background-color: #F7F7F7; */
    border-color: #C0C0C0;
    position: relative;
}

.passwor-div {
    position: relative;
}

.passwor-div button {
    position: absolute;
    right: 28px;
    top: 0;
    background-color: var(--bluel);
    border: 0;
    padding: 7px 23px;
    color: white;
    text-transform: uppercase;
    font-size: 20px;
    background: #0d6efd;
}

.form-p a {
    background-color: var(--bluel);
    border: 0;
    padding: 10px 59px;
    color: white;
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 20px;
    display: inline-block;
    background: #0d6efd;
}

.checkout-main #collapseOne {
    padding: 20px 30px 50px;
}

.rdio-btn ul li .form-check label {
    padding: 0;
}

.rdio-btn ul li .form-check {
    margin-right: 30px;
}

.chk-bx .form-check label {
    padding-left: 10px;
}

.passwor-div input {
    width: 94%;
}

.guest {
    margin-bottom: 30px;
}

.chk-bx .form-check .form-check-input {
    border-radius: 0;
    border-width: 2px;
    border-color: #939598;
}

.rdio-btn input[type="radio"] {
    border-color: #000000;
    width: 20px;
    height: 20px;
    border-width: 2px;
    margin-right: 10px;
}

.chk-bx {
    margin-bottom: 20px;
}

.birth-form input[type="text"] {
    width: 95%;
}

.add-txttf input[type="text"] {
    width: 100% !important;
}

.add-txttf label {
    padding-left: 0;
    display: block;
}

.add-txttf select {
    margin-bottom: 20px;
    background-color: #F7F7F7 !important;
    border-color: #C0C0C0;
    position: relative;
    width: 100%;
    height: 38px;
    padding-left: 10px;
    border-radius: 0;
}

#flush-collapseTwo {
    padding: 30px 20px;
}

.add-txttf .form-check-input {
    border-radius: 0;
    border-width: 2px;
    border-color: #939598;
    margin-bottom: 30px;
}

#flush-collapseThree {
    padding: 30px 20px;
}

div#flush-collapseThree1 {
    padding: 30px 20px;
}

.row.payment-img {
    align-items: end;
}

.checkout-main .accordion-button {
    padding: 20px 30px;
    font-size: 20px;
    text-transform: uppercase;
    color: #000;
    /* background-color: #E1E1E1; */
    border: 1px solid #C0C0C0;
    border-radius: 0;
    margin-bottom: 20px;
    font-family: 'helvetica';
}

.checkout-main .accordion-button::after {
    display: none;
}

.checkout-main {
    padding: 80px 0;
}

.checkout-main .accordion-button:not(.collapsed) {
    background-color: var(--blued);
    border: 1px solid #01773b;
}

.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.accordion-collapse.collapse.show {
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.checkout-main .accordion-item {
    border: 1px solid #fff;
}

.checkout-main .accordion-button:not(.collapsed) {
    margin-bottom: 0px;
    transition: 0.3s ease-in-out;
    padding: 20px;
    color: #fff;
    background: #0d6efd;
}

.payment-div img {
    height: 40px;
}

.checkout-side-div-1 {
    border: 1px solid #C0C0C0;
    padding: 20px 0px;
    margin-bottom: 30px;
}

.item-div h5 {
    color: #333333;
    font-weight: 500;
    font-size: 14px;
    padding-left: 30px;
    margin-bottom: 18px;
}

.checkout-side-div-1 hr {
    width: 100%;
    margin: auto;
    border-color: #C0C0C0;
}

.checkout-side-div-1 .row:last-child {
    padding-top: 20px;
}

.checkout-side-div-1 .row:first-child {
    padding-bottom: 20px;
}

.item-div {
    padding-left: 20px;
}

.checout-security {
    border: 1px solid #C0C0C0;
    padding: 20px 35px;
    margin-bottom: 30px;
}

.checout-security ul li i {
    font-size: 28px;
    margin-right: 30px;
    width: 20px;
}

.checout-security ul li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.checout-security ul li span {
    color: #333333;
    font-weight: 500;
    font-size: 14px;
}

.field-sett {
    display: grid;
    width: 100%;
    grid-template-columns: 86% auto;
    align-items: center;
}

.checout-security ul li:last-child {
    margin-bottom: 0;
}


/*checkout*/


/*blog details start*/

section.blogs-details {
    padding: 100px 0;
}

.blogs-img-text ul li i {
    color: #000;
    font-size: 20px;
    margin-right: 10px;
}

.blogs-img-text ul {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 20px;
}

.blogs-img-text h5 {
    /* font-weight: 600; */
    font-size: 43px;
    margin-top: 15px;
    color: #000000;
    /* font-family: 'Poppins'; */
    border-bottom: 1px solid #00000057;
    text-transform: capitalize;
    padding-bottom: 20px;
    /* display: inline-block; */
}

.blogs-img-text p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    color: #4a4a4a;
    line-height: 27px;
}

.search a {
    width: 100px;
    height: 51px;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 17px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #003366;
    color: #fff !important;
}

.search {
    position: relative;
}

.search input {
    border: 1px solid #e1e1e1;
    width: 100%;
    padding: 12px 10px;
}

.blog-categories h4 {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 24px;
    margin-top: 30px;
    padding-bottom: 5px;
    position: relative;
    color: #000;
}

.blog-categories h4:before {
    content: '';
    position: absolute;
    width: 58px;
    height: 2px;
    background: #0498bd;
    bottom: 0;
}

.blog-categories a {
    display: block;
    font-family: 'Poppins';
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    padding: 10px 0;
    border-bottom: 1px solid #e1e1e1;
}

.blog-categories p {
    font-family: 'Poppins';
    font-weight: 500;
    color: #646464;
    font-size: 14px;
}

.postss {
    border-bottom: 1px solid #e1e1e1;
    padding: 10px 0;
    margin-top: 6%;
}

.postss i {
    color: #00000091;
    font-size: 18px;
    margin-right: 10px;
}

.postss h6 {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 15px;
    color: #9f9e9e;
    margin-bottom: 0;
    margin-top: 4%;
    text-transform: uppercase;
}

.blog-categories {
    padding: 0 25px;
}

.blogs-img-text img {
    width: 100%;
}

.postss p {
    font-family: 'Poppins';
    font-weight: 500;
    color: #000;
    font-size: 16px;
    text-transform: capitalize;
    width: 56%;
    line-height: 21px;
}

.postss ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.postss ul li p {
    margin-bottom: 0;
}

.search button {
    position: absolute;
    right: 0;
    width: 25%;
    border: none;
    background: #0d6efd;
    height: 50px;
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
}


/*blog details end*/


/* product deatil css */

.hot_deals_main {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #d0d0d0;
}

.hot_deal_content h2 {
    font-size: 30px;
    color: #000;
    margin-top: 0px;
    font-weight: 600;
}

.product-h-div {
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 2px solid #D9F3F5;
}

.hot_deal_content h5 span {
    color: #1c558d;
    font-size: 19px;
}

.starss li {
    display: inline-block;
    font-size: 20px;
    color: #ffc000;
    margin-top: 15px;
}

.starss li span {
    color: #7c7c7c;
    font-family: 'Poppins', sans-serif;
    margin-left: 20px;
    font-size: 18px;
}

.size {
    margin: 15px 0px;
}

.size li {
    display: inline-block;
}

.size li span {
    font-size: 16px;
    color: #7c7c7c;
}

.size li:not(:first-child) {
    margin: 0px 5px;
}

.quantity_pro ul li {
    display: block;
    width: 100%;
}

.quantity_pro ul li {
    display: inline-block;
    margin-right: 15px;
}

.quantity_pro ul li a {
    font-size: 20px;
    color: rgb(255 255 255);
    padding: 15px 40px;
    align-items: center;
    text-align: center;
    width: 100%;
    display: block;
    background: linear-gradient(to bottom, #f9a429 0%, #774c13 100%);
    font-family: 'Raleway';
    text-transform: uppercase;
}

.quantity_pro ul li:first-child a {
    margin-bottom: 20px;
    background: transparent;
    border: 2px solid #000;
    font-family: 'Raleway';
    color: #767575;
    font-size: 20px;
}

.quantity_pro ul li a img {
    margin-right: 10px;
}

.quantity_pro {
    padding-top: 30px;
    margin-bottom: 40px;
}

.social_detail li {
    display: inline-block;
    margin-right: 10px;
}

.social_detail li a i {
    font-size: 20px;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D3AD69;
}

.hot_deal_small {
    width: 100%;
}

.hot_deal_small_img.slick-slide.slick-current.slick-active {
    border: 2px solid #41ACCA;
}

.hot_deal_small_img.slick-slide {
    margin-right: 10px;
    border: 1px solid #D6D6D6;
    width: 150px !important;
    height: 160px;
}


/* .hot_deal_big_img {
  border: 3px solid #eee;
} */

.hot_deal_big_img img {
    height: 730px;
    object-fit: cover;
    border: 1px solid #D6D6D6;
    margin-bottom: 50px;
}

.whish-list-btn {
    /* border: 1px solid #41ACCA; */
    /* padding: 13px 50px; */
    color: #000;
    margin-left: 20px;
    background-color: #dcdcdc;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    height: 55px;
    width: 96%;
}

.whish-list-btn:hover {
    background-color: #b39c70;
    border: 1px solid #b39c70;
    color: white;
}

.whish-list-icon i {
    font-size: 28px;
    color: #FF78B0;
    border: 1px solid #d6d6d6;
    padding: 10px;
    border-radius: 50px;
}

.whish-list-icon i:hover {
    color: #41ACCA;
    border: 1px solid #FF78B0;
}

.whish-list-icon {
    margin-left: 30px;
}

.hot_deal_content {
    /* padding-right: 220px; */
    /* padding-top: 35%; */
}

.hot_deal_content .price {
    margin: 0;
    font-family: 'Poppins';
    font-size: 38px;
    font-weight: 400;
    color: #41ACCA;
    border-bottom: 0;
    padding-bottom: 11px;
}

p.product-desc {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    padding-top: 20px;
    padding-bottom: 20px;
}

.size input[type="radio"] {
    display: none;
}

.size input[type="radio"]:checked+label {
    border: solid 1px #000;
    background: #000;
    color: #fff;
}

.size input[type="radio"]+label {
    border: solid 1px #000;
    background-color: #fff;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    text-align: center;
    padding: 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 4px;
}

.size input[type="radio"]+label:hover {
    background: #b39c70;
    color: #fff;
}

.color-variation input[type="radio"] {
    display: none;
}

.color-variation input[type="radio"]:checked+label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-variation input[type="radio"]+label {
    border: solid 1px #D1D1D1;
    background-color: #fff;
    color: #7c7c7c;
    border-radius: 50px;
    width: 35px;
    height: 35px;
    margin-right: 20px;
}

.color-variation input[type="radio"]+label:hover {
    border: 5px solid #FF78B0;
    width: 35px;
    height: 35px;
    transition: 0.5 ease-in-out;
}

.color-variation li:first-child input[type="radio"]+label {
    background-color: #1013bf;
}

.color-variation li:nth-child(2) input[type="radio"]+label {
    background-color: #c7292a;
}

.color-variation li:nth-child(3) input[type="radio"]+label {
    background-color: #099226;
}

.color-variation li:nth-child(4) input[type="radio"]+label {
    background-color: #d89413;
}

.hot_deal_content h6 {
    color: #000;
    font-size: 16px;
    padding-top: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.related-p-h h4:after {
    left: 160px;
}

.hot_deal_small_img img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.hot_deal_content h6 span {
    font-weight: 400;
    text-transform: initial;
    padding-left: 20px;
}

.color-variation input {
    width: 50px;
    height: 30px;
}

.product-detail-s-icon li i {
    color: #FF78B0;
    font-size: 30px;
    border: 1px solid #C8C7C7;
    border-radius: 50px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-s-icon li {
    margin-right: 20px;
}

.hot_deal_content h3 {
    font-size: 36px;
    color: #000;
    font-weight: 700;
    margin-bottom: 0;
}

.color-variation li:nth-child(5) input[type="radio"]+label {
    background-color: #7071b3;
}

.color-variation li:nth-child(6) input[type="radio"]+label {
    background-color: #b39c70;
}

.color-variation input[type="radio"]:checked+label::before {
    position: absolute;
    content: "";
    height: 135%;
    width: 135%;
    border-radius: 50%;
    border: 1px solid #000;
}

ul.d-flex.quantitys {
    align-items: center;
}

ul.d-flex.quantitys li:last-child {
    width: 100%;
}

.cart-btn a {
    background: #b39c70;
    color: #fff;
    padding: 16px;
}

.pay-end {
    margin-top: 25px;
}

.description li.nav-item {
    margin-right: 20px;
}

.description li.nav-item button {
    width: 125px;
    height: 50px;
    background-color: #fff;
    border-radius: 0;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    padding: 12px 0px;
}

.description li.nav-item .nav-link.active {
    border: 0;
    background-color: #0d6efd;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    padding: 12px 0px;
}

.description .nav-tabs {
    border-bottom: 1px solid #b39c70;
    padding-bottom: 20px;
    margin-bottom: 30px;
    justify-content: start !important;
    margin-top: 50px;
}

.description {
    /* padding: 10px 60px 90px; */
    margin-bottom: 50px;
}

.description .tab-content p {
    color: #636363;
    font-weight: 500;
    font-size: 15.5px;
    line-height: 30px;
}

section.hot_deals_sec.all-side-padding {
    /* padding: 0 60px; */
    padding-top: 80px;
}

.quatity-btns .num-in {
    display: inline-flex;
    align-items: center;
    border: 1px solid #000;
    height: 50px;
}

.quatity-btns .num-in .minus,
.quatity-btns .num-in .plus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 24px;
}

.quatity-btns .num-in input {
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100px;
    height: 50px;
}

.product-heading-txt h2 {
    font-size: 35px;
    margin-bottom: 10px;
    margin-right: -100%;
}

.product-info2 {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.hot_deal_content h3 {
    font-size: 32px;
    color: #0d6efd;
}

.hot_deal_content h3 span {
    font-size: 25px;
    color: #656565;
    text-decoration: line-through;
    padding-left: 20px;
}

.cart-btns {
    border-bottom: 1px solid #656565;
    padding: 35px 0 50px;
    display: flex;
    gap: 30px;
}

.cart-btns a {
    border: 1px solid;
    padding: 12px 0;
    width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    border-radius: 6px;
}

.cart-btns a:first-child {
    background: #ffffff;
    color: #000000;
}

.cart-btns a:last-child {
    background: #0d6efd;
    color: #ffffff;
}

.more-info {
    margin-top: 25px;
}

.more-info p {
    font-size: 17px;
    color: #000000;
    margin-bottom: 5px;
}

.productdetailnav {
    margin-top: 15px;
}

.productdetailnav .slick-slide {
    opacity: 1;
}

section.featured-prod-sec.inner-fp h2 {
    position: relative;
}

section.featured-prod-sec.inner-fp h2::before {
    position: absolute;
    content: "";
    background: #0d6efd;
    bottom: 0;
    left: 12px;
    width: 120px;
    height: 2px;
}


/* product deatill css */


/* --------------------------------------- Inner Pages ---------------------------------- */

.product-heading-txt {
    padding: 0 20px;
}

.inner .banner_text::before {
    bottom: -300px;
}

.inner h1 {
    font-size: 80px;
}

.dp {
    display: none;
}