@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}


/***** Font Files *****/

@font-face {
  font-family: 'Phonk';
  src: url(../fonts/Phonk-Regular-DEMO.otf);
  font-weight: 400;
  font-style: normal
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #28b16d;
  border-color: #28b16d;
}

.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: 'Phonk';
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'Phonk';
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'Phonk';
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'Phonk';
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'Phonk';
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;

}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}


/*header css start */
header {
  background-color: #01253b;
  padding: 0px 2%;
}

.menuSec {
  padding: 30px 0 30px;
  position: relative;
}

.topSec {
  padding: 15px 0px;
}

.inp i {
  width: 67px;
  height: 49px;
  font-size: 18px;
  color: #000;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}

.inp input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 100px;
  border: unset;
}

.inp {
  position: relative;
  width: 75%;
  margin: 0 auto;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
  display: flex;
  justify-content: space-around;
}

.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;
  /* padding: 10px 23px; */
  font-size: 14px;
  font-family: 'Montserrat';
  color: #fff;
}

.menuSec .row {
  align-items: center;
}

.menuSec::before {
  position: absolute;
  top: 1px;
  left: -38px;
  width: 105%;
  content: '';
  height: 1px;
  background-color: #fff;
}

ul.acc {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: end;
  margin: unset;
}

.topSec .row {
  align-items: center;
}

ul.acc li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

ul.acc li a h6 {
  margin: unset;
  font-size: 14px;
  color: #fff;
}

ul.acc li a i {
  font-size: 15px;
  color: #fff;
}

.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
  display: none;
}

.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: #ffffffd9;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}


/*seasonal start*/
.seasonal-txt h3 {
  font-size: 41px;
  line-height: 42px;
  margin-bottom: 10px;
  color: #000000;
}

.seasonal-txt p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 20px;
}

section.seasonal {
  padding: 80px 0px;
  background-color: #d8d6d7;
}

section.seasonal .row {
  align-items: center;
}

/*seasonal end*/
/*young-living start*/
section.young-living {
  padding: 100px 0px;
}

.young-living-img img {
  width: 100%;
  height: 464px;
  object-fit: cover;
  border-radius: 10px;
}

.young-living-txt h4 {
  font-size: 30px;
  line-height: 40px;
  color: #050505;
  text-transform: uppercase;
}

.young-living-txt h3 {
  font-size: 45px;
  line-height: 55px;
  color: #050505;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.young-living-txt p {
  font-size: 14px;
  color: #a3a3a3;
}

/*young-living end*/
/*testimonials start*/
.coma-img img {
  width: 30px;
}

.test-top ul li img {
  width: 80px;
}

section.testimonial {
  padding-bottom: 130px;
}

.test-top {
  display: flex;
  justify-content: space-between;
}

.test-top ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.test-top ul li h4 {
  font-size: 20px;
  color: #050505;
  margin: unset;
}

.test-top ul li h4 span {
  display: block;
  font-size: 14px;
}

.test-main-bx {
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 0 4px #000000ad;
  margin: 20px 0px;
  position: relative;
}

.test-main-bx::before {
  position: absolute;
  top: 20px;
  right: -30px;
  width: 100%;
  content: '';
  z-index: -1;
  background-color: #012840;
  height: 100%;
}

.test-txt h5 {
  font-size: 20px;
  line-height: 30px;
  color: #00263d;
  margin-bottom: 10px;
}

.test-txt h3 {
  font-size: 45px;
  line-height: 55px;
  color: #050505;
}

.test-txt p {
  font-size: 14px;
  color: #a3a3a3;
  width: 80%;
}

/*testimonials end*/
/*blog start*/
section.blog {
  padding: 100px 0px 0px 0px;
}

.blog-txt {
  text-align: center;
  margin-bottom: 40px;
}

.blog-txt h3 {
  font-size: 45px;
  line-height: 55px;
  margin-bottom: 10px;
}

.blog-txt p {
  font-size: 14px;
  color: #a3a3a3;
  width: 56%;
  margin: 0 auto;
}

.blog-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.blog-bot-txt ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.blog-bot-txt ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-bot-txt ul li h6 {
  font-size: 11px;
  margin: unset;
  color: #858585;
  text-transform: uppercase;
}

.blog-bot-txt h4 {
  font-size: 20px;
  color: #050505;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.blog-bot-txt p {
  font-size: 14px;
  color: #858585;
  border-bottom: 1px solid #858585;
  margin-bottom: 25px;
  padding-bottom: 15px;
}

.blog-bot-txt ul li i {
  color: #000;
}

.blog-bot-txt {
  padding: 20px 20px;
  width: 95%;
  box-shadow: 0 0 9px #00000047;
  border-radius: 10px;
  position: relative;
  z-index: 4;
  margin-top: -20px;
  background-color: #fff;
}

/*blog end*/
/*earring start*/
section.earrring-collection {
  padding: 100px 0px;
}

.earrring-top-txt {
  text-align: center;
  margin-bottom: 30px;
}

.earrring-top-txt h3 {
  font-size: 45px;
  color: #050505;
  line-height: 55px;
  margin-bottom: 0;
}

.earrring-top-txt p {
  font-size: 14px;
  color: #a3a3a3;
  margin: 0 auto;
  width: 50%;
}

