@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: #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-weight: 400;
  font-family: "Montserrat";
}

/***** Font Files *****/

@font-face {
  font-family: "Rajdhani";
  src: url(../fonts/Rajdhani-Regular.ttf);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Regular.ttf);
  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: "Rajdhani";
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: "Rajdhani";
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: "Rajdhani";
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: "Rajdhani";
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: "Rajdhani";
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: "Poppins", Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*header css start */
header {
  padding: 20px 0px;
  position: absolute;
  top: 0;
  z-index: 999;
  width: 100%;
}
header .row {
  align-items: center;
}
.menuSec {
  padding: 0px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: unset;
  text-transform: capitalize;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 10px 33px;
  font-size: 12px;
  font-family: "Montserrat";
  font-weight: 400;
}

.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: #28b16d;
}

.menuSec li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li > ul > li,
.menuSec li > ul > li > a {
  display: block;
  margin: 0;
}

.menuSec li > ul > li > a:before,
.menuSec li > ul > li > a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li: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;
}
li.black a {
  color: #000 !important;
}

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
/*header css end*/
/*banner start*/
section.banner {
  /* background-color: #ff1a4b; */
  position: relative;
  padding: 150px 0px 80px;
}
.banner-txt h1 {
  font-size: 84px;
  line-height: 84px;
}
section.banner:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 65%;
  width: 45%;
  background: #e9e9e9;
  z-index: 0;
  border-bottom-left-radius: 40px;
}

.banner-img img {
  width: 50%;
}
.banner-txt p {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 30px;
  width: 84%;
}
.banner-img {
  /* float: right; */
  position: relative;
  z-index: 1;
  text-align: center;
}
.banner-img img {
  width: 44%;
  object-fit: contain;
}

a.btn-1 {
  padding: 7px 11px;
  background-color: #fff;
  border-radius: 100px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  font-size: 16px;
  font-weight: 500;
  font-family: "Montserrat";
}
.banner-txt {
  position: relative;
}

.ban-top {
  position: absolute;
  top: 15px;
  left: -150px;
  object-fit: cover;
}

.ban-top img {
  width: 100%;
  height: 143px;
}
section.banner::before {
  position: absolute;
  content: "";
  background-color: #ff1a4b;
  top: 0;
  left: 0;
  width: 70%;
  height: 65%;
}
.bann-bot {
  margin-top: 35px;
}

.ban-bot-bx {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: #f5f5f5;
  padding: 25px;
  overflow: hidden;
}

.ban-bot-bx h5 {
  font-size: 26px;
  color: #0f0e0e;
  line-height: 30px;
}

.ban-bot-bx h5 span {
  display: block;
}
.ban-bot-bx img:hover {
    transform: scale(1.5);
}
.ban-bot-bx img {
  height: 170px;
  object-fit: cover;
  transition: 1s;
}
.since h5 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 7px;
  writing-mode: tb;
  transform: rotate(180deg);
  background-color: #000;
  color: #fff;
  padding: 44px;
  border-top-left-radius: 20px;
  margin-bottom: 0;
}

.since {
  position: absolute;
  left: -13px;
  bottom: 83px;
  width: auto;
}
.banner-main-img img {
  height: 92%;
  width: 100%;
}
.banner-main-img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
  height: 100%;
}
.banner-txt:before {
  position: absolute;
  content: "";
  background-color: #ffffff85;
  height: 597px;
  width: 2px;
  left: -26px;
  top: -150px;
}
.cart {
  position: absolute;
  top: 15px;
  right: 11px;
}
.acc {
  position: relative;
  top: 25px;
  left: 3px;
}

