@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
}


/***** 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: 'arial';
    src: url(../fonts/arial.TTF);
    font-weight: 400;
    font-style: normal
}

/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.theme-btn {
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    padding: 15px 25px;
    color: #fff;
    margin: 20px 20px 20px 0;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    text-transform: capitalize;
    border: 2px solid;
    text-transform: capitalize;
    background: #9d161e;
    font-family: 'Outfit';
    font-size: 16px;
    letter-spacing: 1px;
}

.theme-btn:hover {
    background-color: #000;
    color: #fff;
    border-color: unset;
}

.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: 'Poppins', Sans-Serif;
    font-size: 55px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 55px;
    line-height: 60px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 23px;
    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;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/*header css start */
header{
    background: #fff;
    transition: 0.5s ease-in-out;
    padding:20px 0;
}
header.fixed {
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 999;
    transition: 1s ease-in-out;
    padding: 5px 0;
    box-shadow: 0 0 20px #00000021;
}
header.fixed .header-logo a img {
    width: 42%;
    transition: 0.5s ease-in-out;
}
.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;
}

.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: 10px 15px;
    font-size: 17px;
    font-family: 'arial';
}

/*.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
}*/

.menuSec ul li:last-child a {
    padding-right: 18px;
}

.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: #000;
    border-bottom: 1px solid #000;
}

.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:hover a {}

.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;
}

.menuSec ul:after {
    clear: both;
}

.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 */




.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 {}

.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: center;
    background: rgb(0 0 0 / 0%);
}

.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;
}

/*slick slider in tabs css start*/


/* Style the tab */




.tab_sec .tab {
    overflow: hidden;
    border: 0;
    background-color: #ffffff;
}

/* Style the buttons that are used to open the tab content */
.tab_sec .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab_sec .tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab_sec .tab button.active {
    background-color: #ccc;
}

/* Style the tab content */

.tab_sec .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 0;
}

.tabcontent.active {
    display: block;
}

/*slick slider in tabs css start*/

.nav-item {
    padding: 10px;
}

.header-logo a img {
    width: 70%;
    transition:0.5s ease-in-out
}

.menuSec .row {
    align-items: center;
}

img.banner-img {
    width: 100%;
    height: 618px;
    object-fit: cover;
}


/*home banner Css Start*/

.banner-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.home-banner .container-fluid {
    padding: unset;
}

.bannerslid .slick-slide {
    margin: 0px 0px;
}

.bannerslid .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #ff5b22;
}

.bannerslid li.slick-active {
    border: 1px solid #ff5b22;
    border-radius: 50%;
}

.bannerslid .slick-dots li button:before {
    font-family: 'slick';
    font-size: 11px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: -1px;
    width: 20px;
    height: 20px;

    text-align: center;
    opacity: 1;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bannerslid .slick-active {
    opacity: 1;
}

.bannerslid .slick-dots {
    bottom: 15px;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

/*home Banner Css marker-end*/


/*Section banner Bottom Start*/


.banner-btm-slid .slick-active {
    opacity: 1.5;
}

.img-banner-btm img {
    width: 80%;
    height: 352px;
    object-fit: contain;
}

.banner-btm-sec {
    background: #FFB4BB;
    padding: 31px 0px 53px;
}

.banner-btm-slid .slick-dots {
    bottom: -41px;
}

.banner-btm-slid .slick-next:before {
    content: '\f054' !important;
    font-family: 'FontAwesome';
    font-weight: 600;
    font-size: 27px;
    color: #fff;
}

.banner-btm-slid .slick-prev:before {
    content: '\f053' !important;
    font-family: 'FontAwesome';
    font-weight: 600;
    font-size: 27px;
    color: #fff;
}

.banner-btm-slid .slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 1.25;
}

.banner-btm-slid .slick-dots li button:before {
    font-size: 10px;
}

/*Section banner Bottom end*/

/*Section Collection Start*/

.collection-box {
    position: relative;
    z-index: 1;
}

.collection-box:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    background: linear-gradient(0deg, #000 0%, rgba(42, 42, 42, 0.00) 100%);
    /* z-index: -1; */
}

.text-collection {
    position: absolute;
    bottom: 26px;
    left: 30px;
}

.text-collection h3 {
    font-size: 20px;
    color: #fff;
    font-family: 'arial';
    font-weight: 600;
    margin-bottom: 60px;
}

.text-collection p {
    font-family: 'arial';
    color: #fff;
    font-weight: 600;
    margin-bottom: -92px;
    font-family: "Outfit", sans-serif;
}

.img-collection {
    overflow: hidden;
}

.collection-box:hover .text-collection p {
    margin-bottom: 0px;
    transition: 0.9s;
    opacity: 1;
    display: block;
}

.Collection-sec {
    padding: 100px 0px;
}

.collection-box:hover .text-collection h3 {
    margin-bottom: 0px;
    transition: 0.9s;
}

/*Section Collection End*/

/*Section About us STart*/
.text-aboutus h2 {
    text-transform: capitalize;
    font-weight: 600;
    color: #000;
    font-family: "Outfit", sans-serif;
    margin-bottom: 16px;
    font-size: 48px;
}

.text-aboutus p {
    font-family: 'Outfit';
    font-size: 16px;
    font-weight: 400;
}

.aboutus-sec .row {
    align-items: center;
}

.img-aboutus img {
    border-radius: 10px;
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center;
}

.about-btn {
    margin-top: 34px;
}

.aboutus-sec {
    padding: 100px 0px;
}

.img-aboutus {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.img-aboutus:after {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    content: "";
    border-left: 1px solid rgba(255, 255, 255, 0.7);
    border-right: 1px solid rgba(255, 255, 255, 0.7);
    z-index: 1;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}

.img-aboutus:before {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    content: "";
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    z-index: 1;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}

.img-aboutus:hover:before {
    transform: scale(1);
    -webkit-transform: scale(1);
}

.img-aboutus:hover:after {
    transform: scale(1);
    -webkit-transform: scale(1);
}

.img-aboutus:hover img {
    transform: scale(1.1);
    transition: 0.9s;
}

/*Section About Us End*/
/* Login Page Start

/*account start*/

.login_area {
    border: 2px solid #000;
    padding: 20px 20px;
    margin-left: 25px;
}

.register_area {
    border: 2px solid #000;
    padding: 20px 20px;
    margin-right: 25px;
    margin-bottom: 80px;
}

section.about-sec.inner-login input,
.selectcat {
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
    background: transparent;
    border: 2px solid #000;
    border-radius: 5px;
    font-size: 16px;
    color: #000;
}

section.about-sec.inner-login input::placeholder {
    color: #000;
    font-weight: 500;
}

section.about-sec.inner-login h2 {
    text-align: left;
    text-transform: capitalize;
    margin-bottom: 20px;
}

section.about-sec.inner-login button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    border-radius: 8px;
    border: none;
    background-color: #aa1721;
    color: #fff;
}

.register_area p {
    text-align: left;
    margin-top: 15px;
    font-family: 'Montserrat';
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
}

.register_area p a {
    color: #000;
    text-decoration: underline;
}

.fields_area.custom-control.custom-radio.Forgot-pass-sec input {
    width: 20px;
    height: 20px;
    margin: 0;
}

.fields_area.custom-control.custom-radio.Forgot-pass-sec ul {
    display: flex;
    align-items: center;
    padding: 0;
    justify-content: space-between;
    margin: 0;
}

.fields_area.custom-control.custom-radio.Forgot-pass-sec ul li p {
    margin: 0;
    font-family: 'Montserrat';
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
}

.fields_area.custom-control.custom-radio.Forgot-pass-sec ul li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.fields_area.custom-control.custom-radio.Forgot-pass-sec {
    margin-top: 20px;
}

.fields_area.custom-control.custom-radio.Forgot-pass-sec ul li a {
    color: #000;
    font-weight: 600;
}

/*Login Page End*/


/*Section Hm Contact Start*/
.img-hm-contact img {
    width: 100%;
}

.text-hm-contact p {
    font-size: 20px;
    font-family: 'Outfit';
    color: #9d161e;
    margin-bottom: 6px;
}

.text-hm-contact h2 {
    font-size: 48px;
    font-family: 'Outfit';
    color: #000;
    margin-bottom: 22px;
    line-height: 48px;
}

.field-hm-contact input {
    width: 100%;
    border: 1px solid #000;
    height: 47px;
    border-radius: 3px;
    padding: 0px 12px;
    font-family: 'arial';
    font-size: 15px;
}

.field-hm-contact label {
    font-size: 16px;
    font-family: 'arial';
    font-weight: 500;
}

.field-hm-contact textarea {
    width: 100%;
    height: 100px;
    border-radius: 4px;
    border: 1px solid #000;
    padding: 10px 10px;
    font-family: 'arial';
    font-size: 15px;
}

.field-hm-contact {
    margin-bottom: 21px;
}

.text-hm-contact {
    margin-left: 40px;
}

.field-contact-btn button {
    width: 100%;
    padding: 10px 10px;
    background: #D51A23;
    color: #fff;
    font-family: 'arial';
    font-size: 16px;
    border: unset;
}

.field-contact-btn {
    margin-top: -11px;
}

.hm-contact .row {
    align-items: center;
}

.hm-contact {
    background-image: url(../images/hm-contact-back.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0px;
}

.img-hm-contact {
    position: relative;
}

.img-hm-contact:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    z-index: 1;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    opacity: 1;
    top: 50%;
    bottom: 50%;
}

.img-hm-contact:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    z-index: 1;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    opacity: 1;
    left: 50%;
    right: 50%;
}

.img-hm-contact:hover:before {
    opacity: 0;
    top: 0;
    bottom: 0;
}

.img-hm-contact:hover:after {
    opacity: 0;
    left: 0;
    right: 0;
}

/*Section home Contact End*/


