/*============================================


==============================================*/
/* CSS Index
==============================================

    01. Theme Default CSS
    02. Header Style
    03. Footer
    04. Hero
    05. featured-section
    06. Animate-marque-sec
    07. offer-banner-section
    08. product-section 
    09. cta-banner-section
    10. latest-product-section
    11. cta-banner-section2
    12. deal-product-section
    13. best-seller-section
    14. features-section
    15. daily-best-sell-section
    16. partners-section
    17. Testimonial-section
    18. cta-banner-section3
    19. Blog-section
    20. offer-features-area
    21. Home-style-2
    22. Home-style-3
    23. About Page
    24. Shop-Page
    25. Shop-Single
    26. cart-page-style
    27. Checkout-page
    28. compare-section
    29. Blog Page
    30. Blog Single Page
    31. Contact Page
    32. 404 page
    33. Auth-page

==============================================*/
/*=========================================
 01. Theme Default CSS  
 ==========================================*/
/*---------------------------
	Fonts
----------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&amp;family=Rubik:ital,wght@0,300..900;1,300..900&amp;display=swap");
/* 1.0 Common css  */
html {
  font-size: 15px;
}

:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
  color: #5D666F;
  background-color: #fff;
  font-size: 16px;
  font-size: calc-rem-value(16);
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

body.dark-page {
  background-color: #fff;
}

p {
  font-size: 16px;
  color: #5D666F;
  line-height: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1C263A;
  font-family: "Cormorant";
  font-weight: 400;
}

ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

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

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.section-fluid {
  padding: 120px 65px;
}
@media (max-width: 991px) {
  .section-fluid {
    padding: 90px 30px;
  }
}
@media (max-width: 575px) {
  .section-fluid {
    padding: 80px 0px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
}

.hidden {
  display: none;
}

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

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

@media (max-width: 991px) {
  .page-wrapper {
    overflow: hidden;
  }
}

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

.section-bg {
  background: #F5F5F5 !important;
}

.separator-padding {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .separator-padding {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .separator-padding {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .separator-padding {
    padding: 60px 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;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .pb-120 {
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}

/*** contact form error handling ***/
.contact-activation .error-handling-messages {
  width: 100% !important;
  margin-top: 15px !important;
}
.contact-activation label.error {
  color: red;
  font-size: 13px;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
  margin-bottom: 10px;
}
.contact-activation #c-loader,
.contact-activation #loader {
  display: none;
  margin-top: 10px;
}
.contact-activation #c-loader i,
.contact-activation #loader i {
  font-size: 30px;
  font-size: calc-rem-value(30);
  color: #15a9e3;
  display: inline-block;
  -webkit-animation: rotating linear 2s infinite;
  animation: rotating linear 2s infinite;
}
.contact-activation #success,
.contact-activation #c-success,
.contact-activation #c-error,
.contact-activation #error {
  width: 100%;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none;
}
@media (max-width: 767px) {
  .contact-activation #success,
  .contact-activation #c-success,
  .contact-activation #c-error,
  .contact-activation #error {
    font-size: 15px;
  }
}
.contact-activation #c-success,
.contact-activation #success {
  background-color: #009a00;
  border-left: 5px solid green;
  margin-bottom: 5px;
}
.contact-activation #c-error,
.contact-activation #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-btn {
  background-color: #15a9e3;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 4px solid #0646c1;
  border-radius: 3px;
  text-align: center;
  display: none;
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 15px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .back-btn {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.back-btn:hover {
  background-color: #15a9e3;
}

.back-btn i {
  font-size: 18px;
  font-size: calc-rem-value(18);
  color: #fff;
  position: absolute;
  left: 39%;
  top: -12%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transform: rotate(268deg);
}
@media (max-width: 991px) {
  .back-btn i {
    left: 32%;
    top: -15%;
  }
}

/** 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;
  -moz-transition: all 0.3s ease-out;
  -o-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;
}

.ui-widget.ui-widget-content {
  box-shadow: 0px 1px 13.5px 1.5px rgba(46, 49, 108, 0.08);
  border: none;
  padding: 10px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #e3e3e3;
  background: #f9f9f9;
  font-weight: normal;
  color: #454545;
  text-align: center;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #e3d9d9;
  background: #7f91a6;
  color: #ffffff;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #15a9e3;
  background: #15a9e3;
  font-weight: normal;
  color: #ffffff;
}

body.dark-page .mouse-circle {
  background-color: #fff;
}
body.dark-page .mouse-circle-follow {
  border-color: #fff;
}

.sticky {
  position: fixed !important;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s ease;
  animation: smoothScroll 1s forwards;
  box-shadow: 0 -5px 15px rgba(8, 106, 216, 0.2901960784);
  z-index: 999;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-142px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (max-width: 991px) {
  .header-style-1 .sticky {
    padding: 15px;
  }
}
@media (max-width: 575px) {
  .header-style-1 .sticky {
    padding: 15px 0;
  }
}
.header-style-1 .sticky .mean-container .mean-nav {
  margin-top: 15px;
}

@media (max-width: 991px) {
  .header-style-3 .sticky {
    padding: 15px;
  }
}
@media (max-width: 575px) {
  .header-style-3 .sticky {
    padding: 15px 0;
  }
}

/*mobal-subscribe*/
.cart-quickview {
  max-width: 1120px;
  margin: 200px auto;
}
@media (max-width: 991px) {
  .cart-quickview {
    max-width: 500px;
  }
}
.cart-quickview .modal-body {
  padding: 40px;
}
.cart-quickview .modal-product img {
  width: 100%;
}
.cart-quickview .product-details .product-single-content h5 {
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .cart-quickview .product-details .product-single-content .pro-single-btn .quantity {
    margin-bottom: 20px;
  }
}
.cart-quickview .modal-content button {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 40px;
  height: 40px;
  background: #15a9e3;
  text-align: center;
  font-size: 24px;
  border: none;
  color: #fff;
  z-index: 9;
  transition: all 0.4s ease-in-out;
  opacity: 1;
}

.modal {
  z-index: 9999;
}

.heading-title,
.heading-title-s2,
.heading-title-s3 {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .heading-title,
  .heading-title-s2,
  .heading-title-s3 {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .heading-title,
  .heading-title-s2,
  .heading-title-s3 {
    margin-bottom: 30px;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .heading-title,
  .heading-title-s2,
  .heading-title-s3 {
    margin-bottom: 20px;
    text-align: center;
  }
}
.heading-title h2,
.heading-title-s2 h2,
.heading-title-s3 h2 {
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
.heading-title h2 i,
.heading-title-s2 h2 i,
.heading-title-s3 h2 i {
  position: relative;
  top: -5px;
  margin-right: 15px;
}
@media (max-width: 575px) {
  .heading-title h2 i,
  .heading-title-s2 h2 i,
  .heading-title-s3 h2 i {
    display: none;
  }
}
@media (max-width: 1399px) {
  .heading-title h2,
  .heading-title-s2 h2,
  .heading-title-s3 h2 {
    font-size: 45px;
  }
}
@media (max-width: 1199px) {
  .heading-title h2,
  .heading-title-s2 h2,
  .heading-title-s3 h2 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .heading-title h2,
  .heading-title-s2 h2,
  .heading-title-s3 h2 {
    font-size: 42px;
    line-height: 48px;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .heading-title h2,
  .heading-title-s2 h2,
  .heading-title-s3 h2 {
    font-size: 30px;
    margin-top: 0;
    line-height: 40px;
  }
}
.heading-title p,
.heading-title-s2 p,
.heading-title-s3 p {
  font-size: 18px;
}

.heading-title-s2 {
  text-align: center;
}
.heading-title-s2 h2 {
  justify-content: center;
}

.heading-title-s3 {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E9ECEF;
  position: relative;
}
@media (max-width: 991px) {
  .heading-title-s3 {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.heading-title-s3:before {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  width: 53px;
  height: 1px;
  background: #15a9e3;
}
@media (max-width: 991px) {
  .heading-title-s3:before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.btn-style-1,
.btn-style-2,
.small-btn-style {
  -webkit-backface-visibility: hidden;
  background: #15a9e3;
  border: 0;
  border-radius: 30px;
  color: #1a1729;
  display: inline-block;
  font-family: "Cormorant";
  font-size: 18px;
  font-weight: 500;
  font-weight: 600;
  padding: 15px 35px;
  padding-right: 70px;
  position: relative;
  text-transform: capitalize;
  z-index: 1;
  color: #fff;
  overflow: hidden;
}
.btn-style-1:before,
.btn-style-2:before,
.small-btn-style:before {
  background: #fff;
  border-radius: 30px;
  content: "\e932";
  font-family: "icomoon";
  height: 46px;
  line-height: 46px;
  position: absolute;
  right: 5px;
  text-align: center;
  top: 5px;
  width: 46px;
  color: #1C263A;
  font-size: 12px;
}
.btn-style-1:after,
.btn-style-2:after,
.small-btn-style:after {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  content: "";
  border-radius: 100px;
  background: #053ca3;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
}
.btn-style-1.btn-style-1-s3,
.btn-style-2.btn-style-1-s3,
.small-btn-style.btn-style-1-s3 {
  width: 100%;
  height: 100%;
  background: #fff;
  color: #15a9e3;
}
.btn-style-1.btn-style-1-s3:after,
.btn-style-2.btn-style-1-s3:after,
.small-btn-style.btn-style-1-s3:after {
  border: 1px solid #fff;
}
.btn-style-1.btn-style-1-s4,
.btn-style-2.btn-style-1-s4,
.small-btn-style.btn-style-1-s4 {
  background: #15a9e3;
  color: #fff;
}
.btn-style-1.btn-style-1-s4:after,
.btn-style-2.btn-style-1-s4:after,
.small-btn-style.btn-style-1-s4:after {
  border: 1px solid #15a9e3;
}
.btn-style-1:hover, .btn-style-1:focus, .btn-style-1:active,
.btn-style-2:hover,
.btn-style-2:focus,
.btn-style-2:active,
.small-btn-style:hover,
.small-btn-style:focus,
.small-btn-style:active {
  color: #fff;
}
.btn-style-1:hover:after, .btn-style-1:focus:after, .btn-style-1:active:after,
.btn-style-2:hover:after,
.btn-style-2:focus:after,
.btn-style-2:active:after,
.small-btn-style:hover:after,
.small-btn-style:focus:after,
.small-btn-style:active:after {
  left: 0%;
  right: auto;
  width: 100%;
}
.btn-style-1:hover:after,
.btn-style-2:hover:after,
.small-btn-style:hover:after {
  opacity: 1;
}
@media (max-width: 991px) {
  .btn-style-1,
  .btn-style-2,
  .small-btn-style {
    font-size: 18px;
    font-size: calc-rem-value(18);
  }
}
@media (max-width: 767px) {
  .btn-style-1,
  .btn-style-2,
  .small-btn-style {
    padding: 10px 18px;
    padding-right: 40px;
    font-size: 14px;
  }
  .btn-style-1:before,
  .btn-style-2:before,
  .small-btn-style:before {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 7px;
    right: 10px;
    top: 10px;
  }
}

.btn-style-2 {
  background: #fff;
  border-color: #1C263A;
  color: #1C263A;
}
.btn-style-2:before {
  background-color: #15a9e3;
  color: #fff;
}
.btn-style-2:hover {
  color: #1C263A;
}

.small-btn-style {
  padding: 5px 12px;
  font-size: 14px;
  padding-right: 35px;
  background: #fff;
  border-color: #1C263A;
  color: #1C263A;
}
.small-btn-style:before {
  background-color: #15a9e3;
  width: 20px;
  height: 20px;
  line-height: 20px;
  color: #fff;
  font-size: 7px;
}
@media (max-width: 767px) {
  .small-btn-style:before {
    top: 6px;
    right: 6px;
  }
}
.small-btn-style:hover {
  color: #1C263A;
}
.small-btn-style:hover:after {
  background: #ebebeb;
}
.small-btn-style.primary {
  background: #15a9e3;
  color: #fff;
}
.small-btn-style.primary:before {
  background-color: #fff;
  color: #1C263A;
}
.small-btn-style.primary:after {
  background: #053ca3;
}

.form input,
.form textarea,
.form select {
  border-color: #bfbfbf;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  color: #595959;
  font-style: normal;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: #15a9e3;
  -webkit-box-shadow: 0 0 5px 0 #0c5ef8;
  -moz-box-shadow: 0 0 5px 0 #0c5ef8;
  -o-box-shadow: 0 0 5px 0 #0c5ef8;
  -ms-box-shadow: 0 0 5px 0 #0c5ef8;
  box-shadow: 0 0 5px 0 #0c5ef8;
}
.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 ::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: #0c5ef8;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: #fff;
  text-align: center;
}
.social-links li a:hover {
  background-color: #15a9e3;
}

.header-search-form {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.header-search-form .close-header-search {
  position: absolute;
  right: 25px;
  left: auto;
  color: #ffffff;
  width: auto;
  height: auto;
  top: 25px;
  margin: 0px;
  border: none;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 50px;
  height: 50px;
  background: #15a9e3;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
}
.header-search-form .close-header-search i {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 20px;
}
.header-search-form form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  background-color: transparent;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.header-search-form .form-group {
  position: relative;
  margin: 0px;
  overflow: hidden;
  border-radius: 40px;
}
.header-search-form .form-group input[type=text],
.header-search-form .form-group input[type=search] {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 50px;
  color: #000000;
  height: 70px;
  width: 100%;
  padding: 10px 30px;
  background: #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 40px;
  border: 0;
}
.header-search-form .form-group input[type=text]:focus,
.header-search-form .form-group input[type=search]:focus {
  outline: none;
  border-color: #15a9e3;
}
.header-search-form .form-group input[type=submit] {
  position: absolute;
  right: 30px;
  top: 0px;
  height: 70px;
  line-height: 70px;
  background: transparent;
  text-align: center;
  font-size: 24px;
  color: #000000;
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.header-search-form .form-group input[type=submit]:hover,
.header-search-form .form-group button:hover {
  color: #000000;
}
.header-search-form .form-group .search-btn {
  width: 60px;
  height: 70px;
  background: #15a9e3;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
}
.header-search-form input::placeholder,
.header-search-form textarea::placeholder {
  color: #000000;
}
.header-search-form.active {
  transform: translateY(0%);
  margin-top: 0;
}
.header-search-form.active .close-header-search {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}
.header-search-form.active form {
  transform: scaleX(1);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.page-title {
  background: #DFF8FF;
  min-height: 450px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
  overflow: hidden;
}
.page-title::before {
  position: absolute;
  right: 0;
  top: -40px;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../images/page-title-right.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  .page-title {
    min-height: 350px;
  }
}
@media (max-width: 575px) {
  .page-title {
    min-height: 250px;
  }
}
@media (max-width: 575px) {
  .page-title .breadcumb-wrap {
    text-align: center;
  }
}
.page-title .breadcumb-wrap h2 {
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
  text-transform: capitalize;
  color: #1C263A;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .page-title .breadcumb-wrap h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
.page-title .breadcumb-wrap ol {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .page-title .breadcumb-wrap ol {
    justify-content: center;
  }
}
.page-title .breadcumb-wrap ol li {
  display: inline-block;
  padding: 0px 15px;
  color: #707070;
  position: relative;
  font-size: 16px;
}
.page-title .breadcumb-wrap ol li i {
  color: #707070;
  margin-right: 5px;
}
.page-title .breadcumb-wrap ol li:first-child {
  padding-left: 0;
}
.page-title .breadcumb-wrap ol li:last-child {
  color: #15a9e3;
}
@media (max-width: 767px) {
  .page-title .breadcumb-wrap ol li {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .page-title .breadcumb-wrap ol li {
    font-size: 16px;
    padding: 0 10px;
  }
  .page-title .breadcumb-wrap ol li:first-child {
    padding-left: 0;
  }
}
.page-title .breadcumb-wrap ol li:after {
  content: ">";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  color: #707070;
}
.page-title .breadcumb-wrap ol li:last-child:after {
  display: none;
}
.page-title .breadcumb-wrap ol li a {
  color: #707070;
  font-size: 16px;
  transition: all 0.3s;
}
.page-title .breadcumb-wrap ol li a:hover {
  color: #15a9e3;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1C263A;
  z-index: 999999;
}

.loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #15a9e3;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #F3A952;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

.loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #EC2526;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/**** 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: calc-rem-value(16);
  font-weight: 600;
  color: #1C263A;
  background: #f9f7f6;
  display: block;
}
@media (max-width: 991px) {
  .pagination-wrapper .pg-pagination li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    font-size: calc-rem-value(15);
  }
}
.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
  background: #15a9e3;
  border-color: #15a9e3;
  color: #fff;
}
.pagination-wrapper .pg-pagination .fi:before {
  font-size: 15px;
  font-size: calc-rem-value(15);
}

.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;
  }
}

/*--------------------------------------------------------------
02. Header Style
--------------------------------------------------------------*/
.discount-bar {
  background: linear-gradient(270deg, #15a9e3 47.99%, #F3A952 89.53%);
  padding: 8px;
}
.discount-bar p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
  margin-bottom: 0;
  text-align: center;
}
.discount-bar p span {
  font-size: 14px;
}
.discount-bar .discount-text {
  position: relative;
  padding-right: 10px;
}
.discount-bar .discount-text .discount-close {
  position: absolute;
  right: 0;
  top: 0px;
  color: #fff;
}
.discount-bar .discount-text .discount-close i {
  cursor: pointer;
}

/*-- 2.1 topbar --*/
.topbar {
  padding: 10px 0;
}
.topbar .contact-link ul {
  display: flex;
}
@media (max-width: 991px) {
  .topbar .contact-link ul {
    justify-content: center;
    padding-bottom: 10px;
  }
}
.topbar .contact-link ul li + li {
  margin-left: 25px;
}
@media (max-width: 1199px) {
  .topbar .contact-link ul li + li {
    margin-left: 10px;
  }
}
.topbar .contact-link ul li a {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #1C263A;
}
.topbar .help-link p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
  text-align: center;
}
.topbar .help-link p a {
  font-weight: 600;
  color: #1C263A;
}
.topbar .topbar-select ul.topbar-select-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .topbar .topbar-select ul.topbar-select-wrap {
    justify-content: center;
  }
}
.topbar .topbar-select ul.topbar-select-wrap .nice-select {
  border: 0;
  font-size: 12px;
}

/* start header-middle css */
.header-middle {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(93, 102, 111, 0.15);
  border-bottom: 1px solid rgba(93, 102, 111, 0.15);
}
@media (max-width: 991px) {
  .header-middle {
    padding-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .header-middle .navbar-header {
    display: none;
  }
}
.header-middle .middle-box {
  background: #EDF2F4;
  border-radius: 5px;
  display: flex;
  border-radius: 27.5px;
  position: relative;
  z-index: 999;
  align-items: center;
}
.header-middle .middle-box .category {
  display: inline-block;
  width: 170px;
  opacity: 1;
  position: relative;
}
.header-middle .middle-box .category:before {
  position: absolute;
  right: 0;
  width: 1px;
  height: 20px;
  content: "";
  background: #7C7C7C;
  top: 50%;
  transform: translateY(-50%);
}
.header-middle .middle-box .category .nice-select {
  border: 0;
  height: 55px;
  line-height: 40px;
  padding-left: 60px;
  padding-right: 10px;
}
.header-middle .middle-box .category .nice-select:after {
  right: auto;
  left: 25px;
  width: 8px;
  height: 8px;
  top: 27px;
}
.header-middle .middle-box .category .nice-select:before {
  position: absolute;
  left: 10px;
  top: 8px;
  width: 40px;
  height: 40px;
  content: "";
  background: #fff;
  border-radius: 50%;
}
.header-middle .middle-box .category .form-control {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  width: 170px;
}
@media (max-width: 575px) {
  .header-middle .middle-box .category .form-control {
    width: 150px;
    font-size: 12px;
  }
}
.header-middle .middle-box .category .form-control span.current {
  margin-top: 3px;
  display: block;
}
.header-middle .middle-box .search-box {
  width: calc(103% - 200px);
  display: inline-block;
}
.header-middle .middle-box .search-box .form-control {
  border: 0;
  border-radius: 0;
  font-weight: 400;
  font-size: 15px;
  color: #707070;
}
.header-middle .middle-box .search-box .form-control:focus {
  box-shadow: none;
}
.header-middle .middle-box .form-control {
  background: transparent;
}
.header-middle .middle-box .form-control:focus {
  box-shadow: none;
}
.header-middle .middle-box .search-btn {
  border: 0;
  width: 50px;
  height: 51px;
  margin-right: -2px;
  background: none;
}
@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;
  }
}
.header-middle .middle-box .search-btn img {
  max-width: 20px;
}
.header-middle .middle-right ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 991px) {
  .header-middle .middle-right ul {
    justify-content: center;
    margin-top: 20px;
  }
}
.header-middle .middle-right ul li {
  position: relative;
}
.header-middle .middle-right ul li + li {
  margin-left: 25px;
  padding-left: 25px;
  position: relative;
}
@media (max-width: 1199px) {
  .header-middle .middle-right ul li + li {
    margin-left: 20px;
    padding-left: 20px;
  }
}
.header-middle .middle-right ul li + li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 1px;
  background: rgba(124, 124, 124, 0.4);
  content: "";
}
.header-middle .middle-right ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #707070;
  position: relative;
  align-items: center;
}
.header-middle .middle-right ul li a i {
  font-size: 30px;
  line-height: 30px;
  position: relative;
}
@media (max-width: 575px) {
  .header-middle .middle-right ul li a i {
    font-size: 25px;
    line-height: 21px;
  }
}
.header-middle .middle-right ul li a span {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}
@media (max-width: 575px) {
  .header-middle .middle-right ul li a span {
    font-size: 16px;
    line-height: 21px;
  }
}
.header-middle .middle-right ul li a .cart-count {
  background: #15a9e3;
  width: 18px;
  height: 18px;
  font-size: 14px;
  line-height: 20px;
  color: white;
  position: absolute;
  top: -6px;
  right: -6px;
  border-radius: 50%;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .header-middle .middle-right ul li a .cart-count {
    font-size: 12px;
    line-height: 18px;
  }
}
.header-middle .middle-right ul li a p {
  margin-left: 8px;
  margin-bottom: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
.header-middle .middle-right ul li a p small {
  display: block;
  line-height: 10px;
  margin-top: 5px;
  font-size: 12px;
}
.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: #7b7b7b;
}
@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: #83B735;
  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: flex;
  align-items: 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;
}

