@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=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,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: #000;
    white-space: initial;
    font-family: "Montserrat", sans-serif;
}

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;
    padding: 0;
    list-style-type: none;
}

p {
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    margin: 0;
}

.sec {
    padding: 80px 0;
}

/***** 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: 'PPNeueWorld';
    src: url(../font/PPNeueWorld-CondensedRegular.otf);
}

@font-face {
    font-family: 'AmpleSoftPro';
    src: url(../font/FontsFree-Net-AmpleSoftPro.ttf);
}

/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

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

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

/* Button Css Starts */

.theme1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 80px 0 20px;
    gap: 10px;
    height: 50px;
    border-radius: 5px;
    overflow: hidden;
    background-image: linear-gradient(to right, #9e230e, #a33117, #b05a31, #b05a31, #b05a31);
    background-size: 600%;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
    font-size: 14px;
    line-height: 20px;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}

.theme1 span.theme1-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 40%;
    background-color: #fff;
    border-radius: 5px 0 0 5px;
    position: absolute;
    top: 0;
    right: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon {
    width: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
}





.theme2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    gap: 10px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #9e230e;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2:hover {
    background-color: #000;
    border: 1px solid #0000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme2 span.theme2-txt {
    font-size: 14px;
    line-height: 20px;
    font-family: "Montserrat", sans-serif;
    color: #9e230e;
    text-transform: uppercase;
    font-weight: 500;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2:hover span.theme2-txt {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}





.theme3 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    gap: 10px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #fff;
    background-color: #fff;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme3:hover {
    background-color: #000;
    border: 1px solid #0000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme3 span.theme3-txt {
    font-size: 14px;
    line-height: 20px;
    font-family: "Montserrat", sans-serif;
    color: #9e230e;
    text-transform: uppercase;
    font-weight: 500;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme3:hover span.theme3-txt {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}



/* Button Css Ends */


.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: 'PPNeueWorld';
    font-size: 124px;
    line-height: 130px;
    color: #000;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
}

h2 {
    font-family: 'PPNeueWorld';
    font-size: 55px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h3 {
    font-family: 'PPNeueWorld';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0;
}

h4 {
    font-family: 'PPNeueWorld';
    font-size: 24px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h5 {
    font-family: 'PPNeueWorld';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

h6 {
    font-family: 'PPNeueWorld';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

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

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

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

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

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


/*header css start */

header {
    padding: 20px 0 20px 50px;
    position: absolute;
    top: 0;
    left: 0;
    width: 96%;
    z-index: 999;
}

.header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
}


.header-menu {
    /* position: relative; */
}

.header-menu-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    width: 25px;
    cursor: pointer;
}

.header-menu-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.menu-box {
    position: absolute;
    top: 0;
    right: -4vw;
    height: 100vh;
    width: 30%;
    background-image: linear-gradient(to right, #9e230e, #a33117, #b05a31, #b05a31, #b05a31);
    background-size: 600%;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    transition: ease-in-out;
    transition-duration: 0.5s;
    display: none;
}

.menu-cross {
    position: absolute;
    top: 1%;
    left: 2%;
    z-index: 999;
}

.menu-cross button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    background-color: #0000;
    border: 1px solid #fff;
    color: #fff;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.menu-cross button:hover {
    background-color: #000;
    border: 1px solid #0000;
    scale: 1.1;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.menu-cross button i {
    font-size: 20px;
    color: #fff;
}

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 60px 0 0 0;
    margin: 0;
    text-align: right;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    gap: 0;
    height: 100%;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    width: 100%;
    border: 1px solid #fff;
    border-right: none;
    border-left: none;
    border-bottom: none;
    padding: 0;
    height: 60px;
}

.menuSec ul li:first-child {
    border-top: none;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    line-height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    text-transform: uppercase;
    transition: ease-in;
    transition-duration: 0.5s;
}

.menuSec ul li a:hover {
    background-color: #fff;
    color: #000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

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

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

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

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

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

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

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

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

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

/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    /* background: rgba(0, 0, 0, 0.1); */
}

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

section.main_slider .carousel-item {
    height: 100vh;
}

section.main_slider {
    position: relative;
}

.banner_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    object-fit: cover;
}

.banner-header h4 {
    font-size: 79px;
    line-height: 85px;
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-image: linear-gradient(to right, #9e230e, #a33117, #b05a31, #b05a31, #b05a31); */
    background-size: 600%;
    height: 100%;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    text-transform: uppercase;
    color: #fff;
}

.banner_text-ex .banner-header h4 {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #9e230e, #a33117, #b05a31, #b05a31, #b05a31);
}

.banner_text_ex .banner-header h4 {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #9e230e, #a33117, #b05a31, #b05a31, #b05a31);
}

.banner-header {
    text-align: center;
}

.banner_text_ex .banner-box .banner-header {
    text-align: start;
}

.banner-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 330px;
    width: 440px;
    object-fit: cover;
    object-position: 0 -170px;
}

.banner-ex-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100%;
    object-fit: cover;
    object-position: 0 32%;
}

.banner-card-txt {
    width: 70%;
    /* background-color: #fff; */
    position: relative;
    bottom: 0;
    left: 0;
    text-align: center;
    margin: 0 auto;
}

.banner-card-txt p {
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.banner-video-main {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    position: relative;
    width: 50%;
    margin: 20px 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

.banner-video-txt h6 {
    font-size: 14px;
    line-height: 20px;
    color: #000;
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-weight: 300;
}

.banner-video-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 50%;
    border-bottom: 2px solid #00000059;
}

.banner-video-main::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    width: 10%;
    border-bottom: 2px solid #a73f20;
    transition: ease-out;
    transition-duration: 0.5s;
}


.banner_text:hover .banner-video-main::after {
    width: 50%;
    right: 50%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.banner-video a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 100px;
    color: #fff;
    background-image: linear-gradient(to right, #9e230e, #a33117, #b05a31, #b05a31, #b05a31);
    background-size: 600%;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: gradients;
}

.banner-header h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.banner_text_ex .banner-box h1 {
    justify-content: end;
}

.banner_text_ex .banner-header h1 {
    color: #000;
}

.banner_text {
    width: 70%;
    margin: 0 auto;
    transition: ease-in;
    transition-duration: 0.5s;
    padding: 50px;
    background-color: #a3311754;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(15px);
}

.banner_text_ex {
    width: 95%;
    margin: 0 0 0 auto;
    background-color: #0000;
    border-radius: 0;
    -webkit-backdrop-filter: unset;
    backdrop-filter: unset;
}

.banner-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 100px;
    height: 100%;
    padding: 30px 20px 0 20px;
    background-image: linear-gradient(to right, #9e230e, #a33117, #b05a31, #b05a31, #b05a31);
    background-size: 600%;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    transition: ease-in;
    transition-duration: 0.5s;
}

.banner-bottom-cont-mian, .banner-bottom-socials-mian {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 50px;
    position: relative;
}

.banner-bottom-cont-mian::before {
    content: '';
    position: absolute;
    top: 65%;
    left: 50%;
    border-right: 1px solid #FFF;
    height: 20%;
}

.banner-bottom-socials-mian::before {
    content: '';
    position: absolute;
    top: 27%;
    left: 50%;
    border-right: 1px solid #FFF;
    height: 15%;
}

.banner-bottom-cont-txt h5, .banner-bottom-socials-txt h5 {
    font-size: 14px;
    line-height: 20px;
    color: #FFF;
    font-family: 'Montserrat';
    text-transform: uppercase;
    letter-spacing: 2px;
    writing-mode: sideways-rl;
}

.banner-bottom-cont-icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(138deg) brightness(102%) contrast(101%);
}

.banner-bottom-main {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 80%;
}

.banner-socials ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
}

