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

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

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #fff;
    overflow-x: hidden;
    background-color: #282828;
}

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

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

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

img {
    max-width: 100%;
}

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

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

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

p {
    font-weight: 500;
    line-height: 1.7;
}


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


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

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

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

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #ffffff;
    z-index: 1;
    background: #242889;
    position: relative;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #72d219;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 55px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 55px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

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

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

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

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

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

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

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

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

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


/*header css start */

.menuSec {
    padding: 15px 0px 15px;
    background: #c44551;
}

.menuSec img {
    margin: 0;
}

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

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

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    padding: 10px 28px;
    font-size: 18px;
    font-weight: 500;
}

/* .menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
} */

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

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

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

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

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

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

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

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

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

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

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

.menuSec ul:after {
    clear: both;
}

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

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

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */


/* Tab slider fix  */

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

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


/* Tab slider fix  */

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

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

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

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

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

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

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

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

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

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


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

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

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

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


/* Tabs  */


/*-------------- Side Css Start ---------------------*/
.top-br-line ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.top-br-line ul li p{
    margin: 0;
}
.topSec {
    background: #000;
}
.topSec {
    background: #000;
    padding: 20px 0px;
}
.top-br-line ul li p a{
    margin-left: 20px;
    text-decoration: underline;
}
.top-br-line ul li p:hover {
    color: #C44551;
}

a:hover {
    color: #C44551;
}
.logo-header a {
    font-family: 'Poppins';
    font-size: 46px;
    font-weight: 800;
    color: #C44551;
}
.header-serch-input ul {
    text-align: start;
}


.input-serch-box {
    border: 3px solid #fff;
    border-radius: 5px;
    position: relative;
}
.input-serch-box input {
    padding: 10px 6px;
    width: 500px;
    /* position: relative; */
    border: unset;
}
.input-serch-box select {
    position: absolute;
    top: 1px;
    right: 40px;
    border: unset;
    background: #c44551;
    padding: 10px 60px 10px 13px;
    color: #fff;
    appearance: auto;
}

.input-serch-box button {
    position: absolute;
    top: 3px;
    right: 0;
    border: unset;
    background: transparent;
    padding-top: 7px;
    font-size: 20px;
}
.logo-header {
    margin-top: 12px;
}
.icon-user-text b {
    font-size: 17px;
}


option {
    background: #fff;
    color: #000;
}
.header-serch-input ul {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 0;
}
.header-serch-input ul li a {
    display: flex;
    align-items: center;
    gap: 13px;
}


.header-serch-input ul li a .icon-user-text p {
    margin-bottom: 0px;
    font-weight: 300;
}

.header-serch-input ul li a .icon-user i {
    font-size: 30px;
}
.menu {
    padding: 20px 0px;
}


section.banner-sec {
    width: 100%;
    /* margin: 0 auto; */
    position: relative;
}
section.banner-sec img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}
section.banner-sec:before {
    position: absolute;
    content: '';
    background: #0000007a;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.home-banner-text {
    position: absolute;
    top: 50px;
    left: 14%;
    width: 39%;
}
.banner-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    /* background: red; */
    z-index: -1;
    position: relative;
}

.banner-img {
    background: #0000006e;
    height: 100%;
    width: 100%;
    position: relative;
}
.game-icon-sec-set ul.inline-game-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    gap: 22px;
}
ul.inline-game-icon li a img {
  height: 150px;
  width: 100%;
  object-fit: contain;
}

section.game-icon-section {width: 100%;margin: 0 auto;background: #000;}

.game-icon-sec-set {
    /* background: #000; */
    padding: 80px 0px 40px;
}

span.color-pink {
    color: #c44551;
}

.product-top-text {
    text-align: center;
}

.product-top-text h2 {
    color: #fff;
    font-weight: 700;
}

.product-box-text p {
    color: #f2034d;
}





.product-box-1 {
    position: relative;
    text-align: center;
}


.product-box-1:hover .poduct-hover-img {
    opacity: 1;
    transition: 0.9s;
}




.product-box-main-img .poduct-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
section.fetured-product-set {
    width: 70%;
    margin: 0 auto;
    margin-top: 20px;
}
.popular-top-text {
    text-align: center;
}
.popular-top-text h2{
    color: #fff;
}
section.popular-sec-start {
    margin-top: 30px;
}
section.popular-sec-start {
    /* margin-top: 30px; */
    background: #000;
    padding: 20px 0px;
}
.popular-text h3 {
    color: #fff;
    font-size: 21px;
    text-align: center;
    font-weight: 400;
    font-family: math;
    line-height: 30px;
    margin-top: 10px;
    margin-bottom: 0;
}

.popular-box {
    border: 1px solid #d14250;
    padding: 12px;
    border-radius: 10px;
    height: 274px;
}
.popular-view-btn a {
    text-align: center;
    background: #fff;
    padding: 5px 10px;
    color: #d14250;
    border-radius: 5px;
    height: 40px;
}
.popular-view-btn {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}




/*footer Section Start*/

.footerSec {
    /* background: #111111; */
    background-image: url(../images/footer-bg-img.png);
    padding: 40px 0 20px;
}

.foot-links h5 {
    font-size: 25px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 35px;
    display: inline-block;
    margin-bottom: 20px;
    color: #c44551;
    margin-top: 10px;
}

.foot-links i {
    color: #fff;
    font-size: 22px;
}

ul.social-list li i:hover {
    transform: rotate(360deg);
}

ul.contact_list p {
    font-size: 15px;
    color: #fff;
    margin: 0;
}

ul.contact_list li {
    display: flex;
    align-items: center;
    margin-bottom: 70px;
    justify-content: flex-start;
    gap: 12px;
}

ul.payment {
    display: flex;
    margin: 0px 0 40px;
}

ul.payment li {
    margin: 15px 10px 0 0;
}

ul.social-list {
    display: flex;
}

ul.social-list li {
    width: 45px;
    height: 45px;
    background: transparent;
    margin: 0px 5px;
    padding-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    text-align: start;
    border: 1px solid #c44551;
}

ul.social-list li i {
    width: 20px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s ease-in-out;
}

ul.contact_list li i {}

ul.quick_list li a {
    line-height: 40px;
    text-transform: capitalize;
    font-size: 16px;
    color: #fff;
}

.copy-txt p {
    /* color: #fff; */
    /* text-align: center; */
    /* border-top: 1px solid #ffffff57; */
    /* margin-top: 20px; */
    /* padding-top: 15px; */
    margin: 0;
}

.foot-links h5 {
    position: relative;
    z-index: 9;
    transition: .5s ease-in-out;
    /* color: #c44551; */
}
/* 
.foot-links h5:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    z-index: -1;
    bottom: 0;
    background: #fff;
    transition: .5s ease-in-out;
}

.foot-links:hover h5:after {
    height: 100%;
    background: #00a0e0;
} */

.foot-links:hover h5 {
    padding: 0 5px;
}
.logo-header.footer-ch-st {
    margin-bottom: 30px;
}

.footer-input-s form {
    position: relative;
    margin-bottom: 30px;
}
.footer-input-s input[type="email"] {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    border: none;
    border-radius: 6px;
}
.footer-input-s button {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    color: #fff;
    border: none;
    background: #c44551;
    border-radius: 5px;
}
.copy-txt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin: 20px 0px; */
    border-top: 1px solid #fff;
    padding: 20px 0px 0px;
}

/*footer Section End*/