.earring-coll-bx {
  background-image: url(../images/earing-coll-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 15px;
  height: 465px;
  display: flex;
  align-items: center;
}

.exrring-bot-txt p {
  font-size: 14px;
  color: #181515;
}

.exrring-bot-txt h4 {
  font-size: 24px;
  color: #000000;
}

/*earring end*/
/*arrivals start*/
section.new-arrivals {
  padding: 80px 0px;
  background-color: #ededed;
}

.new-arr-txt h3 {
  font-size: 45px;
  line-height: 55px;
  margin-bottom: 0;
  color: #050505;
}

.new-arr-txt {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
  justify-content: space-between;
}

.arrival-img img {
  width: 100%;
  height: 307px;
  object-fit: cover;
}

.arrival-slid .slick-active {
  opacity: 1;
}

.arr-bot-txt {
  padding-top: 15px;
}

.arr-bot-txt ul {
  display: flex;
  align-items: center;
  gap: 7px;
}

.arr-bot-txt ul li h6 {
  font-size: 12px;
  color: #000000;
  margin: unset;
}

.arr-bot-txt ul li i {
  color: #ff8315;
  font-size: 17px;
}

.arrival-slid .slick-slide {
  margin: 0px 10px;
}

.arr-bot-txt h4 {
  font-size: 14px;
  color: #050505;
  line-height: 21px;
  text-transform: uppercase;
}

.arr-bot-txt h4 span {
  display: block;
}

.cart-pri {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-pri h6 {
  font-size: 18px;
  color: #050505;
  margin: unset;
}

.cart-pri i {
  font-size: 20px;
  color: #050505;
}

.arr-bot-txt p {
  font-size: 13px;
}

/* footer*/

.footerSec .container-fluid {
    padding: 0 5%;
}

section.newsletter_sec.sec {
    background: #01253b;
    padding: 50px 0;
    border-bottom: 1px solid #4f5c67;
}

.news_update {
    display: flex;
    align-items: center;
    gap: 30px;
}

.news_update img {
    object-fit: scale-down;
    width: fit-content;
}

.update_text h3 {
    margin: 0;
    color: white;
    text-transform: capitalize;
    font-size: 20px;
    line-height: 26px;
}

.update_text p {
    color: #b3d9d9;
}

.news_input {
    position: relative;
}

.news_input input {
    width: 69%;
    height: 65px;
    padding: 0 0 0 30px;
    font-size: 12px;
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #919191;
    border-radius: 40px;
    font-family: 'Montserrat';
}

.news_input input::placeholder {
    color: #8d8d8d;
    text-transform: uppercase;
}

.news_input button {
    transform: translate(-45px, -50%);
    border: none;
    background: #011724;
    color: white;
    text-transform: uppercase;
    height: 50px;
    border-radius: 40px;
    width: 25%;
    margin: 0 0 0 -10px;
    position: absolute;
    top: 50%;
    font-family: 'Montserrat';
    right: -5%;
    font-size: 12px;
}

.ftr_links h4,
.quick_links h4,
.service_links h4,
.cont_links h4 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.ftr_links p {
    margin: 25px 0;
    width: 95%;
    color: #d2d4d6;
    font-weight: 500;
}

.ftr_links,
.quick_links,
.service_links,
.cont_links {
    margin-top: 68px;
    margin-bottom: 65px;
}

.quick_links ul {
    columns: 1;
}

.quick_links ul li {
    margin-bottom: 10px;
}

.quick_links ul li a {
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}

.footerSec {
    background-color: #01253b;
}

.service_links ul li {
    margin-bottom: 20px;
}

.service_links ul li a {
    text-transform: uppercase;
    color: #ffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.cont_links ul li {
    margin-bottom: 20px;
}

.cont_links ul li a {
    display: flex;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    align-items: baseline;
    width: 54%;
}

.cont_links ul li i {
    margin-right: 10px;
    font-size: 16px;
}

.footer-btm {
    border-top: 1px solid #4f5c67;
    padding: 30px 0;
}
.update_text h3 span {
    display: block;
}
.ftr_links p span {
    display: block;
}
.copy-txt {
    /* text-align: center; */
}

.copy-txt p {
    color: #7f8890;
}

.social_links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0px;
}

.social_links a {
    width: 40px;
    height: 40px;
    line-height: 35px;
    border: 1px solid #626d78;
    color: #626d78;
    text-align: center;
    border-radius: 100%;
    margin-right: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.social_links a:hover {
    background: #000;
    transition: 0.5s;
    color: #fff;
}
.cont_links ul li a span {
    display: block;
}
.cont_links {
    margin-left: 13%;
}
.card-img {
    text-align: end;
}
/* footer */
/*shop-cat start*/
section.shop-cat {
    padding-top: 100px;
}


.shop-cat-top h3 {
    font-size: 45px;
    line-height: 55px;
    margin-bottom: 5px;
}

.shop-cat-top {
    text-align: center;
}

.shop-cat-top p {
    font-size: 14px;
    color: #a3a3a3;
    font-weight: 600;
}
.product-tab-list ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.product-tab-list ul li {
    font-size: 15px;
    color: #000000;
    font-family: 'Phonk';
    text-transform: uppercase;
}
.shop-img img {
    width: 100%;
    height: 242px;
    object-fit: cover;
}
.shop-img h4 {
    text-align: center;
    padding: 10px 0px;
    background-color: #00263d;
    font-size: 20px;
    color: #fff;
}

.tabs-open.curr {
  display: block;
}

.tabs-open {
  display: none;
}

/*explore start*/
.earrring-top-txt h3 span {
    display: block;
}

section.explore-our {
    padding-top: 100px;
}
.earring-coll-bx.sec {
    background-image: unset;
    background-color: #f2f2f2;
}
.earring-coll-bx.sec:hover {
  border: 8px solid #00263d;
}

/*banner start*/
.banner-left-bx {
    padding: 50px 10px;
    padding-right: 30px;
    background-color: #f2f0f1;
}

.banner-left-bx .row {
    align-items: center;
}
.banner-txt h3 {
    font-size: 35px;
    line-height: 40px;
    color: #01253b;
    margin-bottom: 10px;
}

.banner-txt h3 span {
    display: block;
    font-size: 42px;
    line-height: 50px;
}
.banner-txt p{
  font-size: 14px;
  color: #181515;
  width: 80%;
}
.banner-right-bx {
    background-color: #fcfcfb;
    padding: 30px;
    position: relative;
    z-index:1;
}

.banner-right-bx::before {
    position: absolute;
    bottom: -40px;
    left: -10px;
    background-image: url(../images/banner-dot.png);
    background-size: cover;
    content: '';
    z-index: -1;
    height: 110px;
    width: 140px;
}
a.btn-1 {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 15px 25px;
    background-color: #00263d;
    border-radius: 100px;
    font-size: 14px;
    color: #fff;
    font-family: 'Montserrat';
   
}
button.arrival-slid-btn-left {
    border: unset;
}

button.arrival-slid-btn-right {
    border: unset;
}

.test-slid .slick-prev, .test-slid .slick-next {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    top: auto;
    margin: 0 auto;
}

.test-slid .slick-prev {
    position: absolute;
    left: -90px;
}
.test-slid .slick-prev.slick-disabled:before, .test-slid .slick-next.slick-disabled:before{
  opacity: 1;
}
.test-slid .slick-prev:before{
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background-image: url(../images/left-arr.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
}
.test-slid .slick-next:before{
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background-image: url(../images/right-arr.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
}
.test-main-bx h6 {
    font-size: 14px;
    text-transform: uppercase;
    color: #07263e;
    font-weight: 600;
}
/*banner-bottom start*/
.vido-img {
        position: relative;
        margin-top: -30px;
    }
    .vido-img.check img {
    height: 880px !important;
    width: 100%;
    object-position: center;
    object-fit: cover;
}
.vido-img a {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0;
    }
    .vido-img a img {
        width: 50px !important;
        height: 50px !important;
        object-fit: cover;
        border: unset;
    }
    .vido-img img {
        width: 250px;
        height: 180px;
        object-fit: cover;
      
    }

.vid-txt {
    display: flex;
    /* align-items: center; */
    width: 100%;
}

.vid-txt-main {
    display: flex;
    align-items: center;
    gap: 50px;
}

.view a {
    display: flex;
    align-items: center;
    font-size: 13px;
    gap: 15px;
    color: #fff;
}

.view {
    background-color: #01253b;
    padding: 30px 23px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 7px;
}
.banner-bot-ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px 0px;
}

.banner-bot-ul ul {
    display: flex;
    align-items: center;
    margin: unset;
    gap: 30px;
}

.banner-bot-ul ul h6 {
    font-size: 14px;
    color: #000000;
    margin: unset;
}
.banner-bot-ul h6 {
    margin: 0;
    font-size: 14px;
    color: #03293f;
    position: relative;
}
.banner-bot-ul ul li a i {
    font-size: 20px;
    color: #03293f;
    width: 40px;
    height: 40px;
    border: 1px solid #03293f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.banner-bottom .row {
    align-items: center;
}
.banner-bot-ul h6::before {
    position: absolute;
    left: 81px;
    width: 214px;
    height: 1px;
    background-color: #000;
    content: '';
    top: 10px;
}

/* Hidden native file input */
   .design-sm-bx  input[type="file"]{
    position:absolute;
    left:-9999px;
    width:1px;height:1px;
    overflow:hidden;
    opacity:0;
  }

  /* Styled drop area (label) */
   .design-sm-bx .dropzone{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    flex-direction:column;
    padding:28px;
    border-radius:12px;
    border: 2px dashed rgb(93 92 98 / 18%);
    background: linear-gradient(180deg, rgba(79,70,229,0.03), rgba(79,70,229,0.01));
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
    cursor:pointer;
    text-align:center;
    user-select:none;
  }

   .design-sm-bx .dropzone:focus,
  .dropzone:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79,70,229,0.08);
    border-color: rgba(79,70,229,0.36);
  }

   .design-sm-bx .dropzone .icon{
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    /* background: linear-gradient(180deg, #19875499, #105a2e7d); */
    box-shadow: inset 0 -6px 18px rgba(79, 70, 229, 0.04);
    font-size: 26px;
    color: #7c7c7c;
    justify-content: center;
  }

   .design-sm-bx .dropzone .title{
    font-weight:600;
    font-size: 18px;
    color: #121111;
  }
   .design-sm-bx .dropzone .desc{
    color:var(--muted);
    font-size:13px;
    max-width:60%;
  }

  /* small controls row */
   .design-sm-bx .row{
    display:flex;
    gap:12px;
    margin-top:18px;
    align-items:center;
    flex-wrap:wrap;
  }

   .design-sm-bx .btn{
     padding: 8px 30px;
     font-family: 'Poppins';
     font-size: 19px;
     font-weight: 400;
     color: #fff;
     border-radius: 100px;
     /* border: 2px solid #f66e1e; */
     display: flex;
     align-items: center;
     /* gap: 10px; */
     width: fit-content;
     background-color: #105a2e;
     margin: 0 auto;
  }

   .design-sm-bx .btn.ghost{
    background:transparent;
    color:var(--accent);
    border:1px solid rgba(79,70,229,0.12);
    font-weight:600;
  }

   .design-sm-bx .muted{
    color:var(--muted);
    font-size:13px;
  }

  /* small helper text under card */
  .design-sm-bx .hint{
    margin-top:14px;
    font-size:13px;
    color:var(--muted);
  }

  /* Responsive */
  @media (max-width:520px){
    .dropzone .desc{ max-width:100% }
    .card{ padding:20px }
  }




#custom-button {
  padding: 10px;
  color: white;
  background-color: #009578;
  border: 1px solid #000;
  border-radius: 5px;
  cursor: pointer;
}