.banner-socials ul li a i {
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    font-size: 15px;
    border-radius: 100px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.banner-socials ul li a i:hover {
    color: #fff;
    background-color: #9e230e;
    background-size: 600%;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    transition: ease-out;
    transition-duration: 0.5s;
}

section.inner-banner .banner_text .banner-socials ul li a i {
    color: #000;
}

section.inner-banner .banner_text .banner-socials ul li a i:hover {
    color: #fff;
}

.banner-arrows {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 50px;
    width: 150px;
    position: absolute;
    bottom: 2%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 9999999;
}

.carousel-control-prev, .carousel-control-next {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    padding: 15px;
    position: relative;
    border-radius: 100px;
    border: 1px solid #fff;
    background-color: #9e230e;
}


.carousel-control-prev-icon {
    background-image: url('../images/banner-arrow-leftt.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    filter: brightness(0) saturate(100%) invert(87%) sepia(100%) saturate(7%) hue-rotate(263deg) brightness(109%) contrast(97%);
    opacity: 1;
}

.carousel-control-next-icon {
    background-image: url('../images/banner-arrow-right.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    filter: brightness(0) saturate(100%) invert(87%) sepia(100%) saturate(7%) hue-rotate(263deg) brightness(109%) contrast(97%);
    opacity: 1;
}

video.banner-video, iframe.banner-video {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*banner css Ends*/

/*Inner Banner Css Starts*/

section.inner-banner .carousel-item {
    height: 650px;
}

section.inner-banner .banner-header h1 {
    justify-content: start;
}

section.inner-banner .banner_text .banner-bottom-socials-mian {
    flex-direction: row;
    justify-content: start;
    gap: 70px;
    display: inline-flex;
}

section.inner-banner .banner_text .banner-bottom-socials-txt h5 {
    writing-mode: unset;
    color: #000;
}

section.inner-banner .banner-socials ul {
    flex-direction: row;
}

section.inner-banner .banner-bottom-socials-mian::before {
    top: 50%;
    left: 25%;
    height: 1%;
    width: 20%;
    border-right: 0;
    border-bottom: 1px solid #000;
}

section.inner-banner .in-ban-ex {
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: end;
}

section.inner-banner .banner_text {
    height: 100%;
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    gap: 200px;
    padding: 0;
    margin: 0 0 0 auto;
}

.inner_banner_text {
    width: 100%;
    background-color: #0000;
    border-radius: 0;
    -webkit-backdrop-filter: unset;
    backdrop-filter: unset;
}

.inner_banner_text .banner-header h1 {
    color: #000;
}

section.inner-banner .banner-bottom {
    background-image: none;
}

section.inner-banner .banner-bottom .banner-bottom-cont-txt h5 {
    color: #000;
}

section.inner-banner .banner-bottom-cont-mian::before {
    border-right: 1px solid #000;
}

section.inner-banner .banner-bottom-cont-icon img {
    filter: unset;
}

/*Inner Banner Css Ends*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/*---------------------------------------------------- Banner Section Start ----------------------------------------------------------- */



/*About Us Sec Css Starts */

section.about-sec {
    position: relative;
    padding: 400px 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

section.about-sec:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.about-ex-img img {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    transition: ease-in;
    transition-duration: 0.5s;
}

.about-ex-img img:hover {
    scale: 1.1;
    transition: ease-out;
    transition-duration: 0.5s;
}

.about-ex-img img.about1 {
    height: 195px;
    width: 275px;
    top: 30%;
    left: 2%;
}

.about-ex-img img.about2 {
    height: 230px;
    width: 375px;
    object-position: 0 -80px;
    top: 8%;
    left: 40%;
}

.about-ex-img img.about3 {
    height: 140px;
    width: 195px;
    top: 30%;
    right: 10%;
    object-position: 0 -30px;
}

.about-ex-img img.about4 {
    height: 300px;
    width: 450px;
    object-position: 0 -10px;
    bottom: 18%;
}

.about-ex-img img.about5 {
    height: 280px;
    width: 395px;
    object-position: 0 -140px;
    bottom: 10%;
    right: 22%;
}

.about-ex-img img.about6 {
    height: 230px;
    width: 295px;
    object-position: 0 0;
    right: 0;
    top: 50%;
}

.about-txt-mian {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 20px;
    width: 80%;
    margin: 0 auto;
}

.about-heading {
    width: 100%;
}

.about-heading h3 {
    font-size: 93px;
    line-height: 98px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #9e230e, #a33117, #b05a31, #b05a31, #b05a31);
    background-size: 600%;
    height: 100%;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    text-transform: uppercase;
}

.about-heading h2 {
    font-size: 127px;
    line-height: 132px;
    text-transform: uppercase;
    width: 85%;
    margin: 0 0 0 auto;
}

.about-txt {
    position: relative;
    width: 55%;
    margin: 0 auto 0 40%;
}

.about-txt::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -40%;
    width: 35%;
    border-bottom: 2px solid #00000036;
}

.about-txt::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -69px;
    width: 7%;
    border-bottom: 2px solid #9e220e;
    transition: ease-out;
    transition-duration: 0.5s;
}

.about-txt p {
    text-transform: uppercase;
}

.about-btn {
    width: 20%;
    margin: 0 auto;
}

/*About Us Sec Css Ends */

/*Products Sec Css Starts */

section.products-sec .container-fluid {
    width: 95%;
    margin: 0 auto;
    padding: 0;
}

.products-box {
    position: relative;
}

.products-img-main {
    display: flex;
    align-items: center;
    justify-content: start;
}

.products-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 720px;
    width: 100%;
    object-fit: cover;
    object-position: 0 0;
}

.products-bg1-main img.products-bg1 {
    object-position: -140px 0;
}

.products-bg1-main {
    width: 30%;
}

.products-bg2-main {
    width: 70%;
}

.products_slider .slick-slide {
    margin: 0;
}

.products_slider, .products_slider .slick-list.draggable, .products_slider .slick-track, .products_slider .slick-slide{
    height: 100% !important;
}

.products-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    width: 100%;
}

.products-slider-main {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 75%;
    width: 20%;
}

.products-card-main {
    background-image: linear-gradient(to right, #9e230e, #a33117, #b05a31, #b05a31, #b05a31);
    background-size: 600%;
    background-position: 0 0;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    padding: 50px 40px 30px 30px;
    height: 100%;
}

.products-card-top {
    width: 100%;
}

.products-card-top ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.products-card-top ul::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 12%;
    border-bottom: 1px solid #ffffff63;
    width: 70%;
}

.products-card-top ul li h5 {
    font-size: 15px;
    line-height: 36px;
    color: #fff;
}

.products-card-img {
    width: 100%;
}

.products-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 100%;
    object-fit: cover;
    object-position: 0 0;
}

.products-card-img img.products-10 {
    object-position: 0 -90px;
}

.products-card-txt * {
    color: #fff;
}

.products-card-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.products-card-txt a {
    transition: ease-in;
    transition-duration: 0.5s;
}

.products-card-txt h4 {
    position: relative;
    font-size: 20px;
    line-height: 25px;
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.products-card-txt h4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    border-bottom: 1px solid #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.products-card-txt a:hover h4::before {
    width: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
}

.products-card-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: #fff;
    transition: ease-in;
    transition-duration: 0.5s;
}

.products-card-btn a:hover {
    background-color: #000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.products-card-btn a i {
    font-weight: 500;
    font-family: "Font Awesome 5 pro";
    color: #000;
    transition: ease-in;
    transition-duration: 0.5s;
}

.products-card-btn a:hover i {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

/*Products Sec Css Ends */

/* Effortless Sec Css Starts */

section.effortless-sec {
    padding: 110px 0;
}

.effortless-img {
    overflow: hidden;
    transition: ease-in;
    transition-duration: 0.5s;
}

.effortless-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: ease-out;
    transition-duration: 0.5s;
}

.effortless-img:hover img {
    scale: 1.1;
    transition: ease-out;
    transition-duration: 0.5s;
}

.effortless-txt {
    height: 400px;
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
    padding: 60px 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.effortless-txt a.theme_btn {
    border-color: #fff;
    -webkit-text-fill-color: unset;
}

.effortless-txt h2 span {
    display: block;
}

.effortless-txt h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 61px;
    margin-bottom: 5px;
}