.container-fluid {
    padding: 0;
}
section.banner-sec.inner-banner {
    width: 100%;
}
.banner-img.ionner-banner-img {
    background: transparent;
    display: flex;
    align-items: center;
}
.banner-img.ionner-banner-img img{
    height: 400px;
    width: 100%;
    object-fit: cover;
}
.text-banner {
    position: absolute;
    top: 35%;
    left: 0;
    text-align: center;
    right: 0;
    /* display: flex; */
    align-items: center;
}
.text-banner h2 {
    color: #fff;
    font-size: 80px;
    font-weight: 500;
}
.about-text h4 {
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.about-text h2 {
    color: #fff;
    margin-bottom: 10px;
    line-height: 78px;
}
.about-text p {
    line-height: 30px;
}
.home-banner-text h2 {
    color: #fff;
}



.popular-top-sec h2 {
    text-align: center;
    color: #fff;
}
section.popular-sec {
    background: #000;
    padding: 40px 0px;
}

.above-sec{
    background-image: url(../images/above-the-sky-bg.png);
    height: 100%;
    width: 100%;
    padding: 40px 30px 40px 0px;
    background-attachment: fixed;
}

.above-img img {
    height: 450px;
    object-fit: cover;
}
span.dis-blo-set {
    display: block;
}
.above-text h2 {
    color: #fff;
    font-size: 52px;
}
.above-img {
    padding-left: 60px;
}
.client-sec{
    background-image: url(../images/client-says-bg-img.png);
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 40px 0px;
    background-attachment: fixed;
}
.client-text-set h2 {
    color: #fff;
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
}
.slider-box {
    background: #c44551;
    padding: 50px 40px 80px;
    text-align: center;
    border-radius: 20px;
}

.client-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 2px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background: #c44551;
}

.client-slider .slick-dots li button:before {
    content: '';
}
.slick-dots {
    bottom: -40px;
}
.blog-article-set {
    text-align: center;
    padding: 40px 0px 60px;
}
.blog-article-set h2{
    color: #fff;
}
section.banner-sec.inner-banner:before {
    background: none;
}
.about-img ul {
    display: flex;
    gap: 30px;
    margin-bottom: -9px;
}
li.img-1ss {
    margin-top: 30px;
}
li.img-1ss img{
    border-radius: 20px;   
}
li.img-2ss img{
    border-radius: 20px;   
}
section.about-sec {
    margin: 120px 0px;
}
li.img-1ss img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}
li.img-2ss img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}
.banner-img.ionner-banner-img.top-iimg img {
    height: 230px;
}

.our-must-text h2 {
    color: #fff;
    font-size: 35px;
}
section.our-must-sec {
    background-image: url(../images/our-must-bg-img.png);
    padding: 90px 0px;
    height: 100%;
    width: 100%;
}









/* #muct-clivkhover-area {
    text-align:center;
    margin: 0 auto;
    display: block;
    width: 100%;
    height:125px;
} */
#reveal {
    width: 100%;
    display: none;
    /* border-radius: 3px; */
    /* box-shadow: 1px 1px 3px #555; */
    /* padding: 25px; */
}
.click-css h3{
    font-size: 20px;
    font-family: sans-serif;
    text-align: start;
    color: #fff;
    padding: 0;
    margin-bottom: 10px;
}
/* h1:hover {
    transition-timing-function: ease;
    color: #fafafa;
    text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 10px 10px rgba(0,0,0,.2), 0 20px 20px rgba(0,0,0,.15);
} */

