@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/
body {
    color: #393939;
    overflow-x: hidden;
    word-break: break-word;
    font: 15px/25px 'Montserrat', sans-serif;
}

:root {
    --black: #000;
    --white: #fff;
    --textColor: #6d6d6d;
    --themeColor: #05beb8;
    --themeColor2: #00857f;
    --headingColor: #222222;
    --themeGradient: linear-gradient(90deg, var(--themeColor) 0%, var(--themeColor2) 100%);
}

a {
    white-space: initial;
    text-decoration: none;
    display: inline-block;
    color: var(--themeColor);
}

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;
}

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;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%
}

/***** Font Files *****/
@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}

@font-face {
    font-family: 'Brunson';
    src: url(../fonts/Brunson.ttf);
}

@font-face {
    font-family: 'BlenderPro';
    src: url(../fonts/BlenderPro-Medium.ttf);
}

/***** Custom Classes *****/
.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.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-size: 96px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--white);
    font-family: 'Brunson';
}

h2 {
    font-size: 80px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Brunson';
    color: var(--headingColor);
}

h3 {
    font-size: 55px;
    margin: 0 0 0px;
    font-weight: 300;
    font-family: 'Brunson';
    color: var(--headingColor);
}

h4 {
    font-size: 24px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Brunson';
}

h5 {
    font-size: 16px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Brunson';
}

h6 {
    margin: 0 0 0px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Montserrat';
}

p {
    margin: 0px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    color: var(--textColor);
    font-family: 'Montserrat';
}

.add-padding {
    width: 100%;
    margin: 0px auto;
    max-width: 1500px;
}

.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading p {
    width: 80%;
    margin: auto;
    max-width: 600px;
}

.theme-btn-1 {
    gap: 15px;
    display: flex;
    width: fit-content;
    align-items: center;
    border-radius: 10px;
    padding: 0px 0px 0px 20px;
    background-color: var(--white);
    border: 1px solid var(--themeColor2);
    box-shadow: -3.119px 14.672px 38px 0px rgba(21, 21, 23, 0.21);
}

.theme-btn-1 span.theme-btn-1-icon {
    width: 60px;
    height: 60px;
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    background: var(--themeGradient);
    margin-bottom: 0;
}

.theme-btn-1 span.theme-btn-1-text {
    font-weight: 700;
    color: transparent;
    background-clip: text;
    font-family: 'BlenderPro';
    text-transform: uppercase;
    -webkit-background-clip: text;
    background-image: var(--themeGradient);
    background-size: contain;
}

/*header css start */
.menuSection {
    padding: 10px 0;
}

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #393939;
    padding: 0;
    font-size: 20px;
}

.header-btn {
    display: flex;
    justify-content: flex-end;
    gap: 10%;
}

.header-btn a {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.header-btn a:last-child:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 140%;
    background: #e8e8e8;
    left: -30%;
}

.header-btn a span {
    display: block;
    color: #3f3f3f;
    font-weight: 400;
    margin-bottom: 3px;
}

.header-btn a h6 {
    font-weight: 700;
    color: #04b1ab;
}

/*.menuSec ul li a:after {content: ''; position: absolute; top: 35%; right: 0; width: 1px; height: 13px; background-color: #393939; display: none; } */
/*.menuSec ul li:last-child a {padding-right: 0px; }*/
/* .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: #28b16d;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
    display: none;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

/*header css start */
/*banner css start */
.banner_text ul li a>img {
    width: 50px;
}

.banner_text ul {
    display: flex;
    align-items: center;
    gap: 8%;
}

.banner_text ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.banner_text ul li a span {
    display: block;
    color: #96b8b6;
    font-weight: 400;
    margin-bottom: 3px;
    font-size: 12px;
    text-transform: uppercase;
}

