@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');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

@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: 'Safira';
    src: url(../font/Safira\ March\ Personal\ Use\ Only.ttf);
}

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;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.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;
}

.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;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

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;
}

p {
    font-weight: 500;
    line-height: 25px;
    margin: 0;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}

h1 {
    font-family: 'Safira';
    font-size: 84px;
    line-height: 1;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

h2 {
    font-family: 'Safira';
    font-size: 50px;
    line-height: 1.1;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h3 {
    font-family: 'Safira';
    font-size: 35px;
    line-height: 1;
    color: #000000;
    font-weight: 500;
    margin: 0;
}

h4 {
    font-family: 'Safira';
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

h5 {
    font-family: 'Safira';
    font-size: 25px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h6 {
    font-family: 'Safira';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

select {
    background: #fff url('../images/select.png') no-repeat right;
    padding: 0 40px 0 30px;
    background-position: right 0.7rem top 50%;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

/*---------------------------------------------------- Tabs Section Start ----------------------------------------------------------- */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

/*---------------------------------------------------- Tabs Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Carousel Section 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 [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;
}

/*---------------------------------------------------- Carousel Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Button Section Start ----------------------------------------------------------- */

.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
}

.theme_btn {
    width: max-content;
    position: relative;
    padding: 16px 25px;
    border: unset;
    z-index: 1;
    background: transparent;
    color: #000;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    display: block;
}

.theme_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border: 3px solid #f0ca49;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 8px;
    border-bottom: 4px solid #f0ca49;
    border-top: 1px solid #f0ca49;
}




.c-button {
    padding: 16px 25px;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    border: none;
    background: transparent;
}

.c-button--gooey {
    color: #000;
    border-radius: 10px;
    position: relative;
    transition: all 700ms ease;
    overflow: hidden;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

.c-button--gooey .c-button__blobs {
    height: 100%;
    filter: url(#goo);
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    bottom: -3px;
    right: -1px;
    z-index: -1;
}

.c-button--gooey .c-button__blobs div {
    background-color: #f0ca49;
    width: 35%;
    height: 100%;
    border-radius: 100%;
    position: absolute;
    transform: scale(1.4) translateY(125%) translateZ(0);
    transition: all 700ms ease;
}

.c-button--gooey .c-button__blobs div:nth-child(1) {
    left: -2%;
}

.c-button--gooey .c-button__blobs div:nth-child(2) {
    left: 32%;
    transition-delay: 60ms;
}

.c-button--gooey .c-button__blobs div:nth-child(3) {
    left: 66%;
    transition-delay: 25ms;
}

.c-button--gooey:hover {
    color: #fff;
}

.c-button--gooey:hover .c-button__blobs div {
    transform: scale(1.4) translateY(0) translateZ(0);
}

.c-button--gooey:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border: 3px solid #f0ca49;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 8px;
    border-bottom: 4px solid #f0ca49;
    border-top: 1px solid #f0ca49;
}

/*---------------------------------------------------- Button Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Header Section Start ----------------------------------------------------------- */

.menuSec {
    padding: 10px 0;
    background: #000;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    display: flex;
    align-items: center;
    left: 40px;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.banner-sec {
    margin-bottom: 100px;
    position: relative;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: end;
}

.header-buttons a {
    width: 60px;
    height: 60px;
    border: 1px solid #333333;
    border-radius: 10px;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.5s all;
}

.header-buttons a:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.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: #f0ca49;
}

.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;
}

.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;
}

.slick-slide {
    opacity: 1;
}

.main_slider {
    margin-bottom: 100px;
}

/*---------------------------------------------------- Header Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Footer Section Start ------------------------------------------------------------- */

footer {
    background: #0f1010;
    padding: 120px 0px 0px;
}

.ftlogo-maindv {
    margin-top: -20px;
    padding-left: 40px;
}

.footer-logo.quicklinks-maindv:before {
    top: -21px !important;
    right: -10px !important;
}

ul.navgation-f li {
    margin-bottom: 5px;
}


.ft-contact-maindv .footer-logo {
    padding: 0px 0px 0 60px;
}

.subscrbe-mail input {
    width: 100%;
    height: 53px;
    padding: 10px 20px;
    background: #1b1c1c;
    color: #fff;
    border-radius: 40px;
    border: unset;
}

.subscrbe-mail {
    position: relative;
    width: 83%;
}

.container-fluid {
    padding: 0 5%;
}

.subscrbe-mail button img {
    width: auto;
    margin: unset;
}

.subscrbe-mail button {
    position: absolute;
    top: 0px;
    right: 0;
    height: 100%;
    width: 61px;
    border: unset;
    background: #fff;
    border-radius: 50px;
    color: #000;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-btm:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #323333;
    width: 100%;
    right: 0px;
    margin: 0 auto;
    height: 1px;
}

h5.f-main {
    font-size: 30px;
    color: #fff;
    margin-bottom: 17px;
}

.footer-logo p {
    color: #fff;
    width: 85%;
    margin-bottom: 26px;
    opacity: 60%;
}

.footer-logo ul li a {
    font-size: 14px;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: 500;
    color: #d2d2d2;
}

.footer-logo ul li i {
    margin: 0 20px 0 0;
    font-size: 24px;
    color: #fff;
}

ul.navgation-f {
    column-count: 2;
}

.f-media ul {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 12px;
}

.f-media ul li a {
    border: 1px solid #3f4040;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #575858;
    transition: 0.5s all;
}

.footer-btm {
    padding: 20px 40px;
    z-index: 1;
    position: relative;
    margin-top: 60px;
}

.copy-right p {
    color: #fff;
    margin: 0;
    opacity: 60%;
}

.f-card {
    display: grid;
    align-items: center;
    justify-content: end;
    height: 100%;
}

.f-media {
    display: grid;
    align-content: center;
    height: 100%;
}

.footer-logo {
    position: relative;
    padding: 0px 52px;
}

footer .row .col-lg-4:not(:last-child) .footer-logo:before {
    content: '';
    position: absolute;
    height: 293px;
    right: 10px;
    top: 0;
    width: 1px;
    background: #323333;
}

.footer-logo img {
    width: 50%;
    margin: 0 0 20px;
}

.payment-img {
    text-align: end;
}

.ftlogo-maindv .footer-logo {
    padding: unset;
}

.f-media ul li a:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px #000;
        ;
    }

    100% {
        box-shadow: 0 0 0 20px rgb(180 9 9 / 5%);
    }
}

.footer-logo ul li a:hover {
    color: #ffff;
}

/*---------------------------------------------------- Footer Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Contact Section Start ------------------------------------------------------------- */

.contact-sec-home {
    padding: 100px 0;
    border-top: 1px solid #d7dcdc;
    position: relative;
}

.contact-sec-home.iner {
    margin-bottom: 100px;
    border-bottom: 1px solid #d7dcdc;
    overflow: hidden;
}

.contact-form-home input, .contact-form-home textarea {
    width: 100%;
    height: 45px;
    border: unset;
    border-bottom: 1px solid #d7dcdc;
    padding: 10px 0;
    color: #000;
}

.fieldcontact {
    position: relative;
    margin-bottom: 30px;
}

.fieldcontact img {
    position: absolute;
    top: 40%;
    right: 2px;
}

.contact-form-home textarea {
    resize: none;
    height: 130px;
    align-content: end;
    margin-bottom: 20px;
}

.contact-form-home input::placeholder, .contact-form-home textarea::placeholder {
    color: #828282;
    font-size: 14px;
}

.contact-text-home h2 span {
    display: block;
}

.contact-text-home {
    position: relative;
    width: 60%;
    margin: 0 6% 60px auto;
}

.contact-sec-home:before {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    background-image: url(../images/contact-back.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 820px;
    height: 700px;
    z-index: -1;
}

.contact-text-home p {
    width: 80%;
    margin: -15px auto 0;
    padding-left: 120px;
    opacity: 70%;
}

.contact-text-home * {
    color: #fff;
}

.contact-text-home:before {
    content: '';
    position: absolute;
    top: 80px;
    right: 0;
    background: #ffffff38;
    width: 84%;
    height: 1px;
}

/*---------------------------------------------------- Contact Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Blogs Section Start ------------------------------------------------------------- */

.blog-sec {
    margin-bottom: 100px;
}

.blog-head {
    text-align: center;
    margin-bottom: 20px;
}

.blog-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: bottom;
}

.blog-main {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #cccccc;
}

.blog-sec .row.inrscnd {
    margin-top: 50px;
}

.blog-head p {
    width: 53%;
    margin: 0 auto;
    color: #7c7c7c;
}

.blog-text {
    padding: 20px 20px 25px;
}

.blog-text ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.blog-text ul li {
    font-family: 'Montserrat';
    font-size: 14px;
    color: #7c7c7c;
    font-weight: 500;
}

.blog-text p {
    color: #7c7c7c;
    margin-bottom: 10px;
    height: 75px;
}

.blog-text h5 {
    margin-bottom: 3px;
}

.blog-text a {
    margin-top: 15px;
}

/*---------------------------------------------------- Blogs Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Stories Section Start ------------------------------------------------------------- */

.stories-sec {
    padding: 80px 0;
    margin-bottom: 100px;
    background: #f6efd9;
    text-align: center;
}

.stories-main a {
    margin: 0 auto;
}

.stories-main {
    width: 75%;
    padding: 80px 90px;
    margin: 0 auto;
    border: 1px solid #c8c4b6;
    position: relative;
}

.angles {
    position: absolute;
    font-size: 27px;
}

.angles.L {
    top: -9px;
    left: -4px;
    transform: rotate(45deg);
}

.angles.R {
    right: -6px;
    bottom: -9px;
    transform: rotate(224deg);
}

.angles.T {
    top: -10px;
    right: -5px;
    transform: rotate(136deg);
}

.angles.B {
    bottom: -10px;
    left: -4px;
    transform: rotate(-45deg);
}

.stories-main a {
    margin: 0 auto;
}

.stories-main p {
    color: #7c7c7c;
    width: 95%;
    margin: 2px auto 20px;
}

.stories-main a {
    margin: 0 auto 0px;
}

.stories-main p {
    color: #7c7c7c;
    width: 95%;
    margin: 2px auto 20px;
}


/*---------------------------------------------------- Stories Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Product Section Start ------------------------------------------------------------- */

.product-sec {
    margin-bottom: 100px;
}

.product-head-main.iner {
    justify-content: center;
}

.product-txt-head.iner {
    text-align: center;
}

.product-txt-head.iner p {
    margin: 0 auto;
}

.product-sec.iner .row.iner {
    margin-top: 40px;
}

.product-head-main {
    display: flex;
    align-items: end;
    margin-bottom: 30px;
    justify-content: space-between;
}

.product-main {
    border: 1px solid #cccccc;
    border-radius: 12px;
    padding: 10px 10px 20px;
}

.product-img {
    background-color: #f3f3f3;
    text-align: center;
    height: 250px;
    align-content: center;
    border-radius: 12px;
    overflow: hidden;
}

.product-txt-head p {
    width: 56%;
    color: #7c7c7c;
}

.product-text ul li {
    color: #7c7c7c;
    font-size: 14px;
    font-family: 'Montserrat';
}

.product-text a {
    margin: 0 auto;
}

.product-text p {
    color: #7c7c7c;
    margin-top: 5px;
}

.product-text ul li i {
    color: #ffc107;
}

.about-txt-voice h5 {
    color: #f0ca49;
}

.product-text {
    padding: 20px 12px 10px;
    text-align: center;
}

.product-text ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 18px 0 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #7c7c7c73;
}

