/*=================================================
                      Body
===================================================*/
@font-face {
    font-family: 'Chillax';
    src: url('../inc/assets/fonts/Chillax-Medium.eot');
    src: url('../inc/assets/fonts/Chillax-Medium.eot?#iefix') format('embedded-opentype'),
         url('../inc/assets/fonts/Chillax-Medium.woff2') format('woff2'),
         url('../inc/assets/fonts/Chillax-Medium.woff') format('woff'),
         url('../inc/assets/fonts/Chillax-Medium.ttf') format('truetype'),
         url('../inc/assets/fonts/Chillax-Medium.svg#Chillax-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chillax';
    src: url('../inc/assets/fonts/Chillax-Semibold.eot');
    src: url('../inc/assets/fonts/Chillax-Semibold.eot?#iefix') format('embedded-opentype'),
         url('../inc/assets/fonts/Chillax-Semibold.woff2') format('woff2'),
         url('../inc/assets/fonts/Chillax-Semibold.woff') format('woff'),
         url('../inc/assets/fonts/Chillax-Semibold.ttf') format('truetype'),
         url('../inc/assets/fonts/Chillax-Semibold.svg#Chillax-Semibold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}



body{
    font-family: 'Poppins' !important;
}

h1,h2,h3,h4,h5,h6 {
    font-family:Chillax;
} 

h1{ 
  font-size: 100px !important;
  line-height: 108px !important;
  font-weight: 600 !important; 
}
h2{ 
  font-size: 68px !important;
  line-height: 78px !important;
  font-weight: 600 !important;
  color: #474747 !important; 
}
p{
  font-size: 18px;
  line-height: 32px;
  color: #000;  
}
/*=================================================
                  Header
=================================================*/


.me-auto {
    margin-right: unset !important;
}
.flow-head .collapse.navbar-collapse {
    justify-content: center;
}
.flow-head {
    padding: 0px 40px;
    position: absolute;
    width: 100%;
    background: transparent !important;
}

.flow-head .navbar {
    background: #ffffff78 !important;
    padding: 22px 60px;
    border: 1px solid #fff;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.navbar-nav li a {
    color: #000;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    padding: 15px !important;
}
.navbar-nav .nav-item.active a {
    font-weight: 700;
}

.navbar-nav .nav-item.active a:hover {
    color: #1b8d14;
}

.extra-nav ul {
    display: flex;
    margin-bottom: 0px;
    padding-left: 0px;
}

.extra-nav ul li {
    list-style: none;
    margin-left: 20px;
}

.extra-nav ul li a {
    color: #000;
    font-size: 18px;
}
/*=================================================
                Breadcrumb
=================================================*/
.custom-breadcrumb {
    text-align: center;
    background:  url(../images/banner.png) no-repeat center center;
    background-size: cover;
    padding-top: 220px;
    padding-bottom: 140px;
}
.custom-breadcrumb h1 {
    color: #fff;
}
.breadcrumb-trail {
    font-size: 18px;
    color: #fff;
    line-height: 24px;
}
.breadcrumb-trail a {
    text-decoration: none;
    color: #fff;
}
.breadcrumb-trail span {
   font-weight: 600;
}
.breadcrumb-trail a:hover {
    text-decoration: underline;
}
/*=================================================
                Banner_sec
=================================================*/
.banner_sec {
    background: url(../images/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 210px 80px 120px 80px;
}

.banner_sec h1 {
    color: #fff;
    padding-bottom: 30px;
    display: inline-block;
    position: relative;
    animation: upDown 3s ease-in-out infinite;
}

@keyframes upDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); } 
    100% { transform: translateY(0); }   
}

.banner_sec p {
    color: #fff;
    padding-right: 60px;
}

.banner_sec .ban-img img {
    width: 100%;
}

.banner_sec .ban-img {
    position: relative;
    z-index: 999;
}

.ban-btn {
    margin-top: 30px;
}

.banner_sec .ban-img:before {
    content: '';
    background: url(../images/dots.png) no-repeat;
    width: 100%;
    height: 134px;
    position: absolute;
    bottom: -46px;
    left: -20px;
    z-index: -1;
}
.sit_btn {
    display: flex;
    gap: 15px; 
}

.sit_btn button {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: 'Chillax', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    padding: 12px 25px;
    cursor: pointer;
    border: 2px solid #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sit_btn button a {
    text-decoration: none;
    z-index: 1;
    position: relative;
}

.sit_btn button:first-child {
    background: #fff;
}

.sit_btn button:first-child a {
    color: #0c8804;
}

.sit_btn button:last-child {
    background: transparent;
    border-color: #fff;
}

.sit_btn button:last-child a {
    color: #fff;
}

.sit_btn button:last-child a i {
    margin-left: 10px;
}

.sit_btn button::before,
.sit_btn button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    background: #35B32C;
    z-index: 0;
    transition: all 0.4s ease;
}