/*Section how It Works Start*/
.howit-works {
    position: relative;
    padding-bottom: 100px;
    z-index: 1;
}

.howit-works:before {
    background-image: url(../images/howit-back.png);
    width: 101%;
    height: 158px;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    content: '';
    bottom: 130px;
    z-index: -1;
}

.heading-how-it h2 {
    font-size: 31px;
    font-family: 'Outfit';
    color: #000;
    margin-bottom: 2px;
    text-transform: capitalize;
}

.heading-how-it p {
    font-family: 'Outfit';
    font-size: 20px;
    color: #9d161e;
}

.heading-how-it {
    text-align: center;
    margin-bottom: 50px;
}

.how-work-box h2 {
    font-family: 'arial';
    font-size: 26px;
    margin-bottom: 4px;
    line-height: 34px;
}

.how-work-box p {
    font-size: 16px;
    font-family: 'Outfit';
}

.how-work-box img {
    margin-bottom: 20px;
}

.how-work-box {
    text-align: center;
}

/*Section how It works End*/


/*Section footer Top  Start*/


.footer-top {
    background: #AA1721;
    padding: 60px 0px;
}

.heading-txt-ft-top h2 {
    color: #fff;
    font-size: 48px;
    font-family: 'arial';
    width: 80%;
    margin-bottom: 0px;
}

.heading-txt-ft-top {
    display: flex;
    gap: 33px;
    align-items: center;
}

.ft-top-field p {
    font-size: 16px;
    color: #fff;
    font-family: 'Outfit';
}

.firl-info-ft-top input {
    background: unset;
    border: unset;
    border-bottom: 1px solid #fff;
    width: 100%;
    padding-bottom: 10px;
    color: #fff;
    font-size: 14px;
    font-family: 'Poppins';
}

.firl-info-ft-top {
    position: relative;
}

.firl-info-ft-top button {
    position: absolute;
    right: 7px;
    border: unset;
    bottom: 13px;
    background: unset;
    color: #fff;
    font-size: 18px;
}

.firl-info-ft-top input::placeholder {
    color: #fff;
}

.footer-top .row {
    align-items: center;
}

.ft-top-field {
    margin-left: 96px;
}


/*Section footer TOp End*/


/*Section Project Start*/
.heading-txt-project h3 {
    font-size: 20px;
    font-family: 'Outfit';
    font-weight: 500;
    color: #9d161e;
    margin-bottom: 0px;
}

.heading-txt-project h2 {
    font-family: 'Outfit';
    font-size: 48px;
    color: #000;
    margin-bottom: 10px;
}

.heading-txt-project p {
    font-size: 16px;
    font-family: 'Outfit';
}

.heading-txt-project {
    text-align: center;
    margin-bottom: 50px;
}

.project-img img {
    width: 100%;
}

.text-project h2 {
    font-size: 20px;
    font-family: 'arial';
    font-weight: 600;
    color: #000;
    margin-bottom: 0px;
    line-height: 35px;
    padding: 9px 0px;
}

.text-project p {
    font-size: 16px;
    font-family: 'Outfit';
    margin-bottom: 30px;
}

.text-project a.theme-btn {
    border: unset;
    border-radius: 10px;
}

.our-project {
    padding-bottom: 100px;
}

.text-project h2:hover a {
    color: #ff5b22;
}

.text-project h2 a {
    color: #000000c4;
}

.project-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/*Section project End*/

/*Footer Start*/