.product-text ul li i {
    color: #f0ca49;
}

.about-txt-voice h5 {
    color: #f0ca49;
}

.product-text {
    padding: 20px 12px 10px;
    text-align: center;
}

.product-text ul li i {
    color: #f0ca49;
}

/* ------------------------------------------------- Product Section End -------------------------------------------------------------  */

/*---------------------------------------------------- About Section Start ------------------------------------------------------------- */

.about-sec {
    margin-bottom: 100px;
}

.about-image img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    border-radius: 20px;
}

.about-image {
    width: 96%;
}

.about-text h3 {
    margin: 5px 0 10px;
    color: #f0ca49;
}

.about-image.iner img {
    height: 640px;
}

.about-text.iner {
    margin-top: 30px;
}


.about-text p {
    margin-bottom: 18px;
    color: #000;
    opacity: 70%;
}

.about-txt-book {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 13px;
}

.about-txt-book p {
    margin: 0;
}

.about-txt-book img {
    width: 150px;
}

.about-image {
    width: 96%;
}

.book-txt-image img {
    width: 280px;
    object-fit: scale-down;
}

/*---------------------------------------------------- About Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Book Section Start ------------------------------------------------------------- */

.book-sec {
    margin-bottom: 50px;
    padding-top: 70px;
    position: relative;
}