.acc i {
  font-size: 20px;
  color: #fff;
  border-radius: 50%;
  border: 1px solid;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acc::before {
  position: absolute;
  top: -28px;
  background-color: #fff;
  height: 30px;
  width: 1px;
  left: -10px;
  right: 0;
  margin: 0 auto;
  content: "";
}
/*banner end*/
/*about start*/
a.btn-3 {
    padding: 7px 11px;
    background-color: #fff;
    border-radius: 100px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    font-size: 16px;
    font-weight: 500;
    font-family: "Montserrat";
    border: 1px solid #ff1a4b;
    animation: 1s shadow-pulse infinite;
}
.abt-txt h3 {
  color: #0f0e0e;
  font-weight: 600;
  font-size: 84px;
  line-height: 52px;
  margin-bottom: 20px;
}
.abt-txt p {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  margin-bottom: 30px;
}
section.about {
  padding-bottom: 80px;
}
.abt-img img {
  width: 100%;
}
section.about .row {
  align-items: center;
}
/*about end*/
/*product start*/
.pro-img img {
    width: 100%;
}
.pro-img {
    box-shadow: 0 0 9px #0000004d;
    border-radius: 20px;
    width: 100%;
    position: relative;
}
.pro-img h6 {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 15px;
    font-weight: 600;
    background-color: #ff1a4b;
    padding: 8px 15px;
    color: #fff;
}
.select-main {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pro-txt {
  text-align: center;
}

.pro-txt h4 {
  font-size: 84px;
  line-height: 84px;
  color: #0f0e0e;
  font-weight: 600;
}

.pro-txt p {
  margin: 0 auto;
  width: 75%;
  color: #000000;
  font-size: 14px;
}
.pro-txt-2 ul {
    display: flex;
    margin: 20px 0px;
}

ul.price:before {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    height: 2px;
    background-color: #00000078;
    content: '';
}
ul.price {
    justify-content: space-between;
    position: relative;
}
.select-main h5 {
    text-decoration: underline;
    font-size: 18px !important;
}
ul.star li i {
    color: #ffc21f;
}
.pro-txt-2 h5 {
    font-size: 34px;
    color: #000;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 34px;
}
.card {
    display: flex;
    background-color: unset;
    box-shadow: unset;
    border: none;
}

.color-choices {
    display: flex;
}
ul.price li p {
    font-size: 18px;
    color: #ff1a4b;
}
ul.price li p del{
  font-size: 14px;
  color: #787878;
}
ul.size {
    gap: 24px;
    margin: 10px 0px;
}
ul.size li h6 {
    font-size: 12px;
    color: #787878;
    font-weight: 500;
}
ul.hoverul-product {
    width: 15%;
    background: #fff;
    text-align: center;
    position: absolute;
    top: 30px;
    right: 0px;
    padding: 10px 0px 0px;
    opacity: 0;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
    transform: translateX(10px) translateZ(0);
}
.pro-img:hover ul.hoverul-product {
    opacity: 1;
    transition: 0.5s;
    right: 21px;
}
ul.hoverul-product li {
    margin-bottom: 20px;
}
ul.hoverul-product li a {
    font-size: 23px;
    color: #333;
}
/*product end*/
/*community start*/
section.community {
    margin: 80px 0px;
    background-image: url(../images/community-bg.jpg);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 0px;
}
.community-txt h4 span {
    display: block;
}
.community-txt h4 {
    font-size: 84px;
    color: #fff;
    line-height: 84px;
}
.community-txt p{
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
}
/*comunity end*/
/*testimonial start*/
section.testimonial {
    padding: 70px 0px;
}
.testi-img {
    text-align: center;
    box-shadow: 0px 0px 10px #f0f4f9;
    border-radius: 10px;
    padding: 50px 30px;
    margin-bottom: 30px;
    background-color: #efefef;
}
.testi-img h6 span {
    display: block;
    font-size: 18px;
}
.testi-img h6 {
    font-size: 30px;
    color: #000;
    line-height: 29px;
    padding-top: 25px;
}
section.testimonial .slick-active {
    opacity: 1;
}
.testi-img img {
    height: 160px;
    width: 160px;
    margin-bottom: 30px;
    /* margin-left: 80px; */
    text-align: center;
    margin: 0 auto;
}
.testi-img p {
    font-size: 16px;
    color: #7c7c7c;
    margin: 0 auto;
}

/*Section Newsletter Start*/
ul.text-newsletter li h2 {
    font-size: 46px;
    margin-bottom: 0px;
    color: #fff;
    line-height: 51px;
    font-weight: 600;
}
ul.text-newsletter li p {
    font-family: 'Poppins';
    color: #fff;
    margin-bottom: 0px;
}
ul.text-newsletter {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 0px;
}
.newsletter-field input {
    width: 59%;
    padding: 10px 27px;
    height: 49px;
    background: #fff;
    border: none;
    border-radius: 100px;
}
.newsletter-field {
    display: flex;
    justify-content: end;
    align-items: baseline;
    position: relative;
}
.newsleeter-btn .theme-btn {
    margin-left: 0px;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Montserrat';
    font-weight: 500;
    border: unset;
    padding: 15px 38px;
    background-color: #262626;
    margin-right: -23px;
}
.newsletter .row {
    align-items: center;
}
.newsletter {
    background: #ff1a4b;
    padding: 30px;
}

/*Section News Letter End*/

/*Footer-Start*/
.dv2footer {
    /* margin-left: 83px; */
    border-right: 1px solid #a7a7a7;
    height: 100%;
    transition: .7s ease-in-out;
    text-align: center;
}
footer:hover .dv2footer {
    border-color: #394136;
}
ul.ul1footer li {
    padding: 4px 0px;
}
.dv1footer .logo-text a {
    font-size: 31px;
    line-height: 35px;
}
.dv1footer p {
    margin-top: 27px;
    /* text-align: justify; */
    color: #ffffff;
    /* font-family: 'Roboto'; */
    font-size: 15px;
    font-family: 'Poppins';
    width: 90%;
}
ul.ul1footer li {
    font-size: 14px;
    /* font-family: 'Roboto'; */
    font-weight: 500;
}
.dv2footer h3 {
    font-size: 30px;
    text-transform: uppercase;
    /* font-family: 'Orbitron'; */
    color: #fff;
    /* font-family: 'plantc'; */
    font-weight: 400;
}
footer {
    background-color: #272727;
    padding: 70px 0px 30px;
}
ul.ul1footer li a {
    color: #bbbbbb;
    text-transform: uppercase;
}
ul.ul2footer li {
    padding: 11px 0px;
    font-size: 12px;
    font-family: 'Montserrat';
    font-weight: 500;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}
ul.ul2footer li a {
    color: #bbbbbb;
}
.dv3footer h3 {
    font-size: 28px;
    text-transform: capitalize;
    font-family: 'Orbitron';
    color: #fff;
    font-family: 'plantc';
    font-weight: 400;
}
ul.ul1footer li a:hover {
    color: #fff;
}
ul.ul2footer li a:hover {
    color: #fff;
}
ul.ul2footer li i {
    font-size: 23px;
    color: #ffe898;
    margin-right: 18px;
}
.dv3footer {
    margin-left: 57px;
}
.dv1footer:before {
    content: '';
    position: absolute;
    width: 1px;
    background-color: #a7a7a7;
    height: 248px;
    left: 35%;
}
ul.ul1ftbottom {
    display: flex;
    gap: 21px;
    margin-bottom: 0px;
}
ul.ul1ftbottom li i {
    font-size: 20px;
    color: #efefef;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dv1ftbottom {
    display: flex;
    justify-content: space-between;
    border: 1px solid #a7a7a7;
    padding: 22px 33px;
    align-items: center;
    border-radius: 10px;
    background: #262626;
    transition: .7s ease-in-out;
}
footer:hover .dv1ftbottom {
    border-color: #394136;
}
.dv1ftbottom p {
    margin-bottom: 0px;
    font-family: 'Montserrat';
    font-size: 12px;
    color: #efefef;
}
ul.ul1ftbottom li i:hover {
    color: #fff;
}
ul.ul2footer li img {
    margin-right: 19px;
}
.logo-ft a img {
    width: 65%;
    height: 137px;
    background: #fff;
    object-fit: contain;
}
.dv1footer h2 {
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
}
.dv2footer.second {
    text-align: start;
}
/*Footer-End*/
/*inner-banner start*/
section.banner.inn .banner-main-img {
    width: 6%;
}
section.banner.inn::before{
  height: 84%;
}
section.banner.inn:after{
  height: 85%;
}
section.banner.inn .banner-img img {
    width: 31%;
    object-fit: contain;
}
section.banner.inn .banner-main-img img {
    height: 85%;
    width: 100%;
}
/*inner-banner end*/
section.community.inn {
    padding: 80px 0px;
}
/*MISSION START*/
.mission-txt h4 {
    font-size: 84px;
    line-height: 84px;
    color: #0f0e0e;
    font-weight: 600;
    margin-bottom: 10px;
}

.mission-txt p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
}
section.mission .row {
    align-items: center;
}
section.mission {
    padding: 60px 0px 100px;
}
.mission-img img {
    width: 100%;
}
/*Mission end*/
/*Contact Start*/

.contact1 p,
.contact2>p {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 32px;
    color: #000;
    font-weight: 400;
}

.contact2 ul {
    margin-top: 40px;
}

.contact1 input,
.contact1 textarea {
    width: 100%;
    margin-bottom: 20px;
    height: 60px;
    padding: 20px;
    background: #fff;
    border: 1px solid #777675;
    color: #000;
}
.newsleeter-btn {
    position: absolute;
    top: -20px;
    right: -48px;
}
.contact1 .theme_btn {
    width: 100%;
    border: 0;
    background: #f01414;
    color: #fff;
    padding: 10px;
    font-size: 23.64px;
    font-family: "Nunito";
    font-weight: 500;
    border-radius: 0;
    height: 60px;
}

.contact1 textarea {
    height: 200px;
}

.contact2 ul li {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    gap: 25px;
}

.contact2 ul li h4 {
    margin-bottom: 10px;
    text-transform: capitalize;
    font-size: 38px;
    color: #0c1015;
    font-weight: 600;
}

.contact2 ul li p {
    color: #000;
    line-height: 32px;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    margin-bottom: 0;
}

.contact2 .icon i {
    height: 85px;
    width: 85px;
    border: dashed 2px #ff2e5b;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact2 .icon i {
    font-size: 38px;
    color: #ff2e5b;
}

section.contact_us {
    padding: 80px 0;
    position: relative;
    background-size: cover;
    width: 100%;
    background-image: url(../images/cont-bg.png);
    background-repeat: no-repeat;
}

.map {
    margin-top: 50px;
}

.contact1 input {
    border-radius: 100px;
}

.contact1 textarea {
    border-radius: 10px;
    resize: none;
}

.contact1 input::placeholder,
.contact1 textarea::placeholder {
    color: #000;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

.contact1 button {
    font-size: 24px;
    border-radius: 10px;
    color: #000;
    width: 100%;
    height: 65px;
    border: none;
    transition: 1.5s;
    font-weight: 300;
    font-weight: 400;
}

.contact1 {
    position: relative;
    width: 95%;
}

i.far.fa-phone-alt {
    transform: rotate(98deg);
}

.map iframe {
    box-shadow: 0 0 20px 0 #0000003d;
}

button.btn-1.cont-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: #fff; */
    /* clip-path: polygon(6% 0, 100% 0, 100% 60%, 96% 100%, 0 100%, 0 40%); */
    border-radius: 0;
    background-color: #ff2e5b;
    color: #fff;
    border-radius: 100px;
}
.contact1 h2 span {
    color: #000;
}
.contact1 h2 {
    color: #000;
    font-size: 92px;
    font-weight: 600;
}
.contact2 h2{
  color: #000;
  font-size: 92px;
  font-weight: 600;
}
.contact2 h2 span {
    color: #000;
}

/*Contact End*/
section.testimonial-inn {
    padding: 80px 0px;
}
section.testimonial-inn .testi-img {
    width: 95%;
}
* Inner Check Out Start */
            
         section.checkout label {
    font-weight: 600;
    color: #737373;
    font-size: 16px;
}
            
section.checkout input {
    border: 1px solid #bfbfbf;
    width: 100%;
    padding: 10px;
    color: #737373;
    height: 50px;
    font-size: 17px;
}
.check-out-input {
    margin-bottom: 25px;
}

            
        section.checkout h2 {
    font-weight: 900;
    color: #ffffff;
    background: #ff1a4b;
    padding: 20px;
    font-size: 25px;
    border-radius: 100PX;
    text-transform: uppercase;
    margin-bottom: 50px;
}
            
            section.checkout {
                padding: 80px 0;
            }
            
ul.pri {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 700;
    color: #737373;
}
            
           section.checkout .place-order {
    border: 1px solid #e5e5e5;
    border-radius: 50px;
    padding: 20px 0;
}
            
.place-order h3 {
    font-weight: 900;
    font-size: 25px;
    text-transform: uppercase;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 30px 30px;
    margin-bottom: 0;
    text-align: left;
}
            
            .pym-methd {
                padding: 0 30px;
                text-align: center;
            }
            
ul.pri li p {
    margin-bottom: 0;
    font-size: 17px;
    color: #737373;
}
            
ul.pay-paymnt {
    display: flex;
    align-items: center;
    padding: 5px 30px;
    gap: 15px;
    margin-bottom: 0px;
}
.place-oder-button button {
    padding: 10px 35px;
    border: none;
    font-size: 22px;
    font-weight: 400;
    background-color: #ff1a4b;
    color: #fff;
    border-radius: 100px;
}
.place-oder-button {
    margin-top: 25px;
    margin-bottom: 25px;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
ul.pay-paymnt li {
    font-size: 17px;
    font-weight: 700;
    color: #737373;
}
            
            ul.pay-paymnt li input[type="checkbox"] {
                width: inherit !important;
                height: inherit !important;
            }
            
            .pym-methd button.theme_btn {
                width: 60%;
                height: 59px;
                background: #a5becc;
                color: #243a73;
                margin: 20px 0;
            }
            
            button.theme_btn:hover {
                color: #fff;
            }
            
           ul.pay-paymnt li img {
    padding-left: 15px;
    width: 80px;
}
.payment-method-heading h3 {
    padding: 20px 30px 20px;
    margin-bottom: 20px;
}
            
            section.checkout input::placeholder {
                color: #737373;
            }
            
          .checkout span {
    color: #26a275;
}
            /* Inner Check Out End */

 /*product inn start           */
section.product.inn {
    padding: 0px 0px 80px;
}
/*cart-pg start*/

.add-to-cart {
  position: relative;
  padding: 80px 0;

}

.add-to-cart thead {
    color: #fff;
    border-radius: 100px;
    background-color: #3357a5;
}

.add-to-cart .table>thead>tr>th {
  border-bottom: 0;
  padding-left: 25px;
  padding-bottom: 20px;
  padding-top: 20px;
  font-size: 15px;
  padding-right: 0 !important;
}

.add-to-cart thead tr th {
  font-size: 19px;
  font-weight: 500;
  line-height: 18px;
  /* text-transform: uppercase; */
}

.table-space h3 {
  font-size: 16px;
  color: #000;
  margin-bottom: 5px;
  line-height: 25px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: 'Poppins';
}

.table-space span {
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  font-weight: 400;
}

.product-img {
  /* border: 1px solid #ccc; */
  display: inline-block;
  width: 100%;
  height: 150px;
  padding: 10px 0px;
  /* background-color: #ffffff; */
  text-align: center;
}

.poduct-name {
  margin-left: 10px;
}

.table-space {
  display: flex;
  align-items: center;
  width: 100%;
}



.add-to-cart a {
  font-size: 17px;
  display: block;
  text-align: center;
  padding-top: 9px;
  color: rgba(0, 0, 0, 0.50);
  font-weight: 400;
  text-decoration: none;
  color: #000;
}

.poduct-name span:nth-child(2) {
  margin-bottom: 5px;
  display: inline-block;
}

.add-to-cart h4 {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  text-align: center;
  margin-top: 40px;
  font-family: 'Poppins';
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

tr.space {
  border-bottom: 1px solid #ccc;
}

a.remove {
  font-size: 26px;
  padding: 10px 20px;
  border: 1px solid #0000006b;
  margin-top: 35px;
  transform: skewX(0deg);
}


.proceed i {
  margin-left: 10px;
  color: #ffffff;
}

.proceed .checkout-btn {
  background-color: #df1a2b;
  border: none;
  padding: 20px;
  width: 100%;
  font-size: 20px;
  margin-top: 4px;
  border-radius: 0;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}

.or-amazon {
  margin-top: 50px;
  position: relative;
  border: 1px solid #c8c8c8;
  /* top: 25px; */
  padding: 40px 50px;
  border-radius: 5px;
  background-color: #fff;
}

.or-amazon p {
  font-size: 16px;
  position: absolute;
  background: #fff;
  top: -20px;
  left: 50%;
  padding: 5px 20px;
  color: #000;
  display: block;
  text-transform: uppercase;
  transform: translateX(-50%);
  border: 1px solid #c8c8c8;
  font-weight: 400;
  font-family: 'Poppins';
}

.or-amazon img {
  width: 60%;
}

.or-amazon a {
  text-decoration: none;
  text-align: center;
}

.total-section {
  border: 1px solid #e5e5e5;
  padding: 50px 50px;
  background-color: #fff0;
  background-color: #fff;
}

.total-section li {
    font-size: 20px;
    padding-bottom: 30px;
    color: #000;
    font-weight: 400;
    /* font-family: 'Recoleta'; */
}
li.color-change {
  font-size: 28px;
  font-weight: 500;
  padding-bottom: 0;
  font-family: 'Poppins';
  color: #303e48;
}

.total-section li span {
  float: right;
}

.ship-estimate {
  background-color: #fff;
  padding: 50px;
  margin-top: 25px;
  border: 1px solid #e5e5e5;
  position: relative;
}
.ship-estimate::before {
    position: absolute;
    content: '';
    width: 40px;
    height: 40px;
    background-image: url(../images/all-sec2.png);
    right: -82px;
    bottom: 48px;
    background-repeat: no-repeat;
    background-size: cover;
}

.ship-estimate ul {
  margin-top: 0px;
  margin-bottom: 0;
}

.ship-estimate li {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 700;
    font-family: 'Poppins';
    color: #303e48;
}

.ship-estimate .grey-style {
  color: #000;
  font-size: 18px;
  font-weight: 300;
}

.product-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.nice-select .list {
  height: 350px;
  overflow-y: scroll;
}

.total-section ul {
  margin: 0;
}


.input-number {
  width: 103px;
  padding: 10px 28px;
  vertical-align: top;
  text-align: center;
  outline: none;
  background-color: #fff0;
  color: #000;
}
.carousel-control-next-icon {
    background: none;
    position: relative;
}

.carousel-control-next-icon:before {
      content: "\f105";
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      position: absolute;
      top: 0;
      left: 0;
      height: 50px;
      width: 50px;
      color: #00000069;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
}
.carousel-control-prev-icon {
    background: none;
    position: relative;
    left: -38px;
}
.carousel-control-prev-icon:before{
    content: "\f104";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: 50px;
    color: #00000069;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;

}
.input-number-decrement,
.input-number-increment {

  width: 50px;

  line-height: 48px;

  background: #fff0;

  color: #000;

  text-align: center;

  font-weight: bold;

  cursor: pointer;

  display: inline-flex;

  align-items: center;

  justify-content: center;
}

.input-number-decrement:active,
.input-number-increment:active {
  background: #ddd;
}

.input-number-decrement {
  border-right: none;
  border-radius: 0;
}

.input-number-increment {
  border-left: none;
  border-radius: 0;
}

.quan {
  margin-top: 20px;
}



.quantity_counter_wrap span {
  color: #000;
  font-size: 18px;
}

.quantity_counter_wrap {
  padding: 0 0 10px;
  /* border-bottom: 1px solid #464646; */
}

.proceed .btn_theme_green {
    background-color: #ff1a4b;
    color: #fff;
    border-radius: 100px;
    padding: 12px;
    width: 60%;
}
section.booklet img {
    width: 100%;
}
/*CART END*/        
/*Account Page Start*/
.account-header h1{
        font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 65.81px;
    line-height: 117.47px;
    text-transform: uppercase;
    text-align: center;
}
.account-header {
    padding: 0 0 50px;
}
.signin_sec {
    position: relative;
}

.input-icons i {
    position: absolute;
    /* font-size: 20px; */
    /* z-index: 99; */
    /* margin-top: 5px; */
}

.input-icons {
    width: 100%;
}

.icon {
    padding-top: 15px;
    padding-left: 12px;
    min-width: 40px;
}

.signin_sec .input-field {
       width: 100%;
       border: unset;
       padding: 15px 20px;
       margin-bottom: 25px;
       border-radius: 0;
       background: #ebebeb;
       color: #3c3737;
       font-weight: 500;
       font-family: 'Open Sans', serif;
       padding-left: 47px;
}
.chk-bx .form-check .form-check-input {
    border-radius: 0;
    border: 1px solid #000000;
    margin-top: 22px;


}
.remeber.chk-bx a {
    font-family: 'Poppins';
    font-size: 16.19px;
    line-height: 60.9px;
    color: #333333;
    font-weight: 500;
}
.btn-wrapper button {
    width: 100%;
    /* display: flex; */
    height: 60px;
    background: #ff1a4b;
    color: white;
    padding: 7px 30px 7px 30px;
    font-family: 'Montserrat';
    font-size: 16px;
    line-height: 28.78px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 100px;
    text-transform: uppercase;
}
button.btn10 img {
    border: 1px solid #fff;
    padding: 18px 15px;
    background: #fff;
    border-radius: 10px;
    margin-left: 50px;
}

.btn-wrapper button:hover {
    box-shadow: 0px 0px 12px gray;
}

.signup_form button {
    border: none;
    width: 100%;
}

.social_btn a i {
    border-right: 1px solid #fff;
    padding-right: 5px;
}

.social_btn a {
    padding: 10px 20px;
    color: #fff;
}
.signin_sec {
    padding: 8% 0 7%;
}


.signin_sec ::placeholder{
    font-family: "Poppins", sans-serif;
    font-size: 16.19px;
    line-height: 60.9px;
    color: #9c9797;
    font-weight: 400;
}
.agree p{
    font-family: "Poppins", sans-serif;
    font-size: 16.19px;
    color: #333333;
    font-weight: 500;
}
.agree a{
    font-size: 18px;
    color: #dc3545;
    text-decoration: underline;
    font-weight: 500;
}

.login-sec {
    padding: 35px 50px 17px;
    background-color: #ffffff;
}
.sign-main{
         padding: 35px 0px 17px;
         background-color: #ffffff;
}
.sign-main .btn-wrapper button {
    background-color: #ff1a4b;
    align-items: center;
    justify-content: center;
    text-transform: inherit;
    margin: 22px 0;
    border-radius: 100px;
    font-family: 'Montserrat';
    font-size: 19px;
}
.login-sec h3 {
    color: #000000;
    font-size: 43.769px;
    margin-bottom: 23px;
    /* font-family: 'blenderpro'; */
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

.sign h3 {
   color: #000000;
   font-size: 62.51px;
   margin-bottom: 23px;
   /* font-family: 'blenderpro'; */
   font-weight: 500;
   text-transform: uppercase;
   word-spacing: 10px;
   text-align: center;
}


.login_form .remeber {
    text-align: start;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    gap: 40px;
}
.login_form button {
    border: none;
    height: 50px;
    text-transform: inherit;
}

.forgot_pass {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.login_form label,
.forgot_pass a {
    font-family: "Roboto", sans-serif;
    font-size: 16.19px;
    line-height: 60.9px;
    color: #333333;
    font-weight: 500;
}

.signin_sec .log-puts {
    position: relative;
}

.signin_sec .log-puts  i {
    position: absolute;
    top: 20px;
    left: 12px;
    color: #000;
}
.form-check.remchk {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -33px;
}

.form-check.remchk input {
    margin-bottom: 8px;
}
section.signin_sec .row {
    align-items: center;
}


/*Account Page End*/
/* Inner Product Detail Start */
            
            .productdetailsec {
                padding: 100px 0 80px;
                position: relative;
            }
            
          .productdetailtext h3 {
    font-size: 60px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.prd-btn a {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 16px;
    padding: 17px 25px;
    font-weight: 700;
    padding: 10px 20px;
    background-color: #e90079;
    border-radius: 100px;
    color: #fff;
}
.productdetailtext del {
    color: #aba6a6;
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 900;
    margin-left: 5px;
}
            
        .productdetailtext span {
    color: #ff1a4b;
    font-size: 46px;
    /* font-weight: 900; */
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 35px;
}
  



          .productdetailtext ul {
    padding: 0;
    margin: 1px 0 0;
    align-items: center;
    justify-content: flex-start;
}
.clearfix ul {
    margin-bottom: -5px;
}
            
            .productdetailtext ul li {
                list-style: none;
                display: inline-block;
                color: black;
                font-size: 21px;
                font-weight: 500;
                font-family: 'Poppins';
            }
            
            ul.d-flex li {}
            
            ul.product-social {
                display: flex;
                align-items: center;
                justify-content: flex-start;
            }
            
            ul.product-social li i {
    font-size: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    border-radius: 50px;
}
            
            ul.product-social li i:hover {
                background: #93d50a;
                color: #fff;
                border: 0;
                transition: 0.5s ease-in-out;
            }
            
          .productdetailtext ul li a i {
    color: #ffc21f;
    font-size: 25px;
    margin-right: 2px;
}
.clearfix ul li span {
    font-size: 22px;
    color: #787878;
}
            
            .productdetailtext ul li:last-child a i {
                color: #DADADA;
            }
            
           /* .productdetailtext ul li:nth-child(4) a i {
                color: #DADADA;
            }
            */
.productdetailtext p {
    color: #333333;
    font-size: 18px;
    line-height: 28px;
    padding: 12px 0 12px;
    font-weight: 400;
}
            
            .productdetailtext .input-group span.glyphicon.glyphicon-minus {
                font-size: 13px;
            }
            
            .productdetailtext .input-group span.glyphicon.glyphicon-plus {
                font-size: 13px;
                margin: 0;
                top: -15px;
                right: 3px;
            }
            
            .productdetailtext .input-group input.form-control.input-number {
                width: 100%;
                margin: 0 auto;
                display: table;
                height: 50px;
                text-align: center;
            }
            
            .productdetailtext .input-group button.btn.btn-default.btn-number {
                border-radius: 50px;
                width: 30px;
                height: 30px;
                margin: 0 15px;
            }
            
            .productdetailtext .input-group span.glyphicon.glyphicon-minus {
                font-size: 13px;
                margin: 0;
                top: -13px;
                right: 5px;
            }
            
            .productdetailtext .input-group {
                width: 50%;
                margin: 0 0 34px;
            }
            
.iconlist ul {
    padding: 0;
    margin-bottom: 0;
    margin-top: 20px;
}

            
            .iconlist ul li {
                list-style: none;
                line-height: 30px;
                color: #636363;
                font-size: 16px;
                font-weight: 500;
                font-family: 'cereR';
            }
            
            .iconlist ul li i {
    margin: 0 12px 15px 0;
    font-size: 22px;
    color: #000;
}
            
            .productdetailtext .input-group span.input-group-btn {
                font-size: 16px;
                line-height: 20px;
                font-weight: 600;
            }
            
            .productdetailsmallportion {
                position: relative;
                top: 0;
                z-index: 99;
            }
            
            .productdetailsmallportion img {
                margin: auto;
                width: 100%;
                border: 2px solid #E1E1E1;
                height: 100%;
                background: #ffff;
                box-shadow: 0 0 10px #0000001f;
            }
            
            .productdetailsec .productdetailportion {
    border: 2px solid #E1E1E1;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 21px;
}
            
            .productdetailnav .slick-slide {
                opacity: 1;
                z-index: 9999;
                position: relative;
                margin: 0;
            }
            
            .product-detail span {
                margin: 0;
            }
.iconlist ul li {
    font-size: 20px;
    color: #000;
    margin-top: 5px;
}


            
            .product-detail .num-in {
                background: transparent;
                box-shadow: none;
                width: 75%;
            }
            
            .product-detail input.in-num {
                border: 1px solid #DADADA;
                background-color: transparent;
                width: 40%;
                margin: 0 5px;
            }
            
            .product-detail span {
                width: 30px !important;
                border: 1px solid #E3E3E3;
                border-radius: 50px;
                height: 30px !important;
                margin: 5px;
            }
            
            .product-detail .skin-2 .num-in span:before,
            .product-detail .skin-2 .num-in span:after {
                background-color: #000;
            }
            
            .product-detail span:hover:before,
            .product-detail span:hover:after {
                background-color: rgb(255, 255, 255) !important;
            }
            
            .product-details-btn.btn10 {
                background-color: #CFA55A!important;
                color: black;
                border-color: #CFA55A;
                font-size: 17px;
            }
            
            .quanity.product-detail {
                margin-left: 0;
            }
            
            .product-detail span:hover {
                background-color: #000;
            }
            
            ul.product-detail-heading {
                display: grid;
                align-items: center;
                justify-content: space-between;
            }
            
            .product-details-btn {
                height: 60px;
                border: 0;
                width: 180px;
                margin-left: 10px;
                font-size: 17px;
                font-weight: 600;
                text-transform: uppercase;
                background-color: #cfa55a;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #000000;
                cursor: pointer;
            }
            
            a.cat-sub-btn {
                background: #335650;
                color: #fff;
                padding: 15px 40px;
                font-weight: 500;
            }
            
            a.cat-sub-btn:hover {
                background: #000;
            }
 
            
          
            
            .description li.nav-item {
                margin-right: 12px;
            }
            
.description li.nav-item button {
    border-radius: 0;
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 400;
    color: #000;
    text-align: center;
    padding: 0;
}
            
         .description .nav-tabs {
    border-bottom: 0;
    gap: 96px;
    padding-bottom: 20px;
    margin-bottom: 10px;
    justify-content: flex-start;
}
            
            .description {
                padding: 20px 0;
            }
            
          .description .tab-content p {
    color: #000000;
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
}
            
            .productdetailfor .slick-slide img {
                width: 78%;
                height: 100%;
                object-fit: contain;
            }
            
            .productdetailsmallportion img {
                width: auto;
                padding: 10px 10px;
                position: relative;
                z-index: 999999999999999;
            }
            
            .productdetailnav .slick-list.draggable {
                margin-top: -25px;
            }
            /* skin 2 */
            
            .skin-2 .num-in {
                background: #F0F0F0;
                box-shadow: 0px 1px 4px rgb(0 0 0 / 15%);
                height: 40px;
                width: 110px;
                float: left;
                border-radius: 12px;
                cursor: pointer;
            }
            
            .skin-2 .num-in span {
                width: 40%;
                display: block;
                height: 40px;
                float: left;
                position: relative;
            }
            
            .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: 'Roboto';
            }
            
            .product-detail .num-in {
                background: transparent;
                box-shadow: none;
                width: 75%;
                display: flex;
                align-items: center;
            }
            
            .product-detail input.in-num {
                border: 1px solid #DADADA;
                background-color: transparent;
                width: 40%;
                margin: 0 5px;
                padding: 30px 0;
            }
            
            .productdetailsec .btn10 {
                color: white;
            }
            
           .productdetailsmallportion img {
    width: 205px;
    height: 229px;
    object-fit: contain;
    margin: 20px 0;
    padding: 20px 20px;
}
            
         
            
            a.btn.shp-btn {
                font-family: 'cereR';
                font-size: 18px;
                color: #fff;
                background: #000;
                border-radius: 0;
                padding: 14px 45px;
            }
            
            .mn-prd-sll {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
            
            .productdetailfor {
                width: 70%;
                margin-top: -25px;
            }
            
            .productdetailnav {
                width: 30%;
                height: 100%;
                margin-top: 0;
            }
            
            .productdetailfor .slick-slide {
                margin: 0;
            }
            
            section.related-prod {
                position: relative;
                padding: 50px;
            }
            
            .product-head {
                text-align: center;
                margin-bottom: 50px;
            }
            
            .quanity.product-detail input {
                width: 20%;
                height: 50px;
                border: 1px solid #000;
                padding: 13px;
                color: #000;
            }
            
            ul.product-quintity li {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                gap: 20px;
            }
            
            .quanity.product-detail input::-webkit-outer-spin-button,
            .quanity.product-detail input::-webkit-inner-spin-button {
                -webkit-appearance: auto !important;
                margin: 0px !important;
                opacity: 1 !important;
            }
            /* product tabs css */
            
            .rate {
                height: 46px;
                /* padding: 0 10px; */
                float: left;
                display: block;
                clear: both;
            }
            
            .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;
            }
            
            .rate:not(:checked)>label:before {
                content: '\f005';
                font-family: 'Font Awesome 5 Free';
                font-weight: 800;
                color: #000;
                font-size: 24px;
            }
            
            .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;
            }
            
            .prd-commets .testimonial-heading {
                letter-spacing: 1px;
                margin: 30px 0px;
                padding: 10px 20px;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
            }
            
            .prd-commets .testimonial-heading span {
                font-size: 1.3rem;
                color: #252525;
                margin-bottom: 10px;
                letter-spacing: 2px;
                text-transform: uppercase;
            }
            
            .prd-commets .testimonial-box-container {
                display: block;
            }
            
            .prd-commets .testimonial-box {
                width: 100%;
                box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
                background-color: #ffffff;
                padding: 20px;
                margin: 15px;
                cursor: pointer;
            }
            
            .testi-box {
                border: 1px solid #e1e1e1;
                padding: 30px;
                margin: 20px 0;
            }
            
            .prd-commets .prd-commets .profile-img {
                width: 50px;
                height: 50px;
                border-radius: 50%;
                overflow: hidden;
                margin-right: 10px;
            }
            
            .prd-commets .profile-img img {
                width: 80px;
                height: 80px;
                object-fit: cover;
                object-position: center;
                border-radius: 50px;
                margin-right: 20px;
            }
            
            .prd-commets .profile {
                display: flex;
                align-items: center;
            }
            
            .prd-commets .name-user {
                display: flex;
                flex-direction: column;
            }
            
            .prd-commets .name-user strong {
                color: #3d3d3d;
                font-size: 1.1rem;
                letter-spacing: 0.5px;
            }
            
            .prd-commets .name-user span {
                color: #979797;
                font-size: 0.8rem;
            }
            
            .prd-commets .reviews {
                color: #f9d71c;
            }
            
            .prd-commets .box-top {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 20px;
            }
            
            .prd-commets .client-comment p {
                font-size: 0.9rem;
                color: #4b4b4b;
                text-align: left;
            }
            
            .prd-commets .testimonial-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-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-weight: 500;
                color: rgb(124, 124, 124);
            }
            
            .description .tab-content form {
                margin-bottom: 70px;
            }
            
            .prdtc-rvw i:hover {
                color: #FFC107;
            }
            .products-box img {
    width: 40%;
    height: 220px;
    object-fit: contain;
}
span.smal {
    font-size: 35px;
    font-weight: 500;
    color: #000;
}
.clearfix {
    margin-bottom: 30px;
}
.menuSec ul li a:hover {
    color: #e03d3a;
}
a.btn-2:hover {
    background-color: #fff111;
    color: #000;
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #ff1a4b;
    border-color: #dee2e6 #dee2e6 #fff;
    padding: 10px 30px;
    border-radius: 100px;
    color: #fff;
}
ul.size.one li h6 {
    font-size: 20px;
}
ul.size.one {
    display: flex;
}
.select-main.one {
    margin-top: 20px;
}
.select-main.one h5 {
    font-size: 30px !important;
    margin-bottom: 0;
}
section.featured.INN {
    padding: 80px 0px;
}
            /* Inner Product Detail End */

.menuSec ul li a:hover {
    color: #000;
}
li.black a:hover {
    color: #ff1a4b !important;
}
a.btn-1:hover {
    background-color: #000;
    color: #fff;
}
@keyframes shadow-pulse{
0% {
    box-shadow: #ff1a4b87 0 0 0 0;
}
100% {
    box-shadow: #ff1a4b87 0 0 0 10px;
}
}
ul.ul1ftbottom li i:hover {
    color: #ff1a4b;
    border: 1px solid #ff1a4b;
}


/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291px) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {
    html {
    overflow-x: hidden;
}
.menuSec ul li a {
    padding: 10px 20px;
}
.banner-txt h1 {
    font-size: 70px;
    line-height: 76px;
}
.ban-bot-bx img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.since h5 {
    font-size: 16px;
    padding: 20px 10px;
}
section.banner {
    padding: 110px 0px 150px;
}
.abt-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.product.top-supplies img {
    width: 150px;
    object-fit: contain;
}
.pro-txt-2 h5 {
    font-size: 26px;
}
.community-txt h4 {
    font-size: 60px;
    line-height: 70px;
}
section.community {
    padding: 60px 0px;
    background-position: right;
}
.testi-img {
    padding: 30px 10px;
}
.newsleeter-btn {
    right: 0;
}
ul.text-newsletter li h2 {
    font-size: 29px;
    line-height: 41px;
}
.dv1footer h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 0;
}
.textwidget.custom-html-widget {
    text-align: left;
    padding-left: 10px;
}
.banner.inn .row {
    align-items: center;
}
    .banner.inn .banner-txt h1 {
        font-size: 50px;
        line-height: 60px;
    }
    h1.product_title.entry-title {
    font-size: 44px !important;
}
.single-product p.price {
    margin: 20px 0 0;
}
.contact2 h2 {
    font-size: 70px;
}
.contact1 h2 {
    font-size: 70px;
}
.icon {
    padding-top: 0;
    padding-left: 0;
    min-width: auto;
}
.contact2 ul li {
    gap: 15px;
}
.contact2 .icon i {
    font-size: 30px;
    width: 60px;
    height: 60px;
}

.contact2 ul li p {
    font-size: 15px;
}
div#wppb-login-wrap label {
    width: 100% !important;
}
div#wppb-login-wrap input {
    width: 100% !important;
}
#wppb-login-wrap .login-remember {
    left: 0 !important;
    justify-content: flex-start !important;
}
input#send_credentials_via_email {
    float: none;
    margin-right: 10px;
    width: 20px;
    height: 20px;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
