@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    color: #393939;
    overflow-x: hidden;
    word-break: break-word;
    background-color: var(--bodyBg);
    font: 15px/25px 'Sofia-Pro-Light', sans-serif;
}

:root {
    --black: #000;
    --white: #fff;
    --bodyBg: #f6f6f6;
    --textColor: #161616;
    --themeColor: #d29d7b;
    --themeColor2: #9b9786;
    --themeColor3: #932a14;
    --headingColor: #111312;
    --headingColor2: #161616;
}

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

a:hover,
a:focus {
    text-decoration: none;
    color: var(--headingColor);
}

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: 'Dream-Avenue';
    src: url(../fonts/Dream-Avenue-Regular.otf);
}

@font-face {
    font-family: 'Sofia-Pro-Regular';
    src: url(../fonts/Sofia-Pro-Regular.otf);
}

@font-face {
    font-family: 'Sofia-Pro-Light';
    src: url(../fonts/Sofia-Pro-Light.otf);
}


/***** 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 {
    margin: 0 0 0px;
    font-size: 95px;
    font-weight: 500;
    font-family: 'Dream-Avenue';
    color: var(--headingColor2);
}

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

h3 {
    font-size: 35px;
    margin: 0 0 0px;
    font-weight: 600;
    color: var(--headingColor);
    font-family: 'Dream-Avenue';
}

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

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

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

p {
    margin: 0px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    color: var(--textColor);
    font-family: 'Sofia-Pro-Light';
}

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

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

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

.theme-btn-1 {
    display: flex;
    font-size: 18px;
    padding: 15px 25px;
    width: fit-content;
    align-items: center;
    border-radius: 50px;
    color: var(--white);
    justify-content: center;
    border: 1px solid var(--themeColor2);
    background-color: var(--themeColor2);
}

.theme-btn-1:hover {
    color: var(--white);
    border-color: var(--themeColor);
    background-color: var(--themeColor);
    transition: ease-in-out 0.5s;
}

.theme-btn-2 {
    display: flex;
    font-size: 18px;
    width: fit-content;
    padding: 16px 35px;
    color: var(--white);
    align-items: center;
    border-radius: 50px;
    justify-content: center;
    background-color: var(--themeColor);
}

/* loader */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    /* ya dark color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* From Uiverse.io by scissorsdog */
.loader__balls {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.loader__balls__group {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    height: 100px;
    width: 40px;
}

.ball {
    height: 30px;
    width: 30px;
    border-radius: 15px;
    position: absolute;
    transform-origin: bottom;
}

/* ANIMATION BALL 1*/
.loader__balls__group :nth-child(1) {
    background-color: #d29d7b;
    animation-name: jumpinBallAnimation1;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
}

@keyframes jumpinBallAnimation1 {
    0% {
        transform: translateY(0) scale(1, 1);
    }

    10% {
        transform: translateY(0) scale(1.3, 0.8);
    }

    11% {
        transform: translateY(0) scale(0.7, 1.2);
        animation-timing-function: cubic-bezier(0, 0, 0.5, 1);
    }

    39% {
        transform: translateY(-75px) scale(1);
        animation-timing-function: cubic-bezier(0, 0, 0.5, 1);
    }

    40% {
        transform: translateY(-75px) scale(1);
    }

    41% {
        transform: translateY(-75px) scale(1);
        animation-timing-function: cubic-bezier(1, 0, 1, 0);
    }

    69% {
        transform: translateY(0px) scale(1, 1);
        animation-timing-function: cubic-bezier(1, 0, 1, 0);
    }

    70% {
        transform: translateY(0) scale(1.5, 0.4);
    }

    80% {
        transform: translateY(0) scale(0.8, 1.2);
    }

    90% {
        transform: translateY(0) scale(1.1, 0.8);
    }

    100% {
        transform: translateY(0) scale(1, 1);
    }
}

/* ANIMATION BALL 2*/
.loader__balls__group :nth-child(2) {
    background-color: #d29d7b;
    animation-name: jumpinBallAnimation2;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
}

@keyframes jumpinBallAnimation2 {
    0% {
        transform: translateY(0) scale(1, 1);
    }

    10% {
        transform: translateY(0) scale(1.3, 0.8);
    }

    11% {
        transform: translateY(0) scale(0.7, 1.2);
        animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
    }

    39% {
        transform: translateY(-75px) scale(1);
        animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
    }

    40% {
        transform: translateY(-75px) scale(1);
    }

    41% {
        transform: translateY(-75px) scale(1);
        animation-timing-function: cubic-bezier(1, 0, 1, 0.5);
    }

    69% {
        transform: translateY(0px) scale(1, 1);
        animation-timing-function: cubic-bezier(1, 0, 1, 0.5);
    }

    70% {
        transform: translateY(0) scale(1.5, 0.4);
    }

    80% {
        transform: translateY(0) scale(0.8, 1.2);
    }

    90% {
        transform: translateY(0) scale(1.1, 0.8);
    }

    100% {
        transform: translateY(0) scale(1, 1);
    }
}

/* ANIMATION BALL 3*/
.loader__balls__group :nth-child(3) {
    background-color: #d29d7b;
    animation-name: jumpinBallAnimation3;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
}

@keyframes jumpinBallAnimation3 {
    0% {
        transform: translateY(0) scale(1, 1);
    }

    10% {
        transform: translateY(0) scale(1.3, 0.8);
    }

    11% {
        transform: translateY(0) scale(0.7, 1.2);
        animation-timing-function: cubic-bezier(0, 1, 0.5, 1);
    }

    39% {
        transform: translateY(-75px) scale(1);
        animation-timing-function: cubic-bezier(0, 1, 0.5, 1);
    }

    40% {
        transform: translateY(-75px) scale(1);
    }

    41% {
        transform: translateY(-75px) scale(1);
        animation-timing-function: cubic-bezier(1, 0, 1, 1);
    }

    69% {
        transform: translateY(0px) scale(1, 1);
        animation-timing-function: cubic-bezier(1, 0, 1, 1);
    }

    70% {
        transform: translateY(0) scale(1.5, 0.4);
    }

    80% {
        transform: translateY(0) scale(0.8, 1.2);
    }

    90% {
        transform: translateY(0) scale(1.1, 0.8);
    }

    100% {
        transform: translateY(0) scale(1, 1);
    }
}

.loader__balls__group .item1 {
    animation-delay: 0ms;
}

.loader__balls__group .item2 {
    animation-delay: 100ms;
}

.loader__balls__group .item3 {
    animation-delay: 200ms;
}

.loader.hide {
    opacity: 0;
    display: none;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

/* loader */

/*header css start */

.menuSec {
    padding: 0px 0;
    position: relative;
}

.header-logo a,
.header-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-logo {
    top: 30px;
    height: 130px;
    width: fit-content;
    position: relative;
}

.menuSec ul {
    margin: 0;
    gap: 30px;
    padding: 0;
    list-style: none;
    text-align: right;
    position: relative;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
}

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

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    font-size: 18px;
    position: relative;
    padding: 10px 5px;
    text-decoration: none;
    display: inline-block;
    color: var(--headingColor2);
}

ul#menu ul li a:hover,
ul#menu ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: var(--themeColor);
}