.site-mask-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 20%;
}

.book-sec.iner * {
    color: #000;
}

.book-sec.iner .book-head p {
    width: 56%;
}

.book-sec.iner .book-text {
    width: 83%;
    margin-bottom: 20px;
}

.book-head * {
    color: #fff;
}

.book-head {
    text-align: center;
    margin-bottom: 40px;
}

.book-head p {
    width: 51%;
    margin: 0 auto;
    opacity: 70%;
}

.book-head h2 {
    color: #f0ca49;
}

.book-txthed h3 {
    color: #f0ca49;
}

.book-txthed {
    display: flex;
    align-items: end;
    gap: 10px;
}

.book-txthed span {
    font-family: 'Montserrat';
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}

.book-text ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 83%;
    margin: 15px 0;
}

.book-text {
    width: 75%;
    margin-top: 40px;
}

.book-text p {
    color: #fff;
    opacity: 70%;
    margin-bottom: 15px;
}

.book-text ul li span {
    font-size: 20px;
    font-family: 'Safira';
    color: #f0ca49;
    text-transform: none;
}

.book-text ul li {
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.book-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.book-buttons a {
    color: #fff;
    text-decoration: underline;
    text-transform: uppercase;
    font-weight: 500;
}

.book-buttons a.theme_btn {
    text-decoration: none;
}

.book-txt-image {
    text-align: end;
}

.book-txt-image img:Last-Child {
    width: 180px;
}

.book-main-image {
    margin-top: -30px;
}

.book-main-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

/*---------------------------------------------------- Book Section Start ------------------------------------------------------------- */

/*---------------------------------------------------- Banner Section Start ------------------------------------------------------------- */

.hero-master-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/shape-black.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    width: 100%;
    height: 50%;
    z-index: -1;
}