.pg-links-ft h4 {
    font-size: 20px;
    font-family: 'Outfit';
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.pg-links-ft ul li a {
    font-size: 16px;
    font-family: 'arial';
    color: #666666;
    text-decoration: unset;
}

.pg-links-ft ul li {
    margin-bottom: 18px;
}

.ft-contact-info h4 {
    font-size: 20px;
    font-family: 'Outfit';
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.ft-social-links h4 {
    font-size: 20px;
    font-family: 'Outfit';
    font-weight: 600;
    color: #000;
}

.ft-contact-info ul li {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 13px;
}

.ft-contact-info ul li a {
    font-size: 16px;
    font-family: 'Outfit';
    color: #666666;
    text-decoration: unset;
}

.ft-social-links ul {
    display: flex;
    gap: 20px;
}

.ft-social-links ul li a {
    border: unset;
    gap: 10px;
    width: 39px;
    height: 39px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #F77985;
    color: #fff;
    font-size: 18px;
}

.pg-links-ft {
    margin-left: 70px;
    margin-top: 30px;
}

.ft-contact-info {
    margin-left: 30px;
    margin-top: 30px;
}

.ft-social-links {
    margin-left: 30px;
}

.ft-bottom-text {
    border-top: 1px solid #aa1721;
    margin-top: 20px;
}

.ft-bottom-text p {
    margin-bottom: 0px;
    font-family: 'Outfit';
    text-align: center;
    padding: 10px 0px;
    font-size: 16px;
}

footer {
    padding-top: 30px;
}

.ft-social-links ul li:hover {
    background: #000;
    transition: 0.9s;
}

.ft-social-links ul li:hover a {
    color: #fff;
    transition: 0.9s;
}

.pg-links-ft ul li:hover a {
    color: #aa1721;
    margin-left: 10px;
    transition: 0.9s;
}

.pg-links-ft ul {
    column-count: 2;
    padding-left: unset;
}

.ft-logo img {
    width: 90%;
}

.ft-logo {
    text-align: center;
}

.ft-contact-info ul li i {
    color: #aa1721;
}

.ft-contact-info ul li:hover a {
    color: #aa1721;
    text-decoration: underline;
}

/*Footer End*/

/*inner Banner Start*/

.innerbanner {
    background-image: url(../images/inner-banner.jpg);
    width: 100%;
    height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.innerbanner:before {
    position: absolute;
    content: '';
    background: #00000096;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.text-innerbanner h2 {
    font-size: 30px;
    font-family: 'Outfit';
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.text-innerbanner ul li a {
    font-size: 16px;
    font-family: 'Outfit';
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: unset;
}

.text-innerbanner ul {
    display: flex;
    gap: 10px;
    color: #fff;
    justify-content: center;
    padding-left: unset;
}

.text-innerbanner {
    text-align: center;
}


/*Inner Banner End*/


/*how It Work Page Start*/


section.inner-how-work-sec .text-aboutus h2 {
    width: fit-content;
    border-bottom: 3px solid #F77985;
}

.middel-row-howit {
    padding: 80px 0px;
}

/*how It Work Page End*/



/*Shop page Start*/


img.main-img-shoew {
    width: 100%;
}

.product-images {
    position: relative;
}

img.onhover-pro-img {
    position: absolute;
    left: 0;
    opacity: 0;
    -webkit-transform: rotateY(90deg);
}

.product-images span {
    position: absolute;
    background: #dc3545;
    left: 0;
    padding: 3px 13px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 6px;
    top: 30px;
    font-family: 'Outfit';
}

img.onhover-pro-img img {
    width: 100%;
    height: 240px;
}

.product-images img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    border-radius: 5px;
}


.product-box:hover img.onhover-pro-img {
    -webkit-transform: rotateY(0);
    opacity: 1;
    transition: all 0.4s linear 0s;
}

.product-box:hover img.main-img-shoew {
    -webkit-transform: rotateY(-90deg);
    opacity: 0;
    transition: all 0.4s linear 0s;
}


.proudct-box:hover img.main-img-shoew {
    -webkit-transform: rotateY(-90deg);
    opacity: 0;
    transition: all 0.4s linear 0s;
}

.proudct-box:hover img.onhover-pro-img {

    -webkit-transform: rotateY(0);
    opacity: 1;
    transition: all 0.4s linear 0s;
}

.text-prioduct h4 {
    font-size: 20px;
    font-family: 'Outfit';
    color: #000;
    font-weight: 600;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.text-prioduct p {
    font-size: 20px;
    font-family: 'Outfit';
    color: #000;
    font-weight: 400;
}

.text-prioduct {
    text-align: center;
    padding: 12px 0px;
}

.products {
    padding: 100px 0px;
}

ul.product-icons li {
    border: unset;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 14px;
    background: #fff;
    opacity: 0 !important;
    transform: translate(40px, 0px);
}

ul.product-icons li a {
    color: #000;
    font-size: 18px;
}

ul.product-icons {
    position: absolute;
    top: 30px;
    right: 30px;
}

li.heart-icon {
    margin-right: -80px !important;
}

li.heart-icon {
    opacity: 0 !important;
    transform: translate(30px, 0px);
}


.proudct-box:hover li.heart-icon {
    opacity: 1 !important;
    visibility: visible;
    transform: translate(0px, 0px);
    transition: 0.6s;

}

.proudct-box:hover li.eye-icon {
    opacity: 1 !important;
    visibility: visible;
    transform: translate(0px, 0px);
    transition: 0.9s;
}

li.heart-icon:hover a {
    color: #fff;
}

li.eye-icon:hover a {
    color: #fff;
}

li.heart-icon:hover {
    background: #8c6255;
}

li.eye-icon:hover {
    background: #8c6255;
}

.text-prioduct h4 a {
    color: #000;
}

.proudct-box {
    margin: 0 15px;
}

/*Shop Page End*/



/*Event Page STart*/
.event-img img {
    width: 100%;
    position: relative;
    border-radius: 20px;
    height: 230px;
    object-fit: cover;
}

.event-img span {
    position: absolute;
    top: 20px;
    left: -8px;
    background: #c56b2b;
    border-radius: 0px 30px 30px 0px;
    line-height: 36px;
    padding: 0 30px;
    display: block;
    z-index: 1;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}

.event-img {
    position: relative;
    border-radius: 20px;
}

.event-img span:before {
    width: 0px;
    height: 0px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #c56b2b;
    position: absolute;
    left: 1px;
    bottom: -10px;
    content: "";
}

.text-event h3 {
    font-family: 'Outfit';
    font-size: 20px;
    width: fit-content;
    border-bottom: 2px solid #fff;
    margin-bottom: 69px;
    color: #fff;
}

.text-event ul li img {
    border-radius: 50%;
}

.text-event ul li {
    font-family: 'Outfit';
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    color: #fff;
}

.text-event {
    position: absolute;
    top: 60px;
    left: 45px;
    z-index: 2;
    opacity: 0;
}

.event-box {
    position: relative;
}

.text-event ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-img:before {
    position: absolute;
    content: '';
    background: #00000078;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 20px;
    opacity: 0;
}


.event-box:hover .event-img:before {
    opacity: 1;
    transition: 0.9s;
}

.event-box:hover .text-event {
    opacity: 1;
    transition: 0.9s;
}

.text-event h3 a {
    color: #FFF;
}

.text-event h3 a:hover {
    color: #c56b2b;
}

.event-sec {
    padding: 100px 0px;
}

.text-event ul li a {
    color: #fff;
}

/*Event Page End*/


/*Event Detail Page Start*/

.heading-event-detail h2 {
    font-size: 30px;
    font-family: 'Outfit';
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
    text-align: center;
}

.heading-event-detail ul li {
    font-size: 16px;
    font-family: 'Outfit';
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666666;
}

.heading-event-detail ul li a {
    color: #666666;
}

.heading-event-detail ul {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.heading-event-detail {
    margin-bottom: 20px;
}

.event-detail .row {
    justify-content: center;
}

.event-img-btm-icons ul li p {
    font-size: 16px;
    font-family: 'Outfit';
}

.event-img-btm-icons ul li a {
    color: #2d3150;
    font-size: 25px;
}

.event-img-btm-icons ul {
    display: flex;
    gap: 13px;
    margin-bottom: 0px;
}

.event-img-btm-icons ul p {
    font-family: 'Outfit';
    font-size: 16px;
    margin-bottom: 0px;
}

.event-img-btm-icons {
    padding: 40px 0px;
}

.event-img-btm-icons ul li:hover a {
    color: #c56b2b;
}

.heading-event-detail-form h2 {
    font-size: 26px;
    font-family: 'Outfit';
    text-transform: capitalize;
    color: #2d3150;
    text-align: left;
    font-weight: 600;
    margin-bottom: 0px;
}

.heading-event-detail-form lable {
    font-size: 16px;
}


.check-evet-detail label {
    font-size: 16px;
    font-family: 'Outfit';
    color: #666666;
}

.event-detail-field textarea {
    width: 100%;
    height: 150px;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #0000004d;
    margin-bottom: 26px;
}

.event-detail-field input {
    width: 100%;
    border: 1px solid #0000004d;
    padding: 10px 10px;
    border-radius: 4px;
}

.event-detail-field textarea::placeholder {
    font-family: 'Outfit';
    text-transform: capitalize;
    font-size: 14px;
}

.event-detail-field input::placeholder {
    font-family: 'Outfit';
    text-transform: capitalize;
    font-size: 14px;
}

.event-detail-field button {
    border: unset;
    width: 100%;
    padding: 13px;
    background: #c56b2b;
    color: #fff;
    font-size: 16px;
    font-family: 'Outfit';
    font-weight: 600;
    border-radius: 5px;
    margin-top: 28px;
}

.event-detail-form-main {
    border: 1px solid #b2b2b2;
    padding: 60px;
    border-radius: 10px;
}

.related-post-main {
    margin-top: 80px;
}

.related-post-main h2 {
    font-size: 30px;
    font-family: 'Outfit';
    text-transform: capitalize;
    color: #000;
}

.heading-event-detail-form {
    margin-bottom: 30px;
}

.event-detail {
    padding: 100px 0px;
}

/*Evenmt Detail Page End*/



/*Post Detail Page Start*/


ul.tags li a {
    font-size: 16px;
    font-family: 'Outfit';
    color: #000;
    padding: 10px 10px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .06)), #FFFFFF;
    border-radius: 5px;
}

ul.tags {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.post-detail-box .heading-event-detail ul {
    justify-content: start;
    padding: 0;
}


.post-detail-box .text-project h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.post-detail-box .project-img img {
    border-radius: 11px;
}

.post-detail-box .project-box {
    padding-bottom: 83px;
    border-bottom: 1px solid #0000006e;
    margin-bottom: 70px;
}

.post-detail-box a.theme-btn {
    background: #c56b2b;
    border-radius: 7px;
}

ul.tags li a:hover {
    background: #c56b2b;
    color: #fff;
}

.listed-post-main h2 {
    font-size: 26px;
    font-family: 'Outfit';
    color: #000;
}

.listed-post-main ul {
    display: flex;
    gap: 20px;
    padding-left: 0;
}

.listed-post-main ul li img {
    width: 110px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.listed-post-main ul li {
    font-family: 'Outfit';
    font-size: 16px;
    color: #666666;
}

.listed-post-main ul li span {
    display: block;
    color: #000;
}

.tags-listed h2 {
    font-size: 26px;
    font-family: 'Outfit';
    color: #000;
    text-transform: capitalize;
    margin-bottom: 0px;
}

.tags-listed {
    margin-top: 140px;
}

.tags-listed ul.tags li a {
    background: transparent;
    border: 1px solid #00000078;
    font-size: 14px;
}

.tags-listed ul.tags li a:hover {
    background: #c56b2b;
}

.post-detail-box.lst-box .project-box {
    border-bottom: unset;
}

.post-detail-sec {
    padding-top: 100px;
}

/*Post Detail Page End*/


/*Contact page Start*/
.contact-main h2 {
    font-size: 26px;
    font-weight: 600;
    color: #000;
}

.contact-field input {
    width: 100%;
    border: 1px solid #00000069;
    padding: 15px 10px;
    border-radius: 5px;
}

.contact-field textarea {
    width: 100%;
    border: 1px solid #00000069;
    padding: 11px 12px;
    height: 160px;
    border-radius: 6px;
    margin-top: 34px;
}

.contact-field input::placeholder {
    font-family: 'Outfit';
    font-size: 16px;
}

.contact-field textarea::placeholder {
    font-family: 'Outfit';
    font-size: 16px;
}

.contact-info h4 {
    font-size: 20px;
    margin-bottom: 0px;
    font-family: 'Outfit';
    font-weight: 500;
    color: #000;
}

.contact-info a {
    font-size: 14px;
    font-family: 'Outfit';
    color: #000;
}

.contact-info {
    padding-bottom: 30px;
    border-bottom: 1px solid #00000045;
    margin-top: 30px;
    width: 70%;
}

.contact-sec {
    padding: 100px 0px;
}

.contact-info.con-phone-info {
    border-bottom: unset;
}

.contact-field button {
    background: #aa1721;
    color: #fff;
    border: unset;
    padding: 13px 82px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Outfit';
    margin-top: 20px;
}

/*Contact Page End*/


/*Book Now Page Start*/
p.loc-privacy-txt img {
    width: 15px;
}

p.loc-privacy-txt {
    display: flex;
    font-size: 16px;
    font-family: 'Outfit';
    font-style: italic;
}

.text-book p {
    font-size: 16px;
    font-family: 'Outfit';
    font-style: italic;
    margin-bottom: 6px;
    color: #666666;
}

p.ensure-txt {
    margin-top: 40px;
    margin-bottom: 20px;
}

.book-field input {
    width: 100%;
    border: 1px solid #0000002e;
    padding: 10px 10px;
    border-radius: 4px;
}

.book-field label {
    font-size: 16px;
    font-family: 'Outfit';
    color: #666666;
    margin-bottom: 6px;
    font-weight: 700;
}

.book-field {
    margin-bottom: 15px;
}

.book-field label span {
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    color: #dc3545;
}



.time-container {
    font-family: Arial, sans-serif;
    margin-bottom: 15px;
}

.time-label {
    font-weight: bold;
    font-size: 16px;
    font-family: 'Outfit';
    color: #666666;
    margin-bottom: 6px;
    font-weight: 700;
}

.required {
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    color: #dc3545;
}

.time-input {
    width: 50px;
    padding: 6px;
    margin-right: 5px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 55px;
}

.time-select {
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 58px;
    appearance: auto;
    padding: 10px 5px;
}

.book-field.prefierd-date input {
    width: 50%;
}

.book-field.adress-field label {
    font-size: 15px;
    font-weight: 300;
}

.book-field.adress-field input {
    margin-top: 6px;
}

label.city {
    font-size: 15px;
    font-weight: 300;
}

.book-field.adress-field select {
    width: 100%;
    border: 1px solid #0000002e;
    padding: 11px 10px;
    border-radius: 4px;
    appearance: auto;
    color: #0000008f;
    margin-top: 6px;
}

.book-field select {
    width: 100%;
    border: 1px solid #0000002e;
    padding: 10px 10px;
    border-radius: 4px;
    appearance: auto;
    font-family: 'Outfit';
}

.book-checkbox p {
    font-size: 16px;
    font-family: 'Outfit';
    color: #666666;
    margin-bottom: 6px;
    font-weight: 700;
    margin-bottom: 5px;
}

.book-checkbox label {
    font-size: 15px;
    font-family: 'Outfit';
    margin-left: 7px;
    font-weight: 400;
    color: #666666;
}

.book-field textarea {
    width: 100%;
    border: 1px solid #0000002e;
    padding: 10px 10px;
    border-radius: 4px;
    height: 300px;
}

.book-checkbox {
    margin-bottom: 20px;
}

.book-field-btn .theme-btn {
    border-radius: 8px !important;
}

.book-sec {
    padding: 100px 0px;
}

.heading-booknow h2 {
    font-size: 34px;
    font-weight: 600;
    font-family: 'Outfit';
    margin-bottom: 0px;
}

.heading-booknow p {
    font-family: 'Outfit';
    font-size: 18px;
    color: #666666;
}

.heading-booknow h2 span {
    color: #BE1921;
}

.heading-booknow {
    margin-bottom: 60px;
    text-align: center;
}

/*Boopk now Page End*/



/* Inner Product Detail Start */

.productdetailsec {
    padding: 100px 0 80px;
    position: relative;
}

.productdetailtext h3 {
    font-size: 35px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Outfit';
    font-weight: 500;
}

.prd-btn a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    padding: 17px 25px;
    font-weight: 700;
}

.productdetailtext del {
    color: #2b2828;
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 900;
    margin-left: 5px;
}


.productdetailtext ul {
    padding: 0;
    margin: 1px 0 0;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 16px;
}


.productdetailtext ul li {
    list-style: none;
    display: inline-block;
    color: black;
    font-size: 21px;
    font-weight: 500;
    font-family: 'Poppins';
}

ul.d-flex li {}

ul.product-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

ul.product-social li i {
    font-size: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    border-radius: 50px;
}

ul.product-social li i:hover {
    background: #93d50a;
    color: #fff;
    border: 0;
    transition: 0.5s ease-in-out;
}

.productdetailtext ul li a i {
    color: #ffc21f;
    font-size: 16px;
    margin-right: 0px;
}

.clearfix ul li span {
    font-size: 14px;
    color: #000;
    margin-left: 5px;
    font-weight: 500;
    font-family: 'Outfit';
}

span.wite-your-rewiew i {
    color: #e31b00;
}

.productdetailtext ul li:last-child a i {
    color: #DADADA;
}

/* .productdetailtext ul li:nth-child(4) a i {
                color: #DADADA;
            }
            */
.productdetailtext p {
    font-size: 15px;
    color: #000;
    line-height: 30px;
}

.productdetailtext strong {
    color: #000;
    margin-bottom: 25px;
    display: block;
    font-family: 'arial';
    font-size: 14px;
    font-weight: 400;
}

.productdetailtext .input-group span.glyphicon.glyphicon-minus {
    font-size: 13px;
}

.productdetailtext .input-group span.glyphicon.glyphicon-plus {
    font-size: 13px;
    margin: 0;
    top: -15px;
    right: 3px;
}

.productdetailtext .input-group input.form-control.input-number {
    width: 100%;
    margin: 0 auto;
    display: table;
    height: 50px;
    text-align: center;
}

.productdetailtext .input-group button.btn.btn-default.btn-number {
    border-radius: 50px;
    width: 30px;
    height: 30px;
    margin: 0 15px;
}

.productdetailtext .input-group span.glyphicon.glyphicon-minus {
    font-size: 13px;
    margin: 0;
    top: -13px;
    right: 5px;
}

.productdetailtext .input-group {
    width: 50%;
    margin: 0 0 34px;
}

.iconlist ul {
    margin-top: 40px;
    column-count: 2;
}


.iconlist ul li i {
    margin: 0 0px 0px 10px;
    font-size: 18px;
    color: #ff1559;
}

.productdetailtext .input-group span.input-group-btn {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.productdetailsmallportion {
    position: relative;
    top: 0;
    z-index: 99;
}

.productdetailsmallportion img {
    margin: auto;
    width: 100%;
    border: 2px solid #0000000d;
    height: 100%;
    background: #ffff;
    box-shadow: 0 0 5px #00000021;
}

.productdetailsec .productdetailportion {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
}

.productdetailnav .slick-slide {
    opacity: 1;
    z-index: 9999;
    position: relative;
    margin: 0;
}

.product-detail span {
    margin: 0;
}

.iconlist ul li {
    font-size: 18px;
    color: #000;
    font-family: "Montserrat", serif;
    font-weight: 500;
    margin-bottom: 20px;
}

.iconlist {
    margin-top: 60px;
    width: 65%;
}

span.pull-rightnumber {
    font-size: 37px;
    font-weight: 600;
    font-family: 'Outfit';
}


.product-detail .num-in {
    background: transparent;
    box-shadow: none;
    width: 75%;
}

.product-detail input.in-num {
    border: 1px solid #DADADA;
    background-color: transparent;
    width: 40%;
    margin: 0 5px;
}

.product-detail span {
    width: 35px !important;
    border: 1px solid #d4d4d4;
    border-radius: 50px;
    height: 30px !important;
    margin: 5px;
}

.product-detail .skin-2 .num-in span:before,
.product-detail .skin-2 .num-in span:after {
    background-color: #000;
}

.product-detail span:hover:before,
.product-detail span:hover:after {
    background-color: rgb(255, 255, 255) !important;
}

.product-details-btn.btn10 {
    background-color: #CFA55A !important;
    color: black;
    border-color: #CFA55A;
    font-size: 17px;
}

.quanity.product-detail {
    margin-left: 0;
    width: 35%;
}

.product-detail span:hover {
    background-color: #000;
}

ul.product-detail-heading {
    display: grid;
    align-items: center;
    justify-content: space-between;
}

.product-details-btn {
    height: 60px;
    border: 0;
    width: 180px;
    margin-left: 10px;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #cfa55a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    cursor: pointer;
}

a.cat-sub-btn {
    background: #335650;
    color: #fff;
    padding: 15px 40px;
    font-weight: 500;
}

a.cat-sub-btn:hover {
    background: #000;
}


.description li.nav-item {
    margin-right: 12px;
}

.description li.nav-item button {
    border-radius: 0;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 900;
    color: #000;
    text-align: center;
    padding: 0;
    font-family: 'Outfit';
    font-weight: 500;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    border-color: inherit !important;
    isolation: inherit !important;
}

.nav-tabs .nav-link:hover {
    border: none !important;
}

ul.dolor-sit-amet-points li {
    font-family: 'big-noodle';
    font-size: 20px;
    color: #000;
}

ul.dolor-sit-amet-points li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-family: 'blender';
    text-transform: uppercase;
    font-weight: 600;
}

ul.dolor-sit-amet-points {
    margin-bottom: 20px;
    line-height: 35px;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #c77946;
    background-color: inherit;
    border-color: inherit;
    border: none !important;
    position: relative;
}

.nav-tabs .nav-link.active:before {
    content: "";
    position: absolute;
    background: #c77946;
    width: 100%;
    height: 2px;
    bottom: -23px;
    right: 0;
    left: 0;
    margin: 0 auto;
}


.description .nav-tabs {
    gap: 40px;
    padding-bottom: 11px;
    margin-bottom: 40px;
    border-bottom: 2px solid #ededed;
}

.description {
    padding: 0px 0 100px;
}


.description .tab-content p {}

.productdetailfor .slick-slide img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    border-radius: 5px;
}


.productdetailsmallportion img {
    width: auto;

    position: relative;
    z-index: 999999999999999;
}

.productdetailnav .slick-list.draggable {
    margin-top: -25px;
}

/* skin 2 */

.skin-2 .num-in {
    background: #F0F0F0;
    box-shadow: 0px 1px 4px rgb(0 0 0 / 15%);
    height: 40px;
    width: 110px;
    float: left;
    border-radius: 12px;
    cursor: pointer;
}

.skin-2 .num-in span {
    width: 40%;
    display: block;
    height: 40px;
    float: left;
    position: relative;
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
    content: '';
    position: absolute;
    background-color: #667780;
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}

.skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
}

.skin-2 .num-in input {
    float: left;
    width: 20%;
    height: 37px;
    border: none;
    text-align: center;
    background-color: #f0f0f0;
    font-family: 'Roboto';
}

.product-detail .num-in {
    background: transparent;
    box-shadow: none;
    width: 75%;
    display: flex;
    align-items: center;
}

.product-detail input.in-num {
    border: 1px solid #DADADA;
    background-color: transparent;
    width: 40%;
    margin: 0 5px;
    padding: 30px 0;
}

.productdetailsec .btn10 {
    color: white;
}

.productdetailsmallportion img {
    width: 80%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
}


a.btn.shp-btn {
    font-family: 'cereR';
    font-size: 18px;
    color: #fff;
    background: #000;
    border-radius: 0;
    padding: 14px 45px;
}


.productdetailnav {
    margin-top: 40px;
}

.productdetailnav .slick-slide {
    margin: 0px 8px !important;
}

.productdetailfor .slick-slide {
    margin: 0;
}

section.related-prod {
    position: relative;
    padding: 50px;
}

.product-head {
    text-align: center;
    margin-bottom: 50px;
}

.quanity.product-detail input {
    width: 50%;
    height: 50px;
    border: 1px solid #d4d4d4;
    padding: 13px;
    color: #000;
}

ul.product-quintity li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.quanity.product-detail input::-webkit-outer-spin-button,
.quanity.product-detail input::-webkit-inner-spin-button {
    -webkit-appearance: auto !important;
    margin: 0px !important;
    opacity: 1 !important;
}

/* product tabs css */

.rate {
    height: 46px;
    float: left;
    display: block;
    clear: both;
    margin-bottom: -10px;
    margin-top: 20px;
}


.productdetailtext {
    margin-left: 15px;
    margin-top: 21px;
}

.rate input {
    top: 0;
    visibility: hidden;
}

.rate:not(:checked)>input {
    position: absolute;
    /* top: -9999px; */
}

.rate:not(:checked)>label {
    float: right;
    width: 0.8em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 35px;
    color: #ccc;
    margin: 0 3px;
}

.rate:not(:checked)>label:before {
    content: '\f005';
    font-family: 'Font Awesome 5 Free';
    font-weight: 800;
    color: #000;
    font-size: 24px;
}

.rate>input:checked~label {
    color: #f9d71c;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
    color: #deb217;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
    color: #c59b08;
}

.prd-commets .testimonial-heading {
    letter-spacing: 1px;
    margin: 30px 0px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.prd-commets .testimonial-heading span {
    font-size: 1.3rem;
    color: #252525;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.prd-commets .testimonial-box-container {
    display: block;
}

.prd-commets .testimonial-box {
    width: 100%;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 20px;
    margin: 15px;
    cursor: pointer;
}

.testi-box {
    border: 1px solid #e1e1e1;
    padding: 30px;
    margin: 20px 0;
}

.prd-commets .prd-commets .profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.prd-commets .profile-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center;
    border-radius: 50px;
    margin-right: 20px;
}

.prd-commets .profile {
    display: flex;
    align-items: center;
}

.prd-commets .name-user {
    display: flex;
    flex-direction: column;
}

.prd-commets .name-user strong {
    color: #3d3d3d;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.prd-commets .name-user span {
    color: #979797;
    font-size: 0.8rem;
}

.prd-commets .reviews {
    color: #f9d71c;
}

.prd-commets .box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.prd-commets .client-comment p {
    font-size: 0.9rem;
    color: #4b4b4b;
    text-align: left;
}

.prd-commets .testimonial-box:hover {
    transform: translateY(-10px);
    transition: all ease 0.3s;
}

.description .tab-content input[type="text"] {
    width: 100%;
    border: 0px;
    background-color: rgb(246, 246, 246);
    padding: 0px 20px;
    height: 60px;
    margin-bottom: 20px;
    font-weight: 500;
    color: rgb(124, 124, 124);
}

.rev-btn h6 {
    font-family: 'Outfit';
    color: #000;
    font-size: 26px;
    margin-bottom: 0;
}

.prdtc-rvw ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.description .tab-content form .row {
    align-items: center;
}

.prdtc-rvw i {
    font-size: 25px;
    margin-right: 10px;
}

.description .tab-content textarea {
    width: 100%;
    border: 0px;
    background-color: rgb(246, 246, 246);
    padding: 20px 20px;
    margin-bottom: 20px;
    font-weight: 500;
    color: rgb(124, 124, 124);
}

.description .tab-content form {
    margin-bottom: 70px;
}

.prdtc-rvw i:hover {
    color: #FFC107;
}

.products-box img {
    width: 40%;
    height: 220px;
    object-fit: contain;
}


.product-ratting {
    margin-top: 10px;
    margin-bottom: 20px;
}

.quanity.product-detail h2 {
    font-family: 'Outfit';
    text-transform: capitalize;
    font-size: 30px;
    color: #000;
    margin-bottom: 10px;
}

.productdetailnav .slick-current .productdetailsmallportion img {
    border: 2px solid #9d161e;
}

.productdetail-cart-btn a.theme-btn {
    margin-left: 10px;
}

a.theme-btn.wish-btn {
    margin-left: -6px;
}

.review-btn button.theme-btn {
    margin-bottom: unset;
}

/* Inner Product Start */

/* Inner Cart Start */
.add-to-cart thead {
    background: #1e1e1e;
    color: #fff;
}

.cart-page-tble tbody .quanity span {
    border-radius: 100px;
    border: 1px solid #000;
    width: 30px;
    height: 30px;
    color: #000;
}

.align-items-center {
    align-items: center !important;
}

.inc {
    background-color: transparent;
    margin-top: 20px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    border-radius: 8px !important;
    border: 1px solid lightgrey;
}

.cart-page-tble tbody .quanity span {
    border-radius: 100px;
    border: 1px solid #000;
    width: 30px;
    height: 30px;
    color: #000;
}

.cart-page-tble tbody tr td input {
    /* height: 60px; */
    /* border: 1px solid #c4c4c4; */
    /* background-color: #ffffff; */
    /* color: #000; */
    text-align: center;
    height: 49px;
    border-radius: 6px;
    border: 0px solid #ebebeb;
    font-size: 23px;
    color: #0000009c;
    font-weight: 500;
    background: #fff0;
    margin: 0;
    border-radius: 5px;
    width: 100px;
}

.cart-page-tble tbody .quanity span {
    border-radius: 100px;
    border: 1px solid #000;
    width: 30px;
    height: 30px;
    color: #000;
}

.inc {
    background-color: #fff !important;
    margin-top: 20px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    border: 2px solid #dcdcdc;
    width: 80%;
    height: 60px;
    border-radius: 0 !important;
}

.input-number {
    border: none;
}

.input-number-decrement,
.input-number-increment {
    display: inline-block;
    width: 40px;
    height: 40px;
    display: inline-flex;
    color: #444;
    text-align: center;
    font-weight: 700;
    border: 1px solid black !important;
    cursor: pointer;
    background: #f7f7f7;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
}

.input-number,
.input-number1,
.input-number-decrement,
.input-number-increment {
    border: 0;
    height: 22px;
    user-select: none;
    font-weight: 700;
    padding: 5px 5px 5px 5px;
    width: 30px;
    color: #000;
}

a.update {
    color: #000;
}

.product-cart figure {
    /* padding: 10px; */
    margin: 0;
    /* background-color: #eaeaea; */
    /* border-radius: 3px; */
    /* border: 1px solid #c8c8c8; */
}

th:first-child {
    border-radius: 10px 0 0 10px;
}

th:last-child {
    border-radius: 0 10px 10px 0;
}

.shipping-box h4 {
    color: #d60000;
    font-family: 'Montserrat';
}

.for-lin:before {
    position: absolute;
    content: '';
    left: 0;
    background-image: url(../images/line.png);
    background-repeat: no-repeat;
    width: 949px;
    height: 30px;
    z-index: 9999;
    top: 10px;
}

.for-lin {
    position: relative;
}

.add-to-cart .table>thead>tr>th {
    border-bottom: 0;
    padding-left: 0;
    padding-bottom: 25px;
    padding-top: 25px;
    text-align: center;
    font-family: 'Outfit';
    font-size: 24px;
    text-transform: capitalize;
}

.add-to-cart thead tr th {
    font-size: 17px;
    font-weight: 400;
    line-height: 18px;
    text-transform: uppercase;
    line-height: 10px;
    color: #fff;
    background: #1e1e1e;
}

.table-space h6 {
    font-size: 15px;
    color: #000;
    margin-bottom: 5px;
    font-family: 'Roboto';
    line-height: 25px;
    margin-top: 15px;
    font-weight: 400;
}

.table-space p {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    color: #333333;
    font-family: 'arial';
    margin-bottom: 0;
    line-height: 22px;
}

.product-img {
    width: 100%;
    height: 131px;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f6f6;
    border: 1px solid #d3d3d3;
}

.number-item input {
    width: 100%;
    text-align: center;
    height: 050px;
    border-radius: 46px;
    border: 0;
    font-size: 23px;
    color: rgba(0, 0, 0, 0.50);
    font-weight: 500;
    margin-top: 0;
    background-color: transparent;
    color: #000;
    pointer-events: none;
}

.add-to-cart a {
    font-size: 16px;
    display: block;
    text-align: center;
    padding-top: 8px;
    color: #333333;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 500;
}

li.quanity.product-detail {
    width: 42%;
}

li.quanity.product-detail .inc {
    margin: 0;
}

.add-to-cart h4 {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    text-align: center;
    margin-top: 40px;
    font-family: 'arial';
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

th.text-align\:left {
    text-align: left !important;
    padding-left: 50px !important;
}

tr.space {
    border-bottom: 1px solid #d9d9d9;
}

a.remove {
    /* background: rgb(0 144 255); */
    color: rgb(255, 255, 255);
    font-size: 29px;
    padding: 8px 15px;
    margin-top: 30px;
    background: #aa1721;
}

.proceed a {
    color: #aa1721;
    text-align: left;
    font-size: 26px;
    text-transform: capitalize;
    font-family: 'Outfit';
}

.proceed i {
    margin-left: 10px;
}

.proceed .checkout-btn {
    border: none;
    padding: 16px 20px;
    width: 100%;
    font-size: 28px;
    text-align: center;
    color: #fff;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0 0 0 auto;
    background: #aa1721;
    font-family: 'Outfit';
}

.all-section-inner {
    padding: 0px 0 80px;
}

.or-amazon {
    position: relative;
    border: 2px solid #c0c0c0;
    padding: 30px 50px;
    background-color: #f9f9f9;
    width: 100%;
    margin: 60px auto 0;
}

.or-amazon p {
    font-size: 16px;
    position: absolute;
    background: #fff;
    top: -17px;
    left: 0;
    padding: 3px 20px;
    color: #333333;
    display: block;
    text-transform: uppercase;
    border: 1px solid #c0c0c0;
    right: 0;
    margin: 0 auto;
    width: 70%;
    font-weight: 600;
}

.or-amazon a {
    text-decoration: none;
    text-align: center;
}

.total-section {
    padding: 30px 40px;
    background-color: #f9f9f9;
    border: 2px solid #c0c0c0;
    margin-left: 50px;
}

.total-section li {
    font-size: 20px;
    padding-bottom: 25px;
    color: #828282;
    font-weight: 500;
}

li.color-change {
    color: #000;
    padding-bottom: 0 !important;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
}

.total-section li span {
    float: right;
    font-family: "Montserrat", sans-serif;
}

.ship-estimate {
    background-color: #f9f9f9;
    padding: 10px 50px;
    margin-top: 105px;
    border: 2px solid #c0c0c0;
    margin-left: 50px;
}

.ship-estimate ul {
    margin-top: 20px;
    margin-bottom: 20px;
}

.ship-estimate li {
    margin-bottom: 10px;
    color: #000;
    font-size: 31px;
    font-weight: 500;
    font-family: 'Outfit';
}

.ship-estimate .grey-style {
    color: #a5a5a5;
    font-size: 18px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

.proceed {
    display: flex;
    align-items: flex-start;
}

.add-to-cart .table-space {
    display: flex;
    align-items: center;
}

.add-to-cart .table-space .col-md-7 {
    margin-left: 20px;
}

.product-img img {
    width: 97px;
    height: 97px;
    object-fit: contain;
    object-position: top;
}


section.add-to-cart.all-section {
    padding: 100px 0px 90px;
}

.custom-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.custom-responsive table {
    width: 100%;
    min-width: 800px;
    /* Adjust this based on your table’s content */
    border-collapse: collapse;
}

.custom-responsive::-webkit-scrollbar {
    height: 6px;
}

.custom-responsive::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

/* Inner Cart Ends */

/* Inner Check Out Start */

.billing_form h3 {
    font-size: 35px;
    margin: 0;
    margin-bottom: 30px;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
}

.billing_form label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    font-family: 'arial';
    color: #8d8d8d;
}

.radiosss p {
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    color: #000;
    font-family: 'arial';
}

.check-out-btn button {
    background: #d90f00;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: none;
    font-size: 18px;
    height: 55px;
}

.billing_form input {
    width: 100%;
    height: 50px;
    border: 1px solid #c8c8c8;
    margin-bottom: 20px;
    padding-left: 15px;
    font-family: 'arial';
    background: transparent;
    font-weight: 500;
    color: #8d8d8d;
}

.billing_form input::placeholder {
    color: #8d8d8d;
    font-family: 'Montserrat';
}

.cart_sidebar .cart_lst li:not(:last-child) {
    margin-bottom: 20px;
}

.cart_sidebar .cart_lst li {
    font-size: 14px;
    color: #8d8d8d;
    font-weight: 600;
    font-family: 'arial';
}

.cart_sidebar .cart_lst li span {
    float: right;
}

.cart_sidebar .cart_lst li:last-child {
    font-size: 18px;
    font-weight: 700;
    color: #394136;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

.cart_sidebar .cart_lst {
    padding: 0;
    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;
    font-family: 'Montserrat', sans-serif;
}

.thankyou_txt h3 i {
    font-size: 40px;
    margin-right: 15px;
}

.order_det h5 {
    font-size: 20px;
    color: #7c7c7c;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.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;
    font-family: 'Montserrat', sans-serif;
}

.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;
    font-family: 'Montserrat', sans-serif;
}

.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;
    font-family: 'Roboto', sans-serif;
    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;
}

.check_menu ul li.purp {
    color: #700ea3;
}

.cart_sidebar {
    padding: 40px 25px;
    border: 1px solid #b7b7b7;
}

.cart_sidebar h3 {
    font-size: 30px;
    color: #000;
    margin-top: 0px;
    margin-bottom: 20px;
    line-height: normal;
    text-transform: uppercase;
    font-family: 'Outfit';
}

.cart_sidebar .h-sub {
    font-weight: 700;
    font-size: 18px;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 20px;
    line-height: 0;
    padding-bottom: 30px;
    padding-top: 20px;
    color: #394136;
    font-family: 'arial';
    text-transform: uppercase;
}

.cart_sidebar h5 span {
    float: right;
    color: #394136;
}

.cart_sidebar h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: normal;
    padding-top: 0;
    color: #394136;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

.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: 500;
    font-family: "Montserrat", sans-serif;
    color: #8d8d8d;
}

.cart_sidebar ul li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #b7b7b7;
    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: 2px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #da1c00;
    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;
    font-family: 'Roboto', sans-serif;
}

