@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,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';
  font-weight: 500;
}


/***** Font Files *****/

@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Regular.ttf);
  font-weight: 400;
  font-style: normal
}
@font-face {
  font-family: 'Saudagar';
  src: url(../fonts/Saudagar.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: 'Saudagar';
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'Saudagar';
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

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

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

h5 {
  font-family: 'Saudagar';
  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 */

.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 28px;
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 300;
}

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

.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;
}
a.btn-2 {
    font-family: "Roboto", sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #0984ed 0%, #4baaf9 100%);
    width: fit-content;
    padding: 5px 5px 5px 15px;
    border-radius: 100px;
    border: 2px solid #fff;
    color: #fff;
}
.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 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    padding: 20px 0px;
}
header .row{
  align-items: center;
}
/*header css start */

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

a.btn-2 img {
    width: 35px;
}

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

.banner_text h1 {
    font-size: 107px;
    line-height: 107px;
    margin-bottom: 40px;
}
.banner_text h4 {
    font-size: 47px;
    line-height: 47px;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 5px;
}
.banner_img {
    position: absolute;
    top: 16%;
    right: 6%;
    width: 49%;
}

.banner_img img {
    width: 100%;
}
.banner_text p {
    font-size: 14px;
    color: #fff;
    width: 86%;
}

.carousel-caption {
    z-index: 9999999999;
}
.carousel-caption::before {
    position: absolute;
    top: 42%;
    left: 0;
    width: 100%;
    height: 85px;
    background-color: #0883ec;
    content: '';
    z-index: -1;
}
.banner_bottom {
    position: absolute;
    width: 65%;
    z-index: 1;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 100px;
    padding: 40px;
    border-top-right-radius: 70px;
    z-index: 0;
    height: 135px;
}
.banner_bottom::before{
  background-color: #f7f7f7;
  position: absolute;
  content: '';
  width: 80%;
  height: 100%;
  left: 0;
  top:0;
  z-index: -1;
  border-top-right-radius: 70px;
}
span.start_number {
    color: #0984ed;
}
section.main_slider {
    position: relative;
    z-index: 999;
}

.slide_counter h2 {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 0;
}

ul.slide_arrows {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0;
}

.slide_counter p {
    font-size: 26px;
    font-family: 'Saudagar';
    margin-bottom: 0;
}
.slide_counter {
    padding-left: 9%;
}


.slide_counter span.end_number {
    font-size: 26px;
    color: #000;
}
.social-icon {
    position: absolute;
    top: 0;
    right: 0px;
    height: 100%;
    background-color: #0864b1;
    width: 5%;
    padding-left: 23px;
    z-index: 999999999999;
}

ul.search-social {
    position: absolute;
    bottom: 0;
}



ul.search {
    position: absolute;
    top: 71px;
}

.social-icon ul li a i {
    font-size: 15px;
    color: #fff;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
}

.social-icon ul li {
    padding-bottom: 20px;
}
/*banner css end*/

/*about start*/
section.about {
    padding: 120px 0px 100px;
}
.abt-txt {
    text-align: end;
    width: 90%;
}

.abt-txt a {
    margin: 0 0 0 auto;
}

.abt-txt h3 {
    font-size: 72px;
    line-height: 72px;
    font-weight: 400;
    color: #fff;
}

.abt-txt p {
    font-size: 13px;
    line-height: 26px;
    width: 93%;
    margin: 0 0 0 auto;
    margin-bottom: 30px !important;
    color: #fff;
}
.abt-main {
    position: relative;
}

.abt-main::before {
    position: absolute;
    top: 70px;
    left: -30px;
    content: '';
    width: 100%;
    background: linear-gradient(90deg, #0984ed 0%, #4baaf9d4 100%);
    height: 515px;
    z-index: -1;
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
}
/*about end*/
/*porduct start*/
.pro-main {
    background-color: #f7f7f7;
    border: 2px solid #cccccc;
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
    margin-top: 45px;
}

.pro-main ul {
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
}

.pro-main ul li i {
    color: #0a84ed;
    font-size: 20px;
}

.pro-txt h6 {
    font-size: 12px;
    color: #8b8b8b;
    margin-bottom: 15px;
}

.pro-txt h3 {
    font-size: 19px;
    line-height: 19px;
    color: #000;
    font-weight: 500;
    margin-bottom: 10px;
}

.pro-txt p {
    font-size: 13px;
    color: #8b8b8b;
}
.pro-txt h4{
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
  color: #0984ed;
  margin-bottom: 0;
}

.pro-main-img {
    position: relative;
    padding: 10px;
}

.pro-cart-img {
    position: absolute;
    bottom: -5px;
    right: 35px;
}
.featured-product-txt {
    text-align: center;
    margin-bottom: 30px;
}

.featured-product-txt h3 {
    font-size: 92px;
    line-height: 92px;
    font-weight: 400;
    margin-bottom: 0;
}

.featured-product-txt p {
    font-size: 14px;
    width: 74%;
    margin: 0 auto;
}
section.featured-products {
    padding-bottom: 100px;
}
.pro-txt {
    padding: 20px 30px;
}

.pro-main-img img {
    width: 100%;
}
/*product end*/
/*categories start*/
.cate-slid .slick-active {
    opacity: 1;
}
.cate-slid {
    padding-left: 8%;
}
section.categories .container-fluid {
    padding-right: 0;
}
.cate-img img {
    width: 100%;
    height: 400px;
}
section.categories .slick-slide {
    opacity: 1;
}
.cate-txt h3 {
    font-size: 93px;
    line-height: 93px;
    font-weight: 400;
    color: #fff;
}

.cate-txt p {
    font-size: 14px;
    width: 80%;
    color: #fff;
}
.cat-txt {
    padding: 20px;
    background-color: #f7f7f7;
    border: 2px solid #cccccc;
}

.cat-txt h4 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 0;
    color: #000;
}
section.categories {
    margin: 80px 0px 80px;
    position: relative;
}