.hero-left-card h1 span {
    font-size: 66px;
    color: #f0ca49;
}

.hero-left-card p {
    margin: 30px 0 15px;
    color: #000;
    opacity: 70%;
}

.baner-user-custmrs {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.baner-user-custmrs ul {
    display: flex;
    align-items: center;
}

.bnr-cstmr-txt span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.hero-left-card {
    margin-right: -40px;
}

.bnr-cstmr-txt p {
    color: #000;
    opacity: 70%;
}

.baner-user-custmrs ul li i {
    font-size: 10px;
    color: #ffa200;
}

.baner-iner-sec {
    position: relative;
    height: 45vh;
    margin-bottom: 100px;
    background-image: url(../images/shape-black.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    align-content: center;
    text-align: center;
}

.baner-iner-text {
    padding-bottom: 40px;
}


/*---------------------------------------------------- Banner Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Blog Detail Section Start ------------------------------------------------------------- */

.blog-detail-img img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: bottom;
}

.blog-detail-sec {
    margin-bottom: 100px;
}

.blog-detail-sec p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #000;
    opacity: 70%;
    height: unset;
}

.blog-detail-sec ul li {
    font-size: 20px;
}

.blog-detail-sec ul {
    margin-bottom: 20px;
}

.blog-detail-sec h5 {
    font-size: 40px;
}

.blog-detail-sec .blog-text {
    padding: 40px 20px 0 20px;
}

/*---------------------------------------------------- Blog Detail Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Account Section Start ------------------------------------------------------------- */

.account-sec {
    margin-bottom: 100px;
}

.account-form {
    padding: 50px 50px;
    border: 1px solid #cccccc;
    border-radius: 22px;
}

.account-form input {
    width: 100%;
    height: 57px;
    border: 1px solid #cccccc;
    margin-bottom: 22px;
}

.account-form h2 {
    margin-bottom: 25px;
}

.account-form label {
    font-size: 21px;
    font-family: 'Montserrat';
    margin-bottom: 7px;
    color: #000;
    opacity: 70%;
}

.account-form input#rem {
    margin: 0;
    width: 20px;
    height: 20px;
}

.account-form label.frgt {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 17px;
}

.password-box {
    position: relative;
    margin-bottom: 20px;
}

.password-box-input input {
    padding: 10px 40px 10px 20px;
}

.password-icon {
    position: absolute;
    top: 27%;
    right: 3%;
}

.password-icon span {
    color: #000;
    cursor: pointer;
}

.account-form button {
    margin: 0 auto;
}

.form-control:focus {
    box-shadow: none;
    border-color: #000;
}

/*---------------------------------------------------- Account Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Billing Address Section Start ------------------------------------------------------------- */