.our-must-in-css p{
  text-align: left;
}
.clivck-icon-set {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.must-img-inn img {
    height: 330px;
    width: 100%;
    object-fit: cover;
}
.box-must-start {
    position: relative;
    text-align: center;
}
.mucst-btn-inn {
    position: absolute;
    top: 0;
    left: 0;
    background: #f4a51c;
    height: 30px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mucst-btn-inn p{
    margin: 0;    
}


.must-img-inn.must-hover-inner {
    position: relative;
}


ul.must-icon-hover {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 68%;
    gap: 36px;
    padding: 10px;
    /* margin: 0 auto; */
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
ul.must-icon-hover li a{
    color: #000;
}
.second-box {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.9s;
}

.box-must-start:hover .second-box{
    opacity: 1;
}

.our-must-slider .slick-active {
    opacity: 1;
}



.our-must-slider .slick-dots li button:before {
    /* font-family: 'slick'; */
    font-size: 0px;
    /* line-height: 20px; */
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    /* content: ''; */
    text-align: center;
    opacity: 0.5;
    /* color: #fff; */
    border: 2px solid #fff;
    border-radius: 50%;
}
section.coming-soon-sec {
    margin-top: 30px;
}


section.faq-sec {
    margin: 80px 0px;
}

.faq-text {
    text-align: center;
    width: 70%;
    margin: 0 auto;
}


/*faq start*/
button.accordion-button i {
    background-color: #1E0279;
    color: #fff;
    padding: 10px;
       margin-right: 11px; 
}

button.accordion-button {
    color: #3b3663;
    font-size: 18px;
        padding: unset;
    padding-bottom: 10px;
    border: unset;
    border-bottom: 1px solid #6398f5;
}
.accordion-body{border-width: 1px;/* border-bottom-color: #5A97F0; */font-size: 16px;font-weight: 400;line-height: 24px;letter-spacing: 0px;padding: 18px 0px 16px 8px;background: #282828;}
.accordion-body i{
    background-color: #6254e7;
    padding:10px;
    color: #fff;
  margin-right: 11px;
}

section.faq {
    padding: 90px 0px;
    position: relative;
}
button.accordion-button.collapsed {
    padding: unset;
    padding-bottom: 10px;
    border: unset;
    /* border-bottom: 1px solid #6398f5; */
    background: #C44552;
    padding: 12px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
img.imge-1 {
    position: absolute;
    width: 30px;
    top: 60%;
    left: 60px;
  animation: rotatedelement 5s linear infinite;  
}
img.imge-2 {
    position: absolute;
    width: 20px;
    top: 30%;
    left: 40px;
  animation: rotatedelement 5s linear infinite;  
}
img.imge-4 {
    position: absolute;
    width: 27px;
    right: 100px;
    top: 22%;
 animation: rotatedelement 5s linear infinite;   
}
img.imge-3 {
    position: absolute;
    right: 49px;
    width: 30px;
    top: 48%;
 animation: rotatedelement 5s linear infinite;   
}
.accordion-item {
    border: unset;
    border-bottom: none;
    margin-bottom: 20px;
    /* padding: 10px 20px; */
}
.faq-img img {
    width: 100%;
}
section.faq .row{
  align-items: center;
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #c44552;
    /* box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125); */
    padding: 12px 12px;
    font-size: 20px;
    font-weight: 700;
}
/*faq end*/



/*Contact Form Start*/
.toptext-contact-form .faq-txt h3 {
    margin-bottom: 30px;
    color: #c44552;
}
.contact-fields input {
    width: 100%;
    border: 2px solid #c44552;
    padding: 8px 10px;
    margin-bottom: 20px;
    background: transparent;
    border-radius: 5px;
    color: #fff;
}
.contact-fields label {
    font-size: 14px;
    font-family: 'Hind';
    color: #fff;
}
.contact-textarea label{
    font-size: 14px;
    font-family: 'Hind';
    color: #242424;
}
.contact-textarea textarea {
    width: 100%;
    height: 190px;
}
.contact-textarea textarea {
    width: 100%;
    height: 190px;
    width: 100%;
    border: 2px solid #c44552;
    padding: 10px 10px;
    margin-bottom: 25px;
    background: transparent;
    border-radius: 5px;
}
button.btn-1 {
    font-family: "Hind", sans-serif;
    border: 2px solid #c44552;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 25px;
    background: #c44552;
    color: #fff;
    border-radius: 5px;
}
.contactform {
    padding: 0px 10px 0px 50px;
}
.toptext-contact-form .faq-txt {
    padding: 0px 10px 0px 50px;
}
.login-btn {
    border-style: solid !important;
    border-width: 0px 0px 0px 0px !important;
    border-radius: 50px 50px 50px 50px !important;
    padding: 14px 42px 14px 42px !important;
    width: 100% !important;
    border-radius: 0 !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    background: #f4a51c !important;
    color: #fff !important;
    border-radius: 30px !important;
    height: 50px !important;
}


.faq-txt h6 {
    color: #fff;
}

.contact-page-text h3 {
    color: #c44552;
}


.contact-page-text p {
    margin-bottom: 30px;
}

section.contact-us-sec {
    margin: 80px 0px;
}



.pro-deatil-sec{
    padding: 60px 0;
}
.pro-deatil-sec .deatil_img{}
.pro-deatil-sec .deatil_img img{
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: top;
}
.pro-deatil-sec .main_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pro-deatil-sec .main_top ul{
    margin: 0;
    display: flex;
    gap: 5px;
}
.pro-deatil-sec .main_top ul li{}
.pro-deatil-sec .main_top ul li a{
    color: #fff;
    font-size: 12px;
}


.midd_bdy .quantity a {
    padding: 8px;
    border: 2px solid rgba(129, 129, 129, .20);
    color: #bba8a8;
    font-weight: 600;
    margin: 0;
}
.add_btn a {
    background: #fa0052;
    margin-left: 110px;
    margin-top: -54px;
    color: #fff;
    padding: 8px 18px;
    border-radius: 34px;
}
.midd_bdy h4 {
    color: #fff;
    margin: 24px 0px;
}

.midd_bdy h6 {
    color: #fff;
}

.midd_bdy ul {
    display: flex;
    gap: 20px;
}

.box-star-img ul li img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.box-star-img ul {
    display: flex;
    align-items: center;
    margin: 0;
}
.box-star-img {
    border: 1px solid #fff;
    padding: 20px;
    margin-bottom: 33px;
}
.quantity {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}


































*Products Detail Page Start*/

.products-detail-sec {
    padding: 80px 0;
}
.products-detail-text ul {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}
.prod-detail-silder-items img {
    width: 100%;
    height: 800px;
}
.products-detail-text ul li a {
    font-size: 13px;
    color: #777777;
    font-weight: 500;
    font-family: 'Hind';
}
.products-detail-text ul li {
    font-size: 12px;
    color: #8e8e8e;
}
.products-detail-text a.active {
    color: #333 !important;
    font-weight: 600 !important;
}
.products-detail-text h2 {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 20px;
}
.products-detail-text h3 {
    font-size: 21px;
    color: #d42d2a;
    font-family: 'Hind';
    margin-bottom: 20px;
}
.prod-detail-silder {
    cursor: pointer;
}
ul.quantity-button li a {
    background: #d42d2a;
    padding: 12px 20px;
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
}
ul.wishlist {
    margin-top: 30px;
}
ul.wishlist {
    gap: 40px;
    border-bottom: 1px solid rgba(119, 119, 119, 0.2);
    padding-bottom: 3%;
}
.products-detail-text h2 span {
    margin-left: 8px;
    color: #8e8e9d;
    font-weight: 400;
}
ul.wishlist li a {
    color: #333333;
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-size: 14px;
    font-family: 'Hind';
    font-weight: 600;
}
.products-detail-text h2 {
    font-size: 34px;
    font-weight: 500;
    color: #333333;
    font-family: 'Ubuntu';
    margin-bottom: 13px;
}
ul.socail-icon li h2 {
    margin-bottom: 0;
    margin-right: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    font-family: 'Hind';
}
ul.socail-icon {
    gap: 15px;
    margin-top: 24px;
}
.reviews-tab-sec {
    border-top: 1px solid #e4e4e4;
    padding-top: 2%;
}
.nav {
    justify-content: start;
    gap: 20px;
}
.nav-tabs .nav-link {
    font-family: 'Ubuntu';
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
}
.nav-tabs {
    border-bottom: none;
    margin-bottom: 1%;
}
.reviews-form h2 {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 1px;
    font-family: 'Ubuntu';
}
.reviews-form h3 {
    font-size: 14px;
    color: #777;
    font-family: 'Hind';
    margin-bottom: 0px;
}
.reviews-form span.red {
    color: #e01020;
    margin-left: 5px;
}
.reviews-form textarea {
    width: 100%;
    height: 180px;
    border: 1px solid #000;
    margin-bottom: 10px;
    background: transparent;
    color: #fff;
}
.reviews-form ul.checkbox li input {
    width: 19px;
}
.reviews-form ul.checkbox {
    margin-top: 3%;
}
.reviews-form button {
    width: 15%;
    font-size: 13px;
    text-transform: uppercase;
    height: 43px;
    color: #fff;
    border: none;
    background: #d42d2a;
}
.reviews-form ul.checkbox li {
    display: flex;
    align-items: center;
    gap: 6px;
}
.reviews-form ul.checkbox li label {
    font-size: 14px;
    font-family: 'Hind';
    color: #fff;
    margin-bottom: 0px;
}

.reviews-form ul {
    display: flex;
    align-items: center;
    gap: 10px;
}
.reviews-form ul li span {
    color: unset;
}
.reviews-form ul li span:hover {
    color: #eabe12 !important;
}
.reviews-form label {
    font-size: 15px;
    margin-bottom: 5px;
    color: #322432;
    font-weight: 500;
    font-family: Montserrat, sans-serif;
    color: #fff;
    font-weight: 400;
    font-family: 'Hind';
    font-size: 14px;
}
.reviews-form ul li h2 {
    margin-bottom: 0;
    color: #fff;
    font-weight: 400;
    font-family: 'Hind';
    font-size: 14px;
}
.reviews-form input {
    width: 100%;
    height: 39px;
    border: 1px solid #000;
    background: transparent;
    color: #fff;
}
.reviews-tab-sec {
    margin-bottom: 5%;
}
.reviews-heading h2 {
    font-size: 14px;
    color: #242424;
    font-weight: 600;
    margin-bottom: 0px;
    font-family: 'Ubuntu';
}
.reviews-heading p {
    font-size: 14px;
    color: #777777;
    margin-bottom: 0;
    font-family: 'Hind';
}
.reviews-tab-sec .nav-link {
    color: #fff;
}
.reviews-tab-sec .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #fff;
    background-color: inherit;
    border-color: inherit;
    border: none;
    position: relative;
    font-weight: 700;
}
.reviews-tab-sec .nav-link:hover,
.nav-tabs .nav-link:focus {
    border-color: inherit !important;
    isolation: inherit !important;
    border: none;
    color: #c44551;
}
.maecenas-iacults-text ul li {
    line-height: 22px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 14px;
    font-family: 'Hind';
}

.maecenas-iacults-text h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #c44551;
    font-family: 'Ubuntu';
}
.maecenas-iacults-text li {
    color: #777d80;
    font-size: 16px;
}
.prod-detail-silder-items-icon a i {
    font-size: 17px;
    color: #8e8e8e;
}
.products-detail-text {
    position: relative;
}

.products-detail-text-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.products-detail-text-icon ul li {
    font-size: 20px;
}
.maecenas-iacults-text p {
    line-height: 25px;
    color: #fff;
    font-size: 14px;
    font-family: 'Hind';
}
.featured-products-heading.chg {
    text-align: left;
    margin-bottom: 4%;
    position: relative;
}
.featured-products-button.chg a i {
    color: #333333;
}
.featured-products-button.chg a {
    background: #fff;
    box-shadow: 0 0 10px 0 #00000075;
}

.featured-products-heading.chg:before {
    content: "";
    position: absolute;
    border: 1px solid #d42d2a;
    bottom: -10px;
    width: 5%;
}
.featured-products-sec.chg1 {
    border-top: 1px solid #e4e4e4;
    padding: 50px 0;
}
.featured-products-heading.chg h2 {
    font-size: 22px;
    font-family: 'Ubuntu';
}
.products-detail-text p {
    font-size: 14px;
    font-family: 'Hind';
    color: #777777;
    width: 92%;
    font-weight: 400;
}
h2.cate-h2 {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    font-family: 'Hind';
    margin-bottom: 0px;
}
.products-detail-text-icon ul li i.fas.fa-th-large {
    font-size: 13px;
    margin-bottom: 10px;
}
.products-detail-text ul li a:hover {
    color: #000;
}
.text-description h2 {
    font-size: 22px;
    font-family: 'Ubuntu';
    color: #242424;
    margin-bottom: 10px;
}
.text-description p {
    font-size: 14px;
    font-family: 'Hind';
    color: #fff;
}
.text-description2 p {
    padding-left: 40px;
    font-size: 15.4px;
}
.text-description2 {
    position: relative;
}
.text-description2:before {
    position: absolute;
    content: '';
    width: 2px;
    height: 80px;
    background: #c44551;
    top: -4px;
}
.prodetailslid .slick-active {
    opacity: 1.5;
}
.prodetailslid .slick-next:before {
    content: '\f054' !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 33px;
}
.prodetailslid .slick-prev:before {
    content: '\f053' !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 33px;
}
.prodetailslid .slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: 1.25;
}
.prodetailslid .slick-dots li button:before {
    font-size: 14px;
    top: -2px;
    width: 15px;
    height: 10px;
    opacity: 0.25;
    color: unset;
}
.prodetailslid .slick-dots li.slick-active button:before {
    opacity: 1.75;
    color: black;
}
.prodetailslid .slick-dots li button {
    width: 12px;
    height: 14px;
    border: 2px solid #bbbbbb;
    border-radius: 20px;
}
/*Products Detail Page End*/













.checkout-main {
    margin-top: 5%;
}

.billing-details-form h2 {
    font-size: 25px;
    color: #c44551;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

.billing-details-form label {
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
}

.billing-details-form input,
.billing-details-form select {
    height: 45px;
    padding: 0 10px;
    margin-bottom: 4%;
    border: 2px solid #e6e6e6;
    width: 100%;
    border-radius: 6px;
}

.billing-details-form input {
    color: #000;
}

.checkout-main label span {
    color: #c44551;
}

.billing-details-form input::placeholder {
    color: #8c9a98;
    font-size: 14px;
    font-family: 'Josefin Sans', sans-serif;
}

.billing-details-form select {
    color: #8c9a98;
    font-size: 14px;
    font-family: 'Josefin Sans', sans-serif;
}

.billing-details-form textarea {
    width: 100%;
    height: 200px;
    padding: 15px 10px;
    border: 2px solid #e6e6e6;
    color: #000;
    resize: none;
    border-radius: 8px;
}


.billing-details-form textarea::placeholder {
    color: #8c9a98;
    font-size: 14px;
    font-family: Montserrat, sans-serif;
}

.your-order-box h2 {
    font-size: 30px;
    color: #242424;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.your-order-box ul.your-order li h2 {
    font-size: 18px;
    margin-bottom: 0;
}

.your-order-box {
    padding: 30px;
    background-color: #f8f8f8;
}

.your-order-box ul li {
    display: flex;
    align-content: center;
    justify-content: space-between;
    border-bottom: 2px solid #efefef;
    padding: 15px 0;
    font-family: 'Josefin Sans', sans-serif;
}

.your-order-box li.no-padding {
    padding: 18px 0 0 0 !important;
    border: none !important;
}

.your-order-box ul li span {
    color: #84868d;
    font-size: 16px;
}

.your-order-box ul li h3 {
    font-size: 16px;
    margin-bottom: 0;
}

.your-order-box h4 {
    margin-bottom: 0;
    font-size: 25px;
    color: #e0b252;
}

.your-order-box ul.assistance {
    background: #e0b252;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 25px;
    margin-bottom: 20px;
}

.your-order-box ul.assistance li {
    border: none;
}

.check-out-sec {
    padding: 0px 0px 60px;
}

.your-order-box p {
    border-top: 1px solid #e6e6e6;
    padding-top: 18px;
    line-height: 25px;
    color: #77777b;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

.your-order-box p a {
    color: #333;
    font-weight: 700;
}

.your-order-box button {
    width: 100%;
    height: 55px;
    font-size: 16px;
    background: #7bbbdd;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
}

h3.price {
    color: #f5bbc5;
}

h3.price {
    color: #e0b252;
    font-weight: 700;
}

ul.assistance li h2 {
    border: 2px solid #fff;
    font-size: 16px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #fff;
}

ul.your-order {
    background-color: #fff;
    padding: 20px 20px;
}

.your-order-box ul li p {
    color: #fff;
    line-height: 23px;
    margin-bottom: 0;
    padding-top: 0;
    border: none;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}

.checkout-coupon-form.faq__panel {
    display: none;
}

.checkout-coupon-form.faq__panel.faq__panel_active {
    display: block;
}

.bottom-chesk-box-set form input {
    /* display: flex; */
    height: 18px;
    margin: 0;
    width: 16px;
}
.bottom-chesk-box-set form {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.bottom-chesk-box-set form label {
    margin: 0;
}
button.theme-btn-onon {
    background: #c44551;
    color: #fff;
    padding: 10px 24px;
    border: none;
}

.bottom-chesk-box-set {
    margin-bottom: 18px;
}
/*Check Out End*/




/*Inner Shop Start*/

.inner-shop-sec {
    padding: 80px 0;
}

.inner-shop-products-categories h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    font-family: 'Montserrat';
}

.filter-by-price h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 35px;
    font-weight: 500;
    font-family: 'Montserrat';
}

.filter-by-price ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;
}

.line-1:before {
    content: "";
    position: absolute;
    background: #eda416;
    width: 4px;
    height: 20px;
    top: -8px;
    left: 0px;
}

.line-1:after {
    content: "";
    position: absolute;
    background: #eda416;
    width: 4px;
    height: 20px;
    right: 0;
    top: -8px;
}

.filter-by-price ul li {
    font-size: 18px;
    color: #777777;
}

.filter-by-price ul li span {
    color: #fff;
    font-weight: 600;
    padding: 0 5px;
}

.filter-by-price ul li button {
    background: #f7f7f7;
    border: none;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.line-1:after {
    content: "";
    position: absolute;
    background: #eda416;
    width: 4px;
    height: 20px;
}

.line-1 {
    background: #eda416;
    width: 100%;
    height: 3px;
    position: relative;
}


.inner-shop-products-categories ul li a {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}

.inner-shop-products-categories {
    /* border-bottom: 1px solid #e4e4e4; */
    margin-top: 80px;
}

.inner-shop-products-categories ul {
    line-height: 40px;
}

.filter-by-price {
    margin-top: 35px;
    /* border-bottom: 1px solid #e4e4e4; */
    padding-bottom: 25px;
}

.stock-status-box {
    margin-top: 40px;
}

.stock-status-box h4 {font-size: 18px;color: #fff;margin-bottom: 35px;font-weight: 500;font-family: 'Montserrat';}

.shop-top-row-link ul {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
}


.shop-top-row-link ul li a {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

li.chg a {
    color: #c44551 !important;
    font-weight: 400 !important;
}

.shop-top-row-show ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.shop-top-row-icon ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0;
}

.shop-next-page-link ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    gap: 20px;
    justify-content: center;
}

.shop-next-page-link {
    margin-top: 50px;
}

li.page-open a {
    background: #eda416;
}

.shop-next-page-link ul li a {

padding: 10px 15px;

color: #fff;

font-weight: 700;
}

.shop-top-row-show ul li {
    font-size: 15px;
    font-weight: 400;
}

.shop-top-row-select select {
    width: 100%;
    height: 40px;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0;
    color: #000;
    font-weight: 600;
}

.shop-top-row {
    margin-bottom: 30px;
}

.shop-top-row-icon ul li svg {
    width: 22px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(21%) saturate(18%) hue-rotate(322deg) brightness(99%) contrast(89%);
}

.shop-top-row .row {
    align-items: center;
}

.shop-top-row-link ul li {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}


.stock-status-box ul li label {
    font-size: 15px;
    color: #333333;
    font-weight: 500;
}

.stock-status-box ul li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stock-status-box ul {
    line-height: 40px;
}

.stock-status-box ul li input {
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
}

.stock-status-box ul{
    margin: 0;
}
.stock-status-box ul li{
    padding: 0 0 10px 0;
    border-bottom: 1px solid rgba(129,129,129,0.2);
    margin: 10px 0 0 0;
}
.stock-status-box ul li .left_pro{
    width: 25%;
    display: inline-block;
    vertical-align: middle;
}
.stock-status-box ul li .left_pro img{}
.stock-status-box ul li .right_pro{
    width: 40%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 20px;
}
.stock-status-box ul li .right_pro p{
    margin: 0;
    color: #fff;
}
.stock-status-box ul li .right_pro span{
    color: #c44551;
}

.inner-shop-box-row .main_cc_bx{  }
.inner-shop-box-row .main_cc_bx p{padding: 20px;background: #efa03b;color: #fff;font-size: 17px;width: 90%;}
.inner-shop-box-row .main_cc_bx p i{font-weight: 300;margin: 0 10px 0 0;}

.inner-shop-box-row .main_cc_bx .input_wrp{width: 90%;border: 2px solid rgba(129,129,129,0.2);display: flex;align-items: center;justify-content: space-between;padding: 10px;}
.inner-shop-box-row .main_cc_bx .input_wrp input{border: none;}
.inner-shop-box-row .main_cc_bx .input_wrp i{display: inline-block;font-size: 18px;color: #dbd8d8;}


/*Inner Shop End*/



.scrollbar
{
    margin-left: 0px;
    float: left;
    height: 350px;
    width: 100%;
    background: transparent;
    overflow-y: scroll;
    margin-bottom: 125px;
}

.force-overflow
{
    min-height: 450px;
}

#wrapper
{
    text-align: center;
    width: 500px;
    margin: auto;
}

/*
 *  STYLE 1
 */

#style-1::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: transparent;
}

#style-1::-webkit-scrollbar
{
    width: 6px;
   
    background-color: transparent;
}

#style-1::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #737374;
}



.cheak-box-set h4 {
    color: #fff;
}
.privacy-text-set h3 {
    font-size: 46px;
    font-weight: 700;
    color: #c44551;
    margin-bottom: 10px;
    text-transform: uppercase;
}
section.pricavy-sec {
    margin: 80px 0px;
}
.privacy-text-set {
    border-right: 1px solid #fff;
    padding-right: 70px;
}
.privacy-text-set.heading-set h6 {
    color: #fff;
    margin: 30px 0px;
}

.privacy-text-set.heading-set h3 {
    margin: 0;
    text-align: center;
}
.privacy-text-set.heading-set p b {
    margin-right: 5px;
    color: #c44551;
    font-size: 18px;    
}
.privacy-text-set p {
    font-size: 16px;
}
.privacy-text-set.heading-set.mbb-ftf h3 {
    margin-bottom: 30px;
}











.fix-amination {
    /* height: 80px; */
    /* width: 30px; */
    position: fixed;
    z-index: 1;
    bottom: 60px;
    right: 0;
}
.fix-amination a img {
    height: 250px;
}
.fix-btn {
    position: fixed;
    bottom: 50px;
    right: 20px;
}

a.fix-btn-css {
    background: #005cff;
    padding: 16px 30px;
}


















.popup {
    width:100%;
    height:100%;
    display:none;
    position:fixed;
    top:0px;
    left:0px;
    background:rgba(0,0,0,0.75);
    z-index: 1;
}
 
/* Inner */
.popup-inner {
    width: 80%;
    padding:40px;
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
    box-shadow:0px 2px 6px rgba(0,0,0,1);
    border-radius:3px;
    background: #000;
    border: 5px solid #c44551;
    /* z-index: 1; */
}
 
/* Close Button */
.popup-close {
    width:30px;
    height:30px;
    padding-top:4px;
    display:inline-block;
    position:absolute;
    top:0px;
    right:0px;
    transition:ease 0.25s all;
    -webkit-transform:translate(50%, -50%);
    transform:translate(50%, -50%);
    border-radius:1000px;
    background:rgba(0,0,0,0.8);
    font-family:Arial, Sans-Serif;
    font-size:20px;
    text-align:center;
    line-height:100%;
    color:#fff;
}
 
.popup-close:hover {
    -webkit-transform:translate(50%, -50%) rotate(180deg);
    transform:translate(50%, -50%) rotate(180deg);
    background:rgba(0,0,0,1);
    text-decoration:none;
}



.popup-scroll{
  overflow-y: scroll;
  max-height: 300px;
  padding:0 1em 0 0;
}
.popup-scroll::-webkit-scrollbar {
    background-color:#EEE;
    width:10px;
}
.popup-scroll::-webkit-scrollbar-thumb {
    border:1px #EEE solid;border-radius:2px;background:#777;
    -webkit-box-shadow: 0 0 8px #555 inset;box-shadow: 0 0 8px #555 inset;
    -webkit-transition: all .3s ease-out;transition: all .3s ease-out;
}
.popup-scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: 0 0 2px #ccc;
    box-shadow: 0 0 2px #ccc;
}   

.popup-heading-text h2 {
    color: #fff;
    text-align: center;
}

.view-more-link {
    text-align: center;
    margin-top: 24px;
}

.view-more-link a {
    background: #fff;
    color: #000;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 30px;
}




/* CART PAGES CSS:STRT */
.number-item input {
    width: 100%;
    text-align: center;
    height: 55px;
    border-radius: 6px;
    border: 1px solid #ebebeb;
    font-size: 23px;
    color: rgb(0 0 0);
    font-weight: 500;
   
    background: #f7f7f7;
}
.product-cart figure,
.product-cart article {
    display: inline-block;
}

.cart-paypal-box img {
    height: auto;
    width: auto;
}

li.inc {
    border: 1px solid #f6f6f6;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.list-inline.pr_counter.d-flex.align-items-center {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cart-page-tble thead tr {
    height: 40px;
    color: #fff;
    background: #c44551;
}

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

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

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

.product-cart article p {
    font-weight: 400;
    font-size: 18px;
    color: #a2a1a1;
    text-transform: uppercase;
    margin: 0 0 0px;
    line-height: 25px;
    letter-spacing: 0;
    font-family: 'Poppins';
}

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

a.update {
    font-size: 16px;
    font-family: 'Poppins';
    color: #848383;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-page-tble tbody tr td input {
    height: 60px;
    border: none;
    background-color: #f7f7f7;
    color: #aea2a1;
    border-radius: 10px;
}

.update-cart {
    font-size: 17px;
    text-transform: capitalize;
    color: #a2a1a1;
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 0;
}

.shipping.text-black h4 {
    color: #848383;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    line-height: 40px;
    font-weight: 400;
}

.estimate.text-black h4 {
    color: #848383;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    line-height: 40px;
    font-weight: 400;
}

.unit-sub-price-text {
    font-size: 17px;
    color: #aba1a1;
    font-weight: 600;
}

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

.cart-page-tble tbody tr td i {
    border-radius: 0;
    background-color: #c44551;
    color: #fff;
}

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

.total-box,
.total-f,
.shipping-box {
    padding: 30px 40px 1px 40px;
    background-color: #f6f6f6;
  
}

.total-f {
    
    background-color: #f6f6f6;
    border-top: 0 !important;
    display: block;
    align-items: center;
  
}

.total-box .sum li {
    color: #757272;
    font-size: 20px;
    font-weight: 500;
    line-height: 35px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
}

.total-f h4 {
    color: #757272;
    color: #757272;
    font-size: 20px;
    font-weight: 500;
    line-height: 35px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
     font-family: 'Roboto', sans-serif;

}

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

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

.cart-paypal-box {
    margin-top: 30px;
    padding: 25px;
    border: 1px solid #c4c4c4;
    border-radius: 8px;
    background: #fff;
}

.cart-paypal-box p {
    display: block;
    width: fit-content;
    margin: auto;
    background-color: #fff;
    padding: 4px 20px;
    margin-top: -43px;
    margin-bottom: 20px;
    font-weight: 600;
    border: 1px solid #c4c4c4;
    color: #000;
}

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

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

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

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

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

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

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

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

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

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

.shipping.text-black p {
    font-size: 23px;
    color: #848383;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    line-height: 40px
}

.estimate.text-black.mt-30 p {
    font-size: 23px;
    color: #848383;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
       line-height: 40px
}

.checkout-bttn a {
    font-size: 20px;
    color: #fff;
    background: #c44551;
    padding: 15px 50px;
    margin-top: 0px;
    display: inline-flex;
    justify-content: center;
    border-radius: 5px;
}

a.contin {
    color: #c44551;
}


/* CART PAGES CSS:END */





/* Checkout Page Start */

.billing_form h3 {
    font-size: 20px;
    color: #fff;
    margin: 0;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.billing_form label {
    font-size: 12px;
    font-family: "Montserrat";
    color: #fff;
    font-weight: 600;
}

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

.billing_form input {
    width: 100%;
    height: 50px;
    border: 1px solid #c4c4c4;
    margin-bottom: 20px;
    padding-left: 25px;
    background: transparent;
    /* border-radius: 15px; */
    font-size: 12px;
    color: #fff;
}

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

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

.cart_sidebar .cart_lst li {
    font-size: 12px;
    color: #fff;
    font-family: "Poppins";
    display: flex;
    justify-content: space-between;
}

.cart_sidebar .cart_lst li span {
    float: right;
    color: #c44551;
    font-weight: 500;
}

.cart_sidebar .cart_lst li:last-child {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    font-family: "Poppins";
}

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

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

p.p-same-p {
    font-size: 13px;
    font-family: "Montserrat Alternates";
    background: transparent;
    line-height: 23px;
}

.cart_sidebar {
    padding: 40px 25px;
    border: 1px solid #fff;
    /* border-radius: 15px; */
}

.cart_sidebar h3 {
    font-size: 20px;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 20px;
    text-transform: capitalize;
    line-height: normal;
    font-weight: 700;
}

.cart_sidebar .h-sub {
    font-weight: 700;
    color: #fff;
    font-family: "Montserrat";
    font-size: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #fff;
    margin-bottom: 15px;
    line-height: 0;
    padding-bottom: 25px;
    padding-top: 15px;
}

.cart_sidebar h5 span {
    float: right;
}

.cart_sidebar h4 {
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    font-family: "Poppins";
    margin-bottom: 30px;
    line-height: normal;
    padding-top: 0;
}

.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: 12px;
    font-family: "Montserrat";
    font-weight: 500;
    color: #7c7c7c;
}

.cart_sidebar ul li label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #b7b7b7;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
}

.cart_sidebar ul li input:checked+label:after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid var(--brown);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

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

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

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

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

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

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

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

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

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

.checkout_btn {
    padding: 12px 0;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 20px;
    border: none;
    font-weight: 600;
    border: 2px solid transparent;
    background-color: var(--brown);
    /* border-radius: 15px; */
    text-transform: capitalize;
    font-family: "Poppins";
    background: #c44551;
}

.checkout_btn:hover {
    background-color: #000;
    color: #fff;
}

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

h6.payment-h {
    font-weight: 700;
    color: #fff;
    font-family: "Poppins";
    font-size: 15px;
    margin-bottom: 25px;
}

.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: 9px;
    border-radius: 20px;
    left: 6px;
    border: 0;
    width: 10px;
    height: 10px;
    background-color: var(--brown);
}

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

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

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

