@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/


body {
    word-break: break-word;
    font: 15px/25px "Montserrat", 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: 25px;
    color: #0e0d0d;
    font-size: 14px;
}


/***** Font Files *****/

@font-face {
    font-family: 'Hudson-Serif';
    src: url(../fonts/Hudson-Serif.woff);

}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 0 25px;
    border: unset;
    color: #121212;
    z-index: 1;
    background: #fff;
    position: relative;
    font-size: 17px;
    transition: all 250ms;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-radius: 8px;
    font-family: 'Hudson-Serif';
    font-weight: 400;
    height: 50px;
    line-height: 1;
    letter-spacing: 0.2px;
    border: 1px solid #00c4cc;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 8px;
    background-color: #00c4cc;
    z-index: -1;
    transition: all 250ms
}

.theme_btn:hover {
    color: #fff;
}

.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: 'Hudson-Serif';
    font-size: 55px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'Hudson-Serif';
    font-size: 70px;
    line-height: 1.2;
    color: #121212;
    font-weight: 400;
    margin: 0 0 20px;
}

h3 {
    font-family: 'Hudson-Serif';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 400;
    margin: 0 0 28px;
}

h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Montserrat", sans-serif;
    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 {
    position: absolute;
    width: 100%;
    left: 0;
    top: 10px;
    z-index: 99;
    border-bottom: 1px solid #ffffff52;
    padding-bottom: 10px;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.menuSec ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
    position: relative;
}

.menuSec li:hover ul {
    opacity: 1;
    visibility: visible;
}


.menuSec ul li a {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    transition: 0.5s;
    text-transform: uppercase;
    font-family: 'Hudson-Serif';
}

.menuSec ul li:last-child a:after {
    display: none;
}

.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: var(--primary-color);
}

.menuSec li>ul {
    position: absolute;
    z-index: 0;
    background-color: #fff;
    left: 0;
    width: 240px;
    text-align: left;
    opacity: 0;
    transition: 0.2s ease-in-out;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 0;
    box-shadow: 0 0 10px #ccc;
    column-count: 2;
    display: flex;
    padding: 10px 0;
    visibility: hidden;
    top: 60px;
}

.menuSec li:hover ul {
    transition: 0.2s ease-in-out;
    top: 60px;
    z-index: 999;
}

.menuSec li>ul:after {
    position: absolute;
    content: "";
    background: #606060;
    width: 20px;
    height: 20px;
    top: -20px;
    left: 10px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: 999;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    /* color: #fff !important; */
    font-size: 13px;
    line-height: 20px;
    width: 100%;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #848484;
    font-family: "Inter", sans-serif;
    text-transform: capitalize;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
    width: 100%;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000 !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: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    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: end;
    /* background: rgba(0, 0, 0, 0.1); */
    z-index: 9;
}

.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: #28b16d;
    width: 10px;
    height: 12px;
}


/*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  */

/* +++++++++++++++++++++++++++++++++++++++ HOME +++++++++++++++++++++++++++++++++++++++ */
.header-btns {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 10px;
}

a.cart-header {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 8px;
    transition: 0.45s;
}

a.cart-header:hover {
    background: #121212;
}

section.main_slider {
    background-color: #00c2ca;
    position: relative;
}

h1.ban-h1 {
    position: absolute;
    top: 105px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    font-size: 62vh;
    text-transform: uppercase;
    display: inline-block;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ffffff45;
    /* Change to your desired border color */
    background-clip: text;
    line-height: 1;
}

.container-fluid {
    padding: 0 5%;
}

section.main_slider:before {
    position: absolute;
    content: '';
    background: #fff;
    width: 90%;
    height: 53%;
    bottom: 0;
    left: 0;
    z-index: 1;
    border-radius: 0 20px 0 0;
}

.banner_text {
    margin-bottom: 90px;
}

.banner_text h2 {
    font-size: 68px;
}

.banner_text h2 span {
    display: block;
    color: #00c4cc;
}

.blue {
    color: #00c4cc;
}

.ban-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn2 {
    width: fit-content;
    padding: 0 25px;
    background: #00c4cc;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 8px;
    border: 1px solid #00c4cc;
    font-weight: 500;
    text-transform: uppercase;
}

.btn2:hover {
    color: #00c4cc;
    background: #fff;
}

section.about {
    padding: 80px 0;
}

section.about .row {
    align-items: center;
}

.abt-img img {
    width: 100%;
    border-radius: 30px;
}

.abt-text h2 {
    font-size: 62px;
}

section.safe-place {
    padding: 80px 0;
    position: relative;
}

section.safe-place .container-fluid {
    padding: 0 5%;
}

section.safe-place:before {
    position: absolute;
    content: '';
    background-image: url(../images/place-bg.png);
    background-size: cover;
    width: 66%;
    height: 100%;
    top: 0;
    background-color: #00c4cc;
    background-position: center;
    z-index: -1;
}

.safe-text {
    width: 80%;
}

.safe-text h2 {
    color: #fff;
}

.safe-text p {
    color: #fff;
}

section.safe-place:after {
    position: absolute;
    content: '';
    background-image: url(../images/place2.png);
    background-size: cover;
    width: 34%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: -1;
}

.safe-vid a {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #00c4cc;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
    right: 0;
    margin: 0 auto;
}

.safe-vid {
    position: absolute;
    bottom: 0;
}

.safe-vid img {
    height: 219px;
    border-radius: 0 30px 0 0;
    object-fit: cover;
}

section.programs {
    padding-bottom: 80px;
}

.top-heading {
    text-align: center;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 40px;
}

.program-slider .slick-slide {
    opacity: 1;
    margin: 10px 20px;
}

.program-box {
    position: relative;
    border-radius: 30px;
    box-shadow: 0 0 20px #ccc;
    transition: 0.5s;
}

.prog-text {
    padding: 20px;
}

.prog-text h3 {
    font-size: 20px;
    color: #121212;
    border-bottom: 1px solid #cbcbcb;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.prog-text p {
    font-size: 13px;
    color: #121212;
}

.prog-text ul li {
    position: relative;
    font-size: 14px;
    color: #121212;
    font-family: 'Hudson-Serif';
    padding-left: 20px;
}

.prog-text ul li:before {
    position: absolute;
    content: '';
    background: #00c4cc;
    width: 10px;
    height: 10px;
    left: 0;
    top: 9px;
    border-radius: 50%;
    border: 3px solid #fff;
    outline: 2px solid #00c4cc;
}