.header-area {
  z-index: 99;
}
@media (max-width: 991px) {
  .header-area {
    padding: 0px 0 15px;
  }
}
@media (max-width: 991px) {
  .header-area .menu-area {
    padding-top: 20px;
  }
}
@media (max-width: 575px) {
  .header-area .mean-container a.meanmenu-reveal {
    margin-top: -48px;
  }
}
.header-area .header-category-item {
  position: relative;
}
.header-area .header-category-item .header-category-toggle-btn {
  border: 0;
  background: #15a9e3;
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #fff;
  text-align: left;
  padding: 15px;
  border-right: 0;
  position: relative;
  max-width: 245px;
  border-radius: 5px;
}
@media (max-width: 575px) {
  .header-area .header-category-item .header-category-toggle-btn {
    border-right: 1px solid transparent;
    background: none;
    right: auto;
    left: 0;
    padding: 0;
    width: auto;
  }
}
.header-area .header-category-item .header-category-toggle-btn::before {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 19px;
  content: "\e92d";
  font-family: "icomoon" !important;
  color: #fff;
}
@media (max-width: 1399px) {
  .header-area .header-category-item .header-category-toggle-btn::before {
    right: 0;
  }
}
@media (max-width: 1199px) {
  .header-area .header-category-item .header-category-toggle-btn::before {
    font-size: 18px;
  }
}
@media (max-width: 1399px) {
  .header-area .header-category-item .header-category-toggle-btn::before {
    right: 10px;
  }
}
@media (max-width: 575px) {
  .header-area .header-category-item .header-category-toggle-btn::before {
    right: auto;
    left: 0;
    top: -6px;
  }
}
@media (max-width: 575px) {
  .header-area .header-category-item .header-category-toggle-btn::before {
    right: -12px;
    width: 40px;
    height: 35px;
    font-size: 25px;
    text-align: center;
    line-height: 35px;
    background: #15a9e3;
    color: #fff;
  }
}
@media (max-width: 1199px) {
  .header-area .header-category-item {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .header-area .header-category-item {
    border-right: 1px solid transparent;
    text-align: left;
  }
}
@media (max-width: 575px) {
  .header-area .header-category-item span {
    display: none;
  }
}
.header-area .category-shop-item {
  background: #fff;
  width: 245px;
  z-index: 11;
  position: absolute;
  left: 0;
  top: 55px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
  box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
  padding: 10px 0;
}
@media (max-width: 991px) {
  .header-area .category-shop-item {
    padding: 0;
    right: auto;
    left: 0;
  }
}
.header-area .category-shop-item ul {
  list-style: none;
}
@media (min-width: 991px) {
  .header-area .category-shop-item ul {
    display: block !important;
  }
}
.header-area .category-shop-item ul li a {
  padding: 15px 20px;
  font-weight: 400;
  font-size: 16px;
  color: #707070;
  position: relative;
  display: block;
  line-height: 22px;
  text-align: left;
  border-bottom: 1px solid #E9ECEF;
  display: flex;
  align-items: center;
}
.header-area .category-shop-item ul li a::after {
  right: 15px;
}
@media (max-width: 991px) {
  .header-area .category-shop-item ul li a::after {
    position: absolute;
    display: block;
    transform: rotate(360deg);
  }
}
.header-area .category-shop-item ul li a i {
  color: #15a9e3;
  font-size: 25px;
  margin-right: 10px;
}
.header-area .category-shop-item ul li:last-child a {
  border: 0;
}
@media screen and (min-width: 992px) {
  .header-area .header-catagory-item {
    position: relative;
    list-style: none;
  }
  .header-area .header-catagory-item .header-catagory-single {
    background-color: #fff;
    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;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
  }
  .header-area .header-catagory-item:hover .header-catagory-single {
    visibility: visible;
    opacity: 1;
    left: 101%;
  }
}
.header-area .category-shop-item.category-shop-item-toggle {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .header-area .category-shop-item.category-shop-item-toggle {
    top: 63px;
    left: 0;
  }
}
@media (max-width: 575px) {
  .header-area .category-shop-item.category-shop-item-toggle {
    top: 46px;
  }
}
.header-area .menu-down-arrow {
  position: relative;
}
.header-area .menu-down-arrow::after {
  position: absolute;
  content: "\e932";
  font-family: "icomoon";
  right: 0;
  top: 34%;
}
@media (max-width: 1199px) {
  .header-area .menu-down-arrow::after {
    right: -4px;
  }
}
@media (max-width: 991px) {
  .header-area .menu-down-arrow::after {
    position: unset;
    display: none;
  }
}
.header-area .main-menu .row {
  width: 100%;
}
.header-area ul.nav {
  list-style: none;
  justify-content: flex-start;
}
.header-area .main-menu > ul {
  display: flex;
  list-style: none;
}
@media screen and (min-width: 992px) {
  .header-area .main-menu #navbar li {
    position: relative;
  }
  .header-area .main-menu ul li.has-submenu {
    position: relative;
  }
  .header-area .main-menu ul li.has-submenu > a:before {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    content: "+";
  }
}
@media screen and (min-width: 992px) and (max-width: 1700px) {
  .header-area .main-menu ul li.has-submenu > a:before {
    right: 3px;
  }
}
@media screen and (min-width: 992px) {
  .header-area .main-menu ul > li > a {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 29px;
    padding: 20px 40px;
    display: block;
    color: #1C263A;
    position: relative;
  }
}
@media screen and (min-width: 992px) and (max-width: 1650px) {
  .header-area .main-menu ul > li > a {
    padding: 20px 30px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1500px) {
  .header-area .main-menu ul > li > a {
    padding: 20px 20px;
  }
}
@media screen and (min-width: 992px) {
  .header-area .main-menu ul > li > a:hover, .header-area .main-menu ul > li > a.active {
    color: #15a9e3;
  }
  .header-area .main-menu ul > li > a:hover:before,
  .header-area .main-menu ul > li > a.active:before {
    opacity: 1;
    visibility: visible;
  }
  .header-area .main-menu ul .sub-menu {
    background-color: #fff;
    box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    width: 230px;
    position: absolute;
    padding: 20px 0;
    left: 0;
    top: 110%;
    z-index: 10;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform-origin: center top 0;
    -webkit-transform-origin: center top 0;
    -moz-transform-origin: center top 0;
    -ms-transform-origin: center top 0;
    -o-transform-origin: center top 0;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    visibility: hidden;
  }
  .header-area .main-menu ul .sub-menu .third-lavel-menu {
    position: relative;
  }
  .header-area .main-menu ul .sub-menu .third-lavel-menu:before {
    position: absolute;
    right: 10px;
    top: 20px;
    content: "\e932";
    font-family: "icomoon";
    font-size: 12px;
  }
  .header-area .main-menu ul .sub-menu .third-lavel-menu .sub-menu {
    top: 0;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area .main-menu ul .sub-menu .third-lavel-menu .sub-menu {
    left: auto;
    right: 100%;
  }
}
@media screen and (min-width: 992px) {
  .header-area .main-menu ul .sub-menu .third-lavel-menu:hover .sub-menu {
    top: 0;
    left: 100%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area .main-menu ul .sub-menu .third-lavel-menu:hover .sub-menu {
    top: 0;
    left: auto;
  }
}
@media screen and (min-width: 992px) {
  .header-area .main-menu ul > li .sub-menu a {
    font-size: 16px;
    font-size: calc-rem-value(16);
    display: block;
    padding: 12px 20px;
    color: #1C263A;
    position: relative;
    overflow: hidden;
  }
  .header-area .main-menu ul > li .sub-menu a:hover, .header-area .main-menu ul > li .sub-menu a.active {
    color: #15a9e3;
  }
  .header-area .main-menu ul > li > .sub-menu .sub-menu {
    left: 100%;
    top: 0;
  }
  .header-area .main-menu ul > li > .sub-menu > .menu-item-has-children > a {
    position: relative;
  }
  .header-area .main-menu ul > li > .sub-menu > .menu-item-has-children > a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.73333rem;
    position: absolute;
    right: 15px;
    top: 58%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .header-area .main-menu ul > li:hover > .sub-menu {
    opacity: 1;
    top: 100%;
    transform: scaleY(100%);
    -webkit-transform: scaleY(100%);
    -moz-transform: scaleY(100%);
    -ms-transform: scaleY(100%);
    -o-transform: scaleY(100%);
    visibility: visible;
  }
  .header-area .main-menu #navbar .sub-menu > li:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
  }
}
.header-area .header-area-right > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 991px) {
  .header-area .main-menu .navigation {
    padding: 20px 0;
  }
}
@media (max-width: 1700px) {
  .header-area .main-menu ul > li > a {
    padding: 20px 20px;
  }
}
@media (max-width: 1399px) {
  .header-area .main-menu ul > li > a {
    padding: 20px 18px;
  }
}
@media (max-width: 1199px) {
  .header-area .main-menu ul > li > a {
    padding: 20px 13px;
    font-size: 15px;
  }
}
.header-area .header-area-right a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #1C263A;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 991px) {
  .header-area .header-area-right a {
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .header-area .header-area-right a {
    justify-content: flex-end;
  }
}
.header-area .header-area-right a small {
  display: block;
  font-size: 12px;
  color: #5D666F;
  font-weight: 400;
}
.header-area .header-area-right a i {
  font-size: 30px;
  line-height: 30px;
  position: relative;
  margin-right: 10px;
  color: #1C263A;
}

.header-style-2 .header-middle .middle-right ul li + li {
  padding-left: 0;
}
.header-style-2 .header-middle .middle-right ul li + li:before {
  display: none;
}
@media (max-width: 1399px) {
  .header-style-2 .header-middle .middle-right ul li p {
    font-size: 12px;
  }
  .header-style-2 .header-middle .middle-right ul li p small {
    font-size: 10px;
  }
}
@media (max-width: 1399px) {
  .header-style-2 .header-middle .middle-right ul li {
    margin-left: 5px;
  }
  .header-style-2 .header-middle .middle-right ul li i {
    font-size: 25px;
  }
}
.header-style-2 .menu-area {
  position: relative;
}
.header-style-2 .menu-area:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
  content: "";
  background: #15a9e3;
}
@media (max-width: 1499px) {
  .header-style-2 .menu-area:before {
    width: 25%;
  }
}
@media (max-width: 1399px) {
  .header-style-2 .menu-area:before {
    width: 29%;
  }
}
@media (max-width: 1320px) {
  .header-style-2 .menu-area:before {
    display: none;
  }
}
.header-style-2 .header-area-right .profile a i {
  color: #15a9e3;
}
@media (max-width: 450px) {
  .header-style-2 .header-area-right .profile a span {
    display: none;
  }
}
.header-style-2 .category-shop-item {
  width: 259px;
  top: 59px;
}
@media (min-width: 1199px) {
  .header-style-2 .category-shop-item {
    opacity: 1;
    visibility: visible;
  }
}