#custom-button:hover {
  background-color: #00b28f;
}

#custom-text {
  margin-left: 10px;
  font-family: sans-serif;
  color: #aaa;
}
section.design {
    padding: 100px 2%;
}
.design-txt h3 {
    font-size: 45px;
    line-height: 50px;
    color: #171515;
    margin-bottom: 10px;
}
.design-sm-bx {
    background-color: #f9f9f9;
    padding-bottom: 20px;
    width: 77%;
}

.design-top-txt {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px;
}

.design-top-txt h5 {
    font-size: 17px;
    color: #121111;
    margin: 0;
    text-transform: uppercase;
}

.design-top-txt h5 span {
    display: flex;
    font-size: 11px;
    font-family: 'Montserrat';
    color: #121111;
}

.design-sm-bx a.btn-1 {
    margin: 0 auto;
}
.design-right ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.design-right ul li img {
    width: 76px;
    height: 60px;
    object-fit: contain;
    padding: 10px;
    border: 1px dashed #000;
    border-radius: 15px;
}
.design-right h5 {
    font-size: 22px;
    color: #1a1717;
    line-height: 30px;
}

.but {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0px;
}

.but button {
    font-size: 14px;
    color: #000;
    background-color: unset;
    padding: 10px 20px;
    border: 1px solid #dcd8d8;
    border-radius: 100px;
}

.design-right input {
    width: 60%;
    border-radius: 100px;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #dcd8d8;
}
.check-an {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0px;
}
.check-an a {
    font-size: 14px;
    color: #000;
    background-color: unset;
    padding: 10px 20px;
    border: 1px solid #dcd8d8;
    border-radius: 100px;
}
.design-img img {
    width: 100%;
    height: 500px;
    object-fit: contain;
}
img.inn-bann {
    width: 100%;
    height: 290px;
    object-fit: cover;
}

section.inner-banner {
    position: relative;
}

.inn-ban-txt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.inn-ban-txt h1 {
    font-size: 35px;
    color: #01253b;
}
section.inner-banner .container-fluid {
    padding-left: 3%;
}
/*about-page start*/
section.about {
    padding: 100px 0px;
}
section.testimonial.inn {
    background-color: #ededed;
    padding-top: 120px;
}
.abt-img img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 10px;
}
.abt-txt h3 {
    font-size: 35px;
    color: #050505;
    margin-bottom: 4px;
}

.abt-txt h3 span {
    display: block;
    font-size: 45px;
    line-height: 51px;
}

.abt-txt p {
    font-size: 14px;
    color: #b0b0b0;
}
/*about end*/
/*login start*/

section.login {
    padding: 100px 50px;
}

.login-txt form input {
    width: 100%;
    margin-bottom: 10px;
    outline: none;
    padding: 15px 15px;
    border: 1px solid #e2e2e2;
    color: #000;
    border-radius: 0px;
    background-color: #fff;
}
.login-txt form select {
    width: 100%;
    margin-bottom: 10px;
    outline: none;
    padding: 15px 15px;
    border: 1px solid #e2e2e2;
    color: #000;
    border-radius: 0px;
    background-color: #fff;
    -webkit-appearance: auto;
}

.login-txt h3 {
    font-size: 45px;
    text-align: center;
    line-height: 50px;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 30px;
}

.login-txt {
    padding: 45px 25px 35px;
    border-radius: 0px;
    /* background-color: #fdfdfd; */
    /* border: 2px solid #e8e8e8; */
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 16px 0px rgba(63, 63, 63, 0.15);
}

.login-txt ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

li.head {
    color: #000;
    font-size: 17px;
    font-weight: 600;
}

.login-txt ul li {
    display: flex;
    gap: 7px;
}

.login-txt form button {
    width: 100%;
    color: #fff;
    border-radius: 0px;
    padding: 14px 0px;
    outline: none;
    border: none;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Montserrat';
    box-shadow: -3.119px 14.672px 38px 0px rgba(21, 21, 23, 0.21);
    /* border-radius: 100px; */
    background: linear-gradient(180deg, rgb(139 105 74 / 72%) 0%, rgb(160 125 90) 100%);
}

.login-txt a {
    color: #000;
    text-decoration: underline;
}

.login-txt.on {
    background-color: #01253b;
}

.login-txt.on h3 {
    font-size: 30px;
    color: #fff;
}
.login-txt.on input{
  background-color: #01253b;
  border: 1px solid #fff;
  color: #fff;
}
.login-txt.on input::placeholder {
    color: #fff;
}
.login-txt.on  ul li {
    display: flex;
    gap: 7px;
    color: #fff;
}
.login-txt.on  ul{
  justify-content: space-between;
}
.login-txt.on button {
    background-color: #fff !important;
    background: unset;
    color: #000;
    border-radius: 100px;
}