.effortless-txt p {
    font-size: 14px;
    color: #fff;
    opacity: 80%;
    line-height: 25px;
    margin-bottom: 15px;
}

.effortless_slider .slick-slide {
    margin: 0px 5px;
}

/* Effortless Sec Css Ends */

/* Detail Matters Sec Start */

section.detail-matters {
    position: relative;
    margin-bottom: 130px;
    transition: ease-in;
    transition-duration: 0.5s;
}

section.detail-matters:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

section.detail-matters .container-fluid {
    width: 93%;
    margin: 0 auto;
}

.detail-txt h2 {
    text-transform: uppercase;
    font-size: 65px;
    background-image: linear-gradient(to right, #9e230e, #a33117, #b05a31, #b05a31, #b05a31);
    background-size: 600%;
    background-position: 0 0;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.disc {
    display: flex;
    align-items: baseline;
    width: 70%;
    margin: 0 0 0 auto;
    gap: 10px;
    margin-bottom: 25px;
}

.disc h1 {
    font-size: 133px;
    color: #333333;
    text-transform: uppercase;
    height: 110px;
}

.disc h4 {
    font-size: 60px;
    text-transform: uppercase;
    writing-mode: sideways-lr;
    background-image: linear-gradient(to right, #9e230e, #a33117, #b05a31, #b05a31, #b05a31);
    background-size: 600%;
    background-position: 0 0;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.detail-txt p {
    font-size: 14px;
    width: 83%;
    margin: 0 0 0 auto;
    text-transform: uppercase;
    line-height: 26px;
}

.detail-txt:before {
    content: '';
    position: absolute;
    top: 39.5%;
    left: 90px;
    width: 40px;
    height: 3px;
    z-index: 0;
    background: #9e220e;
    transition: ease-out;
    transition-duration: 0.5s;
}

.detail-txt:after {
    content: '';
    position: absolute;
    top: 39.5%;
    left: 0;
    background: #00000080;
    width: 90px;
    height: 1px;
    z-index: 0;
}

.detail-iner-1 img {
    width: 100%;
    height: 245px;
}

.detail-iner-1 {
    position: absolute;
    left: 19%;
    bottom: 14%;
    transition: ease-in;
    transition-duration: 0.5s;
}

section.detail-matters:hover .detail-iner-1 {
    left: 12%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.detail-iner-2 {
    position: absolute;
    bottom: 0;
    left: 0px;
}

.detail-iner-2 img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.detail-img img {
    width: 100%;
    margin: 0px 0 0 auto;
    height: 750px;
    object-fit: cover;
    object-position: top;
}

.detail-img {
    width: 95%;
    margin: 0 0 0 auto;
}

.detail-txt {
    padding-top: 30px;
}

.shop-detail {
    position: absolute;
    bottom: 5%;
    left: 22%;
}

.shop-detail a {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: ease-in;
    transition-duration: 0.5s;
    transition-delay: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
}

.shop-detail a:hover::after {
    height: 105%;
    transition: ease-out;
    transition-delay: 0.5s;
    transition-duration: 0.5s;
    left: -2px;
    width: 105%;
}

.shop-detail a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 0;
    background-color: #a12b13;
    transition: ease-out;
    transition-duration: 0.5s;
    z-index: -1;
}

.shop-detail a:hover::before {
    width: 105%;
    transition: ease-out;
    transition-duration: 0.5s;
    left: -2px;
}

.shop-detail a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 0;
    border-bottom: 1px solid #af572e;
    transition: ease-out;
    transition-duration: 0.5s;
    transition-delay: 0.5s;
    z-index: -1;
}

.shop-detail a:hover {
    color: #fff !important;
    -webkit-text-fill-color: unset;
}

.shop-detail:before {
    content: '';
    position: absolute;
    top: 11px;
    left: -61%;
    width: 35px;
    height: 3px;
    z-index: 0;
    background: #9e220e;
    transition: ease-out;
    transition-duration: 0.5s;
}

.shop-detail:after {
    content: '';
    position: absolute;
    top: 44%;
    left: -160%;
    background: #00000080;
    width: 100px;
    height: 1px;
    z-index: 0;
}

/* Detail Matters Sec Ends */

/* Luxurious Sec Css Start */

section.lexrious-sec {
    background-image: url(../images/luxurious-back.jpg);
    width: 100%;
    height: 670px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 0;
}

section.lexrious-sec:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #000000e3;
    width: 100%;
    height: 100%;
    opacity: 50%;
    z-index: -1;
}

.luxrious-main h2 {
    font-size: 190px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
}

.luxros-fst.q {
    position: absolute;
    top: 15%;
    left: -4%;
}

.luxros-fst.t {
    position: absolute;
    bottom: 15%;
    right: -4%;
}

.luxros-fst {
    background: #fff;
    padding: 10px 10px;
}

.luxros-txt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 7px;
}

.luxros-fst img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

section.lexrious-sec .container,
section.lexrious-sec .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

section.lexrious-sec .container {
    position: relative;
}

.luxros-txt p {
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    transition: ease-in;
    transition-duration: 0.5s;
}

.luxros-txt p::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #000;
    width: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.luxros-txt p:hover::before {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.luxros-txt span {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}


@layer demo {

    :root {

        --blob-size: 500px;
        --blob-speed: 6s;
        --blob-opacity: 1;
        --blob-blur: 80px;
        --blob-color: #cf9c83;
    }

    .blobs {

        /* position: relative; */
        filter: blur(var(--blob-blur));
        /* width: 100%; */
        /* height: 100%; */
    }

    .blob {
        width: var(--blob-size);
        height: calc(0.25 * var(--blob-size));
        background-color: var(--blob-color);
        border-radius: 100%;
        opacity: var(--blob-opacity);
        mix-blend-mode: multiply;
        animation: blob ease-in-out var(--blob-speed) infinite;
    }

    @keyframes blob {

        0%,

        100% {
            transform: scale(0.8, 2);
        }

        50% {
            transform: scale(1.4, 0.8);
        }
    }

    .blob-rotate {
        position: absolute;
        left: 0;
        top: 40px;
        animation: blob-rotate linear var(--blob-speed) infinite alternate;
        width: 100%;
        height: 100%;
    }

    @keyframes blob-rotate {

        0% {
            transform: translate3d(0, 0, 0) rotateZ(-28deg);
            transform-origin: 50% 100%;
        }

        100% {
            transform: translate3d(0, 0, 0) rotateZ(28deg);
            transform-origin: 50% 0%;
        }
    }
}

/* Luxurious Sec Css Ends */

/* News Section Css Starts */

.news-head {
    text-align: center;
    margin-bottom: 45px;
}

.news-head h2 {
    text-transform: uppercase;
    line-height: 1;
}

.news-head p {
    width: 47%;
    margin: 0 auto;
}

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

section.latest-news-sec .row.e {
    margin-bottom: 80px;
}

.news-main img {
    width: 60%;
    height: 410px;
    object-fit: cover;
    transition: ease-in;
    transition-duration: 0.5s;
}

.news-main img:hover {
    scale: 1.05;
    transition: ease-out;
    transition-duration: 0.5s;
}

img.diff-new {
    object-position: -130px 0;
}

.news-txt {
    position: absolute;
    top: 10%;
    right: 10px;
    background: #fff;
    padding: 35px 30px 35px 35px;
    width: 70%;
    box-shadow: 3px 0px 10px 0px #44444445;
}

.news-main {
    position: relative;
}

.news-txt span {
    padding: 7px 13px;
    font-size: 11px;
    color: #fff;
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
    text-transform: uppercase;
}

.news-txt h3 {
    margin-top: 15px;
    font-size: 28px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
    line-height: 37px;
    font-weight: 400;
}

.news-txt p {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 25px;
}

.news-txt ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-txt h3 span {
    font-size: unset;
    background: unset;
    padding: unset;
    display: block;
    color: #000;
}

.news-txt h3 span {
    font-size: unset;
    background: unset;
    padding: unset;
    display: block;
    color: #000;
    text-transform: none;
}

.news-txt ul li a i {
    border: 1px solid #9e220e;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: ease-in;
    transition-duration: 0.5s;
}

.news-txt ul li a i:hover {
    background-image: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-color: #9e220e;
    border: 1px solid #0000;
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.news-main.e:before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -23px;
    background: #cacaca;
    width: 100px;
    height: 100px;
    z-index: -1;
}

.news-main.rr:before {
    content: '';
    position: absolute;
    top: -20px;
    right: 36%;
    background: #e7e7e8;
    width: 110px;
    height: 65px;
    z-index: -1;
}

/* News Section Css Ends */

/* Follow Insta Sec Css Starts */

.follow-img-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
}

.follow-img-main:before {
    content: "";
    position: absolute;
    top: 140px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    background: #b05a3154;
    z-index: 1;
    transition: 0.4s;
}

.follow-img-main {
    position: relative;
}

.follow-img-main:hover:before {
    height: 100%;
    width: 100%;
    top: 0;
}

.follow-img-main .logo-insta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    margin: 0 auto;
    text-align: center;
    transition: 0.5s;
    opacity: 0;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #a73c1e;
}