html {
    overflow-x: hidden !important;
}
.ban-top {
    position: relative !important;
    top: 0 !important;
    left: -40px !important;
}
    .banner .ban-top {
        position: relative !important;
        top: auto !important;
        left: 270px !important;
        bottom: 60px !important;
    }
.ban-top img {
        width: 60px !important;
        height: 60px !important;
}
.cart img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.acc i {
    width: 40px;
    height: 40px;
}
.banner-main-img {
    right: -15px;
}

section.banner:after {
    width: 48%;
}
.menuSec ul li a {
padding: 10px 5px;
        font-size: 11px;
}
.banner-txt h1 {
    font-size: 60px;
    line-height: 60px;
}
.banner-txt p {
    width: 100%;
}
.ban-bot-bx img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.ban-bot-bx {
    gap: 10px;
    padding: 15px;
    overflow: hidden;
    height: 100px;
}
.ban-bot-bx h5 {
    font-size: 20px;
    line-height: 30px;
}
.since h5 {
  font-size: 14px;
  letter-spacing: 5px;
  padding: 20px 5px;
}
.banner-main-img img {
    height: 65%;
    width: 100%;
}
.bann-bot {
    margin-top: 75px;
}
section.banner {
    padding: 100px 0px 140px;
}
.since {
    bottom: 145px;
}
.abt-txt h3 {
    font-size: 70px;
    margin-bottom: 10px;
}
.abt-img img {
    height: 450px;
    object-fit: cover;
}
.pro-txt h4 {
    font-size: 50px;
    line-height: 50px;
}
.top-supplies img {
    margin: 10px 0;
}
.product .col-md-3 {
    width: 50%;
    margin: 15px 0;
}
.community-txt h4 {
    font-size: 45px;
    line-height: 50px;
}
section.community {
    margin: 50px 0px;
    padding: 60px 0px;
    background-position: center;
}
.featured .col-md-3 {
    width: 50%;
    margin: 15px 0;
}
section.testimonial {
    padding: 70px 0px 0;
}
.newsletter .col-md-6 {
    width: 100%;
    margin: 10px auto;
}
.newsletter-field {
    display: block;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}