section.categories::before {
  position: absolute;
  content: '';
  width: 100%;
  top: -70px;
  left: 0;
  height: 450px;
  background-image: url(../images/cat-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.cate-txt {
    margin-bottom: 40px;
}
.cate-slid .slick-prev {
    left: auto;
    top: -143px;
    z-index: 6;
    right: 129px;
}
.cate-slid .slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: 1;
}
.cate-slid .slick-prev:before {
    content: "";
    background-image: url(../images/s-left.png);
    background-repeat: no-repeat;
    position: absolute;
    height: 80px;
    width: 80px;
    top: -40px;
}
.cate-slid .slick-next:before {
    content: "";
    background-image: url(../images/s-right.png);
    background-repeat: no-repeat;
    position: absolute;
    height: 80px;
    width: 80px;
    top: 21px;
    left: -212px;
}
.cate-slid .slick-next {
    right: 0;
    top: -200px;
    z-index: 5;
}
/*categories end*/

/* Testimonials */
.tattered-imgs-right {
    position: absolute;
    height: 450px;
    width: 15%;
    right: 0;
}

.tattered-imgs-right .tattered-img:nth-child(2) {
    position: absolute;
    right: 0;
    top: 130px;
}

.tattered-imgs-right .tattered-img:nth-child(1) {
    position: absolute;
    top: 0;
}

.tattered-imgs-left {
    position: absolute;
    left: 0;
}

.tattered-imgs-left .tattered-img:nth-child(1) {
    top: 0;
    position: absolute;
    right: 0;
}

.tattered-imgs-left .tattered-img:nth-child(2) {position: absolute;top: 100px;}

.tattered-imgs-left .tattered-img:nth-child(3) {
    position: absolute;
    top: 250px;
    right: 0;
}

.tattered-imgs-left {
    height: 450px;
    width: 15%;
}
section.testimonials-sec .row {
    position: relative;
}
.testi-txt {
    position: relative;
    /* background: #6999ce; */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 10px 0px;
    padding: 0px 60px 50px;
    border-bottom-right-radius: 20px;
    text-align: center;
}

.author-img {
    position: absolute;
    left: 330px;
    top: -40px;
}
.testi-header .author-img {
    position: unset;
}
.author-img img {
    width: 110px;
}
.testi-author h3 {
    font-size: 23px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    color: #0c0c0c;
}

.testi-author h4 {
    font-size: 14px;
    color: #000;
    font-family: 'Montserrat';
    font-weight: 400;
    color: #fff;
}

.testi-author h4 span {
    color: #fa9c00;
}

.testi-author {
    padding: 94px 0 0;
}

.testi-txt p {
    margin: 0;
    padding: 15px 0 0;
    color: #222222;
    font-size: 16px;
    line-height: 30px;
}

.testi-slider .slick-slide {
    margin: 50px 40px;
}
.testi-txt::before {
    position: absolute;
    content: "";
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 10px 0px;
    padding: 0 140px 120px;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    z-index: -1;
}
section.testimonials-sec .sec-heading {
    margin: 0 0 50px;
}

section.testimonials-sec {
    padding: 90px 0 90px;
}
.testi-slider .slick-prev:before,.testi-slider .slick-next:before {
    display: block;
    content: "";
    background: url(../images/arrow2.png);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1 !important;
    width: 75px;
    height: 45px;
    transition: 0.35s ease-in-out;
}
.testi-slider .slick-prev,.testi-slider .slick-next {
    width: 75px;
    height: 45px;
    z-index: 2;
    bottom: -90px;
    top: unset;
}

.testi-slider .slick-prev {
    left: 0;
    right: 0px;
    /* transform: rotate(180deg); */
    margin: 0 auto;
    display: block;
    bottom: -90px;
}
.testi-slider .slick-next {
    right: 300px;
}

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

.testi-slider .slick-prev:hover:before, .testi-slider .slick-next:hover:before {
    filter: brightness(0);
}
.testi-slider::after {
    position: absolute;
    content: "";
    background: url(../images/dots.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 250px;
    height: 90px;
    right: -90px;
    top: 100px;
    z-index: 5;
    pointer-events: none;
}
.feat-book-head.text-center h2 {
    font-size: 77px;
    line-height: 77px;
    margin-bottom: 20px;
}
.feat-book-head.text-center p {
    font-size: 14px;
    color: #111111;
}
.feat-book-head.text-center {
    margin-bottom: 40px;
}
.testi-author ul {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 6px;
}

.testi-author ul li a i {
    color: #28405b;
}
/* Testimonials */
/*footer start*/
footer.footer-sec {
    background: #272727;
    position: relative;
    padding-bottom: 40px;
    padding-top: 80px;
}

.footer-box h4 {
    font-size: 22px;
    color: rgb(255, 255, 255);
    line-height: 24px;
    margin-bottom: 30px;
    font-family: 'Montserrat';
    text-transform: capitalize;
    font-weight: 600;
}

.footer-box p {
    font-size: 14px;
    color: rgb(255, 255, 255);
    line-height: 25px;
    font-family: 'Roboto';
    font-weight: 400;
}

ul.footer-link-list li a {
    font-size: 16px;
    color: rgb(210, 210, 210);
    line-height: 26px;
    letter-spacing: 1px;
    font-family: 'Roboto';
}

ul.footer-link-list li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

ul.footer-link-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin: 10px 0px;
}

ul.footer-link-list li a {
    transition: .5s ease-in-out;
}

ul.footer-link-list li a:hover {
    padding-left: 5px;
    color: #ab8669;
}

ul.footer-link-list i {
    font-size: 20px;
    color: #1a8ef0;
    font-weight: 300;
    font-family: 'FontAwesome';
}

.footer-box::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 0;
    right: -5px;
    top: 0px;
    bottom: auto;
    transition: .5s ease-in-out;
    z-index: 1;
}