.main_slider {
    min-height: 750px;
    position: relative;
    padding: 100px 0px;
    background-image: url(../images/banner.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner_text p {
    color: #9fc5c3;
    margin-bottom: 30px;
    margin-top: 20px;
}

.banner_text ul li a h6 {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
}

.main_slider::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    width: 100%;
    opacity: 0.5;
    height: 100%;
    position: absolute;
    /* background-color: #000000; */
}

.main_slider .row {
    z-index: 1;
    position: relative;
}

/*banner css end*/
/* about-sec */
.about-sec {
    padding: 100px 0px;
}

.about-img {
    width: 100%;
    height: 450px;
    min-height: 100%;
    overflow: hidden;
    border-radius: 10px 0px 0px 10px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text::before {
    top: -35px;
    content: '';
    width: 110%;
    z-index: -1;
    right: -25px;
    height: 350px;
    position: absolute;
    border-radius: 0px 10px 10px 0px;
    background: var(--themeGradient);
}

.about-text {
    padding: 50px;
    margin-top: 35px;
    position: relative;
    background-color: var(--white);
    border-radius: 0px 10px 10px 0px;
    box-shadow: 0px 10px 213px 0px rgba(1, 1, 1, 0.09);
}

.about-text h2 {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e7e7e7;
}

.about-text h2::before {
    bottom: 0;
    left: 0;
}

.about-text p {
    font-weight: 600;
    margin-bottom: 25px;
}

.about-text ul {
    gap: 20px;
    display: flex;
    align-items: center;
    justify-items: flex-start;
}

.tel-no {
    gap: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.tel-no h6 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    -webkit-background-clip: text;
    background-image: var(--themeGradient);
    background-size: contain;
}

.tel-no h6 span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 3px;
    color: var(--black);
}

/* about-sec */
/* categories-sec */
.categories-sec {
    position: relative;
    padding: 100px 0px;
    background-image: url(../images/conatct-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.categories-sec::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    width: 100%;
    opacity: 0.9;
    height: 100%;
    position: absolute;
    background: var(--themeGradient);
}

.categories-sec .section-heading h2 {
    color: var(--white);
}

.categories-sec .section-heading p {
    color: var(--white);
}

.categories-sec .row {
    z-index: 1;
    position: relative;
}

.category-box {
    display: block;
}

.category-img {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-text::before {
    left: 25px;
    z-index: 1;
    width: 8px;
    bottom: 50%;
    content: '';
    height: 100%;
    position: absolute;
    border-radius: 1px;
    background: linear-gradient(0deg, var(--white) 20%, rgba(255, 255, 255, 0) 100%);
}

.category-text {
    position: relative;
    padding: 35px 60px;
}

.category-text h4 {
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--white);
}

.category-text p {
    color: var(--white);
    margin-bottom: 10px;
}

/* categories-sec */
/* product-sec */
.product-sec {
    padding: 100px 0px;
}

.product-box {
    padding: 10px;
    border-width: 1px;
    border-style: solid;
    border-radius: 10px;
    border-color: #ececec;
    background-color: var(--white);
    box-shadow: 4.635px 7.715px 51px 0px rgba(0, 0, 0, 0.05);
}

.product-box-img {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 10px;
}

.product-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-box-text {
    text-align: center;
    padding: 15px 10px 10px;
    border-top: 3px dashed #d0d0d0;
}

.product-box-text p {
    overflow: hidden;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    min-height: 80px;
    -webkit-box-orient: vertical;
}

.product-box-text h5 {
    font-size: 18px;
    margin-bottom: 3px;
    color: var(--headingColor);
}

.product-box-text h6 {
    font-size: 14px;
    color: transparent;
    margin-bottom: 10px;
    background-clip: text;
    font-family: 'Brunson';
    text-transform: uppercase;
    -webkit-background-clip: text;
    background-image: var(--themeGradient);
    background-size: contain;
}

.product-box-text a {
    width: 100%;
    /* height: 55px;
    display: flex;
    font-weight: 500;
    text-align: center;
    align-items: center;
    border-radius: 10px;
    color: var(--white);
    justify-content: center;
    text-transform: uppercase;
    font-family: 'BlenderPro';*/
    background: var(--themeGradient);
}

.product-box-text a .theme-btn-1-text {
    width: 100%;
    color: var(--white);
}

.product-box-text a .theme-btn-1-icon {
    flex-shrink: 0;
    background: var(--white);
}

/* product-sec */
/* built-sec */
.built-sec {
    position: relative;
    padding: 100px 0px;
    background-image: url(../images/built-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.built-sec::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    width: 100%;
    opacity: 0.9;
    height: 100%;
    position: absolute;
    background: var(--themeGradient);
}

.built-sec .row {
    z-index: 1;
    position: relative;
}

.built-text {
    gap: 10px;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.built-text h2 {
    color: var(--white);
}

.built-text p {
    opacity: 0.8;
    color: var(--white);
    margin-bottom: 15px;
}

.built-text ul li a>img {
    width: 50px;
}

.built-text ul {
    display: flex;
    align-items: center;
    gap: 8%;
    width: 100%;
    justify-content: center;
}

.built-text ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.built-text ul li a span {
    display: block;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 3px;
    font-size: 16px;
    /* text-transform: uppercase; */
    text-align: left;
}

/* built-sec */

/* Cart Starts  */
.cart-product {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 30px 0;
    position: relative;
    border-bottom: 1px solid #e3e2e2;
}

.cart-product-img {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e6e8ea;
    border-radius: 10px;
}

.cart-product-img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

section.cart-sec {
    padding: 100px 0;
}

.cart-product-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin: 0 24px;
    text-align: center;
}

.cart-product-name h6 {
    text-transform: uppercase;
    color: black;
    font-size: 18px;
}

.cart-product-name p {
    font-weight: 600;
    color: black;
    font-size: 18px;
}

.number {
    height: 50px;
    width: 130px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    max-width: fit-content;
    justify-content: center;
    border: 1px solid #ececec;
}

.number span {
    width: 25px;
    height: 25px;
    display: flex;
    font-size: 12px;
    cursor: pointer;
    align-items: center;
    border-radius: 20px;
    color: var(--textColor);
    justify-content: center;
    background-color: #ebebeb;
}

.number input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 47%;
    border: unset;
    /* text-align: center; */
    background: transparent;
    height: unset;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 13px;
}

.add-to-cart input {
    width: 100%;
    height: 59px;
    font-size: 23px;
    font-weight: 500;
    margin-top: 24px;
    border-radius: 6px;
    text-align: center;
    font-family: 'Montserrat';
    color: var(--textColor);
    border: none;
    background-color: #f4f4f4;
}

.number span {
    cursor: pointer;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.cart-product p {
    cursor: pointer;
}

.cart-right {
    border-radius: 10px;
    padding: 50px 30px 0px;
    border: 1px solid var(--themeColor);
}

.cart-right h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'Montserrat';
}

.Subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d3d2d2;
    padding-bottom: 12px;
}

.Subtotal h6 {
    font-size: 18px;
}

.Subtotal p {
    font-size: 18px;
    color: black;
}

.shipping-row,
.subtotal-row {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    justify-content: space-between;
}

.shipping-row p,
.subtotal-row p {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

.location-fields input {
    width: 100%;
    height: 50px;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 10px 25px;
    border-radius: 10px;
    border: 1px solid #c1c1c1;
}

.location-fields select {
    width: 100%;
    height: 50px;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 10px 25px;
    border-radius: 10px;
    border: 1px solid #c1c1c1;
}

.Subtotal h6 {
    font-size: 18px;
    color: black;
}

.sub-total p img {
    margin-right: 12px;
}

.Subtotal {
    margin-bottom: 10px;
}

.Subtotal p {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.shipping {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 24px 0;
    border-bottom: 1px solid #d3d2d2;
    padding-bottom: 19px;
}

.shipping h6 {
    font-size: 18px;
}

.sub-total>h6 {
    font-size: 16px;
    margin: 20px 0px 10px;
    padding-bottom: 10px;
    color: var(--textColor);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 37px;
}

.cart-total p {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

.update-btn {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 10px;
    background-color: var(--white);
    border: 1px solid var(--textColor);
}

.checkout-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkout-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.continue-shopping>a {
    color: black;
    margin-top: 13px;
    font-weight: 600;
}

.continue-shopping {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Cart Table Styles */
.cart-table {
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
}

.cart-table thead th {
    padding: 15px;
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    color: var(--black);
}

.cart-table tbody td {
    padding: 20px 15px;
    vertical-align: middle;
    border-bottom: 1px solid #dee2e6;
}

.cart-table .cart-product-img {
    width: 180px;
    height: 130px;
    position: relative;
    margin-right: 15px;
}

.cart-table .cart-product-img img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.remove-btn-tr {
    top: -8px;
    width: 23px;
    border: none;
    right: -8px;
    height: 23px;
    display: flex;
    font-size: 10px;
    position: absolute;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.19);
}

.cart-table .number {
    margin: 0 auto;
}

.cart-table .price {
    font-weight: 600;
    color: var(--black);
}

.table-cart-btn {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.table-cart-btn button {
    font-weight: 500;
    padding: 13px 35px;
    color: var(--black);
    border-radius: 50px;
    background-color: var(--white);
    border: 1px solid var(--textColor);
}

.table-cart-btn button.update-cart-btn {
    color: var(--textColor);
    border: #ebebeb;
    background-color: #ebebeb;
}

.radio-input {
    gap: 16px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.radio-b {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-b__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-b__label {
    display: flex;
    align-items: center;
    gap: 12px;
    /* Espace entre le carré et le texte */
    font-size: 15px;
    color: #000000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.radio-b__custom {
    position: relative;
    width: 20px;
    height: 20px;
    overflow: hidden;
    border-radius: 0%;
    transition: all 0.3s ease;
    border: 1px solid #bbbbbb;
}

.radio-b__custom-fill {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 0;
    right: 0;
    bottom: 0;
    height: 0;
    margin: auto;
    border-radius: 0px;
    background: var(--themeColor2);
    transition: all 0.3s ease;
}

.radio-b__input:checked+.radio-b__label .radio-b__custom-fill {
    width: 26px;
    height: 26px;
    transition: all 0.3s ease;
}

.radio-b__input:checked+.radio-b__label .radio-b__custom {
    border: none;
    /* Supprime les bordures noires */
    transition: all 0.3s ease;
    /* Assure une transition fluide */
}

.radio-b__input:hover+.radio-b__label .radio-b__custom {
    transform: scale(0.85);
    color: linear-gradient(0deg,
            rgba(0, 230, 118, 1) 0%,
            rgba(255, 215, 0, 1) 100%);
}

/* Optionnel : style pour le texte */
.radio-b__text {
    font-size: 14px;
    color: #7c7c7c;
    font-weight: 500;
}

/* Cart Ends */

/* Checkout Starts  */
.checout-input input {
    width: 100%;
    height: 60px;
    padding: 20px;
    margin: 5px 0;
    border-radius: 10px;
    border: 1px solid #cfcfcf;
}

.checout-input {
    margin: 10px 0;
    position: relative;
}

.checout-input i {
    top: 52px;
    font-size: 16px;
    right: 12px;
    position: absolute;
    color: var(--textColor);
}

.checout-input select.form-select {
    width: 100%;
    height: 60px;
    padding: 20px;
    margin: 5px 0;
    appearance: unset;
    border-radius: 10px;
    border: 1px solid #cfcfcf;
}

.checout-input textarea {
    width: 100%;
    resize: none;
    height: 170px;
    max-width: 600px;
    border-radius: 10px;
    border: 1px solid #cfcfcf;
}

.checout-input label {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--textColor);
}

section.checkout-page {
    padding: 100px 3%;
}

.checout-input textarea {
    width: 100%;
    resize: none;
    height: 170px;
}

section.checkout-page {
    padding: 100px 0;
}

.checkout-right {
    padding: 30px 30px;
    border-radius: 10px;
    border: 1px solid #d5d5d5;
}

.checkout-right h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    color: var(--black);
    font-family: 'Montserrat';
}

.sub-total {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    padding: 2px;
    margin-bottom: 21px;
}

.price {
    padding: 0;
    display: flex;
    margin-bottom: 10px;
    justify-content: space-between;
}

.price h6 {
    font-size: 14px;
    font-weight: 600;
    color: #7c7c7c;
}

.price p {
    font-size: 16px;
    font-weight: 600;
    color: black;
}

.price-sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-sub {
    font-weight: 600;
    padding: 10px 0 15px 0;
    border-bottom: 1px solid #d1cdcd;
}

.price-sub h6 {
    font-size: 18px;
}

.price-sub p {
    font-size: 18px;
    color: black;
    font-weight: 600;
}

.Shipping {
    padding: 11px 0 5px;
}

.Shipping p {
    gap: 10px;
    display: flex;
    color: #7c7c7c;
    font-weight: 600;
    align-items: center;
    justify-content: flex-start;
}

.Shipping p i {
    font-size: 10px;
    color: #cccccc;
}

.Shipping {
    display: flex;
    justify-content: space-between;
}

.check-btm img {
    margin-right: 10px;
}

.place-order {
    margin-top: 27px;
}

.place-order a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.place-order a span:nth-child(1) {
    text-align: center;
    padding-left: 40%;
}

.place-order a span {
    text-align: center;
}

.check-btm-box {
    gap: 5px;
    display: flex;
    margin-top: 25px;
    padding: 30px 30px;
    border-radius: 10px;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #d5d5d5;
    justify-content: space-between;
}

.instruction p {
    gap: 10px;
    display: flex;
    font-weight: 600;
    color: #7c7c7c;
    align-items: center;
    justify-content: flex-start;
}

.instruction p a {
    color: var(--black);
}

.instruction p i {
    font-size: 10px;
    color: #cccccc;
}

.place-order{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Checkout Ends */

section.main_slider.inner-banner {
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}



/*CONTACT US*/

.contact-sec {
    background-image: url(../images/conatct-bg.png);
    background-size: 100% 100%;
    background-position: center;
    padding-top: 80px;
}

.contact-text h2 {
    color: #fff;
}

.contact-text p {
    color: #fff;
    margin-bottom: 20px;
    margin-top: 15px;
}

.contact-text ul {
    width: 80%;
}

.contact-text ul li a {
    width: 100%;
    display: flex;
    background: #fff;
    height: 100px;
    padding: 20px;
    align-items: center;
    gap: 20px;
    border-left: 7px solid #05beb8;
}

.contact-text ul li a img {
    width: 60px;
    height: 35px;
    object-fit: contain;
}

.contact-text ul li:not(:last-child) {
    margin-bottom: 20px;
}

.contact-text ul li a h6 span {
    display: block;
    color: #222222;
    font-family: 'Brunson';
    font-size: 20px;
    margin-bottom: 4px;
}

.contact-text ul li a h6 {
    color: #747776;
}

.contact-text {
    padding-bottom: 80px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    margin: 10px 0px 0px 10px;
    box-shadow: 0 0 20px #00000021;
    border-radius: 10px;
}

.contact-form h3 {
    margin-bottom: 20px;
}

.contact-form form .form-group {
    position: relative;
}

.contact-form form .form-group i {
    position: absolute;
    color: #222222;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #cacaca;
}

.contact-form form .form-group input {
    height: 50px;
    margin-bottom: 12px;
    padding-left: 15%;
    background: #f5f5f5;
    border: 1px solid #ebebeb;
    color: #303030;
    font-size: 15px;
}

.contact-form form .form-group input::placeholder {
    color: #303030;
    text-transform: uppercase;
    font-size: 15px;
}

.contact-form form textarea {
    height: 120px;
    background: #f5f5f5;
    border: 1px solid #ebebeb;
    padding: 15px 30px;
    color: #303030;
    font-size: 15px;
    margin-bottom: 20px;
}

.contact-form form textarea::placeholder {
    color: #303030;
    font-size: 15px;
}

/*TESTIMONIALS*/
section.testimonials-sec {
    padding: 80px 0;
}

.testimonial-box {
    padding: 30px;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    position: relative;
}

.testimonial-box .quote {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px 10px 10px 0;
    background: red;
    height: 80px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#05beb8+0,00857f+100 */
    background: linear-gradient(to right, rgba(5, 190, 184, 1) 0%, rgba(0, 133, 127, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.testimonial-box .quote img {
    width: 30px;
}

.testimonial-box .testimonial-box-img {
    text-align: center;
}

.testimonial-box .testimonial-box-img img {
    width: 120px;
    height: 120px;
    border-radius: 120px;
    border: 4px solid #018680;
    margin: 30px auto;
    object-fit: cover;
}

.testimonial-box .testimonial-box-img h4 span {
    display: block;
    font-size: 17px;
    /* font-family: 'Montserrat'; */
    text-transform: uppercase;
    color: #666666;
    font-weight: 100;
    font-family: 'BlenderPro';
}

.testimonial-box .testimonial-box-img h4 {
    letter-spacing: 1px;
    font-size: 27px;
}

.testimonial-box .testimonial-box-text {
    text-align: center;
}

.testimonial-box .testimonial-box-text p {
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    color: #797979;
    font-size: 14px;
}

.testimonialSlider .slick-slide {
    opacity: 1;
}

/*FOOTER*/
.footerSec {
    background: #111111;
    padding-top: 80px;
    margin-top: 90px;
}

.footer_about img {
    background: #fff;
    padding: 10px;
}

.footerSec h5 {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    font-family: 'Montserrat';
    margin: 0 0 20px 0;
}

.footer-contact {}

.footer-contact ul {}

.footer-contact ul li {
    padding: 0 0 20px 0;
}

.footer-contact ul li a {
    opacity: 0.5;
    color: var(--white);
}

.footer-contact ul li a:hover {
    opacity: 1;
}

.footer-contact ul li a i {
    color: var(--themeColor);
    margin: 0 10px 0 0;
}

.foot-links ul li {
    padding: 0 0 20px 0;
}

.foot-links ul li a {
    opacity: 0.5;
    color: var(--white);
}

.foot-links ul li a:hover {
    opacity: 1;
}

.news-letter ul li {
    padding: 0 0 20px 0;
}

.news-letter ul li a {
    color: #fff;
}

.news-letter ul li a i {
    margin: 0 10px 0 0;
    padding: 5px;
    height: 25px;
    width: 25px;
    background: #aeaeae;
    color: #111111;
    text-align: center;
    vertical-align: middle;
    border-radius: 50px;
}

.footer_about p {
    padding: 20px 0 0 0;
    color: #969696;
}

.copy-txt ul {
    display: flex;
    gap: 20px;
    color: #969696;
}

.copy-txt {
    padding: 20px 0;
    margin: 10px 0 0 0;
}

.footer-btm {
    margin-top: 60px;
    border-top: 1px solid #96969694;
}

.copy-txt ul li a {
    color: #969696;
}

.copy-txt p {
    text-align: end;
}

.brdr_left {
    padding: 0 40px;
    position: relative;
}

.brdr_left:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #96969694;
}

/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

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

@media only screen and (min-width: 300px) and (max-width: 519px) {}

/*Media Query End*/