.sit_btn button::before {
    left: 0;
}

.sit_btn button::after {
    right: 0;
}

.sit_btn button:hover::before,
.sit_btn button:hover::after {
    width: 50%;
}

.sit_btn button:hover a {
    color: #fff !important;
}

/*=================================================
               Gift Momment
=================================================*/
.gif-wraper {
    display: flex;
    justify-content: space-between;
}

.gif-wraper h3 {
    font-size: 24px;
    line-height: 34px;
    border: unset !important;
    color: #000;
    font-weight: 500;
}

.gfem_sec {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
}


.gif-wraper a {
    text-decoration: none;
}


.gif-wraper .gif-thumb {
    margin-bottom: 15px;
}

.gif-wraper .gif-items:hover .gif-thumb img {
    transform: scale(1.1);
    transition: 0.5s;
}

.gif-wraper .gif-items .gif-thumb img{
     transition: 0.5s;
}

.gif-wraper .gif-items:hover h3{
    color: #35b32c;
}

.gif-wraper .gif-items h3{
    transition: 0.5s;
}
.gfem_sec h2 {
    padding-bottom: 20px;
    position: relative;
}

.gfem_sec h2:before {
    content: '';
    position: absolute;
    left: 0;
    border: 1px solid #00000026;
    width: 182px;
    height: 0;
    bottom: 55%;
}
.gfem_sec h2:after {
    content: '';
    position: absolute;
    right: 0;
    border: 1px solid #00000026;
    width: 182px;
    height: 0;
    bottom: 55%;
}

/*=================================================
              Products
=================================================*/
.new-pro-sec {
    padding-bottom: 100px;
}
.new-pro-sec h2 {
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}
.new-pro-sec h2:after{
    content: '';
    position: absolute;
    right: 0;
    border: 1px solid #00000026;
    width: 182px;
    height: 0;
    bottom: 55%;
}
.new-pro-sec h2:before{
    content: '';
    position: absolute;
    left: 0;
    border: 1px solid #00000026;
    width: 182px;
    height: 0;
    bottom: 55%;
}
.pro-items h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
    color: #000;
}
.pro-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.pro-items  .star-rates {
    display: flex;
    padding-left: 0px;
    margin-bottom: 0px;
}

.pro-items .star-rates li {
    list-style: none;
    color: #FCA120;
    font-size: 15px;
}

.pro-items .prcing-bt {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    align-items: center;
}

.pro-items .pro-thumb {
    background: #F5F5F5;
    padding: 50px 10px;
    border-radius: 20px;
}

.pro-items .prcing-bt span {
    font-size: 26px;
    line-height: 26px;
    color: #3A3A3A !important;
}

.pro-items .prcing-bt a {
    background: #35B32C;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
}
/*=================================================
            Exclusive sec
=================================================*/
.exclusive-sec {
    background: url(../images/excu.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding-top: 130px;
    padding-bottom: 130px;
    background-attachment: fixed;
}

.exclusive-sec h2 {
    color: #fff !important;
    margin-top: 20px;
}

.exclusive-sec span {
    color: #fff;
    font-size: 22px;
    line-height: 22px;
    font-family: 'Chillax' !important;
    font-weight: 500;
}
.site_btn a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #35B32C;
    color: #fff !important;
    font-family: 'Chillax';
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid #35b32c;
    padding: 15px 30px;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

.site_btn a::before,
.site_btn a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    background: #fff; 
    z-index: -1;
    transition: all 0.4s ease;
}

.site_btn a::before {
    left: 0;
}

.site_btn a::after {
    right: 0;
}

.site_btn a:hover::before,
.site_btn a:hover::after {
    width: 50%;
}

.site_btn a:hover {
    color: #35B32C !important; 
}


.site_btn {
    background: transparent;
    border: unset;
    margin-top: 20px;
}
/*=================================================
               Best Seller
=================================================*/
.best-sell-sec {
    padding-top: 100px;
    padding-bottom: 100px;
}