.billing_form {
    border: 1px solid #fff;
    padding: 40px 25px;
    /* border-radius: 15px; */
}

span.chk-price {
    color: #c44551 !important;
    font-size: 16px !important;
    font-family: "Montserrat" !important;
    font-weight: 600 !important;
}

.page-up {
    box-shadow: 1px 1px 5px 1px #000000;
}

.label-black {
    color: #fff !important;
    font-weight: 600 !important;
}
/* Checkout Page End */



/* Account Page Start */

.account-baner h1 {
    font-size: 50px;
    font-family: 'Syne';
    font-weight: 700;
    text-transform: none;
}

.account-page .mytabs.current {
    display: block;
    -webkit-animation: .8s ease-out slide-right;
    -moz-animation: .8s ease-out slide-right;
    height: auto;
    opacity: 1;
    transform: unset;
    transition: 0.8s;
}

/*.account-page .mytabs {*/
    /* display: none; */
/*    padding: 0px 0 0;*/
/*    height: 0;*/
/*    opacity: 0;*/
/*    transform: translateY(15px);*/
/*    transition: 0.5s;*/
/*}*/
.account-page .mytabs {
    display: none;
    padding: 0px 0 0;
    height: 0;
    opacity: 0;
    transform: translateY(15px);
    transition: 0.5s;
}