.login-txt form button {
    background: unset;
    background-color: #01253b;
    border-radius: 100px;
}
/*login end*/
/*blog-pg start*/
section.blog-pg {
    padding: 100px 0px;
}
.sell-page-link ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    gap: 10px;
    margin-top:50px;
}
.sell-page-link ul li a {
     background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    transition: 0.5s;
}

.sell-page-link ul li a:hover{
  background-color: #000;
  color: #fff;
}
/*Contact Start*/
 /*contact us*/
.contact1 h2, .contact2 h2 {
    
font-size: 45px;
    
color: #000000;
    
text-transform: capitalize;
    
font-weight: 400;
    
margin-bottom: 0px;
}
.contact1 p,
.contact2 > p {
  color: #000000;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  margin-top: 1%;
  margin-bottom: 5%;
}
.contact2 ul li a {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
}
.contact2 ul li {
  display: flex;
  align-items: center;
  margin-bottom: 70px;
  width: 100%;
}
section.contact-map {
    padding-bottom: 100px;
}
.contact2 ul li h4 {
    margin-bottom: 3px;
    font-weight: 100;
    text-transform: capitalize;
    color: #000;
    font-size: 24px;
}
.contact2 ul li p {
  color: #000000;
  line-height: 1.5;
  font-size: 12px;
  font-weight: 400;
  width: 95%;
}
.contact2 .icon {
  height: 100px;
  width: 100px;
  /* border: dashed 2px #000; */
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 32px;
  background-color: #01253b;
}
.contact2 .icon i {
  font-size: 26px;
  color: #348e38;
}
.map {
  margin-top: 50px;
}
.book-form.contact-form form {
  padding: 0 5% 0 0;
}
section.contact_us {
  position: relative;
  padding: 100px 0px 30px 0px;
}


button.theme_btn {
    font-size: 20px;
    font-weight: 400;
    background-color: #01253b;
    padding: 12px 30px;
    text-align: center;
    border-radius: 100px;
    color: #fff;
    text-transform: uppercase;
}
textarea.form-control {
    height: 220px;
    resize: none;
}
.form-control {
    padding: 12px;
    border: 1px solid #b7b7b7c9;
    border-radius: 5px;
    margin-bottom: 10px;
}
input.form-control::placeholder , textarea.form-control::placeholder {
    color: #000;
    font-size: 17px;
    font-family: 'Roboto', sans-serif
}
.contact2 ul li h4 span {
    color: #1092a2;
}
.icon img {
    height: 38px;
}

/*contact us end*/
/*CART PAGE CSS*/

.shopping_cart {
  position: relative;

  z-index: 1;

  position: relative;

  margin: 100px 0;
}

section.shopping_cart.inner-bg:before {
  position: absolute;

  content: "";

  top: 0;

  right: 34%;

  height: 100%;

  width: 1px;

  background: #d9d3c7;

  display: none;
}

.chk-btn {
  text-align: center;
}

.shopping_cart img.bk-2 {
  bottom: -38%;

  width: 6%;
}

.shopping_cart img.bk-1 {
  bottom: -2%;

  width: 7%;
}

.cart-pag-qunty .product-detail .num-in {
  width: 30% !important;

  border: 0 !important;
}

.payment_card a.btn-1 {
  color: #fff !important;
}

.payment_card a.btn-1 i {
  color: #fff !important;
}

.shopping_cart_table h2 {
  font-size: 25px;
  margin-bottom: 22px;
  color: #000000;
}

.shopping_cart_table table th {
  font-size: 14px;

  text-transform: uppercase;

  font-weight: 600;

  font-family: "Montserrat";

  padding-bottom: 10px;

  color: #151414;
}

.shopping_cart_table table thead {
  border-bottom: 1px solid #b8b8b8;
}

.shopping_cart_table table tbody td {
  padding: 25px 0;

  border-bottom: 1px solid #dddddd;
}

.shopping_cart_table table tbody .cart_box_product {
  display: flex;

  align-items: center;
}