.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;
    font-family: 'Montserrat-Ultral';
}

.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 {
    padding: 12px 50px;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 24px;
    border-radius: 0;
    font-weight: 500;
    border: 2px solid transparent;
    background-color: #ff2e98;
    font-family: 'Montserrat-Ultral';
}

.checkout_btn:hover {
    /* color: white; */
}

ul.shipping-ul {
    border-bottom: 1px solid #dbdbdb;
    margin: 0;
    padding-bottom: 30px;
}

h6.payment-h {
    font-weight: 500;
    color: #394136;
    font-size: 18px;
    margin-bottom: 30px;
    font-family: 'arial';
    font-weight: 700;
    text-transform: uppercase;
}

.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: #da1c00;
}

.card-body.abc {
    margin-left: 100px;
}

.radiosss-payments .card.card-body {
    padding: 0;
    border: 0;
    margin-left: 30px;
    background: none;
}

.radiosss-payments {
    border-bottom: 1px solid rgb(219, 219, 219);
}

section.checkout_page {
    padding: 80px 0;
}


.checkout_page .img-1 {
    position: absolute;
    left: -13%;
    top: 50%;
    width: 340px;
}

.checkout_page .img-2 {
    position: absolute;
    right: -7%;
    top: 60%;
    width: 230px;
    transform: rotate(200deg);
}