.program-box img {
    width: 100%;
    border-radius: 30px 30px 0 0;
}

.program-box .btn2 {
    font-family: 'Hudson-Serif';
    width: 100%;
}

.program-box:hover {
    background: #00c4cc;
}

.program-box:hover .prog-text * {
    color: #fff;
}

.program-box:hover .prog-text .btn2 {
    background: #fff;
    color: #000;
}

section.trust {
    padding: 80px 0;
}

.trust-text {
    width: 92%;
}

section.trust .row {
    align-items: center;
}

.trust-img img {
    width: 109%;
    border-radius: 30px 30px 30px 0;
    height: 521px;
    object-fit: cover;
}

.trust-img.trust-img2 img {
    border-radius: 30px 0 30px 30px;
    height: 293px;
    object-fit: cover;
}

.trust-text.trust-text2 {
    padding: 20px;
    width: 100%;
}

.prd-box {
    border: 1px solid #dfdfe1;
    border-radius: 20px;
    transition: 0.45s;
}

section.product {
    padding-bottom: 80px;
}

.prd-text {
    padding: 20px;
}

.prd-text h3 {
    font-size: 20px;
    color: #0d0b21;
    margin-bottom: 14px;
}

.prd-text p {
    font-size: 13px;
    color: #252525;
}

.star {
    display: flex;
    align-items: center;
}

.star i {
    color: #fd8f00;
    font-size: 13px;
}

.prd-text ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.prd-text ul li a {
    font-size: 13px;
    color: #121212;
    font-family: 'Hudson-Serif';
}

.prd-text ul li {
    font-size: 23px;
    font-family: 'Hudson-Serif';
    color: #00c4cc;
}

.prd-box a img {
    border-radius: 20px;
    height: 279px;
    object-fit: cover;
    width: 100%;
}

.slick-slide {
    opacity: 1;
}

a.cart-prd img {
    width: 20px;
    height: auto;
}

a.cart-prd {
    background: #00c4cc;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #fff;
    margin: 0 0 0 auto;
    margin-top: -40px;
    z-index: 99;
    position: relative;
    transition: 0.45s;
    cursor: pointer;
}

.prd-box:hover a.cart-prd {
    background: #000;
}

.prd-box:hover {
    background: #00c4cc;
}

.prd-box:hover * {
    color: #fff;
}

.prd-text ul li del {
    color: red;
}

/* ----------------------------- Testimonials Start ------------------------*/


section.testimonials {
    padding-bottom: 80px;
}

.box-card {
    padding: 20px 20px;
    position: relative;
    margin: 30px 14px 0;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #cccccc8c;
}

.mainSlider .item {
    margin: 0px;
}

section.testimonials .slick-list.draggable {
    padding: 0px !important;
}

section.testimonials .item {
    opacity: 1;
    margin: 10px 0;
}

.box-card .quote {
    display: inline-block;
    position: absolute;
    top: -20px;
}

.box-card .quote i {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #121212;
    box-shadow: 0px 0px 8px 1px #2222221f;
    transition: 0.9s;
    font-size: 18px;
}

.box-card ul.rating {
    justify-content: flex-start;
    align-items: center;
    margin: 48px 0 16px;
    display: flex;
    gap: 5px;
}

.box-card ul.rating li a i {
    color: #fd8f00;
    font-size: 16px;
}

.box-card .descrp {
    margin-bottom: 20px;
}

.box-card .descrp p {
    font-size: 13px;
    line-height: 23px;
}

.box-card .authr-det {
    display: flex;
    align-items: center;
    gap: 10px;
}

.box-card .authr-det h5 {
    font-size: 20px;
    color: #000;
    line-height: 20px;
    font-family: 'Hudson-Serif';
    margin-top: 0;
    margin-bottom: 5px;
}

.box-card .authr-det p {
    font-size: 12px;
    line-height: 18px;
    font-family: 'Hudson-Serif';
}

.mainSlider .box-card {
    background: #00c4cc;
    margin-left: 0;
    border-radius: 20px;
    padding: 20px 40px;
}

.mainSlider .box-card .quote i {
    background: #00c4cc;
    color: #fff;
}

.simSlidDs .item {
    margin: 0px;
}

.simSlidDs .item .box-card ul.rating li a i {
    font-size: 13px;
}

.simSlidDs .slider-nav {
    margin: 0px;
}

.simSlidDs .slider-nav {
    margin: 0px;
}

section.testimonials .simSlidDs .item .box-card h5 {
    font-size: 16px;
    color: #121212;
    margin: 0;
}

.mainSlider .box-card p {
    color: #fff;
}

.mainSlider .box-card h5 {
    color: #fff;
}

/* ----------------------------- Testimonials  end ------------------------*/
section.instagram_sec.client-section .slick-slide {
    margin: 0;
}

/* footer sec start  */

footer {
    padding: 80px 0 0 0;
    position: relative;
    z-index: 0;
    background-color: #0a0a0a;
}

.foot-bottom {
    background: #0a0a0a;
    margin-top: 40px;
    padding: 20px 0px;
    text-align: center;
}

footer h5 {
    position: relative;
    font-size: 22px;
    color: white;
    padding-left: 0px;
    text-transform: uppercase;
    line-height: 25px;
    margin-bottom: 50px;
    font-family: 'Hudson-Serif';
}

footer h5:before {
    position: absolute;
    content: "";
    width: 50%;
    height: 1px;
    background: #404040;
    top: 50px;
    left: 0;
}

p.ftr_leftp {
    font-size: 12px;
    color: #ffffff73;
    line-height: 19px;
    width: 85%;
    margin-bottom: 30px;
    margin-top: 25px;
    position: relative;
}


.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    background: #00c4cc;
    border-radius: 50%;
    font-size: 15px;
    margin-right: 3px;
}

.quick-links a:hover {
    color: #add0c5;
}

img.img-fluid {
    width: 100%;
}

.social-links a:hover {
    background-color: #121212;
    color: #fff;
    border: 1px solid #fefefe;
}

.quick-links a {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #767676;
    line-height: 36px;
    font-weight: 500;
    text-transform: capitalize;
}


footer .container-fluid {
    /* margin: 0 3%; */
    /* padding-bottom: 60px; */
}

