/*------------------------------------------------------------------
[Master Stylesheet]
Theme Name:  Themart - eCommerce HTML5 Template
Version:        1.0.0
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

1. General
	1.1 Theme Reset Style
	1.2 Global Elements

2. header
	2.1 topbar
	2.2 navigation

3. content
	3.1 wpo-hero-slider
	3.2 themart-featured-section
	3.3 themart-offer-section
	3.4 themart-upcoming-offer-section
	3.5 themart-special-product-section
	3.6 themart-interestproduct-section
	3.7 themart-trendingproduct-section
	3.8 themart-highlight-product-section
	3.9 themart-cta-section

4. wpo-footer

5. Home-style-2
   5.1 themart-category-section
   5.2 themart-banner-section
   5.3 wpo-about-section
   5.4 wpo-service-section
   5.5 themart-partners-section
   5.6 themart-product-category-section
   5.7 themart-gallery-section
   5.8 wpo-blog-section

6. Shop-Page

7. Product-Single

8. wpo-wishlist-page

9. wpo-cart-page

10. wpo-checkout-page-style

11. themart-compare-section

12. wpo-order-page-style

13. themart-vendor-section

14. wpo-blog-pg-section

15. wpo-blog-single-section

16. wpo-faq-page

17. login-design

18. wpo-contact-pg-section

19. error-404-section

----------------------------------------------------------------*/
/*------------------------------------------------------------------
1. General
----------------------------------------------------------------*/
/*---------------------------
	Fonts
----------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700&display=swap");
@font-face {
  font-family: 'Muli';
  src: url(../fonts/Muli.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }

    /* Ensure the layout is properly aligned for RTL */
    html[dir="rtl"] .container,
    html[dir="rtl"] .container-lg,
    html[dir="rtl"] .container-md,
    html[dir="rtl"] .container-sm,
    html[dir="rtl"] .container-xl,
    html[dir="rtl"] .container-xxl {
        text-align: right;
    }
}




/* 1.1 Theme Reset Style */
html {
  font-size: 15px;
}

:root {
  scroll-behavior: unset;
}

body {
  font-family: "Muli";
  color: #687693;
  background-color: #fff;
  font-size: 15px;
  font-size: 1rem;
  overflow-x: hidden;
   direction: rtl;
    unicode-bidi: embed;
    text-align: right;
  
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

p {
  font-size: 16px;
  color: #687693;
  line-height: 1.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #233D50;
  font-family: "Almarai";
  font-weight: 600;
}

ul {
  padding-left: 0;
  margin: 0;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.h-hidden {
  display: none;
}

.sr-only {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}

/* 1.2 Global Elements */
.page-wrapper {
  position: relative;
  overflow: hidden;
}

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

.section-padding {
  padding: 70px 0;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 80px 0;
  }
}

.pt-120 {
  padding-top: 120px;
}

@media (max-width: 991px) {
  .pt-120 {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .pt-120 {
    padding-top: 80px;
  }
}

@media (max-width: 575px) {
  .pt-120 {
    padding-top: 60px;
  }
}

/*** contact form error handling ***/
.contact-validation-active .error-handling-messages {
  width: 100% !important;
  margin-top: 15px !important;
}

.contact-validation-active label.error {
  color: red;
  font-size: 0.93333rem;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
}

.contact-validation-active #c-loader,
.contact-validation-active #loader {
  display: none;
  margin-top: 10px;
}

.contact-validation-active #c-loader i,
.contact-validation-active #loader i {
  font-size: 30px;
  font-size: 2rem;
  color: #70c6c7;
  display: inline-block;
  -webkit-animation: rotating linear 2s infinite;
  animation: rotating linear 2s infinite;
}

.contact-validation-active #success,
.contact-validation-active #c-success,
.contact-validation-active #c-error,
.contact-validation-active #error {
  width: 100%;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none;
}

@media (max-width: 767px) {
  .contact-validation-active #success,
  .contact-validation-active #c-success,
  .contact-validation-active #c-error,
  .contact-validation-active #error {
    font-size: 15px;
  }
}

.contact-validation-active #c-success,
.contact-validation-active #success {
  background-color: #009a00;
  border-left: 5px solid green;
  margin-bottom: 5px;
}

.contact-validation-active #c-error,
.contact-validation-active #error {
  background-color: #ff1a1a;
  border-left: 5px solid red;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotating {
  -webkit-animation: rotating 5s alternate infinite;
  animation: rotating 5s alternate infinite;
}