.account-page {
    position: relative;
}

.account-page .row {
    border-radius: 10px;
    background: transparent;
    padding: 120px 150px;
    position: relative;
    z-index: 9;
}

.account-page .row::before {
    position: absolute;
    content: '';
    width: 85%;
    height: 80%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: #282828;
    z-index: -1;
    margin: auto;
    border-radius: 14px;
}

.logi-form .row::before {
    display: none;
}

.logi-form .row {
    /* background: #fff; */
    padding: 0;
}

.account-page h2 {
    font-size: 40px;
    font-family: 'Syne';
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.account-rigth-box p {
    font-size: 16px;
    color: #A1A1A1;
}

.account-rigth-box {
    text-align: center;
    position: relative;
    padding: 0 30px;
}

ul.tbing {
    position: relative;
}

ul.tbing .current h3,
ul.tbing h3 {
    padding: 15px 40px;
    font-size: 13px;
    line-height: 18px;
    font-family: 'Karla';
    background-color: #fff;
    color: #000;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    border-radius: 0;
    box-shadow: none;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: none;
    font-weight: 600;
    cursor: pointer;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, opacity .25s ease;
    position: absolute;
    bottom: -70px;
    left: 0;
    right: 0;
    margin: auto;
    display: inline-table;
    width: auto;
    border-radius: 30px;
}

ul.tbing h3 {}

.login-form label {
    font-family: "Karla", Sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 2.2em;
    color: #fff;
    margin-bottom: 5px;
}

.login-form label>span {
    border: none;
    color: #E01020;
    font-size: 16px;
    line-height: 1;
}

.login-form input {
    width: 100%;
    color: #fff;
    border: 1px solid #000;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 20px;
    background: transparent;
}

.login-form button {
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-radius: 50px 50px 50px 50px;
    padding: 14px 42px 14px 42px;
    width: 100%;
    border-radius: 0;
    font-size: 16px;
    text-transform: uppercase;
    background: #f4a51c;
    color: #fff;
    border-radius: 30px;
}

ul.login-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

ul.login-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

ul.login-list li label {
    font-size: 14px;
    color: #fff;
    font-family: 'Karla';
}

ul.login-list a {
    color: #f4a51c;
    font-weight: 400;
    font-size: 14px;
}

ul.login-list a:hover {
    text-decoration: underline;
}

.account-page .row::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 60vh;
    left: 0;
    right: -30px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #0000004f;
    z-index: 4;
}