.billing-form {
    max-width: 100%;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.billing-form .form-control {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 8px;
    border: 1px solid #c3c3c3;
    border-radius: 7px;
    font-family: 'Montserrat';
    font-size: 14px;
    height: 74px;
    background-color: transparent;
    appearance: none !important;
}

.payment-option label input[type="radio"] {
    width: 26px;
    height: 26px;
    accent-color: #f0ca49;
}

.payment-option {
    margin-bottom: 13px;
}

.payment-content {
    display: none;
    background: transparent;
    padding: 10px;
    border-radius: 5px;
    margin-top: 5px;
}

.place-order-btn {
    background: #c2185b;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

h3.payment-title {
    margin-bottom: 24px;
}

input.form-control.street-field {
    margin-bottom: 18px;
}

.form-control:disabled, .form-control:read-only {
    color: #7c7c7c;
    appearance: auto;
}

.payment-option label {
    font-family: 'Montserrat';
    display: flex;
    gap: 15px;
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.payment-method-main {
    margin: 35px 0px 30px;
}

.billing-foam-main-sec {
    padding-bottom: 90px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

textarea.form-control {
    height: 150px !important;
}

/*---------------------------------------------------- Billing Address Section End ------------------------------------------------------------- */


/* Shop detail Page starts */
section.product-detail {
    padding: 100px 0% 40px;
}

.product-detail .productdetailportion {
    height: 500px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 17px;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 33px 0px rgba(0, 0, 0, 0.07);
    width: 100%;
}

.productdetailfor .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

section.product-detail .row {
    align-items: center;
}

.productdetailnav .slick-slide {
    margin: 0 10px;
    cursor: pointer;
}

.productdetailsmallportion {
    width: 100%;
    display: flex;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ececec;
    background-color: var(--white);
    height: 130px;
}

.productdetailsmallportion img {
    width: 100%;
    height: 100%;
    transition: 0.3s;
    object-fit: cover;
    border-radius: 10px;
}

.productdetailnav .slick-slide.slick-current .productdetailsmallportion {
    position: relative;
}

.productdetailnav .slick-slide.slick-current .productdetailsmallportion::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: -10px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background-color: var(--white);
    z-index: -1;
}

.productdetailnav .slick-slide.slick-current .productdetailsmallportion {
    padding: 5px;
    border-radius: 5px;
    background: var(--white);
    box-shadow: 0px 0px 33px 0px rgba(0, 0, 0, 0.07);
}

.product-content .top-section h6 {
    font-size: 25px;
    margin-bottom: 8px;
    color: #000;
}

.product-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-content ul li {
    margin-right: 5px;
    font-size: 17px;
    color: black;
    font-weight: 600;
}

.product-content ul li i.fas.fa-star {
    color: #ffc107;
}

.product-content hr {
    margin: 20px 0;
    border-color: #eee;
}

.row.flexEnd.price_rev ul {
    display: flex;
}

.row.flexEnd.price_rev p {
    font-size: 17px;
    color: black;
    font-weight: 600;
    font-size: 17px;
    margin: 0;
    border-left: 2px solid #000;
    padding-left: 20px;
}

.brand p {
    line-height: 1.6;
}

.product-detail .slick-active {
    opacity: 1;
}

.product-detail .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1;
    margin: 8px 10px;
}

ul.brand h3 {
    color: #00000082;
    font-size: 22px;
    padding: 20px 0 20px 0;
    text-decoration: line-through;
}

.price_rev {
    margin-bottom: 18px;
}

ul.brand h2 {
    line-height: 1;
    font-size: 25px;
    font-weight: 600;
    padding: 0 0 20px 0;
    color: #000;
    margin-bottom: unset;
}

ul.brand h4 {
    font-size: 16px;
    margin: 20px 0px;
    text-transform: uppercase;
}

ul.brand p {
    padding: 0 0 25px 0;
    color: #000000b8;
    font-family: 'Montserrat';
    font-size: 14.5px;
}

.quanity.product-detail div {
    gap: 30px;
    display: flex;
    align-items: center;
    margin: 0px 0px 31px;
    border-radius: 0 !important;
    justify-content: flex-start;
}

.quanity.product-detail .num-block.skin-2 .num-in,
.quanity.product-detail .num-block.skin-2 {
    gap: 0;
    margin-bottom: 0px;
}

.payment-method-main h3 {
    margin-bottom: 24px;
}

.quan-count {
    height: 47px;
    width: 152px;
    display: flex;
    padding: 0px 10px;
    border-radius: 60px;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbcbcb;
    margin: 0;
}

.sku {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.sku p {
    font-size: 17px;
    font-weight: 600;
    padding: 0 0 10px 0;
    color: var(--headingColor2);
}

.sku span {
    font-size: 17px;
    font-weight: 600;
    color: var(--headingColor2);
}

ul.share-icon {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 0;
}

.sku>div:last-child {
    width: 70%;
}


.row.flexEnd.price_rev p i {
    color: #00c4cc;
}

ul.share-icon li {
    font-size: 17px;
    font-weight: 600;
    color: var(--headingColor2);
}

.sku p {
    margin-bottom: 10px;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 14px;
}

.sku p.position-relative {
    top: 10px;
}

.sku>div:first-child {
    width: 30%;
}

ul.share-icon a {
    width: 26px;
    height: 40px;
    display: flex;
    opacity: 1;
    font-size: 16px;
    border-radius: 50%;
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    color: #000;
}

ul.share-icon a:hover {
    opacity: 1;
    color: rgb(240 203 78);
    transition: ease-in;
    transition-duration: 0.5s;
}

/*  product Detail Review Section Start */


/* Rating Stars */

.prod-detail-description .rating:not(:checked)>input {
    position: absolute;
    -webkit-appearance: none;
}

.prod-detail-description .rating:not(:checked)>label {
    float: right;
    cursor: pointer;
    font-size: 30px;
    color: #666;
}

.prod-detail-description .rating:not(:checked)>label:before {
    content: "ÃƒÂ¢Ã‹Å“Ã¢â‚¬Â¦";
}

.prod-detail-description .rating>input:checked+label:hover,
.prod-detail-description .rating>input:checked+label:hover~label,
.prod-detail-description .rating>input:checked~label:hover,
.prod-detail-description .rating>input:checked~label:hover~label,
.prod-detail-description .rating>label:hover~input:checked~label {
    color: #e58e09;
}

.prod-detail-description .rating:not(:checked)>label:hover,
.prod-detail-description .rating:not(:checked)>label:hover~label {
    color: #ff9e0b;
}

.prod-detail-description .rating>input:checked~label {
    color: #ffa723;
}

.price_rev .col-6 {
    width: fit-content;
}

/* Rating Stars */

.prod-detail-description {
    position: relative;
    padding: 0 0% 100px;
}

.prod-detail-description .nav-tabs .nav-link {
    padding: 15px;
    font-size: 19px;
    font-weight: 500;
    width: fit-content;
    margin-right: 10px;
    background: transparent;
    text-transform: uppercase;
    border-bottom: 3px solid #0000;
    border-radius: 0 !important;
    font-family: 'Safira';
    color: #000;
}

.prod-detail-description .nav-tabs .nav-link.active,
.prod-detail-description .nav-tabs .nav-item.show .nav-link {
    border: 0;
    border-color: #000;
}

.prod-detail-description .nav-tabs .nav-link:hover,
.prod-detail-description .nav-tabs .nav-link:focus {
    border: 0;
    border-color: #000;
}

.prod-detail-description .nav-tabs {
    margin-bottom: 15px;
    border: 0;
    border-bottom: 1px solid #dee2e6;
}

.prod-detail-description .prd-review-input label {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    font-family: 'Montserrat';
}

.prod-detail-description .prd-review-input input {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    font-size: 16px;
    color: #00000063;
    font-weight: 500;
    border: 1px solid #00000063;
    margin: 5px 0 20px;
    background-color: transparent;
}

.prod-detail-description .prd-review-input input::placeholder,
.prod-detail-description .prd-review-input textarea::placeholder {
    color: #000;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Montserrat';
}

.prod-detail-description .prd-review-input textarea {
    width: 100%;
    height: 200px;
    padding: 13px;
    border: 1px solid #00000063;
    margin: 5px 0 0;
    color: #00000063;
    font-size: 16px;
    font-weight: 600;
    resize: none;
    background-color: transparent;
}

.prod-detail-description .rating-stars input {
    width: auto !important;
    height: auto;
    border: 0;
}

.prod-detail-description .rating-stars {
    display: inline-grid;
    justify-items: baseline;
}

.prod-detail-description .rating {
    display: block;
    /* align-items: center; */
    /* justify-content: flex-start; */
    /* gap: 5px; */
    margin: 20px 0;
    float: left;
}

ul.disc-list {
    margin: 0px 0 10px;
}

ul.disc-list li p {
    padding: 0 !important;
}

ul.disc-list li {
    margin-bottom: 12px;
}

.prod-detail-description .prd-review-input.give-review h4 {
    font-size: 26px;
    color: #000;
    text-transform: uppercase;
}

.prod-detail-description .prd-review-input.give-review button {
    padding: 15px 40px;
    border-radius: 0;
    border: 1px solid #000;
    font-size: 16px;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    margin-top: 10px;
}

.prod-detail-description .client-review-box {
    box-shadow: 0 0 5px 1px #98989861;
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
}

.prod-detail-description ul.client-list-review {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.prod-detail-description ul.client-list-review li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.prod-detail-description ul.client-list-review img {
    width: 80px;
    height: 80px;
    border-radius: 100px;
    object-fit: cover;
    box-shadow: 0 0 5px 1px #989898;
}

.prod-detail-description ul.client-list-review h5 {
    font-size: 24px;
    color: #000;
    text-transform: capitalize;
    font-weight: 500;
    font-family: 'avertademope';
    margin-bottom: 0px;
}

.prod-detail-description ul.client-list-review h6 {
    font-size: 14px;
    color: #666;
    font-family: 'Montserrat';
}

.prod-detail-description ul.client-list-review li i {
    font-size: 20px;
    color: #c78b1b;
}

.prod-detail-description .client-info {
    margin-left: 15px;
    margin-top: 13px;
}

.prod-detail-description .client-review-box p {
    font-size: 16px;
    font-family: 'Montserrat';
    font-weight: 400;
}

.prod-detail-description .prd-det-review-form .row {
    align-items: center;
}

.prod-detail-description .prd-det-discription-content p {
    margin: 0;
    font-size: 14px;
    padding-bottom: 15px;
    color: #000000bf;
    font-family: 'Montserrat';
}

.prod-detail-description .prd-det-additional-content p {
    text-align: justify;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
    font-family: 'Montserrat';
    font-weight: 400;
}

.prod-detail-description .prd-det-discription-content ul li p {
    font-family: 'avertademope';
    font-size: 20px;
    color: #000;
    padding-bottom: 10px;
}

ul.disc-list li i {
    color: #000;
}

.product-detail1 .skin-2 .num-in {
    height: 50px;
    width: 150px;
    float: left;
    display: flex;
    border-radius: 25px;
    cursor: pointer;
    align-items: center;
    position: relative;
}

.product-detail1 .skin-2 .num-in span:before,
.product-detail1 .skin-2 .num-in span:after {
    opacity: 1;
    content: '';
    position: absolute;
    background-color: var(--black);
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}

section.inner_gift_sec1 .about_text h3 {
    font-size: 44px;
}

.product-detail1 .skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
    opacity: 1;
}

ul.disc-list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.minus,
.plus {
    font-size: 20px;
    padding: 0.5rem;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 0.5rem;
    cursor: pointer;
    user-select: none;
    /* Prevent text selection */
    border: 0;
}

.minus.dis {
    color: #aaa;
    cursor: not-allowed;
}

.minus:hover:not(.dis),
.plus:hover {
    border-color: #102d26;
    color: #102d26;
}

#number {
    height: 25px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    width: 53px;
}

.skin-2 .num-in span {
    width: 40px;
    height: 40px;
}

.productdetail-main-img {
    text-align: center;
    background: #f9f8fa;
    padding: 40px 0px;
    border-radius: 10px;
}

.product-content ul li span {
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 500;
    color: #000000d6;
}

.prod-detail-description .nav-item {
    padding-bottom: unset;
}

.productdetail-main-img img {
    width: 60%;
    height: 470px;
    object-fit: contain;
}

.quantity-heading h2 {
    font-family: 'Montserrat';
    font-size: 19px;
    margin-bottom: 20px;
    color: #000;
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
}

span#plus {
    border: 1px solid #0000004f;
    margin-right: 0px;
    height: 46px;
    width: 50px;
}

span#minus {
    width: 50px;
    height: 46px;
    border: 1px solid #00000045;
    margin-left: 0px;
}