ul#menu li a::before {
    left: 0;
    width: 0px;
    height: 2px;
    content: '';
    right: 100%;
    bottom: 10px;
    position: absolute;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

ul#menu li a.active::before,
ul#menu li a:hover::before {
    left: 0;
    right: 0;
    width: 100%;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

ul#menu li a:not(:hover)::before {
    right: 0;
    left: auto;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #0000007a;
    left: 0px;
    width: 230px;
    backdrop-filter: blur(3px);
    text-align: left;
    top: 45px;
}

.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 {
    color: var(--themeColor) !important;
    background-color: var(--white);
}

.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 ul li a.theme-btn-1 {
    padding: 13px 40px;
}

.menuSec ul li a.theme-btn-1::before {
    display: none;
}

.menuSec ul li a.theme-btn-1.active,
.menuSec ul li a.theme-btn-1:hover {
    color: var(--white);
    background: var(--themeColor);
}

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

header {
    padding: 15px 0px;
}

header .row {
    align-items: center;
}

.inp {
    gap: 15px;
    display: flex;
    min-width: 40%;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
}

.menu-all {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.input-search {
    width: 100%;
    flex-shrink: 0;
    max-width: 250px;
    overflow: hidden;
    position: relative;
    border-radius: 100px;
    border: 1px solid #dfd0bd;
    background-color: var(--bodyBg);
}

.input-search input {
    width: 100%;
    height: 50px;
    border: none;
    padding: 10px 20px;
    color: var(--headingColor);
    background-color: var(--bodyBg);
}

.input-search button {
    top: 0;
    bottom: 0;
    right: 4px;
    width: 45px;
    margin: auto;
    height: 45px;
    border-radius: 50%;
    position: absolute;
    color: var(--themeColor2);
    border: 1px solid var(--bodyBg);
    background-color: var(--bodyBg);
}

.input-search button:hover {
    color: var(--white);
    background-color: var(--themeColor);
}

.input-search input::placeholder {
    color: var(--headingColor);
}

.inp ul {
    gap: 15px;
    display: flex;
    align-items: center;
}

.inp ul li a {
    width: 50px;
    height: 50px;
    display: flex;
    font-size: 20px;
    border-radius: 50%;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: ease-in-out;
    transition-duration: 0.5s;
    color: var(--headingColor);
    background-color: var(--bodyBg);
    border: 1px solid var(--themeColor3);
}

.inp ul li a:hover {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    border-color: var(--themeColor2);
    background-color: var(--themeColor2);
}


/*header css start */

/*banner css start */


.main_slider {
    padding: 0px 0px 100px;
}

.banner_img {
    gap: 25px;
    display: flex;
    height: 625px;
    align-items: center;
    justify-content: flex-end;
}

.banner_img .banner-img-2 {
    width: 68%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px 250px 0px 250px;

}

.banner_img .banner-img-1 {
    width: 32%;
    height: 80%;
    object-fit: cover;
    border-radius: 250px;
}

.banner_text h1 {
    line-height: 1;
    margin-bottom: 25px;
}

.banner_text p {
    width: 90%;
    margin-bottom: 20px;
    color: var(--textColor);
}

/*banner css end*/

/* inner banner */

.inner-banner .banner_img {
    height: 380px;
}

.inner-banner .banner_img img {
    width: 100%;
    height: 100%;
    border-radius: 0px 150px 0px 150px;
}

/* inner banner */

/* about-sec */

.about-sec {
    padding: 100px 0px;
    border-radius: 30px;
    background-color: var(--themeColor);
}

.about-heading {
    margin-bottom: 10px;
}

.about-img {
    width: 100%;
    height: 575px;
    overflow: hidden;
    margin-top: 50px;
    border-radius: 0px 300px 0px 300px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.about-img:hover img {
    transition: ease-in;
    transform: scale(1.1);
    transition-duration: 0.5s;
}

.about-text p {
    margin-bottom: 30px;
    color: var(--headingColor);
}

.about-text ul {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    align-items: center;
    justify-content: flex-start;
}

.about-text ul li {
    padding: 13px 30px;
    border-radius: 50px;
    color: var(--headingColor);
    border: 1px solid var(--themeColor3);
}

.about-text ul li h6 {
    color: #101010;
    text-transform: capitalize;
}

.about-more-text {
    margin: 40px 0px;
    padding-left: 5%;
}

.about-more-text p {
    margin-bottom: 20px;
}

.mission-img {
    height: 500px;
    min-height: 100%;
    overflow: hidden;
    border-radius: 0px 200px 0px 200px;
}

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

.mission-text {
    gap: 10px;
    display: flex;
    min-height: 100%;
    padding: 40px 0px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.mission-text p {
    margin-bottom: 10px;
}

/* about-sec */

/* product-sec */

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

.productSlider .slick-slide {
    opacity: 1;
    margin: 0px 9px;
}

.productSlider .slick-prev,
.productSlider .slick-next {
    width: 50px;
    opacity: 0;
    height: 50px;
    border-radius: 50%;
    transition: ease-in;
    color: var(--themeColor);
    transition-duration: 0.5s;
    border: 1px solid var(--themeColor);
}

.productSlider .slick-prev::before,
.productSlider .slick-next::before {
    content: '\f105';
    font-weight: 900;
    color: var(--themeColor);
    font-family: 'FontAwesome';
}

.productSlider .slick-prev::before {
    content: '\f104';
}

.productSlider:hover .slick-prev {
    opacity: 1;
    left: -55px;
}

.productSlider:hover .slick-next {
    opacity: 1;
    right: -55px;
}

.productSlider .slick-prev:hover,
.productSlider .slick-next:hover {
    background-color: var(--themeColor);
}

.productSlider .slick-prev:hover::before,
.productSlider .slick-next:hover::before {
    color: var(--white);
}

.product-box {
    padding: 30px;
    height: 575px;
    display: flex;
    overflow: hidden;
    position: relative;
    transition: ease-in;
    flex-direction: column;
    justify-content: flex-end;
    transition-duration: 0.5s;
    border-radius: 0px 40px 0px 40px;
    background-color: var(--headingColor);
}

.product-box-img {
    left: 0;
    top: 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

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

.product-box:hover .product-box-img {
    top: 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

.product-box-heading {
    left: 0;
    top: 220px;
    z-index: 1;
    width: 100%;
    padding: 30px;
    position: absolute;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.product-box:hover .product-box-heading {
    top: 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

.product-box-heading h3 {
    font-size: 34px;
    overflow: hidden;
    color: var(--white);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-family: 'Sofia-Pro-Light';
}

.product-box-text {
    z-index: 1;
    padding-top: 25px;
    position: relative;
    border-top: 1px solid var(--white);
}

.product-box-text p {
    min-height: 75px;
    overflow: hidden;
    color: var(--white);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-box-text .product-btn {
    display: flex;
    font-size: 18px;
    min-width: 250px;
    padding: 15px 30px;
    width: fit-content;
    border-radius: 50px;
    align-items: center;
    color: var(--white);
    transition: ease-in-out;
    justify-content: center;
    margin: 0px 0px 0px auto;
    transition-duration: 0.5s;
    font-family: 'Sofia-Pro-Light';
    background-color: var(--themeColor);
}

.product-box-text .product-btn:hover {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor2);
}

.inner-product-sec .product-box {
    margin-bottom: 20px;
}

.product-page-box {
    display: block;
    margin-bottom: 25px;
}

.product-page-box-img {
    width: 100%;
    height: 470px;
    overflow: hidden;
    border-radius: 0px 30px 0px 30px;
}

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

.product-page-box-heading {
    text-align: center;
    margin: 20px 0px 30px;
}

.product-page-box-heading h3 {
    font-size: 30px;
    font-family: 'Sofia-Pro-Light';
}

/* product-sec */

/* Account Page Css Starts */

.booking-in {
    position: relative;
}

.password-box {
    position: relative;
}

.booking-in input {
    width: 100%;
    height: 60px;
    margin-bottom: 5%;
    border-radius: 100px;
    padding: 0 50px 0 60px;
    background: #ebebeb;
    border: 1px solid transparent;
    font-family: 'Sofia-Pro-Light';
}

.booking-in i {
    position: absolute;
    left: 0;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    top: 3px;
    left: 2px;
    pointer-events: none;
    color: #3f3e43;
    font-weight: 600;
    border-radius: 0;
    z-index: 1;
    /* padding: 0 30px; */
}

.password-icon {
    position: absolute;
    top: 17px;
    right: 20px;
}

.login-box {
    /* border: solid; */
    text-align: center;
    padding: 50px;
}

.signup-head h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 30px;
    color: var(--headingColor);
    font-family: 'Sofia-Pro-Regular';
}

.socilmedia-box {
    margin-bottom: 5%;
}

.aptt1-btn {
    margin-top: 16px;
}

.aptt1-btn a.btn10 {
    background: #013a89 !important;
    /* width: 28%; */
}

.signup-form .form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.signup-form .form-check-label {
    color: var(--headingColor);
}

.signup-form .form-check .form-check-input {
    width: 20px;
    height: 20px;
    border-radius: 0px;
    background-color: transparent;
    border: 2px solid var(--headingColor);
}

.signup-form .form-check .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}

.signup-form .form-check-input:checked[type=checkbox] {
    filter: brightness(0) saturate(100%) invert(0%) sepia(9%) saturate(958%) hue-rotate(326deg) brightness(94%) contrast(87%);
}

.loginbox {
    padding: 25px;
    height: 661px;
    border-radius: 30px;
    background: #e5e5e5;
}

.login-head h2 {
    font-family: 'Poppins';
    font-size: 36px;
    line-height: 70px;
    color: #000;
    padding-top: 20%;
    text-align: center;
    -webkit-text-stroke-width: 0;
    -webkit-text-stroke-color: unset;
    font-weight: 600;
}

.forger-ps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 0 0;
}

.lg-btn a.btn10 {
    width: 100%;
    height: 45px;
}

.login-in {
    position: relative;
}

.login-in input {
    width: 100%;
    height: 60px;
    padding: 0 49px;
    margin-bottom: 5%;
    border-radius: 50px;
    background: var(--white);
    font-family: 'Sofia-Pro-Light';
    border: 1px solid transparent;
}


.login-in i {
    position: absolute;
    left: 1px;
    width: 50px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    top: 0;
    pointer-events: none;
    color: #000000;
    font-weight: 600;
    border-radius: 0;
}

.socilmedia-box {
    margin: 0 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.socilmedia-btn button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: none;
    height: 40px;
    padding: 0 20px;
}

.socilmedia-btn1 button {
    background-color: #3b5995;
}

.socilmedia-btn2 button {
    background-color: #00aeed;
}

.socilmedia-btn button * {
    color: #fff;
}

.socilmedia-btn button span.socilmedia-icon {
    padding: 0 10px 0 0;
    border-right: 1px solid #fff;
}

.aptt1-btn button {
    width: 100%;
    border: none;
    color: var(--headingColor);
    font-family: 'Sofia-Pro-Regular';
}

/* Account Page Css Ends */

/* product-detail-sec */

.product-detail-text {
    gap: 10px;
    display: flex;
    padding: 40px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.product-detail-text ul {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.product-detail-text ul li h2 {
    margin-bottom: 5px;
    font-family: 'Sofia-Pro-Regular';
}

.product-detail-text ul li h4 {
    font-family: 'Sofia-Pro-Regular';
}

.product-detail-text ul li .poduct-rate {
    font-size: 30px;
    color: #f98e1e;
}

.product-detail-text p {
    margin-bottom: 15px;
    font-family: 'Sofia-Pro-Regular';
}

.product-detail-text h6 {
    font-size: 16px;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--textColor);
}

.product-detail-text .theme-btn-2 {
    min-width: 250px;
}

.product-detail-text .theme-btn-1 {
    min-width: 250px;
}

#sizeBox button {
    margin: 5px;
    padding: 8px;
    cursor: pointer;
}

.product-detail-img {
    height: 500px;
    overflow: hidden;
    min-height: 100%;
    border-radius: 0px 30px 0px 30px;
}

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

/* Size Selector Styles */

.size-selector-wrap {
    width: 100%;
    margin-bottom: 15px;
}

.size-trigger-row {
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
    margin-left: 20px;
    align-items: center;
}

.size-toggle-btn i {
    margin-right: 6px;
}

.selected-size-badge {
    font-size: 15px;
    padding: 8px 18px;
    border-radius: 50px;
    color: var(--themeColor3);
    font-family: 'Sofia-Pro-Regular';
    background-color: rgba(210, 157, 123, 0.15);
    border: 1px solid rgba(210, 157, 123, 0.4);
    animation: fadeInBadge 0.3s ease;
}

@keyframes fadeInBadge {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.size-box-panel {
    padding: 20px;
    margin-top: 15px;
    margin-left: 20px;
    border-radius: 16px;
    border: 1px solid #e8ddd4;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    animation: slideDown 0.35s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.size-box-title {
    font-size: 14px;
    margin-bottom: 12px !important;
    color: var(--themeColor2);
    font-family: 'Sofia-Pro-Regular';
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-btn-group {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
}

.size-btn {
    width: 52px;
    height: 52px;
    display: flex;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: var(--headingColor);
    background-color: var(--bodyBg);
    border: 2px solid transparent;
    font-family: 'Sofia-Pro-Regular';
    transition: all 0.3s ease;
}

.size-btn:hover {
    color: var(--themeColor);
    border-color: var(--themeColor);
    background-color: rgba(210, 157, 123, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(210, 157, 123, 0.2);
}

.size-btn.active {
    color: var(--white);
    border-color: var(--themeColor);
    background-color: var(--themeColor);
    box-shadow: 0 4px 15px rgba(210, 157, 123, 0.35);
    transform: translateY(-2px);
}

.product-detail-btn {
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
    align-items: flex-start;
}

/* product-detail-sec */

/* why-choose-sec */

.why-choose-sec {
    padding: 0px 0px 100px;
}

.why-choose-text {
    gap: 20px;
    display: flex;
    min-height: 100%;
    padding: 40px 0px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.why-choose-text h2 {
    margin-bottom: 20px;
}

.why-choose-text h2 span {
    color: var(--themeColor2);
}

.why-choose-text p {
    margin-bottom: 5px;
}

.why-choose-img {
    gap: 30px;
    display: flex;
    height: 600px;
    align-items: center;
    justify-content: flex-end;
}

.why-choose-img .why-choose-img-1 {
    width: 68%;
    height: 100%;
    object-fit: cover;
    border-radius: 250px 0px 250px 0px;
}

.why-choose-img .why-choose-img-2 {
    width: 32%;
    height: 80%;
    object-fit: cover;
    border-radius: 250px;
}

.why-choose-sec.inner-why-choose-sec {
    padding: 100px 0px 0px;
}

/* why-choose-sec */

/* blog-sec */

.blog-sec {
    padding: 100px 0px;
    border-radius: 30px;
    background-color: var(--themeColor2);
}

.blog-sec-text p {
    margin-bottom: 20px;
}

.blog-sec-text .theme-btn-2 {
    min-width: 200px;
}

.blogSlider {
    margin-top: 50px;
}

.blogSlider .slick-slide {
    opacity: 1;
    margin: 0px 9px;
}

.blogSlider .slick-prev,
.blogSlider .slick-next {
    width: 50px;
    opacity: 0;
    height: 50px;
    border-radius: 50%;
    transition: ease-in;
    transition-duration: 0.5s;
    color: var(--headingColor2);
    border: 1px solid var(--headingColor2);
}

.blogSlider .slick-prev::before,
.blogSlider .slick-next::before {
    content: '\f105';
    font-weight: 900;
    color: var(--headingColor2);
    font-family: 'FontAwesome';
}

.blogSlider .slick-prev::before {
    content: '\f104';
}

.blogSlider:hover .slick-prev {
    opacity: 1;
    left: -55px;
}

.blogSlider:hover .slick-next {
    opacity: 1;
    right: -55px;
}

.blogSlider .slick-prev:hover,
.blogSlider .slick-next:hover {
    background-color: var(--headingColor2);
}

.blogSlider .slick-prev:hover::before,
.blogSlider .slick-next:hover::before {
    color: var(--white);
}

.blog-box {
    display: block;
    overflow: hidden;
    background: var(--white);
    border-radius: 0px 50px 0px 50px;
}

.blog-box-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 0px 50px 0px;
}

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

.blog-date {
    padding: 0px 20px;
}

.blog-date ul {
    display: flex;
    padding: 20px 0px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--themeColor3);
}

.blog-date ul li {
    gap: 15px;
    display: flex;
    align-items: center;
}

.blog-date ul li i {
    font-size: 30px;
    color: var(--themeColor3);
}

.blog-date ul li h6 {
    font-size: 18px;
    color: #6d6d6d;
}

.blog-box-text {
    padding: 20px;
}

.blog-box-text h3 {
    overflow: hidden;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-transform: capitalize;
    -webkit-box-orient: vertical;
    font-family: 'Sofia-Pro-Light';
}

.blog-box-text p {
    min-height: 50px;
    overflow: hidden;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.blog-box-text .theme-btn-2 {
    width: 100%;
}

/* blog-sec */

/* contact-sec */

.contact-sec {
    padding: 100px 0px;
}

.contact-form {
    padding: 40px 0px;
}

.contact-form h2 {
    margin-bottom: 10px;
}

.contact-form input {
    width: 100%;
    height: 55px;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    color: var(--headingColor);
    border: 1px solid #101010;
    background-color: var(--bodyBg);
}

.contact-form textarea {
    width: 100%;
    height: 260px;
    font-size: 16px;
    padding: 15px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    color: var(--headingColor);
    border: 1px solid #101010;
    background-color: var(--bodyBg);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #3e3e3e;
}

.contact-form .theme-btn-1 {
    width: 100%;
}

.contact-img {
    gap: 20px;
    display: flex;
    height: 500px;
    min-height: 100%;
    align-items: center;
    justify-content: flex-start;
}

.contact-img .contact-img-1 {
    width: 45%;
    height: 80%;
    object-fit: cover;
    border-radius: 150px 0px 150px 0px;
}

.contact-img .contact-img-2 {
    width: 45%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px 150px 0px 150px;
}

/* contact-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;
}

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

.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: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.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(--headingColor);
    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 */

/* check out */

.billing_form {
    padding: 0px;
}

.billing_form h3 {
    margin: 0;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--headingColor);
    font-family: 'Sofia-Pro-Regular';
}

.billing_form label {
    font-size: 13px;
    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;
    padding-left: 15px;
    border-radius: 0px;
    margin-bottom: 20px;
    border: 1px solid #d3cfc8;
    background-color: var(--bodyBg);
}

.billing_form select {
    width: 100%;
    height: 50px;
    padding-left: 15px;
    border-radius: 0px;
    margin-bottom: 20px;
    border: 1px solid #d3cfc8;
    background-color: var(--bodyBg);
    webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.billing_form .select-box i {
    right: 20px;
    position: absolute;
    top: 23px;
    transform: translateY(-50%);
    color: #000;
    pointer-events: none;
    font-size: 14px;
}

.billing_form input::placeholder {
    color: #7c7c7c;
    font-size: 13px;
}

.cart_sidebar .cart_lst li:not(:last-child) {
    margin-bottom: 15px;
    text-transform: uppercase;
}

.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: 15px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--headingColor);
    font-family: 'Sofia-Pro-Regular';
}

.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: #000;
    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: #000;
    margin: 0;
}

.order_complete_detail h3 {
    font-size: 22px;
    color: #000;
    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: #000;
}

.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: #000;
}

.order_detail_table h6 {
    font-size: 17px;
    font-weight: 700;
    color: #000;
    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 {
    border-radius: 0px;
    padding: 30px 25px 30px;
    border: 1px solid #bebebe;
    background-color: transparent;
}

.cart_sidebar .theme-btn-2 {
    border: none;
    min-width: 250px;
}

section.checkout_page {
    padding: 100px 0;
}

.cart_sidebar h3 {
    font-size: 27px;
    margin-top: 0px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 20px;
    color: var(--headingColor);
    font-family: 'Sofia-Pro-Regular';
}

.cart_sidebar .h-sub {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    padding-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-transform: capitalize;
    color: var(--headingColor);
    font-family: 'Sofia-Pro-Regular';
    border-bottom: 1px solid #dbdbdb;
}

.cart_sidebar h5 span {
    float: right;
    color: var(--headingColor2);
}

.cart_sidebar h4 {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: capitalize;
    color: var(--headingColor);
    font-family: 'Sofia-Pro-Regular';
}

.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-btn {
    z-index: 1;
    display: flex;
    padding-top: 20px;
    position: relative;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #e2e2e2;
}

.cart_sidebar ul li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #bbbbbb;
    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;
    border-radius: 4px;
    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 var(--themeColor);
    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: #000;
}

.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: #000;
    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: #fff;
    font-size: 16px;
    text-transform: uppercase;
    height: 50px;
    width: 150px;
    background: #000;

}

.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: 16px;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: capitalize;
    color: var(--headingColor);
}

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: var(--themeColor);
}