.shopping_cart_table table tbody .cart_box_product .cart_product_img {
  width: 30%;
  background-color: #f2f2f2;
  margin-right: 10px;
  height: 100px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cart_product_name {
  padding: 0 0 0 10px;
}

.shopping_cart_table table tbody .cart_box_product .cart_product_name h5 {
  font-size: 15px;

  text-transform: uppercase;

  font-weight: 600;

  font-family: "Montserrat";

  margin: 0;

  margin-bottom: 5px;
}

.shopping_cart_table table tbody .cart_box_product .cart_product_name p {
  font-size: 13px;

  color: #000;

  text-transform: uppercase;

  font-family: "Montserrat";

  margin: 0;

  line-height: 16px;

  font-weight: 600;
}

.shopping_cart_table table tbody td select {
  height: 40px;

  padding-left: 10px;

  appearance: auto;

  border: 1px solid #b8b8b8;
}

.shopping_cart_table table tbody td .skin-2 .num-in {
  border-radius: 0;

  border: 0;

  width: 50%;
}

.shopping_cart_table table tbody td .t_price {
  font-size: 35px;

  font-weight: 500;

  color: #070707;

  margin: 0;

  font-family: "Brunson";
}

th.w-40 {
  width: 40%;
}

.shopping_cart_table table tbody td i.fas.fa-times {
  font-size: 20px;

  color: #000;
}

.cart_recipt {
  margin-top: 30px;

  display: flex;

  align-items: flex-start;

  justify-content: space-between;
}

.cart_recipt > a {
  padding: 15px 50px;

  border: 1px solid #b8b8b8;

  border-radius: 6px;

  font-size: 15px;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #151414;

  font-weight: 500;

  border-radius: 100px;
}

.cart_recipt > a i {
  margin-right: 10px;
}

.recipt {
  width: 30%;
}

.recipt li {
  display: flex;

  align-items: center;

  justify-content: space-between;

  font-size: 19px;

  font-weight: 500;

  margin-bottom: 20px;

  color: black;

  text-transform: uppercase;

  font-weight: 600;
}

.recipt li:last-child {
  margin-top: 20px;

  padding-top: 20px;

  border-top: 1px solid #dddddd;
}

.recipt li span {
  color: #151414;

  font-size: 15px;

  letter-spacing: 2px;
}

.payment_card {
  background-color: transparent;

  padding: 0px 0px 0px 90px;
}

.payment_card h3 {
  font-size: 25px;
  color: black;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 40px;
  text-transform: uppercase;
  border-bottom: 1px solid #dddddd;
}

.payment_card * {
  color: #000 !important;

  font-weight: 600;
}

.credit_paypal a {
  padding: 10px 20px;

  border: 1px solid transparent;

  border-radius: 30px;

  display: inline-flex;

  background: #f3f3f3;

  align-items: center;

  color: #fff;

  font-weight: 500;

  font-family: "Montserrat";

  font-size: 15px;
}

.credit_paypal a img {
  height: 20px;

  object-fit: contain;

  margin-right: 10px;
}

.credit_paypal {
  padding-bottom: 20px;

  border-bottom: 1px solid #dddddd;
}

.payment_card form label {
  font-size: 15px;

  font-weight: 500;

  color: #fff;
}

.payment_card form {
  margin-top: 15px;
}

.payment_card form input {
  width: 100%;

  height: 50px;

  border: none;

  border-bottom: 1px solid #dddddd;

  margin-bottom: 15px;

  background: transparent;

  padding: 0;
}

.payment_card form select {
  width: 100%;

  height: 50px;

  border: none;

  color: #fff;

  border-bottom: 1px solid #dddddd;

  margin-bottom: 15px;

  background: transparent;

  padding: 0;
}

.payment_card form input::placeholder {
  color: #7d7d7d;
}

.expiry_cvv {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.expiry_date {
  width: 70%;
}

.cvv_box {
  width: 26%;
}

.month_year {
  display: flex;

  justify-content: space-between;
}

.month_year select {
  width: 48% !important;

  appearance: auto;
}

.month_year select option {
  color: #000;
}

.payment_card form .btn1 {
  margin: 30px 85px;

  border: 1px solid;
}

.shopping_cart_table {
  padding-right: 30px;
}

.payment_card a.theme_btn {
  color: #fff !important;

  margin: 0 auto;

  margin-top: 10px;
}

/* skin 2 */

.skin-2 .num-in {
  border-radius: 60px;

  cursor: pointer;
}

.skin-2 .num-in span {
  width: 40%;

  display: block;

  height: 50px;

  float: left;

  position: relative;

  border: 1px solid #909094;

  border-radius: 5px;
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
  content: "";

  position: absolute;

  background-color: #667780;

  height: 2px;

  width: 10px;

  top: 50%;

  left: 50%;

  margin-top: -1px;

  margin-left: -5px;
}

.skin-2 .num-in span.plus:after {
  transform: rotate(90deg);
}

.skin-2 .num-in input {
  float: left;

  width: 20%;

  height: 37px;

  border: none;

  text-align: center;

  background-color: #f0f0f0;

  font-family: "Montserrat";

  font-size: 20px;

  font-weight: 600;

  color: #9c7b76;
}

.product-detail .num-in {
  background: transparent;
  box-shadow: none;
  width: 92%;
  height: 52px;
  /* border: 1px solid #e1e1e1; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-right: 0;
  border-left: 0;
}

.product-detail input.in-num {
  border: 0;

  background-color: transparent;

  width: 45%;

  margin: 0 5px;

  color: black;
}

.productdetailsec .btn10 {
  color: white;
}

.quanity.product-detail.cart-pag-qunty {
  padding: 0 0 0 30px;
}

.side-btn a {
  color: white !important;

  /* background-color: #19305a; */

  /* border: 1px solid #909094; */
}

.side-btn a span {
  height: 48px;

  border-radius: 0 6px 6px 0;
}

/*CART PAGE CSS END*/



/* Inner Check Out Start */

.billing_form h3 {
  font-size: 35px;
  margin: 0;
  margin-bottom: 30px;
  color: #222222;
  font-weight: 500;
  text-transform: uppercase;
}

.billing_form label {
  font-size: 14px;

  font-weight: 600;

  margin-bottom: 5px;

  color: #7c7c7c;
}

.radiosss p {
  font-size: 12px;

  font-weight: 600;

  line-height: 20px;

  color: #949694;

  font-family: "Montserrat";
}

.check-out-btn button {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 100%;

  border: none;

  font-size: 16px;

  height: 55px;

  border-radius: 0;

  text-transform: uppercase;
}

.billing_form input {
  width: 100%;

  height: 50px;

  border: 1px solid #d9d9d9;

  margin-bottom: 20px;

  padding-left: 15px;

  background: transparent;

  font-weight: 500;

  color: #8d8d8d;
}

.billing_form input::placeholder {
  color: #7c7c7c;

  font-size: 15px;
}

.cart_sidebar .cart_lst li:not(:last-child) {
  margin-bottom: 20px;
}

.cart_sidebar .cart_lst li {
  font-size: 14px;

  color: #7c7c7c;

  font-weight: 600;
}

.cart_sidebar .cart_lst li span {
  float: right;
}

.cart_sidebar .cart_lst li:last-child {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #394136;
  /* font-family: "yipes"; */
  text-transform: uppercase;
}

.cart_sidebar .cart_lst {
  margin-top: 20px;

  margin-bottom: 40px;
}

.thankyou_txt {
  padding: 50px;

  border: 2px solid #b7b7b7;
}

.thankyou_txt h3 {
  font-size: 35px;

  color: #000;

  font-weight: 800;

  margin: 0;

  font-family: "Montserrat", sans-serif;
}

.thankyou_txt h3 i {
  font-size: 40px;

  margin-right: 15px;
}

.order_det h5 {
  font-size: 20px;

  color: #7c7c7c;

  font-weight: 400;

  font-family: "Montserrat", sans-serif;
}

.order_det p {
  font-weight: 700;

  font-size: 20px;

  color: #000;

  margin: 0;
}

.order_complete_detail h3 {
  font-size: 22px;

  color: #000;

  font-weight: 700;

  font-family: "Montserrat", sans-serif;
}

.order_detail_table {
  padding: 40px;

  border: 1px solid #b7b7b7;
}

.order_detail_table h5 {
  margin-top: 0px;

  padding-bottom: 15px;

  border-bottom: 1px solid #dbdbdb;

  font-size: 16px;

  font-weight: 700;

  color: #000;

  font-family: "Montserrat", sans-serif;
}

.order_detail_table ul {
  margin-top: 20px;

  margin-bottom: 30px;
}

.order_detail_table ul li:not(:last-child) {
  margin-bottom: 25px;
}

.order_detail_table ul li {
  font-size: 14px;

  color: #7c7c7c;
}

.order_detail_table ul li span {
  float: right;
}

.order_detail_table ul li:last-child {
  font-weight: 700;

  color: #000;
}

.order_detail_table h6 {
  font-size: 17px;

  font-weight: 700;

  color: #000;

  font-family: "Roboto", sans-serif;

  padding: 25px 0;

  border-top: 1px solid #dbdbdb;

  margin: 0;
}

.order_detail_table h6 span {
  float: right;
}

.check_menu ul {
  text-align: center;

  margin-bottom: 40px;
}

.check_menu ul li {
  display: inline-block;

  font-size: 22px;

  font-weight: 700;

  color: #7c7c7c;

  margin: 0 14px;
}

.check_menu ul li i {
  font-size: 18px;
}

.check_menu ul li.purp {
  color: #19305a;
}

.cart_sidebar {
  padding: 40px 25px;
  border: 1px solid #b7b7b7;
  /* background-color: #f5f5f5; */
}

.cart_sidebar h3 {
  font-size: 25px;
  color: #000;
  margin-top: 0px;
  margin-bottom: 20px;
  line-height: normal;
  font-weight: 400;
}

.cart_sidebar .h-sub {
  font-weight: 700;
  font-size: 20px;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 20px;
  line-height: 0;
  padding-bottom: 30px;
  padding-top: 20px;
  color: #000;
  /* font-family: "yipes"; */
  font-weight: 400;
  /* text-transform: uppercase; */
  font-family: 'Montserrat';
}

.cart_sidebar h5 span {
  float: right;

  color: #394136;
}

.cart_sidebar h4 {
  font-size: 18px;

  font-weight: 700;

  margin-bottom: 20px;

  line-height: normal;

  padding-top: 0;

  text-transform: uppercase;

  color: #394136;

  font-family: "yipes";
}

.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: 600;

  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: 2px;

  left: 9px;

  width: 6px;

  height: 14px;

  border: solid #19305a;

  border-width: 0 2px 2px 0;

  transform: rotate(45deg);
}

.cart_sidebar ul li:not(:last-child) {
  margin-bottom: 15px;
}

.cart_sidebar form {
  margin-top: 30px;

  padding-bottom: 40px;

  border-bottom: 1px solid #b7b7b7;
}

.cart_sidebar form h4 {
  font-size: 14px;

  font-weight: 400;

  color: #b7b7b7;

  font-family: "Roboto", sans-serif;
}

.cart_sidebar form select {
  width: 100%;

  height: 40px;

  padding-left: 15px;

  border-radius: 0;

  border: 1px solid #b7b7b7;

  margin-bottom: 20px;

  appearance: auto;

  color: #b7b7b7;
}

.cart_sidebar form select option {
  color: #000;
}

.cart_sidebar form input {
  width: 100%;

  height: 40px;

  padding-left: 15px;

  border-radius: 0;

  border: 1px solid #b7b7b7;

  margin-bottom: 20px;

  appearance: auto;

  color: #b7b7b7;
}

.cart_sidebar form input::placeholder {
  color: #b7b7b7;

  font-family: "Montserrat-Ultral";
}

.cart_sidebar form button {
  color: #000;

  font-size: 15px;

  border-radius: 0px;

  font-family: "Poppins", sans-serif;

  padding: 10px 40px;

  background-color: #ebebeb;

  border: 2px solid #ebebeb;
}

.cart_sidebar form button:hover {
  background-color: transparent;

  transition: 0.3s ease-in-out;
}

.checkout_btn {
  padding: 12px 50px;

  display: block;

  width: 100%;

  text-align: center;

  color: #fff;

  font-size: 24px;

  border-radius: 0;

  font-weight: 500;

  border: 2px solid transparent;

  background-color: #19305a;

  font-family: "Montserrat-Ultral";
}

ul.shipping-ul {
  border-bottom: 1px solid #dbdbdb;

  margin: 0;

  padding-bottom: 30px;
}

h6.payment-h {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #394136;
  /* font-family: "yipes"; */
  font-family: 'Phonk';
  text-transform: uppercase;
  color: #000;
}

.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: 7px;

  border-radius: 20px;

  left: 6px;

  border: 0;

  width: 10px;

  height: 10px;

  background-color: #19305a;
}