ul.contList li a {
    color: #767676;
    font-family: 'Montserrat';
}

ul.contList li a i {
    color: #fff;
    font-size: 16px;
    margin-right: 20px;
}

ul.contList {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 15px;
}

li.contListli a {
    display: flex;
    align-items: center;
    justify-content: start;
}

li.contListli i {
    color: #fff;
}


.box-text ul li i {
    font-size: 20px;
}


li.contListli {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
}

.ftr_top_text h2 {
    color: #fff;
    font-size: 65px;
}

.ftr_top_text {
    text-align: center;
}

.ftr_top_text p {
    color: #d7a89b;
    width: 60%;
    margin: 10px auto;
}

button.themebtn.ftr_btn {
    width: 370px;
}

span.themebtn_txt.ftr_btn {
    width: 200px;
}

.foot-bottom {
    border-top: 1px solid #404040;
    position: relative;
}

.foot-bottom p {
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin: 0;
}

.foot-bottom .container-fluid {
    margin: 0 3%;
    padding-bottom: 0;
}

/* footer sec end  */
/* +++++++++++++++++++++++++++++++++++++++ Home end +++++++++++++++++++++++++++++++++++++++ */

/* +++++++++++++++++++++++++++++++++++++++  Inner Pages +++++++++++++++++++++++++++++++++++++++ */
section.main_slider.inn-banner img.img-fluid {
    height: 600px;
    object-fit: cover;
    object-position: top;
}

section.main_slider.inn-banner .banner_img img {
    height: 500px;
    margin: 0 110px 0 auto;
    display: block;
}

/* Contact Start  */

section.connectLinks .cnt-links {
    position: relative;
    background: #00c4cc;
    transition: all 0.9s;
    padding: 55px 30px;
    border-radius: 10px;
    height: 200px;
}

section.connectLinks .cnt-links:hover {
    background: #121212;
}

section.connectLinks .cnt-links p {
    margin: 0px;
    color: #fff;
    font-weight: 500;
}

section.connectLinks .cnt-links h5 {
    text-transform: uppercase;
    color: #fff;
    font-family: 'Hudson-Serif';
    padding-bottom: 18px;
    margin-bottom: 18px;
    position: relative;
}

section.connectLinks .cnt-links h5:before {
    position: absolute;
    content: "";
    width: 80%;
    height: 1px;
    background: #fff;
    opacity: 41%;
    bottom: 0;
}

section.connectLinks .connectLinkWrap {}

section.contactForm {
    padding-bottom: 80px;
}

section.contactForm .fmWraper {
    margin: 0px auto;
}

section.contactForm form input {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: 0;
    box-shadow: 0px 0px 20px 13px #9999991a;
    border: 1px solid #bdbdbd;
    text-transform: uppercase;
    color: #909091;
    font-size: 14px;
}

section.contactForm .headerElement p {
    opacity: 50%;
    width: 50%;
    margin: 14px auto 50px;
}

section.contactForm form textarea {
    width: 100%;
    padding: 28px 20px;
    margin-bottom: 24px;
    border-radius: 0;
    box-shadow: 0px 0px 20px 13px #9999991a;
    border: 1px solid #bdbdbd;
    text-transform: uppercase;
    color: #909091;
    font-size: 14px;
    height: 150px;
    resize: unset;
    position: relative;
}

button.p-btn {
    padding: 0;
    border: 0;
}

section.contactForm form textarea::placeholder {
    position: absolute;
    bottom: 21px;
    color: #909091;
}

section.contactForm form .siteBtn {
    display: table;
    margin: 0px auto;
}

section.contactForm form input::placeholder {
    color: #909091;
}

section.contactForm form .sitBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    display: none;
    margin: 0;
}

section.connectLinks .cnt-links p a {
    color: #fff;
}

section.connectLinks {
    padding: 70px 0;
}

/* Contact end */
/*Picing Page Start*/

.text-pricing h2 {
    font-size: 78px;
    text-align: center;
    margin-bottom: 30px;
    z-index: 1;
    position: relative;
    color: #000;
}

.text-pricing h5 {
    font-family: "Montserrat";
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #000;
    margin: 0;
}

.text-pricing ul li {
    display: flex;
    font-family: "Montserrat";
    font-size: 14px;
    align-items: center;
    gap: 13px;
    margin-bottom: 10px;
    color: #000;
}

.text-pricing ul li img {
    width: 14px;
    height: 14px;
    object-fit: fill;
}

.text-pricing a {
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    background: #00c4cc;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 14px 0px;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    font-family: 'Hudson-Serif';
}

.text-pricing {
    padding: 40px 32px;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    margin: 0 18px;
    transition: 0.5s;
}

.text-pricing ul {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.text-pricing h2 span {
    font-size: 49px;
}

.text-pricing:hover h5,
.text-pricing:hover h2 {
    color: #fff;
}

.text-pricing:hover p {
    color: #fff;
}

.text-pricing:hover ul li {
    color: #fff;
}

.text-pricing:hover ul li img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7471%) hue-rotate(27deg) brightness(121%) contrast(90%);
}

.pricing .row {
    justify-content: center;
}

.pricing {
    padding: 80px 0px 100px;
    overflow: hidden;
}

.text-pricing:hover {
    background: #00c4cc;
}

.text-pricing:hover a {
    background: #fff;
    color: #000;
}

/*Pricing Page End*/

/*Appointment Start*/

section.appointment-sec {
    padding: 100px 0;
    position: relative;
}



.appointment-head {
    margin: 0 0 50px;
}

.appointment-form input::palceholder {
    color: #000;
}

.appointment-form input {
    width: 100%;
    height: 60px;
    border: 1px solid #ededed;
    padding: 0 20px;
    margin: 0 0 20px;
    color: #000;
    font-family: 'Montserrat';
    font-size: 14px;
    text-transform: capitalize;
    border-radius: 8px;
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
    color: #000;
}

.appointment-form select {
    width: 100%;
    height: 70px;
    border: 1px solid #ededed;
    padding: 0 20px;
    margin: 0 0 20px;
    color: #000;
    font-family: 'Montserrat';
    appearance: auto;
    border-radius: 8px;
    font-size: 14px;
}