/* Shop detail Page ends */



/*CART PAGE CSS*/

.shopping_cart {
    margin-bottom: 100px;
}

.shopping_cart_table h3 {
    margin-bottom: 15px;
}

.shopping_cart_table table th {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Montserrat';
    padding-bottom: 10px;
    color: #151414;
}

.shopping_cart_table table thead {
    border-bottom: 1px solid #b8b8b8;
}

.shopping_cart_table table tbody td {
    padding: 25px 0;
    border-bottom: 1px solid #b8b8b8;
}

.shopping_cart_table table tbody .cart_box_product {
    display: flex;
    gap: 15px;
    align-items: center;
}

.shopping_cart_table table tbody .cart_box_product .cart_product_name h5 {
    font-size: 20px;
    color: #040404;
    text-transform: capitalize;
}

.shopping_cart_table table tbody .cart_box_product .cart_product_name p {
    font-size: 12px;
    font-weight: 500;
    color: #000000bf;
    text-transform: capitalize;
    font-family: 'Montserrat';
    line-height: 20px;
    margin-top: 4px;
}

.shopping_cart_table table tbody td select {
    height: 40px;
    padding-left: 10px;
    appearance: auto;
    border: 1px solid #b8b8b8;
}

.shopping_cart_table table tbody td .skin-2 .num-in {
    border: 1px solid #b5b5b5;
    height: 60px;
    border-radius: 10px !important;
}