.billing_form {
    border: 1px solid #b7b7b7;
    padding: 35px;
}

.inner-banner-sec {
    display: flex;
    align-items: center;
    text-align: center;
    background-image: url(../images/inner-banner.png);
    width: 100%;
    height: 577px;
}

.inner-banner-heading h2 {
    color: #fff;
    margin-bottom: 0;
    font-size: 100px;
}

/* Inner Check Out End */


/*Colour Customizer Page Start*/



.title {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.row.row-cols-3.color-grid {
    max-width: 640px !important;
    margin: 0 auto;
}

.row.row-cols-5.color-grid {
    max-width: 640px !important;
    margin: 0 auto;
}

.color-box {
    width: 90px;
    height: 90px;
    cursor: pointer;
    border: 2px solid #ddd;
    margin: 5px auto;
    transition: border 0.2s;
}

.color-box.selected {
    border: 3px solid #000;
    position: relative;
}

.color-box.selected::after {
    content: '\2715';
    color: #fff;
    font-size: 12px;
    position: absolute;
    top: 3px;
    right: 5px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swatch {
    width: 124px;
    height: 410px;
    margin: 20px auto;
    /* border: 1px solid #000; */
    display: none;
}

.slider-container {
    margin: 20px 0;
}

.slider-label {
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.ui-slider-horizontal {
    height: 8px;
    background: #ddd;
    border-radius: 4px;
}

.ui-slider-handle {
    background: #000;
    border: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    top: -7px;
}

.ui-slider .ui-slider-range,
.ui-slider-horizontal .ui-slider-handle {
    background: inherit !important;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -7px;
}

.clrty img {
    width: 70%;
    margin-bottom: 20px;
    transition: background-color 0.3s;
}

.addShade {
    width: 55%;
    display: none;
    margin: 0 auto;
    border-bottom: 1px solid;
    padding-bottom: 15px;
}

.addShade>div {
    height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    background: #f8f8f8;
    border: 1px solid #ddd;
    cursor: pointer;
    position: relative;
    padding-right: 77px;
    font-family: 'Outfit';
}

.addShade>div.active {
    background: #aa1721;
    color: #fff;
    border-color: #aa1721;
}

.addShade>div span {
    position: absolute;
    height: 32px;
    width: 55px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    right: 10px;
    color: #fff;
}

.maindv-lips-colcor-picker {
    text-align: center;
    padding: 100px 0px;
}

.maindv-lips-colcor-picker p {
    font-family: 'Outfit';
    text-transform: uppercase;
    font-size: 16px;
}

.ft-contact-info ul {
    padding-left: unset;
}

.top-heading-customizer {
    margin-bottom: 50px;
}

.top-heading-customizer p {
    text-transform: capitalize;
}



/*Colour Customizer Page End*/

.inner-how-it-img {
    box-shadow: -1px 5px 8px #00000075;
    border-radius: 10px;
    text-align: center;
}

.heading-txt-project h2 span {
    color: #aa1721;
}

.maindv-video {
    text-align: center;
}

.video-sec {
    padding-bottom: 80px;
}

.inner-modal-text h2 {
    font-family: 'Outfit';
    font-size: 28px;
    color: #000;
    margin-bottom: 5px;
    line-height: 35px;
}

.inner-modal-text p {
    font-size: 13px;
}

.modal-dialog {
    max-width: 760px;
}

.inner-modal-text h2 span {
    font-size: 17px;
}

.btn-primary:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.btn-primary {
    color: #fff;
    background-color: #aa1721;
    border-color: #aa1721;
    text-transform: capitalize;
    font-family: 'Outfit';
    font-size: 17px;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: #aa1721;
    border-color: #aa1721;
    box-shadow: 0 0 0 0.25rem #aa172157;
}

.modal-header h1 {
    color: #aa1721;
    font-size: 27px !important;
    text-transform: capitalize;
    font-family: 'Outfit';

}


.multiselect {
    position: relative;
    width: 100%;
}

.book-field .select-box {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 40px;
}

.book-field .selected-items {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.book-field .selected-items span {
    background: #fff;
    color: #000;
    padding: 1px 8px;
    border-radius: 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    border: 1px solid #00000078;
}

.book-field .selected-items .remove {
    margin-left: 12px;
    cursor: pointer;
    font-weight: bold;
    border: unset;
    padding: 0px;
}

.book-field .arrow {
    font-size: 14px;
}

.book-field .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    display: none;
    z-index: 10;
}

.book-field .dropdown div {
    padding: 10px;
    cursor: pointer;
}

.book-field .dropdown div:hover,
.book-field .dropdown .selected {
    background: #aa1721;
    color: #fff;
}

.lip-customizer .swatch {
    height: 230px;
    width: 214px;
}

.nail-polish-img img {
    width: 184px;
    height: 230px;
}

.book-btn-hm {
    margin-top: 60px;
}

.img-collection img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.color-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menuSec ul li span {
    border: 1px solid #dc3545;
    background: #dc3545;
    border-radius: 30px;
    font-size: 8px;
    padding: 1px 3px;
    color: #fff;
    position: absolute;
    right: 8px;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 2px;
}

div#slider-White {
    margin: 0 auto;
    margin-top: -20px !important;
}

div#slider-Crystal {
    margin-top: -20px !important;
}

html .slider {

    margin-top: -20px !important;
}

div#slider-Brass {
    margin-top: -20px;
}