.appointment-form textarea {
    width: 100%;
    height: 150px;
    border: 1px solid #ededed;
    padding: 20px;
    margin: 0 0 20px;
    color: #909091;
    font-family: 'Montserrat';
    resize: none;
    font-size: 14px;
    border-radius: 8px;
}

.appointment-btn {
    text-align: center;
}

.appointment-btn button {
    width: auto;
    margin: 0 auto;
    font-family: 'Hudson-Serif';
    font-weight: 400;
}

/*Appointment End*/

section.program-detail {
    padding: 80px 0;
}

section.program-detail .prog-text {
    width: 86%;
    margin: 0 auto;
    padding: 30px;
    border-radius: 30px;
    margin-top: -70px;
    background: #fff;
    box-shadow: 0 0 10px #ccc;
    z-index: 99;
    position: relative;
}

img.prg-det {
    width: 100%;
    border-radius: 30px;
}

/* Product Page Start */

.range-text {
    display: flex;
    justify-content: center;
    position: relative;
}

.right-side-top {
    border-radius: 5px;
    padding: 20px 30px;
    background-color: #fff;
    border: 1px solid #ccc;
}

.right-side-top select {
    width: 100%;
    padding: 13px 20px;
    border: 1px solid transparent;
    color: #000;
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    appearance: auto;
    line-height: 60px;
}

.showing-icon>select {
    width: 50%;
}

.showing-icon>.product-select {
    width: 85%;
}

.showing-icon>p {
    width: 15%;
}

.right-side-top p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.show-prg-num a {
    font-size: 16px;
    font-weight: 500;
    color: #9e9b9b;
    padding: 0 2px;
    transition: 0.5s;
}

.show-prg-num p {
    font-size: 16px;
}

.show-prg-num {
    gap: 10px;
}

.show-prg-num a:hover {
    color: #0d0d0d;
}

.showing-icon {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.showing-icon a {
    margin-top: 19px;
    padding: 0 13px;
    color: #000;
}

section.collection-side {
    padding: 100px 0;
    position: relative;
}

img.bk-2.prd-pg-2 {
    bottom: 20%;
}

img.bk-1.prd-pg-1 {
    right: -5%;
    bottom: 15%;
}

.product-bar-txt h5 {
    /* color: var(--white); */
    font-size: 23px;
}

.product-bar form {
    position: relative;
}

.product-bar {
    width: 80%;
    height: 100%;
    /* border-right: 1px solid #cccccc38; */
}

.range-bg-space {
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
}

.range-slider {
    width: 100%;
    margin-top: 46px;
    position: relative;
}

.range-slider input {
    border: none;
}

.left-side-one {
    width: 55px;
}

:root {
    --primary-color: #101010;
    /* Black for fill */
    --secondary-color: #e5e7eb;
    /* Light gray for background track */

}

.show-top {
    gap: 10px;
    display: flex;
    font-size: 14px;
    margin-top: 50px;
    font-weight: 500;
    align-items: center;
    justify-content: flex-start;
}

.range-slider .rangeValues {
    width: 100%;
    display: block;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 500;
    color: #00c4cc;
}

/* The custom fill track (the black part between the thumbs) is created using a pseudo-element on the parent */
.range-slider::before {
    content: '';
    height: 5px;
    background: #00c4cc;
    /* Black color for the active range */
    position: absolute;
    top: 25px;
    /* Adjust to center vertically */
    left: 0;
    right: 0;
    z-index: 1;
    /* Use custom properties updated by JS to control the black fill width and position */
    left: 0%;
    right: 100%;
}

/* The overall light gray track (unselected area) */
.slider-track {
    position: absolute;
    top: 25px;
    /* Center vertically */
    width: 100%;
    height: 5px;
    background: #e5e7eb;
    /* Light gray for inactive range */
    border-radius: 3px;
    z-index: 0;
}

.range-slider input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    position: absolute;
    left: 0;
    border: none;
    padding: 0;
    height: 5px;
    top: 25px;
    /* Align with the track and pseudo-element */
    margin: 0;
    background: none;
    /* Crucial: make input background transparent */
    pointer-events: none;
    /* Allow interaction through the input track */
    z-index: 3;
    /* Ensure thumbs are above the fill */
}

/* Make the input tracks transparent so we can see the background track and fill */
.range-slider input[type=range]::-webkit-slider-runnable-track {
    background: transparent;
    height: 5px;
    border: none;
}

.range-slider input[type=range]::-moz-range-track {
    background: transparent;
    height: 5px;
    border: none;
}

/* Style for the thumb (the dot) */
.range-slider input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background: #00c4cc;
    cursor: pointer;
    position: relative;
    z-index: 4;
    /* Ensure thumbs are clickable */
    pointer-events: all;
    /* Make thumbs clickable */
    margin-top: calc((15px - 5px) / -2);
    /* Center thumb vertically */
}

.range-slider input[type=range]::-moz-range-thumb {
    -moz-appearance: none;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background: #101010;
    cursor: pointer;
    z-index: 4;
    pointer-events: all;
    border: none;
}

/* Value Popups (The black tags $15 and $500 in the image) */
.range-slider .rangeValues {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    color: #00c4cc;
    position: relative;
    z-index: 5;
    top: -20px;
}

.value-popup {
    position: absolute;
    top: -10px;
    background-color: #00c4cc;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    /* Transition for smooth movement */
    transition: left 0.1s ease;
}

.value-popup::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #00c4cc;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}


.range-bg-space h5 {
    font-size: 25px;
    margin-bottom: 30px;
    font-family: 'Hudson-Serif';
}


.product-bar1 a {
    display: block;
    color: #2c2c2c;
    font-size: 14px;
    line-height: 35px;
    border-bottom: 1px solid #cccccc38;
    margin-bottom: 16px;
    padding-bottom: 10px;
    padding-left: 20px;
    transition: 0.5s;
    font-weight: 500;
}

.product-bar1 {
    padding: 20px;
    margin-top: 25px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
}

.product-bar1 h5 {
    font-size: 22px;
    font-family: 'Hudson-Serif';
    margin-bottom: 20px;
}

.product-bar1 a:hover {
    font-weight: 500;
    padding-left: 25px;
    color: #dfdfdf;
}