.logi-form .row:after {
    display: none;
}

ul.tbing .current h3 {
    display: none;
}

.login-form p {
    margin-bottom: 20px;
}


/* Account Page End */
.skin-2 .num-in {
  background: #ffffff;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
  border-radius: 0;
  height: 41px;
  width: 71%;
  float: left;
  /* border: 1px solid #cfcfcf; */
}

.skin-2 .num-in span {
  width: 27%;
  display: block;
  height: 40px;
  float: left;
  position: relative;
  border: 1px solid #cfcfcf;
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
  content: "";
  position: absolute;
  background-color: #667780;
  height: 2px;
  width: 10px;
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -5px;
}
ul.quantity-button {
  gap: 20px !important;
}
.skin-2 .num-in span.plus:after {
  transform: rotate(90deg);
}
.skin-2 .num-in span:hover {
  background: var(--purple);
}
.skin-2 .num-in input {
  float: left;
  width: 41%;
  height: 40px;
  text-align: center;
  border: 1px solid #cfcfcf;
}
.total-section {
    padding: 0px 30px;
}





#exampleModal .modal-content{
    background-color: #000;
}
#exampleModal .modal-title {
    color: #fff;
}
#exampleModal .form_area input {
    border-color: #fff;
    background: transparent !important;
    color: #fff;
}
#exampleModal .fields_area.custom-control.custom-radio a {
    color: #fff;
}
  