.radiosss-payments .card.card-body {
  padding: 0;

  border: 0;

  margin-left: 30px;

  background: none;
}

.radiosss-payments {
  border-bottom: 1px solid rgb(219, 219, 219);
}

section.checkout_page {
  padding: 100px 0;
}

.checkout_page .img-1 {
  position: absolute;

  left: -13%;

  top: 50%;

  width: 340px;
}

.checkout_page .img-2 {
  position: absolute;

  right: -7%;

  top: 60%;

  width: 230px;

  transform: rotate(200deg);
}

.billing_form {
  /* border: 1px solid #b7b7b7; */

  padding: 35px;
}

.check-out-btn button {
  background-color: #00263d;
  /* border: 1px solid #909094; */
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
  border-radius: 100px;
}

.check-out-btn button span {
  height: 55px;

  border-radius: 0 4px 4px 0;
}

/* Inner Check Out End */
/*faqs start*/
 .accordion-button::after {
      display: none;
    }
    .accordion-item {
      border: none;
      /* border-bottom: 1px solid #ddd; */
    }
    .accordion-button {
      background-color: transparent;
      padding: 1rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      font-weight: 600;
      color: #000000;
      font-size: 20px;
      font-family: 'Phonk';
      font-style: normal;
      border: 1px solid #000;
      margin-bottom: 20px;
    }
    .accordion-button:not(.collapsed) {
    }
    .accordion-button:focus {
      box-shadow: none;
    }

    .number-circle {
      border: 2px solid #ccc;
      border-radius: 50%;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
    }
.accordion-button:not(.collapsed) {
    background-color: unset;
    color: #000;
    box-shadow: unset;
}
    .accordion-button.collapsed .number-circle {
      border-color: #ccc;
      color: #999;
    }
    .accordion-button:not(.collapsed) .number-circle {
      background-color: #e8d194;
      color: white;
      /* border-color: #b98900; */
      border: unset;
    }

    .accordion-icon {
      margin-left: auto;
      font-size: 18px;
    }

    .accordion-button.collapsed .accordion-icon::before {
      content: "\2b"; /* plus */
      background-color: unset;
      width: 40px;
      font-size: 25px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #141515;
      font-family: 'FontAwesome';
    }
    .accordion-button:not(.collapsed) .accordion-icon::before {
      content: "\2212"; /* minus */
      background-color: unset;
      width: 40px;
      font-size: 25px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #141515;
    }

    .accordion-body {
      padding: 0 1rem 1rem 1rem;
      color: #666;
      font-size: 14px;
      padding-top: 11px;
      border: 1px solid #104b59;
      margin: 20px 0px;
    }
    section.faqs {
    padding-bottom: 100px;
    padding-top: 100px;
}
.faq-txt h2 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 10px;
    color: #000000;
    font-weight: 600;
    font-style: italic;
}
.faq-txt h4 {
    font-size: 43px;
    color: #d3b159;
    margin-bottom: 30px;
    line-height: 53px;
    font-style: italic;
    font-weight: 600;
}
.accordion-button:not(.collapsed) {
    background-color: unset;
    color: #000;
    box-shadow: unset;
    border: 1px solid #d1d0d0;
    font-size: 22px;
    font-family: 'Phonk';
    font-style: normal;
}
.faq-txt p{
  color: #7c7c7c;
  font-size: 14px;
}

.faq-txt {text-align: center;}