.grid-view>a {
    font-size: 19px;
    width: 25px;
    height: 25px;
    transform: rotate(90deg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff7f00;
    overflow: hidden;
    transition: ease-in-out;
    transition-duration: 0.2s;
}

.pro-grid-view .w-full {
    width: 50%;
}

.pro-grid-view .w-full {
    width: 50%;
}

.grid-view>a:hover {
    color: #fff;
    transition: ease-in-out;
    transition-duration: 0.2s;
}

.collection-side .premium-products-silder-items {
    margin: 20px 0;
}

.grid-view p {
    color: #ff7f00;
}

.grid-view:hover .grid-view-badge {
    display: block;
}

.grid-view-badge {
    position: absolute;
    top: -40px;
    left: 0;
    padding: 10px;
    background: #ff7f00;
    border-radius: 5px;
    z-index: 9;
    display: none;
}

.grid-view-badge::before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 20px;
    height: 10px;
    background-color: #ff7f00;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.grid-view-badge h6 {
    font-size: 12px;
    line-height: 1;
    color: #fff;
    font-family: 'Poppins';
    font-weight: 600;
    margin: 0;
}

.large-grid-view-class .col-lg-4 {
    width: 50%;
}

.list-view-class .col-lg-4 {
    width: 100%;
}

.row.product-grid.grid-view-class .col-lg-4 {
    width: 33%;
}

.view-grid1 {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

.view-grid1 a i {
    color: #888888;
}

.view-grid1 a i:hover {
    color: #00c4cc;
}

section.collection-side .prd-box {
    margin-bottom: 30px;
}

/*product end*/

/* product detail starts */
:root {
    --min-val: 0%;
    --white: #fff;
    --black: #000;
    --max-val: 100%;
    --thumb-size: 15px;
    --track-height: 5px;
    --textColor: #7f7f7f;
    --themeColor: #0d0d0d;
    --themeColor2: #dfdfdf;
    --headingColor: #313131;
    --headingColor2: #0d0d0d;
}

section.product-detail {
    padding: 100px 4%;
}

.product-detail .productdetailportion {
    height: 500px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 17px;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 33px 0px rgba(0, 0, 0, 0.07);
    width: 100%;
}

.productdetailfor .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

section.product-detail .row {
    align-items: center;
}

.productdetailnav .slick-slide {
    margin: 0 10px;
    cursor: pointer;
}

.productdetailsmallportion {
    width: 100%;
    display: flex;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ececec;
    background-color: var(--white);
    height: 130px;
}

.productdetailsmallportion img {
    width: 100%;
    height: 100%;
    transition: 0.3s;
    object-fit: cover;
    border-radius: 10px;
}

.productdetailnav .slick-slide.slick-current .productdetailsmallportion {
    position: relative;
}

.productdetailnav .slick-slide.slick-current .productdetailsmallportion::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: -10px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background-color: var(--white);
    z-index: -1;
}

.productdetailnav .slick-slide.slick-current .productdetailsmallportion {
    padding: 5px;
    border-radius: 5px;
    background: var(--white);
    box-shadow: 0px 0px 33px 0px rgba(0, 0, 0, 0.07);
}

.product-content .top-section h6 {
    font-size: 35px;
    margin-bottom: 15px;
    font-family: 'Hudson-Serif';
}

.product-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-content ul li {
    margin-right: 5px;
    font-size: 17px;
    color: black;
    font-weight: 600;
}

.product-content ul li i.fas.fa-star {
    color: #ffc107;
}

.product-content hr {
    margin: 20px 0;
    border-color: #eee;
}

.row.flexEnd.price_rev ul {
    display: flex;
}

.row.flexEnd.price_rev p {
    font-size: 17px;
    color: black;
    font-weight: 600;
    font-size: 17px;
    margin: 0;
    border-left: 2px solid #000;
    padding-left: 20px;
}

.brand p {
    line-height: 1.6;
}

.product-detail .slick-active {
    opacity: 1;
}

.product-detail .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1;
    margin: 8px 10px;
}

ul.brand h3 {
    color: #00000082;
    font-size: 22px;
    padding: 20px 0 20px 0;
    text-decoration: line-through;
}

.price_rev {
    margin-bottom: 15px;
}

ul.brand h2 {
    line-height: 1;
    font-size: 35px;
    font-weight: 600;
    padding: 0 0 10px 0;
    color: var(--headingColor2);
}

ul.brand h4 {
    font-size: 16px;
    margin: 20px 0px;
    text-transform: uppercase;
}

ul.brand p {
    padding: 0 0 20px 0;
    color: #000;
}

.quanity.product-detail div {
    gap: 10px;
    display: flex;
    align-items: center;
    margin: 0px 0px 20px;
    border-radius: 0 !important;
    justify-content: flex-start;
}

.quanity.product-detail .num-block.skin-2 .num-in,
.quanity.product-detail .num-block.skin-2 {
    gap: 0;
    margin-bottom: 0px;
}

.quan-count {
    height: 50px;
    width: 140px;
    display: flex;
    padding: 0px 10px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbcbcb;
    margin: 0;
}