.best-sell-sec h2 {
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}
.best-sell-sec h2:before{
    content: '';
    position: absolute;
    left: 0;
    border: 1px solid #00000026;
    width: 182px;
    height: 0;
    bottom: 55%;
}
.best-sell-sec h2:after{
    content: '';
    position: absolute;
    right: 0;
    border: 1px solid #00000026;
    width: 182px;
    height: 0;
    bottom: 55%;
}

/*=================================================
             Where Buy
=================================================*/
.where-buy {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #d4d4ff73;
}

.where-buy h2 {
    padding-bottom: 30px;
}

.where-buy p {
    margin-top: 40px;
}

.where-buy .wher-wrap img {
    width: 100%;
}

/*=================================================
              Blogs Section
=================================================*/
.blogs_sec {
    padding-top: 100px;
    padding-bottom: 100px;
}

.blogs_sec .bg-blog {
    text-align: end;
}


.blog-item .date_wrap {
    font-size: 18px;
    line-height: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-item h3 {
    font-size: 26px;
    line-height: 36px;
    color: #000;
}

.blog-item p {
    font-size: 16px;
    line-height: 26px;
    color: #0000008c;
    padding-right: 30px;
}

.blog-item .blog_btn {
    background: transparent;
    border: unset;
}

.blog-item .blog_btn a {
    color: #000;
    font-size: 22px;
    line-height: 36px;
    font-weight: 600;
    transition: 0.5s;
    position: relative;
}

.blog-item .blog_btn a:hover {
    color: #35b32c;
}

.blog-item .blog_btn a::after {
    content: '\f061';
    font-family: 'FontAwesome';
    position: absolute;
    right: -25px;
    opacity: 0;
    transition: 0.5s;
}

.blog-item .blog_btn a:hover::after {
    right: -35px;
    opacity: 1;
}


.blog-item {
    margin-top: 30px;
}

.blog-thumb img {
    width: 100%;
}
/*=================================================
               Footer
=================================================*/

.site-footer {
    background: #cccce78a;
}

.site-footer .news-let {
    align-items: center;
    border-bottom: 1px solid #0000007d;
    padding-top: 50px;
    padding-bottom: 20px;
}

.site-footer .ftr-nav {
    padding-top: 50px;
    padding-bottom: 50px;
}

.site-footer .ftr-bottom {
/*    background: #35B32C;*/
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    padding: 20px 60px;
    position: relative;
    z-index: 999;
}
.site-footer .ftr-bottom:before {
    content: '';
    background: url(../images/btm.png) no-repeat center;
    background-size: 100% 100%;
    position: absolute;
    height: 68px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    top: 0;
}
.ftr-bottom .pay-wrap {
    text-align: end;
}

.ftr-bottom p {
    margin-bottom: 0px;
    font-size: 20px;
    line-height: 22px;
    color: #fff;
}

.ftr-bottom p strong {
    text-transform: uppercase;
}

.site-footer .ftr-nav ul {
    padding-left: 0px;
    margin-bottom: 0px;
}

.site-footer .ftr-nav ul li {
    list-style: none;
    margin-bottom: 5px;
}

.site-footer .ftr-nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    line-height: 30px;
}

.site-footer .ftr-nav h5 {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
    margin-bottom: 20px;
}

.ftr-1 p {
    font-size: 16px;
    line-height: 28px;
    padding-right: 60px;
    margin: 30px 0px;
}

.ftr-1 .ftr-socials {
    display: flex;
}

.ftr-1 .ftr-socials li {
    margin-right: 20px;
}

.ftr-1 .ftr-socials li a {
    color: #237a359c !important;
    font-size: 20px !important;
}

.news-let h6 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 500;
    color: #000;
}

.news-let p {
    font-size: 14px;
    line-height: 24px;
}

.ftr-btn {
    background: transparent;
    border: unset;
    padding: 0;
}

.ftr-btn a {
    color: #000;
    font-weight: 600;
    font-size: 14px;
}

.news-let .newsletter {
    text-align: end;
    width: 100%;
    display: flex;
    justify-content: end;
}

.news-let .newsletter input[type="email"] {
    width: 100%;
    height: 60px;
    background: transparent;
    border: unset;
    padding-left: 10px;
    outline: unset;
}

.news-let .newsletter form {
    DISPLAY: flex;
    WIDTH: 497PX;
    BACKGROUND: #cfdbdf;
    padding: 10px 0px;
    height: 60px;
    align-items: center;
    border-radius: 5px;
}