.follow-img-main:hover .logo-insta {
    opacity: 1;
    bottom: 40%;
}

.follow-img-main .logo-insta i {
    font-size: 20px;
    color: #fff;
}

.follow-insta-sec {
    margin-bottom: 100px;
}

.insta-head {
    text-align: center;
    margin-bottom: 40px;
}

.insta-head h2 {
    color: #333333;
    text-transform: uppercase;
}

.insta-head h2 span {
    color: #9e220e;
}

/* Follow Insta Sec Css Ends */

/*---------------------------------------------------- Banner Section End ------------------------------------------------------------- */

section.pd-details {
    padding-top: 100px;
    position: relative;
    padding-bottom: 30px;
}

.product-main {
    position: relative;
}

.product-main.i:after {
    background: unset;
}

.product-main:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 19px;
    background: #d9cdc9;
    width: 110%;
    height: 1px;
}

.product-main:after {
    content: '';
    position: absolute;
    left: 104%;
    top: 0;
    background: #d9cdc9;
    width: 1px;
    height: 452px;
}

.product-main.i:before {
    width: 100%;
}

.product-main.e:after {
    height: 431px;
}

section.pd-details .pd-dt-img img {
    position: relative;
    transition: 0.5s;
    width: 100%;
}

section.pd-details .pd-dt-img {
    position: relative;
    padding-right: 20px;
}

section.pd-details .pd-dt-img img:hover {
    filter: brightness(0.6);
    cursor: pointer;
}

section.pd-details h3 {
    color: #394136;
    font-size: 40px;
    line-height: 45px;
    text-transform: uppercase;
}

section.pd-details h3 span.price {
    float: right;
    font-weight: 600;
    font-size: 40px;
    line-height: 45px;
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section.pd-details .pd-rate {
    margin-bottom: 10px;
}

section.pd-details p {
    font-size: 16px;
    line-height: 29px;
    color: #636363;
}

.detail-product-btn {
    margin-top: 20px;
}

section.pd-details .pd-rate ul {
    margin: 0px;
    display: flex;
    align-items: center;
    gap: 2px;
    padding-top: 8px;
}

section.pd-details .pd-rate ul li a i {
    color: #ffba00;
    font-size: 22px;
    transition: 0.9s;
    cursor: pointer;
}

section.pd-details .pd-rate ul:hover li a i {
    color: #000;
    transform: rotate(360deg) scale(1.2);
}

section.pd-details .pd-rate ul li:last-child a i {
    color: #cccccc;
}

section.pd-details .pd-rate ul:hover li:last-child a i {
    color: #000;
}

section.pd-details .pd-rate ul li:nth-last-child(2) a i {
    color: #cccccc;
}

section.pd-details .pd-rate ul:hover li:nth-last-child(2) a i {
    color: #000;
}

section.pd-details .descp {
    margin-bottom: 25px;
}

section.pd-details .number-item {
    position: relative;
}

section.pd-details .number-item li h5 {
    font-weight: 500;
    color: #394136;
    margin-right: 40px;
    font-size: 21px;
    line-height: 36px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

section.pd-details .number-item li.inc {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0px 0px;
    color: #000;
    font-size: 15px;
}

section.pd-details .number-item li.inc input.input-number {
    border: 2px solid #e5e5e5;
    margin: 0px auto;
    padding: 10px 0px;
    text-align: center;
    width: 70px;
    border-radius: 10px;
}

section.pd-details .number-item li.inc::placeholder {
    font-weight: 600;
}

section.pd-details .number-item li.inc span {
    border: 1px solid #d6d6d6;
    font-weight: 500;
    font-size: 15px;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 25px;
    height: 25px;
    border-radius: 45px;
}

section.pd-details .number-item li.inc span:hover {
    color: #fff;
    cursor: pointer;
    border-color: transparent !important;
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
}

section.pd-details .number-item ul {
    margin-bottom: 22px;
}

section.pd-details ul.product-tage {
    position: relative;
}

section.pd-details ul.product-tage li {
    display: grid;
    grid-template-columns: 1fr 11fr;
    align-items: center;
    margin-bottom: 6px;
}

section.pd-details ul.product-tage li span {
    color: #636363;
    line-height: 30px;
}

section.pd-details .pd-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: 0px auto;
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
}

section.pd-details .pd-gallery img {
    transform: scale(1.2);
    transition: 0.5s;
}

section.pd-details .colLeft {
    position: relative;
}

section.pd-details .pd-gallery img:hover {
    transform: unset;
    filter: brightness(0.5);
    cursor: pointer;
}

section.pd-detail .pd-dt-content {
    padding-left: 20px;
}

section.pd-details .pd-dt-content {
    padding-left: 20px;
    padding-top: 30px;
}

.product-disc {
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

.product-disc .nav-tabs .nav-link {
    padding: 20px 50px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    background-color: #f1f1f1;
    letter-spacing: 1px;
    border-radius: 4px !important;
    transition: 0.9s;
    font-family: 'PPNeueWorld';
    text-transform: uppercase;
    color: #000;
}

.product-disc .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #fff;
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
}

.product-disc .nav-tabs .nav-link:hover {
    background-color: #222222 !important;
    color: #fff;
    transform: translate(0px, -10px);
}

.product-disc .nav-tabs li.nav-item {
    margin-bottom: 40px;
}

.product-disc .tab-content p {
    padding-top: 15px;
    color: #636363;
    line-height: 35px;
    font-size: 17px;
}

.product-disc .nav-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #e3e3e3;
}

/* reives */

.tab-content input[type="text"] {
    width: 100%;
    background-color: transparent;
    box-shadow: 0px 0px 0px 2px #e7e6e6;
    border-radius: 5px;
    color: var(--black-color);
    font-size: 14px;
    line-height: 24px;
    padding: 16px 20px;
    border: 0px;
    margin-bottom: 20px;
}

.tab-content textarea {
    width: 100%;
    background-color: transparent;
    box-shadow: 0px 0px 0px 2px #e7e6e6;
    border-radius: 5px;
    color: var(--black-color);
    font-size: 14px;
    line-height: 24px;
    padding: 16px 20px;
    border: 0px;
    margin-bottom: 20px;
}