.shopping_cart_table table tbody td .t_price {
    font-size: 25px;
    font-weight: 400;
    color: #020202;
    font-family: 'avertademope';
}

th.w-40 {
    width: 40%;
}

.shopping_cart_table table tbody td i.fas.fa-times {
    font-size: 20px;
    color: var(--black);
}

.minus,
.plus {
    font-size: 20px;
    padding: 0.5rem;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 0.5rem;
    cursor: pointer;
    user-select: none;
    /* Prevent text selection */
}

.minus.dis {
    color: #aaa;
    cursor: not-allowed;
}

.minus:hover:not(.dis),
.plus:hover {
    border-color: #102d26;
    color: #102d26;
}

#number {
    height: 25px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    font-family: 'Safira';
    color: #000;
}

.cart_recipt {
    display: flex;
    margin-top: 30px;
    align-items: flex-start;
    justify-content: space-between;
}

.cart_recipt>a {
    font-size: 16px;
    border-radius: 30px;
    font-weight: 500;
    color: #151414;
    padding: 13px 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid #b8b8b8;
    font-family: 'Montserrat';
}

.cart_recipt>a i {
    margin-right: 10px;
}

.recipt {
    width: 30%;
}

.cart_product_img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.cart_product_img {
    width: 100px;
    display: flex;
    height: 100px;
    flex-shrink: 0;
    border-radius: 0px;
    align-items: center;
    justify-content: center;
    background: #f6f6f8;
}