.footer-box:hover::before {
    height: 295px;
    background: #ab8669;
    z-index: 1;
}


.bottom-text p {
    font-size: 17px;
    color: rgb(255, 255, 255);
    text-align: start;
    font-family: "Montserrat Alternates", sans-serif;
    margin: 0;
}

.bottom-imag {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.bottom-nav-box .row {
    align-items: center;
}

.bottom-nav-box {
    border: 1px solid rgb(167, 167, 167);
    padding: 10px 20px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #232323;
}

.footer-box.box-center {
    margin-left: 20%;
}

.footer-box.box-center {
    margin-left: 20px;
}

ul.bottom-list i:hover {
    transform: scale(1.1) rotate(945deg);
    background: #ab8669;
    border-color: #ab8669;
}

.footer-box {
    position: relative;
}

.footer-box::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 295px;
    right: -5px;
    top: 0px;
    bottom: auto;
    background: rgb(167, 167, 167);
}

.noborder::after {
    display: none;
}

.noborder::before {
    display: none;
}

.bottom-nav-box:after {
    position: absolute;
    content: '';
}
.bottom-nav-box ul {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bottom-nav-box ul li a i {
    font-size: 15px;
    color: #fff;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
}

/* Footer End */
/*blog start*/
section.blog {
    padding: 100px 0px 150px;
}

.blog-txt {
    text-align: center;
    margin-bottom: 40px;
}

.blog-txt h2 {
    font-size: 92px;
    line-height: 92px;
    margin-bottom: 10px;
    color: #11111;
}

.blog-txt p {
    font-size: 14px;
    color: #111111;
    margin: 0 auto;
    width: 73%;
}
.blog-img {
    position: relative;
}
.blog-img img {
    width: 79%;
}
.blog-detail {
    /* border: solid; */
    padding: 47px;
    background: #fff;
    position: absolute;
    top: 27%;
    left: 21%;
    box-shadow: 0 0 4px #80808073;
    width: 79%;
    height: 302px;
    border-radius: 0;
}
.blog-detail h5 {
    font-size: 18px;
    line-height: 25px;
    color: #000;
    font-weight: 500;
    margin: 0 0 20px;
    width: 75%;
}
.blog-detail h5 {
    font-family: 'Montserrat';
    font-size: 27px;
    line-height: 30px;
    color: #000;
    font-weight: 500;
    margin: 0 0 20px;
    /* width: 75%; */
    width: 100%;
}
.blog-detail h5 span {
    display: block;
}
.alignlist {
    display: flex;
    gap: 10px;
    justify-content: end;
    text-align: end;
    margin-left: 43%;
}
.icons i {
    border: solid 1px #000;
    /* padding: 9px; */
    border-radius: 20px;
    color: #0956a2;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icons {
    display: flex;
    align-items: center;
    gap: 17px;
}
.blog-slider .slick-active {
    opacity: 1;
}
.blog-slider .slick-prev:before,.blog-slider .slick-next:before {
    display: block;
    content: "";
    background: url(../images/arrow2.png);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1 !important;
    width: 75px;
    height: 45px;
    transition: 0.35s ease-in-out;
}
.blog-slider .slick-prev,.blog-slider .slick-next {
    width: 75px;
    height: 45px;
    z-index: 2;
    bottom: -90px;
    top: unset;
}

.blog-slider .slick-prev {
    left: 0;
    right: 0px;
    /* transform: rotate(180deg); */
    margin: 0 auto;
    display: block;
    bottom: -90px;
    width: 18%;
}
.blog-slider .slick-next {
    right: 300px;
    width: 27%;
}

.blog-slider .slick-prev:before {
    transform: rotate(180deg);
}

.blog-slider .slick-prev:hover:before, .blog-slider .slick-next:hover:before {
    filter: brightness(0);
}
/*blog end*/
/*inner-banner start*/
section.main_slider.inn .carousel-caption::before{
  display: none;
}
section.main_slider.inn img {
    height: 500px;
}
/*about inn start*/
section.inn-about {
    padding: 100px 0px;
}
.abt-txt-2 h3 {
    font-size: 72px;
    line-height: 72px;
    font-weight: 400;
}
.abt-txt-2 h3 {
    font-size: 72px;
    line-height: 72px;
    font-weight: 400;
}

.abt-txt-2 p {
    font-size: 14px;
    color: #022222;
}
.abt-bot {
    margin-top: 25px;
}
.abt-bot p{
    font-size: 14px;
    color: #022222;
}
/*about-inn end*/
/*login start*/
section.login {
    padding: 70px 0px;
}

.login-txt form input {
    width: 100%;
    margin-bottom: 10px;
    outline: none;
    padding: 10px 10px;
    border: 1px solid;
    color: #e2e2e2;
    border-radius: 30px;
}
.login-txt h3 {
    font-size: 40px;
    /* font-family: 'Recoleta'; */
    text-align: center;
    line-height: 40px;
}
.login-txt {
    box-shadow: 0 0 3px;
    padding: 45px 25px 35px;
    border-radius: 15px;
    background-color: #fdfdfd;
}
.login-txt ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
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: 30px;
    padding: 10px 0px;
    outline: none;
    border: none;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #0984ed 0%, #4baaf9 100%);
    font-size: 18px;
    font-weight: 500;
    font-family: 'Montserrat';
}
/*login end*/
/*CHECKOUT PAGE STRT*/