.tab-content h6 {
    margin-top: 30px;
    color: var(--black-color);
    font-size: 25px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rev-btn button {
    border: 1px solid #9e220e;
    padding: 10px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border-radius: 12px;
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-size: 14px;
}

.rating:not(:checked)>input {
    position: absolute;
    appearance: none;
}

.rating>input:checked~label {
    color: var(--secondary-color);
}

.rating:not(:checked)>label:before {
    content: "\f006 ";
    font-family: "fontawesome";
    font-size: 30px;
    margin: 0px 8px;
}

.rev-btn {
    margin-top: 20px;
}

.rating:not(:checked)>label {
    float: right;
    cursor: pointer;
    font-size: 50px;
    color: #666;
    font-family: "Roboto", sans-serif;
}

div#reviews button.btn-1.tabs-btn {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 26px;
    padding: 14px 60px;
    text-align: center;
    transition: 0.5s;
    box-shadow: 0px 0px 2px 1px #e7e5e6;
    background-color: #eee8da;
    color: #000;
    border: 0px;
    font-weight: 500;
}

div#reviews button.btn-1.tabs-btn:hover {
    background-color: #000;
    color: #fff;
}

.description .tab-content textarea::placeholder {
    color: #9e9e9e;
    font-family: "Poppins";
}

.buttn.my-2 a.p-btn {
    display: inline-block;
    padding: 14px 40px;
}

.buttn.my-2 a.p-btn span {
    display: inline-block;
}

section.pd-details ul.product-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    position: absolute;
    bottom: -70px;
    right: 0;
    left: 0;
}

section.pd-details ul.product-gallery li a {
    display: block;
    position: relative;
    transition: 1.2s;
}

section.pd-details ul.product-gallery li a img {
    position: relative;
    transition: 0.9s;
    cursor: pointer;
}

section.pd-details ul.product-gallery li a:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 98%;
    background: #222222;
    top: 2px;
    bottom: 0;
    z-index: 1;
    left: 0;
    right: 0;
    transition: 0.9s;
    opacity: 0;
    display: table;
    margin: 0px auto;
}

section.pd-details ul.product-gallery li a:hover:before {
    width: 0%;
    opacity: 1;
}

section.pd-details ul.product-gallery li a:after {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    background: transparent;
    top: 0;
    bottom: 0;
    z-index: 1;
    left: 0;
    right: 0;
    transition: 0.9s;
    display: table;
    outline: 9px solid #ffba00;
    outline-offset: -10px;
    opacity: 0;
    margin: 0px auto;
}

section.pd-details ul.product-gallery li a:hover:after {
    width: 100%;
    opacity: 1;
}

section.pd-details ul.product-gallery li a:hover {
    transform: translate(0px, -6px);
}

/* product detials page  */


/*Product page Start*/
section.productdetail {
    padding: 100px 0px;
}

section.productdetail .dd-button {
    margin-bottom: 20px;
    border: 0;
    text-transform: uppercase;
    padding: 14px 10px 14px 30px;
    cursor: pointer;
    font-size: 24px;
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
}

section.productdetail .dd-button h3 {
    font-size: 23px;
    font-weight: 400;
    color: #fff;
    line-height: 25px;
    margin: 0;
}

ul.ul1prodetail h3 span {
    float: inline-end;
}

ul.ul1prodetail h3 span a i {
    color: #000;
}

.ul1prodetail li {
    font-family: "Poppins";
    font-size: 14px;
    color: #000;
}

/* Dropdown */

.dropdown {
    width: 100%;
    margin-bottom: 40px;
}

.dd-menu li:last-child {
    border-bottom: 0px !important;
}

.dd-input {
    display: none;
}

section.productdetail .row.conts {
    align-items: center;
    margin-top: 11px;
    margin-bottom: 50px;
}

.dd-menu {
    border-radius: 4px;
    padding: 0;
    margin: 2px 0 0 0;
    list-style-type: none;
}

.dd-input+.dd-menu {
    display: none;
}

.dd-input:checked+.dd-menu {
    width: 100%;
    margin: 0px auto;
    display: inline-block;
    position: unset;
    margin-top: 20px;
}

.dd-menu li {
    white-space: nowrap;
    padding: 15px 40px;
    line-height: 25px;
    text-transform: capitalize;
    box-shadow: 0px 0px 1px 1px #dddddd;
    margin-bottom: 7px;
    transition: 0.9s;
    cursor: pointer;
    font-family: 'Montserrat';
    font-size: 16px;
}

.dd-menu li:hover {
    background-color: #f6f6f6;
}

.dd-menu li a {
    display: block;
    margin: -10px -20px;
    padding: 10px 20px;
}

select#categories {
    padding: 17px 20px;
    border: none;
}

select#categories option {
    padding: 17px 20px;
}

ul.ul2prodetail h3 {
    margin-bottom: 20px;
    border: 0;
    text-transform: uppercase;
    padding: 14px 10px 10px 30px;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
}

ul.ul2prodetail li a input {
    display: none;
}

ul.ul2prodetail li a {
    color: #222222;
    font-size: 16px;
}

ul.ul2prodetail li span {
    font-family: "poppins";
    color: #222222;
    font-size: 16px;
}

ul.ul2prodetail li {
    white-space: nowrap;
    padding: 15px 40px;
    line-height: 25px;
    text-transform: capitalize;
    box-shadow: 0px 0px 1px 1px #dddddd;
    margin-bottom: 10px;
    transition: 0.9s;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Montserrat';
    font-size: 16px;
}

.prod-sec-prod-pg {
    margin-top: 30px;
}

section.productdetail .pd-box {
    margin-bottom: 50px;
}

.heading-prd {
    position: relative;
}

.heading-prd h5 {
    font-size: 26px;
    line-height: 35px;
    margin: 0;
    text-transform: uppercase;
}

.sort p {
    font-family: 'Montserrat';
    color: #666666;
    font-size: 19px;
    line-height: 26px;
    margin: 0;
    font-weight: 400;
    text-align: right;
}

ul.view-pd {
    display: flex;
    justify-content: flex-end;
    margin: 0px;
    gap: 20px;
    align-items: center;
}

ul.view-pd li span {
    font-size: 18px;
    line-height: 26px;
    color: #666666;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
}

/*Product page End*/

.product-txt {
    padding: 10px 2px 35px;
}

.rate-product i {
    color: #ffa800;
    font-size: 12px;
}

.rate-product span {
    font-family: 'Montserrat';
    font-size: 12px;
}

.product-txt p {
    font-size: 13px;
    line-height: 25px;
}

.product-txt h6 {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}

.rate-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.rate-product span {
    font-size: 14px;
}