/*** back to top **/
.back-to-top {
  background-color: #1c1f36;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 2px solid #70c6c7;
  border-radius: 45px;
  text-align: center;
  display: none;
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 15px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media (max-width: 991px) {
  .back-to-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

.back-to-top:hover {
  background-color: #70c6c7;
}

.back-to-top i {
  font-size: 18px;
  font-size: 1.2rem;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/** for popup image ***/
.mfp-wrap {
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/*** for fancybox video ***/
.fancybox-overlay {
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999 !important;
}

.fancybox-wrap {
  z-index: 99999 !important;
}

/*** wpo-newsletter-popup-area ***/
.wpo-newsletter-popup-area-section {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  -webkit-transition: opacity 0.1s ease-in-out, z-index 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, z-index 0.1s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 991px) {
  .wpo-newsletter-popup-area-section {
    display: none;
  }
}

.wpo-newsletter-popup-area-section .wpo-newsletter-popup-area {
  width: 700px;
  background-color: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 100;
}

.wpo-newsletter-popup-area-section .wpo-newsletter-popup-area .wpo-newsletter-popup-ineer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.wpo-newsletter-popup-area-section .wpo-newsletter-popup-area .img-holder {
  width: 325px;
  float: left;
}

.wpo-newsletter-popup-area-section .wpo-newsletter-popup-area .details {
  width: calc(100% - 325px);
  float: left;
  padding: 35px;
}

.wpo-newsletter-popup-area-section .wpo-newsletter-popup-area h4 {
  font-size: 24px;
  font-size: 1.6rem;
  margin: 0 0 0.5em;
}

.wpo-newsletter-popup-area-section .wpo-newsletter-popup-area p {
  font-size: 14px;
  font-size: 0.93333rem;
  margin: 0 0 2em;
}

.wpo-newsletter-popup-area-section .wpo-newsletter-popup-area form div {
  position: relative;
}

.wpo-newsletter-popup-area-section .wpo-newsletter-popup-area form div input[type="email"] {
  font-size: 14px;
  font-size: 0.93333rem;
  height: 46px;
  border-radius: 0;
  border: 1px solid #ebebeb;
  padding: 15px;
}

.wpo-newsletter-popup-area-section .wpo-newsletter-popup-area form div input[type="email"]:focus {
  outline: none;
  border-color: #ebebeb;
}

.wpo-newsletter-popup-area-section .wpo-newsletter-popup-area form div button {
  height: 46px;
  line-height: 46px;
  border: 0;
  outline: 0;
  padding: 0 25px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  letter-spacing: 0;
}

.wpo-newsletter-popup-area-section .wpo-newsletter-popup-area form div button:hover {
  background: #ffa500;
  color: #fff;
}

.wpo-newsletter-popup-area-section .wpo-newsletter-popup-area form div input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.wpo-newsletter-popup-area-section .wpo-newsletter-popup-area form div .checkbox-holder {
  margin-top: 25px;
  padding-left: 20px;
  position: relative;
  cursor: pointer;
}

.wpo-newsletter-popup-area-section .wpo-newsletter-popup-area form div .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: #c7c7c7;
  border-radius: 50%;
}

.wpo-newsletter-popup-area-section .wpo-newsletter-popup-area form div .checkbox-holder input:checked ~ .checkmark {
  background-color: #70c6c7;
}

.wpo-newsletter-popup-area-section .wpo-newsletter-popup-area form div label {
  font-size: 12px;
  font-size: 0.8rem;
}

.wpo-newsletter-popup-area-section .wpo-newsletter-popup-area .newsletter-close-btn {
  background: transparent;
  border: 0;
  outline: 0;
  color: #000;
  font-size: 15px;
  font-size: 1rem;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  line-height: 31px;
  border: 1px solid #333;
  border-radius: 50%;
  text-align: center;
  padding: 0;
}

@media (max-width: 450px) {
  .wpo-newsletter-popup-area-section .wpo-newsletter-popup-area .newsletter-close-btn {
    right: 0;
  }
}

.wpo-newsletter-popup-area-section .wpo-newsletter-popup-area .newsletter-close-btn:hover,
.wpo-newsletter-popup-area-section .wpo-newsletter-popup-area .newsletter-close-btn:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.active-wpo-newsletter-popup {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 1s ease-in-out, z-index 1s ease-in-out;
  transition: opacity 1s ease-in-out, z-index 1s ease-in-out;
}

.active-wpo-newsletter-popup {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.2s ease-in-out, z-index 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, z-index 0.2s ease-in-out;
}

.wpo-section-title {
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .wpo-section-title {
    margin-bottom: 40px;
  }
}

.wpo-section-title span {
  text-transform: uppercase;
  font-size: 20px;
  color: #70c6c7;
  font-family: "Almarai" !important;
}

.wpo-section-title h2 {
  color: #333a7b;
  font-weight: 400;
  font-size: 40px;
  line-height: 51px;
  margin: 0;
  margin-top: 15px;
  position: relative;
  text-transform: capitalize;
  font-family: "Almarai";
  margin-top: 0;
}

@media (max-width: 767px) {
  .wpo-section-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 330px) {
  .wpo-section-title h2 {
    font-size: 30px;
  }
}

.wpo-section-title p {
  font-size: 18px;
}

.wpo-section-title p .text-brand {
  color: #ffa500;
}

.theme-btn, .view-cart-btn {
    font-family: "Almarai";
  background: transparent;
  color: #ffffff;
  display: inline-block;
  padding: 18px 50px;
  border: 0;
  border-radius: 5px;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  border: 1px solid #ffffff;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.theme-btn:hover, .view-cart-btn:hover, .theme-btn:focus, .view-cart-btn:focus, .theme-btn:active, .view-cart-btn:active {
  background: #343c7a;
  border: 1px solid transparent;
  color: #fff;
}

@media (max-width: 991px) {
  .theme-btn, .view-cart-btn {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .theme-btn, .view-cart-btn {
    padding: 12px 18px;
    font-size: 14px;
  }
}

.theme-btn-s2 {
  display: inline-block;
  padding: 15px 70px;
  border-radius: 6px;
  text-transform: capitalize;
  z-index: 1;
  position: relative;
  font-family: "Almarai";
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  color: #fff;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  background: #F8E9D8;
}

.theme-btn-s2::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
 background: #333a7b;
  color: #FFFFFF;
  z-index: -1;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border-radius: 6px;
}

@media (max-width: 991px) {
  .theme-btn-s2 {
    font-size: 14px;
  }
}

.theme-btn-s2:hover, .theme-btn-s2:focus, .theme-btn-s2:active {
    color:#FFFFFF;

}

.theme-btn-s2:hover:before {
  opacity: 0.9;
}

@media (max-width: 767px) {
  .theme-btn-s2 {
    padding: 12px 18px;
    font-size: 13px;
  }
}

.view-cart-btn {
  display: block;
  margin-top: 15px;
  border-radius: 5px;
  padding: 10px 45px;
}

.view-cart-btn:after {
  display: none;
}

.view-cart-btn:hover {
  background-color: #6c972c;
}

.view-cart-btn.s1 {
  background: #ddd;
}

.view-cart-btn.s1:hover {
  background-color: #c9c9c9;
}

.form input,
.form textarea,
.form select {
  border-color: #bfbfbf;
  border-radius: 0;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #595959;
  font-style: normal;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: #70c6c7;
  -webkit-box-shadow: 0 0 5px 0 #9ccd52;
  -o-box-shadow: 0 0 5px 0 #9ccd52;
  -ms-box-shadow: 0 0 5px 0 #9ccd52;
  box-shadow: 0 0 5px 0 #9ccd52;
}

.form ::-webkit-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form :-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form ::-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form :-ms-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form select {
  font-style: normal;
  background: url(../images/select-icon.png) no-repeat right center;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form select::-ms-expand {
  /* for IE 11 */
  display: none;
}

.form ::-webkit-input-placeholder {
  /* Edge */
  font-style: normal;
}

.form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-style: normal;
}

.form ::-ms-input-placeholder {
  font-style: normal;
}

.form ::placeholder {
  font-style: normal;
}

.social-links {
  overflow: hidden;
}

.social-links li {
  float: left;
  width: 35px;
  height: 35px;
  margin-right: 1px;
}

.social-links li a {
  background-color: #9ccd52;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: #fff;
  text-align: center;
}

.social-links li a:hover {
  background-color: #70c6c7;
}

.wpo-page-title {
  min-height: 80px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #F0F0F0;
}

.wpo-page-title .wpo-breadcumb-wrap {
  text-align: left;
}

.wpo-page-title .wpo-breadcumb-wrap ol {
  padding-left: 0;
  margin-bottom: 0;
}

.wpo-page-title .wpo-breadcumb-wrap ol li {
  display: inline-block;
  padding: 0px 5px;
  padding-right: 20px;
  color: #233D50;
  position: relative;
  font-family: "Muli";
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
}

.wpo-page-title .wpo-breadcumb-wrap ol li:last-child {
  padding-right: 0;
}

.wpo-page-title .wpo-breadcumb-wrap ol li:after {
  content: "\f109";
  font-family: flaticon_ecommerce !important;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 9px;
}

.wpo-page-title .wpo-breadcumb-wrap ol li:last-child span {
  color: #233D50;
}

.wpo-page-title .wpo-breadcumb-wrap ol li:last-child:after {
  display: none;
}

.wpo-page-title .wpo-breadcumb-wrap ol li a {
  color: #233D50;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.wpo-page-title .wpo-breadcumb-wrap ol li a:hover {
  color: #70c6c7;
}

.preloader {
  background-color: #343c7a;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000000000000;
  overflow: hidden;
}

.preloader .vertical-centered-box {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
}

.preloader .vertical-centered-box:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.preloader .vertical-centered-box .content {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 0;
}

.preloader * {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.preloader .loader-circle {

}

.preloader .loader-line-mask {

}

.preloader .loader-line-mask .loader-line {
 
}

.preloader #particles-background,
.preloader #particles-foreground {
  left: -51%;
  top: -51%;
  width: 202%;
  height: 202%;
  -webkit-transform: scale3d(0.5, 0.5, 1);
  transform: scale3d(0.5, 0.5, 1);
}

.preloader #particles-background {
  background: #2c2d44;
  background-image: linear-gradient(45deg, #3f3251 2%, #002025 100%);
}

.preloader lesshat-selector {
  -lh-property: 0;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.preloader [not-existing] {
  zoom: 1;
}

.preloader lesshat-selector {
  -lh-property: 0;
}

@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.preloader [not-existing] {
  zoom: 1;
}

.preloader lesshat-selector {
  -lh-property: 0;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.preloader [not-existing] {
  zoom: 1;
}

/*------------------------------------
	blog sidebar
------------------------------------*/
.blog-sidebar {
  /*** search-widget ***/
  /*** about-widget ***/
  /*** category-widget ***/
  /*** recent-post-widget ***/
  /*** instagram-widget ***/
  /*** tag-widget ***/
  /*** wpo-contact-widget ***/
}

@media screen and (min-width: 992px) {
  .blog-sidebar {
    padding-left: 45px;
  }
}

@media (max-width: 991px) {
  .blog-sidebar {
    margin-top: 80px;
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .blog-sidebar {
    margin-top: 60px;
    max-width: 400px;
  }
}

.blog-sidebar .widget h3 {
  font-size: 23px;
  font-size: 1.53333rem;
  color: #233D50;
  margin: 0 0 1.3em;
  position: relative;
  text-transform: capitalize;
  font-family: "Almarai";
  padding-bottom: 20px;
  font-weight: 600;
}

.blog-sidebar .widget h3:before {
  content: "";
  background-color: #70c6c7;
  width: 55px;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 10px;
}

.blog-sidebar .widget h3:after {
  content: "";
  background-color: #f2f2f2;
  width: 80%;
  height: 4px;
  position: absolute;
  left: 65px;
  bottom: 0;
  border-radius: 10px;
}

.blog-sidebar > .widget + .widget {
  margin-top: 65px;
}

.blog-sidebar .search-widget form div {
  position: relative;
}

.blog-sidebar .search-widget input {
  background-color: rgba(131, 183, 53, 0.15);
  height: 70px;
  font-size: 16px;
  font-size: 1.06667rem;
  padding: 6px 50px 6px 20px;
  border: 0;
  border-radius: 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-sidebar .search-widget input:focus {
  background-color: rgba(131, 183, 53, 0.1);
}

.blog-sidebar .search-widget form button {
  background: transparent;
  font-size: 20px;
  font-size: 1.33333rem;
  color: #fff;
  background-color: #70c6c7;
  border: 0;
  outline: 0;
  position: absolute;
  right: 10px;
  top: 52%;
  height: 50px;
  line-height: 50px;
  width: 50px;
  border-radius: 6px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blog-sidebar .about-widget {
  text-align: center;
  background-color: #f5f5f5;
  padding: 45px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .blog-sidebar .about-widget {
    padding: 35px;
  }
}

.blog-sidebar .about-widget .aw-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.blog-sidebar .about-widget .img-holder {
  margin-bottom: 25px;
}

.blog-sidebar .about-widget .img-holder img {
  border-radius: 50%;
  width: 100%;
  max-width: 200px;
}

.blog-sidebar .about-widget ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blog-sidebar .about-widget ul li {
  margin-right: 10px;
}

.blog-sidebar .about-widget ul li:last-child {
  margin-right: 0;
}

.blog-sidebar .about-widget ul li a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 44px;
  background-color: #f1f1f1;
  border-radius: 50%;
}

.blog-sidebar .about-widget h4 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-sidebar .about-widget p {
  font-size: 15px;
  font-size: 1rem;
  margin-bottom: 1.2em;
}

.blog-sidebar .about-widget a {
  font-family: "Almarai";
  font-size: 14px;
  font-size: 0.93333rem;
  color: #233D50;
  text-decoration: underline;
}

.blog-sidebar .about-widget a:hover {
  color: #70c6c7;
}

.blog-sidebar .category-widget ul {
  list-style: none;
}

.blog-sidebar .category-widget ul li {
  font-size: 19px;
  font-size: 1.26667rem;
  position: relative;
}

@media (max-width: 767px) {
  .blog-sidebar .category-widget ul li {
    font-size: 16px;
    font-size: 1.06667rem;
  }
}

.blog-sidebar .category-widget ul li span {
  position: absolute;
  right: 0;
}

.blog-sidebar .category-widget ul > li + li {
  margin-top: 12px;
  padding-top: 12px;
}

.blog-sidebar .category-widget ul a {
  display: block;
  color: #474f62;
  font-size: 16px;
}

.blog-sidebar .category-widget ul a span {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #f5f5f5;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
}

@media (max-width: 767px) {
  .blog-sidebar .category-widget ul a span {
    font-size: 14px;
    font-size: 0.93333rem;
  }
}

.blog-sidebar .category-widget ul a:hover,
.blog-sidebar .category-widget ul li:hover:before {
  color: #70c6c7;
}

.blog-sidebar .recent-post-widget .post {
  overflow: hidden;
}

.blog-sidebar .recent-post-widget .posts > .post + .post {
  margin-top: 15px;
  padding-top: 15px;
}

.blog-sidebar .recent-post-widget .post .img-holder {
  width: 90px;
  float: left;
}

.blog-sidebar .recent-post-widget .post .img-holder img {
  border-radius: 6px;
}

.blog-sidebar .recent-post-widget .post .details {
  width: calc(100% - 90px);
  float: left;
  padding-left: 20px;
}

.blog-sidebar .recent-post-widget .post h4 {
  font-size: 18px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3em;
  margin: 0 0 0.3em;
  font-family: "Muli";
}

@media (max-width: 1199px) {
  .blog-sidebar .recent-post-widget .post h4 {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .blog-sidebar .recent-post-widget .post h4 {
    font-size: 16px;
    font-size: 1.06667rem;
  }
}

.blog-sidebar .recent-post-widget .post h4 a {
  display: inline-block;
  color: #233D50;
}

.blog-sidebar .recent-post-widget .post h4 a:hover {
  color: #70c6c7;
}

.blog-sidebar .recent-post-widget .post .details .date {
  font-size: 13px;
  font-size: 0.86667rem;
  color: #525252;
}

.blog-sidebar .recent-post-widget .post .details .date i {
  display: inline-block;
  padding-right: 7px;
}

.blog-sidebar .wpo-instagram-widget ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}

.blog-sidebar .wpo-instagram-widget ul li {
  -ms-flex: 0 0 33.33%;
  -webkit-box-flex: 0;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 5px;
  padding: 0px 3px;
}

.blog-sidebar .wpo-instagram-widget ul li img {
  width: 100%;
  border-radius: 6px;
}

.blog-sidebar .tag-widget ul {
  overflow: hidden;
  list-style: none;
}

.blog-sidebar .tag-widget ul li {
  float: left;
  margin: 0 8px 8px 0;
}

.blog-sidebar .tag-widget ul li a {
  font-size: 15px;
  font-size: 1rem;
  display: inline-block;
  padding: 5px 18px;
  color: #233D50;
  background: #f5f5f5;
  border-radius: 5px;
}

.blog-sidebar .tag-widget ul li a:hover {
  background: #70c6c7;
  color: #fff;
}

.blog-sidebar .wpo-contact-widget {
  border: 0;
  background: url(../images/bg-2.jpg) no-repeat center center;
  position: relative;
  background-size: cover;
  z-index: 1;
  padding: 30px 40px;
}

.blog-sidebar .wpo-contact-widget:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 57, 103, 0.9);
  content: "";
  z-index: -1;
}

@media (max-width: 1200px) {
  .blog-sidebar .wpo-contact-widget {
    padding: 20px;
  }
}

.blog-sidebar .wpo-contact-widget h2 {
  font-size: 36px;
  font-weight: 600;
  text-align: left;
  color: #fff;
  margin-bottom: 20px;
}

.blog-sidebar .wpo-contact-widget h2::before {
  left: 28px;
  background: url(../images/Single-title-shape2.png) no-repeat right center;
}

.blog-sidebar .wpo-contact-widget p {
  color: #fff;
  font-size: 18px;
}

.blog-sidebar .wpo-contact-widget a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #fff;
  font-size: 18px;
  color: #fff;
  padding-right: 90px;
  position: relative;
  margin-top: 10px;
}

.blog-sidebar .wpo-contact-widget a::before {
  font-family: "themify";
  content: "\e629";
  font-size: 18px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 992px) {
  .wpo-blog-pg-section.blog-pg-left-sidebar .blog-sidebar {
    padding-left: 0px;
    padding-right: 45px;
  }
}

@media screen and (min-width: 992px) {
  .wpo-blog-single-section.wpo-blog-single-left-sidebar-section .blog-sidebar {
    padding-left: 0px;
    padding-right: 45px;
  }
}

/**** pagination ****/
.pagination-wrapper {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .pagination-wrapper {
    text-align: left;
    margin-top: 40px;
  }
}

.pagination-wrapper .pg-pagination {
  display: inline-block;
  overflow: hidden;
  list-style-type: none;
  text-align: center;
}

.pagination-wrapper .pg-pagination li {
  float: left;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .pagination-wrapper .pg-pagination li {
    margin-right: 5px;
  }
}

.pagination-wrapper .pg-pagination li:last-child {
  margin-right: 0;
}

.pagination-wrapper .pg-pagination li a {
  background-color: transparent;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-size: 1.06667rem;
  font-weight: 600;
  color: #233D50;
  background: #f5f5f5;
  display: block;
}

@media (max-width: 991px) {
  .pagination-wrapper .pg-pagination li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    font-size: 1rem;
  }
}

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
  background: #70c6c7;
  border-color: #70c6c7;
  color: #fff;
}

.pagination-wrapper .pg-pagination .fi:before {
  font-size: 15px;
  font-size: 1rem;
}

.pagination-wrapper.s2 {
  margin-top: 20px;
  text-align: left;
}

@media (max-width: 991px) {
  .pagination-wrapper.s2 {
    margin-bottom: 30px;
    text-align: center;
  }
}

.pagination-wrapper-left {
  text-align: left;
}

.pagination-wrapper-right {
  text-align: right;
}

@media screen and (min-width: 1200px) {
  .pagination-wrapper-right {
    padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .pagination-wrapper-right {
    margin-top: 45px;
    text-align: left;
  }
}

.quickview-dialog {
  max-width: 1120px;
  margin: 200px auto;
}

.modal-content button {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #70c6c7;
  text-align: center;
  font-size: 24px;
  border: none;
  color: #30180d;
  z-index: 9;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.modal-content button:hover {
  background-color: #DDDDDD;
  color: #fff;
}

.quickview-dialog .modal-product img {
  width: 100%;
}

@media (max-width: 991px) {
  .item {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .product-details .product-single-content {
    padding: 15px 15px;
    padding-bottom: 0;
  }
}

.product-details .product-single-content h5 {
  font-weight: 400;
  font-size: 34px;
  line-height: 36px;
  margin-bottom: 20px;
  font-family: "Almarai";
}

@media (max-width: 445px) {
  .product-details .product-single-content h5 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 0;
  }
}

.product-details .product-single-content h6 {
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 20px;
}

@media (max-width: 445px) {
  .product-details .product-single-content h6 {
    font-size: 20px;
    line-height: 25px;
  }
}

.product-details .product-single-content .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.product-details .product-single-content .rating li {
  margin-right: 5px;
  color: #ff9600;
  list-style: none;
}

.product-details .product-single-content p {
  color: #6F6F6F;
  line-height: 1.8em;
}

.product-details .product-single-content .pro-single-btn {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 575px) {
  .product-details .product-single-content .pro-single-btn {
    display: block;
  }
}

.product-details .product-single-content .pro-single-btn .quantity {
  margin-right: 10px;
  top: 0;
  position: relative;
  display: inline-block;
}

@media (max-width: 575px) {
  .product-details .product-single-content .pro-single-btn .quantity {
    margin-right: 20px;
  }
}

.product-details .product-single-content .pro-single-btn .quantity input {
  width: 159px;
  background: transparent;
  padding: 15px 35px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  border: none;
  position: relative;
  border: 1.5px solid #525252;
}

@media (max-width: 575px) {
  .product-details .product-single-content .pro-single-btn .quantity input {
    margin-bottom: 10px;
  }
}

.product-details .product-single-content .pro-single-btn .quantity .qtybutton {
  position: absolute;
  top: 4px;
  left: 0;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 45px;
  font-size: 18px;
  cursor: pointer;
  font-size: 25px;
}

.product-details .product-single-content .pro-single-btn .quantity .qtybutton.inc {
  right: 0px;
  left: auto;
}

.product-details .product-single-content .pro-single-btn .theme-btn, .product-details .product-single-content .pro-single-btn .view-cart-btn {
  padding: 13px 40px;
  border-radius: 0;
  border-color: #C9C9C9;
}

.product-details .product-single-content .pro-single-btn .theme-btn::after, .product-details .product-single-content .pro-single-btn .view-cart-btn::after {
  position: unset;
}

@media (max-width: 991px) {
  .product-details .product-single-content .pro-single-btn .theme-btn, .product-details .product-single-content .pro-single-btn .view-cart-btn {
    padding: 15px 40px;
    top: 0;
  }
}

@media (max-width: 767px) {
  .product-details .product-single-content .pro-single-btn .theme-btn, .product-details .product-single-content .pro-single-btn .view-cart-btn {
    padding: 18px 40px;
  }
}

.product-details .product-single-content .social-share {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-details .product-single-content .social-share span {
  font-weight: 400;
  font-family: "Almarai";
  font-size: 15px;
  color: #525252;
}

.product-details .product-single-content .social-share .socialLinks {
  margin-left: 10px;
}

.product-details .product-single-content .social-share .socialLinks li {
  display: inline-block;
}

.product-details .product-single-content .social-share .socialLinks li a {
  display: block;
  margin-right: 6px;
}

.product-details .product-single-content .social-share .socialLinks li a i {
  height: 28px;
  width: 28px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  border-radius: 50%;
  background: #0E76A8;
}

.product-details .product-single-content .social-share .socialLinks li:nth-child(2) a i {
  background: #55ACEE;
}

.product-details .product-single-content .social-share .socialLinks li:nth-child(3) a i {
  background: #3B5998;
}

.product-details .product-single-content .social-share .socialLinks li:nth-child(4) a i {
  background: #8941A7;
}

.product-details .product-single-content .social-share .socialLinks li:nth-child(5) a i {
  background: #D72B27;
}

/*mobal-subscribe*/
.subscribe-dialog {
  max-width: 900px;
  margin: 200px auto;
}

@media (max-width: 767px) {
  .subscribe-dialog {
    max-width: 500px;
  }
}

.subscribe-dialog .modal-body {
  padding: 0;
}

.subscribe-dialog .subscribe-box {
  padding: 50px;
}

@media (max-width: 767px) {
  .subscribe-dialog .subscribe-box {
    padding: 30px;
  }
}

.subscribe-dialog .subscribe-box h2 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 767px) {
  .subscribe-dialog .subscribe-box h2 {
    font-size: 20px;
  }
}

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

@media (max-width: 767px) {
  .subscribe-dialog .subscribe-box p {
    font-size: 14px;
    line-height: 20px;
  }
}

.subscribe-dialog .subscribe-box form {
  position: relative;
  margin-bottom: 25px;
}

.subscribe-dialog .subscribe-box input[type="email"] {
  height: 50px;
  width: 100%;
  border: 1px solid #ddd;
  padding: 0px 120px 0px 20px;
}

.subscribe-dialog .subscribe-box input[type="submit"] {
  width: 120px;
  height: 50px;
  border: none;
  text-transform: uppercase;
  position: absolute;
  right: 0;
  cursor: pointer;
  top: 24px;
  background: #000;
  color: #fff;
}

@media (max-width: 767px) {
  .subscribe-dialog .subscribe-box input[type="submit"] {
    top: 21px;
  }
}

.subscribe-dialog .subscribe-box input[type="submit"]:hover {
  background: #000;
  color: #fff;
}

.modal-content button {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  line-height: 43px;
  background: #ececec;
  text-align: center;
  font-size: 24px;
  border: none;
  color: #233D50;
  z-index: 9;
  border-radius: 0;
}

.modal-content button:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.modal-content button:hover {
  background-color: #70c6c7;
  color: #fff;
}

.modal-content button .fi:before {
  font-size: 15px;
}

/*mobal-subscribe*/
.quickview-dialog {
  max-width: 1120px;
  margin: 200px auto;
}

@media (max-width: 991px) {
  .quickview-dialog {
    max-width: 500px;
  }
}

.quickview-dialog .modal-product img {
  width: 100%;
}

.quickview-dialog .product-details {
  position: relative;
  z-index: 1;
}

.quickview-dialog .product-details .m-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1;
  max-width: 220px;
  opacity: .03;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.modal {
  z-index: 9999;
}

/*--------------------------------------------------------------
2. header
--------------------------------------------------------------*/
/*-- 2.1 topbar --*/
.topbar {
  background: #F9F9F9;
}

@media (max-width: 991px) {
  .topbar {
    text-align: center;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .header-style-1 {
    text-align: center;
    padding: 20px 0;
  }
}

.topbar {
  font-size: 16px;
  color: #e5e3e3;
  margin: 0;
  border-bottom: 1px solid #DDDDDD;
}

.topbar .row {
  height: 41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991px) {
  .topbar .row {
    height: 100%;
  }
}

.topbar .contact-info {
  text-align: right;
}

@media (max-width: 991px) {
  .topbar .contact-info {
    text-align: center;
  }
}

.topbar .contact-info ul {
  list-style: none;
}

.topbar .contact-info ul li {
  font-family: "Almarai";
  font-weight: 400;
  font-size: 16px;
  color: #525252;
  padding-left: 20px;
  display: inline-block;
}

.topbar .contact-info ul li:nth-child(1) {
  padding-left: 0;
}

@media (max-width: 420px) {
  .topbar .contact-info ul li:nth-child(1) {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 420px) {
  .topbar .contact-info ul li:nth-child(2) {
    width: 40%;
    padding-left: 0;
  }
}

@media (max-width: 420px) {
  .topbar .contact-info ul li:nth-child(3) {
    width: 40%;
    padding-left: 0;
  }
}

@media (max-width: 420px) {
  .topbar .contact-info ul li .dropdown {
    border: 1px solid #DDDDDD;
    border-bottom: 0;
    margin-top: 5px;
  }
}

.topbar .contact-info ul li a {
  font-family: "Almarai";
  font-weight: 400;
  font-size: 16px;
  color: #525252;
}

.topbar .contact-info ul li .dropdown-menu li {
  padding-left: 0;
  display: block;
}

.topbar .contact-info ul li .dropdown-toggle {
  border: 0;
  font-family: "Almarai";
  font-weight: 400;
  font-size: 16px;
  color: #525252;
  background: transparent;
  padding: 8px 0;
}

.topbar .contact-info ul li .dropdown-toggle::before {
  position: absolute;
  content: '';
  left: -10px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #DDDDDD;
}

@media (max-width: 420px) {
  .topbar .contact-info ul li .dropdown-toggle::before {
    position: unset;
    display: none;
  }
}

.topbar .contact-info ul li .dropdown-toggle:after {
  content: "\e64b";
  font-family: 'themify';
  border: 0;
  vertical-align: 0;
  margin-left: 5px;
  font-size: 10px;
}

.topbar .contact-info ul li .dropdown-item:hover {
  color: #525252;
  background-color: transparent;
}

@media (max-width: 991px) {
  .topbar .contact-intro {
    padding: 8px 0;
  }
}

.topbar .contact-intro span {
  color: #525252;
  font-family: "Almarai";
  font-weight: 400;
  font-size: 16px;
  margin: auto;
}

@media (max-width: 991px) {
  .topbar .contact-intro span {
    padding: 8px 0;
    margin-top: 10px;
  }
}

/* start header-middle css */
.header-middle {
  overflow: visible;
  padding-top: 20px;
  padding-bottom: 30px;
}

@media (max-width: 991px) {
  .header-middle {
    padding-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .header-middle .navbar-header {
    display: none;
  }
}

.header-middle .middle-box {
  background: #0d6efd0f;
  border: 1px solid #0d6efd0f;
  border-radius: 5px;
}

.header-middle .middle-box .category {
  display: inline-block;
  width: 177px;
  border-right: 1px solid #0d6efd0f;
  opacity: 1;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}

@media (max-width: 575px) {
  .header-middle .middle-box .category {
    width: 50%;
  }
}

.header-middle .middle-box .category:focus {
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
}

.header-middle .middle-box .category .form-control {
   padding-right: 18%;
  font-family: "Almarai";
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #525252;
  border: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  height: 50px;
  width: 300px;
}

@media (max-width: 575px) {
  .header-middle .middle-box .category .form-control {
    width: 150px;
    font-size: 15px;
    height: 38px;
    line-height: 25px;
  }
}

.header-middle .middle-box .category .form-control:focus {
  -webkit-box-shadow: 0;
          box-shadow: 0;
}

.header-middle .middle-box .category .form-control option {
    background : #70c6c72b;
  font-family: "Almarai";
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #525252;
}

@media (max-width: 575px) {
  .header-middle .middle-box .category .form-control option {
    font-size: 15px;
  }
}

.header-middle .middle-box .search-box {
  width: calc(102.9% - 200px);
  display: inline-block;
}

@media (max-width: 991px) {
  .header-middle .middle-box .search-box {
    width: calc(100% - 183px);
  }
}

@media (max-width: 575px) {
  .header-middle .middle-box .search-box {
    width: 48%;
  }
}

.header-middle .middle-box .search-box .form-control {
    direction: ltr !important;
  border: 0;
  border-radius: 0;
  font-family: "Almarai";
  font-weight: 400;
  font-size: 16px;
  color: #525252;
  padding: 10px 15px;
 
}

@media (max-width: 575px) {
  .header-middle .middle-box .search-box .form-control {
    font-size: 15px;
  }
}

.header-middle .middle-box .search-box .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header-middle .middle-box .form-control {
  background: transparent;
}

.header-middle .middle-box .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header-middle .middle-box .search-btn {
  border: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#343c7a), to(#1f265b));
  background: linear-gradient(180deg, #343c7a 0%, #1f265b 100%);
  border-radius: 5px 0px 0px 5px; /* Left side rounded */
  width: 50px;
  height: 51px;
  margin-left: -2px; /* Adjust if needed */
}



@media (max-width: 1199px) {
  .header-middle .middle-box .search-btn {
    margin-right: -6px;
  }
}

@media (max-width: 575px) {
  .header-middle .middle-box .search-btn {
    width: 30px;
    height: 40px;
  }
}

.header-middle .middle-box .search-btn .fi {
  color: #fff;
  font-size: 25px;
  line-height: 55px;
}

@media (max-width: 575px) {
  .header-middle .middle-box .search-btn .fi {
    font-size: 16px;
    line-height: 30px;
  }
}

.header-middle .middle-right {
  text-align: right;
}

.header-middle .middle-right ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

@media (max-width: 991px) {
  .header-middle .middle-right ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
  }
}

.header-middle .middle-right ul li {
    padding-right: 20px;
    width: -webkit-fill-available;
  position: relative;
}

.header-middle .middle-right ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #525252;
  padding-left: 10px;
  padding-right: 10px;
  
}

@media (max-width: 1199px) {
  .header-middle .middle-right ul li a {
    padding-left: 5px;
  }
}

.header-middle .middle-right ul li a .fi {
  font-size: 30px;
  line-height: 30px;
}

@media (max-width: 575px) {
  .header-middle .middle-right ul li a .fi {
    font-size: 25px;
    line-height: 21px;
  }
}

.header-middle .middle-right ul li a span {
    color: white;
  font-family: "Almarai";
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
}

@media (max-width: 575px) {
  .header-middle .middle-right ul li a span {
    font-size: 14px;
    line-height: 21px;
  }
}

.header-middle .middle-right ul li:nth-child(1) {
  padding-left: 0;
}

.header-middle .middle-right ul li:nth-child(1) .fi {
  padding-right: 10px;
}

.header-middle .middle-right ul li:nth-child(2) .fi {
  padding-right: 10px;
}

.header-middle .middle-right ul li:nth-child(3) {
  padding-right: 15px;
  padding-left: 15px;
}

@media (max-width: 575px) {
  .header-middle .middle-right ul li:nth-child(3) {
    padding-right: 5px;
  }
}

.header-middle .wish-btn,
.header-middle .wish-btn-s2 {
  line-height: 0.66em;
  width: 50px;
  height: 50px;
  border: 0;
  background: transparent;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1200px) {
  .header-middle .wish-btn,
  .header-middle .wish-btn-s2 {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 991px) {
  .header-middle .wish-btn,
  .header-middle .wish-btn-s2 {
    width: 40px;
    height: 40px;
  }
}

.header-middle .wish-btn .cart-count,
.header-middle .wish-btn-s2 .cart-count {
  background: #70c6c7;
  width: 18px;
  height: 18px;
  font-size: 14px;
  line-height: 20px;
  color: white;
  position: absolute;
  top: 5px;
  right: 0px;
  border-radius: 50%;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 575px) {
  .header-middle .wish-btn .cart-count,
  .header-middle .wish-btn-s2 .cart-count {
    font-size: 12px;
    line-height: 18px;
  }
}

.header-middle .cart-toggle-btn, .header-middle .wishlist-toggle-btn {
  border: 0;
  background: transparent;
  position: relative;
}

.header-middle .cart-toggle-btn .fi, .header-middle .wishlist-toggle-btn .fi {
  font-size: 30px;
  line-height: 30px;
  color: #6F6F6F;
}

@media (max-width: 575px) {
  .header-middle .cart-toggle-btn .fi, .header-middle .wishlist-toggle-btn .fi {
    font-size: 25px;
    line-height: 21px;
  }
}

.header-middle .cart-toggle-btn .cart-count, .header-middle .wishlist-toggle-btn .cart-count {
  background: #2f3672;
  width: 18px;
  height: 18px;
  font-size: 14px;
  line-height: 20px;
  color: white;
  position: absolute;
  top: 3px;
  right: 0px;
  border-radius: 50%;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 575px) {
  .header-middle .cart-toggle-btn .cart-count, .header-middle .wishlist-toggle-btn .cart-count {
    font-size: 12px;
    line-height: 18px;
  }
}

.header-middle .mini-cart-content .mini-cart-item-des, .header-middle .mini-wislist-content .mini-cart-item-des {
  text-align: left;
}

.header-middle .mini-cart-content .mini-cart-item-des a, .header-middle .mini-wislist-content .mini-cart-item-des a {
  display: block;
  padding: 0;
}

.header-middle .mini-cart-content .mini-cart-item-image a, .header-middle .mini-wislist-content .mini-cart-item-image a {
  padding: 0;
  display: block;
}

/* 2.2 navigation */
.wpo-site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
  /*** cart-search-contact ***/
  background-color: #fff;
}

.wpo-site-header .navigation {
  background-color: #fff;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  border-top: 1px solid #F0F0F0;
  -webkit-box-shadow: 0px 15px 10px -15px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 15px 10px -15px rgba(0, 0, 0, 0.15);
}

.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -400px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-box-shadow: 0 -5px 15px #086ad84a;
  box-shadow: 0 -5px 15px #086ad84a;
}

.sticky-on {
  opacity: 1;
  top: 0;
  visibility: visible;
}

.wpo-site-header .navigation > .container {
  position: relative;
}

.wpo-site-header .row {
  width: 100%;
}

/* header-shop-item */
@media (max-width: 575px) {
  .wpo-site-header .navigation {
    padding: 20px 0;
  }
}

.wpo-site-header .header-shop-item {
  position: relative;
}

.wpo-site-header .header-shop-item .header-shop-toggle-btn {
  border: 0;
  background: transparent;
  width: 100%;
  font-family: "Almarai";
  font-weight: 400;
  font-size: 18px;
  color: #525252;
  text-align: left;
  padding: 23px 0;
  border-right: 1px solid #F1E2CC;
  position: relative;
}

@media (max-width: 991px) {
  .wpo-site-header .header-shop-item .header-shop-toggle-btn {
    border-right: 1px solid transparent;
  }
}

.wpo-site-header .header-shop-item .header-shop-toggle-btn::before {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 22px;
  font-size: 19px;
  content: "\f101";
  font-family: flaticon_ecommerce !important;
  color: #525252;
}

@media (max-width: 1399px) {
  .wpo-site-header .header-shop-item .header-shop-toggle-btn::before {
    right: 0;
  }
}

@media (max-width: 1199px) {
  .wpo-site-header .header-shop-item .header-shop-toggle-btn::before {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .header-shop-item .header-shop-toggle-btn::before {
    right: 0;
  }
}

@media (max-width: 575px) {
  .wpo-site-header .header-shop-item .header-shop-toggle-btn::before {
    right: -12px;
    width: 40px;
    height: 35px;
    font-size: 25px;
    text-align: center;
    line-height: 35px;
    background: -webkit-gradient(linear, left top, left bottom, from(#FED700), to(#F78914));
    background: linear-gradient(180deg, #FED700 0%, #F78914 100%);
    color: #fff;
  }
}

@media (max-width: 1199px) {
  .wpo-site-header .header-shop-item {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .header-shop-item {
    border-right: 1px solid transparent;
    text-align: right;
  }
}

@media (max-width: 575px) {
  .wpo-site-header .header-shop-item span {
    display: none;
  }
}

.wpo-site-header .mini-shop-item {
  background: #fff;
  width: 250px;
  z-index: 11;
  position: absolute;
  left: 0;
  top: 73px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  -webkit-box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
          box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
  padding: 10px 0;
}

.wpo-site-header .mini-shop-item ul {
  list-style: none;
}

@media (min-width: 991px) {
  .wpo-site-header .mini-shop-item ul {
    display: block !important;
  }
}

.wpo-site-header .mini-shop-item ul li a {
  padding: 10px 20px;
  font-family: "Almarai";
  font-weight: 400;
  font-size: 18px;
  color: #525252;
  position: relative;
  display: block;
  padding-bottom: 8px;
  line-height: 22px;
  text-align: left;
}

.wpo-site-header .mini-shop-item ul li a::after {
  right: 15px;
  top: 25%;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

@media (max-width: 991px) {
  .wpo-site-header .mini-shop-item ul li a::after {
    position: absolute;
    display: block;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.wpo-site-header .mini-shop-item.mini-shop-item-toggle {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .wpo-site-header .mini-shop-item.mini-shop-item-toggle {
    top: 70px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (max-width: 575px) {
  .wpo-site-header .mini-shop-item.mini-shop-item-toggle {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 0;
  }
}

@media (max-width: 399px) {
  .wpo-site-header .mini-shop-item.mini-shop-item-toggle {
    left: -58%;
  }
}

.wpo-site-header .navigation.sticky-header .header-shop-item .mini-shop-item.mini-shop-item-toggle {
  opacity: 0;
  visibility: hidden;
}

.wpo-site-header .navigation.sticky-header.sticky-on .header-shop-item .mini-shop-item.mini-shop-item-toggle {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 992px) {
  .wpo-site-header .header-catagory-item {
    position: relative;
    list-style: none;
  }
  .wpo-site-header .header-catagory-item .header-catagory-single {
    background-color: #fff;
    -webkit-box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
            box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    width: 225px;
    position: absolute;
    padding: 0;
    left: 110%;
    top: 0;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
  }
  .wpo-site-header .header-catagory-item:hover .header-catagory-single {
    visibility: visible;
    opacity: 1;
    left: 101%;
  }
}

.menu-down-arrow {
  position: relative;
}

.menu-down-arrow::after {
  position: absolute;
  content: "\f101";
  font-family: flaticon_ecommerce !important;
  right: 0;
  top: 34%;
}

@media (max-width: 1199px) {
  .menu-down-arrow::after {
    right: -4px;
  }
}

@media (max-width: 991px) {
  .menu-down-arrow::after {
    position: unset;
    display: none;
  }
}

.wpo-site-header #navbar {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.wpo-site-header #navbar > ul li a:hover,
.wpo-site-header #navbar > ul li a:focus {
  text-decoration: none;
  color: #70c6c7 !important;
}

@media screen and (min-width: 992px) {
  .wpo-site-header #navbar {
    /*** hover effect ***/
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .wpo-site-header #navbar li {
    position: relative;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a {
    position: relative;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a:before {
  font-family: "Almarai";
    content: "\f101";
    font-size: 11px;
    font-size: 0.73333rem;
    position: absolute;
    right: 150px;
    top: 58%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .wpo-site-header #navbar > ul > li:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
  .wpo-site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}

.wpo-site-header .container-fluid {
  padding-right: 0;
}

@media (max-width: 991px) {
  .wpo-site-header {
    /* class for show hide navigation */
  }
  .wpo-site-header .container {
    width: 100%;
    max-width: 100%;
  }
  .wpo-site-header .header-right {
    right: -10px;
  }
  .wpo-site-header .navbar-header button span {
    background-color: #fff;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }
  .wpo-site-header .navbar-header button span:last-child {
    margin: 0;
  }
}

.wpo-site-header #navbar ul {
  list-style: none;
}

@media (max-width: 991px) and (max-width: 991px) {
  .wpo-site-header #navbar {
    top: 0;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar > ul {
    z-index: 101;
  }
  .wpo-site-header #navbar ul a {
    color: #000;
  }
  .wpo-site-header #navbar ul a:hover,
  .wpo-site-header #navbar ul li.current a {
    color: #70c6c7;
  }
  .wpo-site-header #navbar .close-navbar .ti-close {
    position: relative;
    top: 1px;
  }
  .wpo-site-header .navbar-toggler .first-angle,
  .wpo-site-header .navbar-toggler .last-angle {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .wpo-site-header .x-close .middle-angle {
    opacity: 0;
  }
  .wpo-site-header .x-close .first-angle {
    position: absolute;
    -webkit-transform: rotate(-44deg);
    top: 16px;
    left: 10px;
  }
  .wpo-site-header .x-close .last-angle {
    -webkit-transform: rotate(44deg);
    position: absolute;
    top: 16px;
    right: 10px;
  }
}

@media (max-width: 767px) {
  .wpo-site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }
  .wpo-site-header #navbar .navbar-nav {
    margin: 0;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .navbar-collapse.collapse {
    display: none;
  }
  .wpo-site-header .navbar-collapse.collapse.in {
    display: block;
  }
  .wpo-site-header .navbar-header .collapse,
  .wpo-site-header .navbar-toggle {
    display: block;
  }
  .wpo-site-header .navbar-header {
    float: none;
    position: relative;
    z-index: 99;
    text-align: center;
  }
  .wpo-site-header .navbar-right {
    float: none;
  }
  .wpo-site-header .navbar-nav {
    float: none;
  }
  .wpo-site-header .navbar-nav > li {
    float: none;
  }
}

.wpo-site-header .header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 991;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: auto;
}

.header-right .recent-btn {
  font-family: "Almarai";
  font-weight: 400;
  font-size: 18px;
  line-height: 15px;
  color: #525252;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
}

@media (max-width: 1199px) {
  .header-right .recent-btn {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .header-right .recent-btn {
    display: none;
  }
}

.header-right .recent-btn .fi {
  padding-right: 10px;
}

.wpo-site-header .header-right button {
  padding: 0;
  border: 0;
  outline: 0;
}

.wpo-site-header .header-right > div {
  float: left;
  position: relative;
  margin-right: 8px;
}

.wpo-site-header .header-right .close-form .theme-btn, .wpo-site-header .header-right .close-form .view-cart-btn {
  padding: 10px 25px;
}

@media (max-width: 1400px) {
  .wpo-site-header .header-right .close-form .theme-btn, .wpo-site-header .header-right .close-form .view-cart-btn {
    padding: 10px 15px;
    font-size: 15px;
  }
}

@media (max-width: 450px) {
  .wpo-site-header .header-right > div {
    margin-right: 10px;
  }
}

.wpo-site-header .header-right > div:last-child {
  margin: 0 0 0 10px;
  position: relative;
}

@media (max-width: 767px) {
  .wpo-site-header .header-right > div:last-child {
    margin: 3px 0 0 10px;
  }
}

.wpo-site-header .header-right .header-search-form-wrapper {
  position: relative;
}

.wpo-site-header .header-right .header-search-form-wrapper .fi:before {
  font-size: 18px;
}

@media (max-width: 450px) {
  .wpo-site-header .header-right .cart-toggle-btn, .wpo-site-header .header-right .wishlist-toggle-btn {
    display: none;
  }
}

.wpo-site-header .header-right .search-toggle-btn,
.wpo-site-header .header-right .cart-toggle-btn, .wpo-site-header .header-right .wishlist-toggle-btn {
  background-color: rgba(7, 1, 67, 0.05);
  line-height: 0.66em;
  color: #232f4b;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
}

@media (max-width: 1200px) {
  .wpo-site-header .header-right .search-toggle-btn,
  .wpo-site-header .header-right .cart-toggle-btn, .wpo-site-header .header-right .wishlist-toggle-btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .header-right .search-toggle-btn,
  .wpo-site-header .header-right .cart-toggle-btn, .wpo-site-header .header-right .wishlist-toggle-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .header-right .search-toggle-btn .fi:before,
  .wpo-site-header .header-right .cart-toggle-btn .fi:before, .wpo-site-header .header-right .wishlist-toggle-btn .fi:before {
    font-size: 16px;
  }
}

.wpo-site-header .header-right .search-toggle-btn .ti-close,
.wpo-site-header .header-right .cart-toggle-btn .ti-close, .wpo-site-header .header-right .wishlist-toggle-btn .ti-close {
  display: block;
  line-height: 20px;
  position: relative;
  top: -2px;
}

/*** cart-search-contact ***/
.cart-search-contact button {
  background: transparent;
  padding: 0;
  border: 0;
  outline: 0;
}

.cart-search-contact .fi {
  font-size: 30px;
  font-size: 2rem;
  color: #233D50;
}

.cart-search-contact > div {
  float: left;
  position: relative;
}

.cart-search-contact > div + div {
  margin-left: 12px;
}

.cart-search-contact .header-search-form {
  position: absolute;
  width: 350px;
  right: 0;
  top: 75px;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  visibility: hidden;
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: -2px 18px 40px -9px #999999;
          box-shadow: -2px 18px 40px -9px #999999;
}

@media (max-width: 991px) {
  .cart-search-contact .header-search-form {
    top: 65px;
  }
}

@media (max-width: 767px) {
  .cart-search-contact .header-search-form {
    right: 15px;
  }
}

@media (max-width: 575px) {
  .cart-search-contact .header-search-form {
    width: 260px;
    padding: 15px;
  }
}

.cart-search-contact .header-search-form-wrapper .fi:before {
  font-size: 18px;
  font-size: 1.2rem;
}

.cart-search-contact form div {
  position: relative;
}

.cart-search-contact form div button {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cart-search-contact form div button .fi:before {
  font-size: 18px !important;
}

.cart-search-contact input {
  width: 100%;
  height: 50px;
  padding: 6px 20px;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #F0F0F0;
}

.cart-search-contact input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #70c6c7;
}

.wpo-site-header .header-right .header-search-content-toggle {
  opacity: 1;
  visibility: visible;
  right: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.mini-cart .cart-count {
  background: #70c6c7;
  width: 20px;
  height: 20px;
  font-size: 14px;
  line-height: 20px;
  color: white;
  position: absolute;
  top: 1px;
  right: 0px;
  border-radius: 50%;
  font-weight: 400;
}

.mini-cart-content, .mini-wislist-content {
  background: #fff;
  width: 320px;
  height: 100%;
  z-index: 100;
  position: fixed;
  right: -320px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: -2px 18px 40px -9px #999999;
          box-shadow: -2px 18px 40px -9px #999999;
}

@media (max-width: 575px) {
  .mini-cart-content, .mini-wislist-content {
    width: 290px;
  }
}

.mini-cart-content .mini-cart-close, .mini-wislist-content .mini-cart-close {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #333333;
  color: white;
  font-size: 0px;
  text-align: center;
  overflow: hidden;
  position: relative;
  float: right;
  line-height: 48px;
  border-radius: 3px;
  right: 10px;
  top: 20px;
}

.mini-cart-content .mini-cart-close i, .mini-wislist-content .mini-cart-close i {
  font-size: 15px;
}

.mini-cart-content p, .mini-wislist-content p {
  font-size: 15px;
  font-weight: 500;
  color: #233D50;
  margin: 0;
  text-transform: uppercase;
}

.mini-cart-content .mini-cart-items, .mini-wislist-content .mini-cart-items {
  padding: 100px 20px 25px;
}

.mini-cart-content .mini-cart-item, .mini-wislist-content .mini-cart-item {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #efefef;
}

.mini-cart-content .mini-cart-item:first-child, .mini-wislist-content .mini-cart-item:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.mini-cart-content .mini-cart-item-image, .mini-wislist-content .mini-cart-item-image {
  width: 50px;
  height: 50px;
  border: 2px solid #f3f3f3;
  float: left;
  margin-right: 15px;
}

.mini-cart-content .mini-cart-item-image a,
.mini-cart-content .mini-cart-item-image img, .mini-wislist-content .mini-cart-item-image a,
.mini-wislist-content .mini-cart-item-image img {
  display: block;
  width: 46px;
  height: 46px;
}

.mini-cart-content .mini-cart-item-des, .mini-wislist-content .mini-cart-item-des {
  position: relative;
  overflow: hidden;
}

.mini-cart-content .mini-cart-item-des a, .mini-wislist-content .mini-cart-item-des a {
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  color: #233D50;
}

.mini-cart-content .mini-cart-item-des a:hover, .mini-wislist-content .mini-cart-item-des a:hover {
  color: #70c6c7;
}

.mini-cart-content .mini-cart-item-des .mini-cart-item-price, .mini-wislist-content .mini-cart-item-des .mini-cart-item-price {
  font-size: 13px;
  color: #888;
  display: block;
  margin-top: 3px;
}

.mini-cart-content .mini-cart-item-des .mini-cart-item-quantity, .mini-wislist-content .mini-cart-item-des .mini-cart-item-quantity {
  font-size: 12px;
  color: #444;
  display: block;
  position: absolute;
  right: 0;
  top: 6px;
}

.mini-cart-content .visible-icon, .mini-wislist-content .visible-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  opacity: .02;
  z-index: -1;
}

.mini-cart-content .mini-cart-action, .mini-wislist-content .mini-cart-action {
  padding: 20px 0 30px;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.mini-cart-content .mini-cart-action .theme-btn-s2, .mini-wislist-content .mini-cart-action .theme-btn-s2 {
  float: right;
}

.mini-cart-content .mini-cart-action .mini-btn, .mini-wislist-content .mini-cart-action .mini-btn {
  width: 240px;
}

.mini-cart-content .mini-cart-action .mini-checkout-price, .mini-wislist-content .mini-cart-action .mini-checkout-price {
  font-size: 16px;
  font-weight: 600;
  color: #233D50;
  display: block;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mini-cart-content .mini-cart-action .mini-checkout-price span, .mini-wislist-content .mini-cart-action .mini-checkout-price span {
  color: #c79652;
  font-size: 20px;
}

.mini-cart-content-toggle,
.mini-wislist-content-toggle {
  opacity: 1;
  visibility: visible;
  right: 0;
}

@media (max-width: 991px) {
  .page-wrapper {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .body-overlay:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

.header-search-area {
  background: #fff;
  width: 100%;
  padding: 100px 0;
  text-align: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}

.header-search-area h3 {
  font-size: 45px;
  margin: 0 0 1em;
}

.header-search-area form {
  position: relative;
}

.header-search-area input {
  height: 50px;
  font-size: 18px;
  font-size: 1.2rem;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #d0d0d0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.header-search-area input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #70c6c7;
}

.header-search-area form button {
  background: transparent;
  border: 0;
  font-size: 20px;
  font-size: 1.33333rem;
  position: absolute;
  right: 0;
  bottom: 10px;
}

.header-search-area form button:focus {
  border: none;
  outline: none;
}

.header-search-area .close-form {
  position: absolute;
  right: 35px;
  top: 35px;
  bottom: auto;
  padding-bottom: 5px;
  border-bottom: 1px solid;
}

.header-search-area .close-form button {
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 13px;
  font-size: 0.86667rem;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 2px;
  z-index: 99;
}

.header-search-area .close-form button:focus {
  border: 0;
  outline: 0;
}

.wpo-site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
}

.wpo-site-header .navigation {
  background-color: #fff;
  margin-bottom: 0;
  border-radius: 0;
}

.wpo-site-header .navigation > .container {
  position: relative;
}

.wpo-site-header #navbar {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.wpo-site-header #navbar > ul li a:hover,
.wpo-site-header #navbar > ul li a:focus {
  text-decoration: none;
  color: #75a32f;
}

@media screen and (min-width: 992px) {
  .wpo-site-header #navbar {
    /*** hover effect ***/
  }
  .wpo-site-header #navbar li {
    position: relative;
  }
  .wpo-site-header #navbar > ul > li > a {
    padding: 23px 20px;
    display: block;
    color: #525252;
    position: relative;
    font-family: "Almarai";
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
  }
  .wpo-site-header #navbar > ul .sub-menu {
      font-family: "Almarai";
    background-color: #fff;
    -webkit-box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
            box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    width: 225px;
    position: absolute;
    padding: 20px 0;
    left: 0;
    top: 110%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .wpo-site-header #navbar > ul > li .sub-menu a {
    font-size: 16px;
    font-size: 1.06667rem;
    display: block;
    padding: 10px 15px;
    color: #233D50;
    position: relative;
    overflow: hidden;
    font-weight: 700;
  }
  .wpo-site-header #navbar > ul > li .sub-menu a:after {
    position: absolute;
    left: 15px;
    bottom: 4px;
    width: 0px;
    height: 2px;
    content: "";
    background: #70c6c7;
    -webkit-transition: all .3s;
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
  }
  .wpo-site-header #navbar > ul > li .sub-menu a:hover:after, .wpo-site-header #navbar > ul > li .sub-menu a.active:after {
    width: 40px;
    opacity: 1;
    visibility: visible;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu .sub-menu {
    left: 110%;
    top: 0;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a {
    position: relative;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a:before {
    font-family: "Almarai";
    content: "\f101";
    font-size: 11px;
    font-size: 0.73333rem;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .wpo-site-header #navbar > ul > li:hover > .sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
  .wpo-site-header #navbar .sub-menu > li:hover > .sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar > ul > li a {
    display: block;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
  }
  .wpo-site-header #navbar > ul > li a:hover, .wpo-site-header #navbar > ul > li a.active {
    color: #fff;
  }
  .wpo-site-header #navbar > ul .sub-menu > li:last-child {
    border-bottom: 0;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu a {
    padding: 8px 15px 8px 45px;
  }
  .wpo-site-header #navbar > ul > li > .sub-menu .sub-menu a {
    padding: 8px 15px 8px 65px;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > a {
    position: relative;
    color: #ddd;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > a:hover, .wpo-site-header #navbar > ul .menu-item-has-children > a.active {
    color: #fff;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > a:before {
    font-family: "themify";
    content: "\f101";
    font-size: 11px;
    font-size: 0.73333rem;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > a.rotate:before {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    top: 29%;
  }
  .wpo-site-header #navbar > ul .menu-item-has-children > a.rotate {
    color: #fff;
  }
}

@media screen and (min-width: 992px) {
  .wpo-site-header .navbar-header .open-btn {
    display: none;
  }
  .wpo-site-header #navbar .close-navbar {
    display: none;
  }
}

.wpo-site-header .menu-close {
  display: none;
}

@media (max-width: 991px) {
  .wpo-site-header {
    /* class for show hide navigation */
  }
  .wpo-site-header .container {
    width: 100%;
  }
  .wpo-site-header .mobail-menu button {
    background-color: #70c6c7;
    width: 40px;
    height: 35px;
    border: 0;
    padding: 5px 10px;
    outline: 0;
    position: relative;
    z-index: 20;
  }
  .wpo-site-header .mobail-menu button:focus {
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .wpo-site-header .mobail-menu button span {
    background-color: #fff;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }
  .wpo-site-header .mobail-menu button span:last-child {
    margin: 0;
  }
  .wpo-site-header #navbar {
    background: #2c526c;
    display: block !important;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    position: fixed;
    left: -320px;
    top: 0px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
  }
  .wpo-site-header #navbar .navbar-nav {
    display: block;
  }
  .wpo-site-header #navbar > ul {
    position: relative;
    z-index: 101;
  }
  .wpo-site-header #navbar ul a {
    color: #000;
  }
  .wpo-site-header #navbar ul a:hover,
  .wpo-site-header #navbar ul li.current a {
    color: #70c6c7;
  }
  .wpo-site-header #navbar .navbar-nav {
    height: 100%;
    overflow: auto;
    padding-bottom: 60px;
  }
  .wpo-site-header #navbar .close-navbar {
    background-color: #fff;
    width: 40px;
    height: 40px;
    color: #000;
    border: 0;
    outline: none;
    position: absolute;
    left: -41px;
    top: 90px;
    z-index: 20;
  }
  .wpo-site-header #navbar .close-navbar .ti-close {
    position: relative;
    top: 1px;
  }
  .wpo-site-header .menu-close {
    display: block;
    z-index: 99;
    background: none;
    text-align: center;
    color: #fff;
    border: 0;
    text-align: center;
    margin-left: auto;
    margin-top: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #fff;
  }
  .wpo-site-header .slideInn {
    left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .wpo-site-header .navbar-toggler .first-angle,
  .wpo-site-header .navbar-toggler .last-angle {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .wpo-site-header .x-close .middle-angle {
    opacity: 0;
  }
  .wpo-site-header .x-close .first-angle {
    position: absolute;
    -webkit-transform: rotate(-44deg);
    top: 16px;
    left: 10px;
  }
  .wpo-site-header .x-close .last-angle {
    -webkit-transform: rotate(44deg);
    position: absolute;
    top: 16px;
    right: 10px;
  }
}

@media (max-width: 767px) {
  .wpo-site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }
  .wpo-site-header #navbar .navbar-nav {
    margin: 0;
  }
}

.wpo-site-header .navbar-header .navbar-brand img {
  max-width: 170px;
}

@media (max-width: 991px) {
  .wpo-site-header .navbar-collapse.collapse {
    display: none;
  }
  .wpo-site-header .navbar-collapse.collapse.in {
    display: block;
  }
  .wpo-site-header .navbar-header .collapse,
  .wpo-site-header .navbar-toggle {
    display: block;
  }
  .wpo-site-header .navbar-header {
    float: none;
  }
  .wpo-site-header .navbar-right {
    float: none;
  }
  .wpo-site-header .navbar-nav {
    float: none;
  }
  .wpo-site-header .navbar-nav > li {
    float: none;
  }
}

@media (max-width: 440px) {
  .wpo-site-header .navbar-header .navbar-brand img {
    max-width: 170px;
  }
}

@media (max-width: 370px) {
  .wpo-site-header .navbar-header .navbar-brand img {
    max-width: 140px;
  }
}

@media (max-width: 1399px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 25px 20px;
    font-size: 16px;
  }
}

@media (max-width: 1199px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 22px 12px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar > ul > li > a {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar > ul > li > a {
    padding: 15px 30px;
  }
}

.wpo-site-header .navigation.sticky-header {
  padding: 0 130px;
}

@media (max-width: 1700px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 0 50px;
  }
}

@media (max-width: 1400px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 0 20px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 20px 10px;
  }
}

/*--------------------------------------------------------------
3. content
--------------------------------------------------------------*/
/*3.1 wpo-hero-slider*/
.wpo-hero-slider {
    direction :ltr;
  width: 100%;
  position: relative;
  /** slider controls **/
}

.wpo-hero-slider .hero-slider {
  margin: 40px 0;
}

.wpo-hero-slider .hero-slider-item {
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #ECECEC;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .wpo-hero-slider .hero-slider-item {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .wpo-hero-slider .hero-slider-item {
    height: 335px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-slider .hero-slider-item {
    height: 244px;
  }
}

@media (max-width: 399px) {
  .wpo-hero-slider .hero-slider-item {
    height: 193px;
  }
}

.wpo-hero-slider .slider-bg {
    display: flex;
    background-size: cover; /* Ensures the image fully covers the area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents repetition */
  position: absolute;
  right: -29%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.wpo-hero-slider .slider-content {
  text-align: center;
  margin-left: 50px;
  margin-top: -35px;
}

@media (max-width: 1199px) {
  .wpo-hero-slider .slider-content {
    margin-left: 20px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-slider .slider-content {
    margin-left: 5px;
  }
}

@media (max-width: 399px) {
  .wpo-hero-slider .slider-content {
    margin-left: 0px;
    margin-top: -20px;
  }
}

.wpo-hero-slider .slide-title {
  max-width: 612px;
}

@media (max-width: 1199px) {
  .wpo-hero-slider .slide-title {
    max-width: 555px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-slider .slide-title {
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .wpo-hero-slider .slide-title {
    max-width: 250px;
  }
}

.wpo-hero-slider .slide-title h2 {
  margin: 10px 0 15px;
  font-family: "Almarai" !important;
  font-weight: 600;
  font-size: 80px;
  line-height: 120px;
  color: #233D50;
}

@media (max-width: 1199px) {
  .wpo-hero-slider .slide-title h2 {
      font-family: "Almarai" !important;
    font-size: 70px;
    line-height: 100px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-slider .slide-title h2 {
    font-size: 40px;
    line-height: 55px;
  }
}

@media (max-width: 767px) {
  .wpo-hero-slider .slide-title h2 {
    font-size: 30px;
    line-height: 36px;
  }
}

@media (max-width: 399px) {
  .wpo-hero-slider .slide-title h2 {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 0;
  }
}

.wpo-hero-slider .theme-btn, .wpo-hero-slider .view-cart-btn {
  margin-top: 13px;
}

@media (max-width: 399px) {
  .wpo-hero-slider .theme-btn, .wpo-hero-slider .view-cart-btn {
    padding: 5px 18px;
  }
}

.wpo-hero-slider .hero-social {
  list-style: none;
  position: absolute;
  left: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 1499px) {
  .wpo-hero-slider .hero-social {
    left: 15px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-slider .hero-social {
    left: 5px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-slider .hero-social {
    display: none;
  }
}

.wpo-hero-slider .hero-social li {
  margin: 20px 0;
}

.wpo-hero-slider .hero-social li a {
  color: #6F6F6F;
  font-size: 15px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.wpo-hero-slider .hero-social li:hover a {
  color: #ffa500;
}

.wpo-hero-slider .slick-dots {
  width: 0;
  top: 60%;
  right: -17%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 1799px) {
  .wpo-hero-slider .slick-dots {
    right: -11%;
  }
}

@media (max-width: 1649px) {
  .wpo-hero-slider .slick-dots {
    right: -6%;
  }
}

@media (max-width: 1499px) {
  .wpo-hero-slider .slick-dots {
    right: 0;
  }
}

@media (max-width: 991px) {
  .wpo-hero-slider .slick-dots {
    bottom: 380px;
    top: 39%;
  }
}

@media (max-width: 767px) {
  .wpo-hero-slider .slick-dots {
    top: 90%;
    left: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 575px) {
  .wpo-hero-slider .slick-dots {
    top: 88%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@media (max-width: 399px) {
  .wpo-hero-slider .slick-dots {
    top: 83%;
  }
}

.wpo-hero-slider .slick-dots li {
  margin: 0;
}

.wpo-hero-slider .slick-dots li.slick-active button {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.wpo-hero-slider .slick-dots li.slick-active {
  position: relative;
}

.wpo-hero-slider .slick-dots li.slick-active::before {
  position: absolute;
  content: '';
  right: 0;
  bottom: 20%;
  width: 50px;
  height: 2px;
  background: #233D50;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 767px) {
  .wpo-hero-slider .slick-dots li.slick-active::before {
    bottom: 8%;
    width: 20px;
    right: 5px;
  }
}

.wpo-hero-slider .slick-dots button:before,
.wpo-hero-slider .slick-dots button:before {
  display: none;
}

.wpo-hero-slider .slick-dots li {
  font-size: 16px;
  font-weight: 700;
  display: block;
  height: 50px;
  width: 20px;
  padding: 5px;
  cursor: pointer;
  color: #233D50;
}

@media (max-width: 991px) {
  .wpo-hero-slider .slick-dots li {
    height: 40px;
  }
}

@media (max-width: 767px) {
  .wpo-hero-slider .slick-dots li {
    height: 30px;
    width: 30px;
  }
}

.wpo-hero-slider .slick-dots li button {
  font-size: 16px;
  font-weight: 700;
  display: block;
  padding: 5px;
  cursor: pointer;
  color: #233D50;
}

@media (max-width: 767px) {
  .wpo-hero-slider .slick-dots li button {
    padding: 0;
  }
}

.static-hero,
.wpo-hero-slider-s2 {
  width: 100%;
  height: 720px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}

@media (max-width: 1199px) {
  .static-hero,
  .wpo-hero-slider-s2 {
    height: 700px;
  }
}

@media (max-width: 991px) {
  .static-hero,
  .wpo-hero-slider-s2 {
    height: 650px;
  }
}

@media (max-width: 767px) {
  .static-hero,
  .wpo-hero-slider-s2 {
    height: 500px;
  }
}

.static-hero .gradient-overlay + .container,
.wpo-hero-slider-s2 .gradient-overlay + .container {
  position: relative;
  z-index: 11;
}

.static-hero .swiper-slide,
.wpo-hero-slider-s2 .swiper-slide {
  position: relative;
  z-index: 11;
}

.static-hero .slide-title-top,
.wpo-hero-slider-s2 .slide-title-top {
  max-width: 680px;
}

@media (max-width: 767px) {
  .static-hero .slide-title-top,
  .wpo-hero-slider-s2 .slide-title-top {
    max-width: 500px;
  }
}

.static-hero .slide-title-top span,
.wpo-hero-slider-s2 .slide-title-top span {
  font-weight: 400;
  font-size: 25px;
  color: #ffffff;
  line-height: 30px;
  font-family: "Almarai";
}

@media (max-width: 991px) {
  .static-hero .slide-title-top span,
  .wpo-hero-slider-s2 .slide-title-top span {
    font-size: 40px;
    line-height: 20px;
  }
}

@media (max-width: 767px) {
  .static-hero .slide-title-top span,
  .wpo-hero-slider-s2 .slide-title-top span {
    font-size: 25px;
    line-height: 20px;
  }
}

.static-hero .slide-title,
.wpo-hero-slider-s2 .slide-title {
  max-width: 680px;
}

@media (max-width: 767px) {
  .static-hero .slide-title,
  .wpo-hero-slider-s2 .slide-title {
    max-width: 500px;
  }
}

.static-hero .slide-title h2,
.wpo-hero-slider-s2 .slide-title h2 {
  margin: 0 0 15px;
  font-family: "Almarai";
  font-weight: 600;
  font-size: 80px;
  line-height: 100px;
  color: #ffffff;
}

@media (max-width: 991px) {
  .static-hero .slide-title h2,
  .wpo-hero-slider-s2 .slide-title h2 {
    font-size: 70px;
    line-height: 100px;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .static-hero .slide-title h2,
  .wpo-hero-slider-s2 .slide-title h2 {
    font-size: 55px;
    line-height: 80px;
  }
}

@media (max-width: 399px) {
  .static-hero .slide-title h2,
  .wpo-hero-slider-s2 .slide-title h2 {
    font-size: 35px;
    line-height: 35px;
  }
}

.static-hero .slide-text,
.wpo-hero-slider-s2 .slide-text {
  max-width: 680px;
}

@media (max-width: 767px) {
  .static-hero .slide-text,
  .wpo-hero-slider-s2 .slide-text {
    max-width: 500px;
  }
}

.static-hero .slide-text p,
.wpo-hero-slider-s2 .slide-text p {
  max-width: 680px;
  margin-bottom: 40px;
  font-family: "Almarai";
  font-weight: 400;
  font-size: 30px;
  line-height: 38px;
  color: #fefefe;
}

@media (max-width: 991px) {
  .static-hero .slide-text p,
  .wpo-hero-slider-s2 .slide-text p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .static-hero .slide-text p,
  .wpo-hero-slider-s2 .slide-text p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .static-hero .slide-btns,
  .wpo-hero-slider-s2 .slide-btns {
    max-width: 400px;
  }
}

.static-hero .swiper-slide,
.wpo-hero-slider-s2 .swiper-slide {
  overflow: hidden;
}

.static-hero .swiper-container,
.static-hero .hero-container,
.wpo-hero-slider-s2 .swiper-container,
.wpo-hero-slider-s2 .hero-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.static-hero .slide-inner,
.static-hero .hero-inner,
.wpo-hero-slider-s2 .slide-inner,
.wpo-hero-slider-s2 .hero-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}

.static-hero .swiper-button-prev,
.static-hero .swiper-button-next,
.wpo-hero-slider-s2 .swiper-button-prev,
.wpo-hero-slider-s2 .swiper-button-next {
  background: rgba(0, 0, 0, 0.7);
  width: 60px;
  height: 60px;
  line-height: 56px;
  border: 2px solid #c3c3c3;
  border-radius: 50%;
  opacity: 0.7;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.static-hero .swiper-button-prev:hover,
.static-hero .swiper-button-next:hover,
.wpo-hero-slider-s2 .swiper-button-prev:hover,
.wpo-hero-slider-s2 .swiper-button-next:hover {
  opacity: 0.9;
}

@media (max-width: 767px) {
  .static-hero .swiper-button-prev,
  .static-hero .swiper-button-next,
  .wpo-hero-slider-s2 .swiper-button-prev,
  .wpo-hero-slider-s2 .swiper-button-next {
    display: none;
  }
}

.static-hero .swiper-button-prev,
.wpo-hero-slider-s2 .swiper-button-prev {
  left: 25px;
}

.static-hero .swiper-button-prev:before,
.wpo-hero-slider-s2 .swiper-button-prev:before {
  font-family: "themify";
  content: "\e628";
  font-size: 20px;
  color: #ffffff;
}

.static-hero .swiper-button-next,
.wpo-hero-slider-s2 .swiper-button-next {

}

.static-hero .swiper-button-next:before,
.wpo-hero-slider-s2 .swiper-button-next:before {
  font-family: "themify";
  content: "\e629";
  font-size: 20px;
  color: #ffffff;
}

@media (max-width: 991px) {
  .static-hero .swiper-button-prev,
  .static-hero .swiper-button-next,
  .wpo-hero-slider-s2 .swiper-button-prev,
  .wpo-hero-slider-s2 .swiper-button-next {
    display: none;
  }
}

.static-hero .swiper-pagination-bullet,
.wpo-hero-slider-s2 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: center;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

@media screen and (min-width: 992px) {
  .static-hero .swiper-pagination-bullet,
  .wpo-hero-slider-s2 .swiper-pagination-bullet {
    display: none;
  }
}

.static-hero .swiper-pagination-bullet-active,
.wpo-hero-slider-s2 .swiper-pagination-bullet-active {
  color: #fff;
  background: #fff;
  width: 12px;
  height: 12px;
  text-align: center;
  line-height: 12px;
}

.static-hero .swiper-container-horizontal > .swiper-pagination-bullets,
.static-hero .swiper-pagination-custom,
.static-hero .swiper-pagination-fraction,
.wpo-hero-slider-s2 .swiper-container-horizontal > .swiper-pagination-bullets,
.wpo-hero-slider-s2 .swiper-pagination-custom,
.wpo-hero-slider-s2 .swiper-pagination-fraction {
  bottom: 30px;
}

.static-hero .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.wpo-hero-slider-s2 .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}

/************************************************
  hero-style-2
**************************************************/
/* 3.1 wpo-hero-slider */
.hero {
  position: relative;
  height: 100vh;
  /** slider controls **/
  /*** hero slider animation ***/
}

@media (max-width: 767px) {
  .hero {
    min-height: 420px;
  }
}

.hero .slide {
  height: 100vh;
  position: relative;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 767px) {
  .hero .slide {
    min-height: 420px;
  }
}

.hero .slide .slider-bg {
  display: none;
}

.hero .slide:focus {
  outline: none;
}

.hero .slide .container {
  height: 100%;
  display: table;
}

.hero .slide .row {
  display: table-cell;
  vertical-align: middle;
}

.hero .slick-dots {
  width: 0;
  top: 65%;
  left: 98%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 1199px) {
  .hero .slick-dots {
    top: 60%;
    left: 97%;
  }
}

@media (max-width: 991px) {
  .hero .slick-dots {
    bottom: 380px;
    top: 39%;
    left: 96%;
  }
}

@media (max-width: 767px) {
  .hero .slick-dots {
    top: 81%;
    left: 42%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 575px) {
  .hero .slick-dots {
    top: 90%;
    left: 34%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.hero .slick-dots li {
  margin: 0;
}

.hero .slick-dots li.slick-active button {
  color: #70c6c7;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.hero .slick-dots li.slick-active {
  color: #70c6c7;
  position: relative;
}

.hero .slick-dots li.slick-active::before {
  position: absolute;
  content: '';
  right: 0;
  bottom: 20%;
  width: 50px;
  height: 2px;
  background: #70c6c7;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 767px) {
  .hero .slick-dots li.slick-active::before {
    bottom: 8%;
    width: 20px;
    right: 5px;
  }
}

.hero .slick-dots button:before,
.hero .slick-dots button:before {
  display: none;
}

.hero .slick-dots li {
  font-size: 16px;
  font-weight: 700;
  display: block;
  height: 50px;
  width: 20px;
  padding: 5px;
  cursor: pointer;
  color: #233D50;
}

@media (max-width: 991px) {
  .hero .slick-dots li {
    height: 40px;
  }
}

@media (max-width: 767px) {
  .hero .slick-dots li {
    height: 30px;
    width: 30px;
  }
}

.hero .slick-dots li button {
  font-size: 16px;
  font-weight: 700;
  display: block;
  padding: 5px;
  cursor: pointer;
  color: #233D50;
}

@media (max-width: 767px) {
  .hero .slick-dots li button {
    padding: 0;
  }
}

.hero .slide-caption > div {
  overflow: hidden;
}

.hero .slide-caption > div * {
  -webkit-animation: fadeOutLeft 1.5s both;
  animation: fadeOutLeft 1.5s both;
}

.hero .slide-caption > .slider-pic * {
  -webkit-animation: animate__fadeIn 1.5s both;
  animation: animate__fadeIn 1.5s both;
}

.hero .slide-caption > div.slide-title * {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.hero .slide-caption > div.slide-subtitle * {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.hero .slide-caption > div.btns * {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.hero .slide-caption > div.video-holder * {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.hero .hero-slide-wrap .slick-current .slide-caption > div * {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.hero .hero-slide-wrap .slick-current .slide-caption > .slider-pic * {
  -webkit-animation-name: animate__fadeOut;
  animation-name: animate__fadeOut;
}

.hero .hero-slide-wrap .slick-current .slide-caption > div.slide-title {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.hero .hero-slide-wrap .slick-current .slide-caption > div.slide-subtitle {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.hero .hero-slide-wrap .slick-current .slide-caption > div.btns {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.hero .hero-slide-wrap .slick-current .slide-caption > div.slider-pic * {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/************************************************
  hero-style-1
**************************************************/
.hero-style-2 {
  height: 1000px;
  position: relative;
  background: #F2F2F2;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .hero-style-2 {
    height: 950px;
  }
}

@media (max-width: 1199px) {
  .hero-style-2 {
    height: 700px;
  }
}

@media (max-width: 991px) {
  .hero-style-2 {
    height: 550px;
  }
}

@media (max-width: 575px) {
  .hero-style-2 {
    height: 500px;
  }
}

.hero-style-2 .slide {
  height: 1000px;
}

@media (max-width: 1199px) {
  .hero-style-2 .slide {
    height: 750px;
  }
}

@media (max-width: 991px) {
  .hero-style-2 .slide {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-style-2 .slide {
    height: 600px;
  }
}

@media (max-width: 575px) {
  .hero-style-2 .slide {
    height: 500px;
  }
}

.hero-style-2 .slide .row {
  position: relative;
}

.hero-style-2 .slide-caption {
  padding-top: 20px;
}

@media screen and (min-width: 1200px) {
  .hero-style-2 .slide-caption {
    margin-top: 70px;
  }
}

@media (max-width: 1200px) {
  .hero-style-2 .slide-caption {
    margin-top: 70px;
  }
}

@media (max-width: 991px) {
  .hero-style-2 .slide-caption {
    margin-top: 0;
    padding-top: 22px;
  }
}

@media (max-width: 575px) {
  .hero-style-2 .slide-caption {
    margin-top: 10px;
  }
}

.hero-style-2 .slide-caption h2 {
  font-size: 70px;
  color: #233D50;
  margin: 0 0 0.45em;
}

@media (max-width: 1399px) {
  .hero-style-2 .slide-caption h2 {
    font-size: 60px;
  }
}

@media (max-width: 1200px) {
  .hero-style-2 .slide-caption h2 {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .hero-style-2 .slide-caption h2 {
    font-size: 43px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .hero-style-2 .slide-caption h2 {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  .hero-style-2 .slide-caption h2 {
    font-size: 32px;
  }
}

@media (max-width: 399px) {
  .hero-style-2 .slide-caption h2 {
    font-size: 30px;
  }
}

.hero-style-2 .slide-caption p {
  color: #525252;
  font-weight: 400;
  font-size: 18px;
  margin: 0 0 2.4em;
}

@media (max-width: 1200px) {
  .hero-style-2 .slide-caption p {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .hero-style-2 .slide-caption p {
    margin-bottom: 10px;
  }
}

.hero-style-2 .btns {
  display: inline-block;
}

.hero-style-2 .btns .theme-btn, .hero-style-2 .btns .view-cart-btn {
  border-radius: 10px;
  font-family: "Almarai";
}

.hero-style-2 .btns .theme-btn::after, .hero-style-2 .btns .view-cart-btn::after {
  border-radius: 10px;
}

.hero-style-2 .video-holder {
  display: inline-block;
  margin-left: 20px;
}

.hero-style-2 .video-holder a {
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  color: #8C5151;
  font-size: 18px;
  border-radius: 50%;
  position: relative;
  border: 1px solid #E6B2B2;
}

@media (max-width: 575px) {
  .hero-style-2 .video-holder a {
    width: 50px;
    height: 50px;
    line-height: 51px;
  }
}

.hero-style-2 .slider-pic {
  position: absolute;
  right: -90px;
  top: 58%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 1599px) {
  .hero-style-2 .slider-pic {
    right: -24px;
    top: 54%;
  }
}

@media (max-width: 1199px) {
  .hero-style-2 .slider-pic {
    right: 25px;
    top: 60%;
    width: 400px;
    height: 800px;
  }
}

@media (max-width: 991px) {
  .hero-style-2 .slider-pic {
    right: -240px;
    top: 91%;
    width: 500px;
    height: 800px;
  }
}

@media (max-width: 767px) {
  .hero-style-2 .slider-pic {
    display: none;
  }
}

@media (max-width: 1200px) {
  .hero-style-2 .slider-pic img {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .hero-style-2 .slider-pic img {
    max-width: 50%;
  }
}

.hero-style-2 .bg-shape {
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: #FFF9F9;
  z-index: -1;
  right: -140px;
  top: 22%;
}

@media (max-width: 1599px) {
  .hero-style-2 .bg-shape {
    width: 600px;
    height: 600px;
    right: -30px;
  }
}

@media (max-width: 1199px) {
  .hero-style-2 .bg-shape {
    width: 450px;
    height: 450px;
    right: 0px;
  }
}

@media (max-width: 991px) {
  .hero-style-2 .bg-shape {
    width: 280px;
    height: 280px;
    right: 2px;
    top: 38%;
  }
}

@media (max-width: 767px) {
  .hero-style-2 .bg-shape {
    display: none;
  }
}

/************************************************
  hero-style-2
**************************************************/
.hero-style-2 {
  height: 800px;
  overflow: visible;
  margin: 0 100px;
}

@media (max-width: 1611px) {
  .hero-style-2 {
    margin: 0px 70px;
  }
}

@media (max-width: 1549px) {
  .hero-style-2 {
    margin: 0px 20px;
  }
}

@media (max-width: 1199px) {
  .hero-style-2 {
    margin: 0px;
    height: 650px;
  }
}

@media (max-width: 991px) {
  .hero-style-2 {
    height: 550px;
  }
}

@media (max-width: 767px) {
  .hero-style-2 {
    height: 500px;
  }
}

@media (max-width: 575px) {
  .hero-style-2 {
    height: 350px;
  }
}

.hero-style-2 .slick-list {
  overflow: visible;
}

.hero-style-2 .slide {
  height: 800px;
}

@media (max-width: 1399px) {
  .hero-style-2 .slide {
    height: 750px;
  }
}

@media (max-width: 991px) {
  .hero-style-2 .slide {
    height: 500px;
  }
}

@media (max-width: 767px) {
  .hero-style-2 .slide {
    height: 500px;
  }
}

@media (max-width: 575px) {
  .hero-style-2 .slide {
    height: 350px;
  }
}

.hero-style-2 .slide-caption {
  margin-top: 0;
  padding-top: 0;
}

@media (max-width: 1199px) {
  .hero-style-2 .slide-caption {
    margin-top: -83px;
  }
}

@media (max-width: 991px) {
  .hero-style-2 .slide-caption {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .hero-style-2 .slide-caption {
    text-align: center;
  }
}

.hero-style-2 .slide-subtitle p {
  color: #F86665;
  margin-bottom: 15px;
}

.hero-style-2 .slide-title h2 {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .hero-style-2 .slide-title h2 {
    margin-bottom: 25px;
  }
}

.hero-style-2 .theme-btn, .hero-style-2 .view-cart-btn {
  padding: 12px 38px;
}

.hero-style-2 .slider-pic {
  right: -16px;
  top: 61%;
}

@media (max-width: 1449px) {
  .hero-style-2 .slider-pic {
    right: 0;
  }
}

@media (max-width: 1399px) {
  .hero-style-2 .slider-pic {
    width: 45%;
  }
}

@media (max-width: 991px) {
  .hero-style-2 .slider-pic {
    width: 85%;
    right: -43%;
    top: 92%;
  }
}

.hero-style-2 .slider-pic img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-style-2 .slider-pic.s2 {
  right: -100px;
}

@media (max-width: 1399px) {
  .hero-style-2 .slider-pic.s2 {
    right: -95px;
    width: 60%;
  }
}

@media (max-width: 991px) {
  .hero-style-2 .slider-pic.s2 {
    width: 110%;
    right: -60%;
    top: 99%;
  }
}

.hero-style-2 .bg-shape {
  width: 600px;
  height: 700px;
  border-radius: 300px 300px 0px 0px;
  background: #fff;
  right: -30px;
  top: 13%;
  outline: 1px solid #D5DEE0;
  outline-offset: 20px;
}

@media (max-width: 1449px) {
  .hero-style-2 .bg-shape {
    right: 0;
  }
}

@media (max-width: 1199px) {
  .hero-style-2 .bg-shape {
    width: 450px;
    height: 600px;
    top: 7%;
  }
}

@media (max-width: 991px) {
  .hero-style-2 .bg-shape {
    width: 300px;
    height: 500px;
    top: 10%;
  }
}

.hero-style-2 .slick-dots {
  bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: auto;
  left: 13%;
}

@media (max-width: 1199px) {
  .hero-style-2 .slick-dots {
    bottom: 150px;
  }
}

@media (max-width: 991px) {
  .hero-style-2 .slick-dots {
    bottom: 30px;
    left: 15%;
  }
}

@media (max-width: 767px) {
  .hero-style-2 .slick-dots {
    bottom: 30px;
    left: 46%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (max-width: 380px) {
  .hero-style-2 .slick-dots {
    left: 44%;
  }
}

.hero-style-2 .slick-dots li {
  margin: 0;
}

.hero-style-2 .slick-dots li.slick-active button {
  color: #70c6c7;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.hero-style-2 .slick-dots li.slick-active {
  background: #70c6c7;
  position: unset;
}

.hero-style-2 .slick-dots li.slick-active::before {
  position: unset;
}

.hero-style-2 .slick-dots button:before,
.hero-style-2 .slick-dots button:before {
  display: none;
}

.hero-style-2 .slick-dots li {
  font-size: 0px;
  display: inline-block;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: #CDD1D2;
  margin-right: 5px;
}

@media (max-width: 991px) {
  .hero-style-2 .slick-dots li {
    height: 12px;
    width: 12px;
  }
}

@media (max-width: 767px) {
  .hero-style-2 .slick-dots li {
    height: 12px;
    width: 12px;
  }
}

.hero-style-2 .slick-dots li button {
  font-size: 0px;
  display: inline-block;
}

/*--------------------------------------------------------------
4. wpo-footer
--------------------------------------------------------------*/
.wpo-site-footer {
    font-family: "Almarai";
  background: #1c1f36;
  position: relative;
  font-size: 15px;
  overflow: hidden;
}

.wpo-site-footer ul {
  list-style: none;
}

.wpo-site-footer p {
  color: #fff;
  margin-top: 30px;
}

.wpo-site-footer li {
  color: #fff;
}

.wpo-site-footer .container {
  position: relative;
}

.wpo-site-footer .wpo-upper-footer {
  padding: 90px 0;
  padding-bottom: 70px;
}

@media (max-width: 991px) {
  .wpo-site-footer .wpo-upper-footer {
    padding: 50px 0 0;
  }
}

@media (max-width: 767px) {
  .wpo-site-footer .wpo-upper-footer {
    padding: 60px 0 0;
  }
}

@media (max-width: 991px) {
  .wpo-site-footer .wpo-upper-footer .col {
    min-height: 235px;
    margin-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .wpo-site-footer .wpo-upper-footer .col {
    min-height: auto;
    margin-bottom: 60px;
  }
}

.wpo-site-footer .widget-title {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .wpo-site-footer .widget-title {
    margin-bottom: 20px;
  }
}

.wpo-site-footer .widget-title h3 {
    text-align: right;
  color: #fff;
  margin: 0;
  position: relative;
  font-family: "Almarai";
  font-weight: 400;
  font-size: 20px;
}

@media (max-width: 1399px) {
  .wpo-site-footer .widget-title h3 {
    font-size: 29px;
  }
}

@media (max-width: 1199px) {
  .wpo-site-footer .widget-title h3 {
    font-size: 24px;
  }
}

.wpo-site-footer .about-widget .logo {
  max-width: 180px;
}

.wpo-site-footer .about-widget .widget-title {
  margin-bottom: 0;
}

.wpo-site-footer .about-widget p {
  margin-bottom: 0.8em;
  line-height: 1.9em;
}

.wpo-site-footer .about-widget p:last-child {
  margin-bottom: 0;
}

.wpo-site-footer .about-widget ul {
    display: inline-block;
  overflow: hidden;
  padding-top: 10px;
}

.wpo-site-footer .about-widget ul li {
  font-size: 22px;
  float: left;
}

.wpo-site-footer .about-widget ul li a {
  color: #e7e7e7;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: block;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
}

.wpo-site-footer .about-widget ul li a:hover {
  color: #fff;
  background: #70c6c7;
}

.wpo-site-footer .about-widget ul li a i::before {
  font-size: 15px;
}

.wpo-site-footer .about-widget ul li + li {
  margin-left: 15px;
}

.wpo-site-footer .wpo-service-link-widget {
  padding-left: 70px;
}

.wpo-site-footer .link-widget {
  overflow: hidden;
}

@media screen and (min-width: 1200px) {
  .wpo-site-footer .link-widget {
    padding-left: 75px;
  }
}

@media (max-width: 1199px) {
  .wpo-site-footer .link-widget {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .wpo-site-footer .link-widget {
    max-width: 350px;
  }
}

.wpo-site-footer .link-widget ul li {
  position: relative;
}

.wpo-site-footer .link-widget ul li a {
  color: #fff;
  font-size: 18px;
  line-height: 20px;
}

.wpo-site-footer .link-widget ul li a:hover {
  color: #70c6c7;
}

.wpo-site-footer .contact-ft {
  margin-top: 20px;
}

.wpo-site-footer .contact-ft ul {
  padding-right: 0; /* Remove extra padding if needed */
}

.wpo-site-footer .contact-ft ul li {
  text-align: right; /* Ensure text aligns to the right */
  padding-bottom: 15px;
  position: relative;
 
  padding-left: 0; /* Remove unnecessary left padding */
  color: #e5e3e3;
  font-size: 17px;
  display: flex; /* Use flexbox for better alignment */
  align-items: center; /* Ensure vertical alignment */
  justify-content: flex-start; /* Align icon and text properly */
}

.wpo-site-footer .contact-ft ul li i {
  position: relative; /* Remove absolute positioning */
  margin-left: 10px; /* Space between icon and text */
  margin-right: 0; /* Ensure icons align correctly */
  font-size: 18px; /* Adjust icon size if needed */
}


.wpo-site-footer .contact-ft ul li .fi:before {
  font-size: 20px;
  margin-right: 15px;
}

.wpo-site-footer .social-widget ul li a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.wpo-site-footer .social-widget ul li a:hover {
  color: #70c6c7;
}

.wpo-site-footer .social-widget ul li a i {
  margin-right: 10px;
}

.wpo-site-footer .wpo-lower-footer {
  text-align: center;
  position: relative;
}

.wpo-site-footer .wpo-lower-footer .row {
    text-align: center;
  padding: 20px 0;
  position: relative;
  border-top: 1px solid #30465C;
}

.wpo-site-footer .wpo-lower-footer .copyright {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  margin: 0;
}

.wpo-site-footer .wpo-lower-footer .copyright a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 991px) {
  .wpo-site-footer .wpo-lower-footer .copyright {
    float: none;
    display: block;
  }
}

.wpo-site-footer .instagram ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0px -3px;
}

.wpo-site-footer .instagram ul li {
  -ms-flex: 0 0 33.33%;
  -webkit-box-flex: 0;
          flex: 0 0 33.33%;
  max-width: 88.33%;
  margin-bottom: 5px;
  padding: 0px 3px;
}

.wpo-site-footer .instagram ul li img {
  width: 100%;
}

.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -200px;
  z-index: 9999;
  opacity: 0;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.sticky-on {
  opacity: 1;
  top: 0;
}

/*3.2 themart-featured-section */
.themart-featured-section .wpo-section-title {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .themart-featured-section .wpo-section-title {
    margin-bottom: 20px;
  }
}

.themart-featured-section .featured-categorie-slider .owl-nav .owl-prev,
.themart-featured-section .featured-categorie-slider .owl-nav .owl-next {
  position: absolute;
  top: -60px;
  right: 1250px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-radius: 5px;
  border: 0;
  background: transparent;
  z-index: 1;
  background: #F3F3F3;
}

.themart-featured-section .featured-categorie-slider .owl-nav .owl-prev::before,
.themart-featured-section .featured-categorie-slider .owl-nav .owl-next::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(#70c6c7), to(#70c6c7));
  background: linear-gradient(180deg, #70c6c7 0%, #70c6c7 100%);
}

.themart-featured-section .featured-categorie-slider .owl-nav .owl-prev:hover::before,
.themart-featured-section .featured-categorie-slider .owl-nav .owl-next:hover::before {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .themart-featured-section .featured-categorie-slider .owl-nav .owl-prev,
  .themart-featured-section .featured-categorie-slider .owl-nav .owl-next {
    display: none;
  }
}

.themart-featured-section .featured-categorie-slider .owl-nav .owl-prev {
  right: 1290px;
}

.themart-featured-section .featured-categorie-slider .owl-dots {
  display: none;
}

@media (max-width: 992px) {
  .themart-featured-section .featured-categorie-slider .owl-dots {
    text-align: center;
    bottom: -10px;
    position: relative;
    display: block;
  }
  .themart-featured-section .featured-categorie-slider .owl-dots button {
    width: 10px;
    height: 12px;
    border: 0;
    background: #d4e6f5;
    margin-right: 10px;
    border-radius: 50%;
  }
  .themart-featured-section .featured-categorie-slider .owl-dots .owl-dot.active {
    background-color: #70c6c7;
  }
}

.themart-featured-section .featured-item {
  text-align: center;
  background: #F9F9F9;
  border-radius: 10px;
  padding: 30px 0;
}

.themart-featured-section .featured-item .images {
  max-width: 50px;
  height: 70px;
  margin: 0 auto;
}

.themart-featured-section .featured-item .images img {
  width: 100%;
}

.themart-featured-section .featured-item .text h2 {
  margin-bottom: 0;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.themart-featured-section .featured-item .text h2 a {
  font-family: "Almarai";
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  text-align: center;
  color: #000;
}

.themart-featured-section .featured-item .text h2:hover a {
  color: #70c6c7;
}

.themart-featured-section .featured-item:hover .text h2 a {
  color: #70c6c7;
}

/*3.3 themart-offer-section */
.offer-wrap {
  position: relative;
  height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  z-index: 1;
  background: url(../images/offer-bg.jpg);
  background-position: center;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991px) {
  .offer-wrap {
    height: 390px;
  }
}

@media (max-width: 575px) {
  .offer-wrap {
    height: 350px;
  }
}

@media (max-width: 399px) {
  .offer-wrap {
    height: 300px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.offer-wrap .content {
  text-align: center;
  margin-left: 40px;
}

@media (max-width: 399px) {
  .offer-wrap .content {
    margin: 0;
  }
}

.offer-wrap .content h2 {
  font-weight: 400;
  font-size: 50px;
  line-height: 64px;
  text-align: center;
  color: #233D50;
  margin-bottom: 0;
  margin-top: -18px;
}

@media (max-width: 399px) {
  .offer-wrap .content h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.offer-wrap .content .offer-price {
  font-family: "Almarai";
  font-weight: 400;
  font-size: 35px;
  line-height: 45px;
  background: -webkit-gradient(linear, left top, left bottom, from(#95CD2F), to(#63911F));
  background: linear-gradient(180deg, #95CD2F 0%, #63911F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-wrap .content del {
  font-family: "Almarai";
  font-weight: 400;
  font-size: 35px;
  line-height: 45px;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  color: #FFFFFF;
  margin-left: 10px;
}

.offer-wrap .content .count-up {
  margin-top: 20px;
}

.offer-wrap .content .count-up #clock,
.offer-wrap .content .count-up #clock-s2,
.offer-wrap .content .count-up #clock-s3,
.offer-wrap .content .count-up #clock-s4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 335px;
}

@media (max-width: 991px) {
  .offer-wrap .content .count-up #clock,
  .offer-wrap .content .count-up #clock-s2,
  .offer-wrap .content .count-up #clock-s3,
  .offer-wrap .content .count-up #clock-s4 {
    width: 350px;
  }
}

@media (max-width: 767px) {
  .offer-wrap .content .count-up #clock,
  .offer-wrap .content .count-up #clock-s2,
  .offer-wrap .content .count-up #clock-s3,
  .offer-wrap .content .count-up #clock-s4 {
    width: 100%;
  }
}

@media (max-width: 425px) {
  .offer-wrap .content .count-up #clock,
  .offer-wrap .content .count-up #clock-s2,
  .offer-wrap .content .count-up #clock-s3,
  .offer-wrap .content .count-up #clock-s4 {
    width: 275px;
  }
}

.offer-wrap .content .count-up #clock .box,
.offer-wrap .content .count-up #clock-s2 .box,
.offer-wrap .content .count-up #clock-s3 .box,
.offer-wrap .content .count-up #clock-s4 .box {
  width: 65px;
  height: 65px;
  border: 1px solid #fff;
  font-family: "Almarai";
  font-weight: 400;
  color: #233D50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  font-size: 23px;
  line-height: 29px;
}

@media (max-width: 992px) {
  .offer-wrap .content .count-up #clock .box,
  .offer-wrap .content .count-up #clock-s2 .box,
  .offer-wrap .content .count-up #clock-s3 .box,
  .offer-wrap .content .count-up #clock-s4 .box {
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }
}

@media (max-width: 425px) {
  .offer-wrap .content .count-up #clock .box,
  .offer-wrap .content .count-up #clock-s2 .box,
  .offer-wrap .content .count-up #clock-s3 .box,
  .offer-wrap .content .count-up #clock-s4 .box {
    width: 60px;
    height: 50px;
    margin-right: 5px;
    font-size: 20px;
  }
}

.offer-wrap .content .count-up #clock .box .time,
.offer-wrap .content .count-up #clock-s2 .box .time,
.offer-wrap .content .count-up #clock-s3 .box .time,
.offer-wrap .content .count-up #clock-s4 .box .time {
  line-height: 10px;
  margin-top: 15px;
}

.offer-wrap .content .count-up #clock .box span,
.offer-wrap .content .count-up #clock-s2 .box span,
.offer-wrap .content .count-up #clock-s3 .box span,
.offer-wrap .content .count-up #clock-s4 .box span {
  margin-top: 9px;
  text-align: center;
  color: #233D50;
  font-family: "Muli";
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
}

.offer-wrap .content .theme-btn-s2 {
  padding: 10px 20px;
  border-radius: 0;
  margin-top: 25px;
}

.offer-wrap .content .theme-btn-s2::before {
  border-radius: 0;
  background: #333a7b;
  color: #FFFFFF;
 
}

.banner-two-wrap {
  height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
  background: url(../images/banner-bg.jpg);
  background-position: center;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991px) {
  .banner-two-wrap {
    margin-top: 30px;
    height: 390px;
  }
}

@media (max-width: 575px) {
  .banner-two-wrap {
    height: 350px;
  }
}

@media (max-width: 399px) {
  .banner-two-wrap {
    height: 300px;
  }
}

.banner-two-wrap .text {
  text-align: center;
}

.banner-two-wrap .text h2 {
  font-weight: 400;
  font-size: 80px;
  line-height: 103px;
  color: #fff;
  margin-bottom: 0;
  margin-top: -20px;
}

@media (max-width: 1199px) {
  .banner-two-wrap .text h2 {
    font-size: 70px;
    line-height: 95px;
  }
}

@media (max-width: 575px) {
  .banner-two-wrap .text h2 {
    font-size: 55px;
    line-height: 80px;
  }
}

@media (max-width: 399px) {
  .banner-two-wrap .text h2 {
    font-size: 30px;
    line-height: 50px;
  }
}

.banner-two-wrap .text h4 {
  font-weight: 400;
  font-size: 35px;
  line-height: 45px;
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .banner-two-wrap .text h4 {
    font-size: 30px;
  }
}

@media (max-width: 399px) {
  .banner-two-wrap .text h4 {
    font-size: 20px;
    line-height: 35px;
  }
}

.banner-two-wrap .text .theme-btn-s2 {
  padding: 10px 20px;
  border-radius: 0;
  margin-top: 20px;
}

@media (max-width: 399px) {
  .banner-two-wrap .text .theme-btn-s2 {
    padding: 8px 25px;
  }
}

.banner-two-wrap .text .theme-btn-s2::before {
  border-radius: 0;
}

/*3.4 themart-upcoming-offer-section */
.themart-upcoming-offer-section .upcoming-offer {
  position: relative;
  background: #F1E2CC;
  margin-top: 100px;
  margin-bottom: 40px;
  padding: 100px 0;
  padding-bottom: 80px;
}

@media (max-width: 991px) {
  .themart-upcoming-offer-section .upcoming-offer {
    padding: 50px 0;
    margin-top: 55px;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .themart-upcoming-offer-section .upcoming-offer {
    margin-top: 25px;
  }
}

.themart-upcoming-offer-section .upcoming-offer .section-title-text {
  position: absolute;
  left: -9px;
  top: -130px;
}

@media (max-width: 1399px) {
  .themart-upcoming-offer-section .upcoming-offer .section-title-text {
    left: -7px;
    top: -98px;
  }
}

@media (max-width: 1199px) {
  .themart-upcoming-offer-section .upcoming-offer .section-title-text {
    left: -5px;
    top: -74px;
  }
}

@media (max-width: 767px) {
  .themart-upcoming-offer-section .upcoming-offer .section-title-text {
    left: 0px;
    top: -34px;
  }
}

.themart-upcoming-offer-section .upcoming-offer .section-title-text h2 {
  margin-bottom: 0;
  font-family: "Muli";
  font-weight: 700;
  font-size: 126px;
  line-height: 163px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #F1E2CC;
}

@media (max-width: 1399px) {
  .themart-upcoming-offer-section .upcoming-offer .section-title-text h2 {
    font-size: 100px;
    line-height: 120px;
  }
}

@media (max-width: 1199px) {
  .themart-upcoming-offer-section .upcoming-offer .section-title-text h2 {
    font-size: 75px;
    line-height: 90px;
  }
}

@media (max-width: 767px) {
  .themart-upcoming-offer-section .upcoming-offer .section-title-text h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.themart-upcoming-offer-section .upcoming-offer .text {
  text-align: center;
}

.themart-upcoming-offer-section .upcoming-offer .text .shape-text {
  text-align: center;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 50px;
  color: #233D50;
  line-height: 103px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .themart-upcoming-offer-section .upcoming-offer .text .shape-text {
    font-size: 40px;
  }
}

@media (max-width: 399px) {
  .themart-upcoming-offer-section .upcoming-offer .text .shape-text {
    font-size: 30px;
    margin-bottom: 0px;
  }
}

.themart-upcoming-offer-section .upcoming-offer .text .shape-text .shape-single {
  font-size: 80px;
  font-weight: 450;
  position: relative;
  padding-left: 50px;
  padding-right: 5px;
}

@media (max-width: 767px) {
  .themart-upcoming-offer-section .upcoming-offer .text .shape-text .shape-single {
    padding-left: 25px;
    padding-right: 10px;
  }
}

@media (max-width: 399px) {
  .themart-upcoming-offer-section .upcoming-offer .text .shape-text .shape-single {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.themart-upcoming-offer-section .upcoming-offer .text .shape-text .shape-single .shape {
  position: absolute;
  left: 20px;
  top: -25px;
  z-index: 1;
}

@media (max-width: 767px) {
  .themart-upcoming-offer-section .upcoming-offer .text .shape-text .shape-single .shape {
    left: 0;
  }
}

@media (max-width: 399px) {
  .themart-upcoming-offer-section .upcoming-offer .text .shape-text .shape-single .shape {
    display: none;
  }
}

.themart-upcoming-offer-section .upcoming-offer .text .upcoming-btn {
  font-family: "Muli";
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #233D50;
  margin-left: 55px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 767px) {
  .themart-upcoming-offer-section .upcoming-offer .text .upcoming-btn {
    margin-left: 30px;
  }
}

@media (max-width: 399px) {
  .themart-upcoming-offer-section .upcoming-offer .text .upcoming-btn {
    margin-left: 0px;
  }
}

.themart-upcoming-offer-section .upcoming-offer .text .upcoming-btn:hover {
  color: #70c6c7;
}

.themart-upcoming-offer-section .upcoming-offer .left-shape {
  position: absolute;
  left: 0;
  bottom: -173px;
  height: 448px;
  width: 448px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .themart-upcoming-offer-section .upcoming-offer .left-shape {
    bottom: -160px;
  }
}

@media (max-width: 1199px) {
  .themart-upcoming-offer-section .upcoming-offer .left-shape {
    bottom: -100px;
  }
}

@media (max-width: 991px) {
  .themart-upcoming-offer-section .upcoming-offer .left-shape {
    display: none;
  }
}

.themart-upcoming-offer-section .upcoming-offer .left-image {
  position: absolute;
  left: 77px;
  bottom: -85px;
}

@media (max-width: 1199px) {
  .themart-upcoming-offer-section .upcoming-offer .left-image {
    bottom: -55px;
    max-width: 200px;
    left: 111px;
  }
}

@media (max-width: 991px) {
  .themart-upcoming-offer-section .upcoming-offer .left-image {
    display: none;
  }
}

.themart-upcoming-offer-section .upcoming-offer .right-shape {
  position: absolute;
  right: 0;
  top: -173px;
  width: 448px;
  height: 448px;
  z-index: -1;
}

@media (max-width: 1199px) {
  .themart-upcoming-offer-section .upcoming-offer .right-shape {
    top: -107px;
  }
}

@media (max-width: 991px) {
  .themart-upcoming-offer-section .upcoming-offer .right-shape {
    display: none;
  }
}

.themart-upcoming-offer-section .upcoming-offer .right-image {
  position: absolute;
  right: 44px;
  top: -108px;
}

@media (max-width: 1399px) {
  .themart-upcoming-offer-section .upcoming-offer .right-image {
    right: 0;
  }
}

@media (max-width: 1199px) {
  .themart-upcoming-offer-section .upcoming-offer .right-image {
    max-width: 325px;
    top: -42px;
  }
}

@media (max-width: 991px) {
  .themart-upcoming-offer-section .upcoming-offer .right-image {
    display: none;
  }
}

/*3.5 themart-special-product-section */
.themart-special-product-section .wpo-section-title {
  text-align: center;
}

.themart-special-product-section .offer-wrap {
  background: url(../images/offer-bg-3.jpg);
  height: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

@media (max-width: 991px) {
  .themart-special-product-section .offer-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 40px 0;
  }
}

.themart-special-product-section .offer-wrap .content {
  margin-left: 0;
  margin-right: 20px;
  text-align: right;
}

@media (max-width: 991px) {
  .themart-special-product-section .offer-wrap .content {
    text-align: center;
    margin-right: 0;
  }
}

.themart-special-product-section .offer-wrap .content h2 {
  text-align: right;
  color: #fff;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .themart-special-product-section .offer-wrap .content h2 {
    text-align: center;
  }
}

.themart-special-product-section .offer-wrap .content .offer-price {
  font-family: "Almarai";
  font-weight: 400;
  font-size: 35px;
  line-height: 45px;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.themart-special-product-section .offer-wrap .content del {
  font-family: "Almarai";
  font-weight: 400;
  font-size: 35px;
  line-height: 45px;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  color: #C4C4C4;
  margin-left: 10px;
}

.themart-special-product-section .offer-wrap .content .rating-product {
  margin-top: 10px;
}

.themart-special-product-section .offer-wrap .content .rating-product i {
  font-size: 13px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FED700), to(#F78914));
  background: linear-gradient(180deg, #FED700 0%, #F78914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.themart-special-product-section .offer-wrap .content .rating-product span {
  font-family: "Muli";
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #fff;
  padding-left: 10px;
}

.themart-special-product-section .offer-wrap .content .count-up {
  margin: 20px 0;
  margin-top: 40px;
}

@media (max-width: 575px) {
  .themart-special-product-section .offer-wrap .content .count-up {
    margin-left: 30px;
  }
}

@media (max-width: 399px) {
  .themart-special-product-section .offer-wrap .content .count-up {
    margin-left: 0;
  }
}

.themart-special-product-section .offer-wrap .content .count-up #clock-s2 .box {
  background: rgba(255, 255, 255, 0.3);
}

.themart-special-product-section .offer-wrap .content .theme-btn, .themart-special-product-section .offer-wrap .content .view-cart-btn {
  margin-top: 20px;
  border: 1px solid #fff;
  color: #fff;
  padding: 18px 70px;
  font-family: "Almarai";
  font-weight: 400;
  font-size: 20px;
}

@media (max-width: 575px) {
  .themart-special-product-section .offer-wrap .content .theme-btn, .themart-special-product-section .offer-wrap .content .view-cart-btn {
    padding: 15px 30px;
  }
}

.themart-special-product-section .offer-wrap .content .theme-btn:hover, .themart-special-product-section .offer-wrap .content .view-cart-btn:hover {
  border: 1px solid transparent;
}

@media (max-width: 991px) {
  .themart-special-product-section .special-product {
    margin-top: 30px;
  }
}

.themart-special-product-section .special-product li {
  list-style: none;
}

@media (max-width: 575px) {
  .themart-special-product-section .special-product li {
    text-align: center;
  }
}

.themart-special-product-section .special-product li .product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
}

@media (max-width: 575px) {
  .themart-special-product-section .special-product li .product-item {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

.themart-special-product-section .special-product li .product-item .image {
  padding-top: 0;
}

@media (max-width: 991px) {
  .themart-special-product-section .special-product li .product-item .image {
    width: 50%;
  }
}

@media (max-width: 575px) {
  .themart-special-product-section .special-product li .product-item .image {
    width: 100%;
  }
}

.themart-special-product-section .special-product li .product-item .image img {
  width: 100%;
}

.themart-special-product-section .special-product li .product-item .image .cart-wrap {
  top: 60%;
}

.themart-special-product-section .special-product li .product-item .text {
  width: calc(100% - 317px);
  padding-top: 0;
}

@media (max-width: 1399px) {
  .themart-special-product-section .special-product li .product-item .text {
    width: calc(100% - 228px);
  }
}

@media (max-width: 1199px) {
  .themart-special-product-section .special-product li .product-item .text {
    width: calc(100% - 138px);
  }
}

@media (max-width: 991px) {
  .themart-special-product-section .special-product li .product-item .text {
    width: 50%;
  }
}

@media (max-width: 575px) {
  .themart-special-product-section .special-product li .product-item .text {
    width: 100%;
    margin-top: 20px;
  }
}

.themart-special-product-section .special-product li:nth-child(2) .product-item .image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (max-width: 575px) {
  .themart-special-product-section .special-product li:nth-child(2) .product-item .image {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.more-btnhome{
    
    text-align: center !important;
}
/*3.6 themart-interestproduct-section */
.themart-interestproduct-section .more-btn {
  text-align: center;
  margin-top: 30px;
}

.themart-interestproduct-section .more-btn .theme-btn-s2 {
  max-width: 250px;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 20px;
}

.themart-interestproduct-section .more-btn .theme-btn-s2:hover {
  border: 1px solid #B9B9B9;
  background: transparent;
}

.themart-interestproduct-section .more-btn .theme-btn-s2::before {
background: #333a7b;
  color: #FFFFFF;
}

.product-item {
  margin-bottom: 30px;
  text-align: center;
  background: #F9F9F9;
}

.product-item .image {
    height: 400px;
  position: relative;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  overflow: hidden;
  padding-top: 15px;
}

.product-item .image .tag {
  font-family: "Muli";
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  width: auto;
  padding-right: 10px;
  padding-left: 10px;
  height: 30px;
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 10px;
}

.product-item .image .tag.new {
  background: -webkit-gradient(linear, left top, left bottom, from(#333a7b), to(#333a7b));
  background: linear-gradient(180deg, #333a7b 0%, #333a7b 100%);
}

.product-item .image .tag.sale {
  background: -webkit-gradient(linear, left top, left bottom, from(#333a7b), to(#333a7b));
  background: linear-gradient(180deg, #333a7b 0%, #333a7b 100%);
}

.product-item .image .cart-wrap {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 80%;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 1399px) {
  .product-item .image .cart-wrap {
    top: 78%;
  }
}

@media (max-width: 1199px) {
  .product-item .image .cart-wrap {
    top: 75%;
  }
}

@media (max-width: 991px) {
  .product-item .image .cart-wrap {
    top: 85%;
  }
}

@media (max-width: 767px) {
  .product-item .image .cart-wrap {
    top: 90%;
  }
}

@media (max-width: 399px) {
  .product-item .image .cart-wrap {
    top: 85%;
  }
}

.product-item .image .cart-wrap li {
  margin-right: 2px;
}

.product-item .image .cart-wrap li:first-child {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.product-item .image .cart-wrap li:nth-child(2) {
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.product-item .image .cart-wrap li:last-child {
  margin-right: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.product-item .image .cart-wrap li:hover a,
.product-item .image .cart-wrap li:hover button {
  background: #70c6c7;
  color: #fff;
}

.product-item .image .cart-wrap li a,
.product-item .image .cart-wrap li button {
  width: 40px;
  height: 40px;
  background: #4ca3de;
  color: #fff;
  line-height: 45px;
  display: block;
  text-align: center;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border: 0;
}

.product-item .image .cart-wrap li a .fi:before,
.product-item .image .cart-wrap li button .fi:before {
  font-size: 20px;
  line-height: 20px;
}

.product-item .image .cart-wrap li a i,
.product-item .image .cart-wrap li button i {
  font-size: 20px;
}

.product-item:hover .image .cart-wrap {
  opacity: 1;
  visibility: visible;
}

.product-item:hover .image .cart-wrap li {
  margin-top: -70px;
}

.product-item .text {
    direction: rtl;
    padding-right: 5px;
    font-family: 'Almarai' !important;
  text-align: center;
  padding-top: 20px;
}

.product-item .text h2 {
    text-align: right;
    padding-right: 5px;
  margin-bottom: 5px;
}


.product-item .text h6 {
    font-family: 'Almarai' !important;
 text-align: right;
 padding-right: 5px !important;
}



.product-item .text h2 a {
    font-family: 'Almarai' !important;
  color: #233D50;
  display: inline-block;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  font-family: "Almarai";
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  text-align: right;
}


@media (max-width: 1199px) {
  .product-item .text h2 a {
      font-family: 'Almarai' !important;
    font-size: 19px;
    line-height: 25px;
  }
}

@media (max-width: 991px) {
  .product-item .text h2 a {
    font-size: 21px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  .product-item .text h2 a {
    font-size: 19px;
    line-height: 25px;
  }
}

.product-item .text h2:hover a {
  color: #70c6c7;
}

.product-item .text .rating-product i {
  font-size: 13px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FED700), to(#F78914));
  background: linear-gradient(180deg, #FED700 0%, #F78914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-item .text .rating-product span {
  font-family: "Muli";
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #6F6F6F;
  padding-left: 10px;
}

.product-item .text .price {
    text-align: right;
  padding-top: 1px;
  padding-bottom: 1px;
}

@media (max-width: 1399px) {
  .product-item .text .price {
    padding-top: 8px;
  }
}

@media (max-width: 1199px) {
  .product-item .text .price {
    padding-top: 5px;
  }
}

@media (max-width: 575px) {
  .product-item .text .price {
    padding-top: 0;
  }
}

.product-item .text .price .old-price,
.product-item .text .price .present-price {
  font-weight: 700;
  font-size: 13px;
  line-height: 28px;
  color: #A5A5A5;
}

.product-item .text .price .present-price {
  color: #8a97a1;
  padding-right: 20px;
}

.product-item .text .shop-btn {
  padding-bottom: 40px;
}

@media (max-width: 1399px) {
  .product-item .text .shop-btn {
    padding-bottom: 30px;
  }
}

@media (max-width: 1199px) {
  .product-item .text .shop-btn {
    padding-bottom: 25px;
  }
}

.product-item .text .shop-btn .theme-btn-s2 {
    direction: ltr;
  font-family: "Almarai";
  font-weight: 700;
  font-size: 15px;
  line-height: 25px;
  background: transparent;
  color: #6F6F6F;
  border: 1px solid #B9B9B9;
}

@media (max-width: 1399px) {
  .product-item .text .shop-btn .theme-btn-s2 {
    padding: 15px 50px;
  }
}

@media (max-width: 1199px) {
  .product-item .text .shop-btn .theme-btn-s2 {
    padding: 15px 35px;
  }
}

.product-item .text .shop-btn .theme-btn-s2::before {
  opacity: 0;
}

.product-item .text .shop-btn .theme-btn-s2:hover {
  color: #fff;
  border: 1px solid transparent;
}

.product-item .text .shop-btn .theme-btn-s2:hover::before {
  opacity: 1;
}

/* 3.7 themart-trendingproduct-section */
.themart-trendingproduct-section .trendin-slider .owl-nav .owl-prev,
.themart-trendingproduct-section .trendin-slider .owl-nav .owl-next {
  position: absolute;
  top: -90px;
  right: 1250px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-radius: 5px;
  border: 0;
  background: transparent;
  z-index: 1;
  background: #F3F3F3;
}

.themart-trendingproduct-section .trendin-slider .owl-nav .owl-prev::before,
.themart-trendingproduct-section .trendin-slider .owl-nav .owl-next::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(#70c6c7), to(#70c6c7));
  background: linear-gradient(180deg, #70c6c7 0%, #70c6c7 100%);
}

.themart-trendingproduct-section .trendin-slider .owl-nav .owl-prev:hover::before,
.themart-trendingproduct-section .trendin-slider .owl-nav .owl-next:hover::before {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .themart-trendingproduct-section .trendin-slider .owl-nav .owl-prev,
  .themart-trendingproduct-section .trendin-slider .owl-nav .owl-next {
    display: none;
  }
}

.themart-trendingproduct-section .trendin-slider .owl-nav .owl-prev {
  right: 1290px;
}

.themart-trendingproduct-section .trendin-slider .owl-dots {
  display: none;
}

@media (max-width: 992px) {
  .themart-trendingproduct-section .trendin-slider .owl-dots {
    text-align: center;
    bottom: -10px;
    position: relative;
    display: block;
  }
  .themart-trendingproduct-section .trendin-slider .owl-dots button {
    width: 10px;
    height: 12px;
    border: 0;
    background: #d4e6f5;
    margin-right: 10px;
    border-radius: 50%;
  }
  .themart-trendingproduct-section .trendin-slider .owl-dots .owl-dot.active {
    background-color: #70c6c7;
  }
}

/* 3.8 themart-highlight-product-section */
.highlight-wrap h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 51px;
  color: #233D50;
  text-align: left;
  margin-bottom: 48px;
}

@media (max-width: 767px) {
  .highlight-wrap h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 38px;
  }
}

@media (max-width: 399px) {
  .highlight-wrap h2 {
    text-align: center;
    font-size: 30px;
  }
}

.product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

@media (max-width: 399px) {
  .product-card {
    display: block;
    text-align: center;
    margin-bottom: 40px;
  }
}

.product-card .card-image {
  height: 130px;
  width: 170px;
  background: #F9F9F9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

@media (max-width: 1199px) {
  .product-card .card-image {
    width: 145px;
  }
}

@media (max-width: 399px) {
  .product-card .card-image {
    width: 200px;
    margin: 0 auto;
    margin-bottom: 15px;
  }
}

.product-card .content {
  margin-left: 30px;
}

@media (max-width: 1399px) {
  .product-card .content {
    margin-left: 5px;
  }
}

@media (max-width: 991px) {
  .product-card .content {
    margin-left: 10px;
  }
}

@media (max-width: 399px) {
  .product-card .content {
    margin-left: 0;
  }
}

.product-card .content h3 a {
  color: #233D50;
  display: inline-block;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  font-family: "Muli";
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
}

@media (max-width: 1199px) {
  .product-card .content h3 a {
    font-size: 17px;
    line-height: 25px;
  }
}

@media (max-width: 991px) {
  .product-card .content h3 a {
    font-size: 22px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  .product-card .content h3 a {
    font-size: 19px;
    line-height: 25px;
  }
}

.product-card .content h3:hover a {
  color: #70c6c7;
}

.product-card .content .rating-product i {
  font-size: 13px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FED700), to(#F78914));
  background: linear-gradient(180deg, #FED700 0%, #F78914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card .content .rating-product span {
  font-family: "Muli";
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #6F6F6F;
  padding-left: 10px;
}

.product-card .content .price {
  padding-top: 13px;
  font-weight: 700;
  font-size: 17px;
  line-height: 28px;
}

@media (max-width: 1399px) {
  .product-card .content .price {
    padding-top: 8px;
  }
}

@media (max-width: 1199px) {
  .product-card .content .price {
    padding-top: 5px;
    font-size: 17px;
    line-height: 25px;
  }
}

@media (max-width: 575px) {
  .product-card .content .price {
    padding-top: 0;
  }
}

.product-card .content .price .old-price,
.product-card .content .price .present-price {
  color: #A5A5A5;
}

.product-card .content .price .present-price {
  color: #233D50;
  padding-right: 20px;
}

@media (max-width: 1199px) {
  .product-card .content .price .present-price {
    padding-right: 5px;
  }
}

/* 3.9 themart-cta-section */
@media (max-width: 991px) {
  .themart-cta-section {
    padding-top: 60px;
  }
}

@media (max-width: 767px) {
  .themart-cta-section {
    padding-top: 40px;
  }
}

.themart-cta-section .cta-wrap {
  background: url(../images/cta-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.themart-cta-section .cta-content {
  padding: 100px;
  padding-right: 0;
}

@media (max-width: 1399px) {
  .themart-cta-section .cta-content {
    padding-left: 60px;
  }
}

@media (max-width: 1199px) {
  .themart-cta-section .cta-content {
    padding: 50px;
    padding-right: 0;
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .themart-cta-section .cta-content {
    padding: 50px;
  }
}

@media (max-width: 575px) {
  .themart-cta-section .cta-content {
    padding: 30px;
  }
}

@media (max-width: 399px) {
  .themart-cta-section .cta-content {
    padding: 15px;
  }
}

.themart-cta-section .cta-content h2 {
  font-family: "Almarai";
  font-weight: 400;
  font-size: 35px;
  line-height: 50px;
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 1399px) {
  .themart-cta-section .cta-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .themart-cta-section .cta-content h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 399px) {
  .themart-cta-section .cta-content h2 {
    font-size: 20px;
    line-height: 30px;
  }
}

.themart-cta-section .cta-content .input-1 {
  margin-top: 35px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 575px) {
  .themart-cta-section .cta-content .input-1 {
    margin-top: 20px;
  }
}

.themart-cta-section .cta-content .input-1 .form-control {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 40px;
  color: #6F6F6F;
  background: #fff;
  padding: 10px 20px;
  padding-right: 0;
  border: 0;
  border-radius: 0;
  max-width: 375px;
}

@media (max-width: 991px) {
  .themart-cta-section .cta-content .input-1 .form-control {
    max-width: 280px;
  }
}

@media (max-width: 399px) {
  .themart-cta-section .cta-content .input-1 .form-control {
    font-size: 15px;
    line-height: 25px;
  }
}

.themart-cta-section .cta-content .submit {
  position: absolute;
  right: 0;
  top: 0;
}

.themart-cta-section .cta-content .submit .theme-btn-s2 {
  border: 0;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  padding: 11px 40px;
  border-radius: 0;
}

@media (max-width: 399px) {
  .themart-cta-section .cta-content .submit .theme-btn-s2 {
    font-size: 15px;
    line-height: 25px;
    color: #fff;
    padding: 11px 20px;
  }
}

.themart-cta-section .cta-content .submit .theme-btn-s2::before {
  border-radius: 0;
}

.themart-cta-section .cta-content .submit .theme-btn-s2:hover {
  background: #70c6c7;
}

/*--------------------------------------------------------------
5. Home-style-2
--------------------------------------------------------------*/
/*5.1 themart-category-section */
.themart-category-section {
  padding-bottom: 90px;
}

.themart-category-section.s2 {
  padding-top: 200px;
}

@media (max-width: 991px) {
  .themart-category-section.s2 {
    padding-top: 100px;
  }
}

@media (max-width: 767px) {
  .themart-category-section.s2 {
    padding-top: 70px;
  }
}

@media (max-width: 991px) {
  .themart-category-section {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .themart-category-section {
    padding-bottom: 50px;
  }
}

.themart-category-section .category-card {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 991px) {
  .themart-category-section .category-card {
    margin: 0 50px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .themart-category-section .category-card {
    margin: 0px;
    margin-bottom: 30px;
  }
}

.themart-category-section .category-card img {
  width: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.themart-category-section .category-card .text {
  position: absolute;
  left: 50%;
  bottom: 30px;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 11;
}

.themart-category-section .category-card .text h3 {
  margin-bottom: 0;
}

.themart-category-section .category-card .text h3 a {
  color: #233D50;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  padding: 12px 38px;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  font-family: "Almarai";
  background: #fff;
  transition: all .3s ease-in-out;
}

@media (max-width: 1199px) {
  .themart-category-section .category-card .text h3 a {
    padding: 14px 35px;
  }
}

@media (max-width: 991px) {
  .themart-category-section .category-card .text h3 a {
    padding: 18px 38px;
  }
}

.themart-category-section .category-card .text:hover h3 a {
  color: #70c6c7;
}

.themart-category-section .category-card:before, .themart-category-section .category-card:after {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  content: "";
  z-index: 9;
  opacity: .4;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.themart-category-section .category-card:after {
  right: 0px;
  bottom: 0px;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}

.themart-category-section .category-card:hover::after, .themart-category-section .category-card:hover::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.themart-category-section .category-card:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/* 5.2 themart-banner-section*/
.themart-banner-section .banner-wrap {
  padding-top: 140px;
  padding-bottom: 120px;
  padding-right: 130px;
  background: url(../images/banner-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 399px) {
  .themart-banner-section .banner-wrap {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    padding-right: 0;
    padding-top: 40px;
    padding-bottom: 20px;
  }
}

.themart-banner-section .banner-wrap .content {
  text-align: center;
  padding-left: 130px;
  position: relative;
  z-index: 0;
}

@media (max-width: 1399px) {
  .themart-banner-section .banner-wrap .content {
    padding-left: 80px;
  }
}

@media (max-width: 1199px) {
  .themart-banner-section .banner-wrap .content {
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  .themart-banner-section .banner-wrap .content {
    padding-left: 0px;
    margin: 0 auto;
  }
}

.themart-banner-section .banner-wrap .content .bg-text {
  position: absolute;
  left: 26%;
  top: -110px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .themart-banner-section .banner-wrap .content .bg-text {
    left: 16%;
  }
}

@media (max-width: 1199px) {
  .themart-banner-section .banner-wrap .content .bg-text {
    left: 12%;
    top: -80px;
  }
}

@media (max-width: 767px) {
  .themart-banner-section .banner-wrap .content .bg-text {
    left: 26%;
    top: -59px;
  }
}

@media (max-width: 575px) {
  .themart-banner-section .banner-wrap .content .bg-text {
    top: -40px;
    left: 28%;
  }
}

@media (max-width: 399px) {
  .themart-banner-section .banner-wrap .content .bg-text {
    top: -35px;
    left: 30%;
  }
}

.themart-banner-section .banner-wrap .content .bg-text h1 {
  font-weight: 700;
  font-size: 150px;
  line-height: 192px;
  text-align: center;
  color: #F3F3F3;
}

@media (max-width: 1199px) {
  .themart-banner-section .banner-wrap .content .bg-text h1 {
    font-size: 120px;
    line-height: 152px;
  }
}

@media (max-width: 767px) {
  .themart-banner-section .banner-wrap .content .bg-text h1 {
    font-size: 85px;
    line-height: 120px;
  }
}

@media (max-width: 575px) {
  .themart-banner-section .banner-wrap .content .bg-text h1 {
    font-size: 60px;
    line-height: 80px;
  }
}

@media (max-width: 399px) {
  .themart-banner-section .banner-wrap .content .bg-text h1 {
    font-size: 40px;
    line-height: 60px;
  }
}

.themart-banner-section .banner-wrap .content h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 64px;
  color: #233D50;
  padding: 0 10px;
}

@media (max-width: 1199px) {
  .themart-banner-section .banner-wrap .content h2 {
    font-size: 40px;
    line-height: 54px;
  }
}

@media (max-width: 991px) {
  .themart-banner-section .banner-wrap .content h2 {
    font-size: 33px;
    line-height: 40px;
  }
}

@media (max-width: 767px) {
  .themart-banner-section .banner-wrap .content h2 {
    padding: 0 20px;
  }
}

@media (max-width: 575px) {
  .themart-banner-section .banner-wrap .content h2 {
    font-size: 25px;
    line-height: 30px;
    padding: 0 8px;
  }
}

@media (max-width: 399px) {
  .themart-banner-section .banner-wrap .content h2 {
    font-size: 20px;
    line-height: 25px;
    padding: 0 20px;
  }
}

.themart-banner-section .banner-wrap .content p {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0.3em;
  color: #6F6F6F;
  padding-top: 14px;
  padding-bottom: 18px;
}

@media (max-width: 1399px) {
  .themart-banner-section .banner-wrap .content p {
    font-size: 18px;
    padding-top: 5px;
  }
}

@media (max-width: 1199px) {
  .themart-banner-section .banner-wrap .content p {
    font-size: 16px;
    padding-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  .themart-banner-section .banner-wrap .content p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .themart-banner-section .banner-wrap .content p {
    color: #525252;
  }
}

@media (max-width: 575px) {
  .themart-banner-section .banner-wrap .content p {
    font-size: 14px;
    padding-bottom: 10px;
  }
}

.themart-banner-section .banner-wrap .content a {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #70c6c7;
}

@media (max-width: 575px) {
  .themart-banner-section .banner-wrap .content a {
    font-size: 15px;
  }
}

.themart-banner-section .banner-wrap {
  background: #f5f5f5;
  position: relative;
}

@media (max-width: 991px) {
  .themart-banner-section .banner-wrap {
    padding-top: 100px;
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .themart-banner-section .banner-wrap {
    padding: 50px 0;
  }
}

.themart-banner-section .banner-wrap .rigth-image {
  position: absolute;
  top: -162px;
  right: -189px;
  height: 100%;
  width: 1000px;
}

@media (max-width: 1399px) {
  .themart-banner-section .banner-wrap .rigth-image {
    width: 900px;
    top: -130px;
  }
}

@media (max-width: 1199px) {
  .themart-banner-section .banner-wrap .rigth-image {
    width: 800px;
    top: -95px;
    right: -169px;
  }
}

@media (max-width: 991px) {
  .themart-banner-section .banner-wrap .rigth-image {
    width: 500px;
    top: 0px;
    right: -103px;
  }
}

@media (max-width: 767px) {
  .themart-banner-section .banner-wrap .rigth-image {
    display: none;
  }
}

.themart-banner-section .banner-wrap .rigth-image img {
  width: 100%;
}

/* 5.3 wpo-about-section */
.wpo-about-section .wpo-about-wrap .wpo-about-img {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 570px;
  border-radius: 6px;
}

.wpo-about-section .wpo-about-wrap .wpo-about-img:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(20, 33, 43, 0.25);
  border-radius: 6px;
}

.wpo-about-section .wpo-about-wrap .wpo-about-img img {
  width: 100%;
  border-radius: 6px;
}

.wpo-about-section .wpo-about-text {
  max-width: 600px;
  position: relative;
}

@media (max-width: 1400px) {
  .wpo-about-section .wpo-about-text {
    padding-left: 40px;
  }
}

@media (max-width: 991px) {
  .wpo-about-section .wpo-about-text {
    padding-left: 0px;
    padding-top: 70px;
  }
}

.wpo-about-section .wpo-about-text h4 {
  font-size: 21px;
  color: #70c6c7;
  font-family: "Almarai";
}

@media (max-width: 1200px) {
  .wpo-about-section .wpo-about-text h4 {
    font-size: 18px;
  }
}

@media (max-width: 500px) {
  .wpo-about-section .wpo-about-text h4 {
    font-size: 14px;
  }
}

.wpo-about-section .wpo-about-text h2 {
  font-size: 60px;
  margin: 30px 0;
  font-weight: 400;
  line-height: 70px;
}

@media (max-width: 1400px) {
  .wpo-about-section .wpo-about-text h2 {
    font-size: 55px;
  }
}

@media (max-width: 1200px) {
  .wpo-about-section .wpo-about-text h2 {
    font-size: 36px;
    line-height: 50px;
    margin: 20px 0;
  }
}

@media (max-width: 500px) {
  .wpo-about-section .wpo-about-text h2 {
    font-size: 26px;
    line-height: 36px;
    margin: 15px 0;
  }
}

.wpo-about-section .wpo-about-text h2 span {
  color: #70c6c7;
}

.wpo-about-section .wpo-about-text b {
  color: #233D50;
  font-weight: 600;
}

.wpo-about-section .wpo-about-text p {
  font-size: 18px;
  margin-bottom: 35px;
}

@media (max-width: 500px) {
  .wpo-about-section .wpo-about-text p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

/* 5.4 wpo-service-section */
.wpo-service-section .service-wrap .service-item {
  background: #fff;
  padding: 20px 30px;
  border: 1px solid #F0F0F0;
  border-radius: 6px;
}

@media (max-width: 1199px) {
  .wpo-service-section .service-wrap .service-item {
    padding: 22px 15px;
  }
}

@media (max-width: 991px) {
  .wpo-service-section .service-wrap .service-item {
    margin-bottom: 30px;
  }
}

.wpo-service-section .service-wrap .service-item .service-item-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .wpo-service-section .service-wrap .service-item .service-item-img {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .wpo-service-section .service-wrap .service-item .service-item-text {
    text-align: center;
  }
}

.wpo-service-section .service-wrap .service-item .service-item-text h2 {
  font-family: "Almarai";
  font-size: 26px;
  font-weight: 400;
  line-height: 35px;
  color: #525252;
  margin-top: 20px;
  text-transform: capitalize;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

@media (max-width: 1199px) {
  .wpo-service-section .service-wrap .service-item .service-item-text h2 {
    font-size: 24px;
    line-height: 30px;
  }
}

@media (max-width: 991px) {
  .wpo-service-section .service-wrap .service-item .service-item-text h2 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .wpo-service-section .service-wrap .service-item .service-item-text h2 {
    font-size: 20px;
  }
}

@media (max-width: 399px) {
  .wpo-service-section .service-wrap .service-item .service-item-text h2 {
    font-size: 19px;
  }
}

.wpo-service-section .service-wrap .service-item .service-item-text h2 span {
  color: #70c6c7;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.wpo-service-section .service-wrap .service-item .service-item-text p {
  font-family: "Muli";
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #6F6F6F;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  margin-bottom: 0;
}

/* 5.5 themart-partners-section  */
.themart-partners-section {
  background: url(../images/partners/partners-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
}

.themart-partners-section::before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(50, 50, 50, 0.8);
  z-index: -1;
}

.themart-partners-section .hidden {
  display: none;
}

.themart-partners-section .partners-slider .grid img {
  margin: 0 auto;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.themart-partners-section .partners-slider .owl-item img {
  width: unset;
}

.themart-partners-section .partners-slider .owl-nav {
  display: none;
}

/*5.6 themart-product-category-section*/
.themart-product-category-section {
  padding-bottom: 0;
}

.themart-product-category-section .category-wrap .category-item {
  list-style: none;
  margin-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .themart-product-category-section .category-wrap .category-item {
    display: block;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 35px;
  }
}

.themart-product-category-section .category-wrap .category-item li {
  padding: 20px;
}

@media (max-width: 1399px) {
  .themart-product-category-section .category-wrap .category-item li {
    padding: 20px 10px;
  }
}

@media (max-width: 1199px) {
  .themart-product-category-section .category-wrap .category-item li {
    padding: 10px;
  }
}

@media (max-width: 767px) {
  .themart-product-category-section .category-wrap .category-item li {
    width: 48%;
    display: inline-block;
    padding: 10px 0;
    padding-top: 0;
    text-align: center;
  }
}

.themart-product-category-section .category-wrap .category-item li a {
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #484848;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 1199px) {
  .themart-product-category-section .category-wrap .category-item li a {
    font-size: 18px;
  }
}

.themart-product-category-section .category-wrap .category-item li .current {
  color: #70c6c7;
}

/* 5.7 themart-gallery-section*/
.themart-gallery-section .sortable-gallery .portfolio-grids {
  margin: 0 -7.5px;
}

.themart-gallery-section .sortable-gallery .portfolio-grids .grid {
  width: 50%;
  float: left;
  padding: 0 7.5px 15px;
  overflow: hidden;
}

@media (max-width: 1500px) {
  .themart-gallery-section .sortable-gallery .portfolio-grids .grid {
    padding: 0 5.5px 10px;
  }
}

@media (max-width: 991px) {
  .themart-gallery-section .sortable-gallery .portfolio-grids .grid {
    padding: 0 4.5px 8px;
  }
}

@media (max-width: 600px) {
  .themart-gallery-section .sortable-gallery .portfolio-grids .grid {
    width: 100%;
  }
}

.themart-gallery-section .sortable-gallery .portfolio-grids .grid:nth-child(2) .img-holder:before {
  top: 11px;
  height: 94%;
}

@media (max-width: 1199px) {
  .themart-gallery-section .sortable-gallery .portfolio-grids .grid:nth-child(2) .img-holder:before {
    top: 8px;
  }
}

@media (max-width: 991px) {
  .themart-gallery-section .sortable-gallery .portfolio-grids .grid:nth-child(2) .img-holder:before {
    top: 5px;
  }
}

@media (max-width: 767px) {
  .themart-gallery-section .sortable-gallery .portfolio-grids .grid:nth-child(2) .img-holder:before {
    top: 7px;
  }
}

@media (max-width: 575px) {
  .themart-gallery-section .sortable-gallery .portfolio-grids .grid:nth-child(2) .img-holder:before {
    top: 6px;
  }
}

@media (max-width: 399px) {
  .themart-gallery-section .sortable-gallery .portfolio-grids .grid:nth-child(2) .img-holder:before {
    top: 5px;
  }
}

.themart-gallery-section .sortable-gallery .portfolio-grids .grid:nth-child(4) .img-holder:before {
  top: 9px;
  height: 94%;
}

@media (max-width: 1199px) {
  .themart-gallery-section .sortable-gallery .portfolio-grids .grid:nth-child(4) .img-holder:before {
    top: 8px;
  }
}

@media (max-width: 991px) {
  .themart-gallery-section .sortable-gallery .portfolio-grids .grid:nth-child(4) .img-holder:before {
    top: 5px;
  }
}

@media (max-width: 767px) {
  .themart-gallery-section .sortable-gallery .portfolio-grids .grid:nth-child(4) .img-holder:before {
    top: 7px;
  }
}

@media (max-width: 575px) {
  .themart-gallery-section .sortable-gallery .portfolio-grids .grid:nth-child(4) .img-holder:before {
    top: 6px;
  }
}

@media (max-width: 399px) {
  .themart-gallery-section .sortable-gallery .portfolio-grids .grid:nth-child(4) .img-holder:before {
    top: 5px;
  }
}

.themart-gallery-section .sortable-gallery .portfolio-grids .grid .img-holder {
  position: relative;
}

.themart-gallery-section .sortable-gallery .portfolio-grids .grid .img-holder IMG {
  width: 100%;
}

.themart-gallery-section .sortable-gallery .portfolio-grids .grid .img-holder .fancybox .hover-content {
  -webkit-transition: all .3s;
  transition: all .3s;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  text-align: center;
  width: 260px;
}

.themart-gallery-section .sortable-gallery .portfolio-grids .grid .img-holder .fancybox .hover-content i {
  font-size: 35px;
  color: #525252;
}

@media (max-width: 991px) {
  .themart-gallery-section .sortable-gallery .portfolio-grids .grid .img-holder .fancybox .hover-content i {
    font-size: 30px;
  }
}

.themart-gallery-section .sortable-gallery .portfolio-grids .grid .img-holder:before {
  position: absolute;
  left: 2%;
  top: 2%;
  width: 96%;
  height: 96%;
  content: "";
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.themart-gallery-section .sortable-gallery .portfolio-grids .grid .img-holder:hover .hover-content {
  opacity: 1;
}

.themart-gallery-section .sortable-gallery .portfolio-grids .grid .img-holder:hover:before {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.themart-gallery-section.themart-gallery-section-s2 {
  padding-bottom: 0;
}

/*5.8 wpo-blog-section */
@media (max-width: 991px) {
  .wpo-blog-section {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .wpo-blog-section {
    padding-bottom: 50px;
  }
}

.wpo-blog-section .blog-wrap {
  margin-top: 15px;
}

@media (max-width: 991px) {
  .wpo-blog-section .blog-wrap .blog-item {
    margin-bottom: 30px;
  }
}

.wpo-blog-section .blog-wrap .blog-item .post-image {
  position: relative;
}

.wpo-blog-section .blog-wrap .blog-item .post-image .post-img-title {
  position: absolute;
  top: 20px;
  left: 20px;
}

.wpo-blog-section .blog-wrap .blog-item .post-image .post-img-title span {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #fff;
  background: #70c6c7;
  padding: 9px 20px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .wpo-blog-section .blog-wrap .blog-item .post-image .post-img-title span {
    font-size: 15px;
  }
}

.wpo-blog-section .blog-wrap .blog-item .post-image img {
  width: 100%;
}

.wpo-blog-section .blog-wrap .blog-item .post-content {
  padding-top: 30px;
  padding-left: 0;
}

.wpo-blog-section .blog-wrap .blog-item .post-content .post-date {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wpo-blog-section .blog-wrap .blog-item .post-content .post-date li {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  color: #525252;
  margin-right: 18px;
  padding-left: 13px;
}

@media (max-width: 1199px) {
  .wpo-blog-section .blog-wrap .blog-item .post-content .post-date li {
    margin-right: 10px;
    font-size: 16px;
    line-height: 27px;
  }
}

.wpo-blog-section .blog-wrap .blog-item .post-content .post-date li::before {
  position: absolute;
  content: "";
  left: 2px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #70c6c7;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.wpo-blog-section .blog-wrap .blog-item .post-content h2 a {
  font-weight: 600;
  font-size: 30px;
  line-height: 50px;
  color: #233D50;
  margin-top: 5px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 1399px) {
  .wpo-blog-section .blog-wrap .blog-item .post-content h2 a {
    font-size: 29px;
  }
}

@media (max-width: 1199px) {
  .wpo-blog-section .blog-wrap .blog-item .post-content h2 a {
    font-size: 24px;
    line-height: 35px;
  }
}

.wpo-blog-section .blog-wrap .blog-item .post-content h2:hover a {
  color: #70c6c7;
}

.wpo-blog-section .blog-wrap .blog-item .post-content p {
  font-size: 18px;
  line-height: 30px;
  color: #525252;
}

@media (max-width: 1199px) {
  .wpo-blog-section .blog-wrap .blog-item .post-content p {
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 10px;
  }
}

.wpo-blog-section .blog-wrap .blog-item .post-content .post-btn {
  text-decoration: underline;
  font-size: 18px;
  line-height: 30px;
  color: #70c6c7;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.wpo-blog-section .blog-wrap .blog-item .post-content .post-btn:hover {
  color: #233D50;
}

/*===========================
 6. Shop-Page
===========================*/
.shop-section {
  padding: 80px 0;
}

.shop-section .shop-section-top-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
}

@media (max-width: 767px) {
  .shop-section .shop-section-top-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.shop-section .shop-section-top-inner .shoping-list {
  border: 1px solid #D9D9D9;
  padding: 3px;
}

.shop-section .shop-section-top-inner .shoping-list li {
  margin-right: 5px;
}

.shop-section .shop-section-top-inner .shoping-list li:nth-child(2) {
  margin-right: 0;
}

.shop-section .shop-section-top-inner .shoping-list .nav-link {
  border: 0;
  background: transparent;
}

.shop-section .shop-section-top-inner .shoping-list .nav-link.active {
  background-color: #70c6c7;
}

.shop-section .shop-section-top-inner .shoping-list .nav-link.active i {
  color: #fff;
}

.shop-section .shop-section-top-inner .shoping-list i {
  color: #233D50;
}

.shop-section .shop-section-top-inner .shoping-product {
  width: 50%;
}

@media (max-width: 1399px) {
  .shop-section .shop-section-top-inner .shoping-product {
    width: auto;
  }
}

@media (max-width: 767px) {
  .shop-section .shop-section-top-inner .shoping-product {
    width: 100%;
  }
}

.shop-section .shop-section-top-inner .shoping-product p {
    font-family: 'Almarai';
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #6F6F6F;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .shop-section .shop-section-top-inner .shoping-product p {
    text-align: center;
    margin-bottom: 10px;
  }
}

.shop-section .shop-section-top-inner .shoping-product p span {
  color: #70c6c7;
}

@media (max-width: 352px) {
  .shop-section .shop-section-top-inner .shoping-product {
    margin-top: 10px;
  }
}

.shop-section .shop-section-top-inner .short-by {
  border: 1px solid #D9D9D9;
  height: 45px;
  width: 270px;
  padding: 0 10px;
}

@media (max-width: 767px) {
  .shop-section .shop-section-top-inner .short-by {
    margin-top: 10px;
    width: 100%;
  }
}

.shop-section .shop-section-top-inner .short-by ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 575px) {
  .shop-section .shop-section-top-inner .short-by ul {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.shop-section .shop-section-top-inner .short-by ul li {
  list-style: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #6F6F6F;
}

.shop-section .shop-section-top-inner .short-by ul li select {
  border: 0;
  padding: 9px 0;
  width: 150px;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #6F6F6F;
}

.shop-section .shop-section-top-inner .short-by ul li select:focus {
  outline: none;
}

@media (max-width: 1440px) {
  .shop-section .shop-section-top-inner .short-by ul li select {
    width: 100px;
  }
}

.shop-section .shop-filter-wrap {
  /*** category-widget ***/
  /*** priceFilterSlider-widget ***/
  /* new-product */
  /*** tag-widget ***/
}

@media (min-width: 992px) {
  .shop-section .shop-filter-wrap {
    padding-right: 30px;
  }
}

@media (max-width: 991px) {
  .shop-section .shop-filter-wrap {
    margin-bottom: 50px;
  }
}

.shop-section .shop-filter-wrap .filter-item {
  padding: 30px;
  border: 1px solid #D9D9D9;
  margin-bottom: 40px;
}

.shop-section .shop-filter-wrap .filter-item:first-child {
  border: 1px solid transparent;
  padding: 0;
}

.shop-section .shop-filter-wrap .shop-filter-item {
  position: relative;
}

.shop-section .shop-filter-wrap .shop-filter-item h2 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 3px solid #F2F2F2;
  font-weight: 400;
  font-size: 25px;
  margin-top: -5px;
  color: #233D50;
}

.shop-section .shop-filter-wrap .shop-filter-item h2:after {
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100px;
  height: 3px;
  background: -webkit-gradient(linear, left top, left bottom, from(#333a7b ), to(#333a7b ));
  background: linear-gradient(180deg, #333a7b  0%, #333a7b  100%);
  content: "";
}

.shop-section .shop-filter-wrap .shop-filter-item ul li {
  position: relative;
  list-style: none;
}

.shop-section .shop-filter-wrap .shop-filter-item ul li label {
    font-family: 'Almarai';
  padding: 8px 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #6F6F6F;
}

.shop-section .shop-filter-wrap .shop-filter-item .shop-filter-search form div {
  position: relative;
  margin-top: 20px;
}

.shop-section .shop-filter-wrap .shop-filter-item .shop-filter-search input {
  font-family: 'Almarai';
  height: 50px;
  font-size: 17px;
  padding: 6px 70px 6px 20px;
  border: 1px solid #D9D9D9;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #6F6F6F;
}

.shop-section .shop-filter-wrap .shop-filter-item .shop-filter-search form button {
  background: -webkit-gradient(linear, left top, left bottom, from(#333a7b), to(#333a7b));
  background: linear-gradient(180deg, #333a7b  0%, #333a7b  100%);
  width: 45px;
  height: 43px;
  line-height: 45px;
  text-align: center;
  font-size: 18px;
  color: #70c6c7;
  border: 0;
  outline: 0;
  position: absolute;
  right: 3px;
  top: 3px;
}

.shop-section .shop-filter-wrap .shop-filter-item .shop-filter-search form button i {
  color: #fff;
}

@media (min-width: 992px) {
  .shop-section .shop-filter-wrap.s2 {
    padding-right: 0;
    padding-left: 30px;
  }
}

.shop-section .shop-filter-wrap .category-widget ul {
  list-style: none;
}

.shop-section .shop-filter-wrap .category-widget ul li {
  font-size: 19px;
  position: relative;
}

@media (max-width: 767px) {
  .shop-section .shop-filter-wrap .category-widget ul li {
    font-size: 16px;
  }
}

.shop-section .shop-filter-wrap .category-widget ul > li + li {
  padding-top: 12px;
}

.shop-section .shop-filter-wrap .category-widget ul a {
    font-family: 'Almarai';
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  color: #233D50;
}

.shop-section .shop-filter-wrap .category-widget ul a span {
  display: inline-block;
}

.shop-section .shop-filter-wrap .category-widget ul a:hover {
  color: #70c6c7;
}

.shop-section .shop-filter-wrap .shopWidgetWraper #sliderRange {
  position: relative;
  width: 100%;
  display: block;
  height: 4px;
  background: #D9D9D9;
  border-radius: 0;
  margin: 24px 0 20px;
}

.shop-section .shop-filter-wrap .shopWidgetWraper #sliderRange .ui-slider-range {
  background: -webkit-gradient(linear, left top, left bottom, from(#333a7b ), to(#333a7b ));
  background: linear-gradient(180deg, #333a7b  0%, #333a7b  100%);
  position: absolute;
  height: 100%;
  border-radius: 0;
  padding: 0;
}

.shop-section .shop-filter-wrap .shopWidgetWraper #sliderRange .ui-slider-handle {
  width: 15px;
  height: 15px;
  position: absolute;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#333a7b ), to(#333a7b ));
  background: linear-gradient(180deg, #333a7b  0%, #333a7b  100%);
  top: -5px;
  cursor: pointer;
}

.shop-section .shop-filter-wrap .shopWidgetWraper #sliderRange .ui-slider-handle:focus,
.shop-section .shop-filter-wrap .shopWidgetWraper #sliderRange .ui-slider-handle:active,
.shop-section .shop-filter-wrap .shopWidgetWraper #sliderRange .ui-slider-handle:focus-visible {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
}

.shop-section .shop-filter-wrap .shopWidgetWraper .pfsWrap {
  margin: 0;
}

.shop-section .shop-filter-wrap .shopWidgetWraper label {
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: #6F6F6F;
  font-family: "Almarai";
}

.shop-section .shop-filter-wrap .shopWidgetWraper span#amount {
  margin-left: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  background: -webkit-gradient(linear, left top, left bottom, from(#0dcaf0 ), to(#0dcaf0 ));
  background: linear-gradient(180deg, #0dcaf0  0%, #0dcaf0  100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.shop-section .shop-filter-wrap .new-product ul li .product-card .card-image {
  width: 112px;
  height: 90px;
}

.shop-section .shop-filter-wrap .new-product ul li .product-card .content h3 {
  font-size: 18px;
  line-height: 23px;
}

.shop-section .shop-filter-wrap .new-product ul li .product-card .content .price {
  font-size: 16px;
  line-height: 20px;
}

.shop-section .shop-filter-wrap .tag-widget ul {
  overflow: hidden;
  list-style: none;
}

.shop-section .shop-filter-wrap .tag-widget ul li {
  float: left;
  margin: 0 8px 8px 0;
}

.shop-section .shop-filter-wrap .tag-widget ul li a {
  font-family: 'Almarai' !important;
  display: inline-block;
  padding: 5px 18px;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  color: #6F6F6F;
}

.shop-section .shop-filter-wrap .tag-widget ul li a:hover {
  background: #70c6c7;
  color: #fff;
}

.shop-section .shop-filter-wrap .col:first-child .shop-filter-item::before, .shop-section .shop-filter-wrap .col:last-child .shop-filter-item::before {
  display: none;
}

.shop-section .product-list .product-wrap .product-item .product-img {
  float: left;
  overflow: hidden;
  padding: 55px;
}

@media (max-width: 575px) {
  .shop-section .product-list .product-wrap .product-item .product-img {
    float: none;
  }
}

.shop-section .product-list .product-wrap .product-item .product-content {
  overflow: hidden;
  min-height: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1400px) {
  .shop-section .product-list .product-wrap .product-item .product-content h3 {
    font-size: 18px;
  }
}

.shop-section .product-list .product-wrap .product-item .product-content p {
  margin-top: 15px;
}

@media (max-width: 1400px) {
  .shop-section .product-wrap .product-item .product-content h3 {
    font-size: 16px;
  }
}

.shop-section input[type=radio] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 2rem;
  margin: 0 -2rem -2rem 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 2rem;
  opacity: 0.001;
}

.title {
  letter-spacing: -.065em;
}

.topcoat-radio-button__label {
  line-height: 2rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-left: 35px;
  cursor: pointer;
}

.topcoat-radio-button {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  vertical-align: top;
  width: 1.2rem;
  height: 1.3rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Background */
.topcoat-radio-button:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid #D9D9D9;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

input[type=radio]:checked + .topcoat-radio-button:before {
  border: 1px solid transparent;
  background: #70c6c7;
}

/* Checkmark */
.topcoat-radio-button:after {
  opacity: 0;
  content: "\e64c";
  font-size: 15px;
  font-family: 'themify';
  position: absolute;
  color: #fff;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

input[type=radio]:checked + .topcoat-radio-button:after {
  opacity: 1;
}

/*tab product-wrap */
.shop-section .product-row .product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}

@media (max-width: 575px) {
  .shop-section .product-row .product-item {
    display: block;
    margin: 0 50px;
    margin-bottom: 30px;
  }
}

@media (max-width: 399px) {
  .shop-section .product-row .product-item {
    margin: 0;
    margin-bottom: 30px;
  }
}

.shop-section .product-row .product-item .image {
  width: calc(100% - 100px);
}

@media (max-width: 991px) {
  .shop-section .product-row .product-item .image {
    width: calc(100% - 380px);
  }
}

@media (max-width: 767px) {
  .shop-section .product-row .product-item .image {
    width: calc(100% - 100px);
  }
}

@media (max-width: 575px) {
  .shop-section .product-row .product-item .image {
    width: 100%;
  }
}

.shop-section .product-row .product-item .text {
  text-align: left;
  padding-top: 0;
  margin-left: 5px;
}

@media (max-width: 575px) {
  .shop-section .product-row .product-item .text {
    text-align: center;
    margin-left: 0;
    padding-top: 20px;
  }
}

.shop-section .product-row .product-item .text .price {
  padding-bottom: 15px;
}

.shop-section .product-row .product-item .text p {
  text-align: right !important;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #525252;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .shop-section .product-row .product-item .text p {
         text-align: right;
    padding-bottom: 10px;
  }
}

.deals-area .offer-wrap {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: auto;
  display: block;
  position: relative;
  background: #f9f9f9;
  height: 410px;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .deals-area .offer-wrap {
    height: 370px;
  }
}

@media (max-width: 399px) {
  .deals-area .offer-wrap {
    height: 300px;
  }
}

.deals-area .offer-wrap .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media (max-width: 767px) {
  .deals-area .offer-wrap .image {
    top: -80px;
  }
}

@media (max-width: 575px) {
  .deals-area .offer-wrap .image {
    top: -40px;
  }
}

@media (max-width: 399px) {
  .deals-area .offer-wrap .image {
    top: 0;
  }
}

.deals-area .offer-wrap .image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.deals-area .offer-wrap .content {
  text-align: center;
  margin-left: 0;
  padding: 60px 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.deals-area .offer-wrap .content h2 {
  font-size: 35px;
}

.deals-area .offer-wrap .content .offer-price {
  font-size: 20px;
  line-height: 30px;
}

.deals-area .offer-wrap .content del {
  font-size: 20px;
  line-height: 30px;
  color: #233D50;
}

.deals-area .offer-wrap .content .count-up {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
}

@media (max-width: 991px) {
  .deals-area .offer-wrap .content .count-up {
    width: 350px;
  }
}

@media (max-width: 767px) {
  .deals-area .offer-wrap .content .count-up {
    width: 100%;
  }
}

@media (max-width: 425px) {
  .deals-area .offer-wrap .content .count-up {
    width: 275px;
  }
}

@media (max-width: 1199px) {
  .deals-area .offer-wrap .content .count-up #clock, .deals-area .offer-wrap .content .count-up #clock-s3, .deals-area .offer-wrap .content .count-up #clock-s4 {
    width: auto;
  }
}

.deals-area .offer-wrap .content .count-up .box {
  width: 65px;
  height: 65px;
  border: 1px solid transparent;
  font-family: "Almarai";
  font-weight: 400;
  color: #233D50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  font-size: 23px;
  line-height: 29px;
  background: #fff;
}

@media (max-width: 992px) {
  .deals-area .offer-wrap .content .count-up .box {
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }
}

@media (max-width: 425px) {
  .deals-area .offer-wrap .content .count-up .box {
    width: 60px;
    height: 50px;
    margin-right: 5px;
    font-size: 20px;
  }
}

.deals-area .offer-wrap .content .count-up .box .time {
  line-height: 10px;
  margin-top: 15px;
}

.deals-area .offer-wrap .content .count-up .box span {
  margin-top: 9px;
  text-align: center;
  color: #233D50;
  font-family: "Muli";
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
}

.deals-area .all-deals-btn {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 80px;
}

/*===============================
7. Product-Single
================================*/
ul li {
  list-style: none;
}

@media (max-width: 991px) {
  .product-details .product-single-tag {
    padding-top: 30px;
  }
}

.product-details .product-single-content {
  padding-left: 40px;
}

@media (max-width: 1399px) {
  .product-details .product-single-content {
    padding-left: 0px;
  }
}

@media (max-width: 991px) {
  .product-details .product-single-content {
    padding-top: 30px;
  }
}

.product-details .product-single-content h2 {
  color: #233D50;
  display: inline-block;
  text-align: center;
  font-weight: 500;
  font-size: 35px;
  line-height: 45px;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .product-details .product-single-content h2 {
    line-height: 25px;
  }
}

@media (max-width: 991px) {
  .product-details .product-single-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .product-details .product-single-content h2 {
    font-size: 25px;
    line-height: 25px;
  }
}

.product-details .product-single-content .price {
  padding-top: 8px;
  padding-bottom: 10px;
}

@media (max-width: 1399px) {
  .product-details .product-single-content .price {
    padding-top: 8px;
  }
}

@media (max-width: 1199px) {
  .product-details .product-single-content .price {
    padding-top: 5px;
  }
}

@media (max-width: 575px) {
  .product-details .product-single-content .price {
    padding-top: 0;
  }
}

.product-details .product-single-content .price .old-price,
.product-details .product-single-content .price .present-price {
  font-weight: 700;
  font-size: 17px;
  line-height: 28px;
  color: #A5A5A5;
}

.product-details .product-single-content .price .present-price {
  color: #233D50;
  padding-right: 20px;
}

.product-details .product-single-content .rating-product {
  margin-bottom: 10px;
}

.product-details .product-single-content .rating-product i {
  font-size: 13px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FED700), to(#F78914));
  background: linear-gradient(180deg, #FED700 0%, #F78914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-details .product-single-content .rating-product span {
  font-family: "Muli";
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #6F6F6F;
  padding-left: 10px;
}

.product-details .product-single-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #6F6F6F;
  margin-right: 80px;
  margin-bottom: 0;
}

@media (max-width: 1399px) {
  .product-details .product-single-content p {
    margin-right: 0;
  }
}

@media (max-width: 1199px) {
  .product-details .product-single-content p {
    font-size: 15px;
    line-height: 20px;
  }
}

.product-details .product-single-content .pro-single-btn {
  margin-top: 30px;
}

.product-details .product-single-content .pro-single-btn .quantity .qtybutton {
  position: absolute;
  top: 0;
  right: 0;
  height: 25px;
  width: 25px;
  text-align: center;
  line-height: 25px;
  font-size: 20px;
  cursor: pointer;
  border-left: 1px solid #C9C9C9;
}

.product-details .product-single-content .pro-single-btn .quantity .text-value {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #6F6F6F;
  text-align: left;
  padding-left: 20px;
}

.product-details .product-single-content .pro-single-btn .quantity .dec.qtybutton {
  left: auto;
  top: 25px;
  border-top: 1px solid #C9C9C9;
}

.product-details .product-single-content .pro-single-btn .quantity input {
  height: 50px;
  width: 74px;
  border: 1px solid #C9C9C9;
  padding: 0;
}

@media (max-width: 768px) {
  .product-details .product-single-content .pro-single-btn .quantity input {
    margin-top: 0;
  }
}

.product-details .product-single-content .theme-btn-s2 {
  padding: 12px 45px;
  border-radius: 0;
}

.product-details .product-single-content .theme-btn-s2::before {
  border-radius: 0;
background: #333a7b;
  color: #FFFFFF;
}

@media (max-width: 575px) {
  .product-details .product-single-content .theme-btn-s2 {
    position: relative;
    top: -2px;
  }
}

.product-details .product-single-content .wl-btn {
  border: 1px solid #D9D9D9;
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 10px;
  font-size: 23px;
  color: #6F6F6F;
  line-height: 23px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 575px) {
  .product-details .product-single-content .wl-btn {
    margin-left: 0;
  }
}

.product-details .product-single-content .wl-btn:hover, .product-details .product-single-content .wl-btn:focus, .product-details .product-single-content .wl-btn:active {
  border: 1px solid transparent;
  background: #70c6c7;
  color: #fff;
}

.product-details .product-single-content .product-filter-item {
  margin-top: 15px;
}

.product-details .product-single-content .product-filter-item.color .color-name ul li input {
  margin-right: 0;
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.product-details .product-single-content .product-filter-item.color .color-name ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-details .product-single-content .product-filter-item.color .color-name ul li {
  width: 36px;
  height: 36px;
}

.product-details .product-single-content .product-filter-item.color .color-name ul {
  list-style: none;
  margin-top: 10px;
}

.product-details .product-single-content .product-filter-item.color .color-name ul li input {
  margin-right: 0;
}

.product-details .product-single-content .product-filter-item.color .color-name ul li {
  margin-right: 5px;
  margin-bottom: 10px;
}

.product-details .product-single-content .product-filter-item.color .color-name ul li input {
  margin-right: 0;
  position: absolute;
  z-index: -1;
  font-size: 18px;
}

.product-details .product-single-content .product-filter-item.color .color-name ul li input:checked ~ label {
  width: 30px;
  height: 30px;
  border: 5px solid transparent;
}

.product-details .product-single-content .product-filter-item.color .color-name label {
  border: 5px solid #F1F1F1;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
}

.product-details .product-single-content .product-filter-item.color .color-name label {
  background: #525252;
  border-radius: 50%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.product-details .product-single-content .product-filter-item.color .color-name span {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: #233D50;
}

.product-details .product-single-content .product-filter-item.color .color-name .color1 label {
  background: #f9f8f8;
}

.product-details .product-single-content .product-filter-item.color .color-name .color2 label {
  background: #D27F03;
}

.product-details .product-single-content .product-filter-item.color .color-name .color3 label {
  background: #6E8AA5;
}

.product-details .product-single-content .product-filter-item.color .color-name .color4 label {
  background: #ECD1D1;
}

.product-details .product-single-content .product-filter-item.color .color-name .color5 label {
  background: #686868;
}

.product-details .product-single-content .product-filter-item.color.filter-size {
  margin-top: 0px;
}

.product-details .product-single-content .product-filter-item.color.filter-size .color-name {
  margin-top: 0px;
}

.product-details .product-single-content .product-filter-item.color.filter-size ul li {
  border-radius: 5px;
  height: 40px;
  width: 48px;
  margin-right: 10px;
  color: #6F6F6F;
  text-align: center;
  margin-bottom: 2px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  font-weight: 400;
  font-size: 18px;
  line-height: 38px;
}

@media (max-width: 450px) {
  .product-details .product-single-content .product-filter-item.color.filter-size ul li {
    width: 50px;
  }
}

.product-details .product-single-content .product-filter-item.color.filter-size ul li label {
  text-align: center;
  border: 1px solid #C3C3C3;
  border-radius: 5px;
  height: 40px;
  width: 48px;
  background: transparent;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 450px) {
  .product-details .product-single-content .product-filter-item.color.filter-size ul li label {
    width: 50px;
  }
}

.product-details .product-single-content .product-filter-item.color.filter-size ul li input:checked ~ label {
  border: 1px solid transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(#FED700), to(#F78914));
  background: linear-gradient(180deg, #FED700 0%, #F78914 100%);
  color: #fff;
  border-radius: 5px;
  height: 40px;
  width: 48px;
}

.product-details .product-single-content .important-text {
  margin-top: 30px;
}

.product-details .product-single-content .important-text li {
  color: #6F6F6F;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  display: block;
}

.product-details .product-single-content .important-text li span {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  color: #233D50;
}

.product-details .product-single-content .social-share {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-details .product-single-content .social-share ul.socialLinks {
  margin-left: 10px;
}

.product-details .product-single-content .social-share ul.socialLinks li {
  display: inline-block;
}

.product-details .product-single-content .social-share ul.socialLinks li a {
  display: block;
  margin-right: 6px;
}

.product-details .product-single-content .social-share ul.socialLinks li a i {
  height: 28px;
  width: 28px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  border-radius: 50%;
  background: #0E76A8;
}

.product-details .product-single-content .social-share ul.socialLinks li a .fa-linkedin {
  background: #55ACEE;
}

.product-details .product-single-content .social-share ul.socialLinks li a .fa-dribbble {
  background: #6A453B;
}

.product-details .product-single-content .social-share ul.socialLinks li a .fa-twitter {
  background: #3B5998;
}

.product-details .product-single-content .social-share ul.socialLinks li a .fa-instagram {
  background: #8941A7;
}

.product-details .product-single-content .social-share ul.socialLinks li a .fa-youtube-play {
  background: #D72B27;
}

.product-single-section .product-tab-area {
  padding-top: 100px;
}

.product-single-section .product-tab-area .tab-content {
  padding-top: 60px;
}

.product-single-section .product-tab-area .main-tab {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

@media (max-width: 767px) {
  .product-single-section .product-tab-area .main-tab li {
    width: 100%;
  }
}

.product-single-section .product-tab-area .main-tab button {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #6F6F6F;
  padding: 25px 40px;
  padding-bottom: 20px;
  background: transparent;
  border: none;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .product-single-section .product-tab-area .main-tab button {
    padding: 10px 10px;
    width: 100%;
    text-align: center;
  }
}

.product-single-section .product-tab-area .main-tab button.active {
  color: #233D50;
}

.product-single-section .product-tab-area .Descriptions-item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  color: #6F6F6F;
}

@media (max-width: 767px) {
  .product-single-section .product-tab-area .Descriptions-item p {
    line-height: 30px;
  }
}

.product-single-section .product-tab-area .Descriptions-item .Description-table {
  margin-top: 20px;
}

.product-single-section .product-tab-area .Descriptions-item .Description-table ul li {
  position: relative;
  padding-left: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  color: #6F6F6F;
  padding-left: 20px;
}

@media (max-width: 767px) {
  .product-single-section .product-tab-area .Descriptions-item .Description-table ul li {
    line-height: 30px;
  }
}

.product-single-section .product-tab-area .Descriptions-item .Description-table ul li::before {
  position: absolute;
  content: '';
  height: 10px;
  width: 10px;
  left: 0;
  top: 35%;
  border-radius: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#95CD2F), to(#63911F));
  background: linear-gradient(180deg, #95CD2F 0%, #63911F 100%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 767px) {
  .product-single-section .product-tab-area .Descriptions-item .Description-table ul li::before {
    top: 10px;
  }
}

.product-single-section .product-tab-area .rating-section {
  /*** comments area ***/
}

.product-single-section .product-tab-area .rating-section .comments-area li > div {
  padding: 35px;
  padding-left: 0;
}

@media (max-width: 991px) {
  .product-single-section .product-tab-area .rating-section .comments-area li > div {
    padding: 35px 25px;
    padding-left: 0;
  }
}

.product-single-section .product-tab-area .rating-section .comments-area ol {
  list-style-type: none;
  padding-left: 0;
}

.product-single-section .product-tab-area .rating-section .comments-area ol ul {
  padding-left: 115px;
  list-style-type: none;
}

.product-single-section .product-tab-area .rating-section .comments-area ol > li:last-child div {
  border-bottom: 0;
}

.product-single-section .product-tab-area .rating-section .comments-area .comments-title {
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .product-single-section .product-tab-area .rating-section .comments-area .comments-title {
    font-size: 20px;
  }
}

.product-single-section .product-tab-area .rating-section .comments-area li > div {
  position: relative;
}

.product-single-section .product-tab-area .rating-section .comments-area .comment-theme {
  position: absolute;
  left: 0;
}

@media (max-width: 767px) {
  .product-single-section .product-tab-area .rating-section .comments-area .comment-theme {
    position: static;
  }
}

.product-single-section .product-tab-area .rating-section .comments-area .comment-theme img {
  border-radius: 50%;
}

.product-single-section .product-tab-area .rating-section .comments-area .comment-main-area {
  padding-left: 135px;
}

@media (max-width: 767px) {
  .product-single-section .product-tab-area .rating-section .comments-area .comment-main-area {
    padding-left: 35px;
    margin-top: 25px;
  }
}

.product-single-section .product-tab-area .rating-section .comments-area .comment-main-area p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #6F6F6F;
}

@media (max-width: 991px) {
  .product-single-section .product-tab-area .rating-section .comments-area .comment-main-area p {
    padding-right: 0px;
    font-size: 16px;
    line-height: 25px;
  }
}

.product-single-section .product-tab-area .rating-section .comments-area .children {
  position: relative;
}

.product-single-section .product-tab-area .rating-section .comments-area .children::before {
  position: absolute;
  content: url(../images/blog-details/comments-author/line.png);
  left: 50px;
  top: -172px;
  z-index: -1;
}

@media (max-width: 767px) {
  .product-single-section .product-tab-area .rating-section .comments-area .children::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .product-single-section .product-tab-area .rating-section .comments-area .children {
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .product-single-section .product-tab-area .rating-section .comments-area .children p {
    padding-right: 0px;
    font-size: 16px;
    line-height: 25px;
  }
}

.product-single-section .product-tab-area .rating-section .comments-area .comments-meta h4 {
  font-family: "Muli";
  font-size: 25px;
  line-height: 30px;
  color: #233D50;
  font-weight: 600;
}

.product-single-section .product-tab-area .rating-section .comments-area .comments-meta span {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #6F6F6F;
}

@media (max-width: 767px) {
  .product-single-section .product-tab-area .rating-section .comments-area .comments-meta span {
    padding-left: 0;
  }
}

.product-single-section .product-tab-area .rating-section .comments-area .comments-meta .rating-product {
  margin-bottom: 10px;
}

.product-single-section .product-tab-area .rating-section .comments-area .comments-meta .rating-product i {
  font-size: 13px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FED700), to(#F78914));
  background: linear-gradient(180deg, #FED700 0%, #F78914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-single-section .product-tab-area .rating-section .comments-area .comments-meta .rating-product span {
  font-family: "Muli";
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #6F6F6F;
  padding-left: 10px;
}

.product-single-section .product-tab-area .rating-section .comments-area .comment-reply-link {
  color: #70c6c7;
  text-align: center;
  display: inline-block;
  font-family: "Muli";
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 400;
}

.product-single-section .product-tab-area .rating-section .comments-area .comment-reply-link:hover {
  color: #ffa500;
}

.product-single-section .product-tab-area .rating-section .comment-respond .rating-product {
  margin-bottom: 10px;
}

.product-single-section .product-tab-area .rating-section .comment-respond .rating-product i {
  font-size: 13px;
  background: #BCBCBC;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-transform: all .3s ease-in-out;
          transform: all .3s ease-in-out;
}

.product-single-section .owl-nav [class*=owl-] {
  position: absolute;
  left: 10px;
  top: 46%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}

.product-single-section .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 10px;
}

.product-single-section:hover .owl-nav [class*=owl-] {
  opacity: 1;
  visibility: visible;
}

.owl-nav [class*=owl-] {
  background: none;
  width: 45px;
  height: 45px;
  line-height: 35px;
  z-index: 10;
  border-radius: 5px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background: #F3F3F3;
  color: #000;
  border: 0px;
}

.owl-nav [class*=owl-]:hover {
  background: #ffa500;
}

.product-active {
  margin-bottom: 15px;
}

.product-active .owl-prev,
.product-active .owl-next {
  display: none;
}

.product-active img.zoomImg {
  -webkit-transform: all .3s ease-in-out;
          transform: all .3s ease-in-out;
}

.Additional-wrap .ratting ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.Additional-wrap .ratting ul li {
  margin-right: 5px;
  color: #FFBF4E;
}

.Additional-wrap th,
.Additional-wrap td {
  width: 8%;
  border: 1px solid #E1E2E1;
  text-align: left;
  font-weight: 400;
  color: #414141;
  padding: 20px;
}

.Additional-wrap {
  padding-top: 0;
}

/*** review form ***/
.review-form {
  margin-top: 45px;
}

.review-form h4 {
  font-size: 30px;
  font-weight: 700;
}

.review-form p {
  margin-bottom: 1.73em;
}

.review-form .give-rat-sec {
  margin-bottom: 10px;
}

.review-form .give-rat-sec p {
  margin-bottom: 0;
}

.review-form .give-rating {
  display: inline-block;
  position: relative;
  height: 50px;
  line-height: 50px;
  font-size: 30px;
  margin-bottom: 10px;
}

.review-form .give-rating label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  cursor: pointer;
}

.review-form .give-rating label:last-child {
  position: static;
}

.review-form .give-rating label:nth-child(1) {
  z-index: 5;
}

.review-form .give-rating label:nth-child(2) {
  z-index: 4;
}

.review-form .give-rating label:nth-child(3) {
  z-index: 3;
}

.review-form .give-rating label:nth-child(4) {
  z-index: 2;
}

.review-form .give-rating label:nth-child(5) {
  z-index: 1;
}

.review-form .give-rating label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.review-form .give-rating label .icon {
  float: left;
  color: transparent;
}

.review-form .give-rating label:last-child .icon {
  color: #ddd;
}

.review-form .give-rating:not(:hover) label input:checked ~ .icon,
.review-form .give-rating:hover label:hover input ~ .icon {
  color: #FFD400;
}

.review-form .give-rating label input:focus:not(:checked) ~ .icon:last-child {
  color: #ddd;
  text-shadow: 0 0 5px #FFD400;
}

.review-form form input,
.review-form form textarea {
  background: transparent;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 50px;
  border: 1px solid #efefef;
  border-radius: 10px;
}

.review-form form input:focus,
.review-form form textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.review-form form textarea {
  height: 130px;
}

.review-form form > div {
  margin-bottom: 27px;
}

.review-form form > div:last-child {
  margin-bottom: 0;
}

.review-form form .name-input {
  width: 49%;
  display: inline-block;
}

@media (max-width: 767px) {
  .review-form form .name-input {
    margin-left: 0;
    width: 100%;
  }
}

.review-form form .name-email {
  width: 48.5%;
  display: inline-block;
  margin-left: 15px;
}

@media (max-width: 1199px) {
  .review-form form .name-email {
    margin-left: 13px;
  }
}

@media (max-width: 991px) {
  .review-form form .name-email {
    margin-left: 9px;
  }
}

@media (max-width: 767px) {
  .review-form form .name-email {
    margin-left: 0;
    width: 100%;
  }
}

.review-form form .theme-btn-s2 {
  background-color: transparent;
  color: #fff;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0px;
}

.review-form form .theme-btn-s2::before {
background: #333a7b;
  color: #FFFFFF;
}

.review-form form .theme-btn-s2:hover {
  background-color: #70c6c7;
}

.slider-nav .slick-slide:focus {
  outline: none;
}

.rating-wrapper .theme-btn-s2 {
  background: #70c6c7;
  color: #fff;
}

.rating-wrapper .theme-btn-s2:hover {
  background: #729f2e;
}

/*===========================
8. wpo-wishlist-page
===========================*/
.single-page-title {
  margin-bottom: 30px;
}

.single-page-title h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .single-page-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 330px) {
  .single-page-title h2 {
    font-size: 30px;
  }
}

.single-page-title p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #6F6F6F;
}

@media (max-width: 767px) {
  .single-page-title p {
    font-size: 18px;
    line-height: 25px;
  }
}

.cart-area, .cart-area-s2 {
  padding-top: 50px;
}

@media (max-width: 1199px) {
  .cart-area .cart-wrapper table, .cart-area-s2 .cart-wrapper table {
    width: 1022px;
  }
}

@media (max-width: 1199px) {
  .cart-area .cart-wrapper form, .cart-area-s2 .cart-wrapper form {
    overflow: scroll;
    overflow-y: hidden;
  }
}

.cart-area .cart-wrap thead, .cart-area-s2 .cart-wrap thead {
  border: 1px solid #D9D9D9;
  background: #FFF8EE;
}

.cart-area .cart-wrap th.images, .cart-area-s2 .cart-wrap th.images {
  width: 40%;
  text-align: start;
  height: 70px;
  font-weight: 600;
  font-size: 18px;
  color: #233D50;
  padding-left: 60px;
}

.cart-area .cart-wrap th.ptice, .cart-area-s2 .cart-wrap th.ptice {
  width: 20%;
  height: 70px;
  font-weight: 600;
  font-size: 18px;
  color: #233D50;
  text-align: center;
}

.cart-area .cart-wrap th.stock, .cart-area-s2 .cart-wrap th.stock {
  width: 20%;
  height: 70px;
  font-weight: 600;
  font-size: 18px;
  color: #233D50;
  text-align: center;
}

.cart-area .cart-wrap th.remove, .cart-area-s2 .cart-wrap th.remove {
  width: 20%;
  height: 70px;
  font-weight: 600;
  font-size: 18px;
  color: #233D50;
  text-align: center;
}

.cart-area .cart-wrap th.remove-b, .cart-area-s2 .cart-wrap th.remove-b {
  width: 20%;
  height: 70px;
  font-weight: 600;
  font-size: 18px;
  color: #233D50;
  padding-right: 60px;
  text-align: center;
}

.cart-area .cart-wrap tbody, .cart-area-s2 .cart-wrap tbody {
  border: 1px solid #D9D9D9;
  border-top: 1px solid transparent;
  border-bottom: 1px transparent;
}

.cart-area .cart-wrap tbody .wishlist-item, .cart-area-s2 .cart-wrap tbody .wishlist-item {
  height: 200px;
  border-bottom: 1px solid #D9D9D9;
}

.cart-area .cart-area form, .cart-area-s2 .cart-area form {
  text-align: center;
  background: #fff;
}

.cart-area td.product-item-wish, .cart-area-s2 td.product-item-wish {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  margin-top: 50px;
}

.cart-area td.product-item-wish .check-box, .cart-area-s2 td.product-item-wish .check-box {
  padding-left: 30px;
  padding-right: 40px;
}

.cart-area td.product-item-wish .check-box .myproject-checkbox, .cart-area-s2 td.product-item-wish .check-box .myproject-checkbox {
  height: 25px;
  width: 25px;
  accent-color: #70c6c7;
  border: 2px solid #D9D9D9;
  color: #fff;
}

.cart-area td.product-item-wish .images, .cart-area-s2 td.product-item-wish .images {
  width: 100px;
  height: 90px;
  background: #F3F3F3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cart-area td.product-item-wish .images img, .cart-area-s2 td.product-item-wish .images img {
  width: 100%;
}

.cart-area td.product-item-wish .product, .cart-area-s2 td.product-item-wish .product {
  padding-left: 20px;
}

.cart-area td.product-item-wish .product ul .first-cart, .cart-area-s2 td.product-item-wish .product ul .first-cart {
  font-family: "Muli";
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  color: #233D50;
}

.cart-area td.product-item-wish .product ul li .rating-product i, .cart-area-s2 td.product-item-wish .product ul li .rating-product i {
  font-size: 13px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FED700), to(#F78914));
  background: linear-gradient(180deg, #FED700 0%, #F78914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cart-area td.product-item-wish .product ul li .rating-product span, .cart-area-s2 td.product-item-wish .product ul li .rating-product span {
  font-family: "Muli";
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #6F6F6F;
  padding-left: 10px;
}

.cart-area tbody tr td.ptice, .cart-area-s2 tbody tr td.ptice {
  width: 20%;
  text-align: center;
  font-weight: 700;
  font-size: 25px;
  color: #233D50;
}

.cart-area tbody tr td.stock, .cart-area-s2 tbody tr td.stock {
  width: 20%;
  text-align: center;
}

.cart-area tbody tr td.stock .in-stock, .cart-area-s2 tbody tr td.stock .in-stock {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #6F6F6F;
  background: #EDF5E1;
  border-radius: 5px;
  padding: 6px 15px;
}

.cart-area tbody tr td.stock .in-stock.out-stock, .cart-area-s2 tbody tr td.stock .in-stock.out-stock {
  color: #EF488E;
  background: #F5E1ED;
}

.cart-area tbody tr td.add-wish, .cart-area-s2 tbody tr td.add-wish {
  width: 20%;
  text-align: center;
}

.cart-area tbody tr td.action, .cart-area-s2 tbody tr td.action {
  width: 20%;
  text-align: center;
}

.cart-area .add-wish, .cart-area-s2 .add-wish {
  padding-right: 60px;
}

.cart-area .add-wish .theme-btn-s2, .cart-area-s2 .add-wish .theme-btn-s2 {
  padding: 10px 28px;
}

.cart-area .cart-wrap .action, .cart-area-s2 .cart-wrap .action {
  padding-right: 60px;
}

.cart-area .cart-wrap .action a, .cart-area-s2 .cart-wrap .action a {
  display: block;
  width: 40px;
  height: 38px;
  line-height: 45px;
  color: #000;
  font-size: 14px;
  margin: 0 auto;
}

.cart-area .cart-wrap .action a .fi::before, .cart-area-s2 .cart-wrap .action a .fi::before {
  font-size: 25px;
}

.cart-area .cart-wrap .action li.c-btn, .cart-area-s2 .cart-wrap .action li.c-btn {
  margin-right: 10px;
}

.cart-area .cart-wrap .action li.c-btn a, .cart-area-s2 .cart-wrap .action li.c-btn a {
  background-color: #70c6c7;
}

.cart-area .order-wrap, .cart-area-s2 .order-wrap {
  padding: 0;
}

/*===========================
9. wpo-cart-page
===========================*/
/* cart-area-s2 */
.cart-area-s2 {
  /* cart-action */
}

@media (max-width: 1199px) {
  .cart-area-s2 .cart-wrapper table {
    width: 1022px;
  }
}

@media (max-width: 1199px) {
  .cart-area-s2 .cart-wrapper .cart-item {
    overflow: scroll;
    overflow-y: hidden;
  }
}

.cart-area-s2 .cart-wrap th.images {
  width: 50%;
}

.cart-area-s2 .cart-wrap th.ptice {
  width: 15%;
}

.cart-area-s2 .cart-wrap th.stock {
  width: 15%;
}

.cart-area-s2 .cart-wrap th.ptice {
  width: 15%;
}

.cart-area-s2 .cart-wrap th.remove {
  width: 15%;
  padding-right: 30px;
}

.cart-area-s2 .cart-wrap tbody .wishlist-item {
  height: 200px;
}

.cart-area-s2 td.product-item-wish {
  margin-top: 55px;
}

.cart-area-s2 tbody tr td.ptice {
  width: 10%;
}

.cart-area-s2 tbody tr td.stock {
  width: 10%;
}

.cart-area-s2 tbody tr td.add-wish {
  width: 10%;
}

.cart-area-s2 tbody tr td.action {
  width: 10%;
}

.cart-area-s2 tbody tr td.ptice {
  font-weight: 600;
  font-size: 20px;
}

.cart-area-s2 .cart-wrap .action {
  padding-right: 30px;
}

.cart-area-s2 .td-quantity {
  text-align: center;
}

.cart-area-s2 .td-quantity .quantity {
  top: 0;
  position: relative;
  display: inline-block;
}

.cart-area-s2 .td-quantity .quantity .qtybutton {
  position: absolute;
  top: 0;
  right: 0;
  height: 25px;
  width: 25px;
  text-align: center;
  line-height: 25px;
  font-size: 20px;
  cursor: pointer;
  border-left: 1px solid #C9C9C9;
}

.cart-area-s2 .td-quantity .quantity .text-value {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #6F6F6F;
  text-align: left;
  padding-left: 20px;
}

.cart-area-s2 .td-quantity .quantity .dec.qtybutton {
  left: auto;
  top: 25px;
  border-top: 1px solid #C9C9C9;
}

.cart-area-s2 .td-quantity .quantity input {
  height: 50px;
  width: 74px;
  border: 1px solid #C9C9C9;
  padding: 0;
}

@media (max-width: 768px) {
  .cart-area-s2 .td-quantity .quantity input {
    margin-top: 0;
  }
}

.cart-area-s2 .cart-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
  width: 100%;
}

@media (max-width: 767px) {
  .cart-area-s2 .cart-action {
    display: block;
  }
}

.cart-area-s2 .apply-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart-area-s2 .apply-area .form-control {
  border: 1px solid #D9D9D9;
  height: 50px;
  width: 265px;
  border-radius: 5px;
  font-weight: 400;
  font-size: 18px;
  color: #6F6F6F;
}

@media (max-width: 575px) {
  .cart-area-s2 .apply-area .form-control {
    width: 180px;
  }
}

.cart-area-s2 .apply-area .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.cart-area-s2 .apply-area .theme-btn-s2 {
  border-radius: 5px;
  border: 0px;
  padding: 0;
  height: 50px;
  width: 130px;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .cart-area-s2 .apply-area .theme-btn-s2 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .cart-area-s2 .apply-area .theme-btn-s2 {
    margin-top: 0;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .cart-area-s2 .apply-area .theme-btn-s2 {
    margin-left: 10px;
  }
}

.cart-area-s2 .apply-area .theme-btn-s2::before {
background: #333a7b;
  color: #FFFFFF;
  border-radius: 5px;
}

.cart-area-s2 .theme-btn-s2 {
  border-radius: 5px;
  padding: 0;
  height: 50px;
  width: 195px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 991px) {
  .cart-area-s2 .theme-btn-s2 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .cart-area-s2 .theme-btn-s2 {
    margin-top: 20px;
    width: 150px;
    font-size: 16px;
  }
}

.cart-area-s2 .theme-btn-s2 .fi {
  font-size: 20px;
  line-height: 26px;
  margin-right: 20px;
  margin-top: 8px;
}

@media (max-width: 767px) {
  .cart-area-s2 .theme-btn-s2 .fi {
    font-size: 16px;
  }
}

.cart-area-s2 .theme-btn-s2::before {
  border-radius: 5px;
}

/* cart-total-wrap */
.cart-total-wrap {
  padding: 30px;
  border: 1px solid #D9D9D9;
}

@media (max-width: 991px) {
  .cart-total-wrap {
    margin-top: 30px;
  }
}

@media (max-width: 399px) {
  .cart-total-wrap {
    padding: 30px 15px;
  }
}

.cart-total-wrap h3 {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 500;
  font-size: 25px;
  border-bottom: 2px solid #F1E2CC;
  padding-bottom: 15px;
}

.cart-total-wrap h3::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 2px;
  width: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FED700), to(#F78914));
  background: linear-gradient(180deg, #FED700 0%, #F78914 100%);
}

.cart-total-wrap .sub-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #D9D9D9;
  font-family: "Muli";
  font-weight: 600;
  font-size: 18px;
  color: #233D50;
  padding-bottom: 15px;
}

.cart-total-wrap .sub-total h4 {
  margin-bottom: 0;
  font-weight: 500;
}

.cart-total-wrap .sub-total span {
  font-family: "Muli";
  font-weight: 700;
  font-size: 20px;
  color: #233D50;
}

.cart-total-wrap .shipping-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.cart-total-wrap .shipping-option span {
  font-family: "Muli";
  font-weight: 700;
  font-size: 20px;
  color: #233D50;
}

.cart-total-wrap .shipping-option ul {
  margin-left: 20px;
}

.cart-total-wrap .shipping-option ul .free {
  padding-top: 7px;
}

.cart-total-wrap .shipping-option ul .free input {
  background: transparent;
  border-radius: 100%;
  height: 16px;
  width: 16px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: 3px solid #FFF;
  -webkit-box-shadow: 0 0 0 1px #70c6c7;
          box-shadow: 0 0 0 1px #70c6c7;
  margin-right: 10px;
}

.cart-total-wrap .shipping-option ul .free input:checked {
  background: -webkit-gradient(linear, left top, left bottom, from(#95CD2F), to(#63911F));
  background: linear-gradient(180deg, #95CD2F 0%, #63911F 100%);
}

.cart-total-wrap .shipping-option ul .free label {
  font-family: "Muli";
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  color: #233D50;
}

.cart-total-wrap .shipping-option ul .free label span {
  font-family: "Muli";
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  color: #233D50;
  font-style: normal;
}

.cart-total-wrap .shipping-option ul .free span {
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: #6F6F6F;
}

.cart-total-wrap .calculate-shipping {
  background: transparent;
  border: 0;
  width: 100%;
  padding: 15px 0;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  margin: 20px 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  color: #233D50;
  position: relative;
  cursor: pointer;
}

.cart-total-wrap .calculate-shipping:hover {
  color: #ffa500;
}

.cart-total-wrap .calculate-shipping .calculate-shipping-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.cart-total-wrap .calculate-shipping .calculate-shipping-label .fi {
  font-size: 20px;
  margin-top: 10px;
}

.cart-total-wrap .calculate-shipping .form-control {
  height: 45px;
  border: 0;
  border-bottom: 1px solid #D9D9D9;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #A9A9A9;
  border-radius: 0;
}

.cart-total-wrap .calculate-shipping .form-control:focus {
  color: #A9A9A9;
  border-color: 0;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.cart-total-wrap .calculate-shipping .theme-btn-s2 {
  padding: 0;
  width: 100px;
  height: 40px;
  border-radius: 0;
  margin-top: 20px;
}

.cart-total-wrap .calculate-shipping .theme-btn-s2::before {
  border-radius: 0;
}

.cart-total-wrap .calculate-item.calculate-toggle {
  opacity: 1;
  visibility: visible;
}

.cart-total-wrap .calculate-shipping-form {
  position: absolute;
  top: 70px;
  right: -31px;
  z-index: 11;
  background: #fff;
  padding: 35px 20px;
  padding-top: 25px;
  border: 1px solid #D9D9D9;
  width: 300px;
}

.cart-total-wrap .calculate-shipping-form .country-list {
  border: 0;
  width: 100%;
  background: transparent;
  font-weight: 400;
  font-size: 18px;
  color: #6F6F6F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #D9D9D9;
}

.cart-total-wrap .calculate-shipping-form .country-list p {
  font-weight: 400;
  margin-bottom: 0;
  border: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #A9A9A9;
  border-radius: 0;
  margin-left: 10px;
}

.cart-total-wrap .countries-wrapper {
  background: #fff;
  position: absolute;
  top: 65px;
  left: -1px;
  width: 300px;
  overflow: hidden;
  max-height: 300px;
  border: 1px solid #D9D9D9;
  z-index: 11;
  padding: 35px 20px;
}

.cart-total-wrap .country-search {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  color: #6F6F6F;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  margin-bottom: 5px;
}

.cart-total-wrap .country-search .form-control {
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  padding-right: 40px;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 5px;
}

.cart-total-wrap .country-search button {
  background: transparent;
  border: 0;
  position: absolute;
  right: 20px;
  top: 10px;
  color: #233D50;
}

.cart-total-wrap .country-search button .fi {
  font-size: 16px;
}

.cart-total-wrap .total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "Muli";
  font-weight: 500;
  font-size: 18px;
  color: #233D50;
  padding-bottom: 15px;
}

.cart-total-wrap .total h4 {
  margin-bottom: 0;
  font-weight: 500;
}

.cart-total-wrap .total span {
  font-family: "Muli";
  font-weight: 700;
  font-size: 20px;
  color: #233D50;
}

.cart-total-wrap .theme-btn-s2 {
  width: 100%;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .cart-total-wrap .theme-btn-s2 {
    font-size: 20px;
  }
}

.cart-total-wrap .theme-btn-s2::before {
background: #333a7b;
  color: #FFFFFF;
  border-radius: 5px;
}

.cart-prodact {
  padding-top: 120px;
}

.cart-prodact h2 {
  font-size: 35px;
  line-height: 45px;
  color: #000000;
  display: inline-block;
  margin-bottom: 60px;
}

.cart-prodact .theme-btn-s2 {
  height: auto;
  width: auto;
  display: inline-block;
  padding: 12px 50px;
  border: 0;
  border-radius: 5px;
}

.calculate-shipping-form {
  position: relative;
}

.countries-wrapper {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 9;
}

.countries-wrapper ul {
  overflow: hidden;
  overflow-y: scroll;
  max-height: 215px;
}

.countries-wrapper ul li {
  font-weight: 400;
  font-size: 17px;
  color: #6F6F6F;
  height: 40px;
}

.calculate-shipping-form {
  display: none;
}

/*===============================
10. wpo-checkout-page-style
================================*/
.wpo-checkout-area {
  padding-top: 50px;
}

.wpo-checkout-area .checkout-wrap ul {
  list-style: none;
}

.wpo-checkout-area #open2 {
  display: none;
}

.wpo-checkout-area #open3 {
  display: none;
}

.wpo-checkout-area #open4 {
  display: none;
}

.wpo-checkout-area .create-account p {
  margin-bottom: 15px;
  color: #6F6F6F;
}

.wpo-checkout-area .create-account {
  display: none;
  padding: 20px;
}

.wpo-checkout-area .create-account span {
  margin-bottom: 20px;
  display: block;
  color: #6F6F6F;
}

.wpo-checkout-area .input-wrap {
  position: relative;
}

.wpo-checkout-area .create-account input {
  width: 100%;
  height: 50px;
  border: 1px solid #ebebeb;
  margin-bottom: 25px;
  padding-left: 20px;
  border-radius: 0;
}

.wpo-checkout-area .create-account input:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.wpo-checkout-area .create-account button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: #333;
  color: #fff;
  width: 108px;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.wpo-checkout-area .input-wrap.s1 {
  position: unset;
}

.wpo-checkout-area .input-wrap.s1 button {
  position: unset;
  color: #fff;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  height: 50px;
  background: #333;
  color: #fff;
  width: 108px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.wpo-checkout-area .create-account button:hover {
  background: #70c6c7;
}

.wpo-checkout-area .coupon {
  position: relative;
  cursor: pointer;
  cursor: pointer;
  background: #FFF8EE;
}

.wpo-checkout-area .rating-wrapper .theme-btn-s2 {
  background: #70c6c7;
  color: #fff;
}

.wpo-checkout-area .rating-wrapper .theme-btn-s2:hover {
  background: #729f2e;
}

.wpo-checkout-area .coupon #toggle1, .wpo-checkout-area #toggle2 {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 18px;
  color: #6F6F6F;
  cursor: pointer;
  padding: 20px 20px;
  border: 1px solid #D9D9D9;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
}

@media (max-width: 767px) {
  .wpo-checkout-area .coupon #toggle1, .wpo-checkout-area #toggle2 {
    font-size: 15px;
  }
}

.wpo-checkout-area .coupon #toggle1 .text, .wpo-checkout-area #toggle2 .text {
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  color: #233D50;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wpo-checkout-area .coupon #toggle1 .text i.fi::before, .wpo-checkout-area #toggle2 .text i.fi::before {
  line-height: 30px;
  font-size: 30px;
  color: #233D50;
  padding-right: 5px;
}

.wpo-checkout-area .coupon #toggle1 .text span, .wpo-checkout-area #toggle2 .text span {
  color: #ffa500;
  padding-left: 5px;
}

.wpo-checkout-area .caupon-wrap {
  background: #fff;
  margin-bottom: 20px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.wpo-checkout-area .active-border {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.wpo-checkout-area .coupon.coupon-3 {
  background: transparent;
  margin-top: 40px;
  margin-bottom: 30px;
  cursor: unset;
}

.wpo-checkout-area .coupon.coupon-3 h2 {
  font-weight: 600;
  font-size: 25px;
}

.wpo-checkout-area .billing-adress .form-style input,
.wpo-checkout-area .billing-adress .form-style select {
  width: 100%;
  margin-bottom: 15px;
  padding-left: 10px;
  height: 40px;
  background: #fff;
  border-radius: 5px;
  border: none;
  border: 1px solid #D9D9D9;
}

.wpo-checkout-area .billing-adress .form-style input:focus,
.wpo-checkout-area .billing-adress .form-style select:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.wpo-checkout-area .billing-adress .form-style select {
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}

.wpo-checkout-area .billing-adress {
  padding: 30px;
  border: 1px solid #D9D9D9;
  margin-bottom: 30px;
}

.wpo-checkout-area .note-area textarea {
  width: 100%;
  height: 150px;
  padding-top: 10px;
  margin-bottom: 0;
  padding-left: 10px;
  border: 1px solid #ebebeb;
  border-radius: 5px;
}

.wpo-checkout-area .note-area textarea:focus {
  outline: none;
}

.wpo-checkout-area .note-area p {
  color: #6F6F6F;
}

.wpo-checkout-area .biling-item-2 label.fontsize {
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.wpo-checkout-area .biling-item-3 label.fontsize {
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.wpo-checkout-area .biling-item-2 .billing-adress {
  padding: 0 27px;
}

.wpo-checkout-area .biling-item-2 .billing-adress .form-style input {
  margin: 30px 0;
}

.wpo-checkout-area .payment-name ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 575px) {
  .wpo-checkout-area .payment-name ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.wpo-checkout-area .payment-area form {
  overflow: unset !important;
}

.wpo-checkout-area .payment-name ul li {
  width: 100px;
  height: 60px;
  text-align: center;
  line-height: 60px;
}

.wpo-checkout-area .payment-name ul li input {
  margin-right: 0;
}

.wpo-checkout-area .payment-name ul li {
  margin-right: 15px;
}

@media (max-width: 575px) {
  .wpo-checkout-area .payment-name ul li {
    margin-bottom: 10px;
  }
}

.wpo-checkout-area .payment-area h2 {
  padding-bottom: 40px;
  margin-bottom: 0;
}

.wpo-checkout-area .payment-select {
  padding: 40px 0;
  padding-top: 0;
}

.wpo-checkout-area .payment-select ul {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.wpo-checkout-area .biling-item-2 input {
  background: transparent;
  height: 16px;
  width: 16px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: 3px solid #FFF;
  -webkit-box-shadow: 0 0 0 1px #70c6c7;
          box-shadow: 0 0 0 1px #70c6c7;
  margin-right: 10px;
}

.wpo-checkout-area .biling-item-2 input:checked {
  background: -webkit-gradient(linear, left top, left bottom, from(#95CD2F), to(#63911F));
  background: linear-gradient(180deg, #95CD2F 0%, #63911F 100%);
}

.wpo-checkout-area .biling-item-2 .contact-form input {
  -webkit-box-shadow: 0 0 0 1px transparent;
          box-shadow: 0 0 0 1px transparent;
}

.wpo-checkout-area .biling-item-3 input {
  background: transparent;
  height: 16px;
  width: 16px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: 3px solid #FFF;
  -webkit-box-shadow: 0 0 0 1px #70c6c7;
          box-shadow: 0 0 0 1px #70c6c7;
  margin-right: 10px;
}

.wpo-checkout-area .biling-item-3 input:checked {
  background: -webkit-gradient(linear, left top, left bottom, from(#95CD2F), to(#63911F));
  background: linear-gradient(180deg, #95CD2F 0%, #63911F 100%);
}

.wpo-checkout-area .biling-item-3 .contact-form input {
  -webkit-box-shadow: 0 0 0 1px transparent;
          box-shadow: 0 0 0 1px transparent;
}

.wpo-checkout-area .payment-select ul li {
  margin-right: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #5B5B5B;
}

.wpo-checkout-area .payment-select ul li input {
  background: transparent;
  border-radius: 100%;
  height: 16px;
  width: 16px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: 3px solid #FFF;
  -webkit-box-shadow: 0 0 0 1px #70c6c7;
          box-shadow: 0 0 0 1px #70c6c7;
  margin-right: 10px;
}

.wpo-checkout-area .payment-select ul li input:checked {
  background: -webkit-gradient(linear, left top, left bottom, from(#95CD2F), to(#63911F));
  background: linear-gradient(180deg, #95CD2F 0%, #63911F 100%);
}

.wpo-checkout-area .payment-select label {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .wpo-checkout-area .payment-select label {
    font-size: 14px;
  }
}

.wpo-checkout-area .payment-area h2 {
  font-size: 20px;
  color: #878787;
  font-weight: 700;
}

.wpo-checkout-area .payment-area h2 span {
  font-size: 30px;
  color: #ff493c;
}

.wpo-checkout-area .payment-area {
  width: 100%;
}

.wpo-checkout-area label {
  color: #6F6F6F;
  font-weight: 400;
  font-size: 18px;
}

.wpo-checkout-area .payment-name.active {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.wpo-checkout-area .payment-name ul li input {
  margin-right: 0;
  position: absolute;
  z-index: -1;
}

.wpo-checkout-area .payment-name ul li input:checked ~ label {
  border: 1px solid #ff493c;
}

.wpo-checkout-area .payment-name label {
  width: 100%;
  border: 1px solid transparent;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.wpo-checkout-area .payment-name .visa label {
  border: 1px solid #0057A0;
}

.wpo-checkout-area .payment-name .mas label {
  border: 1px solid #CC0000;
}

.wpo-checkout-area .payment-name .ski label {
  border: 1px solid #691A5F;
}

.wpo-checkout-area .payment-name .pay label {
  border: 1px solid #019CDE;
}

.wpo-checkout-area .payment-option {
  padding: 30px;
  border: 1px solid #D9D9D9;
}

.wpo-checkout-area .payment-option h3 {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 25px;
  border-bottom: 2px solid #F1E2CC;
  padding-bottom: 15px;
}

.wpo-checkout-area .payment-option h3::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 2px;
  width: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FED700), to(#F78914));
  background: linear-gradient(180deg, #FED700 0%, #F78914 100%);
}

.wpo-checkout-area .payment-name {
  display: none;
}

.wpo-checkout-area .payment-name.active {
  display: block;
}

.wpo-checkout-area .payment-option.active .payment-name {
  display: none !important;
}

.wpo-checkout-area .payment-area .form-style input,
.wpo-checkout-area .payment-area .form-style select {
  width: 100%;
  margin-bottom: 15px;
  padding-left: 10px;
  height: 40px;
  background: #fff;
  border-radius: 2px;
  border: none;
  border: 1px solid #ebebeb;
}

.wpo-checkout-area .payment-area .form-style input:focus,
.wpo-checkout-area .payment-area .form-style select:focus {
  outline: none;
}

.wpo-checkout-area .payment-area .contact-form {
  margin-top: 40px;
}

.wpo-checkout-area .cout-order-area {
  padding: 30px;
  border: 1px solid #D9D9D9;
  margin-bottom: 30px;
}

.wpo-checkout-area .cout-order-area h3 {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 500;
  font-size: 25px;
  border-bottom: 2px solid #F1E2CC;
  padding-bottom: 15px;
}

.wpo-checkout-area .cout-order-area h3::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 2px;
  width: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FED700), to(#F78914));
  background: linear-gradient(180deg, #FED700 0%, #F78914 100%);
}

.wpo-checkout-area .oreder-item .title {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 10px;
}

.wpo-checkout-area .oreder-item .title h2 {
  font-family: "Muli";
  font-weight: 600;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wpo-checkout-area .oreder-item .title.s2 {
  border-bottom: 1px solid transparent;
  padding-bottom: 0;
  padding-top: 15px;
}

.wpo-checkout-area .oreder-item .title.s2 h2 {
  margin-bottom: 0;
}

.wpo-checkout-area .oreder-item .oreder-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #D9D9D9;
  padding: 20px 0;
}

.wpo-checkout-area .oreder-item .oreder-product .images {
  width: 100px;
  height: 90px;
  background: #F3F3F3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wpo-checkout-area .oreder-item .oreder-product .product ul .first-cart {
  font-family: "Muli";
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  color: #233D50;
}

.wpo-checkout-area .oreder-item .oreder-product .product ul li .rating-product i {
  font-size: 13px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FED700), to(#F78914));
  background: linear-gradient(180deg, #FED700 0%, #F78914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wpo-checkout-area .oreder-item .oreder-product .product ul li .rating-product span {
  font-family: "Muli";
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #6F6F6F;
  padding-left: 10px;
}

.wpo-checkout-area .oreder-item .oreder-product span {
  font-weight: 600;
  font-size: 20px;
  color: #233D50;
}

.wpo-checkout-area .create-account.active {
  display: block;
}

.wpo-checkout-area .contact-form .form-control {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

.wpo-checkout-area .contact-form input,
.wpo-checkout-area .contact-form select {
  margin-top: 10px;
}

.wpo-checkout-area .submit-btn-area {
  margin-top: 20px;
}

.wpo-checkout-area .submit-btn-area .theme-btn, .wpo-checkout-area .submit-btn-area .view-cart-btn {
  width: 100%;
  border: none;
  background: #70c6c7;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  outline: none;
}

.wpo-checkout-area .submit-btn-area .theme-btn::before, .wpo-checkout-area .submit-btn-area .view-cart-btn::before {
  display: none;
  position: unset;
}

/*===============================
11. themart-compare-section
================================*/
.themart-compare-section {
  padding: 50px;
  padding-bottom: 0;
}

.themart-compare-section .table {
  border-color: inherit;
  border-width: 0;
}

.themart-compare-section .table tr {
  border: 1px solid #F1E2CC;
}

.themart-compare-section .table tr:nth-child(6) td .rating-product i {
  font-size: 13px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FED700), to(#F78914));
  background: linear-gradient(180deg, #FED700 0%, #F78914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.themart-compare-section .table tr:nth-child(6) td .rating-product span {
  font-family: "Muli";
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #6F6F6F;
  padding-left: 10px;
}

.themart-compare-section .table tr:nth-child(7) td {
  color: #70c6c7;
}

.themart-compare-section .table tr:nth-child(8) td a {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#FED700), to(#F78914));
  background: linear-gradient(180deg, #FED700 0%, #F78914 100%);
  border-radius: 5px;
  padding: 8px 80px;
}

.themart-compare-section .table tr:nth-child(9) td a {
  display: block;
  width: 40px;
  height: 38px;
  line-height: 45px;
  color: #000;
  font-size: 14px;
  margin: 0 auto;
}

.themart-compare-section .table tr:nth-child(9) td a .fi::before {
  font-size: 25px;
}

.themart-compare-section .table tr td {
  border: 0;
  border-right: 1px solid #F1E2CC;
  text-align: center;
  padding: 15px;
  min-width: 200px;
  font-weight: 400;
  font-size: 18px;
  color: #6F6F6F;
}

.themart-compare-section .table tr td:first-child {
  background: #F0F0F0;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  color: #233D50;
  font-weight: 400;
  min-width: auto;
}

.themart-compare-section .table tr td.text-title {
  font-weight: 400;
  color: #525252;
  font-family: "Muli";
  font-size: 18px;
}

/*===========================
12. wpo-order-page-style
===========================*/
.order-area {
  padding: 80px 0;
}

.order-area .order-wrapper {
  -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
          box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
}

@media (max-width: 991px) {
  .order-area .order-wrapper table {
    width: 1022px;
  }
}

@media (max-width: 991px) {
  .order-area .order-wrapper form {
    overflow: scroll;
    overflow-y: hidden;
  }
}

.order-area .order-wrap td,
.order-area .order-wrap th {
  width: 10%;
  border-bottom: 1px solid #f0f0f094;
  text-align: center;
  font-weight: 400;
  color: #414141;
}

.order-area .order-wrap td ul,
.order-area .order-wrap th ul {
  list-style: none;
}

.order-area .order-wrap th {
  border-bottom: 1px solid #f0f0f094;
  padding: 40px 0;
}

.order-area .order-wrap thead {
  background: #fff;
  color: #505050;
  padding: 40px;
}

.order-area .order-area form {
  margin: auto;
  text-align: center;
  background: #fff;
}

.order-area .order-wrap .product {
  width: 15%;
}

.order-area .order-wrap .product ul {
  text-align: left;
  padding-left: 30px;
  list-style: none;
}

.order-area .order-wrap .product ul li {
  padding-bottom: 5px;
}

.order-area .order-wrap .product a {
  font-size: 16px;
  color: #a5a4a4;
}

.order-area .order-wrap .product-2 {
  text-align: left;
  padding-left: 55px;
}

.order-area .order-wrap .product a:hover {
  color: #70c6c7;
}

.order-area .order-wrap th {
  height: 80px;
  font-weight: 400;
}

.order-area .order-wrap td {
  padding: 40px 25px;
}

.order-area .order-wrap td img {
  width: 130px;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
}

.order-area .order-wrap td.action ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}

.order-area .order-wrap td.action ul .w-btn-view a {
  line-height: 45px;
}

.order-area .order-wrap td span {
  display: block;
  width: 100px;
  height: 38px;
  line-height: 34px;
  color: #ee9902;
  font-size: 14px;
  border: 1.5px solid #ee9902;
  border-radius: 4px;
}

.order-area .order-wrap td.Del span {
  color: #4ABA4E;
  border: 1.5px solid #4ABA4E;
}

.order-area .order-wrap td.can span {
  color: #D85656;
  border: 1.5px solid #D85656;
}

.order-area .order-wrap td.pro span {
  color: #691A5F;
  border: 1.5px solid #691A5F;
}

.order-area .order-wrap .name {
  width: 15%;
}

.order-area .order-wrap .action a {
  display: block;
  width: 40px;
  height: 38px;
  line-height: 45px;
  background: #414141;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
}

.order-area .order-wrap .action a .fi::before {
  font-size: 20px;
}

.order-area .order-wrap .action a:hover {
  background: #70c6c7;
}

.order-area .order-wrap .action li.c-btn {
  margin-right: 10px;
}

.order-area .order-wrap .action li.c-btn a {
  background-color: #70c6c7;
}

.order-area .order-wrap {
  padding: 0;
}

.order-area .order-wrap tr:nth-child(even) {
  background: #FCFCFC;
}

.order-area .order-wrap .quantity {
  position: relative;
  max-width: 110px;
  margin: 0 auto;
}

.order-area .quantity input {
  width: 105px;
  padding: 0px 35px;
  text-align: center;
  height: 36px;
  position: relative;
  background: #f2f2f5;
  border: none;
  border-radius: 40px;
}

.order-area .quantity .qtybutton {
  position: absolute;
  top: 0;
  left: 0px;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 28px;
  font-size: 18px;
  cursor: pointer;
  color: #333;
  background: #fafaff;
  border-radius: 30px;
}

.order-area .order-wrap .quantity .qtybutton {
  top: 50%;
  left: 5px;
  transform: translateY(-51%);
  -webkit-transform: translateY(-51%);
  -moz-transform: translateY(-51%);
}

.order-area .order-wrap .quantity .qtybutton.dec {
  border-left: none;
}

.order-area .order-wrap .quantity .qtybutton.inc {
  right: 5px;
  left: auto;
  border-right: none;
}

.order-area .submit-btn-area {
  padding: 40px;
}

.order-area .submit-btn-area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  list-style: none;
}

@media (max-width: 450px) {
  .order-area .submit-btn-area ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.order-area .submit-btn-area ul li:last-child {
  margin-left: 20px;
}

@media (max-width: 450px) {
  .order-area .submit-btn-area ul li:last-child {
    margin-left: 3px;
    margin-top: 5px;
  }
}

.order-area .submit-btn-area button {
  border: none;
  background: #233D50;
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
  outline: none;
}

.order-area .submit-btn-area button:hover {
  background: #70c6c7;
}

.order-area .submit-btn-area .theme-btn-s4 {
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  line-height: 27px;
  border-radius: 40px;
}

.order-area .submit-btn-area .theme-btn-s4 i {
  position: relative;
  margin-left: 5px;
  top: 1px;
}

.order-area .submit-btn-area .theme-btn-s4:after {
  display: none;
}

.order-area .order-product-list ul {
  border-top: 1px solid #f0f0f094;
  padding-top: 20px;
  list-style: none;
}

.order-area .order-product-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 30px;
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  color: #414141;
  padding-bottom: 30px;
}

.order-area .order-product-list ul li.order-b {
  border-top: 1px solid #f0f0f094;
  border-bottom: 1px solid #f0f0f094;
  color: #70c6c7;
  padding-top: 30px;
  font-weight: 600;
}

/*===========================
13. themart-vendor-section
===========================*/
.themart-vendor-section {
  padding: 80px 0;
  padding-bottom: 0;
}

.themart-vendor-section .vendor-filter-item .vendor-filter-search form div {
  position: relative;
}

.themart-vendor-section .vendor-filter-item .vendor-filter-search input {
  height: 50px;
  font-size: 17px;
  padding: 6px 50px 6px 20px;
  border: 1px solid #D9D9D9;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #6F6F6F;
}

.themart-vendor-section .vendor-filter-item .vendor-filter-search form button {
  background: -webkit-gradient(linear, left top, left bottom, from(#95CD2F), to(#63911F));
  background: linear-gradient(180deg, #95CD2F 0%, #63911F 100%);
  width: 45px;
  height: 43px;
  line-height: 45px;
  text-align: center;
  font-size: 18px;
  color: #70c6c7;
  border: 0;
  outline: 0;
  position: absolute;
  right: 3px;
  top: 3px;
}

.themart-vendor-section .vendor-filter-item .vendor-filter-search form button i {
  color: #fff;
}

.themart-vendor-section .vendor-filter-item .vendor-filter-short-by {
  border: 1px solid #D9D9D9;
  height: 50px;
  padding: 0 10px;
}

@media (max-width: 991px) {
  .themart-vendor-section .vendor-filter-item .vendor-filter-short-by {
    margin-top: 10px;
  }
}

.themart-vendor-section .vendor-filter-item .vendor-filter-short-by ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.themart-vendor-section .vendor-filter-item .vendor-filter-short-by ul li {
  list-style: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #6F6F6F;
}

.themart-vendor-section .vendor-filter-item .vendor-filter-short-by ul li select {
  border: 0;
  padding: 11px 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #6F6F6F;
  overflow: hidden;
}

.themart-vendor-section .vendor-filter-item .vendor-filter-short-by ul li select:focus {
  outline: none;
}

.themart-vendor-section .vendor-wrap {
  margin-top: 60px;
}

.themart-vendor-section .vendor-item {
  position: relative;
  background: #F9F9F9;
  margin-bottom: 30px;
  text-align: center;
  padding: 25px;
}

.themart-vendor-section .vendor-item .hot {
  font-family: "Muli";
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  padding: 2px 10px;
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FED700), to(#F78914));
  background: linear-gradient(180deg, #FED700 0%, #F78914 100%);
}

.themart-vendor-section .vendor-item .hot.best {
  background: -webkit-gradient(linear, left top, left bottom, from(#95CD2F), to(#63911F));
  background: linear-gradient(180deg, #95CD2F 0%, #63911F 100%);
}

.themart-vendor-section .vendor-item .images {
  margin: 0 auto;
}

.themart-vendor-section .vendor-item .content {
  margin-top: 20px;
}

.themart-vendor-section .vendor-item .content span {
  font-family: "Muli";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #6F6F6F;
}

.themart-vendor-section .vendor-item .content h2 {
  margin-bottom: 0;
}

.themart-vendor-section .vendor-item .content h2 a {
  font-family: "Almarai";
  font-weight: 600;
  font-size: 25px;
  text-align: center;
  color: #233D50;
  text-transform: capitalize;
}

.themart-vendor-section .vendor-item .content .rating-product {
  margin-bottom: 10px;
}

.themart-vendor-section .vendor-item .content .rating-product i {
  font-size: 13px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FED700), to(#F78914));
  background: linear-gradient(180deg, #FED700 0%, #F78914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.themart-vendor-section .vendor-item .content .rating-product span {
  font-family: "Muli";
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #6F6F6F;
  padding-left: 10px;
}

.themart-vendor-section .vendor-item .content .all-prodact {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #233D50;
  min-width: 123px;
  background: rgba(255, 166, 0, 0.362);
}

.themart-vendor-section .vendor-item .content .contact-ft {
  margin-top: 20px;
}

.themart-vendor-section .vendor-item .content .contact-ft ul li {
  padding-bottom: 10px;
  position: relative;
  color: #6F6F6F;
  font-size: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}

.themart-vendor-section .vendor-item .content .contact-ft ul li .fi:before {
  font-size: 15px;
  margin-right: 5px;
}

.themart-vendor-section .vendor-item .content .theme-btn, .themart-vendor-section .vendor-item .content .view-cart-btn {
  padding: 15px 40px;
}

.vendors-single-wrap {
  position: relative;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .vendors-single-wrap .image {
    display: none;
  }
}

.vendors-single-wrap .image img {
  width: 100%;
}

.vendors-single-wrap .vendors-single-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 991px) {
  .vendors-single-wrap .vendors-single-content {
    position: unset;
    display: block;
  }
}

.vendors-single-wrap .vendeor-log {
  width: 20%;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 991px) {
  .vendors-single-wrap .vendeor-log {
    text-align: left;
    margin: 0;
    width: 50%;
  }
}

@media (max-width: 767px) {
  .vendors-single-wrap .vendeor-log {
    width: auto;
  }
}

.vendors-single-wrap .content {
  width: 30%;
}

@media (max-width: 991px) {
  .vendors-single-wrap .content {
    width: 100%;
    margin-top: 20px;
  }
}

.vendors-single-wrap .content span {
  font-family: "Muli";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #6F6F6F;
}

.vendors-single-wrap .content h2 {
  margin-bottom: 0;
  font-family: "Almarai";
  font-weight: 600;
  font-size: 25px;
  text-align: left;
  color: #233D50;
}

.vendors-single-wrap .content .rating-product {
  margin-bottom: 10px;
}

.vendors-single-wrap .content .rating-product i {
  font-size: 13px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FED700), to(#F78914));
  background: linear-gradient(180deg, #FED700 0%, #F78914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vendors-single-wrap .content .rating-product span {
  font-family: "Muli";
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #6F6F6F;
  padding-left: 10px;
}

.vendors-single-wrap .content .all-prodact {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #233D50;
  min-width: 123px;
  background: rgba(255, 166, 0, 0.362);
}

.vendors-single-wrap .content p {
  font-family: "Muli";
  font-weight: 400;
  font-size: 18px;
  color: #6F6F6F;
  margin-bottom: 0;
  padding-top: 10px;
  line-height: 25px;
}

.vendors-single-wrap .contact-ft {
  width: 30%;
}

@media (max-width: 991px) {
  .vendors-single-wrap .contact-ft {
    width: 100%;
    margin-top: 20px;
  }
}

.vendors-single-wrap .contact-ft ul li {
  padding-bottom: 10px;
  position: relative;
  color: #6F6F6F;
  font-size: 17px;
  text-align: left;
}

.vendors-single-wrap .contact-ft ul li .fi:before {
  font-size: 15px;
  margin-right: 5px;
}

.vendors-single-wrap .vendeor-social {
  width: 20%;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 991px) {
  .vendors-single-wrap .vendeor-social {
    width: 100%;
    margin-top: 10px;
    text-align: left;
  }
}

.vendors-single-wrap .vendeor-social li {
  display: inline-block;
}

.vendors-single-wrap .vendeor-social li a {
  color: #6F6F6F;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: white;
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 45px;
}

.vendors-single-wrap .vendeor-social li a:hover {
  color: #70c6c7;
}

.vendors-single-wrap .vendeor-social li:last-child a {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
14. wpo-blog-pg-section
--------------------------------------------------------------*/
.wpo-blog-pg-section {
  /*** format-standard ***/
  /*** format-gallery ***/
  /*** format-quote ***/
  /*** format-video ***/
}

.wpo-blog-pg-section .wpo-blog-content .post {
  margin-bottom: 70px;
}

@media (max-width: 991px) {
  .wpo-blog-pg-section .wpo-blog-content .post {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .wpo-blog-content .post {
    margin-bottom: 40px;
  }
}

.wpo-blog-pg-section .entry-meta {
  list-style: none;
  overflow: hidden;
  margin: 35px 0;
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .entry-meta {
    margin: 25px 0;
  }
}

.wpo-blog-pg-section .entry-meta ul {
  list-style: none;
}

.wpo-blog-pg-section .entry-meta ul li {
  font-weight: 500;
  font-size: 14px;
  font-size: 0.93333rem;
  float: left;
  text-transform: uppercase;
}

.wpo-blog-pg-section .entry-meta ul li a {
  color: #636893;
}

.wpo-blog-pg-section .entry-meta ul li a:hover {
  color: #70c6c7;
}

.wpo-blog-pg-section .entry-meta ul li i {
  position: relative;
  margin-right: 3px;
}

.wpo-blog-pg-section .entry-meta ul li i:before {
  font-size: 13px;
}

.wpo-blog-pg-section .entry-meta ul li + li {
  margin-left: 20px;
  padding-left: 20px;
  position: relative;
}

.wpo-blog-pg-section .entry-meta ul li + li:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 7px;
  content: "";
  background: #70c6c7;
  border-radius: 50%;
}

@media (max-width: 440px) {
  .wpo-blog-pg-section .entry-meta ul li + li:before {
    display: none;
  }
}

@media (max-width: 440px) {
  .wpo-blog-pg-section .entry-meta ul li + li {
    margin-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .entry-meta ul li {
    font-size: 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 440px) {
  .wpo-blog-pg-section .entry-meta ul li {
    float: none;
    display: block;
    margin-bottom: 5px;
  }
}

.wpo-blog-pg-section .post h3 {
  font-size: 34px;
  line-height: 1.2em;
  font-weight: 600;
  margin: -0.27em 0 0.7em;
  font-family: "Almarai";
}

@media (max-width: 991px) {
  .wpo-blog-pg-section .post h3 {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .post h3 {
    font-size: 22px;
  }
}

.wpo-blog-pg-section .post h3 a {
  color: #233D50;
  text-transform: capitalize;
}

.wpo-blog-pg-section .post h3 a:hover {
  color: #70c6c7;
}

.wpo-blog-pg-section .post p {
  margin-bottom: 1.5em;
}

@media (max-width: 991px) {
  .wpo-blog-pg-section .post p {
    font-size: 16px;
    font-size: 1.06667rem;
  }
}

.wpo-blog-pg-section .post a.read-more {
  color: #525252;
  text-transform: capitalize;
  font-size: 16px;
}

.wpo-blog-pg-section .post a.read-more:hover {
  color: #70c6c7;
}

.wpo-blog-pg-section .entry-media img {
  width: 100%;
}

.wpo-blog-pg-section .format-standard,
.wpo-blog-pg-section .format-quote {
  background-color: #f5f5f5;
  padding: 25px 35px 45px;
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .format-standard,
  .wpo-blog-pg-section .format-quote {
    padding: 25px 20px 45px;
  }
}

.wpo-blog-pg-section .format-standard {
  position: relative;
}

.wpo-blog-pg-section .format-standard:before {
  position: absolute;
  right: 20px;
  top: 10px;
  content: "\f11b";
  font-family: flaticon_ecommerce !important;
  font-size: 90px;
  line-height: 80px;
  color: #e7e6e6;
}

.wpo-blog-pg-section .format-gallery {
  position: relative;
}

.wpo-blog-pg-section .format-gallery .owl-controls {
  width: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-]:hover {
  background: #70c6c7;
  color: #fff;
}

.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-] {
  background: #fff;
  width: 50px;
  height: 50px;
  line-height: 58px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  color: #70c6c7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 0;
}

.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-] .fi::before {
  font-size: 20px;
}

.wpo-blog-pg-section .format-gallery .owl-nav .owl-prev,
.wpo-blog-pg-section .format-gallery .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpo-blog-pg-section .format-gallery .owl-nav .owl-prev {
  left: 15px;
}

.wpo-blog-pg-section .format-gallery .owl-nav .owl-next {
  right: 15px;
}

.wpo-blog-pg-section .format-quote {
  text-align: center;
  padding: 80px 60px;
  position: relative;
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .format-quote {
    padding: 40px 20px;
  }
}

.wpo-blog-pg-section .format-quote p {
  margin-bottom: 0;
}

.wpo-blog-pg-section .format-quote:before {
  font-family: "Flaticon";
  content: "\f120";
  font-size: 250px;
  font-size: 16.66667rem;
  color: #ecf3fb;
  margin-left: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.wpo-blog-pg-section .format-quote h3,
.wpo-blog-pg-section .format-quote p {
  position: relative;
}

.wpo-blog-pg-section .format-video .video-holder {
  position: relative;
  text-align: center;
}

.wpo-blog-pg-section .format-video .video-holder:before {
  content: "";
  background-color: #163967;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.5;
}

.wpo-blog-pg-section .format-video .video-holder:hover:before {
  opacity: 0.8;
}

.wpo-blog-pg-section .format-video .video-holder a {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 63px;
  height: 63px;
  line-height: 70px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}

.wpo-blog-pg-section .format-video .video-holder a:after {
  position: absolute;
  left: -12px;
  top: -12px;
  width: 140%;
  height: 140%;
  background: rgba(255, 255, 255, 0.3);
  content: "";
  -webkit-animation: spineer 2s infinite;
  animation: spineer 2s infinite;
  border-radius: 50%;
  z-index: -1;
}

.wpo-blog-pg-section .format-video .video-holder a:before {
  content: "";
  width: 0px;
  height: 0px;
  border-top: 9px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid #2f426b;
  position: absolute;
  left: 52%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.wpo-blog-pg-section .format-video .video-holder .fi:before {
  font-size: 20px;
  font-size: 1.33333rem;
  color: #70c6c7;
}

@media screen and (min-width: 1200px) {
  .blog-pg-left-sidebar .blog-sidebar {
    padding-right: 45px;
    padding-left: 0;
  }
}

@media screen and (min-width: 1200px) {
  .blog-pg-fullwidth .wpo-blog-content {
    padding: 0;
  }
}

@-webkit-keyframes save-the-date-pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(0.95, 0.95, 0.95);
    transform: scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes save-the-date-pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(0.95, 0.95, 0.95);
    transform: scale3d(0.95, 0.95, 0.95);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/*--------------------------------------------------------------
15. wpo-blog-single-section
--------------------------------------------------------------*/
.wpo-blog-single-section {
  /*** tag-share ***/
  /*** author-box ***/
  /*** more-posts ***/
  /*** comments area ***/
  /*** comment-respond ***/
}

.wpo-blog-single-section .entry-meta {
  list-style: none;
  overflow: hidden;
  margin: 35px 0;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .entry-meta {
    margin: 25px 0;
  }
}

.wpo-blog-single-section .entry-meta ul {
  list-style: none;
}

.wpo-blog-single-section .entry-meta ul li {
  font-weight: 500;
  font-size: 14px;
  float: left;
  text-transform: uppercase;
}

.wpo-blog-single-section .entry-meta ul li a {
  color: #636893;
}

.wpo-blog-single-section .entry-meta ul li a:hover {
  color: #70c6c7;
}

.wpo-blog-single-section .entry-meta ul li i {
  position: relative;
  top: 0;
  margin-right: 3px;
}

.wpo-blog-single-section .entry-meta ul li i.fi:before {
  font-size: 13px;
}

.wpo-blog-single-section .entry-meta ul li + li {
  margin-left: 20px;
  padding-left: 20px;
  position: relative;
}

.wpo-blog-single-section .entry-meta ul li + li:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 7px;
  content: "";
  background: #70c6c7;
  border-radius: 50%;
}

@media (max-width: 440px) {
  .wpo-blog-single-section .entry-meta ul li + li:before {
    display: none;
  }
}

@media (max-width: 440px) {
  .wpo-blog-single-section .entry-meta ul li + li {
    margin-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .wpo-blog-single-section .entry-meta ul li {
    font-size: 12px;
  }
}

@media (max-width: 440px) {
  .wpo-blog-single-section .entry-meta ul li {
    float: none;
    display: block;
    margin-bottom: 5px;
  }
}

.wpo-blog-single-section .entry-media img {
  width: 100%;
}

.wpo-blog-single-section .post h2 {
  font-size: 35px;
  margin: -0.22em 0 0.7em;
  line-height: 1.3em;
  font-family: "Almarai";
}

@media (max-width: 991px) {
  .wpo-blog-single-section .post h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .wpo-blog-single-section .post h2 {
    font-size: 25px;
  }
}

.wpo-blog-single-section .post p {
  margin-bottom: 1.5em;
}

.wpo-blog-single-section .post h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3em;
  margin: 1.8em 0 1em;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .post h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .wpo-blog-single-section .post h3 {
    font-size: 20px;
  }
}

.wpo-blog-single-section .post blockquote {
  background-color: #f5f5f5;
  color: #233d62;
  font-size: 20px;
  line-height: 1.6em;
  padding: 65px;
  margin-top: 60px;
  margin-bottom: 40px;
  border: 0;
  text-align: center;
  position: relative;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .post blockquote {
    padding: 55px 25px;
  }
}

.wpo-blog-single-section .post blockquote:before {
  font-family: "flaticon_ecommerce";
  content: "\f11b";
  font-size: 25px;
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 50%;
  top: -30px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 2px solid #f5f5f5;
  background: #fff;
  color: #70c6c7;
  border-radius: 50%;
}

.wpo-blog-single-section .post .gallery {
  overflow: hidden;
  margin: 40px -7.5px 0;
}

.wpo-blog-single-section .post .gallery > div {
  width: calc(50% - 15px);
  float: left;
  margin: 0 7.5px 15px;
}

.wpo-blog-single-section .post .gallery img {
  width: 100%;
}

.wpo-blog-single-section .tag-share,
.wpo-blog-single-section .tag-share-s2 {
  border-bottom: 1px solid #F0F0F0;
  margin: 75px 0 0;
  padding-bottom: 30px;
  color: #233D50;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .tag-share,
  .wpo-blog-single-section .tag-share-s2 {
    margin-top: 40px;
  }
}

.wpo-blog-single-section .tag-share ul,
.wpo-blog-single-section .tag-share-s2 ul {
  list-style: none;
  display: inline-block;
  overflow: hidden;
}

.wpo-blog-single-section .tag-share ul li,
.wpo-blog-single-section .tag-share-s2 ul li {
  float: left;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .tag-share ul li,
  .wpo-blog-single-section .tag-share-s2 ul li {
    margin: 2px;
  }
}

.wpo-blog-single-section .tag-share ul > li + li,
.wpo-blog-single-section .tag-share-s2 ul > li + li {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .tag-share ul > li + li,
  .wpo-blog-single-section .tag-share-s2 ul > li + li {
    margin: 2px;
  }
}

.wpo-blog-single-section .tag-share .tag,
.wpo-blog-single-section .tag-share-s2 .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wpo-blog-single-section .tag-share .tag > span,
.wpo-blog-single-section .tag-share-s2 .tag > span {
  font-family: "Almarai";
  color: #233D50;
  font-weight: 600;
  display: inline-block;
  padding-right: 15px;
  text-transform: uppercase;
}

.wpo-blog-single-section .tag-share .tag ul,
.wpo-blog-single-section .tag-share-s2 .tag ul {
  list-style: none;
  position: relative;
}

.wpo-blog-single-section .tag-share .tag li,
.wpo-blog-single-section .tag-share-s2 .tag li {
  position: relative;
}

.wpo-blog-single-section .tag-share .tag a,
.wpo-blog-single-section .tag-share-s2 .tag a {
  font-size: 12px;
  display: inline-block;
  padding: 5px 18px;
  color: #233D50;
  background: #f5f5f5;
  border-radius: 5px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .tag-share .tag a,
  .wpo-blog-single-section .tag-share-s2 .tag a {
    font-size: 13px;
  }
}

.wpo-blog-single-section .tag-share .tag a:hover,
.wpo-blog-single-section .tag-share-s2 .tag a:hover {
  color: #70c6c7;
}

.wpo-blog-single-section .tag-share-s2 {
  margin: 0;
  margin-top: 30px;
  border-bottom: 0;
}

.wpo-blog-single-section .tag-share-s2 .tag a {
  padding: 0;
  font-size: 16px;
  text-transform: capitalize;
  background: none;
  text-decoration: underline;
  color: #525252;
}

.wpo-blog-single-section .author-box {
  margin: 35px 0 60px;
}

.wpo-blog-single-section .author-box .author-avatar {
  float: left;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .author-box .author-avatar {
    float: none;
  }
}

.wpo-blog-single-section .author-box .author-avatar img {
  border-radius: 50%;
}

.wpo-blog-single-section .author-box .author-content {
  display: block;
  overflow: hidden;
  padding-left: 25px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .author-box .author-content {
    padding: 0;
    margin: 15px 0 0 0;
  }
}

.wpo-blog-single-section .author-box .author-content p {
  margin-bottom: 20px;
}

.wpo-blog-single-section .author-box .author-name {
  font-family: "Almarai";
  font-size: 24px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
  color: #233D50;
}

.wpo-blog-single-section .author-box .social-link {
  display: inline-block;
  list-style: none;
}

.wpo-blog-single-section .author-box .social-link li {
  float: left;
  margin-right: 12px;
}

.wpo-blog-single-section .author-box .social-link a {
  display: block;
  font-size: 13px;
  color: #233D50;
}

.wpo-blog-single-section .author-box .social-link a:hover {
  color: #70c6c7;
}

.wpo-blog-single-section .more-posts {
  overflow: hidden;
  border: 1px solid #F1E2CC;
  padding: 0 25px;
}

.wpo-blog-single-section .more-posts > div {
  width: 50%;
  float: left;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts > div {
    width: 100%;
    float: none;
  }
}

.wpo-blog-single-section .more-posts > div > a {
  display: inline-block;
}

.wpo-blog-single-section .more-posts .previous-post,
.wpo-blog-single-section .more-posts .next-post {
  padding: 40px 0;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .previous-post,
  .wpo-blog-single-section .more-posts .next-post {
    padding: 25px 15px !important;
  }
}

.wpo-blog-single-section .more-posts .next-post {
  text-align: right;
  border-left: 1px solid #F1E2CC;
  padding-left: 15px;
  padding-right: 5px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .next-post {
    border-left: 0;
    text-align: left;
    border-top: 1px solid #F1E2CC;
  }
}

.wpo-blog-single-section .more-posts .next-post .post-control-link {
  padding-right: 25px;
  position: relative;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .next-post .post-control-link {
    padding-right: 0;
  }
}

.wpo-blog-single-section .more-posts .next-post .post-control-link:before {
  font-family: "themify";
  content: "\e629";
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .next-post .post-control-link:before {
    display: none;
  }
}

.wpo-blog-single-section .more-posts .previous-post {
  padding-right: 15px;
  padding-left: 5px;
}

.wpo-blog-single-section .more-posts .previous-post .post-control-link {
  padding-left: 25px;
  position: relative;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .previous-post .post-control-link {
    padding-left: 0;
  }
}

.wpo-blog-single-section .more-posts .previous-post .post-control-link:before {
  font-family: "themify";
  content: "\e629";
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .previous-post .post-control-link:before {
    display: none;
  }
}

.wpo-blog-single-section .more-posts .previous-post > a > span,
.wpo-blog-single-section .more-posts .next-post > a > span {
  display: block;
}

.wpo-blog-single-section .more-posts .post-control-link {
  font-size: 14px;
  color: #525252;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}

.wpo-blog-single-section .more-posts .post-name {
  font-size: 16px;
  color: #233D50;
  margin: 0.7em 0 0;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .more-posts .post-name {
    font-size: 16px;
  }
}

.wpo-blog-single-section .more-posts a:hover .post-control-link {
  color: #70c6c7;
}

.wpo-blog-single-section .comments-area {
  margin-top: 70px;
}

.wpo-blog-single-section .comments-area li > div {
  padding: 35px;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comments-area li > div {
    padding: 35px 25px;
  }
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comments-area li > div {
    padding: 20px 25px;
  }
}

.wpo-blog-single-section .comments-area ol {
  list-style-type: none;
  padding-left: 0;
}

.wpo-blog-single-section .comments-area ol ul {
  padding-left: 80px;
  list-style-type: none;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comments-area ol ul {
    padding-left: 30px;
  }
}

.wpo-blog-single-section .comments-area ol > li:last-child div {
  border-bottom: 0;
}

.wpo-blog-single-section .comments-area .comments-title {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 1em;
  text-transform: uppercase;
  letter-spacing: 3px;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comments-area .comments-title {
    font-size: 20px;
  }
}

.wpo-blog-single-section .comments-area li > div {
  position: relative;
}

.wpo-blog-single-section .comments-area .comment-theme {
  position: absolute;
  left: 10px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comments-area .comment-theme {
    position: static;
  }
}

.wpo-blog-single-section .comments-area .comment-theme img {
  border-radius: 50%;
}

.wpo-blog-single-section .comments-area .comment-main-area {
  padding-left: 100px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comments-area .comment-main-area {
    padding-left: 0;
    margin-top: 25px;
  }
}

.wpo-blog-single-section .comments-area .comment-main-area p {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comments-area .comment-main-area p {
    margin-bottom: 0;
  }
}

.wpo-blog-single-section .comments-area .comments-meta h4 {
  font-family: "Almarai";
  font-size: 20px;
  color: #233D50;
  font-weight: 600;
  margin: 0 0 1em;
}

.wpo-blog-single-section .comments-area .comments-meta h4 span {
  font-size: 15px;
  color: #525252;
  font-weight: normal;
  text-transform: none;
  display: inline-block;
  padding-left: 5px;
  font-family: "Muli";
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comments-area .comments-meta h4 span {
    padding-left: 0;
  }
}

.wpo-blog-single-section .comments-area .comment-reply-link {
  font-family: "Almarai";
  font-size: 13px;
  font-weight: 600;
  color: #233D50;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  font-family: "Muli";
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wpo-blog-single-section .comments-area .comment-reply-link:hover {
  color: #70c6c7;
}

.wpo-blog-single-section .children {
  position: relative;
}

.wpo-blog-single-section .children::before {
  position: absolute;
  content: url(../images/blog-details/comments-author/line.png);
  left: 50px;
  top: -172px;
  z-index: -1;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .children::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .wpo-blog-single-section .children {
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .wpo-blog-single-section .children p {
    padding-right: 0px;
    font-size: 16px;
    line-height: 25px;
  }
}

.wpo-blog-single-section .comment-respond {
  margin-top: 70px;
}

.wpo-blog-single-section .comment-respond .comment-reply-title {
  font-size: 22px;
  margin: 0 0 1.5em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comment-respond .comment-reply-title {
    font-size: 20px;
  }
}

.wpo-blog-single-section .comment-respond form input,
.wpo-blog-single-section .comment-respond form textarea {
  background-color: #fff;
  width: 100%;
  height: 55px;
  border: 1px solid #a4adbe;
  padding: 6px 15px;
  margin-bottom: 15px;
  outline: 0;
  border-radius: 30px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.wpo-blog-single-section .comment-respond form input:focus,
.wpo-blog-single-section .comment-respond form textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #70c6c7;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comment-respond form input,
  .wpo-blog-single-section .comment-respond form textarea {
    height: 40px;
  }
}

.wpo-blog-single-section .comment-respond form textarea {
  height: 220px;
  padding: 15px;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comment-respond form textarea {
    height: 150px;
  }
}

.wpo-blog-single-section .comment-respond .form-inputs {
  overflow: hidden;
}

.wpo-blog-single-section .comment-respond .form-inputs > input:nth-child(1) {
  width: 49%;
  float: left;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comment-respond .form-inputs > input:nth-child(1) {
    width: 100%;
    float: none;
  }
}

.wpo-blog-single-section .comment-respond .form-inputs > input:nth-child(2) {
  width: 49%;
  float: right;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comment-respond .form-inputs > input:nth-child(2) {
    width: 100%;
    float: none;
  }
}

.wpo-blog-single-section .comment-respond .form-submit input {
  font-family: "Almarai";
  max-width: 180px;
  background-color: #1e2845;
  color: #fff;
  margin-bottom: 0;
  border: 0;
  outline: 0;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 2px;
  border-radius: 30px;
}

.wpo-blog-single-section .comment-respond .form-submit input:hover {
  background-color: #233D50;
}

@media screen and (min-width: 1200px) {
  .wpo-blog-single-left-sidebar-section .blog-sidebar {
    padding-right: 45px;
    padding-left: 0;
  }
}

/*--------------------------------------------------------------
16. wpo-faq-page
--------------------------------------------------------------*/
.wpo-faq-section {
  padding: 80px 0;
}

.wpo-faq-section .wpo-section-title {
  text-align: center;
}

.wpo-faq-section .wpo-section-title h2 {
        color: #333a7b;
  display: inline-block;
}

.wpo-faq-section .accordion-item {
  border: 0;
  border: 1px solid #e1e1e1;
  padding: 5px 20px;
  margin-bottom: 20px;
}

.wpo-faq-section .accordion-item .accordion-body {
  padding-left: 0;
  padding-right: 0;
}

.wpo-faq-section .accordion-item button {
  padding: 20px;
  border: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  color: #233D50;
  text-align: left;
  font-family: "Muli";
}

.wpo-faq-section .accordion-item button::after {
  background: none;
  font-family: "themify";
  content: "\e622";
  font-size: 15px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  font-weight: 700;
}

.wpo-faq-section .accordion-item button.collapsed {
  color: #373b3e;
}

.wpo-faq-section .accordion-item button.collapsed::after {
  content: "\e61a";
}

.wpo-faq-section .accordion-item button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border-color: #e1e1e1;
}

.wpo-faq-section .accordion-item .accordion-collapse {
  border: 0;
}

.wpo-faq-section .accordion-button {
  background: transparent;
}

/*-----------------------------------------------------
#4.1 faq section
------------------------------------------------------*/
.question-area {
  background: #F0F0F0;
  padding: 80px 0;
}

@media (max-width: 991px) {
  .question-area {
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  .question-area {
    padding-top: 60px;
  }
}

.question-area .wpo-section-title {
  text-align: center;
}

.question-area .wpo-section-title h2 {
    font-family: 'Almarai';
  display: inline-block;
}

.question-touch {
  max-width: 570px;
  margin: auto;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
  padding: 50px;
  text-align: center;
  padding-top: 60px;
  background: #fff;
  border-radius: 5px;
}

@media (max-width: 590px) {
  .question-touch {
    padding: 15px;
  }
}

@media (max-width: 991px) {
  .faq-pb {
    margin-top: 15px;
  }
}

.question-touch h2 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-top: 0;
  margin-bottom: 35px;
}

.question-touch .half-col {
  width: 100%;
}

.question-touch input,
.question-touch textarea {
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  background: none;
  border-radius: 0;
  border-bottom: 1px solid #ddd;
  border-top: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 22px;
}

.question-touch input:focus,
.question-touch textarea:focus {
  outline: none;
  background: none;
  border-radius: 0;
  border-bottom: 1px solid #eeeeee;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.question-touch textarea {
  height: 160px;
}

.question-touch ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #888;
  font-size: 14px;
}

.question-touch ::-moz-placeholder {
  /* Firefox 19+ */
  color: #888;
  font-size: 14px;
}

.question-touch :-ms-input-placeholder {
  /* IE 10+ */
  color: #888;
  font-size: 14px;
}

.question-touch :-moz-placeholder {
  /* Firefox 18- */
  color: #888;
  font-size: 14px;
}

.question-touch .theme-btn, .question-touch .view-cart-btn {
  padding: 17px 40px;
  border: none;
  background: #70c6c7;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  outline: none;
}

.question-touch .theme-btn::before, .question-touch .view-cart-btn::before {
  display: none;
  position: unset;
}

/*---------------------------------------------------------
17. login-design
-----------------------------------------------------------*/
.wpo-login-area {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  padding: 100px 0;
}

.wpo-accountWrapper {
  width: 1170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fff;
  margin: auto;
  -webkit-box-shadow: 0px 14px 60px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 14px 60px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

.wpo-accountInfo {
  width: 50%;
  background: #062265;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 600px;
  text-align: center;
  padding: 50px;
}

.wpo-accountForm {
  width: 50%;
  padding: 70px 85px;
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wpo-accountInfoHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.wpo-accountInfoHeader h2 a {
  display: block;
  line-height: 50px;
  font-size: 35px;
  font-weight: 600;
  color: #fff;
}

.wpo-accountInfo .wpo-accountBtn {
  height: 40px;
  background: #fff;
  padding: 0px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: capitalize;
  font-size: 14px;
  color: #062265;
  border: 2px solid #fff;
  -webkit-transition: all .4s ease-in-out 0s;
  transition: all .4s ease-in-out 0s;
}

.wpo-accountInfo .wpo-accountBtn:hover {
  background: transparent;
  color: #fff;
}

.wpo-accountInfo p {
  color: #fff;
  font-size: 18px;
  margin-top: 20px;
}

.fromTitle h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.fromTitle p {
  font-size: 15px;
  margin-bottom: 40px;
}

.form-style input {
  width: 100%;
  margin-bottom: 15px;
  padding-left: 20px;
  height: 60px;
  border: 1px solid #e5e5e5 !important;
  border-radius: 2px;
  border: none;
}

.form-style input:focus {
  outline: none;
  border: 1px solid #e5e5e5 !important;
}

input[type=checkbox] + label {
  display: block;
  margin: 0.2em;
  cursor: pointer;
  padding: 0.2em;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label:before {
  content: "\2714";
  border: 1px solid #e5e5e5;
  border-radius: 0.2em;
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  padding-left: 0.2em;
  padding-bottom: 0.3em;
  margin-right: 0.2em;
  vertical-align: bottom;
  color: transparent;
  -webkit-transition: .2s;
  transition: .2s;
  line-height: 1.2em;
  position: absolute;
  left: 0;
}

input[type=checkbox] + label:active:before {
  -webkit-transform: scale(0);
          transform: scale(0);
}

input[type=checkbox]:checked + label:before {
  background-color: #70c6c7;
  border-color: #70c6c7;
  color: #fff;
}

input[type=checkbox]:disabled + label:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  border-color: #aaa;
}

input[type=checkbox]:checked:disabled + label:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  background-color: #bfb;
  border-color: #bfb;
}

.check-box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.forget-btn a {
  display: inline-block;
  font-size: 14px;
  color: #70c6c7;
}

.input-box label {
  color: #676B79;
  font-weight: 500;
  font-size: 16px;
  padding-left: 20px !important;
}

.input-box {
  position: relative;
}

.wpo-accountForm .wpo-accountBtn {
  font-size: 16px;
  padding: 10px 20px;
  border: 2px solid #70c6c7;
  width: 100%;
  background: #70c6c7;
  color: #fff;
  -webkit-transition: all .4s ease-in-out 0s;
  transition: all .4s ease-in-out 0s;
  margin-top: 30px;
}

.wpo-accountForm .wpo-accountBtn:hover {
  background: transparent;
  color: #333;
}

.or {
  border-top: 1px dashed #e5e5e5;
  margin-top: 45px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
}

.or span {
  font-size: 16px;
  text-transform: uppercase;
  display: inline-block;
  padding: 0 25px;
  background: #fff;
  position: relative;
  top: -14px;
  color: #70c6c7;
}

.wpo-socialLoginBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}

.wpo-socialLoginBtn li button {
  height: 40px;
  width: 50px;
  min-width: 50px;
  font-size: 15px;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: none;
  text-transform: capitalize;
  font-weight: 400;
  color: #fff;
}

.wpo-socialLoginBtn li button.facebook {
  background: #3b5998;
}

.wpo-socialLoginBtn li button.linkedin {
  background: #0077B5;
}

.wpo-socialLoginBtn li button.twitter {
  background: #55acee;
}

.wpo-socialLoginBtn li {
  margin: 0px 5px 5px;
}

.subText {
  text-align: center;
}

.subText a {
  display: inline-block;
  font-size: 14px;
  color: #70c6c7;
}

.form-group {
  position: relative;
}

.input-group-btn {
  position: absolute;
  right: 10px;
  top: 37px;
}

.input-group-btn button {
  background: transparent !important;
  border: none;
  outline: none;
  background: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.input-group-btn button:hover {
  background: transparent;
}

.input-group-btn button:focus,
.input-group-btn button.active {
  background: none !important;
  border: none !important;
  outline: none !important;
}

.btn-default.active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background: none !important;
  border: none;
  outline: none;
}

@media (max-width: 1200px) {
  .wpo-accountWrapper {
    width: 900px;
  }
  .wpo-accountForm {
    padding: 70px 35px;
  }
}

@media (max-width: 1024px) {
  .wpo-accountWrapper {
    width: 100%;
    max-width: 100%;
  }
  .wpo-accountForm {
    padding: 70px 35px;
  }
}

@media (max-width: 992px) {
  .wpo-accountInfo {
    width: 100%;
  }
  .wpo-accountForm {
    width: 100%;
  }
  .accountArea {
    padding: 0px 16px;
  }
}

@media (max-width: 767px) {
  .wpo-accountInfo {
    width: 100%;
  }
  .wpo-accountForm {
    width: 100%;
  }
}

.back-home {
  max-width: 150px;
}

.tp-login-area {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  padding: 100px 0;
}

.tp-login-area .tp-accountWrapper {
  width: 1170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fff;
  margin: auto;
  -webkit-box-shadow: 0px 14px 60px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 14px 60px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

.tp-login-area .tp-accountInfo {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 600px;
  text-align: center;
  padding: 50px;
  position: relative;
  z-index: 1;
}

.tp-login-area .tp-accountInfo:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #062265;
  content: "";
  opacity: .85;
  z-index: -1;
}

.tp-login-area .tp-accountForm {
  width: 50%;
  padding: 55px 85px;
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tp-login-area .tp-accountInfoHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tp-login-area .tp-accountInfoHeader a {
  font-size: 50px;
  font-family: "Almarai";
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  line-height: 49px;
}

@media (max-width: 450px) {
  .tp-login-area .tp-accountInfoHeader a {
    font-size: 30px;
  }
}

.tp-login-area .tp-accountInfoHeader a img {
  margin-right: 10px;
}

@media (max-width: 450px) {
  .tp-login-area .tp-accountInfoHeader a img {
    margin-right: 3px;
  }
}

.tp-login-area .tp-accountInfoHeader h2 a {
  display: block;
  line-height: 50px;
  font-size: 35px;
  font-weight: 600;
  color: #fff;
}

.tp-login-area .tp-accountInfo .tp-accountBtn {
  height: 40px;
  background: #fff;
  padding: 0px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: capitalize;
  font-size: 14px;
  color: #062265;
  border: 2px solid #fff;
  -webkit-transition: all .4s ease-in-out 0s;
  transition: all .4s ease-in-out 0s;
  border-radius: 5px;
  font-family: "Muli";
}

.tp-login-area .tp-accountInfo .tp-accountBtn:hover {
  background: transparent;
  color: #fff;
}

.tp-login-area .tp-accountInfo p {
  color: #fff;
  font-size: 18px;
  margin-top: 20px;
}

.tp-login-area .fromTitle h2 {
  font-size: 35px;
  margin-bottom: 10px;
}

.tp-login-area .fromTitle p {
  font-size: 15px;
  margin-bottom: 40px;
}

.tp-login-area .form-style input {
  width: 100%;
  margin-bottom: 15px;
  padding-left: 20px;
  height: 60px;
  border: 1px solid #e5e5e5 !important;
  border-radius: 2px;
  border: none;
  margin-top: 6px;
}

.tp-login-area .form-style input:focus {
  outline: none;
  border: 1px solid #e5e5e5 !important;
}

.tp-login-area input[type=checkbox] + label {
  display: block;
  margin: 0.2em;
  cursor: pointer;
  padding: 0.2em;
}

.tp-login-area input[type=checkbox] {
  display: none;
}

.tp-login-area input[type=checkbox] + label:before {
  content: "\2714";
  border: 1px solid #e5e5e5;
  border-radius: 0.2em;
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  padding-left: 0.2em;
  padding-bottom: 0.3em;
  margin-right: 0.2em;
  vertical-align: bottom;
  color: transparent;
  -webkit-transition: .2s;
  transition: .2s;
  line-height: 1.2em;
  position: absolute;
  left: 0px;
}

.tp-login-area input[type=checkbox] + label:active:before {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.tp-login-area input[type=checkbox]:checked + label:before {
  background-color: #70c6c7;
  border-color: #70c6c7;
  color: #fff;
}

.tp-login-area input[type=checkbox]:disabled + label:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  border-color: #aaa;
}

.tp-login-area input[type=checkbox]:checked:disabled + label:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  background-color: #bfb;
  border-color: #bfb;
}

.tp-login-area .check-box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.tp-login-area .forget-btn a {
  display: inline-block;
  font-size: 14px;
  color: #70c6c7;
}

.tp-login-area .input-box label {
  color: #676B79;
  font-weight: 500;
  font-size: 16px;
  padding-left: 25px !important;
}

.tp-login-area .tp-accountForm .tp-accountBtn {
  font-size: 16px;
  padding: 10px 20px;
  border: 2px solid #70c6c7;
  width: 100%;
  background: #70c6c7;
  color: #fff;
  -webkit-transition: all .4s ease-in-out 0s;
  transition: all .4s ease-in-out 0s;
  margin-top: 30px;
}

.tp-login-area .tp-accountForm .tp-accountBtn:hover {
  background: transparent;
  color: #333;
}

.tp-login-area .or {
  border-top: 1px dashed #e5e5e5;
  margin-top: 45px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
}

.tp-login-area .or span {
  font-size: 16px;
  text-transform: uppercase;
  display: inline-block;
  padding: 0 25px;
  background: #fff;
  position: relative;
  top: -14px;
  color: #70c6c7;
}

.tp-login-area .tp-socialLoginBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}

.tp-login-area .tp-socialLoginBtn li button {
  height: 40px;
  width: 50px;
  min-width: 50px;
  font-size: 15px;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: none;
  text-transform: capitalize;
  font-weight: 400;
  color: #fff;
}

.tp-login-area .tp-socialLoginBtn li button.facebook {
  background: #3b5998;
}

.tp-login-area .tp-socialLoginBtn li button.linkedin {
  background: #0077B5;
}

.tp-login-area .tp-socialLoginBtn li button.twitter {
  background: #55acee;
}

.tp-login-area .tp-socialLoginBtn li {
  margin: 0px 5px 5px;
}

.tp-login-area .subText {
  text-align: center;
}

.tp-login-area .subText a {
  display: inline-block;
  font-size: 14px;
  color: #70c6c7;
}

.tp-login-area .form-group {
  position: relative;
}

.tp-login-area .input-group-btn {
  position: absolute;
  right: 10px;
  top: 42px;
}

.tp-login-area .input-group-btn button {
  background: transparent !important;
  border: none;
  outline: none;
  background: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.tp-login-area .input-group-btn button:hover {
  background: transparent;
}

.tp-login-area .input-group-btn button:focus,
.tp-login-area .input-group-btn button.active {
  background: none !important;
  border: none !important;
  outline: none !important;
}

.tp-login-area .btn-default.active,
.tp-login-area .btn-default.active,
.tp-login-area .open > .dropdown-toggle.btn-default {
  background: none !important;
  border: none;
  outline: none;
}

@media (max-width: 1200px) {
  .tp-login-area .tp-accountWrapper {
    width: 900px;
  }
  .tp-login-area .tp-accountForm {
    padding: 70px 35px;
  }
}

@media (max-width: 1024px) {
  .tp-login-area .tp-accountWrapper {
    width: 100%;
    max-width: 100%;
  }
  .tp-login-area .tp-accountForm {
    padding: 70px 35px;
  }
}

@media (max-width: 992px) {
  .tp-login-area .tp-accountInfo {
    width: 100%;
    min-height: 400px;
  }
  .tp-login-area .tp-accountForm {
    width: 100%;
  }
  .tp-login-area .accountArea {
    padding: 0px 16px;
  }
}

@media (max-width: 767px) {
  .tp-login-area .tp-accountInfo {
    width: 100%;
    padding: 15px;
  }
  .tp-login-area .tp-accountForm {
    width: 100%;
    padding: 20px;
  }
}

.tp-login-area .back-home {
  max-width: 150px;
}

/*--------------------------------------------------------------
18. wpo-contact-pg-section
--------------------------------------------------------------*/
.wpo-contact-pg-section {
  padding-bottom: 0px;
}

.wpo-contact-pg-section .wpo-contact-title {
    font-family: "Almarai";
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .wpo-contact-pg-section .wpo-contact-title {
    margin-bottom: 30px;
  }
}

.wpo-contact-pg-section .wpo-contact-title h2 {
  font-size: 35px;
  font-size: 2.33333rem;
  font-weight: 400;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .wpo-contact-pg-section .wpo-contact-title h2 {
    font-size: 25px;
    font-size: 1.66667rem;
  }
}

.wpo-contact-pg-section .wpo-contact-title p {
  color: #6F6F6F;
}

.wpo-contact-pg-section form input,
.wpo-contact-pg-section form select,
.wpo-contact-pg-section form textarea {
    text-align: right;
  background: transparent;
  width: 100%;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 0px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  padding-left: 25px;
  border: 1px solid #ebebeb;
}

@media (max-width: 991px) {
  .wpo-contact-pg-section form input,
  .wpo-contact-pg-section form select,
  .wpo-contact-pg-section form textarea {
    height: 45px;
  }
}

.wpo-contact-pg-section form input:focus,
.wpo-contact-pg-section form select:focus,
.wpo-contact-pg-section form textarea:focus {
  border-color: #70c6c7;
  background: transparent;
}

.wpo-contact-pg-section form textarea {
  height: 180px;
  padding-top: 15px;
}

.wpo-contact-pg-section form {
  margin: 0 -15px;
  overflow: hidden;
}

.wpo-contact-pg-section form ::-webkit-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.wpo-contact-pg-section form :-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.wpo-contact-pg-section form ::-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.wpo-contact-pg-section form :-ms-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.wpo-contact-pg-section form select {
  display: inline-block;
  color: #a9a9a9;
  cursor: pointer;
  opacity: 1;
  padding: 6px 35px;
  font-size: 15px;
  font-size: 1rem;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}

.wpo-contact-pg-section form select:focus {
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
}

.wpo-contact-pg-section form .submit-area {
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
  margin-left: 0;
}

@media (max-width: 767px) {
  .wpo-contact-pg-section form .submit-area {
    margin-bottom: 0;
  }
}

.wpo-contact-pg-section form .submit-area .theme-btn, .wpo-contact-pg-section form .submit-area .view-cart-btn {
  border-radius: 0px;
  font-family: "Almarai";
  font-size: 16px;
}

.wpo-contact-pg-section form .submit-area .theme-btn:after, .wpo-contact-pg-section form .submit-area .view-cart-btn:after {
  border-radius: 0px;
  background: #233D50;
}

.wpo-contact-pg-section form > div {
  width: calc(50% - 30px);
  float: left;
  margin: 0 15px 25px;
}

@media (max-width: 600px) {
  .wpo-contact-pg-section form > div {
    width: calc(100% - 25px);
    float: none;
  }
}

.wpo-contact-pg-section form .fullwidth {
  width: calc(100% - 25px);
  float: none;
  clear: both;
}

.wpo-contact-pg-section .office-info {
    font-family: "Almarai" !important;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .wpo-contact-pg-section .office-info {
    padding-bottom: 60px;
  }
}

@media (max-width: 1200px) {
  .wpo-contact-pg-section .office-info .col .office-info-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 1200px) {
  .wpo-contact-pg-section .office-info .col:last-child .office-info-item {
    margin-bottom: 0px;
  }
}

.wpo-contact-pg-section .office-info .office-info-item {
  text-align: center;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
          box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
  padding: 40px;
}

.wpo-contact-pg-section .office-info .office-info-item .office-info-icon {
  width: 85px;
  height: 85px;
  background: #f5f5f5;
  line-height: 112px;
  text-align: center;
  margin: 0 auto;
  border-radius: 50%;
}

.wpo-contact-pg-section .office-info .office-info-item .office-info-icon .icon .fi:before {
  font-size: 35px;
  color: #70c6c7;
}

.wpo-contact-pg-section .office-info .office-info-item .office-info-text h2 {
  font-size: 30px;
  font-weight: 500;
  margin: 20px 0;
}

.wpo-contact-pg-section .office-info .office-info-item .office-info-text p {
    direction:  ltr;
  margin-bottom: 0;
  color: #6F6F6F;
}

.wpo-contact-pg-section .wpo-contact-form-area {
    font-family: "Almarai";
  padding: 50px;
  background: #fff;
  -webkit-box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
          box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
  padding-bottom: 0;
  margin-bottom: -125px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .wpo-contact-pg-section .wpo-contact-form-area {
    padding: 30px;
    padding-top: 50px;
  }
}

.wpo-contact-pg-section .wpo-contact-form-area .theme-btn, .wpo-contact-pg-section .wpo-contact-form-area .view-cart-btn {
  padding: 17px 40px;
  border: none;
  background: #70c6c7;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  outline: none;
}

.wpo-contact-pg-section .wpo-contact-form-area .theme-btn::before, .wpo-contact-pg-section .wpo-contact-form-area .view-cart-btn::before {
  display: none;
  position: unset;
}

.wpo-contact-map-section .wpo-contact-map {
  height: 550px;
}

.wpo-contact-map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.wpo-contact-map-section h2.hidden {
  display: none;
}

/*--------------------------------------------------------------
    19. error-404-section
  --------------------------------------------------------------*/
.error-404-section {
  text-align: center;
}

.error-404-section .error-message {
  margin-top: 70px;
  padding: 0 200px;
}

@media (max-width: 991px) {
  .error-404-section .error-message {
    margin-top: 50px;
    padding: 0 100px;
  }
}

@media (max-width: 767px) {
  .error-404-section .error-message {
    padding: 0;
  }
}

.error-404-section .error-message h3 {
  font-size: 30px;
  font-size: 2rem;
  margin: 0 0 0.8em;
}

.error-404-section .error-message p {
  margin-bottom: 1.8em;
  color: #6F6F6F;
}

.error-404-section .error-message .theme-btn, .error-404-section .error-message .view-cart-btn {
  padding: 17px 40px;
  border: none;
  background: #70c6c7;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  outline: none;
}

.error-404-section .error-message .theme-btn::before, .error-404-section .error-message .view-cart-btn::before {
  border: 1px dashed #70c6c7;
}


html[dir="rtl"] .wpo-hero-slider {
    direction: rtl !important;
}

html[dir="rtl"] .hero-slider {
    direction: ltr !important; /* Ensures the slider items move correctly */
}

html[dir="rtl"] .hero-slider-item {
    text-align: right !important; /* Align text and buttons to the right */
}

html[dir="rtl"] .slider-content {
    right: 0 !important;
    left: auto !important;
}

html[dir="rtl"] .hero-social {
    right: auto !important;
    left: 10px !important; /* Moves social icons to the left */
}


.no-ads-message {
    background-color: #70c6c7; /* Same color as the "Load More" button */
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    width: auto;
    margin-top: 20px;
    cursor: pointer;
}

.no-ads-message:hover {
    background-color: #55a5a5; /* Slightly darker color on hover */
}



/*# sourceMappingURL=style.css.map */