.billing_form {
  padding: 40px;
  /*background-color: #0e194a;*/
}

.billing_form h3 {
  margin-bottom: 30px;
  font-size: 28px;
  color: #5db2f2;
  margin: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 28px;
  /* font-family: 'Recoleta'; */
  font-weight: 400;
}

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


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

.radiosss p {
  color: #000;
  font-size: 12px;
  font-weight: 400;
}


.billing_form input {
  width: 100%;
  height: 45px;
  border: 2px solid #dbdbdb;
  margin-bottom: 20px;
  padding-left: 15px;
  background-color: #fff0;
  border-radius: 0px;
}

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

}

.cart_sidebar .cart_lst li:not(:last-child) {
  margin-bottom: 15px;
  font-family: 'Nova Square';
  color: #7c7c7c;
}

.cart_sidebar .cart_lst li {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

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


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



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



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

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

}

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

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

}

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

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

}

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

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

}

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

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

}

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

.order_detail_table ul li span {
  float: right;
}

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

.order_detail_table h6 {
  font-size: 17px;
  font-weight: 700;
  color: #000;

  padding: 25px 0;
  border-top: 1px solid #dbdbdb;
  margin: 0;

}

.order_detail_table h6 span {
  float: right;
}

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

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

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

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

.cart_sidebar {
  padding: 40px 25px;
  border: 2px solid #bfbfbf;
  border-radius: 0px;
}



.cart_sidebar h3 {
    font-size: 33px;
    color: #000;
    margin-top: 0px;
    line-height: 25px;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
}
.cart_sidebar a {
    padding: 12px 130px;
    color: #fff;
    border-radius: 0;
    background: linear-gradient(90deg, #0984ed 0%, #4baaf9 100%);
    font-size: 19px;
}



.cart_sidebar .h-sub {
  font-weight: 500;
  color: #000;
  font-size: 20px;
  border-bottom: 1px solid #373a33;
  margin-bottom: 20px;
  line-height: 0;
  padding-bottom: 30px;
  padding-top: 20px;
  font-family: 'Nova Square';
}

.cart_sidebar h5 span {
  float: right;
}

.cart_sidebar h4 {
  font-size: 17px;
  font-weight: 500;
  color: #000;
}

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

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


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

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

.cart_sidebar ul li:not(:last-child) {
  margin-bottom: 15px;
  font-family: 'Nova Square';
}

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

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

}

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

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

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

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

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

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