.news-let .newsletter form button {
    background: #35B32C;
    height: 60px;
    border-radius: 5px;
    color: #fff;
    width: 133px;
    outline: unset;
    transition: 0.5s;
    border: 2px solid #35b32c !important;
}
.news-let .newsletter form button:hover {
    background: transparent;
    color: #35b32c;
}
.ftr-3 {
    padding-left: 50px !important;
}
/*=================================================
             Responsive
=================================================*/
@media only screen and (max-width: 1720px){
h1 {
    font-size: 90px !important;
    line-height: 98px !important;
}
}
@media only screen and (max-width: 1660px){
    h1 {
        font-size: 80px !important;
        line-height: 88px !important;
    }
}
@media only screen and (max-width: 1366px){
    h1 {
        font-size: 60px !important;
        line-height: 78px !important;
    }
    .flow-head {
    padding: 0px 30px;
}
.flow-head .navbar {
    padding: 15px 40px;
}
.navbar-nav li a {
    font-size: 16px;
}
.extra-nav ul li a {
    color: #000;
    font-size: 16px;
}
.banner_sec {
    padding: 200px 50px 110px 50px;
}
p {
    font-size: 16px;
    line-height: 26px;
}
h2 {
    font-size: 50px !important;
    line-height: 60px !important;
}
.pro-items .prcing-bt span {
    font-size: 22px;
    line-height: 24px;
}
.pro-items .prcing-bt {
    margin-top: 20px;
}
.pro-items .star-rates li {
    font-size: 13px;
}
.ftr-bottom p {
    font-size: 18px;
    line-height: 20px;
}
}
/*=================================================
            About inner
=================================================*/
.about-inner {
    padding-top: 100px;
    padding-bottom: 100px;
}

.about-inner .fir-abt {
    align-items: center;
}

.about-inner .fir-abt p {
    text-align: end;
    padding-left: 130px;
}
.about-inner .abt-btm {
    padding-top: 40px;
}
.about-inner .abt-mid {
    align-items: center;
}

.about-inner .abt-mid .abt-thumb img {
    width: 100%;
}

/*=================================================
         Contact us inner
=================================================*/
.contact-us {
    padding-top: 100px;
    padding-bottom: 100px;
}

.contact-us .map-wrap {
    padding-top: 40px;
}

.contact-us .cnt-wrapper {
    background: #e8e8e882;
    padding: 60px 20px;
    border: 1px solid #0000000f;
    margin-top: 30px;
}

.contact_frm .form-label {
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 500;
    color: #000;
}

.contact_frm input {
    background: #e8e8e882;
    border-radius: unset;
    border: 1px solid #00000017;
    height: 52px;
    margin-bottom: 30px;
}

.contact_frm #message {
    background: #f3f3f3;
    border-radius: unset;
    height: 180px;
}

.contact_frm .btn-subm {
    background: #35b32c;
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
    border: 1px solid #35b32c;
    height: 52px;
    margin-top: 25px;
}
.contact-us .cnt-wrapper h3 {
    font-size: 39px;
    line-height: 50px;
    font-weight: 600;
}

.contact-us .cnt-wrapper p {
    color: #0000007d;
    font-size: 15px;
    line-height: 24px;
}

.contact-us .cnt-wrapper ul {
    padding-left: 0px;
}

.contact-us .cnt-wrapper ul li {
    list-style: none;
    font-size: 14px;
    line-height: 24px;
    COLOR: #00000094;
    margin-bottom: 15px;
}

.contact-us .cnt-wrapper ul li STRONG {
    color: #000;
    margin-right: 10px;
}

/*=================================================
        Shop Page
=================================================*/
.pro-side .side-bar {
    background: #F8F8F8;
    padding: 20px;
    border: 1px solid #0000001f;
    border-radius: 15px;
}