.recipt li {
    display: flex;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    align-items: center;
    text-transform: uppercase;
    justify-content: space-between;
    font-family: 'Montserrat';
    width: 76%;
}

.recipt li:last-child {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #b8b8b8;
}

.recipt li span {
    font-size: 16px;
    letter-spacing: 2px;
    font-family: 'Montserrat';
}

.payment_card {
    padding: 15px 25px 25px;
    border-radius: 15px;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: #e3e2e2;
}

.payment_card h3 {
    font-size: 35px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e3e2e2;
}

.credit_paypal a {
    padding: 10px 20px;
    border: 1px solid #f3f3f3;
    border-radius: 30px;
    gap: 10px;
    display: inline-flex;
    align-items: center;
    color: var(--black);
    font-weight: 500;
    background-color: #f3f3f3;
    font-size: 15px;
    justify-content: space-between;
}

.table-responsive table {
    max-width: 1000px;
    width: auto !important;
    min-width: 100%;
    overflow-x: auto;
}

.credit_paypal a img {
    height: 20px;
    object-fit: contain;
    margin-right: 10px;
    filter: brightness(0);
}

.credit_paypal {
    padding-bottom: 20px;
    border-bottom: 1px solid #e3e2e2;
}

.payment_card form label {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat';
    color: #000;
}

.payment_card form {
    margin-top: 15px;
}

.payment_card form input {
    padding: 0;
    width: 100%;
    height: 50px;
    border: none;
    color: #000;
    font-weight: 500;
    margin-bottom: 15px;
    background: transparent;
    border-bottom: 1px solid #e3e2e2;
}

.payment_card form input::placeholder {
    color: var(--black);
    font-weight: 500;
}

.payment_card form select {
    width: 100%;
    padding: 0;
    height: 50px;
    border: none;
    color: #000;
    font-weight: 500;
    margin-bottom: 15px;
    background: transparent;
    border-bottom: 1px solid #e3e2e2;
    font-family: 'Montserrat';
}


.expiry_cvv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.expiry_date {
    width: 70%;
}

.cvv_box {
    width: 26%;
}

.month_year {
    display: flex;
    justify-content: space-between;
}

.month_year select {
    width: 48% !important;
    appearance: auto;
}

.month_year select option {
    color: var(--black);
}

.payment_card form .btn1 {
    margin: 30px 85px;
    border: 1px solid;
}

.shopping_cart_table {
    padding-right: 40px;
}

.skin-2 .num-in {
    height: 40px;
    width: 150px;
    float: left;
    display: flex;
    border-radius: 25px;
    cursor: pointer;
    align-items: center;
}

.skin-2 .num-in span {
    width: 40px;
    height: 40px;
    border: none;
}

.skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
}

.num-in input.in-num {
    background-color: #ffffff;
    width: 38%;
}

.skin-2 .num-in input {
    float: left;
    width: 40px;
    height: 40px;
    border: none;
    text-align: center;
    background: transparent;
}

.cart-to-check-box {
    display: flex;
    margin-top: 25px;
    align-items: center;
    justify-content: start;
}

.shopping_cart span#plus {
    border: unset;
}

.shopping_cart span#minus {
    border: unset;
}

.payment_card h6 {
    color: #000;
    font-size: 24px;
    font-weight: 500;
}


/*CART PAGE CSS END*/

.product-main:hover img {
    transform: scale(1.3);
}

.product-img img {
    transition: 0.5s all;
}



.slider-count {
    position: absolute;
    right: 20px;
    bottom: 28%;
    color: #000;
    display: grid;
    gap: 6px;
    width: 50px;
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 500;
    align-items: center;
    justify-content: center;
}

.slider-count .line {}

.big-number {
    position: absolute;
    right: -10px;
    top: 37%;
    font-size: 200px;
    color: #fff;
    font-weight: bold;
    font-family: 'Safira';
    font-size: 300px;
    opacity: 50%;
}


.baner-img img {
    object-fit: scale-down;
}

.slick-current .baner-img img {
    height: 530px !important;
    width: 100%;
    object-fit: cover !important;
    margin: 0 !important;
}

.slide.slick-slide {
    align-content: end;
    margin: 10px 10px;
    height: 520px;
}


.baner-slider-img {
    position: relative;
    left: 30px;
}

.hero-master-container {
    margin-bottom: 100px;
}

.slick-active .baner-img img {
    height: 300px;
    display: block;
    object-fit: contain;
}

.slick-current+.slick-active .baner-img {
    margin-bottom: 30px;
}

.baner-text-box {
    margin-top: 70px;
}

span.current {
    font-size: 20px;
    position: relative;
}

span.current:before {
    content: '';
    position: absolute;
    top: 12px;
    right: -37px;
    background: #000;
    width: 30px;
    height: 1px;
}

.header-logo img {
    width: 110px;
}