.checkout_btn {
  padding: 14px 50px;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  background: linear-gradient(180deg, #63ab1e 60%, #4a8f2c 100%);
  text-transform: uppercase;
  border-radius: 100px;
}

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


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

h6.payment-h {
  font-weight: 400;
  color: #000;
  font-size: 20px;
  margin-bottom: 30px;
  font-family: 'gunplay';
  text-transform: uppercase;
}

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

.cart_sidebar .radiosss-payments li label:before {

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

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



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

.radiosss-payments {
  border-bottom: 1px solid #000;
}



.billing_form {
  border: 2px solid #bfbfbf;
  padding: 20px;
  border-radius: 0px;
}
section.checkout_page.pt-5.pb-5 {
    padding: 100px 0px !important;
}

/*CHECKOUT PAGE END*/
/*cart-pg start*/

.add-to-cart {
  position: relative;
  padding: 110px 0;
}

.add-to-cart thead {
    color: #fff;
    border-radius: 30px;
    background: linear-gradient(90deg, #0984ed 0%, #4baaf9 100%);
}

.add-to-cart .table>thead>tr>th {
  border-bottom: 0;
  padding-left: 25px;
  padding-bottom: 20px;
  padding-top: 20px;
  font-size: 26px;
  padding-right: 0 !important;
  font-family: 'Saudagar';
  font-weight: 500;
}

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

.table-space h3 {
  font-size: 18px;
  color: #00000080;
  margin-bottom: 5px;
  line-height: 25px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: 'Montserrat';
}

.table-space span {
  font-size: 22px;
  text-transform: uppercase;
  color: #00000080;
  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: 18px;
  display: block;
  /* text-align: center; */
  padding-top: 9px;
  color: rgba(0, 0, 0, 0.50);
  font-weight: 500;
  text-decoration: none;
  color: #666666;
  text-align: center;
}

.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;
  color: white;
  padding: 10px 17px;
  margin-top: 35px;
  /* transform: skewX(-15deg); */
  /* width: fit-content; */
  /* display: flex; */
  /* justify-content: end; */
  position: absolute;
  right: 494px;
  border-radius: 5px;
  background: linear-gradient(90deg, #0984ed 0%, #4baaf9 100%);
}


.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: 35px 35px;
  background-color: #fff0;
  background-color: #f9f9f9;
  border-radius: 15px;
}

.total-section li {
    font-size: 20px;
    padding-bottom: 30px;
    color: #000000a1;
    font-weight: 400;
    /* font-family: 'Poppins'; */
    text-transform: uppercase;
    font-family: 'Saudagar';
}
li.color-change {
  font-size: 28px;
  font-weight: 500;
  padding-bottom: 0;
  color: #3aa1f6;
}

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

.ship-estimate {
  background-color: #f9f9f9;
  padding: 50px;
  margin-top: 100px;
  /* border: 1px solid #e5e5e5; */
}

.ship-estimate ul {
  margin-top: 0px;
  margin-bottom: 0;
}

.ship-estimate li {
    font-size: 20px;
    margin-bottom: 5px;
    /* font-family: 'Montserrat'; */
    color: #0000005e;
}

.ship-estimate .grey-style {
  color: #000;
  font-size: 18px;
  font-weight: 300;
}

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

.nice-select .list {
  height: 350px;
  overflow-y: scroll;
}

.total-section ul {
  margin: 0;
}


.input-number {
  width: 97px;
  padding: 0 12px;
  vertical-align: top;
  text-align: center;
  outline: none;
  background-color: #fff0;
  color: #000;
  height: 51px;
}
.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 {
    color: #fff;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    font-family: 'Montserrat';
    font-weight: 500;
    text-transform: uppercase;
    background: linear-gradient(90deg, #0984ed 0%, #4baaf9 100%);
    font-size: 18px;
}
/*CART END*/
/*inn CONTACT START*/
.contact_page {
  padding: 100px 0;
}

.contact_form input {
  height: 52px;
  width: 100%;
  border: 2px solid #e4e4e4;
  margin-bottom: 25px;
  border-radius: 100px;
  padding: 0 15px;
}

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

.contact_form textarea {
  width: 100%;
  height: 250px;
  margin-bottom: 30px;
  width: 100%;
  border: 2px solid #e4e4e4;
  border-radius: 10px;
  padding: 15px 15px;
  resize: none;
}

.section_head {
  margin-bottom: 40px;
}

.section_head p {
    color: #636363;
    width: 70%;
    margin: 0 auto;
    font-weight: 400;
    font-size: 14px;
}

.section_head h3 {
  color: #000;
  font-size: 70px;
  margin-bottom: 16px;
  line-height: 60px;
  text-transform: uppercase;
  font-weight: 300;
}

.br_gradient {
  padding: 2px;
  border-radius: 12px;
}

.contact_detail_box p span {
  display: block;
}
.contact_page h4 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 37px;
    color: #000;
}

.contact_detail_box figure img {
  margin: auto;
  height: 53px;
  width: 55px;
  object-fit: cover;
}

.contact_detail_box h2 {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  font-weight: 700;
  margin: 30px 0 10px 0;
}
.contact_detail_box.box-2 {
    padding: 52px 30px;
}

.contact_detail_box p {
  font-size: 18px;
  line-height: 25px;
  color: #333333;
  margin: 0;
  font-weight: 400;
  margin-bottom: 0;
}

.contact_detail_box {
    padding: 40px 30px;
    border: 2px solid #90c9f9;
    height: 235px;
    border-radius: 20px;
}

.contact_form {
  padding-bottom: 7%;
}

.contact_form label {
  font-size: 15px;
  color: #5d5d5d;
  margin-bottom: 7px;
  font-weight: 600;
}

.btn_wrap button {
   font-family: "Roboto", sans-serif;
   display: flex;
   align-items: center;
   gap: 10px;
   background: linear-gradient(90deg, #0984ed 0%, #4baaf9 100%);
   width: fit-content;
   padding: 5px 5px 5px 15px;
   border-radius: 100px;
   border: 2px solid #fff;
   color: #fff;
   margin: 0 auto;
}

/*CONTACT END*/
/*product page start*/
/*PRODUCT START*/
.catogeriesbox {
    display: flex;
    align-items: center;
    padding: 20px 20px;
    /* margin-bottom: 15px; */
    /* justify-content: center; */
    /* border-top-left-radius: 15px; */
    /* border-top-right-radius: 15px; */
    background: linear-gradient(90deg, #0984ed 0%, #4baaf9 100%);
    color: #fff;
}
.first-item {
    text-align: center;
    font-family: 'Montserrat';
    font-size: 18px;
    color: #666666;
}

.prod-heading h4 {
    font-size: 25px;
}
.first-item.text-end p {
    /* font-family: 'Poppins'; */
    font-size: 18px;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0;
    text-align: end;
}

.first-item.text-end {
    margin-top: -45px;
}

.first-item select {
    width: 32%;
    height: 59px;
    font-size: 24px;
    background-position-x: 140px;
    background: #fff url(../images/dot.png) no-repeat right;
    background-position: right 0px 0px 0px 0px;
    -webkit-appearance: auto;
}
.prod-heading select{
  width: 90%;
  padding: 8px 40px 15px 30px;
  background: #fff url(../images/dot.png) no-repeat right;
  font-size: 21px;
  background-position-x: 250px;
  -webkit-appearance: auto;
}
.catogeriesbox h4 {
    color: #fff;
    font-size: 22px;
    padding-bottom: inherit;
    margin-bottom: 0;
    padding: 0;
    font-family: 'Poppins';
    font-weight: 600;
}
.featured-img img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    background-color: #ebebeb;
    padding: 20px 10px;
}
.featured-img {
    background-color: #ebebeb;
    padding: 10px 10px;
    margin-top: 30px;
}
.frequently-list ul {
    margin-bottom: 70px;
}
.frequently-list ul li a {
    color: #000;
    font-size: 19px;
    font-weight: 400;
    display: block;
    padding: 15px 0 15px 18px;
    border: 1px solid #00000024;
    background: unset;
    font-family: 'Poppins', sans-serif;
}
section.product-page-sec.all-section {
    padding: 100px 0;
}
.row.paddingbottom {
    padding-bottom: 33px;
}
.pro-txt-1 {
    margin-top: 10px;
    text-align: center;
}

.pro-txt-1 h5 {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 22px;
    font-weight: 700;
    color: #000;
}
.pro-txt-1 span {
    color: #78a16f;
    font-size: 15px;
    font-weight: 500;
}

/*product page end*/
/*inner-testimonial start*/
section.testimonial {
    padding: 70px 0px;
}
.testimonial-box.box2 {
    position: relative !important;
    top: 0;
    left: 0;
}
.quote.quote2 {
    position: absolute;
    top: 24px;
    right: 54px;
}
.testi-body.body2 p {
    font-size: 18px;
    line-height: 29px;
    color: #7c7c7c;
}
.author-img.img2 {
    /* position: relative; */
    /* top: -20px; */
}
.testi-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin-bottom: 30px;
}

.testimonial-box.box2 {
    box-shadow: 0 0 4px 0 #0000005c;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 30px;
}

.title h4 {
    margin: 0;
}
.star i {
    color: #fd8f00;
}
.title h5 {
    margin-bottom: 0;
    font-family: 'Montserrat';
}
a.btn-2:hover {
    border: unset;
}
.bottom-nav-box ul li a i:hover {
    background-color: #1a8ef0;
}


.banner_text.wow h4 {
    margin-top: 150px !important;
}




section.error-404.not-found {
    text-align: center;
    padding: 90px 10px;
}

section.error-404.not-found {
    text-align: center;
}

section.error-404.not-found h2 {
    font-size: 51px;
}



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


.menuSec .col-md-3 img {
    width: 70%;
}



section.related.products {
    display: none;
}

button.single_add_to_cart_button.button.alt {
    font-family: "Roboto", sans-serif;
    display: flex
;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #0984ed 0%, #4baaf9 100%);
    width: fit-content;
    padding: 11px 22px 13px 24px;
    border-radius: 100px;
    border: 2px solid #fff;
    color: #fff;
}

span.woocommerce-Price-amount.amount {
    color: #3ca1f6;
}


h1.product_title.entry-title {
    color: black;
}

img.wp-post-image {
    width: 430px !important;
}

nav.woocommerce-breadcrumb {
    margin-top: 40px !important;
}

.pro-txt h3 {
    font-size: 28px !important;
    line-height: 19px !important;
    color: #000 !important;
    font-weight: 500 !important;
    margin-bottom: 10px !important;
}

h1.woocommerce-products-header__title.page-title {
    display: none;
}

section.productsec.product-page-sec.fruit {
    padding-top: 50px;
}


h2.widget-title {
    display: flex
;
    align-items: center;
    padding: 20px 20px;
    /* margin-bottom: 15px; */
    /* justify-content: center; */
    /* border-top-left-radius: 15px; */
    /* border-top-right-radius: 15px; */
    background: linear-gradient(90deg, #0984ed 0%, #4baaf9 100%);
    color: #fff;
    font-size: 50px;
}


ul.product-categories li a {
    color: #000;
    font-size: 19px;
    font-weight: 400;
    display: block;
    padding: 15px 0 15px 18px;
    border: 1px solid #00000024;
    background: unset;
    font-family: 'Poppins', sans-serif;
}

ul.product-categories {
    margin-top: -29px;
}


section.error-404.not-found {
    text-align: center;
    padding: 90px 10px;
}

section.error-404.not-found {
    text-align: center;
}

section.error-404.not-found h2 {
    font-size: 51px;
}




i.fas.fa-search {
    display: none;
}







.woocommerce-cart section.main_slider.inn {
    margin-bottom: 50px;
}

html{
overflow-x:hidden;    
}


@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
 .menuSec ul li a {

    padding: 10px 11px;
    font-size: 13px;
}
.slide_counter h2 {
    font-size: 18px;
}
.slide_counter p {
    font-size: 20px;
}
.banner_bottom::before {
    width: 100%;
}
img.img-fluid {
    height: 580px;
    width: 100%;
}
.banner_text.wow h4 {
    margin-top: 40px !important;
}
.banner_text p {
    font-size: 12px;
    line-height: 22px;
}
.banner_text h4 {
    font-size: 40px;
    line-height: 47px;
    margin-bottom: 20px;
}

.carousel-caption::before{
    display:none;
}
.banner_img {
    top: 23%;
    right: 5%;
    width: 38%;
}
.social-icon ul li a i {
    width: 30px;
    height: 30px;
}
.social-icon {
    width: 7%;
    padding-left: 16px;
}
.banner_bottom {
    width: 70%;
    padding: 30px;
    height: 98px;
}
section.about {
    padding: 80px 0px 100px;
}
.abt-main::before {
        top: -26px;
        height: 629px;
        left: -17px;
    }
.featured-product-txt h3 {
    font-size: 60px;
    line-height: 75px;
}
.pro-txt h3 {
    font-size: 16px !important;
    line-height: 24px !important;
}
.pro-txt p {
    font-size: 10px;
    line-height: 18px;
}
.pro-txt {
    padding: 20px 10px;
}
.pro-main-img img {
    height: 160px !important;
    width: 160px !important;
}

.pro-main-img .pro-cart-img img {
    height: 50px !important;
    width: 50px !important;
}
.cate-txt h3 {
    font-size: 60px;
    line-height: 69px;
}
.cate-slid .slick-next {
    top: -150px;

}
.cate-slid .slick-prev {
    top: -99px;
}
.cate-img img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}
.cat-txt h4 {
    font-size: 24px;
    line-height: 27px;
}
.blog-txt h2 {
    font-size: 58px;
    line-height: 80px;
}
.testi-slider .slick-next {
    right: 70px;
}
.blog-slider .slick-next {
    right: 119px
}
section.testimonials-sec {
    padding: 20px 0 50px;
}
section.featured-products .col-md-3 {
    width: 33%;
}
h2.widget-title{
     font-size: 30px;   
}
ul.product-categories li a {
    font-size: 13px;
    padding: 12px 0 10px 12px;
}
.banner_text h1 {
    font-size: 95px;
    line-height: 99px;
}
.section_head h3 {
    font-size: 45px;
    line-height: 50px;
}
.contact_detail_box {
    padding: 30px 18px;
}
.contact_page h4 {
    font-size: 19px;
}
.contact_detail_box p {
    font-size: 13px;
    line-height: 19px;
}

    
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
.menuSec ul li a {

    padding: 10px 10px;
    font-size: 11px;
}
.slide_counter h2 {
    font-size: 18px;
}
.slide_counter p {
    font-size: 20px;
}
.banner_bottom::before {
    width: 100%;
}
img.img-fluid {
    height: 580px;
    width: 100%;
}
.banner_text.wow h4 {
    margin-top: 40px !important;
}
.banner_text p {
    font-size: 12px;
    line-height: 22px;
}
.banner_text h4 {
    font-size: 40px;
    line-height: 47px;
    margin-bottom: 20px;
}

.carousel-caption::before{
    display:none;
}
.banner_img {
    top: 23%;
    right: 5%;
    width: 38%;
}
.social-icon ul li a i {
    width: 30px;
    height: 30px;
}
.social-icon {
    width: 7%;
    padding-left: 16px;
}
.banner_bottom {
    width: 70%;
    padding: 30px;
    height: 98px;
}
section.about {
    padding: 80px 0px 100px;
}
.abt-main::before {
        top: -26px;
        height: 629px;
        left: -17px;
    }
.featured-product-txt h3 {
    font-size: 60px;
    line-height: 75px;
}
.pro-txt h3 {
    font-size: 16px !important;
    line-height: 24px !important;
}
.pro-txt p {
    font-size: 10px;
    line-height: 18px;
}
.pro-txt {
    padding: 20px 10px;
}
.pro-main-img img {
    height: 160px !important;
    width: 160px !important;
}

.pro-main-img .pro-cart-img img {
    height: 50px !important;
    width: 50px !important;
}
.cate-txt h3 {
    font-size: 60px;
    line-height: 69px;
}
.cate-slid .slick-next {
    top: -150px;

}
.cate-slid .slick-prev {
    top: -99px;
}
.cate-img img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}
.cat-txt h4 {
    font-size: 24px;
    line-height: 27px;
}
.blog-txt h2 {
    font-size: 58px;
    line-height: 80px;
}
.testi-slider .slick-next {
    right: 70px;
}
.blog-slider .slick-next {
    right: 119px
}
section.testimonials-sec {
    padding: 20px 0 50px;
}
section.featured-products .col-md-3 {
    width: 33%;
}
h2.widget-title{
     font-size: 30px;   
}
ul.product-categories li a {
    font-size: 13px;
    padding: 12px 0 10px 12px;
}
.banner_text h1 {
    font-size: 95px;
    line-height: 99px;
}
.section_head h3 {
    font-size: 45px;
    line-height: 50px;
}
.contact_detail_box {
    padding: 30px 18px;
}
.contact_page h4 {
    font-size: 19px;
}
.contact_detail_box p {
    font-size: 13px;
    line-height: 19px;
}


}