.product-sec {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pro-side .side-bar h3 {
    font-size: 22px;
    line-height: 22px;
    position: relative;
    margin: 20px 0px;
}

.pro-side .side-bar h3:after {
    content: '';
    border: 1px solid #098700;
    position: absolute;
    width: 64px;
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.pro-side .side-bar ul {
    padding-left: 20px;
    margin-bottom: 30px;
    padding-top: 10px !important;
}

.pro-side .side-bar ul li {
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.pro-side .side-bar ul li:before {
    content: '';
    border-left: 15px solid #dddddd;
    position: absolute;
    left: -20px;
    height: 15px !important;
    border-radius: 2px;
}

.pro-side .side-bar ul li a {
    color: #000;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 1px;
    margin-left: 10px;
}

.pro-side .side-bar ul li a span {
    padding-left: 10px;
}

.price-input .min-max {
    display: flex;
    justify-content: space-between;
}

.price-input input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #d3d3d3;
  border-radius: 5px;
  outline: none;
}

.price-input input[type=range]::-webkit-slider-runnable-track {
  height: 6px;
  background: linear-gradient(to right, #35b32c 0%, #35b32c var(--val, 50%), #d3d3d3 var(--val, 50%), #d3d3d3 100%);
  border-radius: 5px;
}

.price-input input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #35b32c;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px; 
}

.price-input input[type=range]::-moz-range-track {
  height: 6px;
  background: #d3d3d3;
  border-radius: 5px;
}

.price-input input[type=range]::-moz-range-progress {
  background: #35b32c;
  height: 6px;
}

.price-input input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #35b32c;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.product-sec .pro-first {
    align-items: center;
    padding-bottom: 40px;
}

.product-sec .pro-first .def-sort {
    text-align: end;
}.product-sec .pro-first {
    align-items: center;
    padding-bottom: 40px;
}

.product-sec .pro-first .def-sort {
    text-align: end;
}

.pro-discript .tabs {
    max-width: 700px;
    margin: 20px auto; 
}
.pro-discript .tab-buttons {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    justify-content: space-between;
}
.pro-discript .tab-buttons li {
    margin-right: 10px;
}
.pro-discript .tab-link {
    background: transparent;
    border: none;
    font-weight: 600;
    cursor: pointer;
    color: #000;
    font-size: 14px;
}
.pro-discript .tab-link.active {
    border-bottom: 2px solid #8b8b8b;
}
.pro-discript .tab-panel {
  display: none;
  background: inherit;
  color: inherit;
}
.pro-discript .tab-panel.active {
    display: block;
}

.product-thumb {
    display: flex;
}

.product-thumb .feature-thumb {
    display: grid;
    margin-right: 20px;
}

.product-thumb .sing_thum {
    width: 100%;
    background: #F5F5F5;
    height: 600px;
    border-radius: 15px;
    padding: 10px;
    display: flex;
    align-items: center;
}

.product-thumb .sing_thum img {
    width: 100%;
    height: 460px;
    object-fit: contain;
}

.product-thumb .feature-thumb img {
    margin-bottom: 15px;
    background: #f5f5f5;
    width: 100%;
    height: 130px;
    padding: 10px;
    border-radius: 15px;
    object-fit: contain;
    transition: 0.5s;
}

.product-thumb .feature-thumb img:hover {
    transform: scale(1.1);
}

.single-pro {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pro-discript .pro_title {
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
    border-bottom: 1px solid #0000002e;
    padding-bottom: 5px;
    margin-bottom: 25px;
    color: #000;
}

.pro-discript .pro_pricing span {
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
}

.pro-discript .pro_pricing .reg-price {
    color: #0000008c;
    padding-left: 10px;
    font-size: 17px;
    position: relative;
}

.pro-discript .pro_pricing .reg-price:after {
    content: '';
    border-right: 41px solid #77777780;
    position: absolute;
    left: 0;
    height: 2px;
    top: 10px;
    right: 0;
    margin: 0 auto;
}

.pro_pricing {
    margin-bottom: 20px;
}

.pro-discript .pro_variation ul {
    display: flex;
    padding-left: 0px;
    margin-bottom: 30px;
}

.pro-discript .pro_variation ul li {
    list-style: none;
    background: #F2F2F2;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    border-radius: 4px;
}
.pro-discript button.add-to-card {
    background: #098700;
    padding: 15px 70px;
    border: 1px solid #098700;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    font-family: 'Chillax';
}

.pro-discript .ad_wish {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.pro-discript .ad_wish .wishlist {
    border: 2px solid #098700;
    padding: 14px;
    border-radius: 30px;
    line-height: 20px;
    color: #098700;
}

/* ############ */
/*=============================================
                Sign Up Page
=============================================*/
.signup-sec {
    padding: 100px 0;
    background: #f9f9f9;
}

.signup-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.signup-card h2 {
    font-family: 'Chillax';
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 10px;
    color: #000;
}

.signup-card .sub-text {
    color: #555;
    font-size: 16px;
    margin-bottom: 30px;
}

.signup-card .form-group {
    text-align: left;
    margin-bottom: 20px;
}

.signup-card .form-group label {
    font-weight: 500;
    font-size: 15px;
    color: #000;
}

.signup-card .form-control {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    font-size: 16px;
    font-family: 'Poppins';
    outline: none;
    transition: all 0.3s;
}

.signup-card .form-control:focus {
    border-color: #35B32C;
    box-shadow: 0 0 8px rgba(53,179,44,0.2);
}

.signup-card .site_btn.full-btn {
    width: 100%;
    margin-top: 10px;
    padding: 15px 0;
}

.signup-card .already {
    margin-top: 20px;
    font-size: 15px;
    color: #555;
}

.signup-card .already a {
    color: #35B32C;
    font-weight: 600;
    text-decoration: none;
}

.signup-card .already a:hover {
    text-decoration: underline;
}
.me-auto {
    margin-right: 0 !important;
}



/*=================================================
              Blogs Section
=================================================*/
.blogs_sec {
    padding-top: 100px;
    padding-bottom: 100px;
}

.blogs_sec .bg-blog {
    text-align: end;
}

.blog-item {
    margin-top: 30px;
}

.blog-thumb img {
    width: 100%;
}

.blog-item .date_wrap {
    font-size: 18px;
    line-height: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-item h3 {
    font-size: 26px;
    line-height: 36px;
    color: #000;
}

.blog-item p {
    font-size: 16px;
    line-height: 26px;
    color: #0000008c;
    padding-right: 30px;
}

.blog-item .blog_btn {
    background: transparent;
    border: unset;
}

.blog-item .blog_btn a {
    color: #000;
    font-size: 22px;
    line-height: 36px;
    font-weight: 600;
    transition: 0.5s;
    position: relative;
}

.blog-item .blog_btn a:hover {
    color: #35b32c;
}

.blog-item .blog_btn a::after {
    content: '\f061';
    font-family: 'FontAwesome';
    position: absolute;
    right: -25px;
    opacity: 0;
    transition: 0.5s;
}

.blog-item .blog_btn a:hover::after {
    right: -35px;
    opacity: 1;
}



/*=================================================
              Blogs form
=================================================*/

  /* body {
      font-family: 'Poppins', sans-serif;
      background-color: #f8fafc;
      margin: 0;
      padding: 40px 20px;
    } */

    h1 {
      text-align: center;
      color: #198754;
      font-weight: 600;
      margin-bottom: 30px;
    }

    .container-custom {
      max-width: 1000px;
      margin: auto;
      background: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .search-container input {
      padding: 8px 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      width: 220px;
    }

    table img {
      width: 80px;
      height: 60px;
      object-fit: cover;
      border-radius: 6px;
    }

    .btn-update {
      background-color: #0d6efd;
      color: #fff;
      border-radius: 6px;
      padding: 6px 12px;
      font-size: 14px;
      text-decoration: none;
    }

    .btn-update:hover {
      background-color: #0a58ca;
    }

    .btn-delete {
      background-color: #dc3545;
      color: #fff;
      border-radius: 6px;
      padding: 6px 12px;
      font-size: 14px;
      border: none;
      cursor: pointer;
    }

    .btn-delete:hover {
      background-color: #bb2d3b;
    }
    /* Responsive Styles blog */


/*======= blog single CSS *==========/
.blog-thumb img {
  width: 100%;
  height: 250px;      /* fix the height for all images */
  object-fit: cover;  /* crops neatly instead of stretching */
/* } */
.single-blog-section .card {
    border-radius: 0px;
    box-shadow: 0px 0px 10px -8px #000 !important;
}

.single-blog-section .card h1 {
    font-size: 40px  !important;
    text-transform: uppercase;
    color: #000 !important;
    border-bottom: 2px solid #539e4d;
    line-height: 50px !important;
}

.single-blog-section .card .blog-description {
    text-align: center;
    font-size: 18px !important;
    line-height: 32px !important;
}

.single-blog-section .card .text-muted.text-center.mb-4 {
    color: #000 !important;
    font-size: 20px !important;
}

.single-blog-section .card .text-muted.text-center.mb-4 .fa-solid.fa-calendar-days {
    color: #539e4d;
}

.view-cart-bar {
    padding: 7px;
    box-shadow: 0px 0px 9px -5px #000;
    border-radius: 0px;
}

.view-cart-bar {
    border: 1px solid #1a1b25;
    padding: 5px;
    border-radius: 5px;
}
.view-cart-bar .btn.btn-primary {
    background: #35b32c;
    border-color: #35b32c;
}