.radiosss-payments .card.card-body {
    padding: 0;
    border: 1px solid transparent;
    margin-left: 0;
    padding: 20px;
    background-color: transparent;
}

.billing_form {
    padding: 0px;
}

.cart_sidebar a {
    margin: 0 auto;
}

.cart_sidebar a i {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #f95180;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    margin-left: 15px;
}

/* check out */

/* privacy-policy-sec */

.privacy-policy-sec {
    padding: 0px 0px 100px;
}

.privacy-policy-sec .section-heading {
    text-align: left;
    margin-bottom: 10px;
}

.privacy-policy-sec .section-heading h5 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--themeColor);
    text-transform: capitalize;
    font-family: 'Sofia-Pro-Regular';
}

.privacy-policy-sec .section-heading p {
    width: 100%;
    font-size: 16px;
    max-width: 100%;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--textColor);
}

.policy-list {
    margin-top: 10px;
    padding-left: 10px;
    margin-bottom: 20px;
}

.policy-list li {
    line-height: 1.6;
    position: relative;
    padding-left: 15px;
    margin-bottom: 12px;
    color: var(--headingColor);
}

/* Custom Bullet Points */
.policy-list li::before {
    left: 0px;
    top: -2px;
    width: 15px;
    content: "•";
    font-weight: bold;
    position: absolute;
    display: inline-block;
    color: var(--themeColor3);
}

/* privacy-policy-sec */


/* footer */

.footerSec {
    padding-bottom: 80px;
}

.footer-box {
    padding: 70px 7%;
    background-color: #101010;
    border-radius: 20px 20px 0px 0px;
}

.footer-heading {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
}

.footer-heading h2 {
    font-size: 55px;
    text-align: end;
    max-width: 700px;
    color: var(--white);
}

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

.footer-contact ul {
    gap: 5%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-contact ul li a {
    font-size: 25px;
    color: var(--white);
    font-family: 'Sofia-Pro-Regular';
}

.footer-contact ul li a span {
    display: block;
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Sofia-Pro-Light';
}

.copy-txt {
    display: flex;
    padding: 45px 3%;
    align-items: center;
    background-color: #101010;
    justify-content: space-between;
    border-radius: 0px 0px 20px 20px;
    border-top: 1px solid var(--white);
}

.copy-txt p {
    flex-shrink: 0;
    font-size: 14px;
    color: var(--white);
}

.copy-txt ul {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.copy-txt ul li a {
    font-size: 14px;
    color: var(--white);
}



/* footer */


/*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*/