@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=Dosis:wght@200..800&family=Fredoka:wght@300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Outfit:wght@100..900&family=Readex+Pro:wght@160..700&display=swap');
/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px;
    color: #393939;
    overflow-x: hidden;
    font-family: "Montserrat", serif;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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


/***** 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: 'ancient';
    src: url(../fonts/ancient.ttf);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'diranista';
    src: url(../fonts/diranista.otf);
    font-weight: 400;
    font-style: normal
}

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

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn10 {
    border: 1px solid #a30000 !important;
    text-align: center;
    position: relative;
    overflow: hidden !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #a30000 !important;
    z-index: 10;
    display: inline-block;
    color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    font-size: 17px;
    font-family: Poppins;
    font-weight: 400
}

.btn10:hover {
    border: 1px solid #a30000 !important;
    color: #fff !important
}

.btn10::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #a30000;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    transition: all .7s cubic-bezier(.77, 0, .175, 1);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000 !important
}

.btn10::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #fff;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
    -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    transition: all .4s cubic-bezier(.2, .95, .57, .99);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000 !important
}

.btn10:hover::before,
.btn1O:hover::before {
    opacity: 1;
    width: 116%
}

.btn10:hover::after,
.btn1O:hover::after {
    opacity: 1;
    width: 120%
}

.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: 'ancient';
    font-size: 65px;
    line-height: 65px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px;
}

h2 {
    font-family: 'ancient';
    font-size: 75px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 25px;
}

h3 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

p {
    color: #adadad;
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
}


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

header {
    padding: 15px 0;
    position: absolute;
    z-index: 999;
    width: 100%;
}

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    text-transform: capitalize;
}

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

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 0px 28px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.menusec-right-side {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: end;
}


span.theme-btn-arrow {
    background: #04122a;
    padding: 10px 12px;
    border-radius: 50%;
    margin-left: 7px;
    font-size: 16px;
}

.menusec-right-side-btn ul {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    width: 100%;
}



li.menusec-right-my-cart {
    text-align: center;
}

li.menusec-right-my-cart a {
    color: #7b7b7b !important;
}

li.menusec-right-my-cart i {
    color: #fff;
    margin-bottom: 5px;
}

html a.theme-btn-1 {
    background: #c91111 !important;
    padding: 15px 10px 15px 18px !important;
    border-radius: 50px !important;
    border: 1px solid #fff !important;
    color: #fff;
    text-transform: uppercase;
}


.menusec-right-side a {
    padding: 0 !important;
}

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

.header-logo a img {
    width: 187px;
    height: 86px;
    object-fit: cover;
}


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

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

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

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

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

.menuSec li:hover a {}

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

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

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

.menuSec ul:after {
    clear: both;
}

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

.banner_text h1 span {
    display: block;
    margin-bottom: 20px;
}


/* Header Ends */

/* Banner Start */

section.main_slider video {
    width: 100%;
    height: 820px;
    object-fit: cover;
    opacity: 0.5;
}

.main-banner-img {
    width: 100%;
    object-fit: cover;
}

.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: 80px;
    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;
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

.banner_text p {
    margin-bottom: 35px;
    width: 73%;
}

.banner-main-img {
    margin-left: -55px;
    position: relative;
    z-index: 99999;
}

section.main_slider {
    position: relative;
    margin-bottom: -8px;
    overflow: hidden;
}

/*section.main_slider:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    background: #252525;*/
/*    width: 1px;*/
/*    height: 100%;*/
/*    left: 485px;*/
/*}*/

/*section.main_slider:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    background: #1a1a1a;*/
/*    width: 1px;*/
/*    height: 100%;*/
/*    right: 535px;*/
/*    top: 0;*/
/*}*/

.main_slider-banner-line {
    position: absolute;
    width: 100%;
    z-index: 9;
    bottom: 0;
    right: 0;
}


.banner_text {
    position: relative;
    z-index: 9999;
}