.sku {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.sku p {
    font-size: 17px;
    font-weight: 600;
    padding: 0 0 10px 0;
    color: var(--headingColor2);
}

.sku span {
    font-size: 17px;
    font-weight: 600;
    color: var(--headingColor2);
}

ul.share-icon {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 0;
}

.sku>div:last-child {
    width: 70%;
}


.row.flexEnd.price_rev p i {
    color: #00c4cc;
}

ul.share-icon li {
    font-size: 17px;
    font-weight: 600;
    color: var(--headingColor2);
}

.sku p {
    margin-bottom: 10px;
}

.sku p.position-relative {
    top: 10px;
}

.sku>div:first-child {
    width: 30%;
}

ul.share-icon a {
    width: 40px;
    height: 40px;
    display: flex;
    opacity: 0.5;
    font-size: 16px;
    border-radius: 50%;
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    color: var(--headingColor2);
    border: 1px solid var(--headingColor2);
}

ul.share-icon a:hover {
    opacity: 1;
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: #00c4cc;
    border-color: #00c4cc;
}

/*  product Detail Review Section Start */


/* Rating Stars */

.prod-detail-description .rating:not(:checked)>input {
    position: absolute;
    -webkit-appearance: none;
}

.prod-detail-description .rating:not(:checked)>label {
    float: right;
    cursor: pointer;
    font-size: 30px;
    color: #666;
}

.prod-detail-description .rating:not(:checked)>label:before {
    content: "Ã¢Ëœâ€¦";
}

.prod-detail-description .rating>input:checked+label:hover,
.prod-detail-description .rating>input:checked+label:hover~label,
.prod-detail-description .rating>input:checked~label:hover,
.prod-detail-description .rating>input:checked~label:hover~label,
.prod-detail-description .rating>label:hover~input:checked~label {
    color: #e58e09;
}

.prod-detail-description .rating:not(:checked)>label:hover,
.prod-detail-description .rating:not(:checked)>label:hover~label {
    color: #ff9e0b;
}

.prod-detail-description .rating>input:checked~label {
    color: #ffa723;
}

.price_rev .col-6 {
    width: fit-content;
}

/* Rating Stars */

.prod-detail-description {
    position: relative;
    padding: 0 4% 100px;
}

.prod-detail-description .nav-tabs .nav-link {
    padding: 15px;
    font-size: 25px;
    font-weight: 500;
    width: fit-content;
    margin-right: 10px;
    background: transparent;
    text-transform: uppercase;
    color: var(--headingColor2);
    border-radius: 0 !important;
    font-family: 'Hudson-Serif';
}

.prod-detail-description .nav-tabs .nav-link.active,
.prod-detail-description .nav-tabs .nav-item.show .nav-link {
    border: 0;
    border-bottom: 3px solid #00c4cc;
}

.prod-detail-description .nav-tabs .nav-link:hover,
.prod-detail-description .nav-tabs .nav-link:focus {
    border: 0;
    border-bottom: 3px solid #00c4cc;
}

.prod-detail-description .nav-tabs {
    margin-bottom: 15px;
    border: 0;
    border-bottom: 1px solid #dee2e6;
}

.prod-detail-description .prd-review-input label {
    font-size: 16px;
    color: var(--black);
    font-weight: 600;
    text-transform: capitalize;
}

.prod-detail-description .prd-review-input input {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    border: 1px solid var(--black);
    margin: 5px 0 20px;
    background-color: transparent;
}

.prod-detail-description .prd-review-input input::placeholder,
.prod-detail-description .prd-review-input textarea::placeholder {
    color: var(--black);
    font-weight: 600;
    font-size: 16px;
}

.prod-detail-description .prd-review-input textarea {
    width: 100%;
    height: 200px;
    padding: 13px;
    border: 1px solid var(--black);
    margin: 5px 0 0;
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    resize: none;
    background-color: transparent;
}

.prod-detail-description .rating-stars input {
    width: auto !important;
    height: auto;
    border: 0;
}

.prod-detail-description .rating-stars {
    display: inline-grid;
    justify-items: baseline;
}

.prod-detail-description .rating {
    display: block;
    /* align-items: center; */
    /* justify-content: flex-start; */
    /* gap: 5px; */
    margin: 20px 0;
    float: left;
}

.prod-detail-description .prd-review-input.give-review h4 {
    font-size: 30px;
    color: var(--black);
    text-transform: uppercase;
}

.prod-detail-description .prd-review-input.give-review button {
    padding: 15px 40px;
    border-radius: 0;
    border: 1px solid var(--black);
    font-size: 16px;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
}

.prod-detail-description .client-review-box {
    box-shadow: 0 0 5px 1px #989898;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.prod-detail-description ul.client-list-review {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}

.prod-detail-description ul.client-list-review li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.prod-detail-description ul.client-list-review img {
    width: 80px;
    height: 80px;
    border-radius: 100px;
    object-fit: cover;
    box-shadow: 0 0 5px 1px #989898;
}

.prod-detail-description ul.client-list-review h5 {
    font-size: 24px;
    color: var(--black);
    text-transform: capitalize;
    font-weight: 500;
}

.prod-detail-description ul.client-list-review h6 {
    font-size: 16px;
    color: #666;
    font-family: "Poppins";
}

.prod-detail-description ul.client-list-review li i {
    font-size: 20px;
    color: #c78b1b;
}

.prod-detail-description .client-info {
    margin-left: 15px;
}

.prod-detail-description .client-review-box p {
    font-size: 16px;
    color: var(--black);
}

.prod-detail-description .prd-det-review-form .row {
    align-items: center;
}

.prod-detail-description .prd-det-discription-content p {
    margin: 0;
    font-size: 16px;
    padding-bottom: 10px;
    color: var(--headingColor2);
}

.prod-detail-description .prd-det-additional-content p {
    text-align: justify;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
}

.prod-detail-description .prd-det-discription-content ul li p {
    text-transform: uppercase;
    font-family: 'Hudson-Serif';
}

ul.disc-list li i {
    color: #00c4cc;
}

.product-detail1 .skin-2 .num-in {
    height: 50px;
    width: 150px;
    float: left;
    display: flex;
    border-radius: 25px;
    cursor: pointer;
    align-items: center;
    position: relative;
}

.product-detail1 .skin-2 .num-in span:before,
.product-detail1 .skin-2 .num-in span:after {
    opacity: 1;
    content: '';
    position: absolute;
    background-color: var(--black);
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}

section.inner_gift_sec1 .about_text h3 {
    font-size: 44px;
}

.product-detail1 .skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
    opacity: 1;
}

ul.disc-list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.minus,
.plus {
    font-size: 20px;
    padding: 0.5rem;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 0.5rem;
    cursor: pointer;
    user-select: none;
    /* Prevent text selection */
    border: 0;
}

.minus.dis {
    color: #aaa;
    cursor: not-allowed;
}

.minus:hover:not(.dis),
.plus:hover {
    border-color: #102d26;
    color: #102d26;
}

#number {
    height: 25px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.skin-2 .num-in span {
    width: 40px;
    height: 40px;
    border: none;
}

/* product detail ends */
/*CART PAGE CSS*/

.shopping_cart {
    padding: 80px 0;
}

.shopping_cart_table h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--black);
}

.shopping_cart_table table th {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    padding-bottom: 10px;
}

.shopping_cart_table table thead {
    border-bottom: 1px solid #b8b8b8;
}

.shopping_cart_table table tbody td {
    padding: 25px 0;
    border-bottom: 1px solid #b8b8b8;
}

.shopping_cart_table table tbody .cart_box_product {
    display: flex;
    gap: 10px;
    align-items: center;
}

.shopping_cart_table table tbody .cart_box_product .cart_product_name h5 {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Hudson-Serif';
}