section.faqs a.btn-1 {
    margin: 0 auto;
}
/*product start*/
.catogeriesbox h4 {
    font-size: 24px;
    color: #01253b;
    text-transform: uppercase;
}
.prod-heading select {
    width: 100%;
    padding: 8px 40px 13px 10px;
    background: #fff url(../images/dot.png) no-repeat right;
    font-size: 24px;
    background-position-x: 250px;
    -webkit-appearance: auto;
    border-radius: 100px;
}
.first-item select {
    width: 32%;
    height: 59px;
    font-size: 24px;
    background-position-x: 140px;
    background: #fff url(../images/dot.png) no-repeat right;
    -webkit-appearance: auto;
    border-radius: 100px;
}
.first-item.text-end p {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
}
.first-item.text-end {
    margin-top: -45px;
    margin-right: -40%;
}
.frequently-list ul li a {
    color: #000;
    font-size: 19px;
    font-weight: 400;
    display: block;
    padding: 15px 0 15px 18px;
    border-bottom: 1px solid #00000024;
    background: unset;
    display: flex;
    align-items: center;
    gap: 30px;
}
.row.paddingbottom {
    padding-bottom: 33px;
}
section.product-page-sec.all-section {
    padding: 100px 0px;
    position: relative;
}
section.product-page-sec.all-section::before {
    position: absolute;
    top: 140px;
    left: -32px;
    height: 81px;
    width: 80px;
    background-image: url(../images/in-abt-small.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
}
section.product-page-sec.all-section::after {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 81px;
    width: 80px;
    background-image: url(../images/in-abt-small2.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
}
section.product-page-sec.all-section a.btn-1 {
    margin: 0 auto;
    margin-top: 30px;
    justify-content: center;
    display: flex;
    width: fit-content;
}
.featured-img.img::before {
    position: absolute;
    content: '';
    bottom: 105px;
    right: -118px;
    width: 30px;
    height: 31px;
    background-image: url(../images/all-sec.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.featured-img.img {
    position: relative;
}
.fea-inn-main {
    border: 2px solid #000;
    margin-top: 40px;
}

.fea-inn-main .fea-txt-bx h6 {
    color: #000;
    font-weight: 600;
}

.fea-inn-main ul.starss::before {
    background-color: #00000087;
}

.fea-inn-main ul.carts h4 {
    color: #000;
}
section.product-page-sec.all-section a.btn-1::before {
    display: none;
}
section.product-page-sec.all-section a.btn-1 {
    border-radius: 100px;
}
/*product inn end*/
/*gallery start*/
.gall-txt {
    text-align: center;
}

.gall-txt h3 {
    font-size: 56px;
    line-height: 56px;
    color: #000;
}

.gall-txt h3 span {
    color: #fe7912;
}
.gall-txt p{
  font-size: 16px;
  margin:0 auto;
  width: 56%;
  margin-bottom: 40px;
}

.gallery-icon {
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}

.gallery {
    position: relative;
    margin-bottom: 30px;
}




.gallery-icon a i {
    font-size: 50px;
    color: #fff;
}
.gallery-icon a {
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
section.gallery-main.inn {
    padding: 80px 0px;
    position: relative;
}
.gallery img {
    width: 100%;
    height: 315px;
    object-fit: cover;
}
.gallery:hover .gallery-icon {
    opacity: 1;
    transition: 0.5s;
}
section.gallery-main.inn nav {
    padding: 80px 0px 0px;
}
section.gallery-main.inn a.page-link {
    background-color: unset;
    border: unset;
    color: #000;
    font-size: 26px;
}
section.gallery-main.inn::before {
    position: absolute;
    content: '';
    bottom: 170px;
    left: 140px;
    width: 82%;
    height: 3px;
    background-color: #000;
}
.blogs-img-text h2 span {
    display: block;
}
section.gallery-main.inn::before {
    position: absolute;
    content: '';
    bottom: 170px;
    left: 54px;
    width: 92%;
    height: 3px;
    background-color: #000;
}
ul.pagination.pagination-sm {
    justify-content: end;
}
/*blog details start*/
 section.blogs-details {
  padding: 80px 0;
   background-image: url(../images/in-bann-bg.png);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
.blogs-img-text ul li i {
    color: #272262;
    font-size: 20px;
    margin-right: 10px;
}

.blogs-img-text ul {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 20px;
}
.blogs-img-text h2 {
  font-weight: 600;
  font-size: 30px;
  margin-top: 26px;
  color: #000;
  border-bottom: 1px solid #00000057;
  /* display: inline-block; */
  line-height: 46px;
  text-transform: uppercase;
}
.blogs-img-text p {
    font-weight: 300;
    font-size: 18px;
    color: #000;
    margin-bottom: 3%;
    /* font-family: 'Roboto'; */
}
.search a {
    width: 100px;
    height: 51px;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 17px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #bf751d;
    color: #fff !important;
}
.search {
  position: relative;
}
.search input {
  border: 1px solid #e1e1e1;
  width: 100%;
  padding: 12px 10px;
}
.blog-categories h4 {
  font-family: 'Saudagar';
  font-weight: 500;
  font-size: 49px;
  margin-top: 30px;
  padding-bottom: 5px;
  position: relative;
  color: #000;
}

.blog-categories a {
  display: block;
  font-family: 'Poppins';
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  padding: 10px 0;
  border-bottom: 1px solid #e1e1e1;
}
.blog-categories p {
  font-family: 'Poppins';
  font-weight: 500;
  color: #646464;
  font-size: 14px;
}
.postss i {
    color: #272262;
    font-size: 18px;
    margin-right: 10px;
}
.postss h6 {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 15px;
    color: #000;
    margin-bottom: 0;
    margin-top: 4%;
    text-transform: uppercase;
}
.blog-categories {

  padding: 0 25px;
}
.blogs-img-text img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 0 8px #000000b8;
}
.postss p {
    font-weight: 500;
    color: #000;
    font-size: 14px;
    text-transform: capitalize;
}
.postss ul li img {
    width: 196px;
}
.postss ul {
    display: flex;
    align-items: center;
    gap: 7px;
}
.postss ul li p {
  margin-bottom: 0;
}
.postss {
    border-bottom: 2px solid #e1e1e1;
    margin-bottom: 5%;
}
.blog-text1 li i {
    font-size: 22px;
    height: 35px;
    width: 35px;
    border: 1px solid #9fb5b3;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
}
.blog-text1 li {
    display: inline-block;
}
.blog-text1 ul {
    display: inline-block;
}
.design-sm-bx .dropzone .title span {
    display: block;
}
/*blog details end*/

    .color-selector {
      display: flex;
      gap: 10px;
      margin-top: 10px;
      margin-bottom: 30px;
    }

    .color-option {
      width: 50px;
      height: 25px;
      border-radius: 20px;
      position: relative;
      cursor: pointer;
      /* border: 2px solid transparent; */
      transition: border 0.3s;
    }

    .color-option.selected {
      border: 2px solid #00000055;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .checkmark {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 18px;
      color: black;
      display: none;
    }

    .color-option.selected .checkmark {
      display: block;
    }

    .banner-bot-ul ul li a i:hover {
    background-color: #08253c;
    color: #fff;
    transition: 1s;
}
/* Product Deatil Content Css */

.productdetailtext h2 {
    font-size: 40px;
    text-transform: capitalize;
    color: #000;
}

.productdetailtext h4 {
    font-size: 14px;
    color: #000;
    /* font-family: 'comic'; */
    font-weight: 500;
    margin: 10px 0 0 0;
    font-family: 'Rubik';
}

ul.star-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin: 20px 0 40px;
}

ul.star-list i {
    font-size: 20px;
    color: #f8c222;
}

ul.star-list span {
    font-size: 20px;
    /* font-family: 'comic'; */
    font-weight: 500;
    color: #000;
}

.productdetailtext h3 {
    font-size: 49px;
    color: #000;
    text-transform: capitalize;
    /* font-weight: 300; */
}

ul.dummy-list.shop p {
    font-size: 17px;
    color: #000000;
    padding: 0;
    font-weight: 300;
}

ul.quantity-list li h5 {
    font-size: 25px;
    color: #000000;
    font-family: 'Montserrat';
}

ul.quantity-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.iconlist li p {
    font-size: 17px;
    color: #636363;
    margin-bottom: 0;
}

.iconlist ul li i {
    font-size: 20px;
    color: #000;
}

.iconlist li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.iconlist {
    margin: 20px 0;
}

ul.dummy-list.shop {
    margin: 10px 0;
}

ul.dummy-list.shop li {
    list-style: disc;
    display: list-item;
    margin-left: 40px;
    padding: 10px 0;
}

ul.dummy-list.shop li::marker {
    color: #f8c222;
    font-size: 30px;
}


/* Product Deatil Content Css */


/* Product Detail Counter Css */

/* Product Detail Slider Css */

.productdetailsmallportion img {
    width: 100%;
}

.productdetailnav .slick-slide {
    margin: 15px 0;
    opacity: 1;
}

.productdetailnav .productdetailsmallportion img {
   
    height: 120px;
    width: 150px;
    margin: 0 auto;
}

.productdetailfor .productdetailsmallportion img {
    border-radius: 20px;
    width: 100%;
    height: 570px;
    object-fit: cover;
}

img.prd-1 {
    position: absolute;
    top: 8%;
    left: -10px;
}

img.prd-2 {
    position: absolute;
    bottom: 10%;
    left: 0;
}

img.prd-3 {
    position: absolute;
    right: -30px;
    top: 4%;
}

.prd-4 {
    position: absolute;
    right: -30px;
    bottom: 10%;
}
.productdetailfor .productdetailsmallportion img {
    border-radius: 20px;
    width: 100%;
    height: 570px;
    object-fit: cover;
}

.quanity.product-detail {
    margin-left: 20px;
}

.product-detail .num-in {
    background: transparent;
    box-shadow: none;
    width: 75%;
}

.product-detail span {
    width: 30px !important;
    border: 1px solid #E3E3E3;
    border-radius: 50px;
    height: 30px !important;
    margin: 11px 12px 5px;
}

.skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
}

.skin-2 .num-in input {
    float: left;
    width: 20%;
    height: 37px;
    border: none;
    text-align: center;
    background-color: #f0f0f0;
    font-family: 'Roboto';
}

.product-detail .skin-2 .num-in span:before,
.product-detail .skin-2 .num-in span:after {
    background-color: #000;
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
    content: '';
    position: absolute;
    background-color: #667780;
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}

.skin-2 .num-in span:hover {
    background: #e6268d;
    color: #fff !important;
}

.product-detail input.in-num {
    border: 1px solid #000;
    width: 50%;
    margin: 0 5px;
    height: 50px;
    color: #000;
    background: #fff;
    text-align: center;
    font-size: 21px;
}

.skin-2 .num-in span {
    display: block;
    float: left;
    position: relative;
    background-color: #ffffff;
}


/* Product Detail Counter Css */

ul.iconlist i {
    color: #2a120a;
}


/* Description Product Detail Css */

.description li.nav-item {
    margin-right: 12px;
}

.description li.nav-item button {
    width: 206px;
    height: 52.9px;
    font-size: 15px;
    border-radius: 0;
    font-weight: 300;
    color: #fff;
    font-family: 'Montserrat';
    font-weight: 600;
    /* text-transform: uppercase; */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #000;
    border-radius: 100px;
    text-transform: uppercase;
}

.description li.nav-item .nav-link.active {
    border: 0;
    background-color: #01253b;
    color: #000;
    font-weight: 600;
    border-radius: 0;
    font-size: 20px;
    border-radius: 100px;
    color: #fff;
}

.rev-btn {
    display: inline-block;
}

.description {
    padding: 40px 0 50px;
    position: relative;
}

.rate {
    height: 46px;
    /* padding: 0 10px; */
    float: left;
    display: block;
    clear: both;
}
span.plus {
    right: 0;
    bottom: 0;
}

.rate input {
    top: 0;
    visibility: hidden;
}

.rate:not(:checked)>input {
    position: absolute;
    /* top: -9999px; */
}

.rate:not(:checked)>label {
    float: right;
    width: 0.8em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 35px;
    color: #ccc;
    margin: 0 3px;
}

button.btn1.tabs-btn {
    font-size: 16px;
    padding: 10px 50px;
    margin-top: 20px;
    display: block;
}

.rate:not(:checked)>label:before {
    content: '\f005';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 26px;
}

.rate>input:checked~label {
    color: #f9d71c;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
    color: #deb217;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
    color: #c59b08;
}

.description .tab-content p {
    color: #000;
    font-weight: 500;
    font-size: 15px;
    line-height: 30px;
    font-family: 'Montserrat';
    padding: 10px 0;
}

.prd-det-page-review-heading {
    letter-spacing: 1px;
    margin: 30px 0px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.prd-det-page-review-heading span {
    font-size: 1.3rem;
    color: #252525;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.prd-det-page-review-box-container {
    display: block;
}

.prd-det-page-review-box {
    width: 100%;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 20px;
    margin: 15px;
    cursor: pointer;
}

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile {
    display: flex;
    align-items: center;
}

.name-user {
    display: flex;
    flex-direction: column;
}

.name-user strong {
    color: #3d3d3d;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.name-user span {
    color: #979797;
    font-size: 0.8rem;
}

.prd-det-page-reviews {
    color: #f9d71c;
}

.box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.client-comment p {
    font-size: 0.9rem;
    color: #4b4b4b;
}

.prd-det-page-review-box:hover {
    transform: translateY(-10px);
    transition: all ease 0.3s;
}

.description .tab-content input[type="text"] {
    width: 100%;
    border: 0px;
    background-color: rgb(246, 246, 246);
    padding: 10px;
    height: 50px;
    margin-bottom: 20px;
    font-family: 'Montserrat';
    font-weight: 500;
    color: rgb(124, 124, 124);
}

.prdtc-rvw ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.description .tab-content form .row {
    align-items: center;
}

.prdtc-rvw i {
    font-size: 25px;
    margin-right: 10px;
}

.description .tab-content textarea {
    width: 100%;
    border: 0px;
    background-color: rgb(246, 246, 246);
    padding: 10px;
    margin-bottom: 20px;
    font-family: 'Montserrat';
    font-weight: 500;
    color: rgb(124, 124, 124);
}

.description .tab-content form {
    margin-bottom: 70px;
}

.prdtc-rvw i:hover {
    color: #FFC107;
}

.productdetailportion img {
    width: 100%;
    object-fit: none;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    border-color: #e9ecef #e9ecef #dee2e6;
    isolation: isolate;
    /* background: #f8c222; */
    color: #fff;
}

.nav-tabs {
    /* margin-bottom: 30px; */
    /* gap: 20px; */
    padding-bottom: 13px;
    border: 0;
    display: flex;
}

.rev-btn h6 {
    font-size: 30px;
    margin-bottom: 20px;
}


/* Description Product Detail Css */

.related-sec .sec-head {
    text-align: center;
    width: 90%;
    margin: 0 auto 50px;
}
section.productdetailsec a.btn-1 {
    display: inline-block;
    margin: 20px 0px;
}
section.featured.inn {
    box-shadow: none;
}
section.productdetailsec {
    padding: 100px 0px;
}
section.related {
    padding-bottom: 100px;
}

.related-top {
    text-align: center;
    margin-bottom: 20px;
}

.related-top h2 {
    font-size: 45px;
    line-height: 50px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #000000;
}

.related-top p {
    font-size: 14px;
    width: 60%;
    margin: 0 auto;
}
section.banner {
    background-image: url(../images/banner-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
/* Product Detail Page End */