@media only screen and (min-width: 520px) and (max-width: 767px) {
  img.img-fluid {
        width: 100%;
        height: 670px;
        object-fit: cover;
    }
.banner_text h1 {
    font-size: 40px;
    line-height: 40px;
}
 .banner_text.wow h4 {
       margin-top: 110px !important;
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 17px;
  }
.carousel-caption::before{
display:none;    
}
.banner_text p {
    font-size: 12px;
    line-height: 20px;
}
.banner_bottom {
    display: none;
}
.banner_img {
    position: relative;
    width: 60%;
    display: block;
    margin: 0 auto;
}

.banner_img img {
    height: 170px;
    object-fit: cover;
}
.menuSec .col-md-3 img {
    width: 40%;
    margin-top: 30px;
}
a.btn-2 {
    font-size: 12px;
    display: inline-flex;
    margin-bottom: 20px;
}

.slicknav_menu {
 display: block;
 z-index: 99999;
position: relative;
}
.abt-img img {
    height: 330px;
}
section.about {
    padding: 70px 0px 80px;
}
.abt-txt h3 {
    font-size: 44px;
    line-height: 24px;
    margin-top: 30px;
}
.abt-txt p {
    font-size: 12px;
    line-height: 23px;
    width: 100%;
}
.abt-main::before {
    left: 0;
    height: 930px;
}
.featured-product-txt h3 {
    font-size: 50px;
    line-height: 60px;
}
.pro-txt h3 {
    font-size: 20px !important;
    line-height: 20px;
}
.cate-txt h3 {
    font-size: 41px;
    line-height: 93px;
}
section.testimonials-sec {
    padding: 40px 0 40px;
}
.cate-img img {
    width: 100%;
    height: 300px;
}
.feat-book-head.text-center h2 {
    font-size: 50px;
    line-height: 60px;
}
.tattered-imgs-right {
    display: none;
}
.tattered-imgs-left{
  display: none;    
}
.testi-slider .slick-slide {
    margin: 30px 10px;
}
.testi-txt {
    padding: 0px 20px 40px;
}
.testi-txt p {
    font-size: 12px;
    line-height: 22px;
    padding-left: 10px;
}
.testi-slider .slick-prev {
    display: none;
}
section.blog {
    padding: 50px 0px 120px;
}
.blog-txt h2 {
    font-size: 45px;
    line-height: 70px;
}
.blog-slider .slick-prev:before, .blog-slider .slick-next:before{
    display:none;
}
.blog-detail {
    position: relative;
    left: 0;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}
.blog-detail p {
    font-size: 12px;
    line-height: 20px;
}
.blog-detail h5 {
    font-size: 16px;
    line-height: 24px;
}
.bottom-text p {
    font-size: 12px;
    line-height: 20px;
    margin: 20px 0px;
}
.blog-img img {
    width: 100%;
}
.testi-slider .slick-prev:before, .testi-slider .slick-next:before{
  display:none;   
}
section.main_slider.inn img {
    height: 300px;
    object-fit: cover;
}
.abt-txt-2 h3 {
    font-size: 40px;
    line-height: 50px;
}

.abt-txt-2 p {
    font-size: 12px;
    line-height: 21px;
}
section.inn-about {
    padding: 80px 0px;
}
.abt-txt-2 ul li {
    font-size: 13px;
    line-height: 24px;
}
section.inn-about .abt-img {
    margin: 35px 0px 0px;
}
h2.widget-title {
    font-size: 35px;
}
ul.product-categories li a {
    font-size: 14px;
}
.section_head h3 {
    font-size: 40px;
    line-height: 50px;
}
.contact_detail_box p {
    font-size: 12px;
    line-height: 23px;
}
.contact_page h4 {
    font-size: 23px;
}
.contact_detail_box {
    padding: 30px 20px;
    margin: 20px 0px 0px 0px;
}
.section_head h3 {
    font-size: 33px;
    line-height: 46px;
}    
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
    img.img-fluid {
        width: 100%;
        height: 670px;
        object-fit: cover;
    }
.banner_text h1 {
    font-size: 40px;
    line-height: 40px;
}
 .banner_text.wow h4 {
       margin-top: 110px !important;
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 17px;
  }
.carousel-caption::before{
display:none;    
}
.banner_text p {
    font-size: 12px;
    line-height: 20px;
}
.banner_bottom {
    display: none;
}
.banner_img {
    position: relative;
    width: 60%;
    display: block;
    margin: 0 auto;
}

.banner_img img {
    height: 170px;
    object-fit: cover;
}
.menuSec .col-md-3 img {
    width: 40%;
    margin-top: 30px;
}
a.btn-2 {
    font-size: 12px;
    display: inline-flex;
    margin-bottom: 20px;
}

.slicknav_menu {
 display: block;
 z-index: 99999;
position: relative;
}
.abt-img img {
    height: 330px;
}
section.about {
    padding: 70px 0px 80px;
}
.abt-txt h3 {
    font-size: 44px;
    line-height: 24px;
    margin-top: 30px;
}
.abt-txt p {
    font-size: 12px;
    line-height: 23px;
    width: 100%;
}
.abt-main::before {
    left: 0;
    height: 930px;
}
.featured-product-txt h3 {
    font-size: 50px;
    line-height: 60px;
}
.pro-txt h3 {
    font-size: 20px !important;
    line-height: 20px;
}
.cate-txt h3 {
    font-size: 41px;
    line-height: 93px;
}
section.testimonials-sec {
    padding: 40px 0 40px;
}
.cate-img img {
    width: 100%;
    height: 300px;
}
.feat-book-head.text-center h2 {
    font-size: 50px;
    line-height: 60px;
}
.tattered-imgs-right {
    display: none;
}
.tattered-imgs-left{
  display: none;    
}
.testi-slider .slick-slide {
    margin: 30px 10px;
}
.testi-txt {
    padding: 0px 20px 40px;
}
.testi-txt p {
    font-size: 12px;
    line-height: 22px;
    padding-left: 10px;
}
.testi-slider .slick-prev {
    display: none;
}
section.blog {
    padding: 50px 0px 120px;
}
.blog-txt h2 {
    font-size: 45px;
    line-height: 70px;
}
.blog-slider .slick-prev:before, .blog-slider .slick-next:before{
    display:none;
}
.blog-detail {
    position: relative;
    left: 0;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}
.blog-detail p {
    font-size: 12px;
    line-height: 20px;
}
.blog-detail h5 {
    font-size: 16px;
    line-height: 24px;
}
.bottom-text p {
    font-size: 12px;
    line-height: 20px;
    margin: 20px 0px;
}
.blog-img img {
    width: 100%;
}
.testi-slider .slick-prev:before, .testi-slider .slick-next:before{
  display:none;   
}
section.main_slider.inn img {
    height: 300px;
    object-fit: cover;
}
.abt-txt-2 h3 {
    font-size: 40px;
    line-height: 50px;
}

.abt-txt-2 p {
    font-size: 12px;
    line-height: 21px;
}
section.inn-about {
    padding: 80px 0px;
}
.abt-txt-2 ul li {
    font-size: 13px;
    line-height: 24px;
}
section.inn-about .abt-img {
    margin: 35px 0px 0px;
}
h2.widget-title {
    font-size: 35px;
}
ul.product-categories li a {
    font-size: 14px;
}
.section_head h3 {
    font-size: 40px;
    line-height: 50px;
}
.contact_detail_box p {
    font-size: 12px;
    line-height: 23px;
}
.contact_page h4 {
    font-size: 23px;
}
.contact_detail_box {
    padding: 30px 20px;
    margin: 20px 0px 0px 0px;
}
.section_head h3 {
    font-size: 33px;
    line-height: 46px;
}


}








footer.entry-footer {
    display: none;
}

nav.navigation.post-navigation {
    display: none;
}

div#comments {
    display: none;
}



.post-template-default .post-thumbnail {
    margin-top: 30px;
}

.post-template-default .post-thumbnail img {
    border-radius: 10px;
    margin-bottom: 20px;
}

.footer-box p {
    margin-bottom: 0px;
}