.shopping_cart_table table tbody .cart_box_product .cart_product_name p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: var(--headingColor);
    text-transform: capitalize;
}

.shopping_cart_table table tbody td select {
    height: 40px;
    padding-left: 10px;
    appearance: auto;
    border: 1px solid #b8b8b8;
}

.shopping_cart_table table tbody td .skin-2 .num-in {
    border: 1px solid #b5b5b5;
    height: 60px;
    border-radius: 10px !important;
}

.shopping_cart_table table tbody td .t_price {
    font-size: 36px;
    font-weight: 400;
    color: var(--headingColor2);
}

th.w-40 {
    width: 40%;
}

.shopping_cart_table table tbody td i.fas.fa-times {
    font-size: 20px;
    color: var(--black);
}

.minus,
.plus {
    font-size: 20px;
    padding: 0.5rem;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 0.5rem;
    cursor: pointer;
    user-select: none;
    /* Prevent text selection */
}

.minus.dis {
    color: #aaa;
    cursor: not-allowed;
}

.minus:hover:not(.dis),
.plus:hover {
    border-color: #102d26;
    color: #102d26;
}

#number {
    height: 25px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.cart_recipt {
    display: flex;
    margin-top: 30px;
    align-items: flex-start;
    justify-content: space-between;
}

.cart_recipt>a {
    font-size: 16px;
    border-radius: 0;
    font-weight: 500;
    color: #151414;
    padding: 10px 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #b8b8b8;
}

.cart_recipt>a i {
    margin-right: 10px;
}

.recipt {
    width: 30%;
}

.cart_product_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.cart_product_img {
    width: 100px;
    display: flex;
    height: 100px;
    flex-shrink: 0;
    border-radius: 2px;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    box-shadow: 0px 0px 19px -9px var(--headingColor2);
}

.recipt li {
    display: flex;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    align-items: center;
    text-transform: uppercase;
    justify-content: space-between;
}

.recipt li:last-child {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #b8b8b8;
}

.recipt li span {
    font-size: 16px;
    letter-spacing: 2px;
}

.payment_card {
    padding: 15px 25px 25px;
    border-radius: 15px;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: #e3e2e2;
}

.payment_card h3 {
    font-size: 35px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e3e2e2;
}

.credit_paypal a {
    padding: 10px 20px;
    border: 1px solid #f3f3f3;
    border-radius: 30px;
    gap: 10px;
    display: inline-flex;
    align-items: center;
    color: var(--black);
    font-weight: 500;
    background-color: #f3f3f3;
    font-size: 15px;
    justify-content: space-between;
}

.table-responsive table {
    max-width: 1000px;
    width: auto !important;
    min-width: 100%;
    overflow-x: auto;
}

.credit_paypal a img {
    height: 20px;
    object-fit: contain;
    margin-right: 10px;
    filter: brightness(0);
}

.credit_paypal {
    padding-bottom: 20px;
    border-bottom: 1px solid #e3e2e2;
}

.payment_card form label {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--black);
}

.payment_card form {
    margin-top: 15px;
}

.payment_card form input {
    padding: 0;
    width: 100%;
    height: 50px;
    border: none;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 15px;
    background: transparent;
    border-bottom: 1px solid #e3e2e2;
}

.payment_card form input::placeholder {
    color: var(--black);
    font-weight: 500;
}

.payment_card form select {
    width: 100%;
    padding: 0;
    height: 50px;
    border: none;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 15px;
    background: transparent;
    border-bottom: 1px solid #e3e2e2;
}


.expiry_cvv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.expiry_date {
    width: 70%;
}

.cvv_box {
    width: 26%;
}

.month_year {
    display: flex;
    justify-content: space-between;
}

.month_year select {
    width: 48% !important;
    appearance: auto;
}

.month_year select option {
    color: var(--black);
}

.payment_card form .btn1 {
    margin: 30px 85px;
    border: 1px solid;
}

.shopping_cart_table {
    padding-right: 40px;
}

.skin-2 .num-in {
    height: 40px;
    width: 150px;
    float: left;
    display: flex;
    border-radius: 25px;
    cursor: pointer;
    align-items: center;
}

.skin-2 .num-in span {
    width: 40px;
    height: 40px;
    border: none;
}

.skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
}

.num-in input.in-num {
    background-color: #ffffff;
    width: 38%;
}

.skin-2 .num-in input {
    float: left;
    width: 40px;
    height: 40px;
    border: none;
    text-align: center;
    background: transparent;
}


.cart-to-check-box {
    display: flex;
    margin-top: 25px;
    align-items: center;
    justify-content: center;
}



/*CART PAGE CSS END*/
/*Billing start */

.billing_form {
    padding: 40px;
    /*background-color: #0e194a;*/
}

.billing_form h3 {
    font-size: 40px;
    color: var(--black);
    margin: 0;
    margin-bottom: 30px;
}

.billing_form label {
    font-size: 14px;
    color: #7c7c7c;
    line-height: 20px;
    font-weight: 600;
}

.radiosss p {
    color: #7C7C7C;
    font-size: 14px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0;
    font-weight: 400;
    background: transparent;
}

.billing_form input {
    width: 100%;
    height: 50px;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    padding-left: 15px;
    background-color: #fff0;
    border-radius: 0px;
}

.billing_form input::placeholder {
    color: #7c7c7c;
    font-size: 13px;

}

.cart_sidebar .cart_lst li:not(:last-child) {
    margin-bottom: 15px;
}

.cart_sidebar .cart_lst li {
    font-size: 14px;
    color: #7c7c7c;
    font-weight: 500;
}

.cart_sidebar .cart_lst li span {
    float: right;
}

.cart_sidebar .cart_lst li:last-child {
    font-size: 17px;
    font-weight: 500;
    color: var(--black);
    font-family: 'big_noodle_titling';
}

.cart_sidebar .cart_lst {
    margin-top: 20px;
    margin-bottom: 40px;
}

.thankyou_txt {
    padding: 50px;
    border: 2px solid #b7b7b7;
}

.thankyou_txt h3 {
    font-size: 35px;
    color: var(--black);
    font-weight: 800;
    margin: 0;
}

.thankyou_txt h3 i {
    font-size: 40px;
    margin-right: 15px;
}

.order_det h5 {
    font-size: 20px;
    color: #7c7c7c;
    font-weight: 400;
}