.sci-firelated-banner-silder-text p {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

.sci-firelated-banner-silder-text p:before {
    content: "";
    position: absolute;
    background: #553a38;
    width: 100%;
    height: 1px;
    bottom: -10px;
    left: -37px;
}

.banner_text h1 {
    position: relative;
}

.banner_text h1:before {
    content: "";
    position: absolute;
    background: #383838;
    width: 110%;
    height: 1px;
    bottom: 70px;
}

.sci-firelated-banner-silder-text h2 {
    font-size: 48px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 5px;
    font-family: 'diranista';
}

.sci-firelated-banner-silder-text a {
    color: #fff;
    text-decoration: underline;
}

.sci-firelated-banner-silder-text {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    margin-top: -70px;
    position: relative;
    z-index: 9999;
}


.inner-banner .main-banner-img {
    height: 800px;
}

.inner-banner .banner_text h1 {
    font-size: 130px;
}

.inner-banner .banner_text h1::before {
    display: none;
}

.inner-banner .banner-main-img {
    width: 80%;
    float: right;
}

/* Banner End */

/*Banner Counter Start*/

.baner-counter-sec {
    background-image: url(../images/banner-counter-back.png);
    width: 100%;
    height: 100%;
    background-size: cover;
    padding: 30px 0;
    border-top: 1px solid #1a1a1a;
    background-position: 87% 100%;
    position: relative;
}

.banner-counter-srcoll-bar a img {
    width: 25px;
    height: 35px;
    object-fit: contain;
}

.banner-counter-srcoll-bar a {
    background: #ca1c0e;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    margin: 0 auto;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.banner-counter-srcoll-bar {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: -50px;
    z-index: 9999;
}

span.theme-btn-arrow.bnr img {
    width: 9px;
    height: 9px;
    object-fit: contain;
    margin-top: -3px;
}

.baner-counter-box.one p {
    margin-bottom: 0;
}


.baner-counter-box h2 {
    font-size: 55px;
    margin-bottom: 0px;
    color: #fff;
    font-family: 'diranista';
}

.baner-counter-box.three {
    margin-left: 50px;
}

.baner-counter-box.two {
    margin-left: 50px;
}

/*Banner Counter End */


/*About US Start*/


.about-us-text-btn {
    margin-top: 40px;
}

.about-us-text p {
    font-size: 15px;
}

.about-us-sec .row {
    align-items: center;
}

.about-us-images img {
    width: 100%;
}

.about-us-sec {
    padding: 140px 0;
    background-image: url(../images/about-us-back.png);
    width: 100%;
    height: 100%;
    background-size: cover;
    position: relative;
}

.about-us-sec:before {
    content: "";
    position: absolute;
    background-image: url(../images/about-water.png);
    width: 100%;
    height: 605px;
    background-size: cover;
    top: 0px;
    z-index: -1;
}
.about-us-sec:after {
    content: "";
    position: absolute;
    background: #ca1c0e;
    width: 450px;
    height: 130px;
    bottom: 380px;
    z-index: 1;
    left: 0;
}

.about-us-images {
    position: relative;
    z-index: 9;
}


/*About US Ends */

/*Rydiken Moons The Birth Dra Start*/


.rydiken-moons-the-birth-dra-text {
    padding: 100px 0;
}

.rydiken-moons-the-birth-dra-text p {
    margin-bottom: 0;
}

.rydiken-moons-the-birth-dra-sec .row {
    position: relative;
}

.rydiken-moons-the-birth-dra-text ul {
    display: flex;
    align-items: center;
    width: 90%;
    margin-bottom: 15px;
    justify-content: space-between;
}

.rydiken-moons-the-birth-dra-text ul li i {
    color: #ffc107;
    font-size: 22px;
}

.inc {
    background-color: #fff !important;
    margin-top: 11px;
    display: flex;
    align-items: center;
    border-radius: 41px !important;
    border: 2px solid #c0c0c0;
    width: 140px;
    height: 55px;
    background: #c91111 !important;
    border-radius: 50px !important;
    border: 1px solid #fff !important;
    color: #fff;
    text-transform: uppercase;
}

.number-item .inc-addto-cart {
    width: max-content;
}

.number-item {
    gap: 15px;
    display: flex;
    align-items: center;
}

.number-item .theme-btn-1 {
    width: 25 0px;
}

.input-number,
.input-number1,
.input-number-decrement,
.input-number-increment {
    border: 0;
    height: 25px;
    user-select: none;
    font-weight: 700;
    padding: 3px 5px 5px 5px;
    width: 30px;
    color: #fff;
    font-size: 13px;
}

input.abngkj.input-number4 {
    width: 100%;
    text-align: center;
    height: 50px;
    border-radius: 10px;
    border: none;
    font-size: 23px;
    font-weight: 500;
    margin-top: 0;
    background-color: transparent;
    color: #fff;
    pointer-events: none;
    font-size: 18px;
}

.rydiken-moons-the-birth-dra-text ul li h4 {
    color: #fff;
    font-size: 40px;
}

.inner-product-detail-sec .row:before {
    height: 110% !important;
}

.rydiken-moons-the-birth-dra-sec .row:before {
    content: "";
    position: absolute;
    width: 80%;
    height: 100%;
    background: #c91111;
    z-index: -1;
    right: 0;
}

.rydiken-moons-the-birth-dra-book {
    margin-top: 40px;
    margin-bottom: -25px;
}

.rydiken-moons-the-birth-dra-text {
    padding: 50px 0 100px;
}

.rydiken-moons-the-birth-dra-text p {
    color: #fff;
}

.rydiken-moons-silder-items img {
    width: 100%;
}

.rydiken-moons-silder .slick-next:before {
    content: '';
    background-image: url(../images/rydiken-moons-silder-arrow-right.png);
    width: 38px;
    height: 40px;
    background-size: cover;
    z-index: 9;
    position: absolute;
    filter: brightness(0) saturate(100%) invert(93%) sepia(77%) saturate(2%) hue-rotate(40deg) brightness(108%) contrast(101%);
    opacity: 5 !important;
}

.rydiken-moons-silder .slick-prev,
.slick-next {
    top: inherit;
    bottom: -55px;
}

.rydiken-moons-silder .slick-prev:before {
    content: '';
    background-image: url(../images/rydiken-moons-silder-arrow-right.png);
    width: 38px;
    height: 40px;
    background-size: cover;
    z-index: 9;
    position: absolute;
    filter: brightness(0) saturate(100%) invert(93%) sepia(77%) saturate(2%) hue-rotate(40deg) brightness(108%) contrast(101%);
    opacity: 5 !important;
    transform: rotate(180deg);
}

.rydiken-moons-silder .slick-next {
    right: 0;
    left: 0;
    margin: 0 auto;
}

.rydiken-moons-silder .slick-prev {
    left: 0;
    right: 120px;
    margin: 0 auto;
}

.rydiken-moons-the-birth-dra-sec {
    position: relative;
}

.rydiken-moons-the-birth-dra-sec:before {
    content: "";
    position: absolute;
    background: #280303;
    width: 250px;
    height: 400px;
    top: 50px;
}


/*Rydiken Moons The Birth Dra Ends */

/* Add to cart Section start */

.add-to-cart thead {
    background: #c91111;
}

.add-to-cart .table>thead>tr>th {
    border-bottom: 0;
    padding-left: 30px;
    padding-bottom: 25px;
    padding-top: 25px;
}

.add-to-cart thead tr th {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    text-transform: uppercase;
}

.table-space h3 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 5px;
    margin-top: 30px;
    line-height: 23px;
}