.final-prod-add {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.add-pro:hover a i {
    color: #c1272d;
}

.add-pro:hover a h6 {
    color: #c1272d;
}


.add-pro a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-pro h6 {
    font-family: 'Montserrat';
    font-size: 14px;
    text-transform: uppercase;
    border-right: 1px solid #94918e;
    padding-right: 50px;
    color: #94918e;
}

.final-prod-add h4 {
    font-family: 'BlenderPro';
    font-size: 25px;
    color: #c1272d;
}

.add-pro i {
    color: #94918e;
}

.menuSec a.theme-btn {
    height: 45px;
}

.productdetailportion img {
    width: 100%;
    height: 530px;
    object-fit: cover;
}

.productdetailsmallportion img {
    width: 100%;
    height: 100px;
    object-fit: scale-down;
}

.productdetailnav {
    margin-top: -70px;
}

.productdetailsmallportion {
    background: #fff;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    padding: 0 5px;
}

.slick-slide {
    opacity: 1;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/*-------------------------------------------------------- Inner Cart Start --------------------------------------------------------------------*/

/* CART PAGES CSS:STRT */

.product-cart figure,
.product-cart article {
    display: inline-block;
}

.product-cart {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.checkout-bttn a {
    font-size: 18px;
}


.cart-page-tble thead tr {
    height: 40px;
    color: #fff;
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
}

.cart-page-tble thead tr th {
    padding: 20px 30px;
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'PPNeueWorld';
}

.cart-page-tble tbody tr td {
    padding: 32px 0px;
}

table.cart-page-tble {
    width: 100%;
}

.product-cart article p {
    font-size: 17px;
    color: #4d4c4c;
    text-transform: uppercase;
    margin: 0 0 0px;
    line-height: 30px;
}

.product-cart article {
    margin-left: 10px !important;
}

.cart-page-tble tbody tr td .num-in {
    background: transparent;
    box-shadow: none;
    width: 90%;
    height: 52px;
    border: 1px solid #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
}

td.quanity.text-center {
    width: 30%;
}

.cart-page-tble tbody tr td .num-in span.minus {
    border-right: 1px solid #e1e1e1;
}

.cart-page-tble tbody tr td .num-in span.plus {
    border-left: 1px solid #e1e1e1;
}


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

.cart-page-tble tbody tr td .num-in span {
    width: 50px !important;
    height: 50px !important;
    margin: 5px 0;
    position: relative;
}

.cart-page-tble tbody tr td .num-in span:before,
.cart-page-tble tbody tr td .num-in span:after {
    background-color: #4d4c4cf2;
}

.cart-page-tble tbody tr td .num-in span:hover:before,
.cart-page-tble tbody tr td .num-in span:hover:after {
    background-color: rgb(255, 255, 255) !important;
}

.cart-page-tble tbody tr td .num-in span:hover {
    background-color: #f81b2a;
}

.cart-page-tble tbody tr td .num-in {
    width: 70%;
    margin: 0 auto;
}

.num-in input {
    float: left;
    width: 45%;
    height: 37px;
    border: none;
    text-align: center;
    background-color: transparent;
    font-family: 'Montserrat';
    font-size: 20px;
    font-weight: 600;
    margin: 0 5px;
    color: #4d4c4cf2;
}


.update-cart {
    font-size: 17px;
    text-transform: capitalize;
    color: #4d4c4cf2;
    margin-top: 10px;
}

.shipping.text-black h4 {
    font-size: 30px;
    text-transform: uppercase;
}

.estimate.text-black h4 {
    font-size: 30px;
    text-transform: uppercase;
}

.unit-sub-price-text {
    font-size: 17px;
    color: #4d4c4c;
    font-family: 'Montserrat';
}

.cart-page-tble tbody tr {
    border-bottom: 1px solid #c4c4c4;
}

.cart-page-tble tbody tr td i {
    border-radius: 0;
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
    font-size: 30px;
}

.cart-cross {
    height: 40px;
    width: 40px;
    font-size: 25px;
    background: #000000;
    color: #fff;
    padding: 7px;
}

.total-box,
.total-f,
.shipping-box {
    padding: 30px 30px 0px 50px;
    /* background-color: #f7f7f7; */
    /* border: 1px solid #8989893d; */
}

.shipping.text-black {
    margin-bottom: 21px;
}

.estimate.text-black.mt-30 {
    margin-bottom: 15px;
}

.total-box {
    border-bottom: unset;
}

.total-f {
    padding: 10px 40px 10px 50px;
    border-top: unset;
}

.total-box .sum li {
    color: #4d4c4ceb;
    font-size: 18px;
    line-height: 35px;
    margin-bottom: 20px;
}

.total-f h4 {
    font-size: 30px;
    text-transform: uppercase;
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.total-box .sum li span {
    margin-left: 60px;
}

.total-f span {
    margin-left: 71px;
}

.checkout-bttn {
    width: 90%;
    margin: 0 auto;
}

.cart-paypal-box {
    padding: 30px 20px;
    border: 3px solid #c4c4c4;
    border-radius: 8px;
    width: 90%;
    margin: 0 auto;
    margin-top: 15px;
}

.cart-paypal-box p {
    display: block;
    width: fit-content;
    margin: auto;
    background-color: #fff;
    padding: 4px 20px;
    margin-top: -43px;
    margin-bottom: 20px;
    color: #394136;
    font-family: 'Montserrat';
    font-size: 20px;
    letter-spacing: 1px;
}

.pd-12-110 {
    padding: 12px 110px;
}

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

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

.mt-minus-60 {
    margin-top: -60px;
}

.cart-main-sec {
    padding: 80px 0;
}

.checkout-bttn a {
    color: #fff;
    display: block;
    text-transform: uppercase;
    border-radius: 5px;
    border-color: unset;
    font-size: 18px;
    font-family: 'Montserrat';
    padding: 20px;
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
}

.cart_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0% auto;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    height: 50px;
    width: 250px;
    background: #53171d;
    border-radius: 100px;
    font-family: 'Bebas Neue';
}

.cart_btn:hover {
    color: black;
}

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

.product-cart figure {
    /* padding: 10px; */
    margin: 0;
    /* background-color: #eaeaea; */
    /* border-radius: 3px; */
    /* border: 1px solid #c8c8c8; */
}

th:first-child {
    border-radius: 3px 0 0 3px;
}

th:last-child {
    border-radius: 0 3px 3px 0;
}

.cart-one {background-color: #f6f6f6;border: 1px solid #8989893d;}

.shipping-box {
    background-color: #f6f6f6;
    border: 1px solid #8989893d;
}

/* CART PAGES CSS:END */

/*-------------------------------------------------------- Inner Cart End --------------------------------------------------------------------*/


/*--------------------------------------------------------  Checkout Page Start --------------------------------------------------------------------*/

.billing_form h3 {
    color: #131211;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.billing_form label {
    font-size: 14px;
    color: #7c7c7c;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}

.radiosss p {
    color: #000;
    font-size: 12px;
    font-family: "Montserrat";
    font-weight: 400;
}

.billing_form input {
    width: 100%;
    height: 50px;
    border: 1px solid #cfcfcf;
    margin-bottom: 20px;
    padding-left: 15px;
    background: transparent;
    font-size: 14px;
    border-radius: 0;
}

.billing_form input::placeholder {
    color: #7c7c7c;
    font-family: "Montserrat";
}

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

.cart_sidebar .cart_lst li {
    font-size: 14.5px;
    color: #7c7c7c;
    font-family: "Roboto", sans-serif;
}

.cart_sidebar .cart_lst li span {
    float: right;
}

.cart_sidebar .cart_lst li:last-child {
    font-size: 24px;
    text-transform: uppercase;
    color: #000;
    font-family: 'PPNeueWorld';
    opacity: 100%;
    margin-top: 23px;
}

.cart_sidebar .cart_lst {
    margin-top: 20px;
    margin-bottom: 40px;
}

.thankyou_txt {
    padding: 50px;
    border: 2px solid #b7b7b7;
}

.thankyou_txt h3 {
    font-size: 35px;
    color: #000;
    font-weight: 800;
    margin: 0;
    font-family: "Roboto", 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: "Roboto", 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: "Roboto", 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: "Roboto", 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;
}

p.p-same-p {
    font-size: 13px;
    font-family: 'Montserrat';
    background: #fffcf3;
    line-height: 23px;
}

.cart_sidebar {
    padding: 40px 25px 30px;
    border: 1px solid #cfcfcf;
    border-radius: 0;
}

.cart_sidebar h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cart_sidebar .h-sub {
    color: #000000;
    font-size: 24px;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 20px;
    line-height: 0;
    padding-bottom: 30px;
    padding-top: 20px;
    text-transform: uppercase;
}

.cart_sidebar h5 span {
    float: right;
}

.cart_sidebar h4 {
    font-size: 24px;
    color: #000000;
    margin-bottom: 30px;
    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: 14.5px;
    font-weight: 400;
    color: #7c7c7c;
    font-family: "Roboto", sans-serif;
}

.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: 4px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #000;
    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;
}

.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: 20px;
    border: none;
    font-weight: 500;
    border: 2px solid transparent;
    background-color: #000;
    border-radius: 0;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

.checkout_btn:hover {
    color: white;
}

ul.shipping-ul {
    border-bottom: 1px solid #dbdbdb;
    margin: 0;
    padding-bottom: 30px;
}

h6.payment-h {
    color: #000;
    font-size: 24px;
    margin-bottom: 30px;
    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: 8px;
    border-radius: 20px;
    left: 6px;
    border: 0;
    width: 10px;
    height: 10px;
    background-color: #a73d1f;
}

.radiosss-payments .card.card-body {
    padding: 0;
    border: 0;
    margin-left: 30px;
}

.radiosss-payments {
    border-bottom: 1px solid rgb(219, 219, 219);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

section.checkout_page.all-section.all-side {
    padding: 100px 0;
}

span.chk-price {
    color: #000;
}

.cart_sidebar a.theme-btn-1 {
    width: 100%;
}

.cart_sidebar .siteBtn:hover {
    background: #000;
    transform: translate(0px, -2px);
}

.cart_sidebar .siteBtn {
    display: inline-block;
    text-align: center;
    font-family: "Montserrat";
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    padding: 12px 158px;
    transition: 0.9s;
    box-sizing: border-box;
    box-shadow: 0px 0px 20px 0px #4444442b;
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
}

.billing_form {
    padding: 40px 25px;
    border: 1px solid #cfcfcf;
    border-radius: 0;
}

.cart-to-pro a {
    font-size: 19px;
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.cart-to-pro a i {
    font-size: 16px;
    font-weight: 400;
}

/*--------------------------------------------------------   Checkout Page End --------------------------------------------------------------------*/

/* --------------------------------------- Inner Contact Section Start ------------------------------------- */

section.contact-inner {
    text-align: center;
    padding: 100px 0;
}

.form-button button {
    margin: 0 auto;
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
    font-size: 15px;
    color: #fff;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    padding: 13px 50px;
    font-family: "Montserrat", sans-serif;
    border: none;
    text-transform: uppercase;
}

.inner-social-icon {
    border: 1px solid #f6e6e1;
    border-radius: 10px;
    width: 100%;
    padding: 30px 20px;
    margin-bottom: 100px;
    height: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.inner-social-icon:hover {
    background-color: #000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.contact-phone {display: flex;flex-direction: column;align-items: center;justify-content: center;gap: 3px;}

.contact-inner-head p {
    width: 50%;
    margin: 0 auto;
    opacity: 80%;
    font-size: 14px;
}

.contact-inner-head {
    margin-bottom: 40px;
}

.contact-inner-head h2 {
    font-size: 80px;
    text-transform: uppercase;
}

.inner-social-icon img {
    width: 17%;
    /* margin-bottom: 20px; */
}

.inner-social-icon h4 {
    font-size: 28px;
    line-height: 1;
    text-transform: uppercase;
    color: #222222;
    font-weight: 500;
    /* margin-bottom: 7px; */
    transition: ease-in;
    transition-duration: 0.5s;
}

.inner-social-icon:hover.inner-social-icon h4 {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.inner-social-icon p {
    font-size: 15px;
    width: 90%;
    margin: 0 auto;
    opacity: 80%;
    transition: ease-in;
    transition-duration: 0.5s;
}


.inner-social-icon a {
    position: relative;
    font-size: 15px;
    color: #000;
    opacity: 70%;
    transition: ease-in;
    transition-duration: 0.5s;
}

.inner-social-icon a::Before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    border-bottom: 1px solid #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.inner-social-icon a:hover::Before {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.inner-social-icon:hover .contact-phone a {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}


.inner-social-icon:hover a p {
    color: #fff !important;
    opacity: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.main-contact-head h2 {
    font-size: 60px;
    text-transform: uppercase;
}

.main-contact-head p {
    width: 53%;
    margin: 0 auto;
    margin-bottom: 40px;
    opacity: 80%;
    font-size: 14px;
}

.form-text-area textarea {
    padding: 15px 20px;
    font-size: 16px;
    border: 1px solid #d0cecd;
    width: 100%;
    resize: none;
    height: 250px;
    background-color: #fefdfd;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #000000bf;
    transition: ease-in;
    transition-duration: 0.5s;
}

.form-text-area textarea:focus {
    background-color: #a33117;
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.form-text-area label {
    text-align: start;
    color: #636363;
    font-size: 14px;
    font-family: 'Montserrat';
    margin-bottom: 5px;
}

.contact-inner-input input {
    font-size: 16px;
    border: 1px solid #d3d1ce;
    width: 100%;
    background: #fefdfc;
    border-radius: 10px;
    margin-bottom: 25px;
    height: 50px;
    padding-left: 20px;
    color: #000000bf;
    transition: ease-in;
    transition-duration: 0.5s;
}

.contact-inner-input input:focus {
    background-color: #a33117;
    border: 1px solid #0000;
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}


.contact-inner-input {
    text-align: start;
}

.form-text-area {
    text-align: start;
}

.contact-inner-input label {
    font-family: 'Montserrat';
    font-size: 14px;
    color: #5d5d5d;
    margin-bottom: 5px;
}

/* --------------------------------------- Inner Contact Section End --------------------------------------- */


/*---------------------------------------------------- Footer Section Start --------------------------------------------------------------*/

.footerSec {
    background-image: linear-gradient(to right, #9e230e, #a33117, #b05a31, #b05a31, #b05a31);
    background-size: 600%;
    background-position: 0 0;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    padding: 0 0 30px;
}

@keyframes gradients {
    0% {
        background-position: 0 0;
    }

    25% {
        background-position: 50% 0;
    }

    50% {
        background-position: 90% 0;
    }

    60% {
        background-position: 60%;
    }

    75% {
        background-position: 40%;
    }

    100% {
        background-position: 0 0;
    }
}

.footer-main {
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid #f9fafb3b;
    border-left: unset;
    border-top: unset;
    height: 89%;
}

.footer-main h2 {
    border-bottom: 1px solid #f9fafb3b;
    padding: 25px 0 20px;
    font-size: 30px;
    line-height: 30px;
    text-transform: uppercase;
    color: #fff;
}

ul.foot-tab {
    padding: 35px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 10px;
    height: 100%;
}

ul.foot-tab li a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #f9f1ef;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
}

ul.foot-tab li a:hover {
    background-color: #fff;
    color: #000;
    transition: ease-out;
    transition-duration: 0.5s;
}

ul.foot-tab li {
    /* margin-bottom: 25px; */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

ul.foot-tab li:last-child {
    margin: unset;
}

.footer-txt h1 {
    font-size: 130px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 60px;
    color: #fff;
}

.footer-last {
    background: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-last p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.footer_slider {
    margin-bottom: 15px;
}

/*---------------------------------------------------- Footer Section End --------------------------------------------------------------*/


/*---------------------------------------------------- Accounts Section Start --------------------------------------------------------------*/

.login-txt form input {
    width: 100%;
    margin-bottom: 20px;
    outline: none;
    padding: 10px 40px 10px 20px;
    color: #000;
    font-weight: 400;
    border: 1px solid #0000002b;
    border-radius: 5px;
}

.login-txt form input::placeholder {
    color: #c7c7c7;
    font-size: 15px;
}

.login-txt form input:focus {
    box-shadow: none;
    border: 1px solid #0000002b;
}

.login-txt h2 {
    text-align: center;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    font-size: 38px;
}

.password-box {
    position: relative;
    margin-bottom: 20px;
}

.password-box-input input {
    padding: 10px 40px 10px 20px;
}

.password-icon {
    position: absolute;
    top: 20%;
    right: 3%;
}

.password-icon span {
    color: #000;
    cursor: pointer;
}

.login-txt {
    padding: 45px 25px 35px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 20px 0px #0000001a;
    border: 1px solid #0000001a;
}

.login-txt ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    gap: 10px;
}

li.head {
    color: #f81b2a;
    font-size: 17px;
    font-weight: 600;
}

.login-txt ul li {
    display: flex;
    gap: 7px;
    font-weight: 400;
    font-size: 15px;
}

.login-txt li.head-ex a {
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-txt form button {
    width: 100%;
    color: #fff;
    padding: 13px 0px;
    outline: none;
    border: none;
    margin-bottom: 20px;
    font-size: 20px;
    border-radius: 5px;
    font-family: 'AmpleSoftPro';
    text-transform: uppercase;
    font-weight: 400;
    transition: ease-in;
    transition-duration: 0.2s;
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
}

.login-txt form button:hover {
    background-image: unset;
    background-color: #000;
    transition: ease-out;
    transition-duration: 0.2s;
}

li.head-ex {
    text-decoration: underline;
}

.login-txt ul li label {
    cursor: pointer;
    font-size: 15px;
}

.login-txt-ex form input:focus {
    background-color: #fff;
    color: #000;
}

.login-txt-ex ul {
    justify-content: space-between;
}

section.login.sec {
    padding: 100px 0;
}

.login-txt.login-txt-ex li.head a {
    font-size: 15px;
    color: #0000009c !important;
}

/*---------------------------------------------------- Accounts Section End --------------------------------------------------------------*/


/*---------------------------------------------------- About Us Inner Css Starts  --------------------------------------------------------------*/

section.about-sect.iner {
    padding: 100px 0;
}

.about-text h3 {
    text-transform: uppercase;
    font-size: 90px;
    background-image: -webkit-linear-gradient(90deg, rgb(176, 91, 49) 0%, rgb(158, 34, 14) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text h2 {
    font-size: 120px;
    text-transform: uppercase;
    color: #333333;
}

.about-text .about-txt {
    width: 80%;
    margin-bottom: 15px;
    margin-left: 21%;
}

.about-text p {
    line-height: 29px;
    font-size: 14px;
    text-transform: uppercase;
}

.about-text .about-txt:before {
    width: 15%;
    left: -20%;
}

.about-text .about-txt:after {
    width: 5%;
    left: -70px;
}

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

.about-lst-txt p {
    line-height: 29px;
    font-size: 14px;
    text-transform: uppercase;
}

.about-lst-txt {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

/* About Us Inner Css End */

/* Terms Page Css Starts */

.terms-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.terms-txt h2 {
    font-size: 125px;
    line-height: 1;
}

.terms-txt .terms-list ul {
    list-style-type: circle;
    padding: 0 0 0 50px;
}

.terms-txt .terms-list ul li {
    margin: 0 0 20px 0;
}

/* Terms Page Css End */


/*Media Query Starts*/

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

@media only screen and (min-width: 1501px) and (max-width: 1600px) {

/* Fonts css Starts */

/* Fonts css Ends */



/* Buttons css Starts */

/* Buttons css Ends */




/* Home css Starts */

.about-ex-img img.about1 {
    top: 10%;
    height: 160px;
    width: 265px;
}

.about-ex-img img.about5 {
    bottom: 5%;
}

.products-slider-main {
    width: 25%;
}



/* Home css Ends */




}

@media only screen and (min-width: 1401px) and (max-width: 1500px) {



/* Fonts css Starts */

h1 {
    font-size: 104px;
    line-height: 110px;
}

p {
    font-size: 12px;
    line-height: 23px;
}

/* Fonts css Ends */



/* Buttons css Starts */

.theme1 {
    padding: 0 60px 0 20px;
}

.theme1 span.theme1-txt {
    font-size: 12px;
}

/* Buttons css Ends */




/* Home css Starts */

.banner-header h4 {
    font-size: 60px;
    line-height: 65px;
}

.banner-header h1 {
    justify-content: center;
}

.about-ex-img img.about1 {
    height: 155px;
    width: 255px;
    top: 17%;
    left: 1%;
}

.about-ex-img img.about4 {
    height: 200px;
    width: 300px;
    bottom: 18%;
}

.about-ex-img img.about3 {
    right: 5%;
}

.about-ex-img img.about6 {
    height: 170px;
    width: 170px;
}

.about-ex-img img.about5 {
    height: 250px;
    width: 355px;
}

.products-img img {
    height: 520px;
}

.products-card-main {
    padding: 20px;
}

.products-card {
    gap: 10px;
}

.products-card-img img {
    height: 150px;
}

.products-slider-main {
    width: 30%;
}

.effortless-txt {
    padding: 40px 30px 20px;
}

.disc {
    width: 90%;
}

.luxrious-main h2 {
    font-size: 100px;
}

.luxros-fst.q {
    left: -1%;
}

.luxros-fst.t {
    right: 4%;
}

.footer-txt h1 {
    font-size: 110px;
}


/* Home css Ends */



}

@media only screen and (min-width: 1301px) and (max-width: 1400px) {



/* Fonts css Starts */

h1 {
    font-size: 104px;
    line-height: 110px;
}

p {
    font-size: 12px;
    line-height: 23px;
}

/* Fonts css Ends */



/* Buttons css Starts */

.theme1 {
    padding: 0 60px 0 20px;
}

.theme1 span.theme1-txt {
    font-size: 12px;
}

/* Buttons css Ends */




/* Home css Starts */

.banner-header h4 {
    font-size: 60px;
    line-height: 65px;
}

.banner-header h1 {
    justify-content: center;
}

.about-ex-img img.about1 {
    height: 155px;
    width: 255px;
    top: 17%;
    left: 1%;
}

.about-ex-img img.about4 {
    height: 200px;
    width: 300px;
    bottom: 18%;
}

.about-ex-img img.about3 {
    right: 5%;
}

.about-ex-img img.about6 {
    height: 170px;
    width: 170px;
}

.about-ex-img img.about5 {
    height: 250px;
    width: 355px;
}

.products-img img {
    height: 520px;
}

.products-card-main {
    padding: 20px;
}

.products-card {
    gap: 10px;
}

.products-card-img img {
    height: 150px;
}

.products-slider-main {
    width: 30%;
}

.effortless-txt {
    padding: 40px 30px 20px;
}

.disc {
    width: 90%;
}

.luxrious-main h2 {
    font-size: 100px;
}

.luxros-fst.q {
    left: -1%;
}

.luxros-fst.t {
    right: 4%;
}

.footer-txt h1 {
    font-size: 100px;
}


/* Home css Ends */


}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {


/* Fonts css Starts */

h1 {
    font-size: 104px;
    line-height: 110px;
}

p {
    font-size: 12px;
    line-height: 23px;
}

/* Fonts css Ends */



/* Buttons css Starts */

.theme1 {
    padding: 0 60px 0 20px;
}

.theme1 span.theme1-txt {
    font-size: 12px;
}

/* Buttons css Ends */




/* Home css Starts */

.banner-header h4 {
    font-size: 60px;
    line-height: 65px;
}

.banner-header h1 {
    justify-content: center;
}

.about-ex-img img.about1 {
    height: 155px;
    width: 255px;
    top: 17%;
    left: 1%;
}

.about-ex-img img.about4 {
    height: 200px;
    width: 300px;
    bottom: 18%;
}

.about-ex-img img.about3 {
    right: 5%;
}

.about-ex-img img.about6 {
    height: 170px;
    width: 170px;
}

.about-ex-img img.about5 {
    height: 250px;
    width: 355px;
}

.products-img img {
    height: 520px;
}

.products-card-main {
    padding: 20px;
}

.products-card {
    gap: 10px;
}

.products-card-img img {
    height: 150px;
}

.products-slider-main {
    width: 35%;
}

.effortless-txt {
    padding: 40px 30px 20px;
}

.disc {
    width: 90%;
}

.luxrious-main h2 {
    font-size: 100px;
}

.luxros-fst.q {
    left: -1%;
}

.luxros-fst.t {
    right: 4%;
}

.footer-txt h1 {
    font-size: 80px;
}


/* Home css Ends */


}

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


/* Fonts css Starts */

/* Fonts css Ends */



/* Buttons css Starts */

/* Buttons css Ends */




/* Home css Starts */

/* Home css Ends */






}

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


/* Fonts css Starts */

/* Fonts css Ends */



/* Buttons css Starts */

/* Buttons css Ends */




/* Home css Starts */

/* Home css Ends */




}

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

/* Fonts css Starts */

/* Fonts css Ends */



/* Buttons css Starts */

/* Buttons css Ends */




/* Home css Starts */

/* Home css Ends */


}

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


/* Fonts css Starts */

/* Fonts css Ends */



/* Buttons css Starts */

/* Buttons css Ends */




/* Home css Starts */

/* Home css Ends */


}


/*Media Query End*/