.order_det p {
    font-weight: 700;
    font-size: 20px;
    color: var(--black);
    margin: 0;
}

.order_complete_detail h3 {
    font-size: 22px;
    color: var(--black);
    font-weight: 700;
}

.order_detail_table {
    padding: 40px;
    border: 1px solid #b7b7b7;
}

.order_detail_table h5 {
    margin-top: 0px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dbdbdb;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.order_detail_table ul {
    margin-top: 20px;
    margin-bottom: 30px;
}

.order_detail_table ul li:not(:last-child) {
    margin-bottom: 25px;
}

.order_detail_table ul li {
    font-size: 14px;
    color: #7c7c7c;
}

.order_detail_table ul li span {
    float: right;
}

.order_detail_table ul li:last-child {
    font-weight: 700;
    color: var(--black);
}

.order_detail_table h6 {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    padding: 25px 0;
    border-top: 1px solid #dbdbdb;
    margin: 0;
}

.order_detail_table h6 span {
    float: right;
}

.check_menu ul {
    text-align: center;
    margin-bottom: 40px;
}

.check_menu ul li {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #7c7c7c;
    margin: 0 14px;
}

.check_menu ul li i {
    font-size: 18px;
}

.cart_sidebar {
    padding: 40px 25px;
    border: 1px solid #b7b7b7;
    border-radius: 0px;
}

.cart_sidebar .theme-btn-1 {
    margin: 0px auto;
}

section.checkout_page {
    padding: 80px 0;
    margin-bottom: 7%;
}

.cart_sidebar h3 {
    font-size: 22px;
    color: var(--black);
    margin-top: 0px;
    line-height: 25px;
    margin-bottom: 20px;
}

.cart_sidebar .h-sub {
    font-weight: 500;
    color: var(--black);
    font-size: 20px;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 20px;
    line-height: 0;
    padding-bottom: 30px;
    padding-top: 20px;
    font-family: 'Hudson-Serif';
}

.cart_sidebar h5 span {
    float: right;
    color: #00c4cc;
    font-family: 'Hudson-Serif';
}

.cart_sidebar h4 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--black);
    font-family: 'Hudson-Serif';
}

.cart_sidebar ul li input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.cart_sidebar ul li label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #7c7c7c;
}

.cart_sidebar ul li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #c6c6c6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
}

.cart_sidebar ul li input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #00c4cc;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cart_sidebar ul li:not(:last-child) {
    margin-bottom: 15px;
}

.cart_sidebar form {
    margin-top: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #b7b7b7;
}

.cart_sidebar form h4 {
    font-size: 14px;
    font-weight: 400;
    color: #b7b7b7;
}

.cart_sidebar form select {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form select option {
    color: var(--black);
}

.cart_sidebar form input {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form input::placeholder {
    color: #b7b7b7;
}

.cart_sidebar form button {
    color: var(--black);
    font-size: 15px;
    border-radius: 0px;
    font-family: 'Poppins', sans-serif;
    padding: 10px 40px;
    background-color: #ebebeb;
    border: 2px solid #ebebeb;
}

.cart_sidebar form button:hover {
    background-color: transparent;
    transition: 0.3s ease-in-out;
}

.checkout_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0% auto;
    color: var(--white);
    font-size: 16px;
    text-transform: uppercase;
    height: 50px;
    width: 150px;
    background: var(--black);

}

.checkout_btn:hover {
    color: white;
}

.Quick_info ul li a {
    text-transform: lowercase;
    font-size: 14px;
}

ul.shipping-ul {
    border-bottom: 1px solid #dbdbdb;
    margin: 0;
    padding-bottom: 30px;
}

h6.payment-h {
    font-size: 22px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 30px;
    font-family: 'Hudson-Serif';
}

label {
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    color: #7c7c7c;
    font-weight: 500;
    margin-bottom: 12px;
}

.cart_sidebar .radiosss-payments li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #b7b7b7;
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 50px;
}

.cart_sidebar .radiosss-payments li input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    border-radius: 20px;
    left: 6px;
    border: 0;
    width: 10px;
    height: 10px;
    background-color: #00c4cc;
}

.radiosss-payments .card.card-body {
    padding: 0;
    border: 1px solid #b5b5b5;
    margin-left: 0;
    padding: 20px;
    background-color: transparent;
}

.billing_form {
    padding: 20px;
}

.cart_sidebar a {
    margin: 0 auto;
}

.cart_sidebar a i {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: #f95180;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    margin-left: 15px;
}

/*Billing End */

/* +++++++++++++++++++++++++++++++++++++++ end  +++++++++++++++++++++++++++++++++++++++ */

/* Check box */
/* From Uiverse.io by cbolson */
.my-form {
    --_clr-primary: #666;
    --_clr-hover: #000;
    --_clr-checked: #000;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.my-form>div {
    --_clr-current: var(--_clr-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.my-form>div+div {
}

.my-form label {
    cursor: pointer;
    color: var(--_clr-current);
    transition: color 150ms ease-in-out;
    margin: 0;
    font-size: 13px;
}

/* styled checkbox */
.my-form input[type="checkbox"] {
    appearance: none;
    outline: none;
    width: 1em;
    height: 1em;
    aspect-ratio: 1;
    padding: 0.25rem;
    background: transparent;
    border: 1px solid var(--_clr-current);
    border-radius: 2px;
    display: grid;
    place-content: center;
    cursor: pointer;
}

.my-form input[type="checkbox"]::after {
    content: "\2714";
    opacity: 0;
    transition: opacity 150ms ease-in-out;
    color: var(--_clr-checked);
    font-size: 10px;
    font-family: inherit;
}

.my-form label:hover,
.my-form input[type="checkbox"]:focus-visible,
.my-form input[type="checkbox"]:focus-visible+label,
.my-form input[type="checkbox"]:hover,
.my-form input[type="checkbox"]:hover+label {
    --_clr-current: var(--_clr-hover);
}

.my-form input[type="checkbox"]:focus-visible::after,
.my-form input[type="checkbox"]:hover::after {
    opacity: 0.5;
    color: var(--_clr-hover);
}

.my-form input[type="checkbox"]:checked+label:not(:hover),
.my-form input[type="checkbox"]:checked:not(:hover) {
    --_clr-current: #000;
}

.my-form input[type="checkbox"]:checked::after {
    opacity: 1;
}

/* end */