ul.contact_list li {
  margin-bottom: 20px;
}
.fetured-product-set .row {
  justify-content: center;
}

.popup-inner .row {
  justify-content: center;
}

.product-cart figure:first-child {
  width: 50%;
}
.product-cart article:first-child {
  font-size: ;
  width: 50%;
}
.product-cart article p {
  font-size: 14px;
}

@media only screen and (min-width: 1661px) and (max-width: 1920px){}
@media only screen and (min-width: 1400px) and (max-width: 1600px){}
@media only screen and (min-width: 1200px) and (max-width: 1399px){

.logo-header a {
  font-size: 40px;
}
.input-serch-box input {
  width: 350px;
}
.fetured-product-set .row {
  justify-content: center;
}
.popular-text h3 {
  font-size: 18px;
  line-height: 1.2;
}
.popular-box {
  height: 240px;
}
ul.contact_list li {
  margin-bottom: 20px;
}
  
.shop-top-row .col-lg-3.col-md-3 {
  width: 50%;
}
.midd_bdy .quantity a {
  width: ;
  width: 130px;
  font-size: 15px;
}
.pro-deatil-sec .main_top ul {
  flex-wrap: wrap;
}
.pro-deatil-sec .main_top ul:first-child {
  width: 80%;
}
.cart-page-tble thead tr th {
  font-size: 15px;
  padding: 10px;
}

.total-f {
  padding: 10px;
}
.total-box, .total-f, .shipping-box {
  padding: 10px;
}
}
@media only screen and (min-width: 992px) and (max-width: 1199px){

.total-box, .total-f, .shipping-box {
  padding: 10px;
}
.total-f h4 {
  font-size: ;
}
.total-f span {
  margin-left: 100px;
}
.estimate.text-black h4 {
  font-size: 20px;
}
.shipping.text-black p {
  font-size: 20px;
}
.shipping.text-black h4 {
  font-size: 20px;
}
.estimate.text-black.mt-30 p {
  font-size: 20px;
}
	.logo-header a {
  font-size: 33px;
}
.input-serch-box input {
  width: 100%;
}
.header-serch-input ul li a .icon-user-text p {
  font-size: 15px;
}
.header-serch-input ul li a .icon-user i {
  font-size: 21px;
}
.header-serch-input ul {
  gap: 16px;
  justify-content: space-around;
}
.menuSec ul li a {
  padding: 10px 20px;
  font-size: 16px;
}
.home-banner-text {
  width: 50%;
}
ul.inline-game-icon li a img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.fetured-product-set .row {
  justify-content: center;
}
.popular-text h3 {
  font-size: 15px;
  line-height: 1.2;
}
.popular-box {
  height: 200px;
}
.above-text h2 {
  font-size: 44px;
}
.above-img img {
  object-fit: contain;
}
.foot-links h5 {
  font-size: 22px;
}
ul.quick_list li a {
  line-height: 30px;
  font-size: 14px;
}
ul.contact_list li {
  margin-bottom: 20px;
}
ul.contact_list p {
  font-size: 11px;
}
ul.social-list li {
  width: 30px;
  height: 30px;
  font-size: 12px;
}
ul.social-list li i {
  font-size: 14px;


}
.foot-links:hover h5 {
  padding: 0;
}
.blog-article-set {
  padding-bottom: 0;
}
  

.shop-top-row .col-lg-3.col-md-3 {
  width: 50%;
}

.filter-by-price ul {
  display: block;
}
.scrollbar {
  margin: 0;
  height: 300px;
}

.popup-inner .col-md-3 {
  width: 50%;
}
.midd_bdy .quantity a {
  width: ;
  width: 130px;
  font-size: 15px;
}
.pro-deatil-sec .main_top ul {
  flex-wrap: wrap;
}
.pro-deatil-sec .main_top ul:first-child {
  width: 80%;
}

.cart-page-tble thead tr th {
  font-size: 15px;
  padding: 10px;
}


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

.midd_bdy .quantity a {
  width: ;
  width: 130px;
  font-size: 15px;
}
.pro-deatil-sec .main_top ul {
  flex-wrap: wrap;
}
.pro-deatil-sec .main_top ul:first-child {
  width: 80%;
}
.logo-header a {
  font-size: 24px;
}
.input-serch-box input {
  width: 100%;
  font-size: 11px;
}
.header-serch-input ul {
  gap: 10px;
}
.header-serch-input ul li a .icon-user i {
  font-size: 20px;
}
.header-serch-input ul li a .icon-user-text p {
  font-size: 13px;
}
.menuSec ul li a {
  padding: 10px;
  font-size: 15px;
}
header .col-lg-3.col-12 {
  width: 25%;
}
.dropbtn {
  padding: 4px !important;
  font-size: 11px !important;
}
.home-banner-text {
  width: 50%;
}
ul.inline-game-icon li a img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.col-md-3 {
}
.fetured-product-set .col-md-3 {
  width: 33%;
}
.fetured-product-set .row {
  justify-content: center;
  gap: 10px;
}
.product-box-text {
  font-size: 14px;
}
 .popular-box {
    height: 250px;
    padding: 5px;
  }

.popular-sec .col-md-2 {
  width: 33.33333%;
}

.popular-box img {
  border-tr: ;
  border-radius: 40px;
}
.popular-text h3 {
  font-size: 14px;
  line-height: 1.2;
}
.above-img img {
  object-fit: contain;
}
.above-text h2 {
  font-size: 34px;
  line-height: 1.2;
}
.above-text p {
  font-size: 13px;
  line-height: 20px;
}
.foot-links h5 {
}
footer .col-lg-2.col-md-2.col-6 {
  width: 50%;
}
footer  .col-lg-3.col-md-3.col-6 {
  width: 50%;
}
ul.contact_list li {
  margin-bottom: 20px;
}
footer .row {
  justify-content: center;
}
.about-text h2 {
  font-size: 40px;
  line-height: 1.2;
}
.text-banner h2 {
  font-size: 50px;
  margin: 0;
}

.our-must-text h2 {
  font-size: 21px;
}
.must-img-inn img {
  height: 250px;
}


.shop-top-row-link .col-lg-3.col-md-3 {
  width: 50%;
}

.shop-top-row-link .col-lg-3.col-md-3 {
  width: 50%;
}
.shop-top-row .col-lg-3.col-md-3 {
  width: 50%;
  margin-bottom: 10px;
}
.shop-top-row-icon ul {
  justify-content: start;
}
.shop-top-row-show ul {
}
.filter-by-price ul {
  display: block;
}
.force-overflow {
  padding: 0;
}
.scrollbar {
  margin: 0;
  height: 250px;
}
ul.must-icon-hover {
  display: block;
}

.popup-heading-text h2 {
  font-size: 30px;
}
.popup-inner .col-md-3 {
  width: 50%;
}
.cart-page-tble thead tr th {
  padding: 10px;
  font-size: ;
}
.cart-page-tble thead tr th {
  font-size: 16px;
}
.cart-page-tble thead tr th:first-child {
  width: 37%;
}
}
@media only screen and (min-width: 520px) and (max-width: 767px){

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


header .col-md-3.col-sm-6.col-6 {
  width: 100%;
}
.logo-header a {
  text-align: center;
  font-size: 40px;
  margin: 0 auto;
  display: block;
}
.top-br-line ul li p {
  font-size: 10px;
  text-align: center;
}
.header-serch-input ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
}
.input-serch-box input {
  width: 100%;
}
.header-serch-input {
  margin-top: 20px;
}
.header-serch-input ul li a .icon-user i {
}