div#slider-Brass {
    margin-top: -22px !important;
}

div#slider-Fuschia {
    margin-top: -20px !important;
}

.slider {
    width: 50%;
    margin: 25px auto !important;
}

.menuSec ul li a i {
    font-size: 20px;
}

div#slider-Rose-Gold {
    margin-top: -20px !important;
}

div#slider-White {
    margin: 0 auto;
}

.nail-polish-img {
    border: 1px solid #9d161e;
}

.nail-polish-img img {
    width: 100%;
    height: 190px;
    object-fit: contain;
}

.total_price h5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 25px;
    font-family: 'Outfit';
    color: #000;
}

html {
    overflow-x: hidden;
}

.maindv-video video {
    width: 100%;
}


/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
    .menuSec ul li a {
        padding: 10px 5px;
        font-size: 16px;
    }



}

@media only screen and (min-width: 992px) and (max-width: 1199px) {


    .menuSec ul li a {
        padding: 15px 5px;
        font-size: 16px;
    }

    .img-banner-btm img {
        width: 100%;
        height: 250px;
        object-fit: contain;
    }

    .proceed {
        margin-top: 25px;
    }

    .heading-txt-ft-top h2 {
        font-size: 35px;
        width: 100%;
    }

    .pg-links-ft {
        margin-left: 0px;
    }

    .ft-social-links ul {
        padding-left: 0;
    }

    .book-field.prefierd-date input {
        width: 100%;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .menuSec ul li a {
        padding: 20px 5px;
        font-size: 13px;
    }

    .menuSec ul li a i {
        font-size: 14px;
    }

    .banner-img img {
        height: 500px;
    }

    .Collection-sec {
        padding: 60px 0px;
    }

    .img-banner-btm img {
        width: 100%;
        height: 200px;
        object-fit: contain;
    }

    .heading-txt-project h2 {
        font-size: 35px;
        margin-bottom: 5px;
    }

    .heading-txt-project {
        margin-bottom: 30px;
    }

    .text-collection h3 {
        font-size: 16px;
        margin-bottom: 50px;
    }

    .text-collection {
        left: 15px;
        bottom: 20px;
    }

    .img-collection img {
        height: 330px;
    }

    .aboutus-sec {
        padding: 60px 0px;
    }

    .pg-links-ft {
        margin-left: 0px;
        margin-top: 30px;
    }

    .ft-contact-info {
        margin-left: 10px;
    }

    .ft-social-links {
        margin-left: 10px;
    }

    .pg-links-ft ul {
        column-count: 1;
    }

    .pg-links-ft ul li {
        margin-bottom: 10px;
    }

    .pg-links-ft ul li a {
        font-size: 14px;
    }

    .ft-social-links ul {
        padding: 0;
        gap: 15px;
    }

    .heading-txt-ft-top h2 {
        font-size: 30px;
        width: 100%;
    }

    .heading-txt-ft-top img {
        height: 100px;
        width: 92px;
        object-fit: contain;
    }

    .ft-top-field {
        margin-left: 5px;
    }

    .footer-top {
        padding: 50px 0px;
    }

    .addShade {
        width: 100%;
    }

    .maindv-lips-colcor-picker {
        padding: 60px 0px;
    }

    .book-sec {
        padding: 60px 0px;
    }

    .book-field.prefierd-date input {
        width: 100%;
    }

    .contact-info {
        width: 100%;
    }

    .proceed {
        margin-top: 25px;
    }

    .tab-flex {
        display: flex;
        gap: 10px;
        margin-top: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .ship-estimate {
        padding: 10px 50px;
        margin-top: 0px;
        margin-left: 0px;
    }

    .total-section {
        width: 50%;
        margin: 0;
        padding: 30px 40px;
    }

    .post-detail-sec {
        padding-top: 60px;
    }

    .post-detail-box .text-project h2 {
        font-size: 30px;
    }

    .post-detail-box .heading-event-detail ul {
        padding-left: 0;
    }

    .post-detail-box .project-box {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 520px) and (max-width: 767px) {

    .header-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .post-detail-box .heading-event-detail ul {
        padding-left: 0;
    }

    .login_area {
        padding: 15px;
        margin-left: 0;
        margin-bottom: 15px;
    }

    .header-logo a img {
        height: 120px;
        width: 100%;
        object-fit: contain;
    }

    .post-detail-box .project-box {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .banner-img img {
        height: 400px;
    }

    .img-banner-btm img {
        width: 100%;
        height: 150px;
        object-fit: contain;
    }

    .post-detail-sec {
        padding-top: 50px;
    }

    .Collection-sec {
        padding: 50px 0px;
    }

    .post-detail-box .text-project h2 {
        font-size: 30px;
    }

    .heading-txt-project h2 {
        font-size: 30px;
    }

    .collection-box {
        margin-bottom: 15px;
    }

    .aboutus-sec {
        padding: 0px 0px 50px;
    }

    .text-aboutus h2 {
        font-size: 30px;
        margin-bottom: 5px;
    }

    .register_area {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .inner-login .col-md-6 {
        /* padding: unset !important; */
    }

    .text-aboutus {
        margin-bottom: 25px;
    }

    .about-btn {
        margin-top: 25px;
    }

    .img-aboutus img {
        height: 450px;
    }

    .theme-btn {
        margin: 0;
        font-size: 14px;
        padding: 10px 20px;
    }

    .heading-how-it p {
        font-size: 14px;
    }

    .heading-how-it {
        margin-bottom: 30px;
    }

    .how-work-box {
        margin-bottom: 15px;
    }

    .howit-works {
        padding-bottom: 50px;
    }

    .howit-works:before {
        bottom: 0;
        width: 100%;
        height: 128px;
        background-size: contain;
    }

    .how-work-box p {
        font-size: 12px;
    }

    .how-work-box h2 {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 2px;
    }

    .maindv-video video {
        width: 100%;
    }

    .book-btn-hm {
        margin-top: 25px;
    }

    .video-sec {
        padding-bottom: 50px;
    }

    .heading-txt-project p {
        font-size: 13px;
    }

    .project-box {
        margin-bottom: 25px;
    }

    .text-project p {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .our-project {
        padding-bottom: 30px;
    }

    .heading-txt-ft-top {
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .ft-top-field {
        margin-left: 0px;
    }

    .heading-txt-ft-top h2 {
        width: 100%;
        font-size: 30px;
        margin-bottom: 5px;
    }

    .heading-txt-ft-top img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    .ft-logo img {
        width: 50%;
        height: 110px;
        object-fit: contain;
    }

    .pg-links-ft {
        margin-left: 0px;
        margin-top: 20px;
    }

    .pg-links-ft ul li a {
        font-size: 14px;
    }

    .pg-links-ft ul li {
        margin-bottom: 5px;
    }

    .pg-links-ft ul {
        column-count: 1;
    }

    .ft-contact-info {
        margin-left: 0px;
        margin-top: 10px;
    }

    .ft-social-links ul {
        gap: 5px;
        padding: 0;
        display: flex;
    }

    .ft-social-links {
        margin-left: 0;
        margin-top: 35px;
    }

    .ft-bottom-text {
        margin-top: 5px;
    }

    .ft-social-links ul li a {
        width: 30px;
        height: 30px;
    }

    .ft-bottom-text p {
        font-size: 14px;
        padding: 6px 0px;
    }

    .ft-contact-info ul li a {
        font-size: 14px;
    }

    .innerbanner {
        height: 280px;
    }

    .book-sec {
        padding: 50px 0px;
    }

    .text-innerbanner h2 {
        font-size: 25px;
        margin-bottom: 2px;
    }

    .text-innerbanner ul li a {
        font-size: 14px;
    }

    .heading-booknow h2 {
        font-size: 30px;
    }

    .heading-booknow p {
        font-size: 14px;
    }

    .heading-booknow {
        margin-bottom: 25px;
    }

    .book-field.prefierd-date input {
        width: 100%;
    }

    .book-field textarea {
        height: 150px;
    }

    .book-checkbox {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
    }

    .book-checkbox p {
        width: 100%;
    }

    .book-checkbox label {
        font-size: 13px;
        width: 90%;
    }

    .row-cols-5.color-grid .col {
        width: 33%;
    }

    .color-box {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .maindv-lips-colcor-picker p {
        font-size: 13px;
    }

    .addShade {
        width: 100%;
    }

    .addShade>div span {
        position: absolute;
        height: 32px;
        width: 48px;
        font-size: 12px;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        right: 5px;
        color: #fff;
    }

    .addShade>div {
        padding: 0 10px;
        padding-right: 66px;
    }

    .maindv-lips-colcor-picker {
        padding: 50px 0px;
    }

    .selected-colors-preview {
        padding: 10px;
        margin-top: 15px;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .total_price {
        margin-top: 25px;
    }

    .text-innerbanner ul {
        flex-wrap: wrap;
    }

    .aboutus-sec.inner-about-sec {
        padding: 50px 0px;
    }

    .text-aboutus p {
        font-size: 13px;
    }

    .contact-field {
        margin-bottom: 15px;
    }

    .contact-field textarea {
        height: 130px;
        margin-top: 15px;
    }

    .contact-field input {
        padding: 10px 10px;
    }

    .contact-sec {
        padding: 50px 0px;
    }

    .contact-field button {
        width: 100%;
        padding: 13px 30px;
        margin-top: 10px;
    }

    section.add-to-cart.all-section {
        padding: 40px 0px;
    }

    .cart-table-qu {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 110px;
    }

    .proceed {
        gap: 15px;
        display: flex;
        margin-top: 25px;
        flex-direction: column;
    }

    .proceed .checkout-btn {
        padding: 12px 15px;
        font-size: 18px;
    }

    .or-amazon {
        padding: 15px 35px;
        margin: 40px auto 20px;
    }

    .total-section {
        margin-left: 0px;
        padding: 15px 20px;
    }

    .total-section li {
        font-size: 14px;
        padding-bottom: 10px;
    }

    .total-section li.color-change {
        font-size: 20px;
    }

    .ship-estimate {
        margin-left: 0px;
        margin-top: 20px;
        padding: 10px 20px;
    }

    .ship-estimate ul {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .ship-estimate li {
        font-size: 20px;
    }

    .ship-estimate .grey-style {
        font-size: 14px;
    }

    .cart_sidebar {
        padding: 20px 15px;
    }

    .billing_form {
        padding: 15px;
        margin-bottom: 20px;
    }

    .billing_form input {
        height: 40px;
        margin-bottom: 10px;
        font-size: 12px;
    }

    .billing_form h3 {
        font-size: 30px;
        margin-bottom: 5px;
    }

    .cart_sidebar h3 {
        font-size: 25px;
        margin-bottom: 5px;
    }

    .cart_sidebar .cart_lst {
        margin-top: 5px;
        margin-bottom: 20px;
    }

    ul.shipping-ul {
        padding: 0 0px 10px;
    }

    .radiosss-payments {
        padding: 0px 0px 10px;
    }

    section.checkout_page {
        padding: 50px 0;
    }

    .check-out-btn button {
        font-size: 14px;
        height: 40px;
    }

    .footer-top {
        padding: 35px 0px;
    }

    .banner-btm-slid .slick-next {
        right: -5px;
        z-index: 1;
    }

    .banner-btm-slid .slick-prev {
        left: -5px;
        z-index: 1;
    }

    .banner-btm-slid .slick-prev:before,
    .banner-btm-slid .slick-next:before {
        font-size: 22px;
    }
    
    .slicknav_nav a:hover {
       background: #aa1721;
    }

    .add-to-cart .table>thead>tr>th {
       padding-top: 22px;
       font-size: 20px;
    }



}

@media only screen and (min-width: 0px) and (max-width: 519px) {

    .header-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .post-detail-box .heading-event-detail ul {
        padding-left: 0;
    }

    .header-logo a img {
        width: 100%;
        height: 120px;
        object-fit: contain;
    }

    .banner-img img {
        height: 400px;
    }

    .login_area {
        padding: 15px;
        margin-left: 0;
        margin-bottom: 15px;
    }

    .post-detail-box .project-box {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .img-banner-btm img {
        width: 100%;
        height: 150px;
        object-fit: contain;
    }

    .post-detail-box .text-project h2 {
        font-size: 25px;
    }

    .Collection-sec {
        padding: 40px 0px;
    }

    .post-detail-sec {
        padding-top: 40px;
    }

    .heading-txt-project h2 {
        font-size: 30px;
    }

    .collection-box {
        margin-bottom: 15px;
    }

    .aboutus-sec {
        padding: 0px 0px 40px;
    }

    .text-aboutus h2 {
        font-size: 30px;
        margin-bottom: 5px;
    }

    .register_area {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .text-aboutus {
        margin-bottom: 25px;
    }

    .about-btn {
        margin-top: 25px;
    }

    .img-aboutus img {
        height: 450px;
    }

    .theme-btn {
        margin: 0;
        font-size: 14px;
        padding: 10px 20px;
    }

    .heading-how-it p {
        font-size: 14px;
    }

    .heading-how-it {
        margin-bottom: 30px;
    }

    .how-work-box {
        margin-bottom: 15px;
    }

    .howit-works {
        padding-bottom: 40px;
    }

    .howit-works:before {
        bottom: 0;
        width: 100%;
        height: 128px;
        background-size: contain;
    }

    .how-work-box p {
        font-size: 12px;
    }

    .how-work-box h2 {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 2px;
    }

    .maindv-video video {
        width: 100%;
    }

    .book-btn-hm {
        margin-top: 25px;
    }

    .video-sec {
        padding-bottom: 40px;
    }

    .heading-txt-project p {
        font-size: 13px;
    }

    .project-box {
        margin-bottom: 25px;
    }

    .text-project p {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .our-project {
        padding-bottom: 30px;
    }

    .heading-txt-ft-top {
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .ft-top-field {
        margin-left: 0px;
    }

    .heading-txt-ft-top h2 {
        width: 100%;
        font-size: 30px;
        margin-bottom: 5px;
    }

    .heading-txt-ft-top img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    .ft-logo img {
        width: 50%;
        height: 110px;
        object-fit: contain;
    }

    .pg-links-ft {
        margin-left: 0px;
        margin-top: 20px;
    }

    .pg-links-ft ul li a {
        font-size: 14px;
    }

    .pg-links-ft ul li {
        margin-bottom: 5px;
    }

    .pg-links-ft ul {
        column-count: 1;
    }

    .ft-contact-info {
        margin-left: 0px;
        margin-top: 10px;
    }

    .ft-social-links ul {
        gap: 5px;
        padding: 0;
        display: flex;
    }

    .ft-social-links {
        margin-left: 0;
        margin-top: 35px;
    }

    .ft-bottom-text {
        margin-top: 5px;
    }

    .ft-social-links ul li a {
        width: 30px;
        height: 30px;
    }

    .ft-bottom-text p {
        font-size: 14px;
        padding: 6px 0px;
    }

    .ft-contact-info ul li a {
        font-size: 14px;
    }

    .innerbanner {
        height: 250px;
    }

    .book-sec {
        padding: 40px 0px;
    }

    .text-innerbanner h2 {
        font-size: 25px;
        margin-bottom: 2px;
    }

    .text-innerbanner ul li a {
        font-size: 14px;
    }

    .heading-booknow h2 {
        font-size: 30px;
    }

    .heading-booknow p {
        font-size: 14px;
    }

    .heading-booknow {
        margin-bottom: 25px;
    }

    .book-field.prefierd-date input {
        width: 100%;
    }

    .book-field textarea {
        height: 150px;
    }

    .book-checkbox {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
    }

    .book-checkbox p {
        width: 100%;
    }

    .book-checkbox label {
        font-size: 13px;
        width: 90%;
    }

    .row-cols-5.color-grid .col {
        width: 33%;
    }

    .color-box {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .maindv-lips-colcor-picker p {
        font-size: 13px;
    }

    .addShade {
        width: 100%;
    }

    .addShade>div span {
        position: absolute;
        height: 32px;
        width: 48px;
        font-size: 12px;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        right: 5px;
        color: #fff;
    }

    .addShade>div {
        padding: 0 9px;
        padding-right: 66px;
    }

    .maindv-lips-colcor-picker {
        padding: 40px 0px;
    }

    .selected-colors-preview {
        padding: 10px;
        margin-top: 15px;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .total_price {
        margin-top: 25px;
    }

    .text-innerbanner ul {
        flex-wrap: wrap;
    }

    .aboutus-sec.inner-about-sec {
        padding: 40px 0px;
    }

    .text-aboutus p {
        font-size: 13px;
    }

    .contact-field {
        margin-bottom: 15px;
    }

    .contact-field textarea {
        height: 130px;
        margin-top: 15px;
    }

    .contact-field input {
        padding: 10px 10px;
    }

    .contact-sec {
        padding: 50px 0px;
    }

    .contact-field button {
        width: 100%;
        padding: 13px 30px;
        margin-top: 10px;
    }

    section.add-to-cart.all-section {
        padding: 40px 0px;
    }

    .cart-table-qu {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 110px;
    }

    .proceed {
        gap: 15px;
        display: flex;
        margin-top: 25px;
        flex-direction: column;
    }

    .proceed .checkout-btn {
        padding: 12px 15px;
        font-size: 18px;
    }

    .or-amazon {
        padding: 15px 35px;
        margin: 40px auto 20px;
    }

    .total-section {
        margin-left: 0px;
        padding: 15px 20px;
    }

    .total-section li {
        font-size: 14px;
        padding-bottom: 10px;
    }

    .total-section li.color-change {
        font-size: 20px;
    }

    .ship-estimate {
        margin-left: 0px;
        margin-top: 20px;
        padding: 10px 20px;
    }

    .ship-estimate ul {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .ship-estimate li {
        font-size: 20px;
    }

    .ship-estimate .grey-style {
        font-size: 14px;
    }

    .cart_sidebar {
        padding: 20px 15px;
    }

    .billing_form {
        padding: 15px;
        margin-bottom: 20px;
    }

    .billing_form input {
        height: 40px;
        margin-bottom: 10px;
        font-size: 12px;
    }

    .billing_form h3 {
        font-size: 30px;
        margin-bottom: 5px;
    }

    .cart_sidebar h3 {
        font-size: 25px;
        margin-bottom: 5px;
    }

    .cart_sidebar .cart_lst {
        margin-top: 5px;
        margin-bottom: 20px;
    }

    ul.shipping-ul {
        padding: 0 0px 10px;
    }

    .radiosss-payments {
        padding: 0px 0px 10px;
    }

    section.checkout_page {
        padding: 40px 0;
    }

    .check-out-btn button {
        font-size: 14px;
        height: 40px;
    }

    .footer-top {
        padding: 30px 0px;
    }

    .banner-btm-slid .slick-next {
        right: -5px;
        z-index: 1;
    }

    .banner-btm-slid .slick-prev {
        left: -5px;
        z-index: 1;
    }

    .banner-btm-slid .slick-prev:before,
    .banner-btm-slid .slick-next:before {
        font-size: 20px;
    }

    .slicknav_nav a:hover {
       background: #aa1721;
    }


    .add-to-cart .table>thead>tr>th {
       padding-top: 20px;
       font-size: 18px;
    }














}

/*Media Query End*/





.cart-section{
    padding:80px 0;
}
.customization-info .bg-info {
    background-color: rgb(157 22 30) !important;
    color: #fff !important;
}
.input_coupon{
    height:50px !important;
}
#apply-coupon-form .theme-btn{
    margin:0 !important;
}
#apply-coupon-form .input-group{
    align-items: center !important;
}
.card-footer a {
    display: block;
    text-align:center;
}