.header-style-3 .header-middle {
  padding: 20px 120px;
  background: #F4F6FA;
  border: 0;
}
@media (max-width: 1599px) {
  .header-style-3 .header-middle {
    padding: 20px 30px;
  }
}
@media (max-width: 1399px) {
  .header-style-3 .header-middle {
    padding: 20px 0px;
  }
}
.header-style-3 .header-middle .topbar-select ul.topbar-select-wrap {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .header-style-3 .header-middle .topbar-select ul.topbar-select-wrap {
    justify-content: center;
  }
}
.header-style-3 .header-middle .topbar-select ul.topbar-select-wrap .nice-select {
  border: 0;
  font-size: 12px;
  background: none;
}
.header-style-3 .header-middle .middle-box {
  background: #fff;
}
.header-style-3 .header-middle .middle-box .category .nice-select:before {
  background-color: #15a9e3;
}
.header-style-3 .header-middle .middle-box .category .nice-select:after {
  border-bottom-color: #fff;
  border-right-color: #fff;
}
@media (max-width: 991px) {
  .header-style-3 .header-middle .middle-right ul {
    margin-top: 10px;
  }
}
.header-style-3 .header-middle .middle-right ul li + li {
  padding-left: 0;
}
.header-style-3 .header-middle .middle-right ul li + li:before {
  display: none;
}
@media (max-width: 1399px) {
  .header-style-3 .header-middle .middle-right ul li p {
    font-size: 12px;
  }
  .header-style-3 .header-middle .middle-right ul li p small {
    font-size: 10px;
  }
}
@media (max-width: 1399px) {
  .header-style-3 .header-middle .middle-right ul li {
    margin-left: 5px;
  }
  .header-style-3 .header-middle .middle-right ul li i {
    font-size: 25px;
  }
}
.header-style-3 .menu-area {
  padding: 0px 120px;
}
@media (max-width: 1599px) {
  .header-style-3 .menu-area {
    padding: 0px 30px;
  }
}
@media (max-width: 1399px) {
  .header-style-3 .menu-area {
    padding: 0px;
  }
}
@media (max-width: 991px) {
  .header-style-3 .menu-area {
    padding: 20px 0 0;
  }
}
@media screen and (min-width: 992px) {
  .header-style-3 .menu-area ul > li > a {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .header-style-3 .menu-area.sticky {
    padding-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .header-style-3 .header-area-right .profile {
    padding-right: 30px;
  }
}
.header-style-3 .header-area-right .profile a i {
  color: #15a9e3;
}
@media (max-width: 575px) {
  .header-style-3 .header-area-right .profile a span {
    display: none;
  }
}
.header-style-3 .mean-container a.meanmenu-reveal {
  margin-top: -50px;
}
@media (max-width: 350px) {
  .header-style-3 .mean-container a.meanmenu-reveal {
    margin-top: -45px;
  }
}

/*--------------------------------------------------------------
04. Hero
--------------------------------------------------------------*/
/*1.2.1 static-hero */
.static-hero .container-fluid,
.static-hero-s2 .container-fluid,
.static-hero-s3 .container-fluid {
  padding: 0;
}
.static-hero .static-hero-wrap .static-hero-left,
.static-hero-s2 .static-hero-wrap .static-hero-left,
.static-hero-s3 .static-hero-wrap .static-hero-left {
  background: #ECE1F1;
  padding: 110px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .static-hero .static-hero-wrap .static-hero-left,
  .static-hero-s2 .static-hero-wrap .static-hero-left,
  .static-hero-s3 .static-hero-wrap .static-hero-left {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .static-hero .static-hero-wrap .static-hero-left,
  .static-hero-s2 .static-hero-wrap .static-hero-left,
  .static-hero-s3 .static-hero-wrap .static-hero-left {
    padding: 70px 0;
  }
}
.static-hero .static-hero-wrap .static-hero-left .hero-content,
.static-hero-s2 .static-hero-wrap .static-hero-left .hero-content,
.static-hero-s3 .static-hero-wrap .static-hero-left .hero-content {
  padding-left: 315px;
}
@media (max-width: 1800px) {
  .static-hero .static-hero-wrap .static-hero-left .hero-content,
  .static-hero-s2 .static-hero-wrap .static-hero-left .hero-content,
  .static-hero-s3 .static-hero-wrap .static-hero-left .hero-content {
    padding-left: 250px;
  }
}
@media (max-width: 1700px) {
  .static-hero .static-hero-wrap .static-hero-left .hero-content,
  .static-hero-s2 .static-hero-wrap .static-hero-left .hero-content,
  .static-hero-s3 .static-hero-wrap .static-hero-left .hero-content {
    padding-left: 140px;
  }
}
@media (max-width: 1440px) {
  .static-hero .static-hero-wrap .static-hero-left .hero-content,
  .static-hero-s2 .static-hero-wrap .static-hero-left .hero-content,
  .static-hero-s3 .static-hero-wrap .static-hero-left .hero-content {
    padding-left: 80px;
  }
}
@media (max-width: 991px) {
  .static-hero .static-hero-wrap .static-hero-left .hero-content,
  .static-hero-s2 .static-hero-wrap .static-hero-left .hero-content,
  .static-hero-s3 .static-hero-wrap .static-hero-left .hero-content {
    padding: 0;
    text-align: center;
  }
}
.static-hero .static-hero-wrap .static-hero-left .hero-content span,
.static-hero-s2 .static-hero-wrap .static-hero-left .hero-content span,
.static-hero-s3 .static-hero-wrap .static-hero-left .hero-content span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  padding: 6px 30px;
  border-radius: 3px;
  background: linear-gradient(90deg, #F3A952 0%, #15a9e3 82.79%);
  color: #fff;
  display: inline-block;
  margin-bottom: 10px;
}
.static-hero .static-hero-wrap .static-hero-left .hero-content h2,
.static-hero-s2 .static-hero-wrap .static-hero-left .hero-content h2,
.static-hero-s3 .static-hero-wrap .static-hero-left .hero-content h2 {
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
  text-transform: capitalize;
  margin-bottom: 15px;
}
@media (max-width: 1399px) {
  .static-hero .static-hero-wrap .static-hero-left .hero-content h2,
  .static-hero-s2 .static-hero-wrap .static-hero-left .hero-content h2,
  .static-hero-s3 .static-hero-wrap .static-hero-left .hero-content h2 {
    font-size: 60px;
    line-height: 75px;
  }
}
@media (max-width: 1199px) {
  .static-hero .static-hero-wrap .static-hero-left .hero-content h2,
  .static-hero-s2 .static-hero-wrap .static-hero-left .hero-content h2,
  .static-hero-s3 .static-hero-wrap .static-hero-left .hero-content h2 {
    font-size: 50px;
    line-height: 65px;
  }
}
@media (max-width: 767px) {
  .static-hero .static-hero-wrap .static-hero-left .hero-content h2,
  .static-hero-s2 .static-hero-wrap .static-hero-left .hero-content h2,
  .static-hero-s3 .static-hero-wrap .static-hero-left .hero-content h2 {
    font-size: 40px;
    line-height: 55px;
  }
}
.static-hero .static-hero-wrap .static-hero-left .hero-content ul,
.static-hero-s2 .static-hero-wrap .static-hero-left .hero-content ul,
.static-hero-s3 .static-hero-wrap .static-hero-left .hero-content ul {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .static-hero .static-hero-wrap .static-hero-left .hero-content ul,
  .static-hero-s2 .static-hero-wrap .static-hero-left .hero-content ul,
  .static-hero-s3 .static-hero-wrap .static-hero-left .hero-content ul {
    justify-content: center;
  }
}
.static-hero .static-hero-wrap .static-hero-left .hero-content ul li,
.static-hero-s2 .static-hero-wrap .static-hero-left .hero-content ul li,
.static-hero-s3 .static-hero-wrap .static-hero-left .hero-content ul li {
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  font-family: "Cormorant";
  color: #15a9e3;
}
@media (max-width: 767px) {
  .static-hero .static-hero-wrap .static-hero-left .hero-content ul li,
  .static-hero-s2 .static-hero-wrap .static-hero-left .hero-content ul li,
  .static-hero-s3 .static-hero-wrap .static-hero-left .hero-content ul li {
    font-size: 35px;
    line-height: 55px;
  }
}
.static-hero .static-hero-wrap .static-hero-left .hero-content ul li:last-child,
.static-hero-s2 .static-hero-wrap .static-hero-left .hero-content ul li:last-child,
.static-hero-s3 .static-hero-wrap .static-hero-left .hero-content ul li:last-child {
  color: var(--Gary, #5D666F);
  font-family: Cormorant;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-left: 10px;
  text-decoration: line-through;
}
.static-hero .static-hero-wrap .static-hero-left .hero-img,
.static-hero-s2 .static-hero-wrap .static-hero-left .hero-img,
.static-hero-s3 .static-hero-wrap .static-hero-left .hero-img {
  position: relative;
  width: 108%;
  margin-left: -45px;
  margin-bottom: -80px;
}
@media (max-width: 1199px) {
  .static-hero .static-hero-wrap .static-hero-left .hero-img,
  .static-hero-s2 .static-hero-wrap .static-hero-left .hero-img,
  .static-hero-s3 .static-hero-wrap .static-hero-left .hero-img {
    width: 130%;
    margin-left: -77px;
  }
}
@media (max-width: 991px) {
  .static-hero .static-hero-wrap .static-hero-left .hero-img,
  .static-hero-s2 .static-hero-wrap .static-hero-left .hero-img,
  .static-hero-s3 .static-hero-wrap .static-hero-left .hero-img {
    width: 100%;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 30px;
  }
}
.static-hero .static-hero-wrap .static-hero-left .hero-img .save-wrap,
.static-hero-s2 .static-hero-wrap .static-hero-left .hero-img .save-wrap,
.static-hero-s3 .static-hero-wrap .static-hero-left .hero-img .save-wrap {
  position: absolute;
  right: 120px;
  top: 0;
  width: 136px;
  height: 136px;
  background: #F3A952;
  border-radius: 50%;
  text-align: center;
  transform: rotate(10.448deg);
}
.static-hero .static-hero-wrap .static-hero-left .hero-img .save-wrap .save-inner,
.static-hero-s2 .static-hero-wrap .static-hero-left .hero-img .save-wrap .save-inner,
.static-hero-s3 .static-hero-wrap .static-hero-left .hero-img .save-wrap .save-inner {
  padding: 17px;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  width: 112px;
  height: 112px;
  position: relative;
  left: 12px;
  top: 12px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.static-hero .static-hero-wrap .static-hero-left .hero-img .save-wrap .save-inner p,
.static-hero-s2 .static-hero-wrap .static-hero-left .hero-img .save-wrap .save-inner p,
.static-hero-s3 .static-hero-wrap .static-hero-left .hero-img .save-wrap .save-inner p {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 29px;
  color: #fff;
  margin-bottom: 0;
}
.static-hero .static-hero-wrap .static-hero-left .blur-shape,
.static-hero-s2 .static-hero-wrap .static-hero-left .blur-shape,
.static-hero-s3 .static-hero-wrap .static-hero-left .blur-shape {
  position: absolute;
  right: -140px;
  bottom: -80px;
  z-index: -1;
}
.static-hero .static-hero-wrap .static-hero-left .p-shape,
.static-hero-s2 .static-hero-wrap .static-hero-left .p-shape,
.static-hero-s3 .static-hero-wrap .static-hero-left .p-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.6;
}
.static-hero .static-hero-wrap .col,
.static-hero-s2 .static-hero-wrap .col,
.static-hero-s3 .static-hero-wrap .col {
  min-height: 100%;
  background: #DFF8FF;
}
.static-hero .static-hero-wrap .static-hero-right,
.static-hero-s2 .static-hero-wrap .static-hero-right,
.static-hero-s3 .static-hero-wrap .static-hero-right {
  position: relative;
  height: 100%;
}
.static-hero .static-hero-wrap .static-hero-right .static-hero-right-text,
.static-hero-s2 .static-hero-wrap .static-hero-right .static-hero-right-text,
.static-hero-s3 .static-hero-wrap .static-hero-right .static-hero-right-text {
  padding: 55px;
}
@media (max-width: 1399px) {
  .static-hero .static-hero-wrap .static-hero-right .static-hero-right-text,
  .static-hero-s2 .static-hero-wrap .static-hero-right .static-hero-right-text,
  .static-hero-s3 .static-hero-wrap .static-hero-right .static-hero-right-text {
    padding: 40px;
  }
}
@media (max-width: 1199px) {
  .static-hero .static-hero-wrap .static-hero-right .static-hero-right-text,
  .static-hero-s2 .static-hero-wrap .static-hero-right .static-hero-right-text,
  .static-hero-s3 .static-hero-wrap .static-hero-right .static-hero-right-text {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .static-hero .static-hero-wrap .static-hero-right .static-hero-right-text,
  .static-hero-s2 .static-hero-wrap .static-hero-right .static-hero-right-text,
  .static-hero-s3 .static-hero-wrap .static-hero-right .static-hero-right-text {
    text-align: center;
    padding-top: 50px;
  }
}
.static-hero .static-hero-wrap .static-hero-right .static-hero-right-text span,
.static-hero-s2 .static-hero-wrap .static-hero-right .static-hero-right-text span,
.static-hero-s3 .static-hero-wrap .static-hero-right .static-hero-right-text span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
.static-hero .static-hero-wrap .static-hero-right .static-hero-right-text h3,
.static-hero-s2 .static-hero-wrap .static-hero-right .static-hero-right-text h3,
.static-hero-s3 .static-hero-wrap .static-hero-right .static-hero-right-text h3 {
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-top: 5px;
}
@media (max-width: 991px) {
  .static-hero .static-hero-wrap .static-hero-right .hero-img,
  .static-hero-s2 .static-hero-wrap .static-hero-right .hero-img,
  .static-hero-s3 .static-hero-wrap .static-hero-right .hero-img {
    max-width: 450px;
    margin: 0 auto;
  }
}
.static-hero .static-hero-wrap .static-hero-right .rate-wrap,
.static-hero-s2 .static-hero-wrap .static-hero-right .rate-wrap,
.static-hero-s3 .static-hero-wrap .static-hero-right .rate-wrap {
  position: absolute;
  right: 50px;
  bottom: 60px;
}
@media (max-width: 575px) {
  .static-hero .static-hero-wrap .static-hero-right .rate-wrap,
  .static-hero-s2 .static-hero-wrap .static-hero-right .rate-wrap,
  .static-hero-s3 .static-hero-wrap .static-hero-right .rate-wrap {
    right: 30px;
    bottom: 30px;
  }
}
.static-hero .static-hero-wrap .static-hero-right .rate-wrap ul,
.static-hero-s2 .static-hero-wrap .static-hero-right .rate-wrap ul,
.static-hero-s3 .static-hero-wrap .static-hero-right .rate-wrap ul {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.static-hero .static-hero-wrap .static-hero-right .rate-wrap ul li,
.static-hero-s2 .static-hero-wrap .static-hero-right .rate-wrap ul li,
.static-hero-s3 .static-hero-wrap .static-hero-right .rate-wrap ul li {
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  font-family: "Cormorant";
  color: #15a9e3;
}
.static-hero .static-hero-wrap .static-hero-right .rate-wrap ul li:last-child,
.static-hero-s2 .static-hero-wrap .static-hero-right .rate-wrap ul li:last-child,
.static-hero-s3 .static-hero-wrap .static-hero-right .rate-wrap ul li:last-child {
  color: var(--Gary, #5D666F);
  font-family: Cormorant;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-left: 10px;
  text-decoration: line-through;
}

/*1.2.1 static-hero-s2 */
.static-hero-s2 {
  background-color: #DFF8FF;
  position: relative;
  z-index: 1;
}
.static-hero-s2 .static-hero-wrap .static-hero-left {
  background: transparent;
}
.static-hero-s2 .static-hero-wrap .static-hero-left .hero-content {
  padding-left: 320px;
}
@media (max-width: 1199px) {
  .static-hero-s2 .static-hero-wrap .static-hero-left .hero-content {
    padding-left: 0px;
  }
}
.static-hero-s2 .hero-img {
  position: absolute;
  right: 60px;
  bottom: 30px;
  z-index: 11;
}
@media (max-width: 1199px) {
  .static-hero-s2 .hero-img {
    bottom: auto;
    top: 55%;
    transform: translateY(-50%);
  }
}
@media (max-width: 991px) {
  .static-hero-s2 .hero-img {
    position: relative;
    text-align: center;
    transform: unset;
    padding-bottom: 50px;
    right: 0;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .static-hero-s2 .hero-img {
    margin-top: 80px;
  }
}
@media (max-width: 1600px) {
  .static-hero-s2 .hero-img img {
    max-width: 500px;
  }
}
@media (max-width: 1399px) {
  .static-hero-s2 .hero-img img {
    max-width: 450px;
  }
}
@media (max-width: 991px) {
  .static-hero-s2 .hero-img img {
    max-width: 100%;
  }
}
.static-hero-s2 .hero-img .save-wrap {
  position: absolute;
  right: 120px;
  top: -120px;
  width: 136px;
  height: 136px;
  background: #F3A952;
  border-radius: 50%;
  text-align: center;
  transform: rotate(10.448deg);
}
@media (max-width: 767px) {
  .static-hero-s2 .hero-img .save-wrap {
    right: 60px;
  }
}
.static-hero-s2 .hero-img .save-wrap .save-inner {
  padding: 17px;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  width: 112px;
  height: 112px;
  position: relative;
  left: 12px;
  top: 12px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.static-hero-s2 .hero-img .save-wrap .save-inner p {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 29px;
  color: #fff;
  margin-bottom: 0;
}
.static-hero-s2 .p-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.6;
}

.static-hero-s3 {
  margin-top: 30px;
}
.static-hero-s3 .static-hero-wrap {
  overflow: hidden;
}
@media (max-width: 1199px) {
  .static-hero-s3 .static-hero-wrap .left-col {
    background: #DFF8FF;
    min-height: 100%;
  }
}
.static-hero-s3 .static-hero-wrap .static-hero-left {
  background: #DFF8FF;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
.static-hero-s3 .static-hero-wrap .static-hero-left .hero-content {
  padding-left: 176px;
}
@media (max-width: 1700px) {
  .static-hero-s3 .static-hero-wrap .static-hero-left .hero-content {
    padding-left: 140px;
  }
}
@media (max-width: 1440px) {
  .static-hero-s3 .static-hero-wrap .static-hero-left .hero-content {
    padding-left: 80px;
  }
}
@media (max-width: 991px) {
  .static-hero-s3 .static-hero-wrap .static-hero-left .hero-content {
    padding: 0;
    text-align: center;
  }
}
.static-hero-s3 .static-hero-wrap .static-hero-left .hero-content h1 {
  color: #15a9e3;
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .static-hero-s3 .static-hero-wrap .static-hero-left .hero-content h1 {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 10px;
  }
}
.static-hero-s3 .static-hero-wrap .static-hero-left .hero-img {
  position: relative;
  width: 108%;
  margin: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .static-hero-s3 .static-hero-wrap .static-hero-left .hero-img {
    margin: 0 auto;
  }
}
.static-hero-s3 .static-hero-wrap .static-hero-left .right-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.static-hero-s3 .static-hero-wrap .col {
  background: none;
}
@media (max-width: 991px) {
  .static-hero-s3 .static-hero-wrap .static-hero-right {
    display: flex;
  }
}
@media (max-width: 575px) {
  .static-hero-s3 .static-hero-wrap .static-hero-right {
    display: block;
  }
}
.static-hero-s3 .static-hero-wrap .static-hero-right .offer-banner-item.red-banner {
  border-radius: 0;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .static-hero-s3 .static-hero-wrap .static-hero-right .offer-banner-item.red-banner {
    margin-bottom: 0;
  }
}
.static-hero-s3 .static-hero-wrap .static-hero-right .offer-banner-item.red-banner .offer-image {
  margin-top: 15px;
}
.static-hero-s3 .static-hero-wrap .static-hero-right .offer-banner-item.red-banner .blur-shape {
  top: -60px;
  left: -60px;
  bottom: auto;
}
.static-hero-s3 .static-hero-wrap .static-hero-right .offer-banner-item.blue-card {
  border-radius: 0;
  margin-bottom: 0;
}
.static-hero-s3 .static-hero-wrap .static-hero-right .offer-banner-item.blue-card .text {
  padding: 65px 0;
}
@media (max-width: 1199px) {
  .static-hero-s3 .static-hero-wrap .static-hero-right .offer-banner-item.blue-card .text {
    padding: 40px 0;
  }
}
.static-hero-s3 .static-hero-wrap .static-hero-right .offer-banner-item {
  min-height: 265px;
}
@media (max-width: 1199px) {
  .static-hero-s3 .static-hero-wrap .static-hero-right .offer-banner-item {
    min-height: 260px;
  }
}
@media (max-width: 991px) {
  .static-hero-s3 .static-hero-wrap .static-hero-right .offer-banner-item {
    flex-basis: 50%;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .static-hero-s3 .static-hero-wrap .static-hero-right .offer-banner-item {
    min-height: unset;
  }
}
@media (max-width: 1199px) {
  .static-hero-s3 .static-hero-wrap .static-hero-right .offer-banner-item .text {
    padding: 18px;
  }
}
@media (max-width: 1399px) {
  .static-hero-s3 .static-hero-wrap .static-hero-right .offer-banner-item .text h2 {
    font-size: 20px;
  }
}
@media (max-width: 1170px) {
  .static-hero-s3 .static-hero-wrap .static-hero-right .offer-banner-item .text h2 {
    font-size: 18px;
  }
}
@media (max-width: 1399px) {
  .static-hero-s3 .static-hero-wrap .static-hero-right .offer-banner-item .text h4 {
    font-size: 18px;
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------
03. Footer
--------------------------------------------------------------*/
.footer-section,
.footer-section-s2 {
  background: #1C263A;
  position: relative;
  font-size: 15px;
  overflow: hidden;
  z-index: 1;
}
.footer-section ul,
.footer-section-s2 ul {
  list-style: none;
}
.footer-section p,
.footer-section-s2 p {
  color: #fff;
  margin-top: 30px;
}
.footer-section li,
.footer-section-s2 li {
  color: #fff;
}
.footer-section .container,
.footer-section-s2 .container {
  position: relative;
}
.footer-section .upper-footer,
.footer-section-s2 .upper-footer {
  padding: 80px 0 70px;
}
@media (max-width: 991px) {
  .footer-section .upper-footer,
  .footer-section-s2 .upper-footer {
    padding: 80px 0 0px;
  }
}
@media (max-width: 767px) {
  .footer-section .upper-footer,
  .footer-section-s2 .upper-footer {
    padding: 60px 0 30px;
  }
}
@media (max-width: 991px) {
  .footer-section .upper-footer .col,
  .footer-section-s2 .upper-footer .col {
    min-height: 235px;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .footer-section .upper-footer .col,
  .footer-section-s2 .upper-footer .col {
    min-height: auto;
  }
}
.footer-section .widget-title,
.footer-section-s2 .widget-title {
  margin-bottom: 30px;
  padding-bottom: 20px;
  position: relative;
}
.footer-section .widget-title::before,
.footer-section-s2 .widget-title::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 196px;
  height: 1px;
  content: "";
  background: #3d4655;
}
.footer-section .widget-title::after,
.footer-section-s2 .widget-title::after {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 86px;
  height: 1px;
  content: "";
  background: #15a9e3;
}
.footer-section .widget-title h3,
.footer-section-s2 .widget-title h3 {
  color: #fff;
  margin: 0;
  position: relative;
  font-family: "Cormorant";
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .footer-section .widget-title h3,
  .footer-section-s2 .widget-title h3 {
    font-size: 29px;
  }
}
@media (max-width: 1199px) {
  .footer-section .widget-title h3,
  .footer-section-s2 .widget-title h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .footer-section .widget-title,
  .footer-section-s2 .widget-title {
    margin-bottom: 20px;
  }
}
.footer-section .about-widget,
.footer-section-s2 .about-widget {
  padding-right: 50px;
}
.footer-section .about-widget .widget-title,
.footer-section-s2 .about-widget .widget-title {
  margin-bottom: 0;
}
.footer-section .about-widget p,
.footer-section-s2 .about-widget p {
  margin-bottom: 0.8em;
  line-height: 1.9em;
}
.footer-section .about-widget p:last-child,
.footer-section-s2 .about-widget p:last-child {
  margin-bottom: 0;
}
.footer-section .link-widget,
.footer-section-s2 .link-widget {
  overflow: hidden;
}
.footer-section .link-widget ul li,
.footer-section-s2 .link-widget ul li {
  position: relative;
}
.footer-section .link-widget ul li a,
.footer-section-s2 .link-widget ul li a {
  color: #fff;
  font-size: 16px;
  line-height: 35px;
  display: block;
}
.footer-section .link-widget ul li a:hover,
.footer-section-s2 .link-widget ul li a:hover {
  color: #F3A952;
}
.footer-section .link-widget ul li + li,
.footer-section-s2 .link-widget ul li + li {
  margin-top: 5px;
}
.footer-section .link-widget.custom,
.footer-section-s2 .link-widget.custom {
  padding-left: 70px;
}
@media (max-width: 991px) {
  .footer-section .link-widget.custom,
  .footer-section-s2 .link-widget.custom {
    padding-left: 0;
  }
}
.footer-section .contact-ft,
.footer-section-s2 .contact-ft {
  margin-top: 20px;
}
.footer-section .contact-ft ul,
.footer-section-s2 .contact-ft ul {
  max-width: 270px;
}
.footer-section .contact-ft ul li,
.footer-section-s2 .contact-ft ul li {
  padding-bottom: 15px;
  position: relative;
  color: #e5e3e3;
  font-size: 14px;
  font-weight: 400;
  padding-left: 30px;
}
.footer-section .contact-ft ul li i,
.footer-section-s2 .contact-ft ul li i {
  position: absolute;
  left: 0;
  top: -3px;
  color: #F3A952;
  font-size: 20px;
}
.footer-section .subscribe .form-field,
.footer-section-s2 .subscribe .form-field {
  position: relative;
}
.footer-section .subscribe .form-field input,
.footer-section-s2 .subscribe .form-field input {
  width: 100%;
  height: 60px;
  border-radius: 5px;
  border: 0;
  background: #111111;
  padding: 15px;
  padding-right: 70px;
  color: #fff;
}
.footer-section .subscribe .form-field input:focus,
.footer-section-s2 .subscribe .form-field input:focus {
  outline: none;
  border-color: #15a9e3;
}
.footer-section .subscribe .form-field button,
.footer-section-s2 .subscribe .form-field button {
  margin-top: 20px;
}
.footer-section .social ul,
.footer-section-s2 .social ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.footer-section .social ul li + li,
.footer-section-s2 .social ul li + li {
  margin-left: 15px;
}
.footer-section .social ul li a,
.footer-section-s2 .social ul li a {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 35px;
  border-radius: 50%;
  background: #5D666F;
  text-align: center;
  color: #1C263A;
}
.footer-section .social ul li a:hover,
.footer-section-s2 .social ul li a:hover {
  background: #15a9e3;
}
.footer-section .lower-footer,
.footer-section-s2 .lower-footer {
  text-align: center;
  position: relative;
}
.footer-section .lower-footer .row,
.footer-section-s2 .lower-footer .row {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-section .lower-footer .lower-footer-link,
.footer-section-s2 .lower-footer .lower-footer-link {
  text-align: right;
}
@media (max-width: 991px) {
  .footer-section .lower-footer .lower-footer-link,
  .footer-section-s2 .lower-footer .lower-footer-link {
    text-align: center;
  }
}
.footer-section .lower-footer .copy-left,
.footer-section-s2 .lower-footer .copy-left {
  text-align: left;
}
@media (max-width: 991px) {
  .footer-section .lower-footer .copy-left,
  .footer-section-s2 .lower-footer .copy-left {
    text-align: center;
    margin-bottom: 10px;
  }
}
.footer-section .lower-footer .copyright,
.footer-section-s2 .lower-footer .copyright {
  display: inline-block;
  font-size: 14px;
  margin: 0;
}
.footer-section .lower-footer .copyright a,
.footer-section-s2 .lower-footer .copyright a {
  color: #F3A952;
  text-decoration: none;
}
@media (max-width: 991px) {
  .footer-section .lower-footer .copyright,
  .footer-section-s2 .lower-footer .copyright {
    float: none;
    display: block;
  }
}

.footer-section-s2 {
  background: #fff;
}
.footer-section-s2 p {
  color: #707070;
}
.footer-section-s2 .widget-title h3 {
  color: #1C263A;
}
.footer-section-s2 .widget-title:before {
  background-color: rgba(93, 102, 111, 0.15);
}
.footer-section-s2 .link-widget ul li a {
  color: #707070;
}
.footer-section-s2 .about-widget p {
  color: #707070;
}
.footer-section-s2 .contact-ft ul li {
  color: #707070;
}
.footer-section-s2 .subscribe .form-field input {
  background: #EAEAEA;
}
.footer-section-s2 .lower-footer .row {
  border-color: rgba(93, 102, 111, 0.15);
}

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

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

/*--------------------------------------------------------------
2.0 Home-style-1
--------------------------------------------------------------*/
/*==================================
 05. featured-section
 ==================================*/
/* featured-section */
.featured-section .featured-category-slider .owl-nav .owl-prev,
.featured-section .featured-category-slider .owl-nav .owl-next {
  position: absolute;
  top: -60px;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  line-height: 23px;
  transition: all 0.3s;
  border-radius: 5px;
  border: 0;
  background: #fff;
  z-index: 1;
  font-size: 8px;
  border-radius: 50%;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}
.featured-section .featured-category-slider .owl-nav .owl-prev:hover,
.featured-section .featured-category-slider .owl-nav .owl-next:hover {
  background: #F3A952;
  color: #fff;
}
@media (max-width: 991px) {
  .featured-section .featured-category-slider .owl-nav .owl-prev,
  .featured-section .featured-category-slider .owl-nav .owl-next {
    display: none;
  }
}
.featured-section .featured-category-slider .owl-nav .owl-prev {
  right: 35px;
}
.featured-section .featured-category-slider .owl-dots {
  display: none;
}
@media (max-width: 992px) {
  .featured-section .featured-category-slider .owl-dots {
    text-align: center;
    bottom: -10px;
    position: relative;
    display: block;
  }
  .featured-section .featured-category-slider .owl-dots button {
    width: 10px;
    height: 12px;
    border: 0;
    background: #d4e6f5;
    margin-right: 10px;
    border-radius: 50%;
  }
  .featured-section .featured-category-slider .owl-dots .owl-dot.active {
    background-color: #15a9e3;
  }
}
.featured-section .featured-item {
  text-align: center;
  border-radius: 5px;
  background: #ECF3F7;
  padding: 25px 0;
}
.featured-section .featured-item .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto;
}
.featured-section .featured-item .icon i {
  font-size: 60px;
  line-height: unset;
  color: #15a9e3;
}
.featured-section .featured-item .text h2 {
  margin-bottom: 0;
  transition: all 0.3s ease-out 0s;
}
.featured-section .featured-item .text h2 a {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: #1C263A;
}
.featured-section .featured-item .text h2:hover a {
  color: #15a9e3;
}
.featured-section .featured-item .text span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

/*===================================
 06. Animate-marque-sec 
 ====================================*/
.animate-marque-sec {
  position: relative;
  z-index: -1;
}
.animate-marque-sec .animate-marque {
  position: relative;
  left: -10%;
  width: 120%;
  z-index: -1;
}
.animate-marque-sec .animate-marque .track {
  animation: marquee 200s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.animate-marque-sec .animate-marque h1 {
  white-space: nowrap;
  will-change: transform;
  animation: marquee 20s linear infinite;
  margin-bottom: 0;
  color: #1C263A;
}
.animate-marque-sec .animate-marque h1 span {
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(93, 102, 111, 0.25);
  text-transform: uppercase;
  letter-spacing: 25.9px;
  display: inline-block;
  margin: 0 50px;
}
@media (max-width: 991px) {
  .animate-marque-sec .animate-marque h1 span {
    font-size: 30px;
    margin: 0 20px;
    letter-spacing: 20px;
  }
}

/*===================================
 07. offer-banner-section
 ====================================*/
.offer-banner-section {
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .offer-banner-section {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .offer-banner-section {
    padding-bottom: 50px;
  }
}

.offer-banner-item {
  background: #15a9e3;
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  margin-bottom: 30px;
}
.offer-banner-item .frame {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.offer-banner-item .blur-shape {
  position: absolute;
  left: 0;
  bottom: -80px;
  left: -80px;
  z-index: -1;
  max-width: 250px;
}
.offer-banner-item .offer-image {
  flex-basis: 35%;
  text-align: center;
}
.offer-banner-item .text {
  padding: 30px;
  flex-basis: 65%;
}
@media (max-width: 1199px) {
  .offer-banner-item .text {
    padding: 20px;
  }
}
.offer-banner-item .text span {
  display: inline-block;
  padding: 5px 20px;
  background: #F3A952;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  border-radius: 30px;
  color: #fff;
  margin-bottom: 5px;
}
.offer-banner-item .text h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: #fff;
}
.offer-banner-item .text h2 {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  text-transform: capitalize;
  color: #fff;
}
@media (max-width: 1199px) {
  .offer-banner-item .text h2 {
    font-size: 24px;
  }
}
.offer-banner-item .text h2 small {
  font-weight: 400;
}
.offer-banner-item .text p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  color: #fff;
}
.offer-banner-item.yellow-banner {
  background-color: #F3A952;
}
.offer-banner-item.yellow-banner .offer-image {
  flex-basis: 42%;
}
.offer-banner-item.red-banner {
  background-color: #FF2501;
  align-items: flex-end;
}
.offer-banner-item.red-banner .offer-image {
  flex-basis: 40%;
  text-align: center;
  margin-top: -27px;
}

/*======================================
08. product-section 
========================================*/
.product-item {
  margin-bottom: 30px;
}
.product-item .product-image {
  position: relative;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  padding-top: 15px;
  border-radius: 10px;
  border: 1px solid #E9ECEF;
  text-align: center;
}
.product-item .product-image img {
  transform: scale(1);
  transition: all 0.3s;
}
.product-item .product-image .tag-wrap {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
}
.product-item .product-image .tag-wrap .tag {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  display: inline-block;
  padding: 5px 10px;
  background: #15a9e3;
}
.product-item .product-image .tag-wrap .tag.new {
  background: #15a9e3;
  margin-right: 10px;
}
.product-item .product-image .tag-wrap .tag.trending {
  background: #F3A952;
}
.product-item .product-image .tag-wrap .tag.discount {
  background: #FF8080;
}
.product-item .product-image .tag-wrap .tag.red {
  background: #EC2526;
}
.product-item .product-image .info-wrap {
  position: absolute;
  list-style: none;
  right: 15px;
  top: 15px;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.product-item .product-image .info-wrap li {
  margin-bottom: 5px;
  margin-right: -50px;
}
.product-item .product-image .info-wrap li:first-child {
  transition: all 0.3s ease-in-out;
}
.product-item .product-image .info-wrap li:nth-child(2) {
  transition: all 0.4s ease-in-out;
}
.product-item .product-image .info-wrap li:last-child {
  margin-bottom: 0;
  transition: all 0.5s ease-in-out;
}
.product-item .product-image .info-wrap li:hover a,
.product-item .product-image .info-wrap li:hover button {
  background: #15a9e3;
  color: #fff;
}
.product-item .product-image .info-wrap li a,
.product-item .product-image .info-wrap li button {
  width: 40px;
  height: 40px;
  background: transparent;
  color: #707070;
  line-height: 40px;
  display: block;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 1px solid #E9ECEF;
  border-radius: 50%;
}
.product-item .product-image .info-wrap li a i,
.product-item .product-image .info-wrap li button i {
  font-size: 20px;
  line-height: unset;
}
.product-item .product-image .info-wrap li:last-child button {
  line-height: 35px;
}
.product-item:hover .product-image .info-wrap {
  opacity: 1;
  visibility: visible;
}
.product-item:hover .product-image .info-wrap li {
  margin-left: -40px;
}
.product-item:hover .product-image img {
  transform: scale(1.2);
}
.product-item .product-info {
  padding-top: 10px;
}
.product-item .product-info h2 {
  margin-bottom: 5px;
}
.product-item .product-info h2 a {
  color: #1C263A;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
@media (max-width: 1199px) {
  .product-item .product-info h2 a {
    font-size: 19px;
    line-height: 25px;
  }
}
@media (max-width: 991px) {
  .product-item .product-info h2 a {
    font-size: 21px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .product-item .product-info h2 a {
    font-size: 19px;
    line-height: 25px;
  }
}
.product-item .product-info h2:hover a {
  color: #15a9e3;
}
.product-item .product-info .rating-product i {
  font-size: 13px;
  color: #FED542;
}
.product-item .product-info .rating-product i.gray {
  color: #ECECEC;
}
.product-item .product-info .rating-product span {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #7b7b7b;
  padding-left: 10px;
}
.product-item .product-info .price {
  padding-top: 15px;
  display: flex;
  align-items: center;
  padding-right: 50px;
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid #E9ECEF;
}
@media (max-width: 1399px) {
  .product-item .product-info .price {
    padding-top: 8px;
  }
}
@media (max-width: 1199px) {
  .product-item .product-info .price {
    padding-top: 5px;
  }
}
@media (max-width: 575px) {
  .product-item .product-info .price {
    padding-top: 0;
  }
}
.product-item .product-info .price .old-price,
.product-item .product-info .price .present-price {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.product-item .product-info .price .present-price {
  color: #1C263A;
  padding-right: 5px;
}
.product-item .product-info .price .old-price {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  color: #707070;
}
.product-item .product-info .price .cart-btn {
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  right: 0;
  top: -5px;
  background: #F8F8F8;
  text-align: center;
  color: #F3A952;
  border-radius: 50%;
}
.product-item .product-info .price .cart-btn:hover {
  background: #15a9e3;
  color: #fff;
}
.product-item .product-info .available-info ul {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}
.product-item .product-info .available-info ul li {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
.product-item .product-info .available-info ul li span {
  color: #15a9e3;
}

.tooltip-inner {
  background-color: #E9ECEF;
  color: #707070;
}

.tooltip .tooltip-arrow::before {
  border-left-color: #E9ECEF;
}

.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #E9ECEF;
}

.product-tab {
  justify-content: center;
  margin-bottom: 40px;
}
.product-tab .nav {
  justify-content: center;
}
.product-tab button {
  font-family: "Cormorant";
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  padding: 25px 40px;
  padding-top: 0px;
  background: transparent;
  border: none;
  text-transform: capitalize;
  color: #707070;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .product-tab button {
    padding: 10px 10px;
    text-align: center;
  }
}
.product-tab button i {
  font-size: 25px;
  margin-right: 10px;
}
.product-tab button.active {
  color: #1C263A;
  border-bottom: 1px solid #15a9e3;
}
.product-tab button.active i {
  color: #15a9e3;
}
.product-tab.style-2 .nav {
  justify-content: flex-end;
}
.product-tab.style-2 button {
  border: 0;
  padding-bottom: 0;
}
.product-tab.style-2 button.active {
  border: 0;
}

/*======================================
09. cta-banner-section
========================================*/
.cta-banner-section .cta-banner-wrap {
  background: #15a9e3;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .cta-banner-section .cta-banner-wrap {
    text-align: center;
  }
}
.cta-banner-section .cta-banner-wrap:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: url(../images/cta/cta-bg1.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.cta-banner-section .cta-banner-wrap:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: url(../images/cta/cta-bg2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.cta-banner-section .cta-banner-wrap .row {
  align-items: flex-end;
}
.cta-banner-section .cta-banner-wrap .cta-banner-img {
  margin-top: -60px;
}
.cta-banner-section .cta-banner-wrap .cta-banner-text {
  padding: 40px 0;
}
@media (max-width: 991px) {
  .cta-banner-section .cta-banner-wrap .cta-banner-text {
    padding: 40px 20px;
  }
}
.cta-banner-section .cta-banner-wrap .cta-banner-text span {
  display: inline-block;
  padding: 5px 20px;
  background: #F3A952;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  border-radius: 30px;
  color: #fff;
  margin-bottom: 5px;
}
.cta-banner-section .cta-banner-wrap .cta-banner-text h3 {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  text-transform: capitalize;
  color: #fff;
  margin: 10px 0;
}

/*======================================
10. latest-product-section
========================================*/
.latest-product-section {
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .latest-product-section {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .latest-product-section {
    padding-bottom: 50px;
  }
}
.latest-product-section .latest-product-title {
  border-bottom: 1px solid #E9ECEF;
  margin-bottom: 60px;
  padding-bottom: 40px;
  position: relative;
}
.latest-product-section .latest-product-title .heading-title {
  margin-bottom: 0;
}
.latest-product-section .latest-product-title:before {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  width: 110px;
  height: 1px;
  background: #15a9e3;
}
@media (max-width: 991px) {
  .latest-product-section .latest-product-title:before {
    left: 50%;
    transform: translateX(-50%);
  }
}
.latest-product-section .products-filters {
  max-width: 856px;
  margin: 0 auto;
}
.latest-product-section .products-filters ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .latest-product-section .products-filters ul {
    justify-content: center;
  }
}
.latest-product-section .products-filters ul li {
  margin: 10px;
}
.latest-product-section .products-filters ul li a {
  padding: 0px 20px;
  display: block;
  background: transparent;
  color: #1C263A;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  font-family: "Cormorant";
}
@media (max-width: 575px) {
  .latest-product-section .products-filters ul li a {
    padding: 0px 15px;
  }
}
.latest-product-section .products-filters ul li a.current {
  color: #F3A952;
}
.latest-product-section .latest-product-left-sidebar {
  background: #ECF3F7;
}
@media (max-width: 991px) {
  .latest-product-section .latest-product-left-sidebar {
    text-align: center;
  }
}
.latest-product-section .latest-product-left-sidebar .left-sidebar-text {
  padding: 40px;
  padding-bottom: 0;
}
@media (max-width: 1199px) {
  .latest-product-section .latest-product-left-sidebar .left-sidebar-text {
    padding: 20px;
    padding-bottom: 0;
    padding-top: 40px;
  }
}
.latest-product-section .latest-product-left-sidebar .discount {
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  width: 190.602px;
  height: 187px;
  background: rgba(6, 74, 203, 0.9);
  position: relative;
  bottom: -50px;
  left: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  animation: morphing 10s infinite;
  transform: rotate(10.448deg);
}
@media (max-width: 991px) {
  .latest-product-section .latest-product-left-sidebar .discount {
    justify-content: center;
    margin: 0 auto;
  }
}
.latest-product-section .latest-product-left-sidebar .discount span {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 29px;
  color: #fff;
}
.latest-product-section .latest-product-left-sidebar .discount h3 {
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 55px;
  text-transform: capitalize;
  color: #fff;
}
.latest-product-section .latest-product-left-sidebar .left-sidebar-img {
  text-align: center;
}

@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%;
  }
}
.small-heading-title span {
  display: inline-block;
  padding: 5px 20px;
  background: #F3A952;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  border-radius: 30px;
  color: #fff;
  margin-bottom: 5px;
}
.small-heading-title h3 {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  text-transform: capitalize;
  color: #1C263A;
  margin: 10px 0;
}

/*======================================
11. cta-banner-section2
========================================*/
.cta-banner-section2 .cta-banner-wrap {
  display: flex;
  margin-bottom: -200px;
  position: relative;
  z-index: 11;
}
@media (max-width: 575px) {
  .cta-banner-section2 .cta-banner-wrap {
    display: block;
  }
}
.cta-banner-section2 .small-heading-title {
  padding: 60px 70px;
  max-width: 480px;
}
@media (max-width: 1199px) {
  .cta-banner-section2 .small-heading-title {
    padding: 40px 30px;
  }
}
@media (max-width: 575px) {
  .cta-banner-section2 .small-heading-title {
    padding: 40px 15px;
  }
}
.cta-banner-section2 .small-heading-title h3 {
  color: #fff;
}
@media (max-width: 767px) {
  .cta-banner-section2 .small-heading-title h3 {
    font-size: 22px;
    line-height: 32px;
  }
}
.cta-banner-section2 .cta-banner-left {
  background: #15a9e3;
  position: relative;
  z-index: 1;
  flex-basis: 50%;
  min-height: 383px;
}
@media (max-width: 991px) {
  .cta-banner-section2 .cta-banner-left {
    text-align: center;
    min-height: 100%;
  }
}
.cta-banner-section2 .cta-banner-left:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: url(../images/cta/deal-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.cta-banner-section2 .cta-banner-right {
  flex-basis: 50%;
  background: #F3A952;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .cta-banner-section2 .cta-banner-right {
    text-align: center;
  }
}
.cta-banner-section2 .cta-banner-right:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65%;
  height: 100%;
  content: "";
  z-index: -1;
  background: rgba(206, 240, 250, 0.15);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.cta-banner-section2 .cta-banner-right .small-heading-title span {
  background-color: #15a9e3;
}
.cta-banner-section2 .cta-banner-img {
  position: absolute;
  right: 15px;
  bottom: 0px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cta-banner-section2 .cta-banner-img {
    max-width: 60%;
  }
}
@media (max-width: 991px) {
  .cta-banner-section2 .cta-banner-img {
    display: none;
  }
}

/*======================================
12. deal-product-section
========================================*/
.deal-product-section {
  background: #ECF3F7;
  padding: 280px 0 120px;
  position: relative;
  z-index: 1;
}
.deal-product-section:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: url(../images/deal/vector.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.deal-product-section .deal-product-title {
  margin-bottom: 40px;
}
.deal-product-section .deal-product-title .heading-title {
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .deal-product-section .deal-product-title .heading-title h2 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .deal-product-section .deal-product-title .heading-title h2 {
    font-size: 30px;
  }
}
.deal-product-section .count-up {
  display: flex;
  align-items: center;
  background: #FF2501;
  max-width: 420px;
  margin-right: 100px;
  margin-left: auto;
  border-radius: 5px;
  align-items: center;
  padding: 8px 10px;
  padding-right: 10px;
}
@media (max-width: 1199px) {
  .deal-product-section .count-up {
    margin-right: 65px;
  }
}
@media (max-width: 991px) {
  .deal-product-section .count-up {
    margin: 0 auto;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.deal-product-section .count-up #clock {
  display: flex;
}
.deal-product-section .count-up #clock .time {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  margin: 0 10px;
  color: #fff;
  position: relative;
}
.deal-product-section .count-up #clock .time:before {
  position: absolute;
  right: -13px;
  top: 0;
  content: ":";
}
.deal-product-section .count-up #clock .box:last-child .time:before {
  display: none;
}
.deal-product-section .count-up p {
  margin-bottom: 0;
  color: #fff;
  margin-right: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 1199px) {
  .deal-product-section .count-up p {
    margin-right: 0;
  }
}
.deal-product-section .deal-wrap .deal-item {
  display: flex;
  align-items: center;
  background: #fff;
}
@media (max-width: 575px) {
  .deal-product-section .deal-wrap .deal-item {
    display: block;
    padding: 20px;
  }
}
.deal-product-section .deal-wrap .deal-item .product-info {
  padding: 40px;
  padding-left: 0;
}
.deal-product-section .deal-wrap .deal-item .product-info h2 {
  margin-bottom: 5px;
}
.deal-product-section .deal-wrap .deal-item .product-info h2 a {
  color: #1C263A;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-family: "Rubik", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
@media (max-width: 1199px) {
  .deal-product-section .deal-wrap .deal-item .product-info h2 a {
    font-size: 19px;
    line-height: 25px;
  }
}
@media (max-width: 991px) {
  .deal-product-section .deal-wrap .deal-item .product-info h2 a {
    font-size: 21px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .deal-product-section .deal-wrap .deal-item .product-info h2 a {
    font-size: 19px;
    line-height: 25px;
  }
}
.deal-product-section .deal-wrap .deal-item .product-info h2:hover a {
  color: #15a9e3;
}
.deal-product-section .deal-wrap .deal-item .product-info .rating-product i {
  font-size: 13px;
  color: #FED542;
}
.deal-product-section .deal-wrap .deal-item .product-info .rating-product i.gray {
  color: #ECECEC;
}
.deal-product-section .deal-wrap .deal-item .product-info .rating-product span {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #7b7b7b;
  padding-left: 10px;
}
.deal-product-section .deal-wrap .deal-item .product-info .price {
  padding-top: 15px;
  display: flex;
  align-items: center;
  padding-right: 50px;
  position: relative;
  padding-bottom: 20px;
}
@media (max-width: 1399px) {
  .deal-product-section .deal-wrap .deal-item .product-info .price {
    padding-top: 8px;
  }
}
@media (max-width: 1199px) {
  .deal-product-section .deal-wrap .deal-item .product-info .price {
    padding-top: 5px;
  }
}
@media (max-width: 575px) {
  .deal-product-section .deal-wrap .deal-item .product-info .price {
    padding-top: 0;
  }
}
.deal-product-section .deal-wrap .deal-item .product-info .price .old-price,
.deal-product-section .deal-wrap .deal-item .product-info .price .present-price {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.deal-product-section .deal-wrap .deal-item .product-info .price .present-price {
  color: #1C263A;
  padding-right: 5px;
}
.deal-product-section .deal-wrap .deal-item .product-info .price .old-price {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  color: #707070;
}
.deal-product-section .deal-wrap .deal-item .product-info .price .cart-btn {
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  right: 0;
  top: -5px;
  background: #F8F8F8;
  text-align: center;
  color: #F3A952;
  border-radius: 50%;
}
.deal-product-section .deal-wrap .deal-item .product-info .price .cart-btn:hover {
  background: #15a9e3;
  color: #fff;
}
.deal-product-section .deal-wrap .deal-item .product-info .progress {
  background: #E0E0E0;
  height: 8px;
  position: relative;
  max-width: 278px;
  margin-bottom: 5px;
}
.deal-product-section .deal-wrap .deal-item .product-info .progress .progress-bar {
  background-color: #F3A952;
}
.deal-product-section .deal-wrap .deal-item .product-info span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.deal-product-section .deal-wrap .owl-nav .owl-prev,
.deal-product-section .deal-wrap .owl-nav .owl-next {
  position: absolute;
  top: -70px;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  line-height: 23px;
  transition: all 0.3s;
  border-radius: 5px;
  border: 0;
  background: #fff;
  z-index: 1;
  font-size: 8px;
  border-radius: 50%;
  box-shadow: 0px 3px 46px 0px rgba(0, 0, 0, 0.3);
}
.deal-product-section .deal-wrap .owl-nav .owl-prev:hover,
.deal-product-section .deal-wrap .owl-nav .owl-next:hover {
  background: #F3A952;
  color: #fff;
}
@media (max-width: 991px) {
  .deal-product-section .deal-wrap .owl-nav .owl-prev,
  .deal-product-section .deal-wrap .owl-nav .owl-next {
    display: none;
  }
}
.deal-product-section .deal-wrap .owl-nav .owl-prev {
  right: 35px;
}
.deal-product-section .deal-wrap .owl-dots {
  display: none;
}
@media (max-width: 992px) {
  .deal-product-section .deal-wrap .owl-dots {
    text-align: center;
    bottom: -10px;
    position: relative;
    display: block;
  }
  .deal-product-section .deal-wrap .owl-dots button {
    width: 10px;
    height: 12px;
    border: 0;
    background: #d4e6f5;
    margin-right: 10px;
    border-radius: 50%;
  }
  .deal-product-section .deal-wrap .owl-dots .owl-dot.active {
    background-color: #15a9e3;
  }
}

/*======================================
13. best-seller-section
========================================*/
@media (max-width: 991px) {
  .best-seller-section .best-selling-active {
    margin-bottom: 40px;
  }
}
.best-seller-section .best-selling-active .owl-stage-outer {
  margin: -5px;
}
.best-seller-section .best-selling-active .owl-stage-outer .owl-stage {
  margin: 5px;
}
.best-seller-section .best-selling-active .owl-nav .owl-prev,
.best-seller-section .best-selling-active .owl-nav .owl-next {
  position: absolute;
  top: -110px;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  line-height: 23px;
  transition: all 0.3s;
  border-radius: 5px;
  border: 0;
  background: #fff;
  z-index: 1;
  font-size: 8px;
  border-radius: 50%;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}
.best-seller-section .best-selling-active .owl-nav .owl-prev:hover,
.best-seller-section .best-selling-active .owl-nav .owl-next:hover {
  background: #15a9e3;
  color: #fff;
}
@media (max-width: 991px) {
  .best-seller-section .best-selling-active .owl-nav .owl-prev,
  .best-seller-section .best-selling-active .owl-nav .owl-next {
    display: none;
  }
}
.best-seller-section .best-selling-active .owl-nav .owl-prev {
  right: 35px;
}
.best-seller-section .best-selling-active .owl-dots {
  display: none;
}
@media (max-width: 992px) {
  .best-seller-section .best-selling-active .owl-dots {
    text-align: center;
    bottom: -10px;
    position: relative;
    display: block;
  }
  .best-seller-section .best-selling-active .owl-dots button {
    width: 10px;
    height: 12px;
    border: 0;
    background: #d4e6f5;
    margin-right: 10px;
    border-radius: 50%;
  }
  .best-seller-section .best-selling-active .owl-dots .owl-dot.active {
    background-color: #15a9e3;
  }
}
.best-seller-section .best-selling-right-sidebar {
  position: relative;
  z-index: 1;
  background: #15a9e3;
}
@media (max-width: 1199px) {
  .best-seller-section .best-selling-right-sidebar {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .best-seller-section .best-selling-right-sidebar {
    text-align: center;
  }
}
.best-seller-section .best-selling-right-sidebar:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: url(../images/best-selling/banner-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.best-seller-section .best-selling-right-sidebar .right-sidebar-text {
  padding: 40px;
  padding-top: 60px;
}
.best-seller-section .best-selling-right-sidebar .right-sidebar-text .small-heading-title {
  margin-bottom: 20px;
}
.best-seller-section .best-selling-right-sidebar .right-sidebar-text .small-heading-title span {
  border-radius: 0;
  font-size: 16px;
  clip-path: polygon(9% 0, 100% 0, 90% 100%, 0% 100%);
  padding: 5px 30px;
}
.best-seller-section .best-selling-right-sidebar .right-sidebar-text .small-heading-title h3 {
  font-size: 35px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.horizontal-product-item {
  display: flex;
  border: 1px solid #E9ECEF;
  margin-bottom: 24px;
}
.horizontal-product-item img {
  transform: scale(1);
  transition: all 0.3s;
}
.horizontal-product-item:hover .product-image img {
  transform: scale(1.1);
}
.horizontal-product-item .product-info {
  padding: 10px 0 20px;
}
.horizontal-product-item .product-info h2 {
  margin-bottom: 5px;
}
.horizontal-product-item .product-info h2 a {
  color: #1C263A;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
@media (max-width: 1199px) {
  .horizontal-product-item .product-info h2 a {
    font-size: 19px;
    line-height: 25px;
  }
}
@media (max-width: 991px) {
  .horizontal-product-item .product-info h2 a {
    font-size: 19px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .horizontal-product-item .product-info h2 a {
    font-size: 19px;
    line-height: 25px;
  }
}
.horizontal-product-item .product-info h2:hover a {
  color: #15a9e3;
}
.horizontal-product-item .product-info .rating-product i {
  font-size: 13px;
  color: #FED542;
}
.horizontal-product-item .product-info .rating-product i.gray {
  color: #ECECEC;
}
.horizontal-product-item .product-info .rating-product span {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  color: #7b7b7b;
  padding-left: 10px;
}
.horizontal-product-item .product-info .price {
  padding-top: 15px;
  display: flex;
  align-items: center;
  padding-right: 50px;
  position: relative;
}
.horizontal-product-item .product-info .price .old-price,
.horizontal-product-item .product-info .price .present-price {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.horizontal-product-item .product-info .price .present-price {
  color: #1C263A;
  padding-right: 5px;
}
.horizontal-product-item .product-info .price .old-price {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  color: #707070;
}
.horizontal-product-item .product-info .price .cart-btn {
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  right: 0;
  top: -5px;
  background: #F8F8F8;
  text-align: center;
  color: #F3A952;
  border-radius: 50%;
}
.horizontal-product-item .product-info .price .cart-btn:hover {
  background: #15a9e3;
  color: #fff;
}

/*======================================
14. features-section
========================================*/
.features-section {
  background: #ECF3F7;
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .features-section {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .features-section {
    padding-bottom: 50px;
  }
}
.features-section .features-item {
  display: flex;
  padding: 25px 30px;
  background: #fff;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .features-section .features-item {
    padding: 20px 15px;
  }
}
.features-section .features-item .features-icon {
  margin-right: 20px;
}
.features-section .features-item .features-icon i {
  font-size: 50px;
  color: #F3A952;
}
.features-section .features-item h2 {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
}
@media (max-width: 1199px) {
  .features-section .features-item h2 {
    font-size: 20px;
  }
}
.features-section .features-item p {
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .features-section .features-item p {
    font-size: 15px;
  }
}

/*======================================
15. daily-best-sell-section
========================================*/
.daily-best-sell-section {
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .daily-best-sell-section {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .daily-best-sell-section {
    padding-bottom: 50px;
  }
}

/*======================================
16. partners-section
========================================*/
.partners-section .container {
  position: relative;
}
.partners-section .grid {
  text-align: center;
  border: 1px solid #E9ECEF;
  height: 180px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-left: -1px;
  border-left: 0;
}
@media (max-width: 991px) {
  .partners-section .grid {
    height: 120px;
  }
}
.partners-section .grid img {
  width: auto;
  margin: 0 auto;
  display: inline-block;
}
.partners-section .owl-nav {
  display: none;
}

/*=======================================
 17. Testimonial-section 
 =======================================*/
.testimonial-section,
.testimonial-section-s2 {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-left-img,
  .testimonial-section-s2 .testimonial-left-img {
    text-align: center;
    margin-bottom: 40px;
  }
}
.testimonial-section .testimonial-item .testimonial-text,
.testimonial-section-s2 .testimonial-item .testimonial-text {
  position: relative;
}
.testimonial-section .testimonial-item .testimonial-text:before,
.testimonial-section-s2 .testimonial-item .testimonial-text:before {
  position: absolute;
  right: 30px;
  bottom: 50px;
  content: "\e92f";
  font-family: "icomoon";
  font-size: 80px;
  color: rgba(93, 102, 111, 0.4);
}
@media (max-width: 1199px) {
  .testimonial-section .testimonial-item .testimonial-text:before,
  .testimonial-section-s2 .testimonial-item .testimonial-text:before {
    right: 15px;
    bottom: 80px;
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-item .testimonial-text:before,
  .testimonial-section-s2 .testimonial-item .testimonial-text:before {
    display: none;
  }
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-item .testimonial-text,
  .testimonial-section-s2 .testimonial-item .testimonial-text {
    text-align: center;
  }
}
.testimonial-section .testimonial-item .testimonial-text .ratting-wrap,
.testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap {
  display: flex;
  margin-bottom: 25px;
  align-items: center;
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-item .testimonial-text .ratting-wrap,
  .testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap {
    justify-content: center;
  }
}
.testimonial-section .testimonial-item .testimonial-text .ratting-wrap .ratting,
.testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap .ratting {
  display: flex;
  margin-right: 20px;
}
.testimonial-section .testimonial-item .testimonial-text .ratting-wrap .ratting li,
.testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap .ratting li {
  width: 36px;
  height: 36px;
  line-height: 38px;
  background: #F3A952;
  text-align: center;
  color: #fff;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-item .testimonial-text .ratting-wrap .ratting li,
  .testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap .ratting li {
    width: 26px;
    height: 26px;
    line-height: 26px;
  }
}
.testimonial-section .testimonial-item .testimonial-text .ratting-wrap .ratting li + li,
.testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap .ratting li + li {
  margin-left: 10px;
}
.testimonial-section .testimonial-item .testimonial-text .ratting-wrap .count,
.testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap .count {
  display: flex;
}
.testimonial-section .testimonial-item .testimonial-text .ratting-wrap .count li,
.testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap .count li {
  font-family: "Cormorant";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  color: #1C263A;
}
.testimonial-section .testimonial-item .testimonial-text p,
.testimonial-section-s2 .testimonial-item .testimonial-text p {
  font-family: "Cormorant";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  color: #151515;
}
@media (max-width: 575px) {
  .testimonial-section .testimonial-item .testimonial-text p,
  .testimonial-section-s2 .testimonial-item .testimonial-text p {
    font-size: 20px;
  }
}
.testimonial-section .testimonial-item .testimonial-text .testimonial-avatar,
.testimonial-section-s2 .testimonial-item .testimonial-text .testimonial-avatar {
  max-width: 100px;
  border-radius: 50%;
  border: 2px solid #15a9e3;
  margin-top: 30px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-item .testimonial-text .testimonial-avatar,
  .testimonial-section-s2 .testimonial-item .testimonial-text .testimonial-avatar {
    margin: 20px auto;
  }
}
.testimonial-section .testimonial-item .testimonial-text .testimonial-avatar img,
.testimonial-section-s2 .testimonial-item .testimonial-text .testimonial-avatar img {
  border-radius: 50%;
}
.testimonial-section .testimonial-item .testimonial-text .testimonial-text-btm h3,
.testimonial-section-s2 .testimonial-item .testimonial-text .testimonial-text-btm h3 {
  font-family: "Cormorant";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 0px;
}
.testimonial-section .testimonial-item .testimonial-text .testimonial-text-btm span,
.testimonial-section-s2 .testimonial-item .testimonial-text .testimonial-text-btm span {
  font-family: "Cormorant";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  color: #EC2526;
}
.testimonial-section .owl-nav,
.testimonial-section-s2 .owl-nav {
  display: none;
}

/*=======================================
 18. cta-banner-section3
 =======================================*/
.cta-banner-section3 {
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .cta-banner-section3 {
    padding-bottom: 70px;
  }
}
.cta-banner-section3 .cta-banner-wrap {
  display: flex;
  position: relative;
  z-index: 11;
  background: #15a9e3;
}
@media (max-width: 575px) {
  .cta-banner-section3 .cta-banner-wrap {
    display: block;
  }
}
.cta-banner-section3 .small-heading-title {
  padding: 15px 40px;
  max-width: 480px;
}
@media (max-width: 1199px) {
  .cta-banner-section3 .small-heading-title {
    padding: 40px 30px;
  }
}
@media (max-width: 575px) {
  .cta-banner-section3 .small-heading-title {
    padding: 40px 15px;
  }
}
.cta-banner-section3 .small-heading-title h3 {
  color: #fff;
}
@media (max-width: 767px) {
  .cta-banner-section3 .small-heading-title h3 {
    font-size: 22px;
    line-height: 32px;
  }
}
.cta-banner-section3 .small-heading-title h5 {
  color: #fff;
}
.cta-banner-section3 .cta-banner {
  background: #15a9e3;
  position: relative;
  z-index: 1;
  flex-basis: 50%;
  display: flex;
  align-items: center;
}
.cta-banner-section3 .cta-banner:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: url(../images/cta/cta-bg3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 991px) {
  .cta-banner-section3 .cta-banner .cta-banner-img {
    display: none;
  }
}
@media (max-width: 991px) {
  .cta-banner-section3 .cta-banner {
    justify-content: center;
  }
}
.cta-banner-section3 .cta-banner-left .cta-banner-img {
  margin-bottom: -60px;
  margin-left: 20px;
}
@media (max-width: 1199px) {
  .cta-banner-section3 .cta-banner-left .cta-banner-img {
    margin: 0;
    margin-left: 20px;
  }
}
@media (max-width: 1199px) {
  .cta-banner-section3 .cta-banner-left .cta-banner-img img {
    max-width: 200px;
  }
}
@media (max-width: 991px) {
  .cta-banner-section3 .cta-banner-left .small-heading-title {
    text-align: center;
  }
}
.cta-banner-section3 .cta-banner-left .small-heading-title h3 {
  margin-bottom: 0px;
}
.cta-banner-section3 .cta-banner-left .small-heading-title h5 {
  margin-bottom: 20px;
}
.cta-banner-section3 .cta-banner-right {
  flex-basis: 60%;
  background: #F3A952;
  position: relative;
  z-index: 1;
  display: flex;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0% 100%);
  padding-left: 60px;
}
@media (max-width: 991px) {
  .cta-banner-section3 .cta-banner-right {
    text-align: center;
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cta-banner-section3 .cta-banner-right {
    clip-path: unset;
  }
}
.cta-banner-section3 .cta-banner-right .small-heading-title span {
  background-color: #15a9e3;
}

/*=================================
 19. Blog-section 
 ==================================*/
.blog-section,
.blog-section-s2,
.blog-section-s3 {
  padding-bottom: 90px;
  background: #ECF3F7;
}
@media (max-width: 991px) {
  .blog-section,
  .blog-section-s2,
  .blog-section-s3 {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .blog-section,
  .blog-section-s2,
  .blog-section-s3 {
    padding-bottom: 50px;
  }
}
.blog-section .blog-items .blog-item,
.blog-section-s2 .blog-items .blog-item,
.blog-section-s3 .blog-items .blog-item {
  background: #fff;
  padding: 30px;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .blog-section .blog-items .blog-item,
  .blog-section-s2 .blog-items .blog-item,
  .blog-section-s3 .blog-items .blog-item {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .blog-section .blog-items .blog-item,
  .blog-section-s2 .blog-items .blog-item,
  .blog-section-s3 .blog-items .blog-item {
    display: block;
    text-align: center;
  }
}
.blog-section .blog-items .blog-item .blog-img img,
.blog-section-s2 .blog-items .blog-item .blog-img img,
.blog-section-s3 .blog-items .blog-item .blog-img img {
  width: 100%;
}
.blog-section .blog-items .blog-item .blog-content,
.blog-section-s2 .blog-items .blog-item .blog-content,
.blog-section-s3 .blog-items .blog-item .blog-content {
  padding-top: 20px;
}
.blog-section .blog-items .blog-item .blog-content ul,
.blog-section-s2 .blog-items .blog-item .blog-content ul,
.blog-section-s3 .blog-items .blog-item .blog-content ul {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .blog-section .blog-items .blog-item .blog-content ul,
  .blog-section-s2 .blog-items .blog-item .blog-content ul,
  .blog-section-s3 .blog-items .blog-item .blog-content ul {
    justify-content: center;
  }
}
.blog-section .blog-items .blog-item .blog-content ul li,
.blog-section-s2 .blog-items .blog-item .blog-content ul li,
.blog-section-s3 .blog-items .blog-item .blog-content ul li {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.blog-section .blog-items .blog-item .blog-content ul li + li,
.blog-section-s2 .blog-items .blog-item .blog-content ul li + li,
.blog-section-s3 .blog-items .blog-item .blog-content ul li + li {
  margin-left: 20px;
}
.blog-section .blog-items .blog-item .blog-content ul li i,
.blog-section-s2 .blog-items .blog-item .blog-content ul li i,
.blog-section-s3 .blog-items .blog-item .blog-content ul li i {
  color: #15a9e3;
}
.blog-section .blog-items .blog-item .blog-content ul li strong,
.blog-section-s2 .blog-items .blog-item .blog-content ul li strong,
.blog-section-s3 .blog-items .blog-item .blog-content ul li strong {
  color: #1C263A;
  font-family: "Cormorant";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
.blog-section .blog-items .blog-item .blog-content h2,
.blog-section-s2 .blog-items .blog-item .blog-content h2,
.blog-section-s3 .blog-items .blog-item .blog-content h2 {
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 15px;
  margin-bottom: 15px;
}
.blog-section .blog-items .blog-item .blog-content h2 a,
.blog-section-s2 .blog-items .blog-item .blog-content h2 a,
.blog-section-s3 .blog-items .blog-item .blog-content h2 a {
  color: #1C263A;
}
.blog-section .blog-items .blog-item .blog-content h2 a:hover,
.blog-section-s2 .blog-items .blog-item .blog-content h2 a:hover,
.blog-section-s3 .blog-items .blog-item .blog-content h2 a:hover {
  color: #15a9e3;
}
.blog-section .blog-items .blog-item .blog-content a.more,
.blog-section-s2 .blog-items .blog-item .blog-content a.more,
.blog-section-s3 .blog-items .blog-item .blog-content a.more {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #707070;
}
.blog-section .blog-items .blog-item .blog-content a.more:hover,
.blog-section-s2 .blog-items .blog-item .blog-content a.more:hover,
.blog-section-s3 .blog-items .blog-item .blog-content a.more:hover {
  color: #F3A952;
}

/*=======================================
 20. offer-features-area
 =======================================*/
.offer-features-area .offer-features-wrap {
  padding: 20px;
  background: #fff;
  padding-bottom: 0;
}
.offer-features-area .offer-features-wrap .features-item {
  display: flex;
  padding: 20px;
  background: #fff;
  margin-bottom: 20px;
  border: 1px solid #E9ECEF;
  align-items: center;
}
@media (max-width: 1399px) {
  .offer-features-area .offer-features-wrap .features-item {
    padding: 20px 12px;
  }
}
.offer-features-area .offer-features-wrap .features-item .features-icon {
  margin-right: 10px;
}
.offer-features-area .offer-features-wrap .features-item .features-icon i {
  font-size: 40px;
  color: #F3A952;
}
.offer-features-area .offer-features-wrap .features-item h2 {
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
  padding-bottom: 0;
}
@media (max-width: 1399px) {
  .offer-features-area .offer-features-wrap .features-item h2 {
    font-size: 14px;
  }
}
.offer-features-area .offer-features-wrap .features-item p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #707070;
  margin: 0;
}

/*--------------------------------------------------------------
21. Home-style-2
--------------------------------------------------------------*/
/* featured-section.style-2 */
.featured-section.style-2 .featured-category-wrap .featured-item {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .featured-section.style-2 .category-banner {
    margin-top: 50px;
  }
}
@media (max-width: 575px) {
  .featured-section.style-2 .category-banner {
    margin-top: 20px;
  }
}
.featured-section.style-2 .category-banner .offer-banner-item .text {
  padding: 25px 20px;
}
.featured-section.style-2 .category-banner .offer-banner-item.red-banner .offer-image {
  margin-top: -36px;
}
.featured-section.style-2 .offer-banner-item.green-card {
  border-radius: 5px;
  background: #00BCD4;
  padding: 0px 40px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .featured-section.style-2 .offer-banner-item.green-card {
    padding: 0px 0px;
  }
}
.featured-section.style-2 .offer-banner-item.green-card .text {
  max-width: 340px;
}
.featured-section.style-2 .offer-banner-item.yellow-banner {
  margin-bottom: 0;
}
.featured-section.style-2 .offer-banner-item.yellow-banner .text {
  padding: 42px 30px;
}
@media (max-width: 1399px) {
  .featured-section.style-2 .offer-banner-item.yellow-banner .text {
    padding: 35px 15px;
  }
}

.view-btn {
  text-align: right;
}
@media (max-width: 991px) {
  .view-btn {
    text-align: center;
    margin-bottom: 40px;
  }
}
.view-btn a {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
  text-transform: capitalize;
  font-family: "Cormorant";
  color: #707070;
}
.view-btn a:hover {
  color: #15a9e3;
}

/*==================================
 05. cta-banner-section-s2 
 ==================================*/
.cta-banner-section-s2 {
  background: #15a9e3;
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.cta-banner-section-s2 .hand-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .cta-banner-section-s2 .hand-img {
    max-width: 600px;
  }
}
@media (max-width: 991px) {
  .cta-banner-section-s2 .hand-img {
    display: none;
  }
}
.cta-banner-section-s2 .hand-img img {
  width: 100%;
}
.cta-banner-section-s2 .cta-banner-img {
  position: absolute;
  left: 50px;
  bottom: 0;
}
@media (max-width: 1399px) {
  .cta-banner-section-s2 .cta-banner-img {
    max-width: 400px;
    left: 20px;
  }
}
@media (max-width: 991px) {
  .cta-banner-section-s2 .cta-banner-img {
    display: none;
  }
}
.cta-banner-section-s2 .animate-shape {
  position: absolute;
  right: 12%;
  top: 50px;
  z-index: -11;
  animation: bounceLeftToRight 4s infinite;
}
@media (max-width: 991px) {
  .cta-banner-section-s2 .animate-shape {
    opacity: 0.5;
  }
}
.cta-banner-section-s2 .cta-banner-text {
  padding: 120px 0;
  padding-left: 80px;
  position: relative;
  z-index: 11;
}
@media (max-width: 1399px) {
  .cta-banner-section-s2 .cta-banner-text {
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  .cta-banner-section-s2 .cta-banner-text {
    text-align: center;
    padding: 0;
  }
}
.cta-banner-section-s2 .cta-banner-text span {
  border-radius: 0;
}
.cta-banner-section-s2 .cta-banner-text h3 {
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: #fff;
}
@media (max-width: 991px) {
  .cta-banner-section-s2 .cta-banner-text h3 {
    font-size: 35px;
  }
}
.cta-banner-section-s2 .cta-banner-text p {
  color: #fff;
  margin-bottom: 20px;
  max-width: 470px;
  margin-top: 15px;
}
@media (max-width: 991px) {
  .cta-banner-section-s2 .cta-banner-text p {
    margin: 20px auto;
  }
}
.cta-banner-section-s2:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: url(../images/cta/cta-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

/*==================================
 05. deal-product-section style-2
 ==================================*/
.deal-product-section.style-2 {
  background: #fff;
  padding-top: 120px;
}
.deal-product-section.style-2::before {
  display: none;
}
.deal-product-section.style-2 .deal-left {
  background: #F3A952;
  padding: 95px 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 1399px) {
  .deal-product-section.style-2 .deal-left {
    min-height: 638px;
  }
}
@media (max-width: 1199px) {
  .deal-product-section.style-2 .deal-left {
    padding: 95px 15px;
  }
}
@media (max-width: 991px) {
  .deal-product-section.style-2 .deal-left {
    min-height: 100%;
    padding: 50px 15px;
    margin-bottom: 30px;
  }
}
.deal-product-section.style-2 .deal-left .deal-img {
  flex-basis: 55%;
}
.deal-product-section.style-2 .deal-left .deal-text {
  flex-basis: 60%;
  padding-top: 50px;
}
@media (max-width: 991px) {
  .deal-product-section.style-2 .deal-left .deal-text {
    padding-top: 0;
  }
}
.deal-product-section.style-2 .deal-left .deal-text h3 {
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .deal-product-section.style-2 .deal-left .deal-text h3 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .deal-product-section.style-2 .deal-left .deal-text h3 {
    font-size: 25px;
  }
}
.deal-product-section.style-2 .deal-left .deal-text b {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  margin-bottom: 15px;
  display: block;
}
@media (max-width: 575px) {
  .deal-product-section.style-2 .deal-left .deal-text b {
    font-size: 18px;
  }
}
.deal-product-section.style-2 .deal-left .deal-text p {
  max-width: 165px;
  color: #fff;
}
.deal-product-section.style-2 .deal-left .round-shape-1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.deal-product-section.style-2 .deal-left .round-shape-1 img {
  width: 100%;
}
.deal-product-section.style-2 .deal-left .round-shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.deal-product-section.style-2 .deal-left .round-shape-2 img {
  width: 100%;
}
.deal-product-section.style-2 .deal-wrap .deal-item {
  border: 1px solid #E9ECEF;
  border-radius: 5px;
  margin-bottom: 30px;
}
.deal-product-section.style-2 .deal-wrap .deal-item:last-child {
  margin-bottom: 0;
}

/*==================================
 05. hot-deal-section
 ==================================*/
.hot-deal-section {
  background: #ECF3F7;
}
@media (max-width: 1199px) {
  .hot-deal-section .hot-deal-wrap .row {
    align-items: flex-end;
  }
}
.hot-deal-section .hot-deal-left {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .hot-deal-section .hot-deal-left {
    text-align: center;
  }
}
.hot-deal-section .hot-deal-left .inner-shape {
  position: absolute;
  top: 50px;
  z-index: -1;
  width: 100%;
  left: -10%;
  animation: zoom-in-zoom-out 5s ease infinite;
  max-width: 611px;
}
@media (max-width: 991px) {
  .hot-deal-section .hot-deal-left .inner-shape {
    text-align: center;
    left: 0;
  }
}
.hot-deal-section .hot-deal-right .horizontal-product-item {
  background: #fff;
}
.hot-deal-section .hot-deal-right .horizontal-product-item h2 {
  margin-bottom: 5px;
}
@media (max-width: 1199px) {
  .hot-deal-section .hot-deal-right .horizontal-product-item h2 a {
    font-size: 16px;
  }
}
.hot-deal-section .hot-deal-right .horizontal-product-item h2:hover a {
  color: #15a9e3;
}
.hot-deal-section .hot-deal-right .offer-banner-item {
  align-items: flex-end;
}
.hot-deal-section .hot-deal-right .offer-banner-item:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: url(../images/deal/vector2.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.hot-deal-title {
  border-bottom: 1px solid #E9ECEF;
  margin-bottom: 60px;
  padding-bottom: 40px;
  position: relative;
}
.hot-deal-title .heading-title {
  margin-bottom: 0;
}
.hot-deal-title:before {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  width: 110px;
  height: 1px;
  background: #F3A952;
}
@media (max-width: 991px) {
  .hot-deal-title:before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.deal-countdown #clock-s2,
.deal-countdown #clock-s3 {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .deal-countdown #clock-s2,
  .deal-countdown #clock-s3 {
    justify-content: center;
    margin-top: 20px;
  }
}
.deal-countdown #clock-s2 .box,
.deal-countdown #clock-s3 .box {
  padding: 0 30px;
  position: relative;
  text-align: center;
}
@media (max-width: 1199px) {
  .deal-countdown #clock-s2 .box,
  .deal-countdown #clock-s3 .box {
    padding: 0 20px;
  }
}
.deal-countdown #clock-s2 .box::after,
.deal-countdown #clock-s3 .box::after {
  position: absolute;
  right: 0;
  top: -10px;
  content: ":";
  font-size: 30px;
  color: #15a9e3;
}
.deal-countdown #clock-s2 .box:last-child,
.deal-countdown #clock-s3 .box:last-child {
  padding-right: 0;
}
.deal-countdown #clock-s2 .box:last-child::after,
.deal-countdown #clock-s3 .box:last-child::after {
  display: none;
}
.deal-countdown #clock-s2 .time,
.deal-countdown #clock-s3 .time {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  color: #15a9e3;
}
@media (max-width: 1199px) {
  .deal-countdown #clock-s2 .time,
  .deal-countdown #clock-s3 .time {
    font-size: 20px;
  }
}
.deal-countdown #clock-s2 span,
.deal-countdown #clock-s3 span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}

/*==================================
 05. partners-section style-2
 ==================================*/
.partners-section.style-2 {
  padding-top: 80px;
}
.partners-section.style-2 .grid {
  border: 0;
  height: auto;
}

/*==================================
 05. top-selling-section
 ==================================*/
.top-selling-section .product-item {
  background: #F9F9F9;
  margin-bottom: 0;
}
.top-selling-section .product-item .product-image {
  border: 0;
}
.top-selling-section .product-item .product-info {
  padding: 15px;
  padding-top: 0;
}
.top-selling-section .product-item .product-info .price {
  border: 0;
  padding-bottom: 0;
  padding-top: 12px;
}
.top-selling-section .owl-nav .owl-prev,
.top-selling-section .owl-nav .owl-next {
  position: absolute;
  top: -100px;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  line-height: 23px;
  transition: all 0.3s;
  border-radius: 5px;
  border: 0;
  background: #fff;
  z-index: 1;
  font-size: 8px;
  border-radius: 50%;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}
.top-selling-section .owl-nav .owl-prev:hover,
.top-selling-section .owl-nav .owl-next:hover {
  background: #F3A952;
  color: #fff;
}
@media (max-width: 991px) {
  .top-selling-section .owl-nav .owl-prev,
  .top-selling-section .owl-nav .owl-next {
    display: none;
  }
}
.top-selling-section .owl-nav .owl-prev {
  right: 35px;
}
.top-selling-section .owl-dots {
  display: none;
}
@media (max-width: 992px) {
  .top-selling-section .owl-dots {
    text-align: center;
    bottom: -10px;
    position: relative;
    display: block;
  }
  .top-selling-section .owl-dots button {
    width: 10px;
    height: 12px;
    border: 0;
    background: #d4e6f5;
    margin-right: 10px;
    border-radius: 50%;
  }
  .top-selling-section .owl-dots .owl-dot.active {
    background-color: #15a9e3;
  }
}

/*==================================
 05. blog-section-s2
 ==================================*/
.blog-section-s2 {
  background: #fff;
}
.blog-section-s2 .blog-items .blog-item {
  background: #F9F9F9;
}

/*--------------------------------------------------------------
22. Home-style-3
--------------------------------------------------------------*/
/* featured-section style-3 */
.featured-section.style-3 {
  background: #15a9e3;
  padding: 15px 120px;
}
@media (max-width: 1599px) {
  .featured-section.style-3 {
    padding: 15px 30px;
  }
}
@media (max-width: 1399px) {
  .featured-section.style-3 {
    padding: 15px;
  }
}
.featured-section.style-3 .featured-item {
  background: none;
  padding: 0;
  display: flex;
  text-align: left;
  align-items: center;
}
@media (max-width: 400px) {
  .featured-section.style-3 .featured-item {
    justify-content: center;
  }
}
.featured-section.style-3 .featured-item .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: rgba(255, 255, 255, 0.15);
  text-align: center;
  margin: 0;
  margin-right: 10px;
}
.featured-section.style-3 .featured-item .icon i {
  font-size: 30px;
  color: #fff;
}
.featured-section.style-3 .featured-item .text h2 {
  line-height: 20px;
}
.featured-section.style-3 .featured-item .text h2 a {
  color: #fff;
}
.featured-section.style-3 .featured-item .text span {
  color: #fff;
}
.featured-section.style-3 .owl-nav {
  display: none;
}

/* hot-deal-section */
.hot-deal-section.style-2 {
  background: #fff;
}
.hot-deal-section.style-2 .hot-deal-wrap {
  margin-bottom: 20px;
}
.hot-deal-section.style-2 .offer-banner-item.green-card {
  border-radius: 5px;
  background: #00BCD4;
  padding: 0px 40px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .hot-deal-section.style-2 .offer-banner-item.green-card {
    padding: 0px 0px;
  }
}
.hot-deal-section.style-2 .offer-banner-item.green-card .text {
  max-width: 340px;
}
.hot-deal-section.style-2 .offer-banner-item.yellow-banner .text {
  padding: 48px 30px;
}
@media (max-width: 1399px) {
  .hot-deal-section.style-2 .offer-banner-item.yellow-banner .text {
    padding: 35px 15px;
  }
}

/* top-selling-s2 */
.top-selling-s2 {
  background: #ECF3F7;
}
.top-selling-s2 .horizontal-product-item {
  background: #fff;
}
.top-selling-s2 .owl-nav .owl-prev,
.top-selling-s2 .owl-nav .owl-next {
  position: absolute;
  top: -100px;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  line-height: 23px;
  transition: all 0.3s;
  border-radius: 5px;
  border: 0;
  background: #fff;
  z-index: 1;
  font-size: 8px;
  border-radius: 50%;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}
.top-selling-s2 .owl-nav .owl-prev:hover,
.top-selling-s2 .owl-nav .owl-next:hover {
  background: #F3A952;
  color: #fff;
}
@media (max-width: 991px) {
  .top-selling-s2 .owl-nav .owl-prev,
  .top-selling-s2 .owl-nav .owl-next {
    display: none;
  }
}
.top-selling-s2 .owl-nav .owl-prev {
  right: 35px;
}
.top-selling-s2 .owl-dots {
  display: none;
}
@media (max-width: 992px) {
  .top-selling-s2 .owl-dots {
    text-align: center;
    bottom: -10px;
    position: relative;
    display: block;
  }
  .top-selling-s2 .owl-dots button {
    width: 10px;
    height: 12px;
    border: 0;
    background: #d4e6f5;
    margin-right: 10px;
    border-radius: 50%;
  }
  .top-selling-s2 .owl-dots .owl-dot.active {
    background-color: #15a9e3;
  }
}

/* cta-banner-section3 style-2 */
.cta-banner-section3.style-2 .cta-banner-wrap {
  background: url(../images/cta/bg.jpg);
  background-size: cover;
  background-position: center;
}
.cta-banner-section3.style-2 .cta-banner-wrap .cta-banner.cta-banner-left {
  background: none;
}
.cta-banner-section3.style-2 .cta-banner-wrap .cta-banner.cta-banner-left:before {
  display: none;
}
.cta-banner-section3.style-2 .cta-banner-wrap .cta-banner-right {
  background: #15a9e3;
  align-items: flex-end;
  flex-basis: 65%;
}
.cta-banner-section3.style-2 .cta-banner-wrap .cta-banner-right .cta-banner-img {
  width: 60%;
}
.cta-banner-section3.style-2 .cta-banner-wrap .cta-banner-right .small-heading-title {
  padding: 30px 40px 50px;
}
@media (max-width: 991px) {
  .cta-banner-section3.style-2 .cta-banner-wrap .cta-banner-right .small-heading-title {
    padding: 30px 30px 40px;
  }
}
.cta-banner-section3.style-2 .cta-banner-wrap .cta-banner-right .small-heading-title h3 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 991px) {
  .cta-banner-section3.style-2 .cta-banner-wrap .cta-banner-right .small-heading-title h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .cta-banner-section3.style-2 .cta-banner-wrap .cta-banner-right .small-heading-title h3 {
    font-size: 25px;
  }
}
.cta-banner-section3.style-2 .cta-banner-wrap .cta-banner-right .small-heading-title p {
  color: #fff;
}

/* blog-section-s3 */
.blog-section-s3 .blog-items {
  margin-bottom: 30px;
}
.blog-section-s3 .blog-items .blog-item .blog-content h2 {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
}
.blog-section-s3 .blog-items .col:nth-child(1) .blog-item {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .blog-section-s3 .blog-items .col:nth-child(1) .blog-item {
    display: block;
  }
}
.blog-section-s3 .blog-items .col:nth-child(1) .blog-item .blog-img {
  flex-basis: 40%;
}
.blog-section-s3 .blog-items .col:nth-child(1) .blog-item .blog-content {
  padding-top: 0;
  padding-left: 20px;
  flex-basis: 60%;
}
@media (max-width: 575px) {
  .blog-section-s3 .blog-items .col:nth-child(1) .blog-item .blog-content {
    padding-top: 20px;
    padding-left: 0;
  }
}
.blog-section-s3 .blog-items .col:nth-child(1) .blog-item .blog-content h2 {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 25px;
}
.blog-section-s3 .blog-items .col:nth-child(1) .blog-item .blog-content p {
  margin-bottom: 20px;
}
@media (min-width: 991px) {
  .blog-section-s3 .blog-items .col:nth-child(1) .blog-item:last-child {
    margin-bottom: 0;
  }
}

/* offer-features-area style-2 */
.offer-features-area.style-2 {
  background: #15a9e3;
}
.offer-features-area.style-2 .offer-features-wrap {
  background: #15a9e3;
}
.offer-features-area.style-2 .offer-features-wrap .features-item {
  background: none;
  border-radius: 5px;
  border: 1px solid rgba(233, 236, 239, 0.15);
}
.offer-features-area.style-2 .offer-features-wrap .features-item .features-icon i {
  color: #fff;
}
.offer-features-area.style-2 .offer-features-wrap .features-item h2,
.offer-features-area.style-2 .offer-features-wrap .features-item p {
  color: #fff;
}

.instagram-section .container-fluid {
  padding: 0;
}
.instagram-section .instagram-item a {
  position: relative;
  display: block;
}
.instagram-section .instagram-item a:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "\e902";
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(254, 213, 66, 0.8) 0%, rgba(6, 74, 203, 0.8) 100%);
  font-family: "icomoon";
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1;
  font-size: 40px;
  transition: all 0.6s;
}
.instagram-section .instagram-item:hover a:before {
  opacity: 1;
  visibility: visible;
}
.instagram-section .owl-nav {
  display: none;
}

/* ======================================
23. About Page  
========================================*/
/* about-page */
.about-page .about-section .about-img-wrap {
  position: relative;
  padding-right: 60px;
  padding-bottom: 120px;
  margin-right: 60px;
}
@media (max-width: 575px) {
  .about-page .about-section .about-img-wrap {
    padding-right: 20px;
    padding-bottom: 50px;
    margin-right: 0;
  }
}
.about-page .about-section .about-img-wrap .about-img-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 575px) {
  .about-page .about-section .about-img-wrap .about-img-bottom {
    max-width: 200px;
  }
}
@media (max-width: 991px) {
  .about-page .about-section .about-text {
    margin-top: 30px;
    text-align: center;
  }
}
.about-page .about-section .about-text h2 {
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-top: 10px;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .about-page .about-section .about-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
  }
}
.about-page .about-section .about-text p {
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .about-page .about-section .about-text p {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .about-page .about-section .about-text p {
    margin: 0 auto;
  }
}
.about-page .about-section .about-text .about-features h3 {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  text-transform: capitalize;
}
.about-page .about-section .about-text .about-features p {
  max-width: 280px;
}
.about-page .about-section .about-text .about-features i {
  color: #F3A952;
  font-size: 50px;
}
.about-page .testimonial-section {
  background: #ECF3F7;
}
.about-page .about-history-section .history-top {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .about-page .about-history-section .history-top {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .about-page .about-history-section .history-wrap {
    text-align: center;
  }
}
.about-page .about-history-section .history-wrap .history-item {
  margin-bottom: 40px;
}
.about-page .about-history-section .history-wrap .history-item:last-child {
  margin-bottom: 0;
}
.about-page .about-history-section .history-wrap .history-item h3 {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .about-page .about-history-section .history-wrap .history-item h3 {
    justify-content: center;
  }
}
.about-page .about-history-section .history-wrap .history-item h3 i {
  color: #15a9e3;
  margin-right: 10px;
  font-size: 30px;
}
@media (max-width: 991px) {
  .about-page .about-history-section .history-wrap .history-img {
    margin-bottom: 30px;
  }
}

/*===========================
 24. Shop-Page
===========================*/
.shop-section {
  padding: 80px 0;
}
.shop-section .shop-section-top-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  align-items: center;
  padding-top: 20px;
  align-items: center;
}
@media (max-width: 767px) {
  .shop-section .shop-section-top-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.shop-section .shop-section-top-inner .shoping-list {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .shop-section .shop-section-top-inner .shoping-list {
    margin-bottom: 20px;
  }
}
.shop-section .shop-section-top-inner .shoping-list p {
  margin-bottom: 0;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .shop-section .shop-section-top-inner .shoping-list p {
    font-size: 15px;
    margin-left: 10px;
  }
}
.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;
  border: 1px solid #E9ECEF;
}
.shop-section .shop-section-top-inner .shoping-list .nav-link.active {
  background-color: #15a9e3;
}
.shop-section .shop-section-top-inner .shoping-list .nav-link.active i {
  color: #fff;
}
.shop-section .shop-section-top-inner .shoping-list i {
  color: #1C263A;
  font-size: 18px;
}
.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-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: #15a9e3;
}
@media (max-width: 352px) {
  .shop-section .shop-section-top-inner .shoping-product {
    margin-top: 10px;
  }
}
.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 ***/
}
@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-radius: 5px;
  border: 1px solid #EBEBEB;
  background: #F9F9F9;
  margin-bottom: 40px;
}
.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: 25px;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  text-transform: capitalize;
  border-bottom: 2px solid #ebebeb;
}
.shop-section .shop-filter-wrap .shop-filter-item h2:after {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 65px;
  height: 2px;
  background: #F3A952;
  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 a {
  display: block;
  position: relative;
  padding: 8px 0;
  color: #707070;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
}
.shop-section .shop-filter-wrap .shop-filter-item ul li a:hover {
  color: #15a9e3;
}
.shop-section .shop-filter-wrap .shop-filter-item ul li label {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #6F6F6F;
}
.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 {
  display: block;
  position: relative;
  padding: 8px 0;
}
.shop-section .shop-filter-wrap .category-widget ul a:before {
  position: absolute;
  right: 0;
  top: 12px;
  content: "\e932";
  font-family: "icomoon";
  font-size: 10px;
}
.shop-section .shop-filter-wrap .category-widget ul a:hover {
  color: #15a9e3;
}
.shop-section .shop-filter-wrap .rating-widget ul ul {
  display: flex;
}
.shop-section .shop-filter-wrap .rating-widget ul ul li + li {
  margin-left: 5px;
}
.shop-section .shop-filter-wrap .rating-widget ul ul li i {
  color: #F3A952;
}
.shop-section .shop-filter-wrap .rating-widget ul ul li i.gray {
  color: #E3E2E2;
}
.shop-section .shop-filter-wrap .shopWidgetWraper #sliderRange {
  position: relative;
  width: 100%;
  display: block;
  height: 4px;
  background: #D9D9D9;
  border-radius: 0;
  margin: 24px 0 20px;
  padding: 0;
}
.shop-section .shop-filter-wrap .shopWidgetWraper #sliderRange .ui-slider-range {
  background: #15a9e3;
  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: #15a9e3;
  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;
  box-shadow: none !important;
  outline: none !important;
}
.shop-section .shop-filter-wrap .shopWidgetWraper .pfsWrap {
  margin: 0;
}
.shop-section .shop-filter-wrap .shopWidgetWraper label {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
.shop-section .shop-filter-wrap .shopWidgetWraper span#amount {
  margin-left: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
.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: flex;
  justify-content: center;
  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: -0.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%;
  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;
  transition: all 0.3s ease-in-out;
}

input[type=radio]:checked + .topcoat-radio-button:before {
  border: 1px solid transparent;
  background: #15a9e3;
}

/* 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;
  transition: all 0.3s ease-in-out;
}

input[type=radio]:checked + .topcoat-radio-button:after {
  opacity: 1;
}

/*tab product-wrap */
.shop-section .product-row .product-item {
  display: flex;
  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 {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #707070;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .shop-section .product-row .product-item .text p {
    padding-bottom: 10px;
  }
}

.deals-area .offer-wrap {
  justify-content: center;
  height: auto;
  display: block;
  position: relative;
  background: #f9f9f9;
  height: 410px;
  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%;
  object-fit: cover;
}
.deals-area .offer-wrap .content {
  text-align: center;
  margin-left: 0;
  padding: 60px 20px;
  position: absolute;
  left: 50%;
  top: 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: #1C263A;
}
.deals-area .offer-wrap .content .count-up {
  margin-top: 20px;
  display: flex;
  justify-content: 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: "Cormorant";
  font-weight: 400;
  color: #1C263A;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.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: #1C263A;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
}
.deals-area .all-deals-btn {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 80px;
}

/*===========================
 25. Shop-Single
===========================*/
@media (max-width: 991px) {
  .product-details .product-single-tag {
    padding-top: 30px;
  }
}
.product-details .product-single-content {
  padding-left: 40px;
}
@media (max-width: 1200px) {
  .product-details .product-single-content {
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  .product-details .product-single-content {
    padding-top: 30px;
    padding-left: 0;
  }
}
.product-details .product-single-content h5 {
  font-weight: bold;
  font-size: 34px;
  line-height: 36px;
  margin-bottom: 20px;
  font-family: "Cormorant";
}
@media (max-width: 767px) {
  .product-details .product-single-content h5 {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
.product-details .product-single-content h6 {
  font-weight: bold;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  color: #15a9e3;
  font-family: "Rubik", sans-serif;
  margin-bottom: 20px;
}
.product-details .product-single-content p {
  max-width: 500px;
}
.product-details .product-single-content .rating {
  display: flex;
  margin-bottom: 10px;
}
.product-details .product-single-content .rating li {
  margin-right: 5px;
  color: #FFD400;
}
.product-details .product-single-content .pro-single-btn {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.product-details .product-single-content .pro-single-btn .quantity {
  position: relative;
  width: 120px;
  margin: 0 20px;
}
@media (max-width: 450px) {
  .product-details .product-single-content .pro-single-btn .quantity {
    margin-bottom: 10px;
  }
}
.product-details .product-single-content .pro-single-btn .quantity input {
  height: 40px;
  width: 120px;
  text-align: center;
  border: 0;
}
.product-details .product-single-content .pro-single-btn .quantity input:focus {
  outline: none;
}
@media (max-width: 768px) {
  .product-details .product-single-content .pro-single-btn .quantity input {
    height: 40px;
    margin-top: 0;
  }
}
.product-details .product-single-content .pro-single-btn .qtybutton {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #E9ECEF;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}
.product-details .product-single-content .pro-single-btn .qtybutton.inc {
  left: auto;
  right: 0;
}
.product-details .product-single-content .pro-single-btn a .icon {
  font-size: 30px;
  color: #707070;
  margin: 0 15px;
}
.product-details .product-single-content .pro-single-btn a:hover {
  color: #F9F9F9;
}
.product-details .product-single-content .stock {
  margin-top: 40px;
}
.product-details .product-single-content .stock ul {
  display: flex;
}
.product-details .product-single-content .stock ul li {
  margin-right: 20px;
}
.product-details .product-single-content .category ul {
  display: flex;
  margin-top: 20px;
}
.product-details .product-single-content .category ul li {
  margin-right: 15px;
}
@media (max-width: 768px) {
  .product-details .product-single-content .theme-btn {
    position: relative;
    top: -2px;
  }
}
.product-details .product-single-content .product-filter-item {
  margin-top: 30px;
}
.product-details .product-single-content .product-filter-item.color .color-name {
  margin-top: 20px;
  margin-bottom: 30px;
}
.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: flex;
  margin-left: 20px;
}
.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;
  flex-wrap: wrap;
}
.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: 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 {
  border: 1px solid #000;
}
.product-details .product-single-content .product-filter-item.color .color-name label {
  border: 1px solid transparent;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
}
.product-details .product-single-content .product-filter-item.color .color-name label {
  border: 1px solid #E9ECEF;
  border-radius: 5px;
}
.product-details .product-single-content .product-filter-item.color .color-name {
  display: flex;
  align-items: center;
}
.product-details .product-single-content .product-filter-item.color .color-name .color1 label {
  background: #000;
}
.product-details .product-single-content .product-filter-item.color .color-name .color2 label {
  background: #F3A952;
}
.product-details .product-single-content .product-filter-item.color .color-name .color3 label {
  background: #15a9e3;
}
.product-details .product-single-content .product-filter-item.color .color-name .color4 label {
  background: #EC2526;
}
.product-details .product-single-content .product-filter-item.color.filter-size {
  margin-top: 15px;
}
.product-details .product-single-content .product-filter-item.color.filter-size .color-name {
  margin-top: 5px;
}
.product-details .product-single-content .product-filter-item.color.filter-size ul {
  margin-left: 10px;
}
.product-details .product-single-content .product-filter-item.color.filter-size ul li {
  border-radius: 30px;
  height: 35px;
  width: 65px;
  margin-right: 2px;
  font-size: 13px;
  color: #707070;
  line-height: 33px;
  text-align: center;
  margin-bottom: 2px;
}
@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 {
  width: 65px;
  border-radius: 3px;
  text-align: center;
  border: 1px solid rgba(93, 102, 111, 0.15) !important;
  height: 35px;
  color: #707070;
}
@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: 2px solid #1C263A !important;
  border-radius: 3px;
  width: 65px;
  height: 35px;
}

.product-single-section .owl-nav {
  display: none;
}
.product-single-section .product-tab-area {
  padding-top: 100px;
}
.product-single-section .product-tab-area .tab-content {
  padding-top: 50px;
}
@media (max-width: 991px) {
  .product-single-section .product-tab-area .tab-content {
    padding-top: 40px;
  }
}
.product-single-section .product-tab-area .main-tab {
  justify-content: flex-start;
  border-bottom: 1px solid rgba(93, 102, 111, 0.15);
}
.product-single-section .product-tab-area .main-tab button {
  color: rgba(93, 102, 111, 0.5);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  padding: 10px 40px;
  background: transparent;
  border: none;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .product-single-section .product-tab-area .main-tab button {
    padding: 10px 10px;
  }
}
.product-single-section .product-tab-area .main-tab button.active {
  color: #1C263A;
  background: #F3F3F3;
}
.product-single-section .product-tab-area .Descriptions-item .Description-table {
  margin-top: 30px;
}
.product-single-section .product-tab-area .Descriptions-item .Description-table h4 {
  margin-bottom: 20px;
}
.product-single-section .product-tab-area .Descriptions-item .Description-table th,
.product-single-section .product-tab-area .Descriptions-item .Description-table td {
  width: 8%;
  border: 1px solid #E1E2E1;
  text-align: center;
  font-weight: 400;
  color: #414141;
  padding: 20px;
}
.product-single-section .rating-section .rating-sub span {
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #707070;
}
.product-single-section .rating-section .rating-sub ul {
  display: flex;
  margin-bottom: 20px;
}
.product-single-section .rating-section .rating-sub ul li {
  margin-right: 10px;
  font-size: 40px;
  color: #FFD400;
}
.product-single-section .rating-section .rating-right .rating-right-item {
  margin-bottom: 30px;
}
.product-single-section .rating-section .rating-right ul {
  display: flex;
  align-items: center;
}
.product-single-section .rating-section .rating-right ul li {
  flex-basis: 20%;
}
.product-single-section .rating-section .rating-right ul li:nth-child(2) {
  flex-basis: 60%;
}
.product-single-section .rating-section .rating-right ul li ul li {
  flex-basis: unset;
  margin-right: 10px;
  font-size: 18px;
  color: #FFD400;
}
.product-single-section .rating-section .rating-right ul li ul li:nth-child(2) {
  flex-basis: unset;
}
.product-single-section .rating-section .rating-right ul li .progress {
  margin: 0 auto;
  padding: 0;
  width: 90%;
  height: 6px;
  overflow: hidden;
  background: #e5e5e5;
  border-radius: 6px;
}
.product-single-section .rating-section .rating-right ul li .bar {
  position: relative;
  float: left;
  height: 100%;
  background: #1C263A;
}
.product-single-section .rating-section .rating-bottom {
  padding-top: 30px;
}
.product-single-section .rating-section .rating-bottom .theme-btn {
  margin-bottom: 30px;
}
.product-single-section .rating-section .rating-bottom .rating-give-section-items {
  display: none;
}
.product-single-section .rating-section .rating-bottom.active .rating-give-section-items {
  display: block;
}
.product-single-section .rating-section .rating-bottom.active .write-review-btn {
  display: none;
}
.product-single-section .rating-section .rating-bottom .rating-give-section-wrap .theme-btn {
  margin-bottom: 0px;
}
.product-single-section .rating-section .rating-bottom .rating-give-section {
  padding: 30px;
  border: 1px solid rgba(93, 102, 111, 0.15);
}
.product-single-section .rating-section .rating-bottom .rating-give-section span {
  display: block;
}
.product-single-section .rating-section .rating-bottom .rating-give-section .give-rating {
  display: inline-block;
  position: relative;
  height: 50px;
  line-height: 50px;
  font-size: 50px;
  margin-bottom: 30px;
}
.product-single-section .rating-section .rating-bottom .rating-give-section .give-rating label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  cursor: pointer;
}
.product-single-section .rating-section .rating-bottom .rating-give-section .give-rating label:last-child {
  position: static;
}
.product-single-section .rating-section .rating-bottom .rating-give-section .give-rating label:nth-child(1) {
  z-index: 5;
}
.product-single-section .rating-section .rating-bottom .rating-give-section .give-rating label:nth-child(2) {
  z-index: 4;
}
.product-single-section .rating-section .rating-bottom .rating-give-section .give-rating label:nth-child(3) {
  z-index: 3;
}
.product-single-section .rating-section .rating-bottom .rating-give-section .give-rating label:nth-child(4) {
  z-index: 2;
}
.product-single-section .rating-section .rating-bottom .rating-give-section .give-rating label:nth-child(5) {
  z-index: 1;
}
.product-single-section .rating-section .rating-bottom .rating-give-section .give-rating label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.product-single-section .rating-section .rating-bottom .rating-give-section .give-rating label .icon {
  float: left;
  color: transparent;
}
.product-single-section .rating-section .rating-bottom .rating-give-section .give-rating label:last-child .icon {
  color: #000;
}
.product-single-section .rating-section .rating-bottom .rating-give-section .give-rating:not(:hover) label input:checked ~ .icon,
.product-single-section .rating-section .rating-bottom .rating-give-section .give-rating:hover label:hover input ~ .icon {
  color: #FFD400;
}
.product-single-section .rating-section .rating-bottom .rating-give-section .give-rating label input:focus:not(:checked) ~ .icon:last-child {
  color: #000;
  text-shadow: 0 0 5px #FFD400;
}
.product-single-section .rating-section .rating-bottom .rating-give-section .form-group input,
.product-single-section .rating-section .rating-bottom .rating-give-section .form-group textarea {
  width: 100%;
  background: transparent;
  padding: 15px;
  height: 70px;
  border: 1px solid rgba(93, 102, 111, 0.15);
  margin-bottom: 30px;
}
.product-single-section .rating-section .rating-bottom .rating-give-section .form-group textarea {
  height: 200px;
}
.product-single-section .rating-section .rating-bottom .review-rating-wrap {
  padding-top: 40px;
}
.product-single-section .rating-section .rating-bottom .rating-review {
  padding: 30px;
  border: 1px solid rgba(93, 102, 111, 0.15);
  border-bottom: 0;
}
.product-single-section .rating-section .rating-bottom .rating-review:last-child {
  border-bottom: 1px solid rgba(93, 102, 111, 0.15);
  text-align: center;
}
.product-single-section .rating-section .rating-bottom .rating-review:last-child a {
  color: #1C263A;
}
.product-single-section .rating-section .rating-bottom .rating-review p {
  margin-bottom: 0;
}
.product-single-section .rating-section .rating-bottom .rating-review .rating-review-author {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.product-single-section .rating-section .rating-bottom .rating-review .rating-review-author .rating-review-author-img img {
  border-radius: 50%;
}
.product-single-section .rating-section .rating-bottom .rating-review .rating-review-author-text p {
  margin-left: 20px;
  margin-bottom: 0;
}
.product-single-section .rating-section .rating-bottom .rating-review .rating-review-author-text-inner {
  display: flex;
  margin-left: 20px;
}
.product-single-section .rating-section .rating-bottom .rating-review .ratting {
  display: flex;
}
.product-single-section .rating-section .rating-bottom .rating-review .ratting li {
  margin-right: 5px;
  color: #FFD400;
}
.product-single-section .owl-nav [class*=owl-] {
  position: absolute;
  left: 10px;
  top: 46%;
  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;
}
.product-single-section .description-section {
  margin-top: 20px;
}
.product-single-section .description-section .Descriptions-item p {
  max-width: 100%;
}
.product-single-section .accordion-item {
  border: 0;
  border-bottom: 1px solid #e1e1e1;
  padding: 5px 0px;
}
.product-single-section .accordion-item .accordion-body {
  padding-left: 0;
  padding-right: 0;
}
.product-single-section .accordion-item button {
  padding: 15px 0px;
  border: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #1C263A;
  text-align: left;
  font-family: "Rubik", sans-serif;
}
.product-single-section .accordion-item button::after {
  background: none;
  font-family: "icomoon";
  content: "\e918";
  font-size: 15px;
  transform: rotate(0deg);
  font-weight: 700;
  color: #15a9e3;
}
.product-single-section .accordion-item button.collapsed {
  color: #373b3e;
}
.product-single-section .accordion-item button.collapsed::after {
  content: "\e917";
}
.product-single-section .accordion-item button:focus {
  box-shadow: none;
  outline: none;
  border-color: #e1e1e1;
}
.product-single-section .accordion-item .accordion-collapse {
  border: 0;
}
.product-single-section .accordion-button {
  background: transparent;
}

.product-active {
  margin-bottom: 15px;
}
.product-active .owl-prev,
.product-active .owl-next {
  display: none;
}

.Additional-wrap .ratting ul {
  display: flex;
  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: center;
  font-weight: 400;
  color: #414141;
  padding: 20px;
}

.Additional-wrap {
  padding-top: 0;
}

/*===========================
 26. cart-page-style
===========================*/
@media (max-width: 991px) {
  .cart-area .cart-wrapper table {
    width: 1022px;
  }
}
@media (max-width: 991px) {
  .cart-area .cart-wrapper form {
    overflow: scroll;
    overflow-y: hidden;
  }
}
.cart-area .cart-wrap td,
.cart-area .cart-wrap th {
  width: 10%;
  border-bottom: 1px solid rgba(240, 240, 240, 0.5803921569);
  text-align: center;
  font-weight: 400;
  color: #414141;
}
.cart-area .cart-wrap th {
  background: #F8F8F8;
  padding: 20px 0;
}
.cart-area .cart-wrap thead {
  background: #fff;
  color: #505050;
  padding: 40px;
}
.cart-area .cart-area form {
  margin: auto;
  text-align: center;
  background: #fff;
}
.cart-area .cart-wrap .product {
  width: 15%;
  padding: 20px 0;
}
.cart-area .cart-wrap .product ul {
  display: flex;
  text-align: left;
  padding-left: 30px;
  align-items: center;
  position: relative;
}
.cart-area .cart-wrap .product ul li img {
  max-width: 60px;
}
.cart-area .cart-wrap .product ul li.close {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cart-area .crt-btn {
  text-transform: uppercase;
  color: #15a9e3;
}
.cart-area .w-close i {
  color: #F3A952;
}
.cart-area .cart-wrap .product ul li {
  padding-bottom: 5px;
}
.cart-area .cart-wrap .product a {
  font-size: 16px;
  color: #a5a4a4;
}
.cart-area .cart-wrap .product-2 {
  text-align: left;
  padding-left: 55px;
}
.cart-area .cart-wrap .product a:hover {
  color: #15a9e3;
}
.cart-area .cart-wrap th {
  height: 80px;
  font-weight: 700;
}
.cart-area .order-wrap {
  padding: 0;
}
.cart-area .cart-wrap tr:nth-child(even) {
  background: #FCFCFC;
}
.cart-area .cart-wrap .quantity {
  position: relative;
}
.cart-area .input-style {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cart-area .input-style .quantity {
  position: relative;
  width: 120px;
  margin: 0 20px;
}
@media (max-width: 450px) {
  .cart-area .input-style .quantity {
    margin-bottom: 10px;
  }
}
.cart-area .input-style .quantity input {
  height: 40px;
  width: 120px;
  text-align: center;
  border: 0;
}
.cart-area .input-style .quantity input:focus {
  outline: none;
}
@media (max-width: 768px) {
  .cart-area .input-style .quantity input {
    height: 40px;
    margin-top: 0;
  }
}
.cart-area .input-style .qtybutton {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #E9ECEF;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}
.cart-area .input-style .qtybutton.inc {
  left: auto;
  right: 0;
}
.cart-area .input-style a .icon {
  font-size: 30px;
  color: #707070;
  margin: 0 15px;
}
.cart-area .input-style a:hover {
  color: #F9F9F9;
}
.cart-area .submit-btn-area {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 500px) {
  .cart-area .submit-btn-area {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.cart-area .submit-btn-area .left-coupon h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.cart-area .submit-btn-area .left-coupon .form-group {
  position: relative;
  max-width: 370px;
}
.cart-area .submit-btn-area .left-coupon .form-group input {
  width: 320px;
  height: 60px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 15px;
  margin: 0;
}
.cart-area .submit-btn-area .left-coupon .form-group button {
  position: absolute;
  right: 0;
  top: 0;
  padding: 19px 15px;
  height: 60px;
  background: #15a9e3;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
@media (max-width: 500px) {
  .cart-area .submit-btn-area ul {
    margin-top: 20px;
  }
}
.cart-area .submit-btn-area button {
  padding: 15px 40px;
  border: none;
  background: #15a9e3;
  color: #fff;
  transition: all 0.3s;
  outline: none;
}
.cart-area .submit-btn-area button:hover {
  background: #15a9e3;
}
.cart-area .submit-btn-area .theme-btn {
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  line-height: 27px;
}
.cart-area .cart-product-list {
  max-width: 446px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-left: auto;
  margin-top: 50px;
}
.cart-area .cart-product-list ul {
  border-top: 1px solid rgba(240, 240, 240, 0.5803921569);
  padding-top: 20px;
}
.cart-area .cart-product-list ul li {
  display: flex;
  justify-content: space-between;
  padding: 0px 30px;
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  color: #414141;
  padding-bottom: 30px;
}
.cart-area .cart-product-list ul li.cart-b {
  border-top: 1px solid rgba(240, 240, 240, 0.5803921569);
  color: #15a9e3;
  padding-top: 30px;
  font-weight: 600;
}
.cart-area .cart-product-list .c-btn {
  padding: 10px 20px;
  background: #15a9e3;
  color: #fff;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-area .cart-product-list .c-btn i {
  margin-right: 5px;
}

/* =============================
27. Checkout-page
 ===============================*/
/* checkout-area */
.checkout-area .caupon-area {
  margin-bottom: 80px;
}
.checkout-area .caupon-area .coupon-box {
  background: #F2F2F2;
  padding: 20px;
}
.checkout-area .caupon-area .coupon-box p {
  margin-bottom: 0;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.checkout-area .caupon-area .coupon-box p i {
  color: #15a9e3;
  margin-right: 10px;
}
.checkout-area .caupon-area .coupon-box p span {
  display: inline-block;
  color: #15a9e3;
  margin-left: 10px;
  cursor: pointer;
}
.checkout-area .caupon-area .coupon-form p {
  margin-bottom: 15px;
  color: #7b7b7b;
}
.checkout-area .caupon-area .coupon-form {
  display: none;
  padding: 20px;
}
.checkout-area .caupon-area .coupon-form span {
  margin-bottom: 20px;
  display: block;
  color: #7b7b7b;
}
.checkout-area .caupon-area .input-wrap {
  position: relative;
}
.checkout-area .caupon-area .coupon-form input {
  width: 100%;
  height: 50px;
  border: 1px solid #ebebeb;
  padding-left: 20px;
  border-radius: 0;
}
.checkout-area .caupon-area .coupon-form input:focus {
  outline: none;
  box-shadow: none;
}
.checkout-area .caupon-area .coupon-form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: #15a9e3;
  color: #fff;
  width: 108px;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.checkout-area .biling-item .billing-adress label {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #1C263A;
  margin-bottom: 5px;
}
.checkout-area .biling-item .billing-adress .form-style input,
.checkout-area .biling-item .billing-adress .form-style select {
  width: 100%;
  margin-bottom: 25px;
  padding-left: 10px;
  height: 50px;
  border-radius: 5px;
  border: none;
  background: #F2F2F2;
}
.checkout-area .biling-item .billing-adress .form-style input:focus,
.checkout-area .biling-item .billing-adress .form-style select:focus {
  outline: none;
  box-shadow: none;
}
.checkout-area .biling-item .billing-adress .form-style select {
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: #F2F2F2 url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}
.checkout-area .note-area {
  margin-bottom: 50px;
}
.checkout-area .note-area label {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #1C263A;
  margin-bottom: 5px;
}
.checkout-area .note-area textarea {
  background: #F2F2F2;
  width: 100%;
  border: 0;
  padding: 15px;
  height: 256px;
}
.checkout-area .checkout-order-area {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #F6F6F6;
  padding: 40px;
}
@media (max-width: 575px) {
  .checkout-area .checkout-order-area {
    padding: 20px;
  }
}
.checkout-area .checkout-order-area h3 {
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.checkout-area .oreder-item .title {
  padding-bottom: 10px;
}
.checkout-area .oreder-item .title.bg-title {
  padding: 30px;
  background: #EBEBEB;
}
.checkout-area .oreder-item .title h2 {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}
.checkout-area .oreder-item .title.s1 {
  border-bottom: 1px solid rgba(93, 102, 111, 0.15);
  padding-bottom: 25px;
  padding-top: 25px;
  margin-bottom: 20px;
}
.checkout-area .oreder-item .title.s1 h2 {
  margin-bottom: 0;
}
.checkout-area .oreder-item .oreder-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #D9D9D9;
  padding: 20px 0;
}
.checkout-area .oreder-item .oreder-product .images img {
  width: 60px;
}
.checkout-area .oreder-item .oreder-product .product ul .first-cart {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  color: #233D50;
}
.checkout-area .oreder-item .oreder-product span {
  font-weight: 500;
  font-size: 16px;
  color: #233D50;
}
.checkout-area .payment-option {
  margin-top: 30px;
}
.checkout-area .payment-option h3 {
  margin-bottom: 20px;
  padding-bottom: 0px;
}
.checkout-area .payment-option .payment-select ul li {
  margin-right: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  font-weight: 500;
  color: #5B5B5B;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.checkout-area .payment-option .payment-select ul li input {
  background: transparent;
  border-radius: 100%;
  height: 16px;
  width: 16px;
  appearance: none;
  -webkit-appearance: none;
  border: 3px solid #FFF;
  box-shadow: 0 0 0 1px #707070;
  margin-right: 10px;
}
.checkout-area .payment-option .payment-select ul li input:checked {
  background: #707070;
}
.checkout-area .payment-option .payment-bottom {
  padding-top: 20px;
  border-top: 1px solid #D9D9D9;
  margin-top: 40px;
}
.checkout-area .payment-option .payment-btn {
  text-align: right;
  margin-top: 20px;
}

/*===============================
28. compare-section
================================*/
.compare-section .comapare-wrap {
  background: #F9F9F9;
}
.compare-section .table {
  border-color: inherit;
  border-width: 0;
  margin-bottom: 0;
}
.compare-section .table thead tr {
  border-bottom: 1px solid rgba(93, 102, 111, 0.15) !important;
}
.compare-section .table thead tr td {
  border-right: 0 !important;
}
.compare-section .table thead tr td span {
  color: #F00;
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  text-decoration-line: underline;
}
.compare-section .table tr {
  border-bottom: 1px solid rgba(93, 102, 111, 0.15);
}
.compare-section .table tr:last-child {
  border: 0;
}
.compare-section .table tr td {
  border: 0;
  padding: 30px;
  min-width: 200px;
  font-weight: 400;
  font-size: 18px;
  color: #6F6F6F;
  vertical-align: middle;
}
.compare-section .table tr td:first-child {
  min-width: 218px;
  border-right: 1px solid rgba(93, 102, 111, 0.15);
}
.compare-section .table tr td:nth-child(2) {
  border-right: 1px solid rgba(93, 102, 111, 0.15);
  max-width: 880px;
}
.compare-section .table tr td.text-title {
  font-weight: 400;
  color: #707070;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
}
.compare-section .table tr td p {
  text-align: left;
}
.compare-section .table tr td img {
  max-width: 150px;
}

/* ===============================
29. Blog Page
 =================================*/
/* blog-page */
.blog-grid-page .blog-section {
  background: #fff;
}
.blog-grid-page .blog-section .blog-items .blog-item {
  background: #F9F9F9;
}

/* blog-page-area */
.blog-page-area .blog-item {
  margin-bottom: 60px;
  padding: 50px;
  background: #F9F9F9;
}
.blog-page-area .blog-item:last-child {
  margin-bottom: 0;
}
.blog-page-area .blog-item .blog-content {
  padding-top: 30px;
}
.blog-page-area .blog-item .blog-content ul {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.blog-page-area .blog-item .blog-content ul li {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.blog-page-area .blog-item .blog-content ul li + li {
  margin-left: 20px;
}
.blog-page-area .blog-item .blog-content ul li i {
  color: #15a9e3;
}
.blog-page-area .blog-item .blog-content ul li strong {
  color: #1C263A;
  font-family: "Cormorant";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
.blog-page-area .blog-item .blog-content h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .blog-page-area .blog-item .blog-content h2 {
    font-size: 25px;
  }
}
.blog-page-area .blog-item .blog-content h2 a {
  color: #1C263A;
}
.blog-page-area .blog-item .blog-content h2 a:hover {
  color: #15a9e3;
}
.blog-page-area .blog-item .blog-content p {
  margin-bottom: 20px;
}

.blog-page-full .blog-img img {
  width: 100%;
}

/* blog-right-sidebar */
.blog-sidebar {
  /*** search-widget ***/
}
@media (max-width: 991px) {
  .blog-sidebar {
    margin-top: 50px;
  }
}
.blog-sidebar .widget {
  margin-top: 50px;
  padding: 40px;
  background: #F9F9F9;
}
@media (max-width: 1399px) {
  .blog-sidebar .widget {
    padding: 20px;
  }
}
@media (max-width: 1199px) {
  .blog-sidebar .widget {
    padding: 15px;
  }
}
@media (max-width: 1199px) {
  .blog-sidebar .widget {
    margin-top: 30px;
  }
}
.blog-sidebar .widget h3 {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  text-transform: capitalize;
  margin-bottom: 20px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(93, 102, 111, 0.15);
  position: relative;
}
.blog-sidebar .widget h3:before {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  width: 53px;
  height: 1px;
  background: #F3A952;
}
@media (max-width: 1199px) {
  .blog-sidebar .widget h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 575px) {
  .blog-sidebar .widget h3 {
    font-size: 22px;
    line-height: 27px;
  }
}
.blog-sidebar .search-widget {
  padding: 30px;
  background: #F9F9F9;
}
.blog-sidebar .search-widget form div {
  position: relative;
}
.blog-sidebar .search-widget input {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.15);
  height: 55px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  padding: 6px 50px 6px 20px;
  border-radius: 0;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.blog-sidebar .search-widget input:focus {
  background-color: #fff;
}
.blog-sidebar .search-widget form button {
  background: transparent;
  width: 55px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  font-size: calc-rem-value(20);
  color: #1C263A;
  border: 0;
  outline: 0;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
.blog-sidebar .search-widget form button i img {
  max-width: 20px;
}
.blog-sidebar .blog-right-info p {
  margin-bottom: 0;
}
.blog-sidebar .category-widget ul li + li {
  margin-top: 20px;
}
.blog-sidebar .category-widget ul li a {
  color: #1C263A;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  display: block;
  padding: 5px 0;
}
.blog-sidebar .category-widget ul li a:before {
  position: absolute;
  right: 0;
  top: 12px;
  content: "\e932";
  font-family: "icomoon";
  font-size: 10px;
}
.blog-sidebar .category-widget ul li a i {
  margin-right: 20px;
  color: #15a9e3;
}
.blog-sidebar .category-widget ul li a:hover {
  color: #15a9e3;
}
.blog-sidebar .tag-widget ul {
  display: flex;
  flex-wrap: wrap;
}
.blog-sidebar .tag-widget ul li {
  margin-right: 10px;
  margin-bottom: 10px;
}
.blog-sidebar .tag-widget ul li a {
  color: #1C263A;
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 10px 12px;
  position: relative;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
}
.blog-sidebar .tag-widget ul li a:hover {
  color: #15a9e3;
}
.blog-sidebar .best-selling-right-sidebar {
  position: relative;
  z-index: 1;
  background: #15a9e3;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .blog-sidebar .best-selling-right-sidebar {
    text-align: center;
  }
}
.blog-sidebar .best-selling-right-sidebar:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: url(../images/best-selling/banner-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.blog-sidebar .best-selling-right-sidebar .right-sidebar-text {
  padding: 40px;
  padding-top: 60px;
}
.blog-sidebar .best-selling-right-sidebar .right-sidebar-text .small-heading-title {
  margin-bottom: 20px;
}
.blog-sidebar .best-selling-right-sidebar .right-sidebar-text .small-heading-title span {
  border-radius: 0;
  font-size: 16px;
  clip-path: polygon(9% 0, 100% 0, 90% 100%, 0% 100%);
  padding: 5px 30px;
}
.blog-sidebar .best-selling-right-sidebar .right-sidebar-text .small-heading-title h3 {
  font-size: 35px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.blog-sidebar .best-selling-right-sidebar .left-sidebar-img {
  padding-right: 20px;
  padding-bottom: 20px;
  text-align: right;
}

/* =======================
30. Blog Single Page
 ========================*/
/* blog-single-page-area  */
.blog-single-page-area .blog-single-wrap {
  /*** comment-respond ***/
}
.blog-single-page-area .blog-single-wrap .blog-single-text ul {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
.blog-single-page-area .blog-single-wrap .blog-single-text ul li {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.blog-single-page-area .blog-single-wrap .blog-single-text ul li + li {
  margin-left: 20px;
}
.blog-single-page-area .blog-single-wrap .blog-single-text ul li i {
  color: #15a9e3;
}
.blog-single-page-area .blog-single-wrap .blog-single-text ul li strong {
  color: #1C263A;
  font-family: "Cormorant";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
.blog-single-page-area .blog-single-wrap .blog-single-text blockquote {
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: "Cormorant";
  text-align: center;
  padding: 100px 0;
  margin-bottom: 0;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .blog-single-page-area .blog-single-wrap .blog-single-text blockquote {
    font-size: 45px;
    padding: 70px 0;
  }
}
@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .blog-single-text blockquote {
    font-size: 30px;
    padding: 30px 0;
  }
}
.blog-single-page-area .blog-single-wrap .blog-single-text-wrap {
  margin-top: 30px;
  margin-bottom: 40px;
}
.blog-single-page-area .blog-single-wrap .blog-single-text-wrap h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 46px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .blog-single-text-wrap h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .blog-single-text-wrap h2 {
    font-size: 25px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}
.blog-single-page-area .blog-single-wrap .blog-single-text-wrap h4 {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.blog-single-page-area .blog-single-wrap .blog-single-text-wrap p {
  margin-bottom: 30px;
}
.blog-single-page-area .blog-single-wrap .blog-single-text-wrap ul li {
  padding-bottom: 15px;
  text-decoration: dotted;
  padding-left: 12px;
  position: relative;
}
.blog-single-page-area .blog-single-wrap .blog-single-text-wrap ul li:before {
  position: absolute;
  left: 0;
  top: 10px;
  content: "";
  width: 5px;
  height: 5px;
  background: #707070;
  border-radius: 50%;
}
.blog-single-page-area .blog-single-wrap blockquote {
  background: #F9F9F9;
  padding: 40px;
  padding-left: 50px;
  border-left: 10px solid #15a9e3;
  font-family: "Cormorant";
  font-size: 26px;
  font-style: italic;
  font-weight: 700;
  line-height: 34px;
  color: #707070;
  margin-bottom: 40px;
  margin-top: 40px;
}
@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap blockquote {
    padding: 15px;
    font-size: 18px;
    line-height: 27px;
  }
}
.blog-single-page-area .blog-single-wrap blockquote span {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 29px;
  font-family: "Rubik", sans-serif;
  color: #707070;
  margin-top: 15px;
}
.blog-single-page-area .blog-single-wrap .detail-img {
  margin-top: 40px;
  margin-bottom: 30px;
}
.blog-single-page-area .blog-single-wrap .tag-share-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.blog-single-page-area .blog-single-wrap .tag-share-wrap .tag-share-social ul {
  display: flex;
}
.blog-single-page-area .blog-single-wrap .tag-share-wrap .tag-share-social ul li + li {
  margin-left: 15px;
}
.blog-single-page-area .blog-single-wrap .tag-share-wrap .tag-share-social ul li + li a {
  color: #15a9e3;
}
.blog-single-page-area .blog-single-wrap .tag-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share {
    flex-wrap: wrap;
  }
}
.blog-single-page-area .blog-single-wrap .tag-share i {
  margin-right: 20px;
}
@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share i {
    margin-right: 10px;
  }
}
.blog-single-page-area .blog-single-wrap .tag-share ul {
  display: flex;
}
@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share ul {
    flex-wrap: wrap;
  }
}
.blog-single-page-area .blog-single-wrap .tag-share ul li + li {
  margin-left: 25px;
}
@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share ul li + li {
    margin-left: 5px;
  }
}
.blog-single-page-area .blog-single-wrap .tag-share ul li a {
  color: #1C263A;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  font-family: "Cormorant";
  position: relative;
}
@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share ul li a {
    font-size: 16px;
  }
}
.blog-single-page-area .blog-single-wrap .tag-share ul li a:hover {
  color: #15a9e3;
}
.blog-single-page-area .blog-single-wrap .author-box {
  padding: 30px;
  background: #FBFBFB;
  overflow: hidden;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .blog-single-page-area .blog-single-wrap .author-box {
    text-align: center;
    padding: 15px;
  }
}
.blog-single-page-area .blog-single-wrap .author-box .author-avatar {
  float: left;
  overflow: hidden;
  margin-right: 40px;
}
@media (max-width: 991px) {
  .blog-single-page-area .blog-single-wrap .author-box .author-avatar {
    float: none;
    margin-right: 0;
  }
}
.blog-single-page-area .blog-single-wrap .author-box .author-avatar img {
  width: 100%;
  max-width: 200px;
}
.blog-single-page-area .blog-single-wrap .author-box .author-content {
  padding-right: 30px;
  overflow: hidden;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .blog-single-page-area .blog-single-wrap .author-box .author-content {
    padding: 0;
  }
}
@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .author-box .author-content p {
    font-size: 15px;
  }
}
.blog-single-page-area .blog-single-wrap .author-box .author-content .author-name {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  font-family: "Rubik", sans-serif;
  color: #1C263A;
  display: block;
  margin-bottom: 10px;
}
.blog-single-page-area .blog-single-wrap .comment-respond {
  margin-top: 70px;
}
.blog-single-page-area .blog-single-wrap .comment-respond .comment-reply-title {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 991px) {
  .blog-single-page-area .blog-single-wrap .comment-respond .comment-reply-title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .comment-respond .comment-reply-title {
    font-size: 30px;
  }
}
.blog-single-page-area .blog-single-wrap .comment-respond p {
  margin-bottom: 50px;
}
.blog-single-page-area .blog-single-wrap .comment-respond form input,
.blog-single-page-area .blog-single-wrap .comment-respond form textarea {
  color: #A5A5A5;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: none;
  width: 100%;
  height: 50px;
  border: 0;
  padding: 6px 15px;
  margin-bottom: 24px;
  outline: 0;
  border-radius: 0px;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  background: #F2F2F2;
}
.blog-single-page-area .blog-single-wrap .comment-respond form input:focus,
.blog-single-page-area .blog-single-wrap .comment-respond form textarea:focus {
  box-shadow: none;
  border-color: #15a9e3;
}
@media (max-width: 991px) {
  .blog-single-page-area .blog-single-wrap .comment-respond form input,
  .blog-single-page-area .blog-single-wrap .comment-respond form textarea {
    height: 50px;
  }
}
.blog-single-page-area .blog-single-wrap .comment-respond form textarea {
  height: 202px;
  padding: 15px;
}
@media (max-width: 991px) {
  .blog-single-page-area .blog-single-wrap .comment-respond form textarea {
    height: 150px;
  }
}
.blog-single-page-area .blog-single-wrap .comment-respond .form-inputs,
.blog-single-page-area .blog-single-wrap .comment-respond .form-textarea {
  overflow: hidden;
}
.blog-single-page-area .blog-single-wrap .comment-respond .form-inputs label,
.blog-single-page-area .blog-single-wrap .comment-respond .form-textarea label {
  font-family: "Cormorant";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 10px;
}
.blog-single-page-area .blog-single-wrap .comment-respond .form-inputs > .form-field:nth-child(1) {
  width: 49%;
  float: left;
}
@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .comment-respond .form-inputs > .form-field:nth-child(1) {
    width: 100%;
    float: none;
  }
}
.blog-single-page-area .blog-single-wrap .comment-respond .form-inputs > .form-field:nth-child(2) {
  width: 49%;
  float: right;
}
@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .comment-respond .form-inputs > .form-field:nth-child(2) {
    width: 100%;
    float: none;
  }
}
.blog-single-page-area .blog-single-wrap .comment-respond .form-submit input {
  max-width: 180px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  margin-bottom: 0;
  border: 1px solid #15a9e3;
  outline: 0;
  background: #15a9e3;
  border-radius: 0;
  margin-top: 20px;
  color: #fff;
}
.blog-single-page-area .blog-single-wrap .comment-respond .form-submit input:hover {
  background-color: #053a9e;
  color: #fff;
}
.blog-single-page-area.full-width .blog-img img {
  width: 100%;
}
.blog-single-page-area.full-width .detail-img img {
  width: 100%;
}

/* ============================
31. Contact Page
 ==============================*/
/* contact-page */
.contact-page-section {
  /* map-section */
}
.contact-page-section .map iframe {
  width: 100%;
  height: 508px;
}
.contact-page-section .contact-info h2 {
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.contact-page-section .contact-info .contact-info-item {
  padding: 28px 30px;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 26px;
}
.contact-page-section .contact-info .contact-info-item:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 63px;
  height: 5px;
  content: "";
  background: #15a9e3;
}
.contact-page-section .contact-info .contact-info-item h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 20px;
  color: #15a9e3;
}
.contact-page-section .contact-info .contact-info-item p {
  max-width: 330px;
  padding-left: 35px;
  position: relative;
}
.contact-page-section .contact-info .contact-info-item p i {
  position: absolute;
  left: 0;
  top: 0;
}

.contact-page {
  background: #F9F9F9;
}
.contact-page .contact-area-wrapper {
  position: relative;
}
.contact-page .contact-area-wrapper .contact-form-area {
  position: relative;
  z-index: 9;
  margin: 0 auto;
  z-index: 1;
}
.contact-page .contact-area-wrapper .contact-form-area form {
  max-width: 636px;
}
.contact-page .contact-area-wrapper .contact-form-area h2 {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.contact-page .contact-area-wrapper .contact-form-area p {
  margin-bottom: 40px;
}
.contact-page .contact-area-wrapper .contact-form-area .form-control {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  border: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #A5A5A5;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.015);
}
.contact-page .contact-area-wrapper .contact-form-area .form-control:focus {
  outline: none;
  box-shadow: none;
}
.contact-page .contact-area-wrapper .contact-form-area .form-control::-webkit-input-placeholder {
  color: #707070;
}
.contact-page .contact-area-wrapper .contact-form-area .form-control:-ms-input-placeholder {
  color: #707070;
}
.contact-page .contact-area-wrapper .contact-form-area .form-control::placeholder {
  color: #707070;
}
.contact-page .contact-area-wrapper .contact-form-area textarea.form-control {
  height: 202px;
}
.contact-page .contact-area-wrapper .contact-form-area select.form-control {
  color: #707070;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: rgba(0, 0, 0, 0.015) url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}
.contact-page .contact-area-wrapper .contact-form-area select.form-control option {
  border: 0;
}
.contact-page .contact-area-wrapper .contact-form-area .submit-area {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .contact-page .contact-area-wrapper .contact-form-area .submit-area {
    text-align: center;
  }
}

/* =============================
32. 404 page
 ===============================*/
/* 404-section */
.opps-404-section {
  text-align: center;
}
.opps-404-section .opps-message {
  margin-top: 70px;
  padding: 0 200px;
}
@media (max-width: 991px) {
  .opps-404-section .opps-message {
    margin-top: 50px;
    padding: 0 100px;
  }
}
@media (max-width: 767px) {
  .opps-404-section .opps-message {
    padding: 0;
  }
}
.opps-404-section .opps-message h3 {
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
  text-transform: capitalize;
  margin: 0 0 0.4em;
}
@media (max-width: 1199px) {
  .opps-404-section .opps-message h3 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .opps-404-section .opps-message h3 {
    font-size: 30px;
    line-height: 55px;
  }
}
.opps-404-section .opps-message p {
  margin-bottom: 1.8em;
}

/* =============================
33. Auth-page
 ===============================*/
/* login-area */
.login-area .contact-form-wrap {
  max-width: 750px;
  margin: 0 auto;
}
.login-area .heading-title h2 {
  justify-content: flex-start;
}
.login-area .contact-form {
  padding: 40px;
  border: 1px solid #E9ECEF;
}
@media (max-width: 575px) {
  .login-area .contact-form {
    padding: 20px;
  }
}
.login-area .contact-form label {
  font-family: "Cormorant";
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  text-transform: capitalize;
  color: #1C263A;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .login-area .contact-form label {
    font-size: 20px;
    line-height: 28px;
  }
}
.login-area .contact-form .form-field input {
  width: 100%;
  margin-bottom: 25px;
  padding-left: 10px;
  height: 65px;
  border-radius: 5px;
  border: none;
  background: #F2F2F2;
}
@media (max-width: 575px) {
  .login-area .contact-form .form-field input {
    height: 50px;
  }
}
.login-area .contact-form .form-field input:focus {
  outline: none;
  box-shadow: none;
}
.login-area .contact-form .input-box {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.login-area .contact-form .input-box input {
  width: 20px;
  margin-bottom: 0;
}
.login-area .contact-form .input-box label {
  color: #676B79;
  font-weight: 500;
  font-size: 16px;
  padding-left: 10px !important;
  margin-bottom: 0;
  font-family: "Rubik", sans-serif;
}
.login-area .contact-form .forgot {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #15a9e3;
}/*# sourceMappingURL=style.css.map */