.table-space span {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
}

.table-space {
    margin-top: 18px;
    margin-bottom: 10px;
    display: inline-block;
}

tr.space {
    border-bottom: 1px solid #ccc;
}

section.add-to-cart {
    padding: 5% 0;
}

.add-to-cart input {
    width: 100%;
    text-align: center;
    height: 49px;
    border-radius: 6px;
    border: 1px solid #ebebeb;
    font-size: 23px;
    color: #000;
    font-weight: 500;
    margin-top: 24px;
}

.add-to-cart a {
    font-size: 17px;
    display: block;
    text-align: center;
    padding-top: 9px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
}

.add-to-cart h4 {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    /*font-family: 'Roboto', sans-serif;*/
}

.add-to-cart .table>tbody>tr>td,
.add-to-cart .table>tbody>tr>th,
.add-to-cart .table>tfoot>tr>td,
.add-to-cart .table>tfoot>tr>th,
.add-to-cart .table>thead>tr>td,
.add-to-cart .table>thead>tr>th {
    vertical-align: middle;
}



a.remove {
    color: #fff;
    font-size: 29px;
    padding: 6px 15px;
    border: 1px solid #e6e5e5;
    background: #c91111;
    border-radius: 5px;
}


.total-section {
    border: 1px solid #e5e5e5;
    padding: 27px 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.total-section ul {
    /*font-family: 'trajan';*/
    list-style: none;
    margin-bottom: 0;
}

.total-section li {
    font-size: 20px;
    padding-bottom: 20px;
    color: #333333;
    /* font-family: 'Roboto'; */
}

li.color-change {
    color: #fff;
    text-transform: uppercase;
    color: #d60000;
    font-weight: 500;
    font-size: 23.96px;
    /*font-family: 'trajan';*/
}

.total-section li.color-change span {
    font-weight: 500;
    font-size: 23.96px;
    color: #d60000;
}

.total-section li span {
    float: right;
    color: #fff;
}

.ship-estimate {
    background-color: #f9f9f9;
    padding: 10px 40px;
    border: 1px solid #e5e5e5;
    margin-top: 138px;
    border-radius: 5px;
}

.ship-estimate li {
    font-size: 22px;
    color: #d60000;
    margin-bottom: 5px;
    font-weight: 600;
}

.ship-estimate ul {
    margin-top: 20px;
    margin-bottom: 50px;
    /*font-family: 'trajan';*/
    list-style: none;
}

.ship-estimate .grey-style {
    color: #fff;
    font-size: 20px;
    /*font-family: 'Roboto';*/
    font-weight: 500;
}

.proceed a {
    color: #fff;
    text-align: left;
    font-size: 21px;
    /* background: #000000; */
}

.proceed .checkout-btn {
    border: none;
    padding: 20px;
    font-size: 20px;
    margin-top: 4px;
    border-radius: 0;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    /* background-image: linear-gradient(to bottom right, #00814069, #008140); */
    background: #c91111;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

.or-amazon {
    margin-top: 50px;
    position: relative;
    border: 1px solid #c0c0c0;
    /* top: 25px; */
    padding: 30px 50px;
    border-radius: 5px;
    background: #f9f9f9;
}

.or-amazon p {
    font-size: 13px;
    position: absolute;
    background: #f9f9f9;
    top: -14px;
    left: 118px;
    padding: 0px 50px;
    color: #5b5b5b;
    display: block;
    text-transform: uppercase;
    border: 1px solid #c0c0c0;
}

.or-amazon a {
    text-decoration: none;
    text-align: center;
}

.product-img {
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
    border-radius: 10px;
}

.product-img img {
    width: 100%;
}

.table> :not(:last-child)> :last-child>* {
    border-bottom-color: #c91111;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.grn {
    color: #fff !important;
}


/* Add to cart Section End */



/*Must Read Bokk Unbeatable Start*/


.must-read-book-unbeatable-sec .row {
    background: #280303;
    padding: 20px 40px 30px;
}

.must-read-book-unbeatable-images {
    margin-top: -180px;
    margin-bottom: -180px;
    margin-right: -120px;
    text-align: end;
}

.must-read-book-unbeatable-text h2 span {
    display: block;
}

.must-read-book-unbeatable-text h2 {
    line-height: 70px;
    margin-bottom: 22px;
}

.must-read-book-unbeatable-text p {
    margin-bottom: 35px;
}

.must-read-book-unbeatable-images img {
    width: 80%;
}

.must-read-book-unbeatable-sec {
    margin-top: 250px;
}


/*Must Read Bokk Unbeatable Ends */


/*Interesting Facts Start*/

.interesting-facts-images img {
    width: 100%;
}

.interesting-facts-text {
    margin-left: 40px;
}

.interesting-facts-btn {
    margin-top: 40px;
}

.interesting-facts-sec {
    background-image: url(../images/interesting-facts-back.png);
    width: 100%;
    height: 100%;
    background-size: cover;
    padding: 150px 0 80px;
}

/*Interesting Facts End*/


/* Testimonials Start */
.person-imgs {
    display: flex;
    align-items: center;
    gap: 70px;
}

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

.author {
    display: flex;
    align-items: end;
    gap: 20px;
}

.title h4 {
    font-size: 30px;
    color: #ffff;
    font-weight: 400;
    margin: 0 0 5px;
    font-family: 'diranista';
}

.testi-slider .slick-slide {
    margin: 20px 0px;
}

.slick-list.draggable {
    padding: 0 0 !important;

}

.title h5 {
    font-size: 17px;
    color: #7c7c7c;
    font-family: "Montserrat", serif;
    margin-bottom: 0;
}

.testi-body p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0;
}

.testi-body {
    padding: 40px 0 0;
}

.title {
    margin: 0 0 20px;
}

.quote img {
    width: 80px;
}

.author-img img {
    width: 145px;
}

.testimonial-box {
    margin: 0 0 50px;
    min-height: 300px;
    padding: 0 25px 50px;
    background: #280303;
}

.author-img {
    position: relative;
    top: -20px;
    margin-bottom: -30px;
}

.testi-slider .slick-prev,
.testi-slider .slick-next {
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: unset;
    bottom: 30px;
    z-index: 1;
}

.testi-slider .slick-prev:before,
.testi-slider .slick-next:before {
    background: #c91111;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    /* content: "\f30b"; */
    font-family: 'Font Awesome 5';
    color: #fff;
}


.testi-slider .slick-prev:before {
    transform: rotate(360deg);
}

.testi-slider .slick-next {
    right: 30px;
}

.testi-slider .slick-prev {
    left: unset;
    right: 90px;
}

.person-imgs.right {
    padding-left: 40px;
}

.person-imgs.left {
    padding-right: 30px;
}

section.testi-sec {
    padding-bottom: 100px;
}

section.testimonials {
    padding: 150px 0px 100px;
    position: relative;
}

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

section.testimonials:before {
    content: "";
    position: absolute;
    background-image: url(../images/whtat-client-says-before.png);
    width: 100%;
    height: 663px;
    background-size: cover;
    top: 0;
    z-index: -1;
}

.about-test-mo {
    padding-bottom: 0px !important;
}

/* Testimonials Ends */


/*checkout start*/
.billing_form {
    padding: 30px;
    background-color: #130a03;
}

.billing_form h3 {
    margin-bottom: 30px;
    font-size: 40px;
    color: #fff;
    margin: 0;
    margin-bottom: 20px;
    line-height: 28px;
    font-family: 'Poppins';
    font-weight: 400;
}

.billing_form label {
    font-size: 13px;
    color: #fff;
    line-height: 20px;
    font-weight: 600;
}

input[type="text"]::placeholder {
    font-family: 'Montserrat';
    font-size: 14px;
    color: #7c7c7c;
    font-weight: 500;
    line-height: 14px;
}

.radiosss p {
    color: #fff;
    font-size: 12px;
    font-family: 'Montserrat';
    font-weight: 600;
}

.billing_form input {
    width: 100%;
    height: 45px;
    border: 1px solid #fff;
    margin-bottom: 20px;
    padding-left: 15px;
    background-color: #fff0;
    /* border-radius: 20px; */
}

.billing_form input::placeholder {
    color: #7C7C7C;
}

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

.cart_sidebar .cart_lst li {
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 500;
    color: #fff;
}

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

.cart_sidebar .cart_lst li:last-child {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    font-family: 'Montserrat';
}

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

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

.thankyou_txt h3 {
    font-size: 35px;
    color: #000;
    font-weight: 800;
    margin: 0;
}

.thankyou_txt h3 i {
    font-size: 40px;
    margin-right: 15px;
}

.order_det h5 {
    font-size: 20px;
    color: #7c7c7c;
    font-weight: 400;
}

.order_det p {
    font-weight: 700;
    font-size: 20px;
    color: #000;
    margin: 0;
}

.order_complete_detail h3 {
    font-size: 22px;
    color: #000;
    font-weight: 700;
}

.order_detail_table {
    padding: 40px;
    border: 1px solid #b7b7b7;
}

.order_detail_table h5 {
    margin-top: 0px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dbdbdb;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.order_detail_table ul {
    margin-top: 20px;
    margin-bottom: 30px;
}

.order_detail_table ul li:not(:last-child) {
    margin-bottom: 25px;
}

.order_detail_table ul li {
    font-size: 14px;
    color: #7c7c7c;
}

.order_detail_table ul li span {
    float: right;
}

.order_detail_table ul li:last-child {
    font-weight: 700;
    color: #000;
}

.order_detail_table h6 {
    font-size: 17px;
    font-weight: 700;
    color: #000;
    padding: 25px 0;
    border-top: 1px solid #dbdbdb;
    margin: 0;
}

.order_detail_table h6 span {
    float: right;
}

.check_menu ul {
    text-align: center;
    margin-bottom: 40px;
}

.check_menu ul li {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #7c7c7c;
    margin: 0 14px;
}

.check_menu ul li i {
    font-size: 18px;
}

.check_menu ul li.purp {
    color: #4b902c;
}

.cart_sidebar::before {
    position: absolute;
    content: '';
    width: 40px;
    height: 40px;
    background-image: url(../images/all-sec2.png);
    right: -82px;
    bottom: 48px;
    background-repeat: no-repeat;
    background-size: cover;
}

.cart_sidebar {
    padding: 40px 25px;
    border-radius: 5px;
    position: relative;
    background-color: #1a1a1a;
}

.cart_sidebar h3 {
    font-size: 40px;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: 25px;
    margin-bottom: 20px;
}

.cart_sidebar .h-sub {
    font-weight: 500;
    font-size: 20px;
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 20px;
    line-height: 0;
    padding-bottom: 30px;
    padding-top: 20px;
    color: #fff;
}

li.inc {
    background-color: #f7f7f7;
    border: none;
    padding: 20px;
    outline: none;
}

.cart_sidebar h5 span {
    float: right;
}

.cart_sidebar h4 {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    font-family: 'Montserrat';
}

.cart_sidebar ul li input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.cart_sidebar ul li label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    font-family: 'Montserrat';
}

.cart_sidebar ul li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #a1a1a1;
    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 #a1a1a1;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

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

.cart_sidebar form {
    margin-top: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #b7b7b7;
}

.cart_sidebar form h4 {
    font-size: 14px;
    font-weight: 400;
    color: #b7b7b7;
}

.cart_sidebar form select {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form select option {
    color: #000;
}

.cart_sidebar form input {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form input::placeholder {
    color: #b7b7b7;
}

.cart_sidebar form button {
    color: #000;
    font-size: 15px;
    border-radius: 0px;
    font-family: 'Poppins', sans-serif;
    padding: 10px 40px;
    background-color: #ebebeb;
    border: 2px solid #ebebeb;
}

.cart_sidebar form button:hover {
    background-color: transparent;
    transition: 0.3s ease-in-out;
}

.checkout_btn {
    border: 1px solid #fff;
    padding: 14px 50px;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    /* border-radius: 100px; */
    background-color: #e6ac00;
    /* border-bottom: 3px solid #fbbe26; */
    border-radius: 100px;
}

.Quick_info ul li a {
    text-transform: lowercase;
    font-size: 14px;
}

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

h6.payment-h {
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
}

label {
    display: inline-block;
    font-family: 'Montserrat';
    font-size: 16px;
    line-height: 20px;
    color: #7c7c7c;
    font-weight: 500;
    margin-bottom: 12px;
}

.cart_sidebar .radiosss-payments li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #b7b7b7;
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 50px;
}

.cart_sidebar .radiosss-payments li input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    border-radius: 20px;
    left: 6px;
    border: 0;
    width: 10px;
    height: 10px;
    background-color: #ffa200;
}

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

.billing_form h3 span {
    color: #000;
}

.cart_sidebar h3 span {
    color: #000;
}

section.checkout_page {
    padding: 70px 0px 0px;
    position: relative;
}

/*checkout end*/

/*Account page Start*/
.account {
    position: relative;
    padding: 100px 0px 0;
}

.account::before {
    top: 0;
    width: 1px;
    content: "";
    left: 485px;
    height: 100px;
    position: absolute;
    background: #252525;
}

.account::after {
    top: 0;
    content: "";
    background: #1a1a1a;
    width: 1px;
    height: 100px;
    right: 535px;
    position: absolute;
}

.text-account h2 {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 51px;
    margin-bottom: 20px;
}

.text-account p {
    font-size: 16px;
}

.account-fields input {
    width: 100%;
    border: 1px solid #fff;
    height: 50px;
    margin-bottom: 20px;
    padding: 0px 20px;
}

.account-btn .btn.theme_btn {
    padding: 15px 55px;
    font-weight: 500;
    color: #fff;
    border-radius: 45px;
    background: #ff0000;
}

.account-btn {
    margin-top: 30px;
}

.text-account {
    background: #0d0d0d;
    padding: 50px 38px;
    height: 740px;
}

.or-text h2 {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 51px;
    color: #ffd900;
    text-align: center;
}

.account .row {
    align-items: center;
    display: flex;
    justify-content: center;
}

/*Account Page End*/

/* inner-product-detail-sec */

.inner-product-detail-sec {
    padding: 200px 0px 0px;
    position: relative;
}

.inner-product-detail-sec::before {
    content: "";
    position: absolute;
    background-image: url(../images/about-water.png);
    width: 100%;
    height: 605px;
    background-size: cover;
    top: 0px;
    z-index: -1;
}

/* inner-product-detail-sec */

/*Footer Start*/

footer {
    position: relative;
    padding-top: 100px;
    background: #000000;
}

footer .container {
    position: relative;
}

.innner-footer-sec .footer-form {
    border: none;
}

footer .container::before {
    top: 100px;
    right: 102%;
    content: '';
    width: 100px;
    height: 100px;
    position: absolute;
    background: url(../images/footer-before.png)no-repeat;
    background-position: center;
    background-size: contain;
}

.footer-txt img {
    margin: 0 0 20px;
    width: 40%;
}

.footer-txt p {
    color: #fff;
}

.footer-txt h5 {
    color: #fff;
    margin-top: 25px;
    font-size: 14px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.footer-txt .ul-first {
    gap: 25px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.footer-txt .ul-first li h5 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.footer-txt .ul-first li h6 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
    border-bottom: 1px solid #707070;
}

.ul-secone li {
    gap: 5px;
    display: flex;
    align-items: center;
}

.ul-secone li i {
    font-size: 6px;
    color: #66b2b2;
}

.ul-secone li p {
    margin-bottom: 0;
}

.footer-map iframe {
    width: 95%;
    height: 150px;
    margin-top: 30px;
    border-radius: 25px;
}

.footer-txt {
    width: 95%;
}

.footer-form h3 {
    color: #fff;
    margin: 0 0 10px;
}

.footer-form p {
    color: #fff;
    margin: 0 0 40px;
}

.footer-form input {
    width: 100%;
    margin: 0 0 25px;
    border: 0;
    color: #fff;
    height: 60px;
    padding: 0 20px;
    background: transparent;
    border-bottom: 1px solid #fff;
}

.footer-form input::placeholder {
    color: #fff;
}

.footer-form textarea {
    height: 120px;
    width: 100%;
    margin: 0 0 35px;
    background: transparent;
    padding: 20px;
    border: 0;
    color: #fff;
    resize: none;
    border-bottom: 1px solid #fff;
}

.footer-form label {
    color: #fff;
    font-family: 'Poppins';
}

.footer-form textarea::placeholder {
    color: #fff;
}

.footer-form button {
    border: 1px solid #333333;
    height: 60px;
    width: 100%;
    display: flex;
    color: #fff;
    padding: 0px 25px;
    align-items: center;
    text-transform: uppercase;
    background-color: transparent;
    justify-content: space-between;
}

.footer-bottom {
    border-top: 1px solid #fff;
}

.footer-bottom p {
    color: #fff;
    margin: 0 auto 0;
    text-align: center;
    padding: 20px;
}

.footer-form {
    border-left: 1px solid #fff;
    padding-left: 60px;
    padding-top: 100px;
    padding-bottom: 80px;
}

.footer-map {
    margin-bottom: 70px;
}

.footer-form h6 {
    color: #fff;
    margin: 0;
}

/*Footer End*/