.newsleeter-btn .theme-btn {
    margin-right: 48px;
}
.dv1footer p {
    margin-top: 0 !important;
    width: 100% !important;
}
.dv1footer h2 {
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 10px;
}
.dv1ftbottom {
    padding: 15px 15px;
}
ul.ul1ftbottom {
    gap: 8px;
}
ul.ul1ftbottom li i {
    font-size: 16px;
    width: 30px;
    height: 30px;
}
section#media_image-2 img {
    width: 120px;
}
.banner.inn .row {
    align-items: center;
}
.banner.inn .banner-txt h1 {
    font-size: 40px !important;
    margin: 0 !important;
}
.mission-txt h4 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 0;
}
.testimonial-inn .col-md-4 {
    width: 50%;
}
.contact_us.inner-bg .col-md-6 {
    width: 100%;
    margin: 20px 0;
}
.wppb-form-field label, #wppb-login-wrap .login-username label, #wppb-login-wrap .login-password label, #wppb-login-wrap .login-auth label {
    width: 100% !important;
}
.wppb-form-field input[type="text"], .wppb-form-field input[type="password"] {
    width: 100% !important;
}
#wppb-login-wrap .login-remember {
    left: 0 !important;
}
input#send_credentials_via_email {
    width: 20px;
    height: 30px;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    float: left;
    margin: 0 3.8% 2.992em 0;
    padding: 0;
    position: relative;
    width: 46% !important;
}
form.cart {
    margin: 20px 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.top-supplies .slick-list.draggable {
    padding: 0 200px;
}

.top-supplies .slick-slide {
    opacity: 1;
}
.top-supplies .slick-track {
    display: flex;
}
.pro-img img {
    width: 100%;
    height: 350px !important;
    object-fit: cover !important;
    border-radius: 20px !important;
}
#enquiry {
    padding-bottom: 20px;
    text-align: center !important;
}
}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {
    html {
    overflow-x: hidden !important;
}
    
    header {
        padding: 0;
        top: 0;
        background: 0;
        position: relative;
}
.banner-main-img img {
    display: none;
}

section.banner:after {
    display: none;
}

section.banner::before {
width: 100%;
        height: 60%;
}
.banner-txt h1 {
    font-size: 55px;
    line-height: 60px;
}
.banner-txt p {
    width: 100%;
}
.cart {
    position: inherit !important;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
} 
.acc {
    position: relative;
    top: 0;
    left: 13px;
}
.acc i {
    color: #ff1a4b;
    background: #fff;
    border: 0;
}
.acc::before {
    display: none;
}
section.banner {
    padding: 80px 0;
}
.since {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
}
.since h5 {
    writing-mode: horizontal-tb;
    transform: rotate(0);
}
.ban-bot-bx {
    gap: 10px;
    padding: 10px;
    margin: 10px 0;
}
.ban-bot-bx img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}
.ban-bot-bx h5 {
    font-size: 20px;
    line-height: 30px;
    margin: 0;
}
.banner-img {
    margin-top: 40px;
}
.bann-bot {
    margin-top: 90px;
}
.abt-txt h3 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 0;
}
.abt-txt {
    margin-top: 40px;
}
.pro-txt h4 {
    font-size: 50px;
    line-height: 60px;
}
.pro-txt p {
    width: 100%;
}
.product .col-12 {
    margin: 20px 0;
}
.community-txt h4 {
    font-size: 45px;
    line-height: 50px;
}
section.community {
    margin: 0px 0px !important;
    padding: 50px 0px !important;
    background-position: center;
}
.featured .col-12 {
    margin: 20px 0;
}
.newsletter {
    padding: 30px 0;
}
ul.text-newsletter li h2 {
    font-size: 30px;
    line-height: 38px;
}
ul.text-newsletter {
    display: grid;
    gap: 10px;
    text-align: center;
    margin-bottom: 10px;
}
.newsleeter-btn .theme-btn {
    padding: 15px 20px;
    margin-right: 47px;
}
.dv1footer h2 {
    font-size: 30px;
    margin: 0;
    line-height: 30px;
}
.textwidget.custom-html-widget {
    text-align: left;
    margin: 20px 0;
    border: 0;
}
.dv1footer:before {
    display: none !important;
}
.dv2footer {
    border: 0;
}
.dv1ftbottom {
    display: block;
    padding: 10px 10px;
    text-align: center;
}
ul.ul1ftbottom {
    justify-content: center;
}
.dv1ftbottom p {
    font-size: 12px;
    line-height: 22px;
    text-align: center !important;
}
.banner.inn .banner-txt h1 {
        font-size: 40px;
        line-height: 50px;
}
.mission-txt h4 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 20px;
}
section.mission .row.mt-5 {
    flex-direction: column-reverse;
}
    .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
        width: 100% !important;
        float: left;
        clear: both;
        margin: 20px 0  !important;
    }
    h1.product_title.entry-title {
    font-size: 40px !important;
}
.single-product p.price {
    margin: 20px 0;
}
h2 {
    font-size: 40px;
    line-height: 50px;
}
section.contact_us {
    padding: 50px 0;
}
.contact1 h2 {
    font-size: 60px;
}
.contact2 h2 {
    font-size: 60px;
}
.contact2 {
    margin-top: 30px;
}
.contact2 .icon i {
    font-size: 24px;
    width: 50px;
    height: 50px;
}
.icon {
    padding-top: 0;
    padding-left: 0;
    min-width: auto;
}
.contact2 ul li p {
    line-height: 25px;
    font-size: 13px;
}
input#send_credentials_via_email {
    width: 30px;
    height: 30px;
}
#wppb-login-wrap .login-remember {
    left: 0 !important;
}
.wppb-form-field input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
}
li.black a {
    color: #fff !important;
}
.site-main select.orderby {
    width: 150px;
    padding: 0 10px;
}

.site-main p.woocommerce-result-count {
    font-size: 12px;
}
section.testimonial-inn .testi-img {
    width: 100% !important;
}
}


/*Media Query End*/