.home-banner-text {
  width: 96%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.home-banner-text h2 {
  font-size: 35px;
}
.home-banner-text {
  text-align: center;
}
.home-banner-text p {
  font-size: 13px;
  margin: 0;
}
.game-icon-sec-set ul.inline-game-icon {
  flex-wrap: wrap;
}
.game-icon-sec-set ul.inline-game-icon li {
  width: 46%;
}
.game-icon-sec-set {
  padding-top: 20px;
}
.product-top-text h2 {
  font-size: 30px;
  text-align: center;
}
.popular-top-sec h2 {
  font-size: 30px;
  text-align: center;
  padding: 20px 0;
  margin: 0;
}
.popular-box img {
  width: 100%;
  height: 100%;
  ibh: ;
  object-fit: cover;
  margin-bottom: 10px;
}
.above-img img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}
.above-text {
  width: 100%;
  text-align: center;
}
.above-sec {
  padding: 20px;
}
.above-text h2 {
  font-size: 26px;
}
.slider-box {
  padding: 30px;
}
.blog-article-set {
  padding-top: 0;
  padding-bottom: 0;
}
footer .col-lg-3.col-md-3.col-6 {
  width: 100%;
  text-align: center;
}
.col-lg-2.col-md-2.col-6 {
  width: 100%;
  text-align: center;
}
ul.contact_list li {
  justify-content: center;
  margin-bottom: 20px;
}
ul.contact_list p {
  font-size: 13px;
}
.copy-txt p {
}
.copy-txt {
  display: block;
  text-align: center;
}
.copy-txt p {
  font-size: 13px;
  margin: 10px 0;
}
.social-list {
  justify-content: center;
}

.fix-amination a img {
  height: 150px;
}


.text-banner h2 {
  font-size: 36px;
  margin: 0;
}
.banner-img.ionner-banner-img {
  height: 300px;
}
.about-sec {
  text-align: center;
}
.about-text h2 {
  font-size: 30px;
  line-height: 1.2;
}
li.img-1ss img, li.img-2ss img, li.img-1ss img {
  height: 200px;
}
.banner-img.ionner-banner-img.top-iimg img {
  height: 100%;
}
  
.faq-text {
  width: 100%;
}

button.accordion-button.collapsed {
  font-size: 12px;
}
section.faq-sec {
  margin-top: 0;
}

.inner-shop-products-categories {
  margin-top: 0;
}
.scrollbar {
  height: unset;
  margin: 0;
}
.scrollbar .force-overflow {
  height: auto;
  min-height: auto;
}
.inner-shop-products-categories ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  line-height: 1;
}
.shop-top-row-link ul {
  justify-content: center;
}
.inner-shop-sec {
  text-align: center;
  padding-top: 10px;
}
.shop-top-row-show ul {
  justify-content: center;
}
.toptext-contact-form .faq-txt {
  padding: 0;
}
.contactform {
  padding: 0;
}
.contact-us-sec {
  text-align: center;
}
ul.must-icon-hover {
  display: block;
}

.pro-deatil-sec .main_top ul {
  width: 100%;
}
.right_viv {
  width: 20%;
}
.pro-deatil-sec .main_top ul li a {
  font-size: 10px;
}
.midd_bdy .quantity a {
  width: 140px;
  font-size: 12px;
}

.must-img-inn img {
  height: 160px;
  object-fit: cover;
}
  .popup-heading-text h2 {
    font-size: 24px;
    margin-bottom: 6px;
  }
  .popup-inner {
  width: 90%;
  padding: 20px;
}

.cart-page-tble {
  width: 1000px !important;
  overflow-x: scroll;
  width: 1000px;
}
.total-box, .total-f, .shipping-box
.total-box, .total-f, .shipping-box {
  padding: 20px 10px;
}
.checkout-bttn a {
  padding: 20px;
  margin-top: 10px;
}
  
.cart_sidebar {
  margin-bottom: 20px;
}

}