/*=====================================================
Template Name   : Mocart
Description     : Multipurpose eCommerce HTML5 Template
Author          : LunarTemp
Version         : 1.0
=======================================================*/


/*=====================================================
Table of contents
=======================================================
1. Google fonts
2. Theme variables
3. General css
4. Preloader
5. Theme default css
6. Margin & padding
7. Site title css
8. Theme button
9. Scroll top css
10. Header top css
11. Navbar css
12. Mega menu
13. Multi level dropdown menu
14. Search popup
15. Hero css 
16. Small banner css 
17. Mid banner css 
18. Big banner css 
19. Popup banner css 
20. Category css 
21. Shop css 
22. Shop cart css 
23. Shop checkout css
24. Shop checkout complete css 
25. Shop single css 
26. Compare css 
27. Price range css 
28. Product css 
29. Product list css
30. Modal quick view css 
31. Bs custom css 
32. Countdown css
33. Deal css 
34. Feature css 
35. About css 
36. Counter css 
37. Team css 
38. Play btn
39. Video css 
40. Testimonial css 
41. Brand css 
42. Help css 
43. Invoices css 
44. Faq css 
45. Auth css 
46. User css 
47. Coming soon css 
48. Error css 
49. Terms/privacy css 
50. Mail success css 
51. Blog css 
52. Blog single css
53. Widget sidebar css
54. Pagination css 
55. Breadcrumb css 
56. Contact us css 
57. Gallery css 
58. Affiliate css 
59. Cta css 
60. Process css 
61. Instagram css 
62. Choose css 
63. Newsletter css 
64. Footer css 
65. Home 2 css 
=======================================================*/



/*====================
1. Google fonts
======================*/


@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');




/*====================
2. Theme variables
======================*/

:root {
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Inter', sans-serif;
  --theme-color: #c7d300;
  --theme-color2: #053262;
  --theme-color-light: rgba(0, 191, 255, .08);
  --theme-bg-light: #F5F7FA;
  --body-text-color: #757F95;
  --color-white: #ffffff;
  --color-dark: #053262;
  --color-green: #11B76B;
  --color-blue: #0049D0;
  --color-skyblue: #00BFFF;
  --color-yellow: #FBA707;
  --color-gray: #ECECEC;
  --color-red: #FD6A6A;
  --hero-overlay-color: #01060F;
  --slider-arrow-bg: rgba(255, 255, 255, 0.2);
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.12);
  --border-white-color2: rgba(255, 255, 255, 0.07);
  --footer-bg: #053262;
  --footer-text-color: #F5FAFF;
}



/*====================
3. General css
======================*/

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: var(--body-text-color);
  line-height: 1.8;
}

a {
  color:  var(--color-dark);
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

a:hover {
    color: var(--theme-color);
}

ul {
  margin: 0;
  padding: 0;
}

li {
    list-style: none;
    font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color:  var(--color-dark);
  margin: 0px;
  font-weight: 600;
  font-family: var(--heading-font);
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
    margin: 0px;
    font-family: "Roboto", sans-serif;
}

.img,
img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: var(--color-white);
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}



/*====================
4. Preloader
======================*/

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.loader-ripple div {
  position: absolute;
  border: 4px solid var(--theme-color);
  opacity: 1;
  border-radius: 50%;
  animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes loader-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}




/*===================
5. Theme default css
======================*/

.ovrflow-hidden {
  overflow: hidden;
}

.position-relative {
  position: relative;
  z-index: 1;
}

.text-right {
  text-align: right;
}

.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-pd {
  padding: 0 7rem;
}

.s-pd {
  padding: 0 12rem;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.bg {
  background: var(--theme-color-light);
}

.bg-2 {
  background: var(--theme-bg-light);
}



/*====================
6. Margin & padding
======================*/

.py-120 {
  padding: 120px 0;
}

.py-110 {
  padding: 110px 0;
}

.py-100 {
  padding: 100px 0;
}

.py-90 {
  padding: 90px 0;
}

.py-80 {
  padding: 80px 0;
}

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-120 {
  padding-bottom: 120px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-120 {
  margin-top: 120px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.my-120 {
  margin: 120px 0;
}

.my-110 {
  margin: 110px 0;
}

.my-100 {
  margin: 100px 0;
}

.my-90 {
  margin: 90px 0;
}

.my-80 {
  margin: 80px 0;
}




/*====================
7. Site title css
======================*/

.site-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--theme-color);
  position: relative;
  margin-bottom: 5px;
  display: inline-block;
}

.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 34px;
  color:  var(--color-dark);
  margin-top: 4px;
}

.site-title span{
  color: var(--theme-color);
}

.site-heading p {
  margin-top: 15px;
}

.site-heading-inline{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.site-heading-inline .site-title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  position: relative;
}
.site-heading-inline .site-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    background: var(--theme-color-light);
    border-radius: 0 50px 50px 0;
    width: 80%;
    height: 100%;
    z-index: 0;
}

.site-heading-inline .site-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 20%;
    border-bottom: 3px solid var(--theme-color);
    z-index: 0;
}

.site-heading-inline .site-title img{
  width: 32px;
}

.site-heading-inline a {
    font-weight: 500;
    color: var(--theme-color);
    font-family: "Roboto", sans-serif;
}

.site-heading-inline a:hover{
  color: var(--color-red);
}


@media all and (max-width: 767px) {
  .site-heading-inline .site-title {
    font-size: 19px;
  }

  .site-heading-inline .site-title img{
    width: 25px;
  }
}




/*====================
8. Theme button
======================*/

.theme-btn {
    position: relative;
    font-size: 16px;
    background: var(--theme-color);
    color: var(--color-white);
    padding: 10px 20px;
    display: inline-block;
    vertical-align: middle;
    text-transform: capitalize;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    z-index: 1;
    font-family: "Roboto", sans-serif;
}

.theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background: var(--color-red);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn:hover {
  color: var(--color-white);
}

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
  margin-left: 5px;
}

.theme-btn span {
  margin-right: 5px;
}

.theme-btn2{
  background: var(--color-red);
  color: var(--color-white);
}

.theme-btn2::before {
  background: var(--theme-color);
}

.theme-btn2:hover{
  color: var(--color-white);
}



/*====================
9. Scroll top css
======================*/

#scroll-top {
  position: fixed;
  bottom: -20px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  border-radius: 50px;
  color: var(--color-white);
  background-color: var(--theme-color);
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: var(--box-shadow2);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

#scroll-top.active{
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}


@media all and (min-width: 768px) and (max-width: 1199px) {
  #scroll-top.active {
    bottom: 100px;
  }
}



/*====================
10. Header top css
======================*/

.header-top {
    position: relative;
    padding: 6px 0 26px 0;
    background: transparent;
    border-bottom: 1px solid var(--border-info-color);
    border-top: 0px solid var(--theme-color);
}

.header-top-left > p{
  color: var(--color-white);
}

.header-top-list li {
  display: inline-block;
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 500;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0px 13px 0px 6px;
}

.header-top-list li:last-child{
  border-right: none;
  padding-right: 0;
}

.header-top-list li:first-child{
  padding-left: 0;
}

.header-top-list li a {
    color: var(--color-dark);
    font-family: "Roboto", sans-serif;
}

.header-top-list li a:hover{
  color: var(--theme-color);
}

.header-top-list li i{
  color: var(--theme-color);
  margin-right: 5px;
}

.header-top-right {
  float: right;
}

.header-top-right .dropdown-menu{
  border: none;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  padding: 10px;
  min-width: 80px;
}

.header-top-right .dropdown-item{
  color: var(--color-dark);
  border-radius: 10px;
  text-align: center;
}

.header-top-right .dropdown-item:hover{
  background: var(--theme-color);
  color: var(--color-white);
}

.header-top-social a{
  margin-left: 10px;
}

.header-top-social span {
    color: var(--theme-color);
    font-family: "Roboto", sans-serif;
}

.header-top-list li .header-top-social a i{
  margin-right: 0;
  transition: var(--transition);
}

.header-top-social a:hover i{
  color: var(--theme-color2);
}

@media all and (max-width: 991px) {
  .header-top-list li{
    border-right: none;
  }

  .header-top-left .header-top-list li.help{
    display: none;
  }

  .header-top-right .header-top-list li{
    padding-right: 0px;
  }
  
  .header-top .dropdown-toggle::after{
    float: unset;
  }

  .header-top-social span{
    display: none;
  }
}

@media all and (max-width: 767px) {
  .header-top{
    text-align: center;
  }

  .header-top-right{
    float: unset;
  }

  .header-top-social{
    display: none;
  }
}

/* light */
.header-top.light .header-top-list li a{
  color: var(--color-white);
}

.header-top.light .header-top-list li i{
  color: var(--color-white);
}

.header-top.light .header-top-social span{
  color: var(--color-white);
}

.header-top.light .header-top-right .dropdown-item{
  color: var(--color-dark);
}

.header-top.light .header-top-right .dropdown-item:hover{
  color: var(--color-white);
}




/*====================
11. Header middle css
======================*/

.header-middle {
  position: relative;
  background: var(--color-white);
  padding: 22px 0 22px 0;
  z-index: 3;
}

.header-middle-search .search-content{
  display: flex;
  background: var(--color-white);
  border: 2px solid var(--theme-color);
  padding: 4px 4px;
  border-radius: 50px;
  transition: var(--transition);
}

.header-middle-search .search-content:hover{
  border-color: var(--theme-color);
}

.header-middle-search .form-control{
  border-radius: 0px;
  box-shadow: none;
  border: none;
  padding-right: 2px;
}

.header-middle-search .form-control::placeholder{
  color: var(--body-text-color);
}

.header-middle-search .search-btn{
  padding: 5.5px 15px 4.5px 15px;
  border: none;
  background: none;
  color: var(--body-text-color);
  font-size: 18px;
  transition: var(--transition);
}

.header-middle-search .search-btn:hover{
  color: var(--theme-color);
}

.header-middle-search .nice-select{
  border-radius: 50px 0 0 50px;
  border: none;
  font-size: 16px;
  padding-left: 15px;
  line-height: 42px;
  border-right: 1px solid var(--border-info-color);
}

.header-middle-search .nice-select::after{
  width: 8px;
  height: 8px;
  margin-top: -6px;
}

.header-middle-search .nice-select .list{
  border: none;
  border-radius: 8px;
  padding: 10px;
  box-shadow: var(--box-shadow);
}

.header-middle-search .nice-select .option{
  border-radius: 8px;
}

.header-middle-search .nice-select .option:hover{
  background: var(--theme-color);
  color: var(--color-white);
}

.header-middle-search .nice-select .option.focus,
.header-middle-search .nice-select .option.selected.focus{
  background: var(--theme-color-light);
  color: var(--theme-color);
}

.header-middle-right {
  float: right;
}

.header-middle-list li{
  display: inline-block;
}

.header-middle-list .list-item{
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  margin-left: 12px;
  transition: var(--transition);
}

.header-middle-list li:first-child .list-item{
  margin-left: 0px;
}

.header-middle-list .list-item-icon{
  position: relative;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: var(--theme-color-light);
  color: var(--theme-color);
  font-size: 20px;
  text-align: center;
  border-radius: 50px;
  position: relative;
  transition: var(--transition);
}

.header-middle-list .list-item-icon span{
  position: absolute;
  width: 18px;
  height: 18px;
  line-height: 18px;
  color: var(--color-white);
  background: var(--theme-color);
  border-radius: 50px;
  font-size: 12px;
  right: -5px;
  top: -5px;
}

.header-middle-list .list-item-info h6{
  font-weight: 400;
  font-size: 14px;
}

.header-middle-list .list-item-info h5{
  font-weight: 500;
  font-size: 14px;
  margin-top: 3px;
}

.header-middle-list .shop-cart{
  position: relative;
}


/* dropdown cart */
.dropdown-cart{
  position: relative;
}

.dropdown-cart-menu{
  position: absolute;
  right: 0;
  top: 60px;
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--box-shadow);
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.dropdown-cart:hover .dropdown-cart-menu{
  opacity: 1;
  visibility: visible;
  top: 48px;
}

.dropdown-cart-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-info-color);
}

.dropdown-cart-header span,
.dropdown-cart-header a{
  font-size: 13px;
  font-weight: 600;
  color: var(--color-dark);
  text-transform: uppercase;
}

.dropdown-cart-header a:hover{
  color: var(--theme-color);
}

.dropdown-cart-list li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--border-info-color);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.dropdown-cart-list li:last-child{
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.dropdown-cart-item{
  display: flex;
  align-items: center;
  gap: 15px;
}

.dropdown-cart-item .cart-img{
  width: 70px;
  height: 70px;
  border-radius: 10px;
  padding: 8px;
  border: 1px solid var(--border-info-color);
}

.dropdown-cart-item:hover .cart-img img{
	transform:scale(1.09);
}

.dropdown-cart-item .cart-info{
  flex: 1;
}

.dropdown-cart-item .cart-info h4{
  font-size: 14px;
  margin-bottom: 5px;
}

.dropdown-cart-item .cart-info h4 a:hover{
  color: var(--theme-color);
}

.dropdown-cart-item .cart-remove{
  color: var(--color-red);
  font-size: 18px;
  transition: var(--transition);
}

.dropdown-cart-item .cart-remove:hover{
  color: var(--theme-color);
}

.dropdown-cart-bottom{
  padding-top: 10px;
  margin-top: 15px;
  border-top: 1px solid var(--border-info-color);
}

.dropdown-cart-total{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-cart-total span {
  text-transform: uppercase;
  color: var(--color-dark);
  font-size: 13px;
  font-weight: 600;
}

.dropdown-cart-total .total-amount{
  font-size: 14px;
}

.dropdown-cart-bottom .theme-btn{
  display: block;
  padding: 8px 20px;
  margin-top: 25px;
}


@media all and (min-width: 1199px) and (max-width: 1399px){
  .header-middle-list .list-item{
    gap: 8px;
  }

  .header-middle-list li:first-child .list-item{
    margin-left: 0;
  }

  .header-middle-list .list-item-icon{
    width: 42px;
    height: 42px;
    line-height: 42px;
  }
}

@media all and (max-width: 1199px){
  .header-middle-list .list-item-info{
    display: none;
  }
}

@media all and (max-width: 991px) {
  .header-middle{
    display: none;
  }
}



/*====================
11. Navbar css
======================*/

.navbar {
  /* background: var(--theme-color2); */
  padding-top: 0px;
  padding-bottom: 0px;
  z-index: 2;
}

.navbar.fixed-top {
  background: var(--color-white);
  box-shadow: var(--box-shadow2);
  animation: slide-down 0.7s;
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.navbar .navbar-brand .logo-display {
  display: block;
}

.navbar .navbar-brand .logo-scrolled {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}

.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-mobile-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
  width: 180px;
}

.navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 600;
  border: none;
  font-size: 14px;
}

@media all and (min-width: 992px) {

  .navbar.navbar-expand-lg .offcanvas .offcanvas-body{
    gap: 80px;
  }

  .navbar.fixed-top.navbar-expand-lg .offcanvas .offcanvas-body{
    gap: 40px;
  }

    .navbar .nav-item .nav-link {
        padding: 10px 0 10px 0;
        font-size: 16px;
        font-weight: 500;
        color: #fff;
        text-transform: capitalize;
    }

  .navbar .nav-item:last-child .nav-link {
    margin-right: 0 !important;
  }

  .navbar.fixed-top .nav-item .nav-link {
    color: var(--color-dark);
    padding: 22px 0 22px 0;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    border: none;
    left: -15px;
    border-radius: 15px;
    padding: 15px 12px;
    background: var(--color-white);
    width: 220px;
    box-shadow: var(--box-shadow);
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 16px;
    font-weight: 400;
    color:  var(--color-dark);
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    transition: var(--transition);
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: var(--theme-color);
    padding-left: 22px;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "\f111";
    position: absolute;
    font-family: "Font Awesome 6 pro";
    left: 8px;
    top: 14px;
    color: var(--theme-color);
    font-weight: bold;
    font-size: 6px;
    transform: scale(0, 0);
    transition: var(--transition);
    z-index: -1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    opacity: 1;
    visibility: visible;
    transform: scale(1, 1);
  }

  .navbar .nav-item .nav-link {
    position: relative;
  }

  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: var(--theme-color);
  }

  .navbar.fixed-top .nav-item .nav-link.active,
  .navbar.fixed-top .nav-item:hover .nav-link {
    color: var(--theme-color);
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }

  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }

  /* nav right */
  .nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .nav-right-link {
    position: relative;
    font-size: 16px;
    color: var(--color-dark);
    font-weight: 500;
  }

  .nav-right-link:hover {
    transition: var(--transition);
    color: var(--theme-color);
  }

  .navbar.fixed-top .nav-right-link{
    color: var(--color-dark);
  }

  .navbar.fixed-top .nav-right-link:hover{
    color: var(--theme-color);
  }

  /* nav-right icon */
  .nav-right.icon .nav-right-link{
    color: var(--color-dark);
    font-size: 18px;
    padding: 4px;
  }

  .nav-right.icon .nav-right-link:hover{
    color: var(--theme-color);
  }

  .nav-right.icon .nav-right-link span{
    position: absolute;
    width: 18px;
    height: 18px;
    line-height: 18px;
    color: var(--color-white);
    background: var(--theme-color);
    text-align: center;
    border-radius: 50px;
    font-size: 12px;
    right: -5px;
    top: -5px;
  }
}

@media all and (min-width: 1199px) and (max-width: 1399px){
    .navbar .nav-item .nav-link {
        margin-right: 0px !important;
        font-size: 14px;
    }

  .navbar.fixed-top .navbar-brand img{
    width: 130px;
  }

  .nav-right {
    margin-left: 15px !important;
  }

  .navbar.fixed-top .nav-right{
    gap: 12px;
  }
}

@media all and (max-width: 1199px) {
  .navbar .nav-right {
    display: none;
  }
}

@media all and (min-width: 992px) and (max-width: 1199px){
  .navbar .nav-item .nav-link {
    margin-right: 15px;
    font-size: 16px;
  }
}


/* mobile menu */
.mobile-menu-right {
  display: none;
}

@media all and (max-width: 991px) {
  .navbar {
    padding-top: 8px;
    padding-bottom: 8px;
    background: var(--color-white);
  }

  .navbar-brand img {
    width: 130px;
  }

  .navbar .offcanvas{
    width: 300px;
  }

  .navbar .offcanvas-header .btn-close{
    box-shadow: none;
  }

  .navbar .offcanvas-brand{
    width: 150px;
  }

  .navbar .dropdown-toggle::after {
    float: right;
    margin-top: 2px;
  }

  .navbar .dropdown-item{
    color: var(--color-dark);
  }

  .navbar .nav-item .nav-link {
    color:  var(--color-dark);
    font-weight: 500;
    margin-right: 0px;
    transition: var(--transition);
  }

  .navbar .nav-item .nav-link:hover {
    color: var(--theme-color) !important;
  }

  .navbar-toggler {
    padding: 0;
    border: none;
  }

  .navbar-toggler span{
    display: block;
    width: 22px;
    border-bottom: 3px solid var(--theme-color);
    border-radius: 50px;
    margin-top: 5px;
  }

  .navbar-toggler span:first-child{
    margin-top: 0;
  }

  .navbar-toggler span:nth-child(2){
    width: 15px;
  }

  .mobile-menu-right,
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .mobile-menu-right .nav-right-link {
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--theme-color);
    text-align: center;
    padding: 0;
    position: relative;
  }

  .mobile-menu-right .nav-right-link span{
    position: absolute;
    width: 18px;
    height: 18px;
    line-height: 18px;
    color: var(--color-white);
    background: var(--theme-color);
    border-radius: 50px;
    font-size: 12px;
    right: -10px;
    top: -5px;
  }

  .navbar .dropdown-menu {
    border-radius: 15px;
    border: 1px solid var(--border-info-color);
  }

  .nav-right {
    display: none;
  }

  .navbar .navbar-brand .logo-scrolled{
    display: block;
  }
}

/* light */
@media all and (min-width: 992px) {
  .navbar.light .nav-item .nav-link {
    color: var(--color-white);
  }

  .navbar.light .nav-item .nav-link:hover,
  .navbar.light .nav-item .nav-link.active{
    color: var(--theme-color);
  }

  .navbar.light .nav-right-link{
    color: var(--color-white);
  }

  .navbar.light .nav-right-link:hover{
    color: var(--theme-color);
  }

  .navbar.light.fixed-top .nav-item .nav-link{
    color: var(--color-dark);
  }

  .navbar.light.fixed-top .nav-item .nav-link:hover,
  .navbar.light.fixed-top .nav-item .nav-link.active{
    color: var(--theme-color);
  }

  .navbar.light.fixed-top .nav-right-link{
    color: var(--color-dark);
  }

  .navbar.light.fixed-top .nav-right-link:hover{
    color: var(--theme-color);
  }
}




/*====================
13. Category all css
======================*/

.category-all{
  position: relative;
}

.category-btn{
  border: none;
  background: var(--theme-color);
  color: var(--color-white);
  padding: 15px 20px;
  border-radius: 0px;
  font-weight: 500;
}

.category-btn i{
  font-size: 17px;
  color: var(--color-white);
}

.category-btn span{
  margin-left: 7px;
}

.navbar.fixed-top .category-btn{
  padding: 6px 14px;
  border-radius: 7px;
}

.navbar.fixed-top .category-btn span{
  display: none;
  margin-left: 0px;
}

.navbar.fixed-top .category-all{
  margin-left: 50px;
}

.navbar.fixed-top .main-category{
  left: auto;
  right: 0;
}

.navbar.fixed-top .main-category{
  display: none;
}

/* main category */
.main-category{
  position: absolute;
  left: 0;
  top: 55px;
  min-width: 250px;
  border-radius: 10px;
  padding: 8px 8px;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  display: none;
  z-index: 2;
}

.main-category li{
  display: block;
  position: relative;
}

.main-category li a {
  display: flex;
  align-items: center;
  gap: 10px;
	color: var(--color-dark);
	padding: 8px 16px 8px 10px;
  border-radius: 10px;
  font-weight: 400;
}

.main-category li a:hover{
  color: var(--theme-color);
}

.main-category li a i{
  font-size: 16px;
}

.main-category li a .category-icon{
	font-size: 25px;
  line-height: 0;
  color: var(--color-dark);
}

.main-category li a img{
  width: 25px;
}

.main-category li a span{
  flex-grow: 1;
  font-size: 16px;
}

.sub-category-mega{
	width: 800px;
	display: inline-block;
	height: auto;
	position: absolute;
	left: 246px;
	top: 0;
	background: var(--color-white);
  border-radius: 10px;
	padding: 30px;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	box-shadow: var(--box-shadow);
  z-index: 1;
}

.main-category li:hover .sub-category-mega{
	opacity:1;
	visibility:visible;
}

.sub-category-mega .category-title{
  display: inline-block;
  margin-bottom: 20px;
	background: var(--theme-color);
	color: var(--color-white);
	padding: 4px 13px !important;
	border-radius: 8px;
	font-size: 14px;
  border-left: none;
}

.sub-category-mega .category-title:hover{
  color: var(--color-dark);
}

.sub-category-mega .category-img img{
  border-radius: 10px;
  width: 100%;
}

.sub-category-mega .category-img a{
  padding: 0 !important;
  border-left: none !important;
  background: none !important;
}

.sub-category-mega [class*="col-"]{
	margin-top: 18px;
}

.sub-category-mega [class*="col-"]:nth-child(-n+4){
	margin-top: 0;
}

.sub-category-mega .category-link a{
	padding: 5px 0 5px 0 !important;
  border-left: none !important;
}

.sub-category-mega .category-link a:hover{
  background: none;
  color: var(--theme-color);
}

.sub-category-mega .category-link a:last-child{
	padding-bottom: 0 !important;
}

.sub-category-mega .category-title-text{
  margin-bottom: 20px;
  position: relative;
}

.sub-category-mega .category-title-text::before{
  content: "";
  position: absolute;
  width: 15px;
  border-bottom: 3px solid var(--theme-color);
  border-radius: 50px;
  left: 0;
  bottom: -8px;
}


@media all and (min-width: 1199px) and (max-width: 1399px){
  .main-category {
    min-width: 260px;
  }

  .main-category li a{
    gap: 8px;
  }

  .main-category li a img{
    width: 20px;
  }

  .sub-category,
  .sub-category-mega{
    left: 257px;
  }
}


@media all and (max-width: 1199px){
  .main-category{
    display: none;
  }

  .sub-category-mega {
    width: 690px;
  }
}


@media all and (min-width: 992px) and (max-width: 1199px){
  .navbar.fixed-top .category-all{
    margin: 0 30px;
  }

  .navbar.fixed-top .category-btn{
    padding: 5px 14px;
  }

  .navbar.fixed-top .main-category {
    min-width: 260px;
    top: 56px;
  }

  .navbar.fixed-top .sub-category-mega{
    left: 260px;
  }
}


@media all and (max-width: 991px){
  .category-all{
    display: none;
  }
}



/*============================
12. Mega menu
==============================*/

@media all and (min-width: 992px){
  .nav-item.mega-menu {
    position: static;
  }
  
  .navbar .nav-item.mega-menu .dropdown-menu{
    width: 98.2%;
    left: 12px;
  } 

  .mega-menu .mega-content{
    padding: 12px 16px 10px 16px;
  }

  .mega-menu .mega-menu-title{
    font-size: 17px;
    margin-bottom: 15px;
    color: var(--color-dark);
  }

  .mega-menu-img img{
    border-radius: 15px;
  }

  .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item{
    padding-left: 0;
  }

  .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item::before{
    left: 0;
  }

  .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item:hover{
    padding-left: 15px;
  }
}


@media all and (max-width: 991px){
  .mega-menu-img{
    display: none;
  }

  .mega-menu .mega-content h5{
    margin: 15px 0;
  }
}



/*============================
13. Multi level dropdown menu
==============================*/

.navbar .nav-item .dropdown-submenu {
  position: relative;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
  display: none;
}

.navbar .nav-item .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 15px;
  top: 6.5px;
  font-weight: 600;
}

.navbar .nav-item .dropdown-submenu a:hover {
  background: transparent;
  color: var(--color-white);
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
  top: 120%;
  left: 100%;
  opacity: 0;
  visibility: hidden;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
  top: 0;
  opacity: 1;
  visibility: visible;
}

/* navbar dropdown-right */
.navbar .dropdown-right .dropdown-submenu .dropdown-menu{
  left: unset;
  right: 100%;
}

@media all and (max-width: 991px) {
  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    margin: 0 17px;
  }

  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    opacity: unset;
    visibility: unset;
  }

  .navbar .nav-item .dropdown-submenu a::after {
    top: 4px;
  }

  .navbar .nav-item .dropdown-submenu a:hover {
    color: var(--theme-color);
  }
}



/* ======================
14. Search popup
====================== */

.search-popup {
  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, .95);
  transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.sidenav-bar-visible .search-popup {
  width: 80%;
}

.search-active .search-popup {
  transform: translateY(0%);
  margin-top: 0;
}

.search-popup .close-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 75%;
  border: none;
  margin: 0 auto;
  margin-top: -200px;
  border-radius: 50px;
  text-align: center;
  background: var(--theme-color);
  text-align: center;
  width: 50px;
  height: 50px;
  color: var(--color-white);
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--box-shadow);
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}

.search-popup .close-search span{
  transition: var(--transition);
}

.search-popup .close-search:hover span{
  transform: rotate(180deg);
}

.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  top: 50%;
  transition-delay: 1500ms;
}

.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: all 300ms ease;
}

.search-active .search-popup form {
  transform: scaleX(1);
  transition-delay: 1200ms;
}

.search-popup .form-group {
  position: relative;
  margin: 0px;
  overflow: hidden;
}

.search-popup .form-control {
  position: relative;
  width: 100%;
  height: 70px;
  outline: none;
  border-radius: 0px;
  border: none;
  border-bottom: 2px solid var(--color-white);
  background-color: transparent;
  color: var(--color-white);
  font-size: 40px;
  padding: 0 70px 0 20px;
  transition: all 500ms ease;
  text-transform: capitalize;
}

.search-popup .form-control::placeholder{
  color: var(--color-white);
  font-size: 40px;
}


.search-popup .form-group button {
  position: absolute;
  right: 5px;
  top: 5px;
  border-radius: 50px;
  background: transparent;
  text-align: center;
  font-size: 30px;
  color: var(--color-white);
  height: 50px;
  width: 50px;
  border: none;
  cursor: pointer;
  transition: all 500ms ease;
}

.search-popup .form-group button:hover{
  color: var(--theme-color);
}



/*====================
15. Hero css 
======================*/

.hero-section {
  overflow: hidden;
}

.hero-slider-wrap{
  background: var(--theme-bg-light);
  border-radius: 10px;
}

.hero-single {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-single .hero-content {
  position: relative;
}

.hero-single .hero-content .hero-sub-title {
  display: inline-block;
  color: var(--theme-color2);
  font-size: 22px;
  letter-spacing: 4px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
}

.hero-single .hero-content .hero-title {
  color: var(--color-white);
  font-size: 45px;
  font-weight: 700;
  margin: 30px 0 25px 0;
  text-transform: capitalize;
}

.hero-single .hero-content .hero-title span{
  color: var(--theme-color2);
}

.hero-single .hero-content p {
  color: var(--color-white);
  line-height: 30px;
  font-weight: 400;
  font-size: 17px;
  margin-bottom: 40px;
}

.hero-btn{
  display: flex;
  align-items: center;
  gap: 10px;
} 


/* hero slider */
.hero-slider{
  position: relative;
}

.hero-slider .owl-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-slider .owl-dots .owl-dot {
  background: var(--color-white);
  margin: 5px;
  border-radius: 50px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: var(--transition);
}

.hero-slider .owl-dots .owl-dot.active{
  background-color: var(--color-white);
  width: 20px;
}

.hero-slider .owl-nav{
  position: absolute;
  font-size: 25px;
  right: 20px;
  bottom: 16px;
}

.hero-slider .owl-nav button{
  width: 44px;
  height: 44px;
  line-height: 44px;
  background: var(--color-white)!important;
  color: var(--theme-color);
  text-align: center;
  border-radius: 50px;
  transition: var(--transition);
}

.hero-slider .owl-nav button:hover{
  background: var(--theme-color) !important;
  color: var(--color-white);
}

.hero-slider .owl-nav .owl-prev{
  margin-right: 12px;
}

/* hs-1 */
.hs-1 .hero-slider{
  border-radius: 20px;
  background: rgba(56, 182, 255, .15);
  position: relative;
}

.hs-1 .hero-slider::before{
  content: "";
  position: absolute;
  right: 80px;
  top: -20px;
  width: 400px;
  height: 400px;
  background: var(--theme-color);
  border-radius: 0 50% 50% 50%;
  transform: rotate(20deg);
}

.hs-1 .hero-slider::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/shape/01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  opacity: .4;
  z-index: -1;
}

.hs-1 .hero-single{
  padding: 50px 50px;
}

.hs-1 .hero-single .hero-content .hero-sub-title {
  color: var(--color-white);
  font-size: 16px;
  background: var(--theme-color);
  padding: 6px 20px 6px 25px;
  border-radius: 50px 0 50px 0;
}

.hs-1 .hero-single .hero-content .hero-title {
  color: var(--color-dark);
}

.hs-1 .hero-single .hero-content .hero-title span{
  color: var(--theme-color);
}

.hs-1 .hero-single .hero-content p {
  color: var(--color-dark);
}

.hs-1 .hero-single .hero-img{
  position: relative;
}

.hs-1 .hero-single .hero-img img{
  width: 70%;
  margin: auto;
}

.hs-1 .hero-single .hero-img .hero-img-price{
  position: absolute;
  left: 10px;
  top: 10px;
  width: 90px;
  height: 90px;
  color: var(--color-white);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 1;
}

.hs-1 .hero-single .hero-img .hero-img-price::before{
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50px;
  border: 2px dotted var(--color-white);
}

.hs-1 .hero-single .hero-img .hero-img-price::after{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--theme-color);
  border-radius: 50px 50px 50px 0;
  box-shadow: var(--box-shadow);
  transform: rotate(-95deg);
  z-index: -1;
}

.hs-1 .hero-single .hero-img .hero-img-price span{
  line-height: 1;
}

.hs-1 .hero-slider .owl-dots .owl-dot {
  background: var(--theme-color2);
}

@media all and (max-width: 1199px) {
  .hs-1 .hero-slider::before {
    width: 340px;
    height: 340px;
  }

  .hs-1 .hero-single{
    padding: 30px 30px;
  }
}

@media all and (max-width: 991px) {
  .hs-1 .hero-slider::before {
    width: 550px;
    height: 550px;
    top: unset;
    bottom: 0;
    transform: rotate(-180deg);
  }

  .hs-1 .hero-single{
    padding: 50px;
  }

  .hs-1 .hero-single .hero-img{
    margin-top: 50px;
  }

  .hs-1 .hero-single .hero-img img{
    width: 100%;
  }
}

@media all and (max-width: 767px) {
  .hs-1 .hero-slider::before {
    right: 10px;
    bottom: 0px;
    width: 300px;
    height: 300px;
  }

  .hs-1 .hero-single{
    padding: 40px 20px 60px 20px;
  }
}

/* hs-2 */
.hs-2 .hero-single{
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
  z-index: 1;
}

.hs-2 .hero-single .hero-content .hero-sub-title{
  color: var(--color-white);
  font-size: 18px;
  background: var(--theme-color);
  border-radius: 50px;
  padding: 5px 15px;
}

.hs-2 .hero-single .hero-content .hero-title{
  color: var(--color-dark);
}

.hs-2 .hero-single .hero-content .hero-title span{
  color: var(--theme-color);
}

.hs-2 .hero-single .hero-content p{
  color: var(--color-dark);
  font-weight: 500;
}

.hs-2 .hero-single-bg{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hs-2 .hero-slider .owl-nav{
  position: unset;
}

.hs-2 .hero-slider .owl-nav button{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hs-2 .hero-slider .owl-nav .owl-prev{
  left: 20px;
}

.hs-2 .hero-slider .owl-nav .owl-next{
  right: 20px;
}

@media all and (max-width: 1199px){
  .hs-2 .hero-slider .owl-nav{
    display: none;
  }
}

/* .hs-3 */
.hs-3 .hero-single{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 120px 50px;
  border-radius: 20px;
}

.hs-3 .hero-single .hero-content .hero-sub-title{
  color: var(--color-white);
}

.hs-3 .hero-single .hero-content .hero-title{
  margin-top: 25px;
}

@media all and (max-width: 1199px){
  .hs-3 .hero-single{
    padding: 100px 20px;
  }
}




/*====================
16. Small banner css 
======================*/

.small-banner{
  position: relative;
}

.small-banner .banner-item{
	position: relative;
  border-radius: 15px;
}

.small-banner .banner-item img{
	height:100%;
	width:100%;
  border-radius: 15px;
}

.small-banner .banner-content{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	padding-left: 35px;
}

.small-banner .banner-item h3 {
	font-size: 22px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--color-dark);
}

.small-banner .banner-item h3 span{
	color: var(--color-red);
}

.small-banner .banner-item p {
  display: inline-block;
  background: var(--theme-color);
	font-size: 13px;
	color: var(--color-white);
	font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 14px;
	margin-bottom: 15px;
	border-radius: 50px;
}

.small-banner .banner-item a {
	color: var(--color-dark);
	margin-top: 15px;
	font-size: 14px;
	font-weight: 500;
	display: inline-block;
	text-transform:uppercase;
	border-bottom:2px solid var(--color-dark);
}

.small-banner .banner-item a:hover{
	color: var(--theme-color);
	border-color: var(--theme-color);
}


@media all and (max-width: 1399px) {
  .small-banner .banner-item h3 {
    font-size: 19px;
  }
}

@media all and (max-width: 1199px) {
  .small-banner .banner-content{
    padding-left: 25px;
  }

  .small-banner .banner-item h3 {
    font-size: 17px;
  }
}



/*====================
17. Mid banner css 
======================*/

.mid-banner{
  position: relative;
}

.mid-banner .banner-item{
	position: relative;
  border-radius: 15px;
}

.mid-banner .banner-item img{
	height:100%;
	width:100%;
  border-radius: 15px;
}

.mid-banner .banner-content{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	padding-left: 50px;
}

.mid-banner .banner-item h3 {
	font-size: 25px;
	font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--color-dark);
}

.mid-banner .banner-item h3 span{
	color: var(--theme-color);
}

.mid-banner .banner-item p {
	font-size: 16px;
	color: var(--color-white);
	font-weight: 500;
	margin-bottom: 20px;
  letter-spacing: 3px;
	text-transform: uppercase;
  display: inline-block;
  background: var(--theme-color);
  clip-path: polygon(100% 0, 95% 50%, 100% 100%, 0 100%, 5% 50%, 0 0);
  padding: 0 15px;
}

.mid-banner .banner-item .theme-btn{
  border-radius: 8px;
  padding: 8px 20px;
  text-transform: uppercase;
  margin-top: 25px;
  font-size: 14px;
  letter-spacing: 2px;
}


@media all and (max-width: 1199px) {
  .mid-banner .banner-content{
    padding-left: 25px;
  }

  .mid-banner .banner-item h3 {
    font-size: 19px;
  }
} 

@media all and (max-width: 991px) {
  .mid-banner .banner-item p{
    margin-bottom: 10px;
    font-size: 10px;
    padding: 0 9px;
  }

  .mid-banner .banner-item h3{
    font-size: 15px;
  }

  .mid-banner .banner-item .theme-btn{
    margin-top: 10px;
    padding: 5px 15px;
    font-size: 12px;
  }
}



/*====================
18. Big banner css 
======================*/

.big-banner{
  position: relative;
}

.big-banner .banner-wrap{
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.big-banner .banner-content{
  text-align: center;
}

.big-banner .banner-content h6{
  color: var(--color-dark);
  font-size: 22px;
  text-transform: lowercase;
  letter-spacing: 4px;
}

.big-banner .banner-content h2{
  color: var(--color-dark);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
}

.big-banner .banner-content p{
  color: var(--color-dark);
  text-transform: lowercase;
  font-size: 20px;
  border-top: 1px solid var(--color-dark);
  border-bottom: 1px solid var(--color-dark);
  display: inline-block;
}

.big-banner .banner-content .theme-btn{
  border-radius: 50px;
  margin-top: 30px;
  padding: 8px 28px;
}



/*====================
19. Popup banner css 
======================*/

.popup-banner .modal-content{
  border-radius: 12px;
  border: none;
}

.popup-banner .btn-close{
  position: absolute;
  right: 10px;
  top: 10px;
  background: var(--theme-color);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50px;
  font-size: 19px;
  color: var(--color-white);
  opacity: 1;
  transition: var(--transition);
  z-index: 2;
}

.popup-banner .btn-close:hover{
  background: var(--color-red);
  color: var(--color-white);
}

.popup-banner .modal-body{
  padding: 0px;
}

.popup-banner-content{
  position: relative;
  z-index: 1;
}

.popup-banner-content::before{
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 150px;
  height: 150px;
  border: 20px solid var(--theme-color);
  border-radius: 50%;
  opacity: .1;
  z-index: -1;
}

.popup-banner-content::after{
  content: "";
  position: absolute;
  top: 30px;
  right: 200px;
  width: 100px;
  height: 100px;
  border: 18px solid var(--theme-color);
  border-radius: 50%;
  opacity: .1;
  z-index: -1;
}

.popup-banner-img img{
  width: 100%;
  border-radius: 10px 0 0 10px;
}

.popup-banner-info{
  padding: 20px 35px 20px 10px;
}

.popup-banner-info h6{
  background: var(--color-red);
  color: var(--color-white);
  border-radius: 50px;
  padding: 6px 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
}

.popup-banner-info h2{
  font-size: 30px;
  font-weight: 700;
  margin: 20px 0 12px 0;
  line-height: 1.4;
}

.popup-banner-info h2 span{
  color: var(--theme-color);
}

.popup-banner-info .theme-btn{
  margin-top: 25px;
}


@media all and (max-width: 991px) {
  .popup-banner-img img{
    border-radius: 10px 10px 0 0;
  }

  .popup-banner-info{
    padding: 30px;
  }
}



/*====================
20. Category css 
======================*/

.category-item a{
  width: 100%;
  vertical-align: middle;
}

.category-info{
  text-align: center;
  padding: 25px 15px 20px 15px;
  border: 2px solid var(--theme-color-light);
  border-radius: 0 40px 40px 40px;
  transition: var(--transition2);
}

.category-item:hover .category-info{
  border-color: var(--theme-color);
}

.category-info .icon{
  width: 120px;
  height: 120px;
  margin: 0 auto 0 auto;
  border-radius: 0 80px 80px 80px;
  background: var(--theme-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
}

.category-info .icon::before{
  content: "";
  position: absolute;
  inset: 5px;
  border: 3px solid var(--color-white);
  border-left-color: transparent;
  border-top-color: transparent;
  border-radius: 80px;
  transition: var(--transition);
}

.category-info:hover .icon::before{
  transform: rotate(45deg);
}

.category-info .icon img{
  width: 58px;
  filter: brightness(0) invert(1);
}

.category-info:hover .icon img{
  transform: scale(1.1);
}

.category-info .content{
  margin-top: 20px;
}

.category-info .content h4{
  font-size: 16px;
  color: var(--color-dark);
  transition: all .3s ease-in-out;
}

.category-info:hover .content h4{
  color: var(--theme-color);
}

.category-info .content p{
  color: var(--theme-color);
}

@media all and (max-width: 767px) {
  .category-info .icon{
    width: 105px;
    height: 105px;
  }
}

/* category-area 2 */
.category-area.ca-2 .category-info{
  background: var(--theme-color-light);
  border: none;
  border-radius: 80px;
}

.category-area.ca-2 .category-info .icon{
  border-radius: 100px;
}

.category-area.ca-2 .category-info .icon::before{
  display: none;
}

.category-area.ca-2 .category-info .content{
  margin-top: 15px;
}

.category-area.ca-2 .category-slider{
  margin-top: 10px;
}

/* category-area 3 */
.category-area.ca-3 .category-item{
  border: 1px solid var(--border-info-color);
  border-radius: 30px;
  margin-bottom: 25px;
}

.category-area.ca-3 .category-img{
  display: flex;
  align-items: center;
}

.category-area.ca-3 .category-img .thumb-big{
  padding: 10px;
}

.category-area.ca-3 .category-img .thumb-big img{
  width: 100%;
}

.category-area.ca-3 .category-img .thumb-list{
  text-align: center;
  border-left: 1px solid var(--border-info-color);
  width: 60%;
}

.category-area.ca-3 .category-img .thumb-list .thumb-list-1,
.category-area.ca-3 .category-img .thumb-list .thumb-list-2{
  padding: 10px;
}

.category-area.ca-3 .category-img .thumb-list .thumb-list-1{
  border-bottom: 1px solid var(--border-info-color);
}

.category-area.ca-3 .category-img-info{
  padding: 15px 10px 25px 10px;
  text-align: center;
  border-top: 1px solid var(--border-info-color);
}

.category-area.ca-3 .category-img-info h4{
  font-size: 18px;
  color: var(--color-dark);
}

.category-area.ca-3 .category-img-info p{
  color: var(--body-text-color);
  margin-top: 5px;
  margin-bottom: 20px;
}

.category-area.ca-3 .category-img-info .theme-btn{
  width: unset;
  border-radius: 50px;
  padding: 6px 20px;
  box-shadow: none;
}

/* category-area 4 */
.category-area.ca-4 .category-info{
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  border-radius: 100px;
  padding: 5px;
  border: 1px solid var(--border-info-color);
}

.category-area.ca-4 .category-info:hover{
  border-color: var(--theme-color);
}

.category-area.ca-4 .category-info .icon{
  width: 65px;
  height: 65px;
  border-radius: 50px;
  margin: 0;
}

.category-area.ca-4 .category-info .icon::before{
  display: none;
}

.category-area.ca-4 .category-info .icon img{
  width: 40px;
}

.category-area.ca-4 .category-info .content{
  flex: 1;
  margin-top: 0;
}

.category-area.ca-4 .category-info .content h4{
  font-size: 15px;
  margin-bottom: 3px;
}

.category-area.ca-4 .category-info .content p{
  font-size: 15px;
}

@media all and (max-width: 767px){
  .category-area.ca-4 .category-info{
    flex-direction: column;
    text-align: center;
    border-radius: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/* category-area 5 */
.category-area.ca-5 .category-info{
  border-radius: 30px;
}

.category-area.ca-5 .category-info .icon{
  border-radius: 50%;
  background: var(--theme-color-light);
  box-shadow: none;
}

.category-area.ca-5 .category-info .icon::before{
  border: 2.5px solid var(--theme-color);
  border-left-color: transparent;
  border-top-color: transparent;
}

.category-area.ca-5 .category-info .icon img{
  filter: unset;
  width: 85px;
}

/* category area 6 */
.category-area.ca-6 .category-item{
  margin-bottom: 20px;
}

.category-area.ca-6 .category-img{
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: var(--transition);
}

.category-area.ca-6 .category-img img{
  border-radius: 10px;
}

.category-area.ca-6 .category-img .category-img-info{
  position: absolute;
  left: -1px;
  bottom: -1px;
  z-index: 1;
}

.category-area.ca-6 .category-img .category-img-info h4{
  background: var(--color-white);
  color: var(--color-dark);
  font-size: 20px;
  letter-spacing: 1px;
  padding: 15px 35px 15px 20px;
  text-transform: uppercase;
  box-shadow: var(--box-shadow);
  clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
  transition: var(--transition);
}

.category-area.ca-6 .category-img:hover .category-img-info h4{
  color: var(--theme-color);
}

/* category area 7 */
.category-area.ca-7 .category-info{
  border: none;
  padding: 0;
}

.category-area.ca-7 .category-info .icon{
  border-radius: 50%;
  box-shadow: none;
}




/*====================
21. Shop css 
======================*/

/* shop sidebar */
.shop-sidebar {
  margin-bottom: 30px;
}

.shop-widget {
  background: var(--color-white);
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 10px;
}

.shop-widget-title {
  position: relative;
  font-size: 18px;
  color: var(--color-dark);
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-info-color);
}

.shop-search-form .form-group {
  position: relative;
}

.shop-search-form .form-control {
  padding: 12px 45px 12px 15px;
  border-radius: 10px;
  box-shadow: none;
}

.shop-search-form .form-control::placeholder{
  color: var(--body-text-color);
}

.shop-search-form .form-control:focus {
  border-color: var(--theme-color);
}

.shop-search-form button {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 18px 6px 18px;
  background: transparent;
  border: none;
  color: var(--theme-color);
}

.shop-category-list a{
  width: 100%;
  color: var(--body-text-color);
  margin: 4px 0;
  transition: var(--transition);
}

.shop-category-list a:hover{
  color: var(--theme-color);
  padding-left: 3px;
}

.shop-category-list span{
  float: right;
}

.shop-checkbox-list li{
  margin-bottom: 8px;
}

.shop-checkbox-list.rating i{
  color: var(--theme-color);
}

.shop-checkbox-list .form-check-input {
  box-shadow: none;
  margin-top: 7px;
}

.shop-checkbox-list .form-check-input:checked {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.shop-checkbox-list .form-check-input:focus{
  border-color: var(--theme-color);
}

.shop-checkbox-list .form-check-label {
  color: var(--body-text-color);
  width: 100%;
  margin-left: 4px;
} 

.shop-checkbox-list .form-check-label span{
  float: right;
  margin-right: 3px;
} 

.shop-checkbox-list.color li{
  display: inline-block;
  margin-right: 2px;
}

.shop-checkbox-list.color .form-check{
  position: relative;
  padding-left: 0;
}

.shop-checkbox-list.color .form-check-input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.shop-checkbox-list.color .form-check-label{
  margin-left: 0;
}

.shop-checkbox-list.color .form-check-label span{
  width: 28px;
  height: 28px;
  border-radius: 50px;
  vertical-align: top;
  margin-top: 2.5px;
  margin-right: 5px;
  position: relative;
}

.shop-checkbox-list.color .form-check-label span::before{
  content: "\f00c";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  font-family: "Font Awesome 6 Pro";
  color: var(--color-white);
  text-align: center;
  opacity: 0;
  visibility: hidden;
}

.shop-checkbox-list.color .form-check-input:checked~.form-check-label span::before{
  opacity: 1;
  visibility: visible;
}

/* shop sidebar banner */
.shop-widget-banner{
  position: relative;
  z-index: 1;
}

.shop-widget-banner .banner-img{
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  z-index: -1;
}

.shop-widget-banner .banner-img::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  z-index: -1;
}

.shop-widget-banner .banner-content{
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.shop-widget-banner .banner-content h6{
  color: var(--color-white);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-top: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  display: inline-block;
}

.shop-widget-banner .banner-content h4{
  color: var(--color-white);
  font-size: 28px;
  margin: 15px 0;
}

.shop-widget-banner .banner-content .theme-btn{
  border-radius: 50px;
  padding: 5px 20px;
}


/* shop sort */
.shop-sort{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-white);
  border-radius: 10px;
  padding: 8px 15px;
  margin-bottom: 30px;
}

.shop-sort-box{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.shop-sort-box .nice-select{
  border-radius: 10px;
  padding-left: 13px;
}

.shop-sort-box .nice-select::after{
  width: 6px;
  height: 6px;
  right: 15px;
}

.shop-sort-box .nice-select .list{
  border: none;
  border-radius: 10px;
  padding-top: 7px;
  padding-bottom: 7px;
  box-shadow: var(--box-shadow);
}

.shop-sort-gl a{
  background: transparent;
  border: 1px solid var(--border-info-color);
  color: var(--body-text-color);
  text-align: center;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  line-height: 35px;
}

.shop-sort-grid{
  margin-right: 5px;
}

.shop-sort-gl .active{
  border-color: var(--theme-color);
  background: var(--theme-color);
  color: var(--color-white);
}


/* shop pagination */
.shop-area .pagination .page-link,
.shop-area2 .pagination .page-link,
.shop-area3 .pagination .page-link{
  border-radius: 50px !important;
}


/* shop area 2 */
.shop-area2 .shop-widget{
  border: 1px solid var(--border-info-color);
  background: transparent;
}

.shop-area2 .shop-sort{
  border: 1px solid var(--border-info-color);
  border-radius: 10px;
  padding: 10px 20px;
}


@media all and (max-width: 767px) {
  .shop-sort{
    flex-direction: column;
    gap: 20px;
  }

  .shop-sort-box{
    flex-direction: column;
    width: 100%;
  }

  .shop-sort-box .nice-select,
  .shop-sort-box .nice-select .list{
    width: 100%;
  }
}



/*===================
22. Shop cart css 
=====================*/

.shop-cart thead tr {
  background: var(--theme-color);
  color: var(--color-white);
}

.shop-cart thead tr th {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-dark);
  letter-spacing: .4px;
}

.shop-cart thead tr th,
.shop-cart thead tr td {
  white-space: nowrap;
}

.shop-cart tr td {
  color: var(--color-dark);
  vertical-align: middle;
  border-bottom: 1px solid var(--border-info-color);
  border-top: none;
  position: relative;
  padding: 20px 10px;
  font-size: 16px;
}

.shop-cart-img {
  width: 100px;
}

.shop-cart-img img {
  width: 100%;
  border-radius: 8px;
  padding: 6px;
  border: 1px solid var(--border-info-color);
}

.shop-cart-name{
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 600;
}

.shop-cart-name a:hover{
  color: var(--theme-color);
}

.shop-cart-info p{
  font-size: 14px;
  color: var(--body-text-color);
}

.shop-cart-info p span{
  font-weight: 500;
  margin-right: 5px;
}

.shop-cart-price{
  font-weight: 500;
}

.shop-cart-qty {
  width: 110px;
}

.shop-cart-qty button {
  width: 30px;
  height: 30px;
  line-height: 28px;
  color: var(--theme-color);
  text-align: center;
  border: 0;
  border-radius: 50px;
  background: var(--theme-bg-light);
}

.shop-cart-qty button i{
  font-weight: 500;
}

.shop-cart-qty input {
  width: 30px;
  border: none;
  background: transparent;
  color: var(--theme-color);
  text-align: center;
}

.shop-cart-subtotal{
  font-weight: 500;
}

.shop-cart-remove{
  font-size: 18px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border: 1px solid var(--border-info-color);
  text-align: center;
  border-radius: 50px;
}

.shop-cart-remove:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}

.shop-cart-footer {
  margin-top: 20px;
}

.shop-cart-coupon{
  margin-bottom: 25px;
}

.shop-cart-coupon .form-group{
  position: relative;
}

.shop-cart-coupon .form-control {
    box-shadow: none;
    padding: 23px 160px 17px 20px;
    border-radius: 50px;
    font-size: 9px;
}

.shop-cart-coupon .form-control:focus {
  border-color: var(--theme-color);
}

.shop-cart-coupon .theme-btn {
  position: absolute;
  right: 5.4px;
  top: 5.4px;
  border-radius: 50px;
  padding: 8px 20px;
}

.shop-cart-summary {
  padding: 30px;
  border: 1px solid var(--border-info-color);
  background: var(--theme-bg-light);
  border-radius: 10px;
  margin-left: 20px;
}

.shop-cart-summary h5{
  margin-bottom: 25px;
}

.shop-cart-summary li {
  margin-bottom: 10px;
}

.shop-cart-summary li span {
  float: right;
}

.shop-cart-summary li strong {
  color: var(--color-dark);
}

.shop-cart-total {
  padding-top: 10px;
  border-top: 1px solid var(--border-info-color);
}

.shop-cart-total span {
  font-weight: bold;
  color: var(--theme-color);
}


@media all and (max-width: 991px) {
  .shop-cart-summary {
    margin-left: 0;
  }
}



/*===================
23. Shop checkout css 
=====================*/

.shop-checkout-step .accordion-item{
  margin-bottom: 20px;
  border: 1px solid var(--border-info-color);
  border-radius: 8px;
}

.shop-checkout-step .accordion-button{
  background: transparent;
  box-shadow: none;
  font-weight: 600;
  color: var(--color-dark);
}

.shop-checkout-step .accordion-button:not(.collapsed){
  background: transparent;
  color: var(--theme-color);
}

.shop-checkout-step .accordion-body{
  border-top: 1px solid var(--border-info-color);
}

.shop-checkout-form .form-group{
  margin-bottom: 15px;
}

.shop-checkout-form label{
  color: var(--color-dark);
  margin-bottom: 4px;
}

.shop-checkout-form .form-control{
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: none;
}

.shop-checkout-form .form-control::placeholder{
  color: var(--body-text-color);
}

.shop-checkout-form .nice-select{
  width: 100%;
  font-size: 16px;
  border-radius: 8px;
  height: 50px;
  line-height: 47px;
  padding-left: 20px;
  margin-bottom: 15px;
}

.shop-checkout-form .nice-select:after{
  width: 9px;
  height: 9px;
  margin-right: 8px;
  margin-top: -6px;
}

.shop-checkout-form .nice-select .list{
  width: 100%;
  height: 300px;
  overflow-y: auto;
  border-radius: 8px;
}

.shop-checkout-form .form-control:focus,
.shop-checkout-form .nice-select{
  border-color: var(--theme-color);
}

.shop-checkout-form .form-check-input{
  margin-top: 7px;
  box-shadow: none;
}

.shop-checkout-form .form-check-input:focus{
  border-color: var(--theme-color);
}

.shop-checkout-form .form-check-input:checked{
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.shop-checkout-form .theme-btn{
  margin-top: 15px;
  margin-bottom: 10px;
}

.shop-checkout-form .theme-btn2{
  background: var(--theme-color);
  color: var(--color-white);
  margin-right: 8px;
}

.shop-checkout-form .theme-btn2::before{
  background: var(--color-dark);
}

.shop-shipping-method{
  margin-top: 20px;
  padding-top: 25px;
  border-top: 1px solid var(--border-info-color);
}

.shop-shipping-method h6{
  margin-bottom: 20px;
}

.shop-shipping-method .form-check{
  padding-left: 0;
  position: relative;
  margin-bottom: 20px;
}

.shop-shipping-method .form-check-input{
  width: 1.3em;
  height: 1.3em;
  position: absolute;
  top: -2px;
  right: 6px;
}

.shop-shipping-method label{
  font-weight: 500;
  border: 1px solid var(--border-info-color);
  background: var(--color-white);
  padding: 10px 15px 10px 15px;
  border-radius: 10px;
  width: 100%;
}

.shop-shipping-method .form-check-input:checked~label{
  border-color: var(--theme-color) !important;
}

.shop-shipping-method label span{
  display: block;
  color: var(--body-text-color);
  font-weight: 400;
}

.shop-checkout-payment .nav-link{
  background: transparent !important;
  border: 1px solid var(--border-info-color);
  text-align: center;
  border-radius: 12px;
  margin-right: 15px;
  margin-bottom: 20px;
  position: relative;
}

.shop-checkout-payment .nav-link::before{
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  font-weight: bold;
  font-size: 20px;
  color: var(--theme-color);
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  left: 4px;
  top: -4px;
  transition: var(--transition);
}

.shop-checkout-payment .nav-link.active::before{
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.shop-checkout-payment .nav-link.active{
  border-color: var(--theme-color);
}

.shop-checkout-payment .nav-link span{
  color: var(--body-text-color);
}

.shop-checkout-payment .checkout-card-img{
  padding-top: 12px;
  margin-bottom: 12px;
}

.shop-checkout-payment .checkout-card-img img{
  width: 34px;
}

.shop-checkout-payment .checkout-payment-img img{
  width: 120px;
}

.shop-checkout-payment .checkout-payment-img.cod img{
  width: 52px;
}

.shop-checkout-form.cod .form-check-input{
  width: 1.4em;
  height: 1.4em;
  border-radius: 6px;
}

.shop-checkout-form.cod label{
  font-weight: 500;
  margin-left: 10px;
}

.shop-checkout-form.cod label span{
  display: block;
  font-weight: 400;
  color: var(--body-text-color);
}

.shop-checkout-form.cod label a{
  color: var(--theme-color);
}



/*============================
24. Shop checkout complete css 
==============================*/

.shop-checkout-complete{
  position: relative;
}

.checkout-complete-content{
  background: var(--theme-bg-light);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  border: 1px solid var(--border-info-color);
}

.checkout-complete-icon{
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 35px;
  color: var(--color-white);
  background: var(--color-green);
  margin: 0 auto;
  border-radius: 50px;
  margin-bottom: 20px;
}

.checkout-complete-content h3{
  text-transform: capitalize;
}

.checkout-complete-content p{
  margin-top: 15px;
  margin-bottom: 30px;
}

@media all and (min-width: 992px) and (max-width: 1399px) {
  .checkout-complete-content{
    padding: 40px;
  }
}




/*===================
25. Shop single css 
=====================*/

.shop-single{
  position: relative;
}

.shop-single-gallery{
  position: relative;
}

.shop-single-video{
  position: absolute;
  width: 45px;
  height: 45px;
  line-height: 42px;
  right: 10px;
  top: 10px;
  padding-left: 5px;
  border: 1px solid var(--border-info-color);
  border-radius: 50px;
  color: var(--body-text-color);
  text-align: center;
  font-size: 20px;
  z-index: 1;
}

.shop-single-video:hover{
  background: var(--theme-color);
  color: var(--color-white);
}

.shop-single-gallery .flex-viewport{
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border-info-color);
  margin-bottom: 10px;
  text-align: center;
}

.shop-single-gallery .flex-viewport img{
  padding: 30px;
  width: 91%;
}

.shop-single-gallery .flex-control-thumbs li{
  margin: 6.8px;
  padding: 0;
  width: 23%;
} 

.shop-single-gallery .flex-control-thumbs li:first-child{
  margin-left: 0;
}

.shop-single-gallery .flex-control-thumbs li:last-child{
  margin-right: 0;
}

.shop-single-gallery .flex-control-thumbs img{
  border: 1px solid var(--border-info-color);
  border-radius: 10px;
  padding: 10px;
}

.shop-single-gallery .flex-control-thumbs li img.flex-active{
  border-color: var(--theme-color);
}

.shop-single-gallery .flex-direction-nav a{
  border-radius: 50px !important;
  background: var(--theme-color);
  line-height: 40px !important;
  margin-top: -75px;
}

.shop-single-gallery .flex-direction-nav a:hover{
  background: var(--theme-color);
}

.shop-single-info{
  margin-left: 20px;
}

.shop-single-title{
  font-size: 25px;
}

.shop-single-rating{
  margin: 10px 0;
}

.shop-single-rating i{
  color: var(--theme-color);
}

.shop-single-rating .rating-count{
  margin-left: 10px;
  display: inline-block;
}

.shop-single-price{
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 23px;
  font-weight: 500;
}

.shop-single-price del{
  margin-right: 5px;
  font-size: 18px;
  color: var(--body-text-color);
}

.shop-single-price .amount {
  color: var(--theme-color);
}

.shop-single-price .discount-percentage{
  color: var(--color-red);
  font-size: 15px;
}

.shop-single-cs{
  border-top: 1px solid var(--border-info-color);
  padding-top: 20px;
}

.shop-single-cs h6{
  margin-bottom: 15px;
  color: var(--body-text-color);
  font-weight: 500;
}

.shop-single-size .nice-select{
  border-radius: 8px;
  padding-left: 15px;
}

.shop-single-size .nice-select::after{
  width: 6px;
  height: 6px;
}

.shop-single-cs .shop-cart-qty button{
  width: 35px;
  height: 35px;
  line-height: 34px;
  transition: var(--transition);
}

.shop-single-cs .shop-cart-qty button:hover{
  background: var(--theme-color);
  color: var(--color-white);
}

.shop-single-sortinfo li{
  font-weight: 500;
  margin: 10px 0;
}

.shop-single-sortinfo a,
.shop-single-sortinfo span{
  font-weight: 400;
  margin-left: 5px;
}

.shop-single-sortinfo a{
  color: var(--body-text-color);
}

.shop-single-sortinfo a:hover{
  color:var(--theme-color)
}

.shop-single-action{
  border-top: 1px solid var(--border-info-color);
  padding-top: 20px;
  margin-top: 20px;
}

.shop-single-action .theme-btn{
  padding: 8px 20px;
}

.shop-single-action .theme-btn2{
  margin-left: 10px;
  border: 1px solid var(--border-info-color);
  box-shadow: none;
  text-align: center;
  padding: 8px 15px;
  background: transparent;
  color: var(--theme-color);
}

.shop-single-action .theme-btn2:hover{
  color: var(--color-white);
}

.shop-single-action .theme-btn2 span{
  margin-right: 0;
}

.shop-single-share a{
  width: 40px;
  height: 40px;
  line-height: 39px;
  border: 1px solid var(--border-info-color);
  border-radius: 50px;
  text-align: center;
  color: var(--body-text-color);
  margin-left: 5px;
}

.shop-single-share a:hover{
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--color-white);
}

.shop-single-details{
  margin-top: 50px;
}

.shop-single-desc{
  padding-top: 30px;
}

.shop-single-additional{
  padding-top: 30px;
}

.shop-single-review{
  padding-top: 30px;
}

.shop-single-details .nav-tabs {
  border-width: 2px;
}

.shop-single-details .nav-tabs .nav-link {
  color: var(--color-dark);
  font-size: 18px;
  padding: 12px 25px;
  font-weight: 500;
  border: none;
  background: transparent;
  border-bottom: 2px solid transparent;
}

.shop-single-details .nav-tabs .nav-link:hover,
.shop-single-details .nav-tabs .nav-link.active {
  border-bottom: 2px solid var(--theme-color);
  color: var(--theme-color);
}

.shop-single-list{
  margin: 20px 0;
}

.shop-single-list .title{
  margin-bottom: 15px;
  color: var(--color-dark);
  font-size: 17px;
}

.shop-single-list ul li{
  margin: 5px 0;
  list-style: unset;
  margin-left: 15px;
}

.shop-single-list ul li span{
  color: var(--color-dark);
  margin-right: 5px;
}

.shop-single-review .blog-comments-item{
  position: relative;
  border: 1px solid var(--border-info-color);
  border-radius: 10px;
  padding: 30px;
}

.shop-single-review .review-rating{
  position: absolute;
  right: 30px;
  top: 30px;
}

.shop-single-review .review-rating i {
  color: var(--theme-color);
}

.shop-single-review .blog-comments-content h5{
  font-size: 17px;
  margin-bottom: 5px;
}

.shop-single-review .blog-comments-content i{
  margin-right: 5px;
}

/* shop single 2 */
.shop-single2 .shop-single-gallery .flex-viewport{
  background: var(--color-white);
}

.shop-single2 .shop-single-gallery .flex-control-thumbs img{
  background: var(--color-white);
}

.shop-single2 .flex-direction-nav{
  display: none;
}

.shop-single2 .shop-cart-qty button{
  background: var(--color-white);
}

.shop-single2 .shop-single-details{
  background: var(--color-white);
  border-radius: 10px;
}

.shop-single2 .shop-single-desc,
.shop-single2 .shop-single-additional,
.shop-single2 .shop-single-review{
  padding: 30px;
}

.shop-single2 .blog-comments-single{
  background: var(--theme-bg-light);
}

.shop-single2 .related-item .product-item{
  background: var(--color-white);
}

@media all and (max-width: 1399px) {
  .shop-single-gallery .flex-control-thumbs li{
    margin: 6px;
  } 

  .shop-single-action .theme-btn2{
    margin-left: 2px;
  }
}

@media all and (max-width: 1199px) {
  .shop-single-color{
    margin-top: 20px;
  }

  .shop-single-action .shop-single-btn{
    margin-bottom: 20px;
  }
}

@media all and (max-width: 991px) {
  .shop-single-info{
    margin-left: 0;
    margin-top: 30px;
  }

  .shop-single-color{
    margin-top: 0px;
  }

  .shop-single-action .shop-single-btn{
    margin-bottom: 0px;
  }
}

@media all and (max-width: 767px) {
  .shop-single-gallery .flex-control-thumbs li{
    margin: 4.6px;
  } 

  .shop-single-size{
    margin-top: 20px;
  }

  .shop-single-color{
    margin-top: 20px;
  }

  .shop-single-action .shop-single-btn{
    margin-bottom: 20px;
  }

  .shop-single-details .nav-tabs .nav-link{
    font-size: 16px;
    padding: 10px 10px;
  }

  .shop-single-review .review-rating{
    right: 10px;
    top: 5px;
  }
}



/*====================
26. Compare css 
======================*/

.compare-table {
  background: var(--theme-bg-light);
  white-space: nowrap;
}

.compare-table th{
  vertical-align: middle;
}

.compare-table tbody tr th,
.compare-table tbody tr td {
  padding: 10px 15px;
}

.compare-img{
  position: relative;
}

.compare-img img{
  border-radius: 10px;
}

.compare-remove{
  position: absolute;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  right: 10px;
  top: 10px;
  background: var(--theme-color);
  color: var(--color-white);
  border-radius: 50px;
}

.compare-remove:hover{
  background: var(--color-red);
  color: var(--color-white);
}

.compare-title{
  font-size: 17px;
  font-weight: 500;
}

.compare-title:hover{
  color: var(--theme-color);
}

.compare-price{
  color: var(--theme-color);
  font-weight: 600;
}

.compare-rate i{
  color: var(--color-yellow);
}

.compare-table .theme-btn{
  padding: 8px 15px;
}



/*===================
27. Price range css 
=====================*/

.price-range-box{
  margin-bottom: 12px;
}

.price-range.ui-widget-content {
  border: none;
  background: var(--border-info-color);
  height: 5px;
  border-radius: 3px;
}

.price-range .ui-state-default,
.price-range .ui-widget-content .ui-state-default {
  top: -7px;
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 0px;
  background: var(--theme-color);
  z-index: 1;
}

.price-range .ui-state-focus {
  outline: none;
}

.price-range .ui-widget-header {
  background: var(--theme-color);
  border-radius: 0 !important;
}

.price-range-input input {
  border: none;
  margin-bottom: 20px;
  color: var(--theme-color);
  background: transparent;
  font-weight: 700;
  outline: none;
}



/*====================
28. Product css 
======================*/

.product-area{
  position: relative;
}

.product-item{
  position: relative;
  padding: 20px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.product-item::before{
  content: "";
  position: absolute;
  height: 80%;
  left: 0;
  right: 0;
  bottom: -50px;
  background: var(--theme-color-light);
  border-radius: 20px;
  transition: var(--transition2);
  transform: skewY(-15deg);
  z-index: -1;
}

.product-item:hover::before{
  height: 85%;
  transform: unset;
}

.product-img{
  position: relative;
}

.product-item .type{
  position: absolute;
  right: 0px;
  top: 0px;
  display: inline-block;
  background: var(--theme-color);
  color: var(--color-white);
  font-size: 11px;
  padding: 2px 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
}

.product-item .type.new{
  background: var(--theme-color);
}

.product-item .type.oos{
  background: var(--color-red);
}

.product-item .type.discount{
  background: var(--color-yellow);
}

.product-item .type.hot{
  background: var(--color-skyblue);
}

.product-action-wrap{
  position: absolute;
  bottom: 0px;
  width: 100%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.product-item:hover .product-action-wrap{
  opacity: 1;
  visibility: visible;
  bottom: 10px;
}

.product-action a{
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--theme-color);
  color: var(--color-white);
  text-align: center;
  border-radius: 50%;
  margin: 0 3px;
}

.product-action a:hover{
  background: var(--theme-color);
  color: var(--color-white);
}

.product-content{
  margin-top: 2px;
}

.product-title a{
  font-size: 17px;
  color: var(--color-dark);
}

.product-title a:hover{
  color: var(--theme-color);
}

.product-rate{
  color: var(--color-yellow);
  font-size: 15px;
  margin-top: 3px;
}

.product-bottom{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.product-price{
  font-size: 16px;
  font-weight: 500;
}

.product-price del{
  margin-right: 5px;
  color: var(--body-text-color);
}

.product-price span {
    color: var(--color-dark);
    font-family: "Roboto", sans-serif;
}
.product-cart-btn{
  position: relative;
  border: none;
  background: var(--theme-color);
  color: var(--color-white);
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  width: 42px;
  height: 42px;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.product-cart-btn:hover{
  color: var(--color-white);
  background: var(--theme-color);
}

@media all and (min-width: 992px) and (max-width: 1399px) {
  .product-item{
    padding: 15px;
  }

  .product-cart-btn{
    width: 37px;
    height: 37px;
    font-size: 15px;
  }

  .product-price del{
    font-size: 13px;
  }
}

@media all and (max-width: 767px){
  .product-wrap{
    margin: 0 15px;
  }
}


/* product slider */
.product-slider .owl-nav button{
  position: absolute;
	background: var(--theme-color)!important;
  color: var(--color-white)!important;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 20px!important;
  text-align: center;
	border-radius: 50%;
	box-shadow: var(--box-shadow);
  transition: var(--transition);
  top: 50%;
  transform: translateY(-50%);
}

.product-slider .owl-nav button:hover{
	background: var(--theme-color)!important;
}

.product-slider .owl-prev{
	left: -16px;
}

.product-slider .owl-next{
	right: -16px;
}

/* product slider 2 */
.product-slider2 .product-item{
  margin-bottom: 0px;
}

.product-slider2 .owl-nav button{
  position: absolute;
	background: var(--theme-color)!important;
  color: var(--color-white)!important;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 20px!important;
  text-align: center;
	border-radius: 50%;
	box-shadow: var(--box-shadow);
  transition: var(--transition);
  top: 50%;
  transform: translateY(-50%);
}

.product-slider2 .owl-nav button:hover{
	background: var(--theme-color)!important;
}

.product-slider2 .owl-prev{
	left: -16px;
}

.product-slider2 .owl-next{
	right: -16px;
}

/* product-banner */
.product-banner img{
  border-radius: 20px;
}

/* item-big */
.item-big .product-img{
  text-align: center;
  width: 100%;
}

.item-big .product-img img{
 width: 80%;
 margin: auto;
}

/* item-2 */
.item-2 .product-item{
  background: var(--theme-color-light);
  border-radius: 20px;
}

.item-2 .product-item::before{
  display: none;
}

/* item-3 */
.item-3 .product-item{
  border: 1px solid var(--border-info-color);
}

.item-3 .product-item::before{
  display: none;
}

/* item-4 */
.item-4 .product-item{
  background: var(--color-white);
}

.item-4 .product-item::before{
  display: none;
}

/* item-5 */
.item-5 .product-item::before{
  transform: none;
}

/* item list*/
.item-list .product-item{
  display: flex;
  align-items: center;
  gap: 30px;
  background: var(--color-white);
  border-radius: 20px;
}

.item-list .product-item::before{
  display: none;
}

.item-list.item-2 .product-item{
  background: var(--theme-bg-light);
}

.item-list .product-img{
  width: 220px;
}

.item-list .product-content{
  flex: 1;
}

.item-list .product-content p{
  margin-top: 10px;
  margin-bottom: 15px;
}

/* item tab */
.item-tab .nav{
  justify-content: space-between;
  gap: 10px;
}

.item-tab .nav-link{
  font-size: 17px;
  font-weight: 500;
  color: var(--color-dark);
  background: var(--theme-color-light);
  padding: 5px 20px;
  border-radius: 0;
  border-radius: 50px;
}

.item-tab .nav-item:last-child .nav-link{
  margin-right: 0;
}

.item-tab .nav-link.active{
  color: var(--color-white);
  background: var(--theme-color2);
}

@media all and (max-width: 767px) {
  .item-list .product-item{
    flex-direction: column;
    align-items: unset;
    gap: 5px;
  }

  .item-list .product-img{
    width: 100%;
  }

  .item-tab .nav{
    justify-content: unset;
  }
}




/*====================
29. Product list css 
======================*/

.product-list{
  position: relative;
}

.pl-negative{
  margin-top: -130px;
}

.product-list-box{
  padding: 25px;
  border-radius: 20px;
  background: var(--color-white);
}

.product-list-box.border{
  border-color: var(--border-info-color) !important;
}

.product-list{
  position: relative;
}

.product-list-title{
  position: relative;
  font-size: 25px;
  margin-bottom: 40px;
  padding-bottom: 15px;
  font-weight: 700;
  border-bottom: 1px solid var(--border-info-color);
}

.product-list-title::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.8px;
  width: 40px;
  height: 2px;
  background: var(--theme-color);
}

.product-list-item{
  display: flex;
  gap: 14px;
  background: var(--theme-color-light);
  align-items: center;
  border-radius: 15px;
  margin: 25px 0;
  padding: 10px;
  position: relative;
  transition: var(--transition);
}

.product-list-item:last-child{
  margin-bottom: 0;  
}

.product-list-img{
  background: var(--color-white);
  border: 1px solid var(--border-info-color);
  border-radius: 15px;
  padding: 10px;
}

.product-list-img img{
  width: 100px;
  height: 100px;
}

.product-list-item:hover .product-list-img img{
  transform: scale(1.1);
}

.product-list-content{
  flex: 1;
}

.product-list-content h4 a{
  font-size: 18px;
}

.product-list-content h4 a:hover{
  color: var(--theme-color);
}

.product-list-rate{
  font-size: 15px;
  color: var(--color-yellow);
  margin-top: 4px;
}

.product-list-price{
  margin-top: 4px;
  font-weight: 500;
}

.product-list-price del {
    margin-right: 10px;
    font-family: "Roboto", sans-serif;
}

.product-list-price span {
    color: var(--color-red);
    font-family: "Roboto", sans-serif;
}

.product-list-btn{
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 50px;
  height: 50px;
  line-height: 36px;
  border-radius: 50%;
  border: 7px solid var(--color-white);
  background: var(--theme-color);
  color: var(--color-white);
  text-align: center;
}

.product-list-btn:hover{
  background: var(--theme-color);
  color: var(--color-white);
}

@media all and (max-width: 1399px) {
  .product-list-content h4 a{
    font-size: 16px;
  }
}

@media all and (max-width: 767px) {
  .pl-negative{
    margin-top: -80px;
  }
}



/*======================
30. Product section css 
========================*/

.ps-img{
  width: 95%;
}

.ps-content{
  margin-left: 20px;
}

.ps-item-wrap{
  margin-top: 25px;
}

.ps-item-wrap .ps-item{
  display: flex;
  gap: 20px;
}

.ps-item-wrap .ps-item{
  border: 1px solid var(--border-info-color);
  padding: 20px;
  border-radius: 20px;
}

.ps-item-wrap .ps-item .icon{
  width: 50px;
  height: 50px;
}

.ps-item-wrap .ps-item .content{
  flex: 1;
}

.ps-item-wrap .ps-item .content h6{
  color: var(--color-dark);
  margin-bottom: 5px;
}

.ps-item-wrap .ps-item .content p{
  color: var(--body-text-color);
}

/* product-section 2 */
.product-section2 .ps-content{
  background: var(--theme-bg-light);
  padding: 55px 50px;
  border-radius: 30px;
  margin-left: 0;
}

.product-section2 .ps-img img{
  border-radius: 30px;
}




/*======================
30. Modal quick view css 
========================*/

.quickview .modal-content{
  border-radius: 20px;
}

.quickview .modal-body{
  padding: 30px;
}

.quickview .btn-close{
  position: absolute;
  right: 10px;
  top: 10px;
  background: var(--theme-color);
  color: var(--color-white);
  font-size: 18px;
  width: 25px;
  height: 25px;
  line-height: 27px;
  border-radius: 50px;
  opacity: 1;
  transition: var(--transition);
  z-index: 1;
}

.quickview .btn-close:hover{
  background: var(--color-red);
  color: var(--color-white);
}

.quickview-img{
  background: var(--theme-color-light);
  padding: 30px;
  border-radius: 20px;
}

.quickview-title{
  margin-bottom: 5px;
}

.quickview-rating i{
  color: var(--color-yellow);
}

.quickview-price {
  margin-top: 15px;
  margin-bottom: 15px;
}

.quickview-price h5{
  font-weight: 500;
}

.quickview-price del {
  margin-right: 10px;
  color: var(--body-text-color);
}

.quickview-price span {
  color: var(--theme-color);
}

.quickview-list li{
  margin: 5px 0;
}

.quickview-list li span{
  font-weight: 500;
  margin-left: 10px;
}

.quickview-list li .stock{
  color: var(--theme-color)
}

.quickview-cart{
  margin: 15px 0;
}

.quickview-cart .theme-btn{
  padding: 5px 18px;
}

.quickview-social a{
  width: 30px;
  height: 30;
  line-height: 32px;
  text-align: center;
  color: var(--color-dark);
}

.quickview-social a:hover{
  color: var(--theme-color);
}


/*====================
31. Bs custom css 
======================*/

/* tooltip */
.tooltip-inner {
  background: var(--theme-color);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before{
  border-top-color: var(--theme-color) !important;
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before{
  border-top-color: var(--theme-color) !important;
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before{
  left: -2.5px !important;
  border-left-color: var(--theme-color) !important;
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before{
  right: -2.5px !important;
  border-right-color: var(--theme-color) !important;
}

.tooltip.show {
  opacity: 1;
}

/* modal */
.modal-open{
  overflow: auto;
  padding-right: 0 !important;
}




/*=============================
32. Countdown css
===============================*/

.countdown{
  position: relative;
  margin: 15px 0;
}

.countdown-item{
  background: var(--color-white);
  text-align: center;
  margin: 5px;
  padding: 12px 20px 16px 20px;
  border-radius: 50px;
  border: 1px solid var(--border-info-color);
}

.countdown-item h2{
  color: var(--color-red);
  font-weight: 700;
}

.countdown-item h5{
  margin-top: 2px;
  color: var(--color-dark);
}




/*====================
33. Deal css 
======================*/

.deal-area{
  position: relative;
  background: var(--theme-color-light);
  overflow: hidden;
  z-index: 1;
}

.deal-area::before{
  content: "";
  position: absolute;
  top: -150px;
  left: 10%;
  width: 400px;
  height: 400px;
  background: var(--theme-color);
  border-radius: 50%;
  opacity: .1;
  z-index: -1;
}

.deal-text-shape{
  position: absolute;
  right: 0;
  top: 0;
  writing-mode: vertical-lr;
  transform: scale(-1, -1);
  letter-spacing: 15px;
  font-size: 180px;
  line-height: 180px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--theme-color);
  opacity: .2;
  z-index: -1;
}

.deal-content{
  margin-right: 80px;
}

.deal-info span{
  color: var(--color-red);
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 8px;
}

.deal-info h1{
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 15px;
  color: var(--color-dark);
}

.deal-info p{
  color: var(--color-dark);
  font-size: 17px;
}

.deal-img{
  position: relative;
}

.deal-discount{
  position: absolute;
  width: 120px;
  height: 120px;
  top: 0;
  left: 20%;
  background: var(--color-red);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.deal-discount span{
  font-size: 40px;
  line-height: 40px;
  font-weight: 800;
}

.deal-discount span:last-child{
  font-size: 25px;
  line-height: 25px;
  font-weight: 600;
  text-transform: uppercase;
}

@media all and (max-width: 991px) {
  .deal-img{
    margin-top: 50px;
  }
}

@media all and (max-width: 767px) {
  .deal-content{
    margin-right: 0;
  }
}


/* deal-area 2 */
.deal-area2 .deal-wrap{
  padding: 50px 40px 30px 40px;
  border-radius: 30px;
  background-image: url(../img/shape/07.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.deal-area2 .deal-content {
  margin-left: 10px;
}

/* deal-countdown */
.deal-countdown{
  padding: 0 7px;
  margin-top: 25px;
  margin-bottom: 35px;
}

.deal-countdown .row{
  gap: 8px;
}

.deal-countdown .countdown-item{
  margin: 3px;
  padding: 10px 6px;
  border-radius: 20px;
  border: none;
}

.deal-countdown .countdown-item h2{
  font-size: 50px;
  margin-bottom: 4px;
}

.deal-countdown .countdown-item h5{
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* deal-slider */
.deal-slider .owl-dots{
  text-align: center;
  margin-top: 30px;
}

.deal-slider .owl-dots button{
  width: 12px;
  height: 12px;
  border-radius: 50px;
  border: 2px solid var(--theme-color);
  margin: 4px;
  transition: var(--transition2);
}

.deal-slider .owl-dots button.active{
  background: var(--theme-color);
}



/*====================
34. Seller css 
======================*/

.seller-area{
  position: relative;
}

.seller-item{
  text-align: center;
  margin-bottom: 10px;
}

.seller-img a{
  width: 135px;
  height: 135px;
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--theme-color-light);
}

.seller-item:hover .seller-img a{
  border-color: var(--theme-color);
}

.seller-img img{
  width: 80px;
}

.seller-item:hover .seller-img img{
  transform: scale(1.1);
}

.seller-title {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-dark);
    font-family: "Roboto", sans-serif;
}

.seller-item:hover .seller-title{
  color: var(--theme-color);
}


@media all and (max-width: 1399px) {
  .seller-img a{
    width: 118px;
    height: 118px;
  }
  
  .seller-img img{
    width: 60px;
  }
}



/*====================
35. Become seller css
======================*/

.become-seller{
  position: relative;
}

.seller-form{
  padding: 35px;
  background: var(--color-white);
  border-radius: 15px;
  border: 1px solid var(--border-info-color);
}

.seller-form-header{
  border-bottom: 1px solid var(--border-info-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.seller-form-header h4{
  margin-bottom: 10px;
}

.seller-form .nice-select,
.seller-form .form-group{
  margin-bottom: 15px;
}

.seller-form label{
  color: var(--color-dark);
  margin-bottom: 4px;
}

.seller-form .form-control{
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: none;
}

.seller-form .form-control::placeholder{
  color: var(--body-text-color);
}

.seller-form .form-control:focus,
.seller-form .nice-select:focus{
  border-color: var(--theme-color);
}

.seller-form .nice-select{
  border-radius: 8px;
  width: 100%;
  font-size: 16px;
  height: 50px;
  line-height: 47px;
}

.seller-form .nice-select::after{
  width: 9px;
  height: 9px;
  margin-top: -6px;
}

.seller-form .nice-select .list{
  width: 100%;
  height: 250px;
  overflow-y: auto;
  border-radius: 8px;
}

.seller-form .theme-btn{
  margin-top: 15px;
}

.seller-feature-item{
  border: 1px solid var(--border-info-color);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  margin-bottom: 15px;
}

.seller-feature-icon{
  margin: 0 auto 30px auto;
}

.seller-feature-icon img{
  width: 75px;
}

.seller-feature-content h4{
  font-size: 20px;
  margin-bottom: 10px;
}

@media all and (min-width: 992px) and (max-width: 1399px) {
  .seller-feature-item{
    padding: 36px;
  }

  .seller-feature-icon img{
    width: 55px;
  }
}


@media all and (max-width: 991px) {
  .seller-form{
    margin-bottom: 30px;
  }
}



/*====================
36. Vendor css
======================*/

.vendor-area{
  position: relative;
}

.vendor-area .shop-widget{
  background: var(--theme-bg-light);
}

.vendor-area .shop-sort{
  background: var(--theme-bg-light);
  padding-right: 8px;
}

.vendor-item{
  padding: 18px;
  background: var(--color-white);
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: var(--box-shadow);
}

.vendor-banner-img{
  position: relative;
}

.vendor-banner-img img{
  border-radius: 8px;
}

.vendor-logo{
  position: absolute;
  width: 80px;
  height: 80px;
  right: 20px;
  bottom: -40px;
  background: var(--color-white);
  padding: 15px;
  border-radius: 50px;
}

.vendor-content{
  padding-top: 15px;
}

.vendor-name{
  margin-bottom: 5px;
}

.vendor-name h4{
  font-size: 18px;
  color: var(--color-dark);
}

.vendor-rating{
  color: var(--theme-color);
  font-size: 14px;
  margin-top: 5px;
}

.vendor-info{
  margin-top: 10px;
}

.vendor-info a{
  margin-top: 5px;
}

.vendor-info a:hover{
  color: var(--theme-color);
}

.vendor-info a i{
  margin-right: 5px;
}

.vendor-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-info-color);
}

.vendor-content .theme-btn{
  padding: 5px 20px;
  border-radius: 50px;
}



/*====================
37. Vendor store css 
======================*/

.vendor-store{
  position: relative;
}

.vendor-store-banner{
  background: var(--color-white);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.store-banner-img{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 300px;
  border-radius: 15px;
}

.vendor-store-logo{
  width: 100px;
  height: 100px;
  padding: 10px;
  background: var(--color-white);
  border-radius: 50%;
  margin: -50px 0 0 50px;
}

.vendor-store-content{
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.vendor-store-name{
  color: var(--color-dark);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.vendor-store-contact{
  margin-top: 10px;
}

.vendor-store-contact a{
  margin-right: 10px;
}

.vendor-store-contact a i{
  margin-right: 5px;
}

.vendor-store-contact a:hover{
  color: var(--theme-color);
}

.vendor-store-rating{
  color: var(--theme-color);
}

.vendor-store-sale{
  color: var(--body-text-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.vendor-store-social a{
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: var(--theme-color);
  color: var(--color-white);
  border-radius: 50px;
  margin-right: 5px;
}

.vendor-store-social a:hover{
  background: var(--theme-color);
  color: var(--color-white);
}

@media all and (max-width: 991px) {
  .store-banner-img{
    height: 220px;
  }
  .vendor-store-content {
    flex-direction: column;
  }
}



/*====================
34. Feature css 
======================*/

.feature-area{
  position: relative;
}

.feature-wrap{
  padding: 40px 20px;
  border-radius: 20px;
  background: var(--color-dark);
  position: relative;
  z-index: 1;
}

.feature-wrap::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/shape/02.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  opacity: .2;
  z-index: -1;
}

.feature-wrap .feature-item{
  border-right: 1px solid var(--border-white-color);
}

.feature-wrap [class*=col-]:last-child .feature-item{
  border-right: none;
}

.feature-item{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.feature-icon{
  width: 65px;
  height: 65px;
  line-height: 55px;
  background: var(--theme-color);
  color: var(--color-white);
  font-size: 30px;
  border-radius: 0 50px 50px 50px;
  text-align: center;
  position: relative;
}

.feature-icon::before{
  content: "";
  position: absolute;
  border-radius:  0 50px 50px 50px;
  width: 65px;
  height: 65px;
  top: -8px;
  left: -8px;
  border: 2px solid var(--theme-color);
}

.feature-icon img{
  width: 40px;
  filter: brightness(0) invert(1);
}

.feature-content h4{
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--color-white);
}

.feature-content p{
  color: var(--color-white);
}

@media all and (min-width: 1199px) and (max-width: 1399px){
  .feature-wrap{
    padding: 40px 10px;
  }

  .feature-item{
    gap: 11px;
  }
}

@media all and (max-width: 1199px) {
  .feature-content{
    flex: 1;
  }
  
  .feature-wrap .feature-item{
    border-right: none;
  }
}

@media all and (max-width: 991px) {
  .feature-item {
    margin: 10px 0;
  }
}

@media all and (max-width: 767px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
}

/* feature area 2 */
.feature-area.ft-2 .feature-item{
  background: var(--color-dark);
  padding: 20px;
  border-radius: 100px;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  z-index: 1;
}

.feature-area.ft-2 .feature-item:hover{
  transform: translateY(-5px);
}

.feature-area.ft-2 .feature-item::before{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 80px;
  border: 5px solid var(--color-white);
  border-radius: 30px;
  transform: rotate(-35deg);
  opacity: .1;
  z-index: -1;
}

.feature-area.ft-2 .feature-icon{
  border-radius: 50px;
}

.feature-area.ft-2 .feature-icon::before{
  top: -5px;
  left: -5px;
  border-radius: 50px;
}

/* feature area 3 */
.feature-area.ft-3 .feature-wrap{
  background: transparent;
  border: 1px solid var(--border-info-color);
}

.feature-area.ft-3 .feature-wrap::before{
  display: none;
}

.feature-area.ft-3 .feature-icon{
  border-radius: 50px;
}

.feature-area.ft-3 .feature-icon::before{
  display: none;
}

.feature-area.ft-3 .feature-content h4{
  color: var(--color-dark);
}

.feature-area.ft-3 .feature-content p{
  color: var(--body-text-color);
}

/* feature area 4 */
.feature-area.ft-4 .feature-wrap{
  background: var(--theme-bg-light);
}

.feature-area.ft-4 .feature-wrap::before{
  display: none;
}

.feature-area.ft-4 .feature-icon{
  border-radius: 50px;
}

.feature-area.ft-4 .feature-icon::before{
  display: none;
}

.feature-area.ft-4 .feature-content h4{
  color: var(--color-dark);
}

.feature-area.ft-4 .feature-content p{
  color: var(--body-text-color);
}

/* feature area 5 */
.feature-area.ft-5 .feature-item{
  background: var(--theme-color-light);
  margin: 30px 0;
  padding: 20px;
  border-radius: 30px;
  justify-content: start;
}

.feature-area.ft-5 .feature-left .feature-item{
  justify-content: end;
  flex-direction: row-reverse;
  text-align: right;
}

.feature-area.ft-5 .feature-icon{
  width: 85px;
  height: 85px;
  line-height: 80px;
  border-radius: 50px;
}

.feature-area.ft-5 .feature-icon::before{
  display: none;
}

.feature-area.ft-5 .feature-icon img{
  width: 50px;
}

.feature-area.ft-5 .feature-content{
  flex: 1;
}

.feature-area.ft-5 .feature-content h4{
  color: var(--color-dark);
}

.feature-area.ft-5 .feature-content p{
  color: var(--body-text-color);
}



/*====================
35. About css 
======================*/

.about-left{
  position: relative;
}

.about-shape{
  position: absolute;
  right: 40px;
  top: 5px;
  width: 150px;
  z-index: -1;
}

.about-img{
  position: relative;
}

.about-img .img-1{
  border-radius: 200px 200px 200px 0;
}

.about-img .img-2{
  border-radius: 0 200px 200px 200px;
}

.about-experience{
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  top: 50px;
  left: 50%;
  background:  var(--color-white);
  border-radius: 100px 100px 100px 0;
  padding: 10px 30px 10px 10px;
  color: var(--color-dark);
  box-shadow: var(--box-shadow);
}

.about-experience-icon{
  color: var(--color-white);
  font-size: 45px;
  width: 70px;
  height: 70px;
  line-height: 60px;
  text-align: center;
  background: var(--theme-color);
  border-radius: 50px;
}

.about-experience-icon img{
  width: 55px;
  filter: brightness(0) invert(1);
}

.about-right{
  position: relative;
  display: block;
  padding-left: 30px;
}

.about-list{
  margin-top: 30px;
  margin-bottom: 20px;
}

.about-list ul{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.about-list ul li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--color-dark);
}

.about-list ul li i{
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: var(--color-white);
  text-align: center;
  background: var(--theme-color2);
  border-radius: 50px;
}


@media all and (max-width: 991px) {
  .about-right{
    margin-top: 30px;
    padding-left: 0px;
  }
}

@media all and (max-width: 767px) {
  .about-experience{
    left: 80px;
  }
}



/*====================
36. Counter css 
======================*/

.counter-area {
  position: relative;
  background: var(--theme-color);
  z-index: 1;
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.counter-box .icon {
  position: relative;
  text-align: center;
  font-size: 60px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  line-height: 83px;
  color: var(--color-white);
  border: 3px solid var(--color-white);
  background:  var(--color-dark);
  z-index: 1;
}

.counter-box .icon img{
  filter:brightness(0) invert(1);
  width: 55px;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: var(--color-white);
  font-size: 50px;
  font-weight: 600;
}

.counter-box .counter-amount{
  display: flex;
  color: var(--color-white);
}

.counter-box .counter-amount .counter-sign{
  margin-left: 5px;
  font-size: 20px;
  font-weight: 500;
}

.counter-box .title {
  color: var(--color-white);
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

@media all and (max-width: 991px) {
  .counter-area .counter-box {
    margin: 40px 0;
  }
}



/*===================
37. Team css 
=====================*/

.team-area {
  position: relative;
  overflow: hidden;
}

.team-item {
  padding: 15px;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-item:hover {
  transform: translateY(-10px);
}

.team-img img{
  border-radius: 15px;
  margin-top: -50px;
}

.team-content {
  padding: 10px 0 5px 0;
}

.team-bio h5 {
  font-size: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.team-bio span {
  font-size: 16px;
  font-weight: 500;
  color: var(--theme-color);
  text-transform: capitalize;
}

.team-bio h5 a:hover {
  color:  var(--theme-color);
}

.team-social {
  border-top: 1px solid var(--border-info-color);
  margin-top: 10px;
  padding-top: 10px;
}

.team-social a {
  display: inline-block;
  color: var(--color-white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 4px;
  border-radius: 50px;
  background: var(--theme-color);
  box-shadow: var(--box-shadow);
}

.team-social a:hover {
  background: var(--theme-color2);
  color: var(--color-dark);
}



/*===================
38. Play btn
=====================*/

.play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  line-height: 75px;
  font-size: 20px;
  text-align: center;
  background: var(--color-red);
  color: var(--color-white) !important;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.play-btn i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--color-red);
  border-radius: 50px;
  animation: ripple-wave 1s linear infinite;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

@keyframes ripple-wave {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}



/*====================
39. Video css 
======================*/

.video-content {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.video-content::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, .3);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.video-content.rounded-5::before{
  border-radius: inherit;
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  height: 450px;
  z-index: 1;
}

.video-wrapper img {
  border-radius: 12px;
}

.video-area .play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media all and (max-width: 767px) {
  .video-wrapper {
    height: 250px;
  }
}



 
/*====================
40. Testimonial css 
======================*/

.testimonial-area {
  position: relative;
}

.ts-bg{
  position: relative;
  background: var(--theme-color2);
}

.ts-bg::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/shape/03.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: .25;
}

.ts-border .testimonial-item{
  border: 1px solid var(--border-info-color);
}

.testimonial-item {
  position: relative;
  margin-bottom: 20px;
  background: var(--color-white);
  border-radius: 70px 70px 70px 0;
  padding: 30px;
}

.testimonial-author{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  margin-bottom: 15px;
  background: var(--color-dark);
  border-radius: 50px 50px 50px 0;
  border-bottom: 1px solid var(--border-info-color);
  box-shadow: var(--box-shadow);
}

.testimonial-author-img{
  width: 70px;
}

.testimonial-author-img img{
  border-radius: 50px 50px 50px 0;
}

.testimonial-author-info h4{
  font-size: 19px;
  color: var(--color-white);
}

.testimonial-author-info p{
  color: var(--theme-color);
  font-weight: 500;
}

.testimonial-quote{
  position: relative;
  z-index: 1;
}

.testimonial-quote-icon{
  position: absolute;
  right: 30px;
  bottom: 20px;
  width: 100px;
  opacity: .45;
}

.testimonial-rate{
  color: var(--theme-color);
  margin-top: 15px;
}

.testimonial-slider .owl-dots{
  text-align: center;
  margin-top: 20px;
}

.testimonial-slider .owl-dots .owl-dot span{
  background: var(--theme-color);
  margin: 5px;
  border-radius: 50px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: var(--transition);
}

.testimonial-slider .owl-dots .owl-dot.active span{
  background-color: var(--theme-color);
  width: 20px;
}

/* testimonial-area 2 */
.testimonial-area2 .testimonial-author{
  border-radius: 50px;
  background: var(--theme-color-light);
  border: none;
  box-shadow: none;
}

.testimonial-area2 .testimonial-author-info h4{
  color: var(--color-dark);
}

.testimonial-area2 .testimonial-item{
  border-radius: 70px;
}

.testimonial-area2 .testimonial-author-img img{
  border-radius: 50px;
}

/* testimonial-area 3 */
.testimonial-area3 .testimonial-wrap{
  background: linear-gradient(to right, #FCCBC6, #F9EAC8);
  border-radius: 50px;
  padding: 50px;
}

.testimonial-area3 .site-heading p{
  color: var(--color-dark);
  font-size: 19px;
  margin-top: 5px;
}

.testimonial-area3 .testimonial-item{
  border-radius: 20px;
  margin-bottom: 0;
}

.testimonial-area3 .testimonial-author{
  background: var(--color-white);
  padding: 0 0 20px 0;
  border-radius: 0;
  box-shadow: none;
}

.testimonial-area3 .testimonial-author-img img{
  border-radius: 50px;
}

.testimonial-area3 .testimonial-author-info h4{
  color: var(--color-dark);
}

@media all and (max-width: 767px) {
  .testimonial-area3 .testimonial-wrap{
    padding: 20px;
  }
}




/*====================
41. Brand css 
======================*/

.brand-area{
  position: relative;
}

.brand-slider{
  margin-top: 20px;
}

.brand-item a{
  padding: 30px 10px;
  border: 1px solid var(--border-info-color);
  border-radius: 20px;
}

.brand-item a:hover{
  border-color: var(--theme-color);
}



/*====================
42. Help css 
======================*/

.help-area{
  position: relative;
}

.help-search{
  text-align: center;
  margin-bottom: 60px;
}

.help-search h3{
  margin-bottom: 5px;
}

.help-search-form{
  margin-top: 20px;
}

.help-search-form .form-group{
  position: relative;
}

.help-search-form .form-control{
  padding: 12px 50px 12px 20px;
  border-radius: 8px;
  box-shadow: none;
}

.help-search-form .form-control:focus{
  border-color: var(--theme-color);
}

.help-search-form .form-group button{
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 10px 15px 6px 15px;
  background: transparent;
  border: none;
  color: var(--body-text-color);
}

.help-search-keyword{
  text-align: left;
  margin-top: 5px;
}

.help-search-keyword span{
  color: var(--color-dark);
}

.help-search-keyword a{
  color: var(--body-text-color);
}

.help-search-keyword a:hover{
  color: var(--theme-color);
}

.help-item{
  text-align: center;
  margin-bottom: 25px;
  border: 1px solid var(--border-info-color);
  border-radius: 25px;
  padding: 30px;
}

.help-icon i{
  font-size: 45px;
  font-weight: 300;
  color: var(--theme-color);
}

.help-content h4{
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 20px;
} 

.help-item .theme-btn{
  border-radius: 50px;
  padding: 6px 20px;
  margin-top: 25px;
}

.help-bottom{
  text-align: center;
  margin-top: 30px;
}

.help-bottom p{
  margin-top: 5px;
  margin-bottom: 20px;
}



/*====================
43. Invoices css 
======================*/

.invoice-area{
  position: relative;
}

.invoice-container.not-print{
  padding: 0 150px;
}

.invoice-print{
  text-align: right;
  margin-bottom: 30px;
}

.invoice-wrapper{
  background: var(--color-white);
  border-radius: 10px;
  padding: 50px;
}

.invoice-header{
  display: flex;
  justify-content: space-between;
}

.invoice-width{
  width: 40%;
}

.invoice-logo img{
  width: 180px;
}

.invoice-date-box{
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.invoice-address-box{
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.invoice-address h5{
  margin-bottom: 8px;
}

.invoice-table{
  margin-top: 30px;
}

.invoice-table table{
  width: 100%;
  border-collapse: collapse;
}

.invoice-table table,
.invoice-table td, 
.invoice-table th {
  border: 1px solid var(--border-info-color);
}

.invoice-table td, 
.invoice-table th {
  padding: 10px 20px;
}

.invoice-bottom{
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid var(--border-info-color);
  display: flex;
  justify-content: space-between;
}

.invoice-bottom a{
  color: var(--body-text-color);
}



/*====================
44. Faq css 
======================*/

.faq-area{
  position: relative;
}

.faq-area .list-group-item{
  color: var(--body-text-color);
  font-weight: 500;
  font-size: 16px;
  padding: 10px 20px;
}

.faq-area .list-group-item.active{
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--color-white);
  font-size: 18px;
  z-index: 1;
}

.faq-area .list-group-item:first-child{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.faq-area .list-group-item:last-child {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.faq-area .accordion-item {
  border: 1px solid var(--border-info-color);
  margin-bottom: 15px;
  background: var(--color-white);
  border-radius: 12px !important;
}

.faq-area .accordion-item span {
  width: 38px;
  height: 38px;
  margin-right: 15px;
}

.faq-area .accordion-item i {
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 12px;
  background: var(--theme-color);
  text-align: center;
  color: var(--color-white);
}

.faq-area .accordion-button:not(.collapsed) {
  color: var(--theme-color);
  background: transparent;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.faq-area .accordion-button {
  border-radius: 0px !important;
  background: transparent;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px 8px 8px;
  color:  var(--body-text-color);
  text-transform: capitalize;
  box-shadow: none !important;
}

.faq-area .accordion-body{
  border-top: 1px solid var(--border-info-color);
  color: var(--body-text-color);
}


@media all and (max-width: 991px) {
  .faq-area .accordion-button {
    font-size: 16px;
  }
}



/*====================
45. Auth css 
======================*/

.login-form {
  padding: 40px;
  background: var(--color-white);
  border-radius: 50px;
  box-shadow: var(--box-shadow);
}

.login-form .login-header {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-info-color);
}

.login-form .login-header img {
  width: 200px;
  margin-bottom: 10px;
}

.login-form .login-header h3 {
  color: var(--theme-color);
  margin-bottom: 5px;
  font-weight: 800;
}

.login-form .login-header p {
  font-size: 20px;
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form label {
  color:  var(--color-dark);
  margin-bottom: 5px;
}

.login-form .form-group .form-control {
  border: 1px solid var(--border-info-color);
  border-radius: 15px;
  padding: 12px 18px;
  box-shadow: none;
  transition: .5s;
}

.login-form .form-group .form-control::placeholder{
  color: var(--body-text-color);
}

.login-form .form-group .form-control:focus {
  border-color: var(--theme-color);
}

.login-form .form-check-input {
  box-shadow: none;
}

.login-form .form-check-input:focus{
  border-color: var(--theme-color);
}

.login-form .forgot-pass {
  color: var(--theme-color);
  transition: .5s;
}

.login-form .forgot-pass:hover {
  color:  var(--theme-color);
}

.login-form .theme-btn {
  width: 100%;
}

.login-form .theme-btn::before{
  width: 460px;
  height: 460px;
}

.login-form .theme-btn i {
  margin-right: 5px;
}

.login-form .form-check-input {
  margin-top: 6.3px;
}

.login-form .form-check-label a {
  color: var(--theme-color);
  transition: .5s;
}

.login-form .form-check-label a:hover {
  color: var(--theme-color);
}

.form-check-input:checked {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.login-form .login-footer {
  margin-top: 25px;
}

.login-form .login-footer p {
  text-align: center;
}

.login-form .login-footer p a {
  color: var(--theme-color);
  transition: .5s;
}

.login-form .login-footer a:hover {
  color:  var(--theme-color);
}

.social-login {
  position: relative;
  border-top: 1px solid #F1F1F1;
  margin-top: 25px;
  padding-top: 15px;
}

.social-divider{
  position: absolute;
  left: 50%;
  top: -21px;
  padding: 5px;
  background: var(--color-white);
  transform: translateX(-50%);
}

.social-login p {
  margin: 10px 0;
}

.social-login-list {
  text-align: center;
}

.social-login-list a {
  padding: 5px 20px;
  border: 2px solid var(--border-info-color);
  border-radius: 50px;
  margin: 5px;
}

.social-login-list a i{
  margin-right: 5px;
}

.social-login-list .fb-auth{
  border-color: #3B5998;
  color: #3B5998;
}

.social-login-list .fb-auth:hover{
  background: #3B5998;
  color: var(--color-white)!important;
}

.social-login-list .gl-auth{
  border-color: #DD4B39;
  color: #DD4B39;
}

.social-login-list .gl-auth:hover{
  background: #DD4B39;
  color: var(--color-white)!important;
}

.social-login-list .tw-auth{
  border-color: #55ACEE;
  color: #55ACEE;
}

.social-login-list .tw-auth:hover{
  background: #55ACEE;
  color: var(--color-white)!important;
}


@media all and (min-width: 992px) and (max-width: 1399px) {
  .login-form{
    padding: 30px;
  }

  .social-login-list a{
    margin-right: 4px;
  }
}

@media only screen and (max-width: 991px) {
  .login-form {
    padding: 40px 20px;
  }
}



/*====================
46. User css 
======================*/

/* nav account */
.nav-account img {
  width: 45px;
  border-radius: 50%;
  padding: 3px;
  border: 3px solid var(--theme-color);
  cursor: pointer;
}

.nav-account .dropdown-menu {
  border: none;
  min-width: 220px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.nav-account .dropdown-user{
  border-bottom: 1px solid var(--border-info-color);
  padding: 8px 20px;
  margin-bottom: 5px;
}

.nav-account .dropdown-user h5{
  font-size: 15px;
}

.nav-account .dropdown-user p{
  font-size: 14px;
  text-transform: lowercase;
  color: var(--body-text-color);
}

.nav-account .dropdown-menu li {
  width: 100%;
}

.nav-account .dropdown-menu li a i {
  margin-right: 5px;
}

.nav-account .dropdown-menu .dropdown-item {
  padding: 6px 20px;
  font-weight: 500;
}

.nav-account .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: var(--theme-color);
  padding-left: 25px;
}

/* user sidebar */
.user-area .sidebar {
  background: var(--color-white);
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 15px;
}

.user-area .sidebar .user-menu-angle{
  float: right;
  margin-top: 6px;
}

.user-area .sidebar .user-menu-list{
  margin-left: 35px;
}

.user-area .sidebar .user-menu-list li a{
  position: relative;
}

.user-area .sidebar .user-menu-list li a::before{
  content: "\e122";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  left: 0px;
  top: 13px;
  color: var(--theme-color);
  font-size: 8px;
  font-weight: bold;
}

.user-area .sidebar-top {
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-info-color);
}

.user-area .sidebar-profile-img {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 15px auto;
  border-radius: 50px;
  padding: 4px;
  border: 3px solid var(--theme-color);
}

.user-area .sidebar-profile-img img {
  border-radius: 50%;
}

.user-area .sidebar-profile-img button {
  position: absolute;
  border-radius: 50px;
  background: var(--theme-color);
  color: var(--color-white);
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  border: none;
  right: 0;
  bottom: 0;
}

.user-area .profile-img-file {
  display: none;
}

.user-area .sidebar-list li {
  margin: 5px 0;
}

.user-area .sidebar-list li a {
  color: var(--color-dark);
  padding: 6px 6px 6px 15px;
  display: block;
  font-weight: 500;
  transition: var(--transition);
}

.user-area .sidebar-list li a:hover {
  padding-left: 20px;
}

.user-area .sidebar-list li a i {
  margin-right: 5px;
  color: var(--theme-color);
}

.user-area .sidebar-list .active i {
  color: var(--color-white);
}

.user-area .sidebar-list .active {
  background: var(--theme-color);
  color: var(--color-white);
  border-radius: 8px;
}

.user-area .sidebar-list li a span{
  float: right;
  line-height: unset;
  padding: 0px 6px;
  border-radius: 10px;
  margin-top: 3.7px;
}


/* user card */
.user-card {
  background: var(--color-white);
  padding: 15px 20px 20px 20px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.user-card-title {
  color: var(--color-dark);
  font-size: 20px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-info-color);
}

.user-card .text-success {
  color: var(--theme-color) !important;
}

.user-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-info-color);
}

.user-card-header .user-card-title {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.user-card-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-card-header .theme-btn {
  padding: 8px 15px;
}

@media all and (max-width: 767px) {
  .user-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .user-card-header-right {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}


/* user card search */
.user-card-search .form-group {
  position: relative;
}

.user-card-search .form-control {
  padding: 10px 20px 10px 35px;
  box-shadow: none;
  border-radius: 10px;
  border-color: var(--border-info-color);
  color: var(--color-dark);
}

.user-card-search .form-control::placeholder{
  color: var(--body-text-color);
}

.user-card-search .form-control:focus {
  border-color: var(--theme-color);
}

.user-card-search i {
  position: absolute;
  left: 12px;
  top: 15px;
}

.user-card-filter .nice-select{
  height: 45px;
  line-height: 42.5px;
  border-color: var(--border-info-color);
  border-radius: 10px;
}

.user-card-filter .nice-select::after{
  width: 6px;
  height: 6px;
  margin-top: -5px;
}

/* user form */
.user-form .form-group {
  margin-bottom: 15px;
}

.user-form .form-group label {
  color: var(--color-dark);
  margin-bottom: 4px;
}

.user-form .form-control {
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: none;
  color: var(--color-dark);
}

.user-form .form-control::placeholder{
  color: var(--body-text-color);
}

.user-form .form-text{
  color: var(--body-text-color);
}

.user-form .nice-select{
  width: 100%;
  height: 50px;
  line-height: 48px;
  border-radius: 10px;
  font-size: 16px;
  padding-left: 20px;
  margin-bottom: 15px;
}

.user-form .nice-select::after{
  width: 9px;
  height: 9px;
  margin-top: -7px;
  right: 18px;
}

.user-form .nice-select .list{
  width: 100%;
}

.user-form .nice-select:focus,
.user-form .form-control:focus {
  border-color: var(--theme-color);
}

.user-form .theme-btn {
  width: unset;
  margin-top: 15px;
}

.user-form .form-img-upload {
  width: 100%;
  height: 140px;
  border: 2px dashed var(--border-info-color);
  border-radius: 10px;
  cursor: pointer;
}

.user-form .form-img-file {
  display: none;
}

.user-form .form-img-upload span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.user-form .form-img-upload span i {
  margin-right: 5px;
}

.user-form .form-check {
  margin-bottom: 15px;
}

.user-form .form-check-input {
  margin-top: 6.5px;
  box-shadow: none;
}

.user-form .form-check-input:focus {
  border-color: var(--theme-color);
}

.user-form .form-check label {
  color: var(--color-dark);
}

.user-form .form-check label a{
  color: var(--theme-color);
}

/* user badge */
.user-area .badge{
  border-radius: 50px;
  padding: 5px 12px;
}

.user-area .badge-success{
  background: #DCFCE7;
  color: #22C79C;
}

.user-area .badge-info{
  background: #F3E8FF;
  color: #A855F7;
}

.user-area .badge-primary{
  background: #DBF7FD;
  color: #0DCAF0;
}

.user-area .badge-danger{
  background: #FEE2E2;
  color: #EF4444;
}

/* dashboard */
.dashboard-widget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px;
  border-radius: 10px;
  margin: 10px 0;
}

.dashboard-widget-info span {
  font-weight: 500;
}

.dashboard-widget-info h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
}

.dashboard-widget-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border-radius: 50px;
}

.dashboard-widget.color-1 {
  background: rgba(168, 85, 247, .08);
  color: #A855F7;
}

.dashboard-widget.color-1 h1 {
  color: #A855F7;
}

.dashboard-widget.color-1 .dashboard-widget-icon {
  background: #A855F7;
  color: #fff;
}

.dashboard-widget.color-2 {
  background: rgba(17, 183, 107, .08);
  color: #11B76B;
}

.dashboard-widget.color-2 h1 {
  color: #11B76B;
}

.dashboard-widget.color-2 .dashboard-widget-icon {
  background: #11B76B;
  color: #fff;
}

.dashboard-widget.color-3 {
  background: rgba(240, 84, 84, .08);
  color: #F05454;
}

.dashboard-widget.color-3 h1 {
  color: #F05454;
}

.dashboard-widget.color-3 .dashboard-widget-icon {
  background: #F05454;
  color: #fff;
}

/* user table */
.user-area .table {
  border-collapse: separate;
  border-spacing: 0 10px;
  margin-bottom: 0;
}

.user-area .table th{
  color: var(--body-text-color);
}

.user-area .table tbody tr{
  background: var(--theme-bg-light);
  margin-bottom: 10px;
}

.user-area .table td{
  background: unset;
  color: var(--color-dark);
}

.user-area .table td:first-child {
  border-left-style: solid;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.user-area .table td:last-child {
  border-right-style: solid;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.user-area .table-list-info a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-area .table-list-info h6 {
  transition: all .5s ease-in-out;
  margin-bottom: 5px;
}

.user-area .table-list-content:hover h6 {
  color: var(--theme-color);
}

.user-area .table-list-info p{
  color: var(--color-dark);
}

.user-area .table-list-info span{
  color: var(--color-dark);
}

.user-area .table-list-img{
  background: var(--color-white);
  border-radius: 10px;
  padding: 10px;
}

.user-area .table-list-info img {
  width: 80px;
  border-radius: 8px;
}

.user-area .user-card .table>:not(caption)>*>* {
  vertical-align: middle;
  padding: 0.8rem 0.8rem;
}

.user-area .table-list-code{
  color: var(--theme-color);
  font-weight: 500;
}

@media all and (max-width: 767px) {
  .user-area .table-list-info a {
    display: block;
  }

  .user-area .table-list-info h6 {
    margin-top: 10px;
  }
}

/* user action dropdown */
.user-action-dropdown .btn{
  padding: 4px 9px;
  border-radius: 8px;
}

.user-action-dropdown .dropdown-menu{
  border: none;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.user-action-dropdown .dropdown-item{
  color: var(--color-dark);
}

.user-action-dropdown .dropdown-item:hover{
  background: transparent;
  color: var(--theme-color);
}

.user-action-dropdown .dropdown-item i{
  margin-right: 5px;
}

/* user order details */
.user-order-detail .order-detail-content{
  background: var(--theme-bg-light);
  padding: 30px;
  border-radius: 10px;
  margin-top: 15px;
}

.user-order-detail .order-detail-content h5{
  margin-bottom: 20px;
}

.user-order-detail .order-detail-content p i{
  margin-right: 5px;
}

.user-order-detail .order-detail-content li{
  margin: 5px 0;
}

.user-order-detail .order-detail-content li span{
  float: right;
}

.user-order-detail .order-detail-content li:last-child{
  border-top: 1px solid var(--border-info-color);
  margin-top: 10px;
  padding-top: 10px;
  font-weight: 500;
}

/* user ticket details */
.user-ticket-detail .ticket-detail-content{
  margin-top: 30px;
}

.user-ticket-detail .ticket-chat-item{
  display: flex;
  gap: 20px;
  margin: 50px 0;
}

.user-ticket-detail .ticket-img img{
  width: 80px;
  border-radius: 50%;
}

.user-ticket-detail .ticket-info{
  flex: 1;
}

.user-ticket-detail .ticket-info span{
  color: var(--theme-color);
}

/* user order track */
.user-track-order .track-order-content{
  margin-top: 30px;
}

.user-track-order .track-order-content h5{
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;
}

.user-track-order .track-order-content h5 span{
  color: var(--theme-color2);
}

.user-track-order .track-order-info{
  margin-top: 25px;
}

.user-track-order .track-order-info a{
  background: var(--theme-bg-light);
  padding: 10px 20px;
  border-radius: 10px;
  margin: 0 5px 5px 0;
}

.user-track-order .track-order-info a span{
  font-weight: 500;
}

.user-track-order .track-order-step{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}

.user-track-order .track-order-step .step-item{
  text-align: center;
  padding: 10px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.user-track-order .track-order-step .step-item::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background: var(--theme-color2);
  left: 0;
  top: 50px;
  z-index: -1;
}

.user-track-order .track-order-step .step-item:first-child:before{
  width: 50%;
  left: unset;
  right: 0;
}

.user-track-order .track-order-step .step-item:last-child:before{
  width: 50%;
}

.user-track-order .track-order-step .step-item.completed::before{
  background: var(--color-red);
}

.user-track-order .track-order-step .step-icon{
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: var(--theme-color2);
  color: var(--color-white);
  font-size: 35px;
  border-radius: 50%;
  margin: 0 auto;
}

.user-track-order .track-order-step .step-item.completed .step-icon{
  background: var(--color-red);
}

.user-track-order .track-order-step .step-item h6{
  margin-top: 15px;
  font-size: 14px;
}

@media all and (max-width: 767px) {
  .user-track-order .track-order-step{
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .user-track-order .track-order-step .step-item::before{
    display: none;
  }
}

/* user country */
.user-country .user-country-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
}

.user-country .user-country-list li:last-child{
  margin-bottom: 0;
}

.user-country .user-country-list li img{
  width: 35px;
  border-radius: 4px;
}

.user-country .user-country-list li h6{
  color: var(--body-text-color);
  font-weight: 500;
  flex: 1;
}

.user-country .user-country-list li span{
  color: var(--body-text-color);
  font-weight: 500;
}

/* user store */
.user-store .store-file{
  display: none;
}

.user-store .store-logo-preview{
  position: relative;
  width: 120px;
  height: 120px;
  margin-top: 10px;
  margin-bottom: 30px;
  border: 1px solid var(--border-info-color);
  padding: 10px;
  border-radius: 50%;
}

.user-store .store-banner-preview{
  position: relative;
  margin-top: 10px;
  margin-bottom: 30px;
}

.user-store .store-banner-preview img{
  border-radius: 12px;
}

.user-store .store-banner-preview button,
.user-store .store-logo-preview button{
  position: absolute;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  background: var(--theme-color);
  color: var(--color-white);
  border: none;
  box-shadow: var(--box-shadow);
}

.user-store .store-logo-preview button{
  right: -10px;
  bottom: 20px;
}

.user-store .store-banner-preview button{
  right: 20px;
  bottom: 20px;
}

/* user payout */
.user-payout .user-payout-content{
  margin-top: 20px;
}

.user-payout .payout-item{
  background: var(--theme-bg-light);
  padding: 30px;
  border-radius: 10px;
}

.user-payout .next-payout p{
  margin-top: 20px;
  margin-bottom: 36px;
  font-size: 18px;
}

.user-payout .next-payout p span{
  font-weight: 500;
}

.user-payout .payout-method .payout-method-img{
  margin-top: 20px;
  margin-bottom: 25px;
}

.user-payout .payout-method .payout-method-img img{
  width: 100px; 
  margin-right: 10px;
}

@media all and (max-width: 991px) {
  .user-payout .next-payout{
    margin-bottom: 20px;
  }
}

/* user setting */
.user-setting .form-check{
  margin-bottom: 10px;
}

.user-setting .form-check-input{
  margin-top: 6.5px;
  box-shadow: none;
}

.user-setting .form-check-label{
  color: var(--body-text-color);
}

/* user message */
.user-message .message-wrapper {
  display: flex;
}

.user-message .message-inbox {
  max-width: 340px;
  border: 1px solid var(--border-info-color);
  border-radius: 10px;
}

.user-message .message-inbox {
  overflow: hidden;
}

.user-message .message-content {
  padding-left: 30px;
  position: relative;
  overflow: hidden;
}

.user-message .message-content-info {
  max-height: 750px;
  overflow-y: scroll;
  margin-right: -50px;
  padding-right: 50px;
}

.user-message .message-inbox,
.user-message .message-content {
  flex: 1;
}

.user-message .message-inbox ul {
  max-height: 950px;
  overflow-y: scroll;
  width: 357px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.user-message .message-inbox ul li.message-active {
  border-left: 3px solid var(--theme-color);
}

.user-message .message-inbox ul li {
  border-bottom: 1px solid var(--border-info-color);
  transition: .2s;
  list-style: none;
}

.user-message .message-inbox ul li:last-child {
  border-bottom: none;
}

.user-message .message-by-content h5 {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1;
}

.user-message .message-inbox ul li a {
  position: relative;
  display: block;
  padding: 30px;
}

.user-message .message-inbox .message-avatar {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.user-message .message-avatar img {
  display: inline-block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.user-message .message-avatar img {
  width: 50px;
  height: 50px;
}

.user-message .message-inbox .message-by {
  margin-left: 50px;
}

.user-message .message-by-content h5 i {
  background: var(--color-yellow);
  padding: 3px 8px;
  border-radius: 50px;
  color: var(--color-white);
  font-size: 13px;
}

.user-message .message-by-content span {
  font-size: 13px;
  position: absolute;
  top: 25.5px;
  right: 25px;
  float: right;
  color: var(--body-text-color);
}

.user-message .message-inbox .message-by p {
  height: 26px;
  max-width: 205px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 14px;
  margin: 0;
  padding: 0;
  color: var(--body-text-color);
  line-height: 27px;
}

.user-message .message-item {
  display: block;
  position: relative;
  margin-bottom: 25px;
}

.user-message .message-item .message-avatar {
  position: absolute;
  left: 0;
  top: 0;
}

.user-message .message-item .message-avatar img {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
}

.user-message .message-item .message-description {
  margin-left: 70px;
  background: var(--theme-bg-light);
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.user-message .message-item .message-description::before {
  position: absolute;
  top: 0px;
  left: -9px;
  content: "\f0d9";
  font-family: "Font Awesome 6 Pro";
  font-weight: bold;
  font-size: 31px;
  color: var(--theme-bg-light);
}

.user-message .message-item .message-description p {
  font-size: 15px;
  padding: 0;
  margin: 0;
  line-height: 27px;
}

.user-message .message-item.me .message-avatar {
  left: auto;
  right: 0;
  position: absolute;
  top: 0;
}

.user-message .message-item.me .message-description {
  color: var(--theme-color);
  background: #F2F7FF;
  margin-left: 0;
  margin-right: 70px;
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.user-message .message-item.me .message-description::before {
  content: "\f0da";
  left: auto;
  right: -10px;
  color: #F2F7FF;
}

.user-message .message-reply {
  margin-top: 15px;
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 15px;
}

.user-message .message-reply .form-control {
  padding: 15px 20px;
  box-shadow: none;
  border-radius: 10px;
  color: var(--color-dark);
}

.user-message .message-reply .form-control::placeholder{
  color: var(--body-text-color);
}

.user-message .message-reply .form-control:focus {
  border-color: var(--theme-color);
}

.user-message .message-reply .theme-btn {
  margin-top: 15px;
}

.user-message .message-status {
  width: 12px;
  height: 12px;
  background: var(--theme-color);
  display: flex;
  border-radius: 50%;
  border: 3px solid var(--color-white);
  position: absolute;
  right: -5px;
  top: 50%;
}

.user-message .message-status.online {
  background: var(--theme-color);
}

.user-message .message-status.offline {
  background: var(--color-red);
}

.user-message .message-status.busy {
  background: var(--color-yellow);
}

.user-message .header-account:hover{
  cursor: pointer;
}

.user-message .header-account img {
  width: 45px;
  border-radius: 50%;
}

.user-message .header-account .dropdown-menu{
  border: none;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.user-message .header-account .dropdown-item{
  color: var(--color-dark);
}

.user-message .header-account .dropdown-item:hover{
  background: transparent;
  color: var(--theme-color);
  padding-left: 20px;
}


@media all and (max-width: 991px) {
  .user-message .message-by-content span {
    right: 65px;
  }

  .user-message .message-reply {
    right: 0;
  }
}

@media all and (max-width: 767px) {
  .user-message .message-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .user-message .user-card-header {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .user-message .message-content {
    padding-left: 0;
    padding-bottom: 200px;
  }

  .user-message .message-reply {
    left: 0;
  }
}



/*====================
47. Coming soon css 
======================*/

.coming-soon {
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center !important;
  min-height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  position: relative;
}

.coming-soon .container {
  position: relative;
}

.coming-soon:before {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, .7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.coming-soon-content .title{
  margin-bottom: 8px;
}

.coming-soon-content .lead{
  font-weight: 500;
}

.coming-soon .newsletter-form {
  position: relative;
  margin-top: 30px;
}

.coming-soon .newsletter-form .input-newsletter {
  height: 55px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 15px;
  font-size: 14px;
  padding-top: 0;
  padding-right: 150px;
  padding-bottom: 0;
  padding-left: 25px;
  box-shadow: none;
}

.coming-soon .newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  height: auto;
  border: none;
  border-radius: 12px;
  background: var(--theme-color);
  display: inline-block;
  color: var(--color-white);
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 500;
  transition: .5s;
}

.coming-soon .newsletter-form button:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.coming-social {
  margin-top: 30px;
  text-align: center;
}

.coming-social a {
  color: var(--color-white);
  margin: 5px;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  border-radius: 12px;
  border: 2px solid var(--color-white);
  display: inline-block;
  transition: .5s;
}

.coming-social a:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.coming-soon-countdown {
  margin-top: 30px;
}

@media all and (max-width: 1399px) {
  .coming-soon-content{
    margin-top: 0;
  }
}


/*====================
48. Error css 
======================*/

.error-wrapper {
  text-align: center;
}

.error-wrapper h1 {
  font-size: 250px;
  letter-spacing: 5px;
  font-weight: bold;
  color: var(--theme-color);
}

.error-wrapper h1 span {
  color:  var(--color-dark);
}

.error-wrapper h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.error-wrapper img {
  width: 100%;
}

.error-wrapper .theme-btn {
  margin-top: 30px;
}


@media all and (max-width: 767px) {
  .error-wrapper h1 {
    font-size: 160px;
  }
}




/*====================
49. Terms/privacy css 
====================== */

.terms-content:not(:last-child) {
  margin-bottom: 54px;
}

.terms-content:first-child {
  margin-top: -3px;
}

.terms-content .terms-list {
  margin-top: 37px;
}

.terms-content h3 {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.terms-content p:not(:last-child) {
  margin-bottom: 26px;
}

.terms-list li:not(:last-child) {
  margin-bottom: 16px;
}



/*============================
50. Mail success css 
==============================*/

.mail-success{
  position: relative;
}

.mail-success-content{
  background: var(--color-white);
  padding: 50px;
  text-align: center;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
}

.mail-success-icon{
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 35px;
  color: var(--color-white);
  background: var(--theme-color);
  margin: 0 auto;
  border-radius: 50px;
  margin-bottom: 20px;
}

.mail-success-content h3{
  text-transform: capitalize;
}

.mail-success-content p{
  margin-top: 15px;
  margin-bottom: 30px;
}




/*====================
51. Blog css 
======================*/

.blog-area{
  position: relative;
}

.blog-item{
  background: var(--color-white);
  padding: 20px;
  border: 1px solid var(--border-info-color);
  border-radius: 40px;
  transition: var(--transition);
}

.blog-item-img{
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.blog-item-img img {
  border-radius: 25px;
  box-shadow: var(--box-shadow);
}

.blog-item:hover .blog-item-img img{
  transform: scale(1.1);
} 

.blog-date{
  position: absolute;
  right: 15px;
  bottom: 15px;
  background: var(--theme-color);
  color: var(--color-white);
  font-weight: 500;
  border-radius: 50px 50px 50px 0;
  padding: 4px 12px 4px 15px;
}

.blog-item-meta{
  padding: 14px 0;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-info-color);
}

.blog-item-meta ul li {
  display: inline-block;
  margin-right: 15px;
  font-weight: 500;
  position: relative;
  color:  var(--color-dark);
}

.blog-item-meta ul li i {
  margin-right: 5px;
  color: var(--theme-color);
}

.blog-item-meta a:hover {
  color: var(--theme-color);
}

.blog-title {
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.blog-item-info p {
  margin-bottom: 16px;
}

.blog-item-info .theme-btn {
  margin-top: 10px;
}

.blog-item-info h4 a {
  color:  var(--color-dark);
}

.blog-item-info h4 a:hover {
  color: var(--theme-color);
}

/* blog-area 2 */
.blog-area2 .blog-item{
  position: relative;
}

.blog-area2 .blog-item .blog-date{
  top: 4px;
  right: 50px;
  bottom: unset;
  border-radius: 50px;
  background: var(--color-white);
  color: var(--theme-color);
  z-index: 1;
}

.blog-area2 .blog-item-info{
  margin-top: 20px;
}

.blog-area2 .blog-item .blog-item-meta{
  padding: 14px 0;
  margin-top: 14px;
  padding-bottom: 0;
  margin-bottom: 0;
  border-top: 1px solid var(--border-info-color);
  border-bottom: 0;
}



/*========================
52. Blog single css
==========================*/

.blog-thumb-img {
  margin-bottom: 20px;
}

.blog-single-content img {
  border-radius: 15px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.blog-meta .blog-meta-left ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-meta .blog-meta-left ul li{
  font-weight: 500;
}

.blog-meta i {
  margin-right: 5px;
  color: var(--theme-color);
}

.blog-meta a {
  color: var(--body-text-color);
  font-weight: 500;
}

.blog-meta a:hover {
  color: var(--theme-color);
}

.blog-details-title {
  font-size: 34px;
  color:  var(--color-dark);
}

.blockqoute {
  position: relative;
  background: var(--theme-bg-light);
  border-left: 5px solid var(--theme-color);
  padding: 30px;
  font-size: 17px;
  font-style: italic;
  margin: 20px 0;
  border-radius: 0px;
}

.blockqoute i{
  position: absolute;
  right: 30px;
  bottom: 8px;
  color: var(--theme-color);
  font-size: 90px;
  opacity: .2;
}

.blockqoute-author {
  margin-top: 20px;
  padding-left: 60px;
  position: relative;
  color:  var(--color-dark);
}

.blockqoute-author::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: var(--theme-color);
  left: 0;
  top: 10px;
}

.blog-details-tags {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details-tags h5 {
  color:  var(--color-dark);
}

.blog-details-tags ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-details-tags ul a {
  background: var(--theme-bg-light);
  color:  var(--color-dark);
  padding: 4px 18px 5px 18px;
  border-radius: 50px;
  transition: var(--transition);
}

.blog-details-tags ul a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.blog-author {
  display: flex;
  justify-content: start;
  align-items: center;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin: 50px 0;
  padding: 20px;
}

.blog-author-img {
  width: 320px;
}

.blog-author-img img {
  border-radius: 15px;
}

.author-name {
  font-size: 22px;
  color: var(--theme-color);
  margin: 8px 0;
}

.author-info {
  padding: 0 20px;
}

.author-social {
  margin-top: 10px;
}

.author-social a {
  width: 35px;
  height: 35px;
  line-height: 31px;
  text-align: center;
  border: 2px solid var(--theme-color);
  border-radius: 50px;
  margin-right: 5px;
  color: var(--theme-color);
  transition: var(--transition);
}

.author-social a:hover {
  color: var(--color-white);
  background: var(--theme-color);
}

.blog-comments {
  margin-bottom: 50px;
}

.blog-comments h3 {
  color:  var(--color-dark);
}

.blog-comments-wrap {
  margin: 30px 0;
}

.blog-comments-item {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  margin-top: 50px;
}

.blog-comments-item img {
  border-radius: 50%;
}

.blog-comments-content {
  padding: 0 0 0 20px;
}

.blog-comments-content span {
  font-size: 14px;
  color: var(--theme-color);
  font-weight: 500;
}

.blog-comments-content a {
  font-weight: 500;
  margin-top: 5px;
  color: var(--theme-color);
}

.blog-comments-content a:hover {
  color:  var(--color-red);
}

.blog-comments-content h5 {
  color:  var(--color-dark);
}

.blog-comments-reply {
  margin-left: 50px;
}

.blog-comments-form {
  padding: 30px;
  margin-top: 50px;
  border-radius: 10px;
  background: var(--theme-bg-light);
}

.blog-comments-form h3 {
  margin-bottom: 20px;
}

.blog-comments-form .form-group {
  margin-bottom: 20px;
}

.blog-comments-form .form-control {
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: none;
  transition: var(--transition);
}

.blog-comments-form .form-control::placeholder{
  color: var(--body-text-color);
}

.blog-comments-form .form-control:focus {
  border-color: var(--theme-color);
}


@media all and (max-width: 767px) {
  .blog-meta {
    flex-direction: column;
    font-size: 15px;
  }

  .blog-meta .blog-meta-left ul {
    gap: 10px;
  }

  .blog-details-tags {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-author {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .author-info{
    margin-top: 25px;
  }

  .blog-comments-item {
    flex-direction: column;
    text-align: center;
    padding: 30px 0px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    border-radius: 10px;
  }

  .blog-comments-item img{
    margin: 0 auto 20px auto;
  }

  .blog-comments-reply {
    margin-left: 0px;
  }
}



/*=======================
53. Widget sidebar css
=========================*/

.widget {
  background: var(--theme-bg-light);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 15px;
}

.widget .widget-title {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 700;
  color:  var(--color-dark);
}

.widget .widget-title::before {
  position: absolute;
  content: '';
  width: 10px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 0;
}

.widget .widget-title::after {
  position: absolute;
  content: '';
  width: 25px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 15px;
}

.widget .search-form .form-control {
  padding: 12px 15px 12px 15px;
  border-radius: 12px;
  box-shadow: none;
}

.widget .search-form {
  position: relative;
}

.widget .search-form .form-control:focus {
  border-color: var(--theme-color);
}

.widget .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  padding: 8px 18px 6px 18px;
  background: transparent;
  border: none;
  color: var(--theme-color);
}

.widget .category-list a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border-info-color);
  transition: var(--transition);
}

.widget .category-list a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.widget .category-list a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}

.widget .category-list a i {
  margin-right: 5px;
  color: var(--theme-color);
}

.widget .category-list a span {
  float: right;
}

.widget .recent-post-item {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 20px;
}

.widget .recent-post-item:last-child{
  margin-bottom: 0;
}

.widget .recent-post-img {
  margin-right: 20px;
}

.widget .recent-post-img img {
  width: 120px;
  border-radius: 12px;
}

.widget .recent-post-bio h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: capitalize;
}

.widget .recent-post-bio span {
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-color);
}

.widget .recent-post-bio span i {
  margin-right: 5px;
}

.widget .recent-post-bio h6 a:hover {
  color: var(--theme-color);
}

.widget .social-share-link a {
  width: 35px;
  height: 35px;
  line-height: 32px;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  text-align: center;
  margin-right: 5px;
  border-radius: 50px;
  transition: var(--transition);
}

.widget .social-share-link a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.widget .tag-list a {
  background: var(--color-white);
  color:  var(--color-dark);
  padding: 5px 15px;
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 8px;
  display: inline-block;
  transition: var(--transition);
}

.widget .tag-list a:hover {
  background-color: var(--theme-color);
  color: var(--color-white);
}



/*====================
54. Pagination css 
======================*/

.pagination-area{
  position: relative;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination .page-link {
  border: none;
  background:  var(--color-dark);
  color: var(--color-white);
  margin: 0 10px;
  border-radius: 10px !important;
  width: 40px;
  height: 40px;
  line-height: 28px;
  text-align: center;
  transition: var(--transition);
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background: var(--theme-color);
  color: var(--color-white);
  z-index: 1;
}



/*====================
55. Breadcrumb css 
======================*/

.site-breadcrumb {
  position: relative;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  padding-top: 50px;
  padding-bottom: 50px;
  z-index: 1;
}

.site-breadcrumb-bg {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center !important;
  background-size: cover !important;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
  font-size: 25px;
  color: var(--color-dark);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: var(--color-dark);
  font-weight: 500;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: var(--color-dark);
  transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: "\F280";
 font-family: "Font Awesome 6 Free";
  right: -21px;
  top: 1px;
  text-align: center;
  font-size: 16px;
  color: var(--color-dark);
}

.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
  color: var(--color-red);
}

.site-breadcrumb .breadcrumb-menu li.active {
  color: var(--color-dark);
}



/*===================
56. Contact us css 
=====================*/

.contact-area {
  position: relative;
}

.contact-content {
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  padding: 25px 15px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 20px;
  background:var(--color-white);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.contact-info:hover{
  transform: translateY(-8px)
}

.contact-info-icon i {
  font-size: 35px;
  color: var(--color-white);
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50px;
  background: var(--theme-color);
}

.contact-info h5 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.contact-info p{
  color: var(--body-text-color);
  font-weight: 500;
  font-size: 16px;
}

.contact-form{
  background: var(--color-white);
  border-radius: 20px;
  padding: 30px 30px 10px 30px;
  box-shadow: var(--box-shadow);
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  color:  var(--color-dark);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: none;
  transition: var(--transition);
}

.contact-form .form-group .form-control::placeholder{
  color: var(--body-text-color);
}

.contact-form .form-group .form-control:focus {
  border-color: var(--theme-color);
}

.contact-map {
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
}


@media all and (max-width: 991px) {
  .contact-info{
    padding: 35px;
  }
}

@media all and (max-width: 768px) {
  .contact-content {
    margin-top: 50px;
    margin-bottom: 0;
  }
}



/* ========================
57. Gallery css 
=========================== */

.gallery-item {
  position: relative;
  width: 100%;
  text-align: center;
}

.gallery-img {
  position: relative;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.gallery-img::before{
  content:"";
  position: absolute;
  inset: 0;
  background: var(--theme-color2);
  transition: all 0.7s ease-in-out;
  transform: translateY(-110%);
}

.gallery-img:hover::before{
  transform: translateY(110%);
}

.gallery-img::after{
  content:"";
  position: absolute;
  inset: 0;
  background: var(--theme-color2);
  opacity: .8;
  transition: all 0.7s ease-in-out;
  transform: translateY(-110%);
}

.gallery-img:hover::after{
  transform: none;
}

.gallery-img img {
  width: 100%;
  border-radius: 30px;
}

.gallery-link {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  font-size: 34px;
  color: var(--theme-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--color-white);
  transition: all 200ms 0ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transform: translate(-50%, -50%) scale(0);
  z-index: 1;
}

.gallery-item:hover .gallery-link {
  transform: translate(-50%, -50%) scale(1);
  transition: all 300ms 100ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 0.7s;
}



/* ===================
58. Affiliate css 
====================== */

.affiliate-area{
  position: relative;
}

.affiliate-img{
  position: relative;
}

.affiliate-img::before{
  content: "";
  position: absolute;
  right: 30px;
  bottom: 0;
  width: 50%;
  height: 100%;
  background: var(--theme-color);
  transform: rotate(5deg);
  border-radius: 20px;
  z-index: -1;
}

.affiliate-img img{
  border-radius: 20px;
  width: 90%;
}

.affiliate-item{
  display: flex;
  align-items: center;
  border-radius: 12px;
}

.affiliate-percentage{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  text-align: center;
  border: 5px solid var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--color-red);
}

.affiliate-percentage h1{
  color: var(--color-white);
  font-weight: bold;

}

.affiliate-percentage h1 span{
  font-size: 20px;
  color: var(--color-white);
}

.affiliate-item .level{
  color: var(--color-white);
  font-weight: 500;
}


@media all and (max-width: 991px) {
  .affiliate-img{
    margin-bottom: 35px;
  }
}



/* ===================
59. Cta css 
====================== */

.cta-area{
  position: relative;
  background: var(--theme-color2);
  overflow: hidden;
  z-index: 1;
}

.cta-area::before{
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border: 30px solid var(--color-white);
  border-radius: 50%;
  left: 50px;
  bottom: -100px;
  opacity: .1;
  z-index: -1;
}

.cta-area::after{
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border: 30px solid var(--color-white);
  border-radius: 50%;
  right: 50px;
  top: -150px;
  opacity: .1;
  z-index: -1;
}

.cta-content{
  text-align: center;
}

.cta-content h6{
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 600;
}

.cta-content h1{
  color: var(--color-white);
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 15px;
}

.cta-content h1 span{
  color: var(--theme-color);
}

.cta-content p{
  color: var(--color-white);
}

.cta-content .theme-btn{
  margin-top: 25px;
}



/* ===================
60. Process css 
====================== */

.process-area{
  position: relative;
}

.process-item{
  padding: 25px;
  border-radius: 30px;
  position: relative;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
}

.process-item .icon{
  width: 80px;
  height: 80px;
  line-height: 75px;
  text-align: center;
  background: var(--theme-color2);
  border-radius: 50px;
  margin-bottom: 20px;
}

.process-item .icon img{
  width: 45px;
  filter: brightness(0) invert(1);
}

.process-item .icon span{
  position: absolute;
  right: 20px;
  top: 0;
  font-weight: 800;
  font-size: 40px;
  color: transparent;
  -webkit-text-stroke: 1px var(--theme-color);
}

.process-item h4{
  color: var(--color-dark);
  margin-bottom: 10px;
}



/* ===================
61. Instagram css 
====================== */

.instagram-area{
  position: relative;
}

.instagram-item {
  position: relative;
}

.instagram-img img{
  border-radius: 50px;
}

.instagram-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  opacity: 0;
  z-index: 0;
  transition: 0.4s;
}

.instagram-item a {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  background: var(--theme-color);
  color: var(--color-white);
  font-size: 20px;
  visibility: hidden;
  opacity: 0;
  text-align: center;
  z-index: 2;
  transition: 0.4s;
  transform: translate(-50%, -50%);
}

.instagram-item:hover::after {
  width: 100%;
  opacity: 1;
}

.instagram-item:hover a {
  visibility: visible;
  opacity: 1;
}



/*====================
62. Choose css 
======================*/

.choose-area{
  position: relative;
}

.choose-img img{
  border-radius: 100px 100px 0 100px;
  box-shadow: var(--box-shadow);
}

.choose-content{
  margin-top: 70px;
}

.choose-item{
  display: flex;
  gap: 18px;
  padding: 20px;
  background: var(--color-white);
  border-radius: 50px 0 50px 50px;
}

.choose-icon{
  width: 80px;
  height: 80px;
  line-height: 76px;
  text-align: center;
  background: var(--theme-color);
  border-radius: 50px 0 50px 50px;
}

.choose-icon img{
  width: 50px;
  filter: brightness(0) invert(1);
}

.choose-info{
  flex: 1;
}

.choose-info h4{
  color: var(--color-dark);
  margin-bottom: 8px;
}

.choose-info p{
  color: var(--body-text-color);
}

/* choose-area2 */
.choose-area2 .choose-content{
  margin-top: 30px;
}

.choose-area2 .choose-img img{
  border-radius: 100px;
}

.choose-area2 .choose-item{
  border-radius: 40px;
  border: 1px solid var(--border-info-color);
}

.choose-area2 .choose-icon{
  border-radius: 50px;
}




/*====================
63. Newsletter css 
======================*/

.newsletter-area{
  position: relative;
}

.newsletter-wrap{
  position: relative;
  background-image: url(../images/newsletter/01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 0;
  border-radius: 25px;
  z-index: 1;
}

.newsletter-wrap::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 41, 52, .5);
  border-radius: 25px;
  z-index: -1;
}

.newsletter-content{
  text-align: center;
}

.newsletter-content h3{
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: var(--color-white);
}

.newsletter-content h3 span{
  color: var(--color-yellow);
}

.newsletter-content p{
  color: var(--color-white);
  font-size: 18px;
  text-transform: lowercase;
}

.subscribe-form{
  margin-top: 20px;
}

.subscribe-form .form-control {
  padding: 18px 150px 18px 30px;
  border-radius: 50px;
  box-shadow: none;
  border: none;
}

.subscribe-form{
  position: relative;
}

.subscribe-form .theme-btn {
  position: absolute;
  right: -10px;
  top: 5px;
  border-radius: 50px;
}


@media all and (max-width: 991px) {
  .newsletter-wrap{
    padding: 80px 20px;
  }

  .subscribe-form .form-control {
    padding: 18px 135px 18px 20px;
  }
}

/* newsletter area 2 */
.newsletter-area2 .newsletter-wrap{
  padding: 80px 50px;
  background-image: url(../img/newsletter/bg.jpg);
}

.newsletter-area2 .newsletter-wrap::before{
  display: none;
}

.newsletter-area2 .newsletter-content{
  text-align: left;
}

@media all and (max-width: 767px) {
  .newsletter-area2 .newsletter-wrap {
    padding: 40px 20px;
  }
}





/*====================
64. Footer css 
======================*/

.footer-area {
  background: var(--footer-bg);
  position: relative;
  z-index: 1;
}

.ft-bg::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/shape/04.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: .1;
  z-index: -1;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 210px;
  margin-bottom: 15px;
}

.footer-widget-title {
  color: var(--color-white);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 18px;
  z-index: 1;
}

.footer-widget-title::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: var(--theme-color);
  border-radius: 50px;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  bottom: 0;
  left: 14px;
  z-index: -1;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-list li a {
  position: relative;
  color: var(--color-white);
  transition: var(--transition);
}

.footer-list li a::before{
  content: ".";
  position: absolute;
  left: -3px;
  top: .5px;
  font-size: 50px;
  line-height: 0;
  color: var(--theme-color);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.footer-list li a:hover::before{
  opacity: 1;
  visibility: visible;
}

.footer-list li a i {
  margin-right: 5px;
  color: var(--theme-color);
}

.footer-list li a:hover {
  padding-left: 12px;
  color: var(--theme-color);
}

.footer-widget-box p {
  color: var(--color-white);
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--footer-text-color);
  font-size: 16px;
  margin-bottom: 8px;
}

.footer-contact li a {
  color: var(--footer-text-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-contact li i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 16px;
  margin-right: 11px;
  border-radius: 50px;
  background: var(--theme-color);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-white);
}

.footer-download h5{
  color: var(--color-white);
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}

.footer-download-btn{
  display: flex;
  gap: 10px;
}

.footer-download-btn a{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px 10px 10px;
  background: var(--theme-color);
  color: var(--color-white);
  border-radius: 7px;
  box-shadow: var(--box-shadow);
}

.footer-download-btn a i{
  font-size: 32px;
}

.download-btn-info{
  display: flex;
  flex-direction: column;
}

.download-btn-info span{
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
}

.download-btn-info h6{
  color: var(--color-white);
  font-size: 14px;
  margin-top: 5px;
}

.copyright {
  position: relative;
}

.copyright-wrap{
  padding: 28px 0;
  border-top: 1px solid var(--border-white-color);
}

.copyright .copyright-text {
  color: var(--footer-text-color);
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: var(--theme-color);
  font-weight: 500;
}

.footer-payment span{
  display: block;
  color: var(--color-white);
  margin-bottom: 8px;
}

.footer-payment img{
  width: 50px;
  margin-right: 2px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: end;
}

.footer-social span{
  line-height: 39px;
  color: var(--color-white);
}

.footer-social a{
  height: 38px;
  width: 38px;
  line-height: 39px;
  text-align: center;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

@media all and (min-width: 1199px) and (max-width: 1399px) {
  .footer-download-btn a i{
    font-size: 27px;
  }

  .download-btn-info span{
    font-size: 10px;
  }

  .download-btn-info h6{
    font-size: 12px;
  }

  .footer-payment img{
    width: 46px;
  }
}

@media all and (min-width: 992px) and (max-width: 1199px) {
  .footer-payment span,
  .footer-social span{
    display: none;
  }

  .footer-payment img{
    width: 38px;
  }
}

@media all and (max-width: 991px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }

  .footer-payment{
    margin-bottom: 20px;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .footer-top-link {
    margin-top: 8px;
  }

  .copyright .copyright-text{
    text-align: start;
  }
}

/* light */
.footer-area.light{
  background: var(--theme-color-light);
}

.footer-area.light .footer-widget-title{
  color: var(--color-dark);
  font-weight: 600;
}

.footer-area.light .footer-widget-title::after{
  background: var(--theme-color);
}

.footer-area.light .footer-widget-box p{
  color: var(--body-text-color);
}

.footer-area.light .footer-contact li{
  margin-bottom: 9px;
}

.footer-area.light .footer-list li a{
  color: var(--body-text-color);
  position: relative;
}
.footer-area.light .footer-list li a:hover{
  color: var(--theme-color);
}

.footer-area.light .footer-contact li,
.footer-area.light .footer-contact li a{
  color: var(--body-text-color);
}

.footer-area.light .footer-contact li i{
  background: var(--theme-color);
}

.footer-area.light .footer-newsletter .form-control{
  border-radius: 12px;
  padding: 16px 70px 16px 18px;
  border: 1px solid var(--border-info-color);
}

.footer-area.light .footer-newsletter .theme-btn{
  border-radius: 10px;
  top: 5px;
  right: 5px;
  padding: 9px 18px
}

.footer-area.light .footer-newsletter .theme-btn i{
  margin-left: 0;
}

.footer-area.light .footer-download h5{
  color: var(--color-dark);
  margin-bottom: 20px;
}

.footer-area.light .footer-download-btn a{
  background: var(--theme-color);
}

.footer-area.light .copyright-wrap{
  border-top: 1px solid var(--border-info-color);
}

.footer-area.light .footer-social span,
.footer-area.light .footer-payment span,
.footer-area.light .copyright .copyright-text{
  color: var(--body-text-color);
}

.footer-area.light .footer-social a{
  background: var(--theme-color);
}

.footer-area.light .footer-top-link h5{
  color: var(--color-dark);
}

.footer-area.light .footer-top-link-info a{
  border-color: var(--border-info-color);
  color: var(--body-text-color);
}

.footer-area.light .footer-top-link-info a:hover{
  color: var(--color-white);
}



/*====================
65. Home 2 css 
======================*/

.home-2 .navbar{
  background: transparent;
  z-index: 3;
}

.home-2 .navbar.fixed-top{
  background: var(--color-white);
}

.home-2 .hs-1{
  margin-top: -8rem;
}

.home-2 .hs-1 .hero-single{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 250px;
  padding-bottom: 180px;
}

/* hero-img */
.home-2 .hs-1 .hero-img{
  position: absolute;
  right: -50px;
  bottom: -180px;
  text-align: center;
  width: 60%;
}

.home-2 .hs-1 .hero-img-info{
  position: absolute;
  right: 2%;
  top: 5%;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 225px;
  background: var(--color-white);
  padding: 10px 10px;
  border-radius: 50px 50px 50px 0;
  box-shadow: var(--box-shadow);
}

.home-2 .hs-1 .hero-img-info .icon{
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: var(--theme-color);
  border-radius: 50px 50px 50px 0;
  text-align: center;
}

.home-2 .hs-1 .hero-img-info img{
  width: 50px;
  filter: brightness(0) invert(1);
}

.home-2 .hs-1 .hero-img-info h6{
  color: var(--theme-color);
  font-weight: 600;
  flex: 1;
}

/* product search */
.home-2 .search-product{
  position: relative;
  z-index: 2;
}

.home-2 .search-form{
  background: var(--color-white);
  border-radius: 0px 20px 20px 20px;
  padding: 20px;
  margin-top: -58px;
  box-shadow: var(--box-shadow);
}

.home-2 .search-form h5{
  margin-bottom: 10px;
}

.home-2 .search-form .nice-select{
  width: 100%;
  height: 50px;
  line-height: 48px;
  border-color: var(--border-info-color);
  border-radius: 12px;
  font-size: 16px;
}

.home-2 .search-form .nice-select:focus{
  border-color: var(--theme-color);
}

.home-2 .search-form .nice-select::after{
  width: 8px;
  height: 8px;
  margin-top: -5px;
  right: 15px;
}

.home-2 .search-form .nice-select .list{
  width: 100%;
  height: 250px;
  overflow-y: auto;
  border-radius: 12px;
}

.home-2 .search-form .form-control{
  border-color: var(--border-info-color);
  color: var(--body-text-color);
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: none;
}

.home-2 .search-form .form-control::placeholder{
  color: var(--body-text-color);
}

.home-2 .search-form .form-control:focus{
  border-color: var(--theme-color);
}

.home-2 .search-form .theme-btn{
  width: 100%;
}

.home-2 .ft-bg::before{
  background-image: url(../img/shape/06.jpg);
  opacity: .15;
}

@media all and (min-width: 992px) {
  .home-2 .navbar .nav-item .nav-link {
    padding: 25px 0 25px 0;
  }
}

@media all and (min-width: 992px) and (max-width: 1199px) {
  .home-2 .navbar.navbar-expand-lg .offcanvas .offcanvas-body {
    gap: 30px;
  }

  .home-2 .navbar .nav-right {
    display: flex;
  }
}

@media all and (max-width: 991px) {
  .home-2 .hs-1 .hero-single{
    padding-top: 220px;
    padding-bottom: 0;
  }

  .home-2 .hs-1 .hero-right{
    position: relative;
  }

  .home-2 .hs-1 .hero-img{
    position: relative;
    width: 100%;
    bottom: 0;
    right: 0;
  }

  .home-2 .hs-1 .hero-img-info{
    top: 30%;
    right: -20px;
  }

  .home-2 .search-form .nice-select,
  .home-2 .search-form .form-group{
    margin-bottom: 20px;
  }
} 



/*====================
65. Home 4 css 
======================*/

.home-4 .header-top{
  background: var(--theme-color);
  padding: 7px 0 10px 0;
  border: none;
}

.home-4 .navbar{
  background: var(--color-white);
}

.home-4 .hs-1 .hero-single{
  background: var(--theme-color-light);
  border-radius: 50px;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.home-4 .hs-1 .hero-single .hero-title span{
  display: block;
  text-transform: uppercase;
  color: var(--color-dark);
  font-weight: 800;
  letter-spacing: 5px;
  text-shadow: -5px 5px rgba(5, 50, 98, .1);
}

.home-4 .hs-1 .hero-single .hero-title span:nth-child(1){
  margin-left: 40px;
}

.home-4 .hs-1 .hero-single .hero-title span:nth-child(2){
  color: var(--theme-color);
}

.home-4 .hs-1 .hero-single .hero-title span:nth-child(3){
  margin-left: 80px;
}

.home-4 .hs-1 .hero-img {
  position: absolute;
  right: 50px;
  bottom: -2px;
  width: 50%;
}

.home-4 .hero-product{
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
}

.home-4 .hero-product a{
  background: var(--color-white);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px 5px 5px 20px;
  outline: 2px solid transparent;
}

.home-4 .hero-product a:hover{
  outline-color: var(--theme-color);
}

.home-4 .hero-product .price-info{
  line-height: 1;
}

.home-4 .hero-product .price-info h6{
  color: var(--color-dark);
  font-size: 15px;
  margin-bottom: 5px;
}

.home-4 .hero-product .price-info span{
  color: var(--theme-color);
  font-size: 14px;
}

.home-4 .hero-product .img{
  width: 60px;
  height: 60px;
  background: var(--theme-color-light);
  padding: 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-4 .hero-product img{
  width: 40px;
}

.home-4 .hero-product a:hover .img img{
  transform: rotate(360deg);
}

@media all and (min-width: 992px) and (max-width: 1199px) {
  .home-4 .navbar.navbar-expand-lg .offcanvas .offcanvas-body {
    gap: 30px;
  }

  .home-4 .navbar .nav-right {
    display: flex;
  }
}

@media all and (min-width: 992px) {
  .home-4 .navbar .nav-item .nav-link {
    padding: 30px 0 30px 0;
  }
}

@media all and (max-width: 991px) {
  .home-4 .hs-1 .hero-single{
    padding-top: 35px;
    padding-bottom: 0;
  }

  .home-4 .hs-1 .hero-right{
    position: relative;
  }

  .home-4 .hs-1 .hero-img{
    position: relative;
    width: 100%;
    right: 0;
    bottom: 0;
  }

  .home-4 .hs-1 .hero-product{
    display: none;
  }

  .home-4 .hs-1 .hero-single .hero-title span:nth-child(3){
    margin-left: 50px;
  }
}



/*====================
65. Home 5 css 
======================*/

.home-5 .navbar{
  background: var(--color-white);
  border-bottom: 1px solid var(--border-info-color);
}

.home-5 .header-middle-search .search-content{
  background-color: var(--theme-color-light);
  border: none;
}

.home-5 .header-middle-search .nice-select,
.home-5 .header-middle-search .form-control{
  background-color: transparent;
}

.home-5 .header-middle-list{
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-5 .header-middle-list .list-item-icon{
  background: transparent;
  width: unset;
  height: unset;
}

.home-5 .header-middle-list .list-item-icon span{
  right: -10px;
}

.home-5 .header-middle-list .list-item-info h5{
  margin-top: 0;
  transition: var(--transition);
}

.home-5 .header-middle-list .list-item:hover h5{
  color: var(--theme-color);
}

.home-5 .category-btn{
  padding: 10px 20px;
  border-radius: 10px;
}

.home-5 .hs-1 .hero-slider{
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
}

.home-5 .hs-1 .hero-slider::before,
.home-5 .hs-1 .hero-slider::after{
  display: none;
}

.home-5 .hs-1 .hero-single{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 110px;
  padding-bottom: 110px;
}

.home-5 .ft-bg::before{
  background-image: url(../img/shape/06.jpg);
  opacity: .15;
}

@media all and (min-width: 992px) {
  .home-5 .navbar .nav-item .nav-link {
    padding: 25px 0 25px 0;
  }
}

/* home 5 header line */
.home-5 .header-line{
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0px;
  bottom: 0px;
  display: flex;
  overflow: hidden;
  z-index: -1;
}

.home-5 .header-line .line-1{
  background: #F5C34B;
  width: 10%;
}

.home-5 .header-line .line-2{
  background: #6BD68D;
  width: 20%;
}

.home-5 .header-line .line-3{
  background: #EC752F;
  width: 20%;
}

.home-5 .header-line .line-4{
  background: #7091F5;
  width: 20%;
}

.home-5 .header-line .line-5{
  background: #6BD68D;
  width: 20%;
}

.home-5 .header-line .line-6{
  background: #FBA1B7;
  width: 10%;
} 


/*====================
65. Home 6 css 
======================*/

.home-6 .header-top{
  border-top: none;
}

.home-6 .header-middle{
  border-bottom: 1px solid var(--border-info-color);
}

.home-6 .category-btn{
  min-width: 280px;
  padding: 10px;
  border-radius: 15px 15px 0 0;
}

.home-6 .navbar.fixed-top .category-btn{
  min-width: unset;
}

.home-6 .main-category{
  display: block;
  margin-top: -5px;
  border-radius: 0 0 15px 15px;
  min-width: 280px;
}

.home-6 .navbar.fixed-top .main-category{
  min-width: 250px;
  margin-top: -1px;
}

.home-6 .sub-category-mega{
  left: 275px;
}

.home-6 .navbar.fixed-top .sub-category-mega{
  left: 246px;
}

.home-6 .navbar{
  background: var(--color-white);
}

.home-6 .hs-1 .hero-slider{
  background: transparent;
}

.home-6 .hs-1 .hero-slider::before,
.home-6 .hs-1 .hero-slider::after{
  display: none;
}

.home-6 .hs-1 .hero-slider .owl-dots .owl-dot{
  background-color: var(--color-white);
}

.home-6 .hs-1 .hero-single{
  padding-top: 76px;
  padding-bottom: 80px;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.home-6 .hs-1 .hero-single .hero-title{
  color: var(--color-white);
}

.home-6 .hs-1 .hero-single .hero-content p{
  color: var(--color-white);
}

.home-6 .ft-bg::before{
  background-image: url(../img/shape/0.jpg);
  opacity: .05;
}

@media all and (max-width: 1199px) {
  .home-6 .category-btn{
    border-radius: 10px;
  }

  .home-6 .main-category{
    display: none;
  }
}

@media all and (min-width: 992px) {
  .home-6 .navbar .nav-item .nav-link {
    padding: 20px 0;
  }
}


/*====================
65. Home 7 css 
======================*/

.home-7 .header-top{
  background: var(--theme-color);
}

.home-7 .navbar{
  background: var(--color-white);
}

.home-7 .category-btn{
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 12px;
}


/*====================
65. Home 8 css 
======================*/

.home-8 .header-middle{
  background: var(--theme-color2);
  border-bottom: 1px solid var(--border-white-color);
}

.home-8 .header-middle-search .search-content{
  border-radius: 10px;
  border: none;
}

.home-8 .header-middle-list .list-item-info h5,
.home-8 .header-middle-list .list-item-info h6{
  color: var(--color-white);
}

.home-8 .hero-section .hero-banner img{
  border-radius: 20px;
}

.home-8 .hs-3 .hero-single{
  padding-top: 105px;
  padding-bottom: 110px;
}


/*====================
65. Home 9 css 
======================*/

.home-9 .header-top{
  background: var(--theme-color2);
  border-top: 0;
}

.home-9 .navbar{
  background: var(--color-white);
}

.home-9 .header-middle-search .search-content{
  border-radius: 10px;
}

.home-9 .header-middle-list .list-item-icon{
  border-radius: 10px;
}

.home-9 .category-btn{
  padding: 8px 15px;
  border-radius: 8px;
}

.home-9 .hs-1 .hero-slider::before{
  display: none;
}

.home-9 .hs-1 .hero-single .hero-img img{
  width: 100%;
}

.home-9 .ft-bg::before{
  background-image: url(../img/shape/06.jpg);
  opacity: .15;
}

@media all and (min-width: 992px) {
  .home-9 .hs-1 .hero-single{
    padding: 104px 50px;
  }
}



/*====================
65. Home 10 css 
======================*/

.home-10 .navbar{
  background: transparent;
}

.home-10 .navbar.fixed-top{
  background: var(--color-white);
}

.home-10 .hs-1 {
  margin-top: -8rem;
}

.home-10 .hs-1 .hero-single{
  padding-top: 190px;
  padding-bottom: 100px;
}

.home-10 .hs-1 .hero-single .hero-content .hero-title{
  font-size: 80px;
}

.home-10 .hs-1 .hero-single .hero-img img{
  width: 100%;
}

.home-10 .hero-img .text-shape-1,
.home-10 .hero-img .text-shape-2{
  position: absolute;
  font-size: 50px;
  text-transform: uppercase;
  font-family: var(--heading-font);
  letter-spacing: 10px;
  font-weight: 800;
  font-style: italic;
  color: var(--theme-color);
}

.home-10 .hero-img .text-shape-1{
  top: 0;
  left: 0;
}

.home-10 .hero-img .text-shape-2{
  right: 0;
  bottom: 0;
}

.home-10 .hs-1 .hero-single .hero-img .hero-img-price{
  left: unset;
  right: 20px;
}

.home-10 .hs-1 .hero-single .hero-img .hero-img-price::after{
  transform: rotate(360deg);
}

.home-10 .ft-bg::before{
  background-image: url(../img/shape/06.jpg);
  opacity: .15;
}

@media all and (min-width: 992px) {
  .home-10 .navbar .nav-item .nav-link {
    padding: 35px 0 35px 0;
  }
}

@media all and (min-width: 992px) and (max-width: 1199px) {
  .home-10 .navbar.navbar-expand-lg .offcanvas .offcanvas-body {
    gap: 30px;
  }

  .home-10 .navbar .nav-right {
    display: flex;
  }

  .home-10 .navbar .nav-right-btn{
    display: none;
  }
}

@media all and (max-width: 767px) {
  .home-10 .hs-1 .hero-single .hero-content .hero-title{
    font-size: 50px;
  }

  .home-10 .hero-img .text-shape-1,
  .home-10 .hero-img .text-shape-2{
    font-size: 35px;
  }
}



@charset "UTF-8";
:root {
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Inter', sans-serif;
  --theme-color: #c7d300;
  --theme-color2: #053262;
  --theme-color-light: rgba(0, 191, 255, .08);
  --theme-bg-light: #F5F7FA;
  --body-text-color: #757F95;
  --color-white: #ffffff;
  --color-dark: #053262;
  --color-green: #11B76B;
  --color-blue: #0049D0;
  --color-skyblue: #00BFFF;
  --color-yellow: #FBA707;
  --color-gray: #ECECEC;
  --color-red: #FD6A6A;
  --hero-overlay-color: #01060F;
  --slider-arrow-bg: rgba(255, 255, 255, 0.2);
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.12);
  --border-white-color2: rgba(255, 255, 255, 0.07);
  --footer-bg: #053262;
  --footer-text-color: #F5FAFF;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');



.brand-carousel .owl-stage {
    display: flex;
    align-items: center
}

.brand-carousel .owl-item img {
    width: auto;
    margin: auto
}

.brand-carousel:not(.loaded) {
    text-align: center;
    align-items: center
}

.owl-carousel .slide-animate {
    transform: translate3d(0,0,0) scale(1);
    will-change: filter,transform,opacity;
    visibility: hidden;
    opacity: 0
}

.owl-carousel .slide-animate.show-content {
    visibility: visible;
    opacity: 1
}

.owl-full-height,.owl-full-height .owl-item,.owl-full-height .owl-stage,.owl-full-height .owl-stage-outer,.owl-same-height .owl-item>* {
    height: 100%
}

.owl-same-height .owl-stage {
    display: flex
}

.owl-full-height .owl-item img {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.owl-shadow-carousel .owl-stage-outer {
    margin: -30px;
    padding: 30px
}

.owl-nav-bg .owl-nav .owl-prev {
    left: 15.4%
}

.owl-nav-bg .owl-nav .owl-next {
    right: 15.4%
}

.owl-nav-bg .owl-nav [class*=owl-] {
    width: 4.8rem;
    height: 4.8rem;
    border-width: 2px;
    font-size: 3.2rem;
    color: #666;
    border-color: #666
}

.owl-nav-bg .owl-nav [class*=owl-].disabled {
    border-color: #acabab
}

.owl-nav-bg .owl-nav i {
    line-height: 1;
    margin-bottom: 2px
}

.owl-nav-fade .owl-nav .owl-prev {
    opacity: 0;
    margin-left: 4rem
}

.owl-nav-fade .owl-nav .owl-next {
    opacity: 0;
    margin-right: 4rem
}

.owl-nav-fade:hover .owl-nav .owl-prev {
    opacity: 1;
    margin-left: 0
}

.owl-nav-fade:hover .owl-nav .owl-next {
    opacity: 1;
    margin-right: 0
}

.owl-split .owl-item:not(:last-child) {
    position: relative
}

.owl-split .owl-item:not(:last-child):after {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #ebebeb
}

.owl-middle .owl-stage {
    display: flex;
    align-items: center
}

.rotate-slider {
    padding-left: 17.9%
}

.rotate-slider .owl-stage-outer {
    margin: -20px;
    padding: 20px;
    padding-left: 23%;
    margin-left: -23%
}

.rotate-slider .owl-item {
    transition: 1s;
    box-shadow: 0 0 20px 5px rgba(0,0,0,0.1)
}

.rotate-slider .owl-item:not(.active) {
    transform: scale(0.8) translateX(100%);
    transform-origin: left
}

.rotate-slider .owl-nav .owl-next {
    right: auto;
    left: 40px;
    font-size: 36px
}

.rotate-slider .owl-nav .owl-next:before {
    content: "î¦‚"
}

.rotate-slider .owl-nav .owl-prev {
    display: none
}

@media (max-width: 479px) {
    .rotate-slider .owl-nav .owl-next {
        right:auto;
        left: 15px;
        font-size: 24px
    }
}

.noUi-target {
    background: #eee;
    margin: 4px 16px 3rem 9px
}

.noUi-connects {
    padding: 11.5px 0;
    top: -10px
}

.noUi-connect {
    background: #999;
    margin-top: 11px;
    height: 3px
}

.noUi-horizontal .noUi-handle {
    top: -0.6rem;
    width: 1.2rem;
    height: 1.7rem;
    background: #444;
    border-radius: 3px
}

*,:after,:before {
    box-sizing: inherit
}

html {
    font-size: 62.5%;
    font-size-adjust: 100%;
    font-weight: 400;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}

html.dark-theme {
    background-color: #151515
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "Poppins", serif;
    /* font-family: "Raleway", sans-serif; */
    font-size: 1.6rem;
    line-height: 1.6;
    color: #666;
    /* background: #a58e1317; */
}

main {
    display: block;
    position: relative;
    background-color: #fff
}

body:not(.loaded) * {
    transition: all 0s!important
}

.page-wrapper {
    /* position: relative; */
    transition: margin 0.4s
}

table {
    width: 100%;
    border-collapse: collapse
}

table td,table th {
    padding: 0
}

.section {
    padding: 7rem 0
}

.grey-section {
    background: #f6f7f9
}

.background-section {
    background-repeat: no-repeat
}

.parallax {
    background-color: #3c3f41
}

ul {
    padding-left: 1.5em
}

.breadcrumb,.category ul,.comments ul,.dropdown-box,.filter-items,.list,.menu,.menu ul,.mobile-menu,.mobile-menu ul,.nav,.nav-filters,.nav ul,.pagination,.product-nav,.product-tabs>div ul,.select-menu>ul,.widget-body,.widget-body ul {
    list-style-type: none;
    margin: 0;
    padding: 0
}

a {
    text-decoration: none;
    color: #414e9c;
    transition: color 0.3s
}

a:hover {
    color: #0f172a
}

:focus {
    outline: 0
}

figure {
    margin: 0
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle
}

hr {
    margin-bottom: 2rem;
    border: 0;
    border-top: 1px solid #eee
}

input {
    border: 0;
    padding: 0;
}

input:focus {
    outline: 0;
}

.input-group>button,.input-group>input,.input-wrapper>button,.input-wrapper>input {
    margin: 0px
}

i {
    font-style: normal
}

button:focus {
    outline: none
}

.scrollable,.sidebar-content {
    -webkit-overflow-scrolling: touch
}

.scrollable::-webkit-scrollbar,.sidebar-content::-webkit-scrollbar {
    height: 7px;
    width: 4px
}

.scrollable::-webkit-scrollbar-thumb,.sidebar-content::-webkit-scrollbar-thumb {
    margin-right: 2px;
    background: rgba(0,0,0,0.25);
    border-radius: 5px;
    cursor: pointer
}

.scrollable-light::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2)
}

@keyframes bouncedelay {
    0%,80%,to {
        transform: scale(1)
    }

    40% {
        transform: scale(1.2)
    }
}

@keyframes rotatedelay {
    0% {
        transform: rotateZ(0)
    }

    to {
        transform: rotateZ(360deg)
    }
}

@keyframes reveal-1 {
    0% {
        transform: rotate3d(0,0,1,135deg) translate3d(0,0,0);
        border-radius: 50%
    }

    20% {
        transform: rotate3d(0,0,1,135deg) translate3d(55%,55%,0);
        border-radius: 0
    }

    80% {
        transform: rotate3d(0,0,1,495deg) translate3d(55%,55%,0);
        border-radius: 0
    }

    to {
        transform: rotate3d(0,0,1,495deg) translate3d(0,0,0);
        border-radius: 50%
    }
}

@keyframes reveal-2 {
    0% {
        transform: rotate3d(0,0,1,135deg) translate3d(0,0,0);
        border-radius: 50%
    }

    20% {
        transform: rotate3d(0,0,1,135deg) translate3d(55%,-55%,0);
        border-radius: 0
    }

    80% {
        transform: rotate3d(0,0,1,495deg) translate3d(55%,-55%,0);
        border-radius: 0
    }

    to {
        transform: rotate3d(0,0,1,495deg) translate3d(0,0,0);
        border-radius: 50%
    }
}

@keyframes reveal-3 {
    0% {
        transform: rotate3d(0,0,1,135deg) translate3d(0,0,0);
        border-radius: 50%
    }

    20% {
        transform: rotate3d(0,0,1,135deg) translate3d(-55%,-55%,0);
        border-radius: 0
    }

    80% {
        transform: rotate3d(0,0,1,495deg) translate3d(-55%,-55%,0);
        border-radius: 0
    }

    to {
        transform: rotate3d(0,0,1,495deg) translate3d(0,0,0);
        border-radius: 50%
    }
}

@keyframes reveal-4 {
    0% {
        transform: rotate3d(0,0,1,135deg) translate3d(0,0,0);
        border-radius: 50%
    }

    20% {
        transform: rotate3d(0,0,1,135deg) translate3d(-55%,55%,0);
        border-radius: 0
    }

    80% {
        transform: rotate3d(0,0,1,495deg) translate3d(-55%,55%,0);
        border-radius: 0
    }

    to {
        transform: rotate3d(0,0,1,495deg) translate3d(0,0,0);
        border-radius: 50%
    }
}

.bounce-loader {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transition: all 0.2s;
    text-align: center;
    z-index: 10000
}

.bounce-loader .bounce1,.bounce-loader .bounce2,.bounce-loader .bounce3,.bounce-loader .bounce4 {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
    background-color: #0f172a
}

.bounce-loader .bounce1 {
    animation: 2s infinite reveal-1
}

.bounce-loader .bounce2 {
    animation: 2s infinite reveal-2
}

.bounce-loader .bounce3 {
    animation: 2s infinite reveal-3
}

.bounce-loader .bounce4 {
    animation: 2s infinite reveal-4
}

.bounce-loader .bounce3 {
    border: 3px solid #0f172a;
    background-color: transparent
}

.appear-animate {
    transform: translate3d(0,0,0) scale(1);
    will-change: transform,filter,opacity
}

.fade {
    opacity: 0;
    transition: opacity 0.5s
}

.fade.in {
    opacity: 1
}

.scroll-top {
    position: fixed;
    text-align: center;
    bottom: 30px;
    left: auto;
    right: 30px;
    width: 60px;
    height: 60px;
    font-size: 27px;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s,visibility 0.3s,opacity 0.3s;
    color: #222;
    transform: translateY(40px);
    border-radius: 3px;
    z-index: 999;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
    line-height: 60px;
    background-color: #fff
}

.scroll-top:hover {
    color: #222
}

.scroll-top i {
    font-weight: 900;
    line-height: inherit
}

@media (min-width: 768px) {
    .scroll-top.show {
        visibility:visible;
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fixedTop {
    0% {
        transform: translateY(-100%);
        transform-origin: center top 0px
    }

    to {
        transform: translateY(0)
    }
}

@keyframes fixedBottom {
    0% {
        transform: translateY(100%);
        transform-origin: center top 0px
    }

    to {
        transform: translateY(0)
    }
}

.sticky-content.fix-top {
    top: 0
}

.sticky-content.fix-bottom {
    bottom: 0
}

.sticky-content.fixed {
    position: fixed;
    opacity: 1;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 1051;
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.1)
}

.sticky-content.fixed.fix-top {
    animation: fixedTop 0.4s
}

.sticky-content.fixed.fix-bottom {
    animation: fixedBottom 0.4s
}

.load-more-overlay.loading:after,.loading:not(.load-more-overlay) {
    animation: spin 650ms infinite linear;
    border: 2px solid transparent;
    border-radius: 32px;
    border-top: 2px solid rgba(0,0,0,0.4)!important;
    border-right: 2px solid rgba(0,0,0,0.4)!important;
    border-bottom: 2px solid rgba(0,0,0,0.4)!important;
    content: "";
    display: block;
    height: 21px;
    top: 50%;
    margin-top: -11px;
    left: 50%;
    margin-left: -10px;
    right: auto;
    position: absolute;
    width: 21px
}

.dark-theme .load-more-overlay.loading:after,.dark-theme .loading:not(.load-more-overlay) {
    border-radius: 32px;
    border-top: 2px solid rgba(255,255,255,0.6)!important;
    border-right: 2px solid rgba(255,255,255,0.6)!important;
    border-bottom: 2px solid rgba(255,255,255,0.6)!important
}

.load-more-overlay {
    position: relative
}

.load-more-overlay.loading:after {
    content: ""
}

.load-more-overlay:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0.8
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(359deg)
    }
}

.riode-rounded-skin .btn,.riode-rounded-skin .minipopup-box,.riode-rounded-skin .post-calendar,.riode-rounded-skin .post-framed,.riode-rounded-skin .post-media,.riode-rounded-skin .post-single .post-author-detail,.riode-rounded-skin .post-single>.post-wrap img,.riode-rounded-skin .product-category,.riode-rounded-skin .product-category .category-content,.riode-rounded-skin .product-hide-details .btn-product,.riode-rounded-skin .product-hide-details .btn-product-icon,.riode-rounded-skin .product-with-qty .quantity button,.riode-rounded-skin .product-wrapper .banner,.riode-rounded-skin .vendor-widget .vendor-banner,.riode-rounded-skin .vendor-widget .vendor-logo,.riode-rounded-skin .vendor-widget .vendor-product>figure {
    border-radius: 3px;
    overflow: hidden
}

.riode-rounded-skin .login-popup {
    border-radius: 3px
}

.riode-rounded-skin .form-row [type=email],.riode-rounded-skin .form-row [type=password],.riode-rounded-skin .form-row [type=tel],.riode-rounded-skin .form-row [type=text],.riode-rounded-skin .form-row textarea {
    border-radius: 3px
}

.riode-rounded-skin .btn-link,.riode-rounded-skin .form-coupon .input-text {
    border-radius: 0;
    overflow: visible
}

.riode-rounded-skin .post.post-mask.gradient:before {
    border-radius: 0 0 3px 3px;
    overflow: hidden
}

.riode-rounded-skin .mfp-product .product,.riode-rounded-skin .product-category.cat-type-default {
    border-radius: 10px
}

.sticky-icon-links li:nth-child(4) a {
    background: #0f172a
}

.d-loading {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255,255,255,0.6);
    z-index: 10
}

.d-loading.small i {
    position: absolute;
    left: calc(50% - 10px);
    top: calc(50% - 10px);
    width: 20px;
    height: 20px
}

.d-loading i {
    position: absolute;
    left: calc(50% - 17px);
    top: calc(50% - 17px);
    width: 34px;
    height: 34px;
    border: 2px solid transparent;
    border-top-color: #0f172a;
    border-radius: 50%;
    animation: spin 0.75s infinite linear
}

.d-loading i:before {
    content: "";
    top: -2px;
    left: -2px;
    position: absolute;
    width: inherit;
    height: inherit;
    border: inherit;
    border-radius: inherit;
    animation: spin 1.5s infinite ease
}

.w-100 {
    width: 100%!important
}

.h-100 {
    height: 100%!important
}

.h-auto {
    height: auto!important
}

.p-sticky {
    position: sticky!important
}

.p-relative {
    position: relative!important
}

.p-absolute {
    position: absolute!important
}

.x-50 {
    left: 50%!important;
    transform: translateX(-50%)!important
}

.x-50.y-50 {
    transform: translate(-50%,-50%)!important
}

.y-50 {
    top: 50%!important;
    transform: translateY(-50%)!important
}

.d-none {
    display: none!important
}

.d-block {
    display: block!important
}

.d-inline-block {
    display: inline-block!important
}

.d-flex {
    display: flex!important
}

.d-inline-flex {
    display: inline-flex!important
}

.justify-content-center {
    justify-content: center!important
}

.justify-content-start {
    justify-content: flex-start!important
}

.justify-content-end {
    justify-content: flex-end!important
}

.justify-content-between {
    justify-content: space-between!important
}

.align-items-start {
    align-items: flex-start!important
}

.align-items-center {
    align-items: center!important
}

.align-items-end {
    align-items: flex-end!important
}

.flex-column {
    flex-direction: column!important
}

.flex-wrap {
    flex-wrap: wrap!important
}

.flex-1 {
    flex: 1!important
}

.overflow-hidden {
    overflow: hidden!important
}

@media (min-width: 1200px) {
    .d-xl-none {
        display:none!important
    }

    .d-xl-block {
        display: block!important
    }

    .d-xl-flex {
        display: flex!important
    }

    .d-xl-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display:none!important
    }

    .d-lg-block {
        display: block!important
    }

    .d-lg-flex {
        display: flex!important
    }

    .d-lg-inline-flex {
        display: inline-flex!important
    }
}

@media (max-width: 1199px) {
    .d-xl-show {
        display:none!important
    }
}

@media (max-width: 991px) {
    .d-lg-show {
        display:none!important
    }
}

@media (max-width: 767px) {
    .d-md-show {
        display:none!important
    }
    .banner-sec {
   
    padding-top: 0;
    }
}

@media (max-width: 479px) {
    .d-xs-show {
        display:none!important
    }
}

.font-weight-bolder {
    font-weight: 800!important
}

.font-weight-bold {
    font-weight: 700!important
}

.font-weight-semi-bold {
    font-weight: 600!important
}

.font-weight-normal {
    font-weight: 400!important
}

.font-weight-light {
    font-weight: 300!important
}

.text-uppercase {
    text-transform: uppercase!important
}

.text-capitalize {
    text-transform: capitalize!important
}

.text-normal {
    text-transform: none!important
}

.font-italic {
    font-style: italic!important
}

.font-normal {
    font-stretch: normal!important
}

.text-left {
    text-align: left!important
}

.text-center {
    text-align: center!important
}

.text-right {
    text-align: right!important
}

.text-white {
    color: #fff!important
}

.text-light {
    color: #ccc!important
}

.text-grey {
    color: #999!important
}

.text-body {
    color: #666!important
}

.text-dark {
    color: #222!important
}

.text-black {
    color: #000!important
}

.text-primary {
    color: #0f172a!important
}

.text-secondary {
    color: #FF7C12!important
}

.ls-md {
    letter-spacing: -0.03em!important
}

.ls-s {
    letter-spacing: -0.01em!important
}

.ls-m {
    letter-spacing: -0.025em!important
}

.ls-l {
    letter-spacing: -0.05em!important
}

.ls-normal {
    letter-spacing: 0!important
}

.lh-2 {
    line-height: 2!important
}

.lh-1 {
    line-height: 1!important
}

.lh-0 {
    line-height: 0!important
}

.bg-white {
    background-color: #fff!important
}

.bg-dark {
    background-color: #222!important
}

.bg-grey {
    background-color: #999!important
}


.bg-black {
    background-color: #000!important
}

.bg-primary {
    background-color: #0f172a!important
}

.bg-secondary {
    background-color: #FF7C12!important
}

.border-no {
    border: none!important
}

h1,h2,h3,h4,h5,h6,p {
    /* font-weight: 400; */
    margin: 0 0 2rem
}

h1,h2,h3,h4,h5,h6 {
    line-height: 1.4;
    color: #222;
    font-weight: 700;
}

h1 {
    font-size: 4rem
}

h2 {
    font-size: 3.4rem
}

h3 {
    font-size: 3rem
}

h4 {
    font-size: 2.4rem
}

h5 {
    font-size: 1.8rem
}

h6 {
    font-size: 1.5rem
}

p {
    font-size: 1.6rem;
    line-height: 2.6rem;
}

blockquote {
    margin: 0
}

.list {
    font-size: 1.4rem;
    line-height: 1.86;
    color: #666
}

.list-style-none {
    list-style: none
}

.list-type-number {
    list-style-type: decimal
}

.list-type-check li {
    position: relative;
    padding-left: 2.4rem
}

.list-type-check li:before {
    display: block;
    position: absolute;
    left: 3px;
    top: 2px;
    content: "î¥ ";
    font-weight: 700;
    font-size: 1.2rem;
    color: #222
}

.list-circle li {
    padding-left: 1rem;
    margin-bottom: 1rem
}

.list-circle i {
    margin-right: 1.2rem;
    width: 4rem;
    height: 4rem;
    border: 1px solid #e1e1e1;
    border-radius: 50%;
    text-align: center;
    line-height: 3.8rem;
    font-size: 1.1rem
}

.list-arrow li {
    position: relative;
    transition: color 0.3s,padding 0.3s
}

.list-arrow li:before {
    content: "î¥¿";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    font-size: 1.4rem;
    transition: opacity 0.3s,visibility 0.3s
}

.list-arrow li.show,.list-arrow li:hover {
    padding-left: 2.2rem;
    color: #0f172a
}

.list-arrow li.show:before,.list-arrow li:hover:before {
    visibility: visible;
    opacity: 1
}

.text-bd-left {
    position: relative;
    padding-left: 2rem
}

.text-bd-left:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 2px;
    top: 5px;
    bottom: 5px;
    background-color: #dae1e5
}

@media (max-width: 767px) {
    .list-type-number {
        margin-left:2.3rem
    }
}






.divider {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1.5rem;
    height: 2.5rem;
    width: 1px;
    background-color: #e1e1e1
}

.dark-theme .divider {
    background-color: #fff3
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px
}

.row>* {
    /* position: relative; */
    width: 100%;
    /* padding-right: 10px; */
    /* padding-left: 10px; */
}

.gutter-lg {
    margin-left: -15px;
    margin-right: -15px
}

.gutter-lg>* {
    padding-right: 15px;
    padding-left: 15px
}

.gutter-sm {
    margin-left: -5px;
    margin-right: -5px
}

.gutter-sm>* {
    padding-right: 5px;
    padding-left: 5px
}

.gutter-xs {
    margin-left: -1px;
    margin-right: -1px
}

.gutter-xs>* {
    padding-right: 1px;
    padding-left: 1px
}

.gutter-no {
    margin-left: 0;
    margin-right: 0
}

.gutter-no>* {
    padding-right: 0;
    padding-left: 0
}

.cols-1>* {
    max-width: 100%;
    flex: 0 0 100%
}

.cols-2>* {
    max-width: 50%;
    flex: 0 0 50%
}

.cols-3>* {
    max-width: 33.3333%;
    flex: 0 0 33.3333%
}

.cols-4>* {
    max-width: 25%;
    flex: 0 0 25%
}

.cols-5>* {
    max-width: 20%;
    flex: 0 0 20%
}

.cols-6>* {
    max-width: 16.6667%;
    flex: 0 0 16.6667%
}

.cols-7>* {
    max-width: 14.2857%;
    flex: 0 0 14.2857%
}

.cols-8>* {
    max-width: 12.5%;
    flex: 0 0 12.5%
}

@media (min-width: 480px) {
    .cols-xs-1>* {
        max-width:100%;
        flex: 0 0 100%
    }

    .cols-xs-2>* {
        max-width: 50%;
        flex: 0 0 50%
    }

    .cols-xs-3>* {
        max-width: 33.3333%;
        flex: 0 0 33.3333%
    }

    .cols-xs-4>* {
        max-width: 25%;
        flex: 0 0 25%
    }

    .cols-xs-5>* {
        max-width: 20%;
        flex: 0 0 20%
    }

    .cols-xs-6>* {
        max-width: 16.6667%;
        flex: 0 0 16.6667%
    }

    .cols-xs-7>* {
        max-width: 14.2857%;
        flex: 0 0 14.2857%
    }

    .cols-xs-8>* {
        max-width: 12.5%;
        flex: 0 0 12.5%
    }
}

@media (min-width: 576px) {
    .cols-sm-1>* {
        max-width:100%;
        flex: 0 0 100%
    }

    .cols-sm-2>* {
        max-width: 50%;
        flex: 0 0 50%
    }

    .cols-sm-3>* {
        max-width: 33.3333%;
        flex: 0 0 33.3333%
    }

    .cols-sm-4>* {
        max-width: 25%;
        flex: 0 0 25%
    }

    .cols-sm-5>* {
        max-width: 20%;
        flex: 0 0 20%
    }

    .cols-sm-6>* {
        max-width: 16.6667%;
        flex: 0 0 16.6667%
    }

    .cols-sm-7>* {
        max-width: 14.2857%;
        flex: 0 0 14.2857%
    }

    .cols-sm-8>* {
        max-width: 12.5%;
        flex: 0 0 12.5%
    }
}

@media (min-width: 768px) {
    .cols-md-1>* {
        max-width:100%;
        flex: 0 0 100%
    }

    .cols-md-2>* {
        max-width: 50%;
        flex: 0 0 50%
    }

    .cols-md-3>* {
        max-width: 33.3333%;
        flex: 0 0 33.3333%
    }

    .cols-md-4>* {
        max-width: 25%;
        flex: 0 0 25%
    }

    .cols-md-5>* {
        max-width: 20%;
        flex: 0 0 20%
    }

    .cols-md-6>* {
        max-width: 16.6667%;
        flex: 0 0 16.6667%
    }

    .cols-md-7>* {
        max-width: 14.2857%;
        flex: 0 0 14.2857%
    }

    .cols-md-8>* {
        max-width: 12.5%;
        flex: 0 0 12.5%
    }
}

@media (min-width: 992px) {
    .cols-lg-1>* {
        max-width:100%;
        flex: 0 0 100%
    }

    .cols-lg-2>* {
        max-width: 50%;
        flex: 0 0 50%
    }

    .cols-lg-3>* {
        max-width: 33.3333%;
        flex: 0 0 33.3333%
    }

    .cols-lg-4>* {
        max-width: 25%;
        flex: 0 0 25%
    }

    .cols-lg-5>* {
        max-width: 20%;
        flex: 0 0 20%
    }

    .cols-lg-6>* {
        max-width: 16.6667%;
        flex: 0 0 16.6667%
    }

    .cols-lg-7>* {
        max-width: 14.2857%;
        flex: 0 0 14.2857%
    }

    .cols-lg-8>* {
        max-width: 12.5%;
        flex: 0 0 12.5%
    }
}

@media (min-width: 1200px) {
    .cols-xl-1>* {
        max-width:100%;
        flex: 0 0 100%
    }

    .cols-xl-2>* {
        max-width: 50%;
        flex: 0 0 50%
    }

    .cols-xl-3>* {
        max-width: 33.3333%;
        flex: 0 0 33.3333%
    }

    .cols-xl-4>* {
        max-width: 25%;
        flex: 0 0 25%
    }

    .cols-xl-5>* {
        max-width: 20%;
        flex: 0 0 20%
    }

    .cols-xl-6>* {
        max-width: 16.6667%;
        flex: 0 0 16.6667%
    }

    .cols-xl-7>* {
        max-width: 14.2857%;
        flex: 0 0 14.2857%
    }

    .cols-xl-8>* {
        max-width: 12.5%;
        flex: 0 0 12.5%
    }
}

@media (min-width: 1600px) {
    .cols-xxl-1>* {
        max-width:100%;
        flex: 0 0 100%
    }

    .cols-xxl-2>* {
        max-width: 50%;
        flex: 0 0 50%
    }

    .cols-xxl-3>* {
        max-width: 33.3333%;
        flex: 0 0 33.3333%
    }

    .cols-xxl-4>* {
        max-width: 25%;
        flex: 0 0 25%
    }

    .cols-xxl-5>* {
        max-width: 20%;
        flex: 0 0 20%
    }

    .cols-xxl-6>* {
        max-width: 16.6667%;
        flex: 0 0 16.6667%
    }

    .cols-xxl-7>* {
        max-width: 14.2857%;
        flex: 0 0 14.2857%
    }

    .cols-xxl-8>* {
        max-width: 12.5%;
        flex: 0 0 12.5%
    }
}

.col-1 {
    max-width: 8.3333%;
    flex: 0 0 8.3333%
}

.col-2 {
    max-width: 16.6667%;
    flex: 0 0 16.6667%
}

.col-3 {
    max-width: 25%;
    flex: 0 0 25%
}

.col-4 {
    max-width: 33.3333%;
    flex: 0 0 33.3333%
}

.col-5 {
    max-width: 41.6667%;
    flex: 0 0 41.6667%
}

.col-6 {
    max-width: 50%;
    flex: 0 0 50%
}

.col-7 {
    max-width: 58.3333%;
    flex: 0 0 58.3333%
}

.col-8 {
    max-width: 66.6667%;
    flex: 0 0 66.6667%
}

.col-9 {
    max-width: 75%;
    flex: 0 0 75%
}

.col-10 {
    max-width: 83.3333%;
    flex: 0 0 83.3333%
}

.col-11 {
    max-width: 91.6667%;
    flex: 0 0 91.6667%
}

.col-12 {
    max-width: 100%;
    flex: 0 0 100%
}

@media (min-width: 480px) {
    .col-xs-1 {
        max-width:8.3333%;
        flex: 0 0 8.3333%
    }

    .col-xs-2 {
        max-width: 16.6667%;
        flex: 0 0 16.6667%
    }

    .col-xs-3 {
        max-width: 25%;
        flex: 0 0 25%
    }

    .col-xs-4 {
        max-width: 33.3333%;
        flex: 0 0 33.3333%
    }

    .col-xs-5 {
        max-width: 41.6667%;
        flex: 0 0 41.6667%
    }

    .col-xs-6 {
        max-width: 50%;
        flex: 0 0 50%
    }

    .col-xs-7 {
        max-width: 58.3333%;
        flex: 0 0 58.3333%
    }

    .col-xs-8 {
        max-width: 66.6667%;
        flex: 0 0 66.6667%
    }

    .col-xs-9 {
        max-width: 75%;
        flex: 0 0 75%
    }

    .col-xs-10 {
        max-width: 83.3333%;
        flex: 0 0 83.3333%
    }

    .col-xs-11 {
        max-width: 91.6667%;
        flex: 0 0 91.6667%
    }

    .col-xs-12 {
        max-width: 100%;
        flex: 0 0 100%
    }
}

@media (min-width: 576px) {
    .col-sm-1 {
        max-width:8.3333%;
        flex: 0 0 8.3333%
    }

    .col-sm-2 {
        max-width: 16.6667%;
        flex: 0 0 16.6667%
    }

    .col-sm-3 {
        max-width: 25%;
        flex: 0 0 25%
    }

    .col-sm-4 {
        max-width: 33.3333%;
        flex: 0 0 33.3333%
    }

    .col-sm-5 {
        max-width: 41.6667%;
        flex: 0 0 41.6667%
    }

    .col-sm-6 {
        max-width: 50%;
        flex: 0 0 50%
    }

    .col-sm-7 {
        max-width: 58.3333%;
        flex: 0 0 58.3333%
    }

    .col-sm-8 {
        max-width: 66.6667%;
        flex: 0 0 66.6667%
    }

    .col-sm-9 {
        max-width: 75%;
        flex: 0 0 75%
    }

    .col-sm-10 {
        max-width: 83.3333%;
        flex: 0 0 83.3333%
    }

    .col-sm-11 {
        max-width: 91.6667%;
        flex: 0 0 91.6667%
    }

    .col-sm-12 {
        max-width: 100%;
        flex: 0 0 100%
    }
}

@media (min-width: 768px) {
    .col-md-1 {
        max-width:8.3333%;
        flex: 0 0 8.3333%
    }

    .col-md-2 {
        max-width: 16.6667%;
        flex: 0 0 16.6667%
    }

    .col-md-3 {
        max-width: 25%;
        flex: 0 0 25%;
    }

    .col-md-4 {
        max-width: 33.3333%;
        flex: 0 0 33.3333%
    }

    .col-md-5 {
        max-width: 41.6667%;
        flex: 0 0 41.6667%
    }

    .col-md-6 {
        max-width: 50%;
        flex: 0 0 50%
    }

    .col-md-7 {
        max-width: 58.3333%;
        flex: 0 0 58.3333%
    }

    .col-md-8 {
        max-width: 66.6667%;
        flex: 0 0 66.6667%
    }

    .col-md-9 {
        max-width: 75%;
        flex: 0 0 75%
    }

    .col-md-10 {
        max-width: 83.3333%;
        flex: 0 0 83.3333%
    }

    .col-md-11 {
        max-width: 91.6667%;
        flex: 0 0 91.6667%
    }

    .col-md-12 {
        max-width: 100%;
        flex: 0 0 100%
    }
}

@media (min-width: 992px) {
    .col-lg-1 {
        max-width:8.3333%;
        flex: 0 0 8.3333%
    }

    .col-lg-2 {
        max-width: 16.6667%;
        flex: 0 0 16.6667%
    }

    .col-lg-3 {
        max-width: 25%;
        flex: 0 0 25%
    }

    .col-lg-4 {
        max-width: 33.3333%;
        flex: 0 0 33.3333%
    }

    .col-lg-5 {
        max-width: 41.6667%;
        flex: 0 0 41.6667%
    }

    .col-lg-6 {
        max-width: 50%;
        flex: 0 0 50%
    }

    .col-lg-7 {
        max-width: 58.3333%;
        flex: 0 0 58.3333%
    }

    .col-lg-8 {
        max-width: 66.6667%;
        flex: 0 0 66.6667%
    }

    .col-lg-9 {
        max-width: 75%;
        flex: 0 0 75%
    }

    .col-lg-10 {
        max-width: 83.3333%;
        flex: 0 0 83.3333%
    }

    .col-lg-11 {
        max-width: 91.6667%;
        flex: 0 0 91.6667%
    }

    .col-lg-12 {
        max-width: 100%;
        flex: 0 0 100%
    }
}

@media (min-width: 1200px) {
    .col-xl-1 {
        max-width:8.3333%;
        flex: 0 0 8.3333%
    }

    .col-xl-2 {
        max-width: 16.6667%;
        flex: 0 0 16.6667%
    }

    .col-xl-3 {
        max-width: 25%;
        flex: 0 0 25%
    }

    .col-xl-4 {
        max-width: 33.3333%;
        flex: 0 0 33.3333%
    }

    .col-xl-5 {
        max-width: 41.6667%;
        flex: 0 0 41.6667%
    }

    .col-xl-6 {
        max-width: 50%;
        flex: 0 0 50%
    }

    .col-xl-7 {
        max-width: 58.3333%;
        flex: 0 0 58.3333%
    }

    .col-xl-8 {
        max-width: 66.6667%;
        flex: 0 0 66.6667%
    }

    .col-xl-9 {
        max-width: 75%;
        flex: 0 0 75%
    }

    .col-xl-10 {
        max-width: 83.3333%;
        flex: 0 0 83.3333%
    }

    .col-xl-11 {
        max-width: 91.6667%;
        flex: 0 0 91.6667%
    }

    .col-xl-12 {
        max-width: 100%;
        flex: 0 0 100%
    }
}

@media (min-width: 1600px) {
    .col-xxl-10 {
        flex:0 0 83.3333%;
        max-width: 83.3333%
    }

    .col-xxl-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-xxl-2 {
        flex: 0 0 16.6666%;
        max-width: 16.6666%
    }
}

@media (min-width: 1200px) {
    .col-xl-5col {
        position:relative;
        flex: 0 0 20%;
        max-width: 20%;
        padding-right: 10px;
        padding-left: 10px
    }

    .col-xl-5col2 {
        position: relative;
        flex: 0 0 40%;
        max-width: 40%;
        padding-right: 10px;
        padding-left: 10px
    }

    .col-xl-5col4 {
        position: relative;
        flex: 0 0 80%;
        max-width: 80%;
        padding-right: 10px;
        padding-left: 10px
    }
}

.order-first {
    order: -1
}

.order-last {
    order: 9
}

@media (min-width: 576px) {
    .order-sm-auto {
        order:0
    }

    .order-sm-first {
        order: -1
    }

    .order-sm-last {
        order: 9
    }
}

@media (min-width: 768px) {
    .order-md-auto {
        order:0
    }

    .order-md-first {
        order: -1
    }

    .order-md-last {
        order: 9
    }
}

@media (min-width: 992px) {
    .order-lg-auto {
        order:0
    }

    .order-lg-first {
        order: -1
    }

    .order-lg-last {
        order: 9
    }
}

@media (min-width: 1200px) {
    .order-xl-auto {
        order:0
    }

    .order-xl-first {
        order: -1
    }

    .order-xl-last {
        order: 9
    }
}

.grid {
    margin: -1rem
}

.grid .banner,.grid .banner img,.grid .category,.grid .category>a,.grid .category img,.grid figure {
    height: 100%
}

.grid img {
    object-fit: cover
}

.grid .grid-item {
    padding: 1rem;
    transform: translate3d(0,0,0)
}

.grid.gutter-sm {
    margin: -0.5rem
}

.grid.gutter-sm .grid-item {
    padding: 0.5rem
}

.grid.gutter-no {
    margin: 0
}

.grid.gutter-no .grid-item {
    padding: 0
}

.grid:after {
    content: "";
    display: block;
    clear: both
}

.grid.grid-float {
    display: block!important
}

.grid.grid-float .grid-item {
    float: left
}

.split-line>* {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #ebebeb
}

.split-line>:after {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 3rem);
    position: absolute;
    right: 0;
    top: 0;
    background-color: #ebebeb
}

.split-line.cols-1>:nth-child(1n):after,.split-line.cols-2>:nth-child(2n):after,.split-line.cols-3>:nth-child(3n):after,.split-line.cols-4>:nth-child(4n):after,.split-line.cols-5>:nth-child(5n):after,.split-line.cols-6>:nth-child(6n):after,.split-line.cols-7>:nth-child(7n):after,.split-line.cols-8>:nth-child(8n):after,.split-line>.col-1:nth-child(12n):after,.split-line>.col-2:nth-child(6n):after,.split-line>.col-3:nth-child(4n):after,.split-line>.col-4:nth-child(3n):after,.split-line>.col-5:nth-child(2n):after,.split-line>.col-6:nth-child(2n):after,.split-line>.col-7:nth-child(1n):after,.split-line>.col-8:nth-child(1n):after,.split-line>.col-9:nth-child(1n):after,.split-line>.col-10:nth-child(1n):after,.split-line>.col-11:nth-child(1n):after {
    content: none
}

@media (min-width: 576px) {
    .split-line.cols-sm-1>:nth-child(n):after,.split-line.cols-sm-2>:nth-child(n):after,.split-line.cols-sm-3>:nth-child(n):after,.split-line.cols-sm-4>:nth-child(n):after,.split-line.cols-sm-5>:nth-child(n):after,.split-line.cols-sm-6>:nth-child(n):after,.split-line.cols-sm-7>:nth-child(n):after,.split-line.cols-sm-8>:nth-child(n):after,.split-line>.col-sm-1:nth-child(n):after,.split-line>.col-sm-2:nth-child(n):after,.split-line>.col-sm-3:nth-child(n):after,.split-line>.col-sm-4:nth-child(n):after,.split-line>.col-sm-5:nth-child(n):after,.split-line>.col-sm-6:nth-child(n):after,.split-line>.col-sm-7:nth-child(n):after,.split-line>.col-sm-8:nth-child(n):after,.split-line>.col-sm-9:nth-child(n):after,.split-line>.col-sm-10:nth-child(n):after,.split-line>.col-sm-11:nth-child(n):after {
        content:""
    }

    .split-line.cols-sm-1>:nth-child(1n):after,.split-line.cols-sm-2>:nth-child(2n):after,.split-line.cols-sm-3>:nth-child(3n):after,.split-line.cols-sm-4>:nth-child(4n):after,.split-line.cols-sm-5>:nth-child(5n):after,.split-line.cols-sm-6>:nth-child(6n):after,.split-line.cols-sm-7>:nth-child(7n):after,.split-line.cols-sm-8>:nth-child(8n):after,.split-line>.col-sm-1:nth-child(12n):after,.split-line>.col-sm-2:nth-child(6n):after,.split-line>.col-sm-3:nth-child(4n):after,.split-line>.col-sm-4:nth-child(3n):after,.split-line>.col-sm-5:nth-child(2n):after,.split-line>.col-sm-6:nth-child(2n):after,.split-line>.col-sm-7:nth-child(1n):after,.split-line>.col-sm-8:nth-child(1n):after,.split-line>.col-sm-9:nth-child(1n):after,.split-line>.col-sm-10:nth-child(1n):after,.split-line>.col-sm-11:nth-child(1n):after {
        content: none
    }
}

@media (min-width: 768px) {
    .split-line.cols-md-1>:nth-child(n):after,.split-line.cols-md-2>:nth-child(n):after,.split-line.cols-md-3>:nth-child(n):after,.split-line.cols-md-4>:nth-child(n):after,.split-line.cols-md-5>:nth-child(n):after,.split-line.cols-md-6>:nth-child(n):after,.split-line.cols-md-7>:nth-child(n):after,.split-line.cols-md-8>:nth-child(n):after,.split-line>.col-md-1:nth-child(n):after,.split-line>.col-md-2:nth-child(n):after,.split-line>.col-md-3:nth-child(n):after,.split-line>.col-md-4:nth-child(n):after,.split-line>.col-md-5:nth-child(n):after,.split-line>.col-md-6:nth-child(n):after,.split-line>.col-md-7:nth-child(n):after,.split-line>.col-md-8:nth-child(n):after,.split-line>.col-md-9:nth-child(n):after,.split-line>.col-md-10:nth-child(n):after,.split-line>.col-md-11:nth-child(n):after {
        content:""
    }

    .split-line.cols-md-1>:nth-child(1n):after,.split-line.cols-md-2>:nth-child(2n):after,.split-line.cols-md-3>:nth-child(3n):after,.split-line.cols-md-4>:nth-child(4n):after,.split-line.cols-md-5>:nth-child(5n):after,.split-line.cols-md-6>:nth-child(6n):after,.split-line.cols-md-7>:nth-child(7n):after,.split-line.cols-md-8>:nth-child(8n):after,.split-line>.col-md-1:nth-child(12n):after,.split-line>.col-md-2:nth-child(6n):after,.split-line>.col-md-3:nth-child(4n):after,.split-line>.col-md-4:nth-child(3n):after,.split-line>.col-md-5:nth-child(2n):after,.split-line>.col-md-6:nth-child(2n):after,.split-line>.col-md-7:nth-child(1n):after,.split-line>.col-md-8:nth-child(1n):after,.split-line>.col-md-9:nth-child(1n):after,.split-line>.col-md-10:nth-child(1n):after,.split-line>.col-md-11:nth-child(1n):after {
        content: none
    }
}

@media (min-width: 992px) {
    .split-line.cols-lg-1>:nth-child(n):after,.split-line.cols-lg-2>:nth-child(n):after,.split-line.cols-lg-3>:nth-child(n):after,.split-line.cols-lg-4>:nth-child(n):after,.split-line.cols-lg-5>:nth-child(n):after,.split-line.cols-lg-6>:nth-child(n):after,.split-line.cols-lg-7>:nth-child(n):after,.split-line.cols-lg-8>:nth-child(n):after,.split-line>.col-lg-1:nth-child(n):after,.split-line>.col-lg-2:nth-child(n):after,.split-line>.col-lg-3:nth-child(n):after,.split-line>.col-lg-4:nth-child(n):after,.split-line>.col-lg-5:nth-child(n):after,.split-line>.col-lg-6:nth-child(n):after,.split-line>.col-lg-7:nth-child(n):after,.split-line>.col-lg-8:nth-child(n):after,.split-line>.col-lg-9:nth-child(n):after,.split-line>.col-lg-10:nth-child(n):after,.split-line>.col-lg-11:nth-child(n):after {
        content:""
    }

    .split-line.cols-lg-1>:nth-child(1n):after,.split-line.cols-lg-2>:nth-child(2n):after,.split-line.cols-lg-3>:nth-child(3n):after,.split-line.cols-lg-4>:nth-child(4n):after,.split-line.cols-lg-5>:nth-child(5n):after,.split-line.cols-lg-6>:nth-child(6n):after,.split-line.cols-lg-7>:nth-child(7n):after,.split-line.cols-lg-8>:nth-child(8n):after,.split-line>.col-lg-1:nth-child(12n):after,.split-line>.col-lg-2:nth-child(6n):after,.split-line>.col-lg-3:nth-child(4n):after,.split-line>.col-lg-4:nth-child(3n):after,.split-line>.col-lg-5:nth-child(2n):after,.split-line>.col-lg-6:nth-child(2n):after,.split-line>.col-lg-7:nth-child(1n):after,.split-line>.col-lg-8:nth-child(1n):after,.split-line>.col-lg-9:nth-child(1n):after,.split-line>.col-lg-10:nth-child(1n):after,.split-line>.col-lg-11:nth-child(1n):after {
        content: none
    }
}

@media (min-width: 1200px) {
    .split-line.cols-xl-1>:nth-child(n):after,.split-line.cols-xl-2>:nth-child(n):after,.split-line.cols-xl-3>:nth-child(n):after,.split-line.cols-xl-4>:nth-child(n):after,.split-line.cols-xl-5>:nth-child(n):after,.split-line.cols-xl-6>:nth-child(n):after,.split-line.cols-xl-7>:nth-child(n):after,.split-line.cols-xl-8>:nth-child(n):after,.split-line>.col-xl-1:nth-child(n):after,.split-line>.col-xl-2:nth-child(n):after,.split-line>.col-xl-3:nth-child(n):after,.split-line>.col-xl-4:nth-child(n):after,.split-line>.col-xl-5:nth-child(n):after,.split-line>.col-xl-5col:nth-child(n):after,.split-line>.col-xl-6:nth-child(n):after,.split-line>.col-xl-7:nth-child(n):after,.split-line>.col-xl-7col:nth-child(n):after,.split-line>.col-xl-8:nth-child(n):after,.split-line>.col-xl-8col:nth-child(n):after,.split-line>.col-xl-9:nth-child(n):after,.split-line>.col-xl-10:nth-child(n):after,.split-line>.col-xl-11:nth-child(n):after {
        content:""
    }

    .split-line.cols-xl-1>:nth-child(1n):after,.split-line.cols-xl-2>:nth-child(2n):after,.split-line.cols-xl-3>:nth-child(3n):after,.split-line.cols-xl-4>:nth-child(4n):after,.split-line.cols-xl-5>:nth-child(5n):after,.split-line.cols-xl-6>:nth-child(6n):after,.split-line.cols-xl-7>:nth-child(7n):after,.split-line.cols-xl-8>:nth-child(8n):after,.split-line>.col-xl-1:nth-child(12n):after,.split-line>.col-xl-2:nth-child(6n):after,.split-line>.col-xl-3:nth-child(4n):after,.split-line>.col-xl-4:nth-child(3n):after,.split-line>.col-xl-5:nth-child(2n):after,.split-line>.col-xl-5col:nth-child(5n):after,.split-line>.col-xl-6:nth-child(2n):after,.split-line>.col-xl-7:nth-child(1n):after,.split-line>.col-xl-7col:nth-child(7n):after,.split-line>.col-xl-8:nth-child(1n):after,.split-line>.col-xl-8col:nth-child(8n):after,.split-line>.col-xl-9:nth-child(1n):after,.split-line>.col-xl-10:nth-child(1n):after,.split-line>.col-xl-11:nth-child(1n):after {
        content: none
    }
}

.mt-0 {
    margin-top: 0rem!important
}

.mb-0 {
    margin-bottom: 0rem!important
}

.pt-0 {
    padding-top: 0rem!important
}

.pb-0 {
    padding-bottom: 0rem!important
}

.mt-1 {
    margin-top: 0.5rem!important
}

.mb-1 {
    margin-bottom: 0.5rem!important
}

.pt-1 {
    padding-top: 0.5rem!important
}

.pb-1 {
    padding-bottom: 0.5rem!important
}

.mt-2 {
    margin-top: 1rem!important
}

.mb-2 {
    margin-bottom: 1rem!important
}

.pt-2 {
    padding-top: 1rem!important
}

.pb-2 {
    padding-bottom: 1rem!important
}

.mt-3 {
    margin-top: 1.5rem!important
}

.mb-3 {
    margin-bottom: 1.5rem!important
}

.pt-3 {
    padding-top: 1.5rem!important
}

.pb-3 {
    padding-bottom: 1.5rem!important
}

.mt-4 {
    margin-top: 2rem!important
}

.mb-4 {
    margin-bottom: 2rem!important
}

.pt-4 {
    padding-top: 2rem!important
}

.pb-4 {
    padding-bottom: 2rem!important
}

.mt-5 {
    margin-top: 2.5rem!important
}

.mb-5 {
    margin-bottom: 2.5rem!important
}

.pt-5 {
    padding-top: 2.5rem!important
}

.pb-5 {
    padding-bottom: 2.5rem!important
}

.mt-6 {
    margin-top: 3rem!important
}

.mb-6 {
    margin-bottom: 3rem!important
}

.pt-6 {
    padding-top: 3rem!important
}

.pb-6 {
    padding-bottom: 3rem!important
}

.mt-7 {
    margin-top: 3.5rem!important
}

.mb-7 {
    margin-bottom: 3.5rem!important
}

.pt-7 {
    padding-top: 3.5rem!important
}

.pb-7 {
    padding-bottom: 3.5rem!important
}

.mt-8 {
    margin-top: 4rem!important
}

.mb-8 {
    margin-bottom: 4rem!important
}

.pt-8 {
    padding-top: 4rem!important
}

.pb-8 {
    padding-bottom: 4rem!important
}

.mt-9 {
    margin-top: 4.5rem!important
}

.mb-9 {
    margin-bottom: 4.5rem!important
}

.pt-9 {
    padding-top: 4.5rem!important
}

.pb-9 {
    padding-bottom: 4.5rem!important
}

.mt-10 {
    margin-top: 5rem!important
}

.mb-10 {
    margin-bottom: 5rem!important
}

.pt-10 {
    padding-top: 5rem!important
}

.pb-10 {
    padding-bottom: 5rem!important
}

.ml-0 {
    margin-left: 0rem!important
}

.mr-0 {
    margin-right: 0rem!important
}

.pl-0 {
    padding-left: 0rem!important
}

.pr-0 {
    padding-right: 0rem!important
}

.ml-1 {
    margin-left: 0.5rem!important
}

.mr-1 {
    margin-right: 0.5rem!important
}

.pl-1 {
    padding-left: 0.5rem!important
}

.pr-1 {
    padding-right: 0.5rem!important
}

.ml-2 {
    margin-left: 1rem!important
}

.mr-2 {
    margin-right: 1rem!important
}

.pl-2 {
    padding-left: 1rem!important
}

.pr-2 {
    padding-right: 1rem!important
}

.ml-3 {
    margin-left: 1.5rem!important
}

.mr-3 {
    margin-right: 1.5rem!important
}

.pl-3 {
    padding-left: 1.5rem!important
}

.pr-3 {
    padding-right: 1.5rem!important
}

.ml-4 {
    margin-left: 2rem!important
}

.mr-4 {
    margin-right: 2rem!important
}

.pl-4 {
    padding-left: 2rem!important
}

.pr-4 {
    padding-right: 2rem!important
}

.ml-5 {
    margin-left: 2.5rem!important
}

.mr-5 {
    margin-right: 2.5rem!important
}

.pl-5 {
    padding-left: 2.5rem!important
}

.pr-5 {
    padding-right: 2.5rem!important
}

.ml-6 {
    margin-left: 3rem!important
}

.mr-6 {
    margin-right: 3rem!important
}

.pl-6 {
    padding-left: 3rem!important
}

.pr-6 {
    padding-right: 3rem!important
}

.ml-7 {
    margin-left: 3.5rem!important
}

.mr-7 {
    margin-right: 3.5rem!important
}

.pl-7 {
    padding-left: 3.5rem!important
}

.pr-7 {
    padding-right: 3.5rem!important
}

.ml-8 {
    margin-left: 4rem!important
}

.mr-8 {
    margin-right: 4rem!important
}

.pl-8 {
    padding-left: 4rem!important
}

.pr-8 {
    padding-right: 4rem!important
}

.ml-9 {
    margin-left: 4.5rem!important
}

.mr-9 {
    margin-right: 4.5rem!important
}

.pl-9 {
    padding-left: 4.5rem!important
}

.pr-9 {
    padding-right: 4.5rem!important
}

.ml-10 {
    margin-left: 5rem!important
}

.mr-10 {
    margin-right: 5rem!important
}

.pl-10 {
    padding-left: 5rem!important
}

.pr-10 {
    padding-right: 5rem!important
}

.p-0 {
    padding: 0!important
}

.m-0 {
    margin: 0!important
}

.ml-auto {
    margin-left: auto!important
}

.mr-auto {
    margin-right: auto!important
}

.mx-auto {
    margin-left: auto!important;
    margin-right: auto!important
}

@media (min-width: 576px) {
    .mt-sm-0 {
        margin-top:0rem!important
    }

    .mb-sm-0 {
        margin-bottom: 0rem!important
    }

    .mr-sm-0 {
        margin-right: 0rem!important
    }

    .ml-sm-0 {
        margin-left: 0rem!important
    }

    .pt-sm-0 {
        padding-top: 0rem!important
    }

    .pr-sm-0 {
        padding-right: 0rem!important
    }

    .pl-sm-0 {
        padding-left: 0rem!important
    }

    .pb-sm-0 {
        padding-bottom: 0rem!important
    }

    .mt-sm-1 {
        margin-top: 0.5rem!important
    }

    .mb-sm-1 {
        margin-bottom: 0.5rem!important
    }

    .mr-sm-1 {
        margin-right: 0.5rem!important
    }

    .ml-sm-1 {
        margin-left: 0.5rem!important
    }

    .pt-sm-1 {
        padding-top: 0.5rem!important
    }

    .pr-sm-1 {
        padding-right: 0.5rem!important
    }

    .pl-sm-1 {
        padding-left: 0.5rem!important
    }

    .pb-sm-1 {
        padding-bottom: 0.5rem!important
    }

    .mt-sm-2 {
        margin-top: 1rem!important
    }

    .mb-sm-2 {
        margin-bottom: 1rem!important
    }

    .mr-sm-2 {
        margin-right: 1rem!important
    }

    .ml-sm-2 {
        margin-left: 1rem!important
    }

    .pt-sm-2 {
        padding-top: 1rem!important
    }

    .pr-sm-2 {
        padding-right: 1rem!important
    }

    .pl-sm-2 {
        padding-left: 1rem!important
    }

    .pb-sm-2 {
        padding-bottom: 1rem!important
    }

    .mt-sm-3 {
        margin-top: 1.5rem!important
    }

    .mb-sm-3 {
        margin-bottom: 1.5rem!important
    }

    .mr-sm-3 {
        margin-right: 1.5rem!important
    }

    .ml-sm-3 {
        margin-left: 1.5rem!important
    }

    .pt-sm-3 {
        padding-top: 1.5rem!important
    }

    .pr-sm-3 {
        padding-right: 1.5rem!important
    }

    .pl-sm-3 {
        padding-left: 1.5rem!important
    }

    .pb-sm-3 {
        padding-bottom: 1.5rem!important
    }

    .mt-sm-4 {
        margin-top: 2rem!important
    }

    .mb-sm-4 {
        margin-bottom: 2rem!important
    }

    .mr-sm-4 {
        margin-right: 2rem!important
    }

    .ml-sm-4 {
        margin-left: 2rem!important
    }

    .pt-sm-4 {
        padding-top: 2rem!important
    }

    .pr-sm-4 {
        padding-right: 2rem!important
    }

    .pl-sm-4 {
        padding-left: 2rem!important
    }

    .pb-sm-4 {
        padding-bottom: 2rem!important
    }

    .mt-sm-5 {
        margin-top: 2.5rem!important
    }

    .mb-sm-5 {
        margin-bottom: 2.5rem!important
    }

    .mr-sm-5 {
        margin-right: 2.5rem!important
    }

    .ml-sm-5 {
        margin-left: 2.5rem!important
    }

    .pt-sm-5 {
        padding-top: 2.5rem!important
    }

    .pr-sm-5 {
        padding-right: 2.5rem!important
    }

    .pl-sm-5 {
        padding-left: 2.5rem!important
    }

    .pb-sm-5 {
        padding-bottom: 2.5rem!important
    }

    .mt-sm-6 {
        margin-top: 3rem!important
    }

    .mb-sm-6 {
        margin-bottom: 3rem!important
    }

    .mr-sm-6 {
        margin-right: 3rem!important
    }

    .ml-sm-6 {
        margin-left: 3rem!important
    }

    .pt-sm-6 {
        padding-top: 3rem!important
    }

    .pr-sm-6 {
        padding-right: 3rem!important
    }

    .pl-sm-6 {
        padding-left: 3rem!important
    }

    .pb-sm-6 {
        padding-bottom: 3rem!important
    }

    .mt-sm-7 {
        margin-top: 3.5rem!important
    }

    .mb-sm-7 {
        margin-bottom: 3.5rem!important
    }

    .mr-sm-7 {
        margin-right: 3.5rem!important
    }

    .ml-sm-7 {
        margin-left: 3.5rem!important
    }

    .pt-sm-7 {
        padding-top: 3.5rem!important
    }

    .pr-sm-7 {
        padding-right: 3.5rem!important
    }

    .pl-sm-7 {
        padding-left: 3.5rem!important
    }

    .pb-sm-7 {
        padding-bottom: 3.5rem!important
    }

    .mt-sm-8 {
        margin-top: 4rem!important
    }

    .mb-sm-8 {
        margin-bottom: 4rem!important
    }

    .mr-sm-8 {
        margin-right: 4rem!important
    }

    .ml-sm-8 {
        margin-left: 4rem!important
    }

    .pt-sm-8 {
        padding-top: 4rem!important
    }

    .pr-sm-8 {
        padding-right: 4rem!important
    }

    .pl-sm-8 {
        padding-left: 4rem!important
    }

    .pb-sm-8 {
        padding-bottom: 4rem!important
    }

    .mt-sm-9 {
        margin-top: 4.5rem!important
    }

    .mb-sm-9 {
        margin-bottom: 4.5rem!important
    }

    .mr-sm-9 {
        margin-right: 4.5rem!important
    }

    .ml-sm-9 {
        margin-left: 4.5rem!important
    }

    .pt-sm-9 {
        padding-top: 4.5rem!important
    }

    .pr-sm-9 {
        padding-right: 4.5rem!important
    }

    .pl-sm-9 {
        padding-left: 4.5rem!important
    }

    .pb-sm-9 {
        padding-bottom: 4.5rem!important
    }

    .mt-sm-10 {
        margin-top: 5rem!important
    }

    .mb-sm-10 {
        margin-bottom: 5rem!important
    }

    .mr-sm-10 {
        margin-right: 5rem!important
    }

    .ml-sm-10 {
        margin-left: 5rem!important
    }

    .pt-sm-10 {
        padding-top: 5rem!important
    }

    .pr-sm-10 {
        padding-right: 5rem!important
    }

    .pl-sm-10 {
        padding-left: 5rem!important
    }

    .pb-sm-10 {
        padding-bottom: 5rem!important
    }
}

@media (min-width: 768px) {
    .mt-md-0 {
        margin-top:0rem!important
    }

    .mb-md-0 {
        margin-bottom: 0rem!important
    }

    .mr-md-0 {
        margin-right: 0rem!important
    }

    .ml-md-0 {
        margin-left: 0rem!important
    }

    .pt-md-0 {
        padding-top: 0rem!important
    }

    .pb-md-0 {
        padding-bottom: 0rem!important
    }

    .pr-md-0 {
        padding-right: 0rem!important
    }

    .pl-md-0 {
        padding-left: 0rem!important
    }

    .mt-md-1 {
        margin-top: 0.5rem!important
    }

    .mb-md-1 {
        margin-bottom: 0.5rem!important
    }

    .mr-md-1 {
        margin-right: 0.5rem!important
    }

    .ml-md-1 {
        margin-left: 0.5rem!important
    }

    .pt-md-1 {
        padding-top: 0.5rem!important
    }

    .pb-md-1 {
        padding-bottom: 0.5rem!important
    }

    .pr-md-1 {
        padding-right: 0.5rem!important
    }

    .pl-md-1 {
        padding-left: 0.5rem!important
    }

    .mt-md-2 {
        margin-top: 1rem!important
    }

    .mb-md-2 {
        margin-bottom: 1rem!important
    }

    .mr-md-2 {
        margin-right: 1rem!important
    }

    .ml-md-2 {
        margin-left: 1rem!important
    }

    .pt-md-2 {
        padding-top: 1rem!important
    }

    .pb-md-2 {
        padding-bottom: 1rem!important
    }

    .pr-md-2 {
        padding-right: 1rem!important
    }

    .pl-md-2 {
        padding-left: 1rem!important
    }

    .mt-md-3 {
        margin-top: 1.5rem!important
    }

    .mb-md-3 {
        margin-bottom: 1.5rem!important
    }

    .mr-md-3 {
        margin-right: 1.5rem!important
    }

    .ml-md-3 {
        margin-left: 1.5rem!important
    }

    .pt-md-3 {
        padding-top: 1.5rem!important
    }

    .pb-md-3 {
        padding-bottom: 1.5rem!important
    }

    .pr-md-3 {
        padding-right: 1.5rem!important
    }

    .pl-md-3 {
        padding-left: 1.5rem!important
    }

    .mt-md-4 {
        margin-top: 2rem!important
    }

    .mb-md-4 {
        margin-bottom: 2rem!important
    }

    .mr-md-4 {
        margin-right: 2rem!important
    }

    .ml-md-4 {
        margin-left: 2rem!important
    }

    .pt-md-4 {
        padding-top: 2rem!important
    }

    .pb-md-4 {
        padding-bottom: 2rem!important
    }

    .pr-md-4 {
        padding-right: 2rem!important
    }

    .pl-md-4 {
        padding-left: 2rem!important
    }

    .mt-md-5 {
        margin-top: 2.5rem!important
    }

    .mb-md-5 {
        margin-bottom: 2.5rem!important
    }

    .mr-md-5 {
        margin-right: 2.5rem!important
    }

    .ml-md-5 {
        margin-left: 2.5rem!important
    }

    .pt-md-5 {
        padding-top: 2.5rem!important
    }

    .pb-md-5 {
        padding-bottom: 2.5rem!important
    }

    .pr-md-5 {
        padding-right: 2.5rem!important
    }

    .pl-md-5 {
        padding-left: 2.5rem!important
    }

    .mt-md-6 {
        margin-top: 3rem!important
    }

    .mb-md-6 {
        margin-bottom: 3rem!important
    }

    .mr-md-6 {
        margin-right: 3rem!important
    }

    .ml-md-6 {
        margin-left: 3rem!important
    }

    .pt-md-6 {
        padding-top: 3rem!important
    }

    .pb-md-6 {
        padding-bottom: 3rem!important
    }

    .pr-md-6 {
        padding-right: 3rem!important
    }

    .pl-md-6 {
        padding-left: 3rem!important
    }

    .mt-md-7 {
        margin-top: 3.5rem!important
    }

    .mb-md-7 {
        margin-bottom: 3.5rem!important
    }

    .mr-md-7 {
        margin-right: 3.5rem!important
    }

    .ml-md-7 {
        margin-left: 3.5rem!important
    }

    .pt-md-7 {
        padding-top: 3.5rem!important
    }

    .pb-md-7 {
        padding-bottom: 3.5rem!important
    }

    .pr-md-7 {
        padding-right: 3.5rem!important
    }

    .pl-md-7 {
        padding-left: 3.5rem!important
    }

    .mt-md-8 {
        margin-top: 4rem!important
    }

    .mb-md-8 {
        margin-bottom: 4rem!important
    }

    .mr-md-8 {
        margin-right: 4rem!important
    }

    .ml-md-8 {
        margin-left: 4rem!important
    }

    .pt-md-8 {
        padding-top: 4rem!important
    }

    .pb-md-8 {
        padding-bottom: 4rem!important
    }

    .pr-md-8 {
        padding-right: 4rem!important
    }

    .pl-md-8 {
        padding-left: 4rem!important
    }

    .mt-md-9 {
        margin-top: 4.5rem!important
    }

    .mb-md-9 {
        margin-bottom: 4.5rem!important
    }

    .mr-md-9 {
        margin-right: 4.5rem!important
    }

    .ml-md-9 {
        margin-left: 4.5rem!important
    }

    .pt-md-9 {
        padding-top: 4.5rem!important
    }

    .pb-md-9 {
        padding-bottom: 4.5rem!important
    }

    .pr-md-9 {
        padding-right: 4.5rem!important
    }

    .pl-md-9 {
        padding-left: 4.5rem!important
    }

    .mt-md-10 {
        margin-top: 5rem!important
    }

    .mb-md-10 {
        margin-bottom: 5rem!important
    }

    .mr-md-10 {
        margin-right: 5rem!important
    }

    .ml-md-10 {
        margin-left: 5rem!important
    }

    .pt-md-10 {
        padding-top: 5rem!important
    }

    .pb-md-10 {
        padding-bottom: 5rem!important
    }

    .pr-md-10 {
        padding-right: 5rem!important
    }

    .pl-md-10 {
        padding-left: 5rem!important
    }
}

@media (min-width: 992px) {
    .mt-lg-0 {
        margin-top:0rem!important
    }

    .mb-lg-0 {
        margin-bottom: 0rem!important
    }

    .pt-lg-0 {
        padding-top: 0rem!important
    }

    .pb-lg-0 {
        padding-bottom: 0rem!important
    }

    .ml-lg-0 {
        margin-left: 0rem!important
    }

    .mr-lg-0 {
        margin-right: 0rem!important
    }

    .pl-lg-0 {
        padding-left: 0rem!important
    }

    .pr-lg-0 {
        padding-right: 0rem!important
    }

    .mt-lg-1 {
        margin-top: 0.5rem!important
    }

    .mb-lg-1 {
        margin-bottom: 0.5rem!important
    }

    .pt-lg-1 {
        padding-top: 0.5rem!important
    }

    .pb-lg-1 {
        padding-bottom: 0.5rem!important
    }

    .ml-lg-1 {
        margin-left: 0.5rem!important
    }

    .mr-lg-1 {
        margin-right: 0.5rem!important
    }

    .pl-lg-1 {
        padding-left: 0.5rem!important
    }

    .pr-lg-1 {
        padding-right: 0.5rem!important
    }

    .mt-lg-2 {
        margin-top: 1rem!important
    }

    .mb-lg-2 {
        margin-bottom: 1rem!important
    }

    .pt-lg-2 {
        padding-top: 1rem!important
    }

    .pb-lg-2 {
        padding-bottom: 1rem!important
    }

    .ml-lg-2 {
        margin-left: 1rem!important
    }

    .mr-lg-2 {
        margin-right: 1rem!important
    }

    .pl-lg-2 {
        padding-left: 1rem!important
    }

    .pr-lg-2 {
        padding-right: 1rem!important
    }

    .mt-lg-3 {
        margin-top: 1.5rem!important
    }

    .mb-lg-3 {
        margin-bottom: 1.5rem!important
    }

    .pt-lg-3 {
        padding-top: 1.5rem!important
    }

    .pb-lg-3 {
        padding-bottom: 1.5rem!important
    }

    .ml-lg-3 {
        margin-left: 1.5rem!important
    }

    .mr-lg-3 {
        margin-right: 1.5rem!important
    }

    .pl-lg-3 {
        padding-left: 1.5rem!important
    }

    .pr-lg-3 {
        padding-right: 1.5rem!important
    }

    .mt-lg-4 {
        margin-top: 2rem!important
    }

    .mb-lg-4 {
        margin-bottom: 2rem!important
    }

    .pt-lg-4 {
        padding-top: 2rem!important
    }

    .pb-lg-4 {
        padding-bottom: 2rem!important
    }

    .ml-lg-4 {
        margin-left: 2rem!important
    }

    .mr-lg-4 {
        margin-right: 2rem!important
    }

    .pl-lg-4 {
        padding-left: 2rem!important
    }

    .pr-lg-4 {
        padding-right: 2rem!important
    }

    .mt-lg-5 {
        margin-top: 2.5rem!important
    }

    .mb-lg-5 {
        margin-bottom: 2.5rem!important
    }

    .pt-lg-5 {
        padding-top: 2.5rem!important
    }

    .pb-lg-5 {
        padding-bottom: 2.5rem!important
    }

    .ml-lg-5 {
        margin-left: 2.5rem!important
    }

    .mr-lg-5 {
        margin-right: 2.5rem!important
    }

    .pl-lg-5 {
        padding-left: 2.5rem!important
    }

    .pr-lg-5 {
        padding-right: 2.5rem!important
    }

    .mt-lg-6 {
        margin-top: 3rem!important
    }

    .mb-lg-6 {
        margin-bottom: 3rem!important
    }

    .pt-lg-6 {
        padding-top: 3rem!important
    }

    .pb-lg-6 {
        padding-bottom: 3rem!important
    }

    .ml-lg-6 {
        margin-left: 3rem!important
    }

    .mr-lg-6 {
        margin-right: 3rem!important
    }

    .pl-lg-6 {
        padding-left: 3rem!important
    }

    .pr-lg-6 {
        padding-right: 3rem!important
    }

    .mt-lg-7 {
        margin-top: 3.5rem!important
    }

    .mb-lg-7 {
        margin-bottom: 3.5rem!important
    }

    .pt-lg-7 {
        padding-top: 3.5rem!important
    }

    .pb-lg-7 {
        padding-bottom: 3.5rem!important
    }

    .ml-lg-7 {
        margin-left: 3.5rem!important
    }

    .mr-lg-7 {
        margin-right: 3.5rem!important
    }

    .pl-lg-7 {
        padding-left: 3.5rem!important
    }

    .pr-lg-7 {
        padding-right: 3.5rem!important
    }

    .mt-lg-8 {
        margin-top: 4rem!important
    }

    .mb-lg-8 {
        margin-bottom: 4rem!important
    }

    .pt-lg-8 {
        padding-top: 4rem!important
    }

    .pb-lg-8 {
        padding-bottom: 4rem!important
    }

    .ml-lg-8 {
        margin-left: 4rem!important
    }

    .mr-lg-8 {
        margin-right: 4rem!important
    }

    .pl-lg-8 {
        padding-left: 4rem!important
    }

    .pr-lg-8 {
        padding-right: 4rem!important
    }

    .mt-lg-9 {
        margin-top: 4.5rem!important
    }

    .mb-lg-9 {
        margin-bottom: 4.5rem!important
    }

    .pt-lg-9 {
        padding-top: 4.5rem!important
    }

    .pb-lg-9 {
        padding-bottom: 4.5rem!important
    }

    .ml-lg-9 {
        margin-left: 4.5rem!important
    }

    .mr-lg-9 {
        margin-right: 4.5rem!important
    }

    .pl-lg-9 {
        padding-left: 4.5rem!important
    }

    .pr-lg-9 {
        padding-right: 4.5rem!important
    }

    .mt-lg-10 {
        margin-top: 5rem!important
    }

    .mb-lg-10 {
        margin-bottom: 5rem!important
    }

    .pt-lg-10 {
        padding-top: 5rem!important
    }

    .pb-lg-10 {
        padding-bottom: 5rem!important
    }

    .ml-lg-10 {
        margin-left: 5rem!important
    }

    .mr-lg-10 {
        margin-right: 5rem!important
    }

    .pl-lg-10 {
        padding-left: 5rem!important
    }

    .pr-lg-10 {
        padding-right: 5rem!important
    }
}

@media (min-width: 1200px) {
    .mt-xl-0 {
        margin-top:0rem!important
    }

    .mb-xl-0 {
        margin-bottom: 0rem!important
    }

    .ml-xl-0 {
        margin-left: 0rem!important
    }

    .mr-xl-0 {
        margin-right: 0rem!important
    }

    .pl-xl-0 {
        padding-left: 0rem!important
    }

    .pr-xl-0 {
        padding-right: 0rem!important
    }

    .mt-xl-1 {
        margin-top: 0.5rem!important
    }

    .mb-xl-1 {
        margin-bottom: 0.5rem!important
    }

    .ml-xl-1 {
        margin-left: 0.5rem!important
    }

    .mr-xl-1 {
        margin-right: 0.5rem!important
    }

    .pl-xl-1 {
        padding-left: 0.5rem!important
    }

    .pr-xl-1 {
        padding-right: 0.5rem!important
    }

    .mt-xl-2 {
        margin-top: 1rem!important
    }

    .mb-xl-2 {
        margin-bottom: 1rem!important
    }

    .ml-xl-2 {
        margin-left: 1rem!important
    }

    .mr-xl-2 {
        margin-right: 1rem!important
    }

    .pl-xl-2 {
        padding-left: 1rem!important
    }

    .pr-xl-2 {
        padding-right: 1rem!important
    }

    .mt-xl-3 {
        margin-top: 1.5rem!important
    }

    .mb-xl-3 {
        margin-bottom: 1.5rem!important
    }

    .ml-xl-3 {
        margin-left: 1.5rem!important
    }

    .mr-xl-3 {
        margin-right: 1.5rem!important
    }

    .pl-xl-3 {
        padding-left: 1.5rem!important
    }

    .pr-xl-3 {
        padding-right: 1.5rem!important
    }

    .mt-xl-4 {
        margin-top: 2rem!important
    }

    .mb-xl-4 {
        margin-bottom: 2rem!important
    }

    .ml-xl-4 {
        margin-left: 2rem!important
    }

    .mr-xl-4 {
        margin-right: 2rem!important
    }

    .pl-xl-4 {
        padding-left: 2rem!important
    }

    .pr-xl-4 {
        padding-right: 2rem!important
    }

    .mt-xl-5 {
        margin-top: 2.5rem!important
    }

    .mb-xl-5 {
        margin-bottom: 2.5rem!important
    }

    .ml-xl-5 {
        margin-left: 2.5rem!important
    }

    .mr-xl-5 {
        margin-right: 2.5rem!important
    }

    .pl-xl-5 {
        padding-left: 2.5rem!important
    }

    .pr-xl-5 {
        padding-right: 2.5rem!important
    }

    .mt-xl-6 {
        margin-top: 3rem!important
    }

    .mb-xl-6 {
        margin-bottom: 3rem!important
    }

    .ml-xl-6 {
        margin-left: 3rem!important
    }

    .mr-xl-6 {
        margin-right: 3rem!important
    }

    .pl-xl-6 {
        padding-left: 3rem!important
    }

    .pr-xl-6 {
        padding-right: 3rem!important
    }

    .mt-xl-7 {
        margin-top: 3.5rem!important
    }

    .mb-xl-7 {
        margin-bottom: 3.5rem!important
    }

    .ml-xl-7 {
        margin-left: 3.5rem!important
    }

    .mr-xl-7 {
        margin-right: 3.5rem!important
    }

    .pl-xl-7 {
        padding-left: 3.5rem!important
    }

    .pr-xl-7 {
        padding-right: 3.5rem!important
    }

    .mt-xl-8 {
        margin-top: 4rem!important
    }

    .mb-xl-8 {
        margin-bottom: 4rem!important
    }

    .ml-xl-8 {
        margin-left: 4rem!important
    }

    .mr-xl-8 {
        margin-right: 4rem!important
    }

    .pl-xl-8 {
        padding-left: 4rem!important
    }

    .pr-xl-8 {
        padding-right: 4rem!important
    }

    .mt-xl-9 {
        margin-top: 4.5rem!important
    }

    .mb-xl-9 {
        margin-bottom: 4.5rem!important
    }

    .ml-xl-9 {
        margin-left: 4.5rem!important
    }

    .mr-xl-9 {
        margin-right: 4.5rem!important
    }

    .pl-xl-9 {
        padding-left: 4.5rem!important
    }

    .pr-xl-9 {
        padding-right: 4.5rem!important
    }

    .mt-xl-10 {
        margin-top: 5rem!important
    }

    .mb-xl-10 {
        margin-bottom: 5rem!important
    }

    .ml-xl-10 {
        margin-left: 5rem!important
    }

    .mr-xl-10 {
        margin-right: 5rem!important
    }

    .pl-xl-10 {
        padding-left: 5rem!important
    }

    .pr-xl-10 {
        padding-right: 5rem!important
    }
}

@media (min-width: 992px) {
    .ml-lg-auto {
        margin-left:auto!important
    }

    .mr-lg-auto {
        margin-right: auto!important
    }

    .mx-lg-auto {
        margin-left: auto!important;
        margin-right: auto!important
    }
}

.alert-round {
    border-radius: 3px
}

.alert {
    position: relative;
    padding: 1.6rem 3.8rem 1.6rem 1.8rem;
    border: 1px solid #222;
    font-size: 1.4rem;
    line-height: 1.75
}

.alert .btn-close {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 2.1rem;
    transform: translateY(-50%);
    margin-top: -0.1rem;
    font-size: 1.5rem;
    line-height: 0
}

.alert-title {
    text-transform: uppercase;
    font-size: 1.4rem;
    line-height: inherit;
    color: inherit
}

.btn-close {
    transition: color 0.3s
}

.btn-close:hover {
    color: #000
}

.alert-primary {
    background-color: #0f172a;
    border-color: #0f172a;
    color: #0f172a
}

.alert-success {
    background-color: #a8c26e;
    border-color: #a8c26e;
    color: #a8c26e
}

.alert-warning {
    background-color: #FF7C12;
    border-color: #FF7C12;
    color: #FF7C12
}

.alert-danger {
    background-color: #b10001;
    border-color: #b10001;
    color: #b10001
}

.alert-black {
    background-color: #222;
    border-color: #222
}

.alert-black .btn-close:hover {
    color: #666
}

.alert-simple {
    background-color: transparent;
    border-style: dashed;
    border-color: #cacbcc
}

.alert-dark {
    color: #fff
}

.alert-dark .btn-close {
    color: #fff
}

.alert-icon {
    padding: 1.5rem 3.9rem 1.5rem 1.9rem
}

.alert-icon>i {
    vertical-align: middle;
    margin-right: 1.2rem;
    line-height: 1;
    font-size: 2.4rem;
    font-weight: 600
}

.alert-light.alert-primary {
    background-color: #edf4f9;
    border-color: #edf4f9
}

.alert-light.alert-danger {
    background-color: #f6d6d5;
    border-color: #f6d6d5;
    color: #6d1a17
}

.alert-light.alert-danger .btn-close {
    color: #6d1a17
}

.alert-light.alert-warning {
    background-color: #fff5eb;
    border-color: #fff5eb
}

.alert-message {
    display: block;
    padding: 1.3rem 3.9rem 1.9rem 1.9rem
}

.alert-message .btn-close {
    position: absolute;
    transform: translateY(0);
    top: 2.7rem;
    right: 2.1rem;
    font-size: 1.4rem
}

.alert-message .alert-title {
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.7
}

.alert-message p {
    margin: 0;
    padding-right: 2rem;
    line-height: 1.7
}

.alert-message.alert-link p {
    color: #666
}

.alert-message.alert-link a {
    color: #0f172a
}

.alert-message.alert-link a:hover {
    text-decoration: underline
}

.alert.alert-inline {
    padding-right: 4rem
}

.alert.alert-inline .alert-title {
    display: inline-block;
    margin: 0 0.8rem 0 0
}

.alert.alert-inline p {
    display: inline
}

.alert-btn:not(.alert-message) {
    padding: 0.9rem 3.9rem 0.9rem 0.9rem
}

.alert-btn .btn:not(.btn-close) {
    margin-right: 1rem;
    padding: 0.73em 1.61em
}

.alert-btn.alert-message p {
    margin-bottom: 1rem
}

.alert-btn.alert-dark.alert-warning .btn:not(.btn-close) {
    background-color: transparent;
    padding: 0.7em 1.43em;
    border-width: 3px;
    color: #fff
}

.alert-btn.alert-dark.alert-warning .btn:not(.btn-close):hover {
    border-color: #df7f50;
    background: #df7f50
}

.alert-btn.alert-light.alert-warning .btn:not(.btn-close) {
    color: #FF7C12;
    background-color: #fff;
    border-color: #fff
}

.alert-btn.alert-light.alert-warning .btn:not(.btn-close):hover {
    color: #fff;
    background-color: #FF7C12;
    border-color: #FF7C12
}

.alert-summary>i {
    margin-right: 0.9rem;
    font-size: 1.6rem;
    line-height: 1.25
}

.alert-summary ul {
    margin: 1.7rem 0 0 2.7rem;
    list-style-type: disc
}

@keyframes maskUp {
    0% {
        transform: translate(0,100%)
    }

    to {
        transform: translate(0,0)
    }
}

@keyframes maskRight {
    0% {
        transform: translate(-100%,0)
    }

    to {
        transform: translate(0,0)
    }
}

@keyframes maskDown {
    0% {
        transform: translate(0,-100%)
    }

    to {
        transform: translate(0,0)
    }
}

@keyframes maskLeft {
    0% {
        transform: translate(100%,0)
    }

    to {
        transform: translate(0,0)
    }
}

.maskUp {
    animation-name: maskUp
}

.maskRight {
    animation-name: maskRight
}

.maskDown {
    animation-name: maskDown
}

.maskLeft {
    animation-name: maskLeft
}

@keyframes fadeInUpShorter {
    0% {
        opacity: 0;
        transform: translate(0,50px);
        transform-origin: 0 0
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUpShorter {
    animation-name: fadeInUpShorter
}

@keyframes fadeInLeftShorter {
    0% {
        opacity: 0;
        transform: translate(50px,0);
        transform-origin: 0 0
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeftShorter {
    animation-name: fadeInLeftShorter
}

@keyframes fadeInRightShorter {
    0% {
        opacity: 0;
        transform: translate(-50px,0);
        transform-origin: 0 0
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightShorter {
    animation-name: fadeInRightShorter
}

@keyframes fadeInDownShorter {
    0% {
        opacity: 0;
        transform: translate(0,-50px);
        transform-origin: 0 0
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDownShorter {
    animation-name: fadeInDownShorter
}

@keyframes blurIn {
    0% {
        opacity: 0;
        filter: blur(20px);
        transform: scale(1.2)
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: none
    }
}

.blurIn {
    animation-name: blurIn
}

@keyframes grayOut {
    0% {
        opacity: 1;
        filter: grayscale(0)
    }

    15% {
        filter: grayscale(100%)
    }

    to {
        opacity: 0;
        filter: grayscale(100%)
    }
}

.grayOut {
    animation-name: grayOut
}

@keyframes dotPulse {
    0% {
        opacity: 1;
        transform: scale(0.2)
    }

    to {
        opacity: 0;
        transform: scale(1)
    }
}

.dotPulse {
    animation-name: dotPulse;
    animation-iteration-count: infinite;
    animation-duration: 4s
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0,100%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0,-100%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes flipInX {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }

    to {
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateY(90deg)
    }

    to {
        transform: perspective(400px)
    }
}

@keyframes flipOutY {
    0% {
        animation-timing-function: ease-out;
        transform: perspective(400px)
    }

    to {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg)
    }
}

@keyframes brightIn {
    0% {
        animation-timing-function: ease-in;
        filter: brightness(0%)
    }

    to {
        filter: brightness(100%)
    }
}

.brightIn {
    animation-name: brightIn
}

.appear-animate {
    visibility: hidden;
    opacity: 0
}

.appear-animation-visible {
    visibility: visible;
    opacity: 1
}

@-webkit-keyframes zoomInShorter {
    0% {
        -webkit-transform: scale3d(0.8,0.8,0.8);
        opacity: 0;
        transform: scale3d(0.8,0.8,0.8)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomInShorter {
    0% {
        -webkit-transform: scale3d(0.8,0.8,0.8);
        opacity: 0;
        transform: scale3d(0.8,0.8,0.8)
    }

    50% {
        opacity: 1
    }
}

.zoomInShorter {
    -webkit-animation-name: zoomInShorter;
    animation-name: zoomInShorter
}

@keyframes bounceInUp {
    60%,75%,90%,0%,to {
        animation-timing-function: cubic-bezier(0.215,0.61,0.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    75% {
        transform: translate3d(0,10px,0)
    }

    90% {
        transform: translate3d(0,-5px,0)
    }

    to {
        transform: translate3d(0,0,0)
    }
}

@keyframes slideZoomIn {
    0% {
        transform: scale3d(1,1,1);
        opacity: 1
    }

    to {
        transform: scale3d(1.1,1.1,1);
        opacity: 1
    }
}

.slideZoomIn {
    -webkit-animation-name: slideZoomIn;
    animation-name: slideZoomIn
}

@keyframes rotateStar {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.label-star {
    align-items: center;
    padding: 9px 7px 5px;
    border-radius: 0.3rem;
    line-height: 1
}

.label-star:after,.label-star:before {
    animation: 4s linear 0s infinite rotateStar;
    content: "ï€…";
    display: inline-block;
    margin: 0.5rem 0.5rem 0.5rem 1.5rem;
    vertical-align: middle;
    font-family: "Font Awesome 5 Free";
    font-size: 0.467em;
    font-weight: 400
}

.label-star:before {
    margin-left: 0.5rem;
    animation-direction: reverse
}

.comments {
    padding: 6rem 0;
    border-top: 1px solid #ebebeb
}

.comments ul ul {
    margin-left: 6rem;
    padding-top: 4.5rem
}

.comments li {
    margin-bottom: 4.5rem
}

.comments li:last-child {
    border-bottom-width: 0;
    margin-bottom: 0;
    padding-bottom: 0
}

@media (max-width: 575px) {
    .comments ul ul {
        margin-left:3rem
    }
}

.comment {
    position: relative;
    display: flex;
    align-items: flex-start
}

.comment p:last-child {
    margin-bottom: 0
}

.comment-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0.8rem 0 0 2.5rem
}

.comment-reply {
    color: #777;
    position: absolute;
    right: 0;
    top: 1.7rem;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.01em;
    padding-bottom: 0.5rem;
    transition: color 0.3s,box-shadow 0.3s
}

.comment-reply:focus,.comment-reply:hover {
    color: #0f172a;
    box-shadow: 0 2px 0 #0f172a
}

.comment-media {
    max-width: 6rem;
    flex: 0 0 6rem;
    height: 6rem;
    overflow: hidden
}

.comment-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.comment-user {
    margin-bottom: 1rem
}

.comment-user h4 {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0
}

.comment-user h4 a:focus,.comment-user h4 a:hover {
    color: #0f172a
}

.comment-user h4 span {
    display: block
}

.comment-date {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: #999;
    line-height: 1
}

.reply .form-control {
    max-width: 100%;
    color: #999;
    border-color: #e1e1e1;
    background-color: #fff;
    border-radius: 0.3rem
}

.reply p {
    font-size: 1.3rem
}

@font-face {
    src: url("../fonts/riode.eot?5gap68");
    src: url("../fonts/riode.eot?5gap68#iefix") format("embedded-opentype"),url("../fonts/riode.ttf?5gap68") format("truetype"),url("../fonts/riode.woff?5gap68") format("woff"),url("../fonts/riode.svg?5gap68#riode") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block
}

[class*=" d-icon-"],[class^=d-icon-] {
    display: inline-block;
    line-height: 1
}

[class*=" d-icon-"]:before,[class^=d-icon-]:before {
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.d-icon-truck:before {
    content: "î¤€"
}

.d-icon-service:before {
    content: "î¤"
}

.d-icon-secure:before {
    content: "î¤‚"
}

.d-icon-lock:before {
    content: "î¤ƒ"
}

.d-icon-percent:before {
    content: "î¤„"
}

.d-icon-layer:before {
    content: "î¤…"
}

.d-icon-alert:before {
    content: "î¤†"
}

.d-icon-database:before {
    content: "î¤‡"
}

.d-icon-money:before {
    content: "î¤ˆ"
}

.d-icon-shoppingbag:before {
    content: "î¤‰"
}

.d-icon-t-shirt1:before {
    content: "î¤Š"
}

.d-icon-t-shirt2:before {
    content: "î¤‹"
}

.d-icon-hat:before {
    content: "î¤Œ"
}

.d-icon-officebag:before {
    content: "î¤"
}

.d-icon-handbag:before {
    content: "î¤Ž"
}

.d-icon-backpack:before {
    content: "î¤"
}

.d-icon-shoes:before {
    content: "î¤"
}

.d-icon-pillow:before {
    content: "î¤‘"
}

.d-icon-dress:before {
    content: "î¤’"
}

.d-icon-loungewear:before {
    content: "î¤“"
}

.d-icon-desktop:before {
    content: "î¤”"
}

.d-icon-laptop:before {
    content: "î¤•"
}

.d-icon-gamepad1:before {
    content: "î¤–"
}

.d-icon-wireless:before {
    content: "î¤—"
}

.d-icon-projector:before {
    content: "î¤˜"
}

.d-icon-drone1:before {
    content: "î¤™"
}

.d-icon-drone2:before {
    content: "î¤š"
}

.d-icon-radio:before {
    content: "î¤›"
}

.d-icon-battery:before {
    content: "î¤œ"
}

.d-icon-plugin:before {
    content: "î¤"
}

.d-icon-memory:before {
    content: "î¤ž"
}

.d-icon-ball:before {
    content: "î¤Ÿ"
}

.d-icon-basketball1:before {
    content: "î¤ "
}

.d-icon-babycare:before {
    content: "î¤¡"
}

.d-icon-card:before {
    content: "î¤¢"
}

.d-icon-gamepad2:before {
    content: "î¤£"
}

.d-icon-camera1:before {
    content: "î¤¤"
}

.d-icon-camera2:before {
    content: "î¤¥"
}

.d-icon-babywear:before {
    content: "î¤¦"
}

.d-icon-abacus:before {
    content: "î¤§"
}

.d-icon-pot:before {
    content: "î¤¨"
}

.d-icon-freezer:before {
    content: "î¤©"
}

.d-icon-cook:before {
    content: "î¤ª"
}

.d-icon-student:before {
    content: "î¤«"
}

.d-icon-category:before {
    content: "î¤¬"
}

.d-icon-basketball2:before {
    content: "î¤­"
}

.d-icon-watch:before {
    content: "î¤®"
}

.d-icon-tcard:before {
    content: "î¤¯"
}

.d-icon-heartbeat:before {
    content: "î¤°"
}

.d-icon-watch-round:before {
    content: "î¤±"
}

.d-icon-washbowl:before {
    content: "î¤²"
}

.d-icon-bridge-lamp:before {
    content: "î¤³"
}

.d-icon-lamp:before {
    content: "î¤´"
}

.d-icon-sofa:before {
    content: "î¤µ"
}

.d-icon-sofa2:before {
    content: "î¤¶"
}

.d-icon-bed:before {
    content: "î¤·"
}

.d-icon-table:before {
    content: "î¤¸"
}

.d-icon-table-lamp:before {
    content: "î¤¹"
}

.d-icon-table-tv:before {
    content: "î¤º"
}

.d-icon-mirror:before {
    content: "î¤»"
}

.d-icon-volume:before {
    content: "î¤¼"
}

.d-icon-bars2:before {
    content: "î¤½"
}

.d-icon-bars:before {
    content: "î¤¾"
}

.d-icon-phone:before {
    content: "î¤¿"
}

.d-icon-user:before {
    content: "î¥€"
}

.d-icon-search:before {
    content: "î¥"
}

.d-icon-search2:before {
    content: "î¦Œ"
}

.d-icon-bag:before {
    content: "î¥‚"
}

.d-icon-map:before {
    content: "î¥ƒ"
}

.d-icon-info:before {
    content: "î¥„"
}

.d-icon-refresh:before {
    content: "î¥…"
}

.d-icon-left-arrow:before {
    content: "î¥†"
}

.d-icon-right-arrow:before {
    content: "î¥‡"
}

.d-icon-down-arrow:before {
    content: "î¥ˆ"
}

.d-icon-up-arrow:before {
    content: "î¥‰"
}

.d-icon-ruler:before {
    content: "î¥Š"
}

.d-icon-zoom:before {
    content: "î¥‹"
}

.d-icon-right-circle:before {
    content: "î¥Œ"
}

.d-icon-left-circle:before {
    content: "î¥"
}

.d-icon-up-circle:before {
    content: "î¥Ž"
}

.d-icon-down-circle:before {
    content: "î¥"
}

.d-icon-angle-right:before {
    content: "î¥"
}

.d-icon-angle-left:before {
    content: "î¥‘"
}

.d-icon-angle-up:before {
    content: "î¥’"
}

.d-icon-angle-down:before {
    content: "î¥“"
}

.d-icon-star:before {
    content: "î¥”"
}

.d-icon-star-full:before {
    content: "î¥•"
}

.d-icon-heart:before {
    content: "î¥–"
}

.d-icon-heart-full:before {
    content: "î¥—"
}

.d-icon-close:before {
    content: "î¥˜"
}

.d-icon-play-circle:before {
    content: "î¥™"
}

.d-icon-home:before {
    content: "î¥š"
}

.d-icon-filter-2:before {
    content: "î¥›"
}

.d-icon-switch:before {
    content: "î¥œ"
}

.d-icon-switch-left-on:before {
    content: "î¥"
}

.d-icon-switch-right-on:before {
    content: "î¥ž"
}

.d-icon-filter-3:before {
    content: "î¥Ÿ"
}

.d-icon-check:before {
    content: "î¥ "
}

.d-icon-alert-solid:before {
    content: "î¥¡"
}

.d-icon-headphone:before {
    content: "î¥¢"
}

.d-icon-mode-grid:before {
    content: "î Ž"
}

.d-icon-mode-list:before {
    content: "î "
}

.d-icon-cancel:before {
    content: "î ¬"
}

.d-icon-instagram:before {
    content: "ï…­"
}

.d-icon-solid-check:before {
    content: "ï…¼"
}

.d-icon-play-solid:before {
    content: "ïŠ¿"
}

.d-icon-mobile:before {
    content: "ïŠ”"
}

.d-icon-minus:before {
    content: "ïŠ"
}

.d-icon-plus:before {
    content: "ï‹ƒ"
}

.d-icon-wifi:before {
    content: "ï½"
}

.d-icon-times:before {
    content: "ïƒ"
}

.d-icon-times-circle:before {
    content: "ï…"
}

.d-icon-random:before {
    content: "ï‹‘"
}

.d-icon-th-list:before {
    content: "ïŒ¼"
}

.d-icon-rocket:before {
    content: "ï‹¤"
}

.d-icon-map-marker:before {
    content: "ï‰¾"
}

.d-icon-birthday-cake:before {
    content: "ï…‡"
}

.d-icon-gift:before {
    content: "ïˆ“"
}

.d-icon-female:before {
    content: "ï‡ž"
}

.d-icon-clock:before {
    content: "ï†"
}

.d-icon-comments:before {
    content: "î¥»"
}

.d-icon-rotate-left:before {
    content: "ï‹¢"
}

.d-icon-rotate-right:before {
    content: "ï‹£"
}

.d-icon-reading:before {
    content: "î¥£"
}

.d-icon-feeder:before {
    content: "î¥¤"
}

.d-icon-birthday-cake2:before {
    content: "î¥¥"
}

.d-icon-skirt:before {
    content: "î¥¦"
}

.d-icon-toy:before {
    content: "î¥§"
}

.d-icon-butterfly:before {
    content: "î¥¨"
}

.d-icon-babycare2:before {
    content: "î¥ª"
}

.d-icon-butterfly2:before {
    content: "î¥«"
}

.d-icon-dinner-set:before {
    content: "î¥¬"
}

.d-icon-ball2:before {
    content: "î¥­"
}

.d-icon-apple:before {
    content: "î¥®"
}

.d-icon-icecream:before {
    content: "î¥¯"
}

.d-icon-cake:before {
    content: "î¥°"
}

.d-icon-meat:before {
    content: "î¥±"
}

.d-icon-bread:before {
    content: "î¥²"
}

.d-icon-cocktail:before {
    content: "î¥³"
}

.d-icon-food:before {
    content: "î¥´"
}

.d-icon-birthday-cake3:before {
    content: "î¥µ"
}

.d-icon-cash:before {
    content: "î¥¶"
}

.d-icon-service2:before {
    content: "î¥·"
}

.d-icon-car:before {
    content: "î¥¸"
}

.d-icon-ball3:before {
    content: "î¥¹"
}

.d-icon-compare:before {
    content: "î¥º"
}

.d-icon-jar:before {
    content: "î¥»"
}

.d-icon-radish:before {
    content: "î¥¼"
}

.d-icon-arrow-down:before {
    content: "î¥½"
}

.d-icon-arrow-left:before {
    content: "î¥¾"
}

.d-icon-arrow-right:before {
    content: "î¥¿"
}

.d-icon-arrow-up:before {
    content: "î¦€"
}

.d-icon-earth:before {
    content: "î¦"
}

.d-icon-long-arrow-left:before {
    content: "î¦‚"
}

.d-icon-long-arrow-right:before {
    content: "î¦ƒ"
}

.d-icon-long-arrow-down:before {
    content: "î¦„"
}

.d-icon-long-arrow-up:before {
    content: "î¦…"
}

.d-icon-pill:before {
    content: "î¦†"
}

.d-icon-cylinder:before {
    content: "î¦‡"
}

.d-icon-medical-bag:before {
    content: "î¦ˆ"
}

.d-icon-graph:before {
    content: "î¦‰"
}

.social-links {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center
}

.social-links.square-link .social-link {
    border-radius: 0
}

.social-links.rounded-link,.social-links.square-link {
    display: flex;
    justify-content: center
}

.social-links.rounded-link .social-link,.social-links.square-link .social-link {
    margin: 5px 15px;
    border: none;
    font-size: 24px;
    width: 45px;
    height: 45px;
    line-height: 45px
}

.social-links.rounded-link .social-link:not(:hover),.social-links.square-link .social-link:not(:hover) {
    color: #fff;
    background-color: #e1e1e1
}

.social-links.rounded-link .social-link {
    border-radius: 0.3rem
}

.social-link-active {
    display: flex;
    justify-content: center
}

.social-link-active .social-link {
    border: none;
    margin: 1rem;
    font-size: 26px;
    line-height: 60px;
    width: 60px;
    height: 60px;
    color: #fff
}

.social-link-active .social-facebook {
    background: #3b5998;
    border-color: #3b5998
}

.social-link-active .social-twitter {
    background: #1da1f2;
    border-color: #1da1f2
}

.social-link-active .social-linkedin {
    background: #0073b2;
    border-color: #0073b2
}

.social-link-active .social-email {
    background: #dd4b39;
    border-color: #dd4b39
}

.social-link-active .social-google {
    background: #dd4b39;
    border-color: #dd4b39
}

.social-link-active .social-pinterest {
    background: #bd081c;
    border-color: #bd081c
}

.social-link-active .social-reddit {
    background: #ff4107;
    border-color: #ff4107
}

.social-link-active .social-tumblr {
    background: #304e6c;
    border-color: #304e6c
}

.social-link-active .social-vk {
    background: #6383a8;
    border-color: #6383a8
}

.social-link-active .social-youtube {
    background: #0f172a;
    border-color: #0f172a
}

.social-link-active .social-whatsapp {
    background: #3c8a38;
    border-color: #3c8a38
}

.social-link-active .social-xing {
    background: #1a7576;
    border-color: #1a7576
}

.social-link-active .social-instagram {
    background: #7c4a3a;
    border-color: #7c4a3a
}

.social-link {
    margin: 2px 8px 2px 0;
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 1.5rem;
    border-radius: 50%;
    border: 2px solid #ccc;
    color: inherit;
    transition: color 0.4s,border 0.4s,background 0.4s;
    text-align: center
}

.social-link:last-child {
    margin-right: 0
}

.social-link i {
    letter-spacing: -0.001em;
    line-height: 1
}

.social-link:hover {
    background: #0f172a;
    border-color: #0f172a;
    color: #fff
}

.social-link.social-facebook:hover {
    background: #3b5998;
    border-color: #3b5998
}

.social-link.social-twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2
}

.social-link.social-linkedin:hover {
    background: #0073b2;
    border-color: #0073b2
}

.social-link.social-email:hover {
    background: #dd4b39;
    border-color: #dd4b39
}

.social-link.social-google:hover {
    background: #dd4b39;
    border-color: #dd4b39
}

.social-link.social-pinterest:hover {
    background: #bd081c;
    border-color: #bd081c
}

.social-link.social-reddit:hover {
    background: #ff4107;
    border-color: #ff4107
}

.social-link.social-tumblr:hover {
    background: #304e6c;
    border-color: #304e6c
}

.social-link.social-vk:hover {
    background: #6383a8;
    border-color: #6383a8
}

.social-link.social-youtube:hover {
    background: #0f172a;
    border-color: #0f172a
}

.social-link.social-whatsapp:hover {
    background: #3c8a38;
    border-color: #3c8a38
}

.social-link.social-xing:hover {
    background: #1a7576;
    border-color: #1a7576
}

.social-link.social-instagram:hover {
    background: #7c4a3a;
    border-color: #7c4a3a
}

.no-border .social-link {
    border: 0;
    line-height: 30px
}

.no-border .social-link:not(:hover) {
    background: transparent
}

.no-backgrond .social-link {
    background-color: none;
    line-height: 30px
}

.no-backgrond .social-link:not(:hover) {
    background: transparent
}

.inline-links .social-link {
    display: inline-block;
    margin-right: 2rem;
    width: auto;
    height: auto;
    border: 0;
    color: inherit
}

.inline-links .social-link:not(:last-child) {
    margin-right: 2rem
}

.inline-links .social-link:hover {
    background: transparent
}

.inline-links .social-link.social-facebook:hover {
    color: #3b5998
}

.inline-links .social-link.social-twitter:hover {
    color: #1da1f2
}

.inline-links .social-link.social-linkedin:hover {
    color: #0073b2
}

.inline-links .social-link.social-email:hover {
    color: #dd4b39
}

.inline-links .social-link.social-google:hover {
    color: #dd4b39
}

.inline-links .social-link.social-pinterest:hover {
    color: #bd081c
}

.inline-links .social-link.social-reddit:hover {
    color: #ff4107
}

.inline-links .social-link.social-tumblr:hover {
    color: #304e6c
}

.inline-links .social-link.social-vk:hover {
    color: #6383a8
}

.inline-links .social-link.social-whatsapp:hover {
    color: #3c8a38
}

.inline-links .social-link.social-xing:hover {
    color: #1a7576
}

.inline-links .social-link.social-instagram:hover {
    color: #7c4a3a
}

.social-link-template .inline-links .social-link {
    font-size: 24px;
    margin: 3px 19px
}

.social-link-template .inline-links .social-link:not(:hover) {
    color: #999
}

.social-default .social-link {
    width: 45px;
    height: 45px;
    margin: 3px 7.5px;
    line-height: 45px;
    font-size: 24px
}

.social-default .social-link:not(:hover) {
    color: #999
}

.widget-title {
    margin-bottom: 2rem;
    padding: 1.1rem 0;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    border-bottom: 1px solid #eee;
    letter-spacing: -0.025em
}

.widget-products .widget-title {
    padding: 2.8rem 0.3rem 1.6rem;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.03em
}

.form .form-control {
    margin-bottom: 2rem
}

.form-control {
    display: block;
    width: 100%;
    min-height: 4.5rem;
    padding: 0.85rem 2rem;
    border: 1px solid #e3e3e3;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 400;
    color: #666;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    outline: 0;
    font-family: "Roboto", sans-serif;
}

.form-control::placeholder {
    color: inherit;
    transition: color 0.3s
}

.form-control::-webkit-input-placeholder {
    color: inherit;
    transition: color 0.3s
}

.form-control::-moz-placeholder {
    color: inherit;
    transition: color 0.3s
}

.form-control:focus::placeholder {
    color: transparent
}

.form-control:focus::-webkit-input-placeholder {
    color: transparent
}

.form-control:focus::-moz-placeholder {
    color: transparent
}

.form-control.form-solid {
    background-color: #fff;
    border: 0;
    color: #8d8d8d
}

textarea {
    min-width: 100%;
    max-width: 100%
}

.custom-checkbox {
    position: absolute;
    opacity: 0
}

.custom-checkbox+label {
    display: block;
    position: relative;
    padding-left: 2.4rem;
    cursor: pointer
}

.custom-checkbox+label:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 18px;
    height: 18px;
    line-height: 17px;
    border: 1px solid #ebebeb;
    border-radius: 2px
}

@media (-ms-high-contrast:active),(-ms-high-contrast:none) {
    .custom-checkbox+label:before {
        line-height: 14px
    }
}

.custom-checkbox:checked+label:before {
    content: "ï€Œ";
    border-color: #222;
    background: #222;
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
    text-align: center
}

.select-box,.select-menu {
    position: relative
}

.select-box select,.select-menu select {
    position: relative;
    /* max-width: 14rem; */
    em; */
    min-height: auto;
    width: auto;
    height: 100%;
    padding-left: 9px;
    padding-right: 25px;
    border: 1px solid #d7d7d7;
    border-radius: 2px;
    color: inherit;
    background-color: transparent;
    font-size: 1.2rem;
    letter-spacing: inherit;
    z-index: 1;
    -moz-appearance: none;
    -webkit-appearance: none
}

.select-box select:focus,.select-menu select:focus {
    outline: none
}

.select-box:before,.select-menu:before {
    content: "ï¸";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    font-weight: 900;
    font-size: 9px;
    right: 8px;
    top: 50%;
    transform: translateY(-50%)
}

.select-box option {
    /* font-size: 1.2rem; */
}

@media (-ms-high-contrast:active),(-ms-high-contrast:none) {
    select::-ms-expand {
        display: none
    }

    select:focus::-ms-value {
        background: transparent;
        color: currentColor
    }
}

input::-webkit-inner-spin-button,input::-webkit-outer-spin-button {
    -webkit-appearance: none
}

.quantity {
    -moz-appearance: textfield;
    max-width: 48px
}

.input-group {
    display: inline-flex;
    width: 11rem;
    height: 4.5rem
}

.input-group .form-control {
    flex: 1;
    padding: 0;
    height: inherit;
    font-size: 1.4rem;
    border: solid #ebebeb;
    border-width: 1px 0;
    color: #222;
    text-align: center
}

.input-group button {
    padding: 0;
    width: 3.1rem;
    border: 1px solid #ebebeb;
    font-size: 21px;
    color: #222;
    background-color: transparent;
    cursor: pointer;
    -webkit-appearance: none
}

.custom-radio {
    position: relative
}

.custom-radio input {
    display: none
}

input[type=radio]~label {
    padding-left: 2.5rem
}

input[type=radio]~label:after,input[type=radio]~label:before {
    position: absolute;
    content: "";
    display: inline-block;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%)
}

input[type=radio]~label:before {
    left: 0;
    width: 1.8rem;
    height: 1.8rem;
    background-color: #fff;
    border: 1px solid #cdcdcd
}

input[type=radio]~label:after {
    width: 0.8rem;
    height: 0.8rem;
    left: 0.5rem;
    background: #666;
    opacity: 0
}

input[type=radio]:checked~label:after {
    opacity: 1
}

.input-wrapper input.form-control {
    flex: 1;
    min-width: 40px;
    font-size: 1.2rem
}

.input-wrapper-inline {
    display: flex;
    position: relative;
    max-width: 61.3rem;
    width: 100%;
    height: 45px
}

.input-wrapper-inline .btn {
    line-height: 1
}

.input-wrapper-round {
}

.input-wrapper-round .form-control {
    position: relative;
    border-radius: 2.4rem
}

.input-wrapper-round .btn {
    border-radius: 2.4rem;
    line-height: 1
}

.input-wrapper-round.input-wrapper-inline .form-control {
    border-radius: 2.4rem 0 0 2.4rem
}

.input-wrapper-round.input-wrapper-inline .btn {
    border-radius: 0 2.4rem 2.4rem 0
}

.form-wrapper.form-wrapper-inline {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.form-wrapper.form-wrapper-inline form {
    flex: 1 1 0
}

@media (max-width: 991px) {
    .form-wrapper.form-wrapper-inline {
        display:block;
        text-align: center
    }

    .form-wrapper.form-wrapper-inline form {
        margin-left: auto;
        margin-right: auto
    }
}

.btn-absolute input.form-control {
    width: 100%;
    padding: 1rem 4rem 1rem 1.5rem;
    color: #666;
    font-size: 1.3rem
}

.btn-absolute .btn {
    position: absolute;
    width: auto;
    height: 100%;
    min-width: 4.3rem;
    right: 0;
    font-size: 1.7rem
}

.btn-absolute .btn:hover {
    color: #0f172a
}

.btn-absolute .btn i {
    margin-left: 0
}

.dark-theme .form-control:focus option {
    background-color: #fff
}

.tab-content {
    background-color: transparent
}

.nav-tabs {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ebebeb
}

.nav-tabs .nav-item .nav-link.active,.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-item:hover .nav-link {
    color: #222
}

.nav-link {
    display: block;
    margin-bottom: -0.1rem;
    padding: 1.6rem 0.2rem;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    border-radius: 0;
    border: 0;
    transition: border 0.35s,color 0.35s,background-color 0.35s
}

.nav-link-with-img {
    position: relative;
    margin-bottom: -4px;
    height: 100%;
    padding: 1.5rem 0 2rem
}

.nav-link-with-img figure {
    height: 7.4rem;
    width: 12.1rem
}

.nav-link-with-img .img-cat-title {
    position: absolute;
    bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    min-width: 12.1rem
}

.nav-link-with-img:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    border-bottom: 4px solid #0f172a;
    transform: scaleX(0) translateX(-50%);
    transform-origin: left;
    transition: transform 0.3s
}

.nav-link-with-img.active:after,.nav-link-with-img:hover:after {
    transform: scaleX(1) translateX(-50%)
}

/* .nav-item:not(:last-child) {
    margin-right: 2.5rem
} */

.nav-fill .nav-item {
    flex: 1
}

.tab-content {
    position: relative
}

.tab-content>.tab-pane {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 0!important;
    opacity: 0;
    z-index: -1;
    transition: visibility 0.3s,opacity 0.3s
}

.tab-content>.tab-pane:not(.active) {
    overflow: hidden;
    visibility: hidden
}

.tab-content>.active {
    position: relative;
    height: auto!important;
    opacity: 1;
    z-index: auto
}

.tab-pane {
    padding: 2.3rem 0;
    line-height: 1.72;
    color: #666
}

.tab-pane p {
    line-height: 1.72
}

.tab-nav-simple .nav-link {
    border-bottom: 2px solid transparent;
    background-color: transparent;
    color: #666
}

.tab-nav-simple .nav-item .nav-link.active,.tab-nav-simple .nav-item.show .nav-link,.tab-nav-simple .nav-item:hover .nav-link {
    border-bottom-color: #0f172a
}

.tab-nav-center .nav {
    justify-content: center
}

.tab-nav-right .nav {
    justify-content: flex-end
}

.tab-nav-boxed .nav-item {
    margin-right: 0
}

.tab-nav-boxed .nav-link {
    padding-left: 2.4rem;
    padding-right: 2.4rem
}

.tab-nav-round .nav-item:not(:last-child) {
    margin-right: 2px
}

.tab-nav-round .nav-link {
    margin-bottom: 0;
    border-radius: 2.3rem;
    background-color: #f2f3f5
}

.tab-nav-round .nav-tabs {
    border-bottom: 0
}

.tab-boxed .tab-pane {
    padding-left: 2rem;
    padding-right: 2rem
}

.tab-outline .tab-content {
    border: 1px solid #ebebeb
}

.tab-outline .nav-tabs {
    border-bottom: 0
}

.tab-outline .nav-link {
    padding-top: 1.4rem;
    padding-bottom: 1.5rem;
    border: 1px solid transparent;
    border-top-width: 2px
}

.tab-outline .nav-item .nav-link.active,.tab-outline .nav-item.show .nav-link,.tab-outline .nav-item:hover .nav-link {
    border-color: #ebebeb;
    border-top-color: #0f172a
}

.tab-outline2 .nav {
    position: relative;
    z-index: 1
}

.tab-outline2 .tab-content {
    border: 1px solid #ebebeb
}

.tab-outline2 .nav-tabs {
    border-bottom: 0
}

.tab-outline2 .nav-link {
    padding: 1.5rem 2.4rem;
    border: 1px solid transparent
}

.tab-outline2 .nav-item .nav-link.active,.tab-outline2 .nav-item.show .nav-link,.tab-outline2 .nav-item:hover .nav-link {
    border-color: #ebebeb;
    border-bottom-color: #fff
}

.tab-vertical {
    display: flex
}

.tab-vertical .nav-tabs {
    flex-flow: column nowrap;
    width: 27.8%;
    border: 0;
    border-right: 2px solid #ebebeb
}

.tab-vertical .tab-content {
    flex: 1
}

.tab-vertical .nav-item {
    margin-right: 0
}

.tab-vertical .nav-link {
    position: relative;
    margin-right: -2px;
    padding-left: 2rem;
    width: calc(100% + 2px);
    border: 0;
    text-align: left
}

.tab-vertical .nav-link:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    width: 2px;
    height: calc(100% - 6px);
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    z-index: 1
}

.tab-vertical .tab-pane {
    padding: 1.7rem 2rem
}

.tab-vertical.tab-simple .nav-link {
    margin-right: -2px
}

.tab-vertical.tab-simple .nav-link:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    width: 2px;
    height: calc(100% - 6px);
    top: 50%;
    transform: translateY(-50%) scale(0);
    background-color: transparent;
    transition: transform 0.3s;
    z-index: 1
}

.tab-vertical.tab-simple .nav-item .nav-link.active,.tab-vertical.tab-simple .nav-item.show .nav-link,.tab-vertical.tab-simple .nav-item:hover .nav-link {
    color: #0f172a
}

.tab-vertical.tab-simple .nav-item .nav-link.active:after,.tab-vertical.tab-simple .nav-item.show .nav-link:after,.tab-vertical.tab-simple .nav-item:hover .nav-link:after {
    background-color: #0f172a;
    transform: translateY(-50%) scale(1)
}

@media (max-width: 767px) {
    .tab-vertical {
        flex-flow:column nowrap
    }

    .tab-vertical .nav-tabs,.tab-vertical .tab-content {
        width: 100%
    }

    .tab-vertical .nav-tabs {
        border: 0
    }

    .tab-vertical .tab-content {
        padding-left: 0
    }

    .tab-vertical.tab-simple .nav-link:after {
        height: 2px;
        width: 100%;
        background-color: transparent;
        top: calc(100% - 2px);
        transform: scale(0)
    }

    .tab-vertical.tab-simple .nav-item .nav-link.active:after,.tab-vertical.tab-simple .nav-item.show .nav-link:after,.tab-vertical.tab-simple .nav-item:hover .nav-link:after {
        transform: scale(1)
    }
}

.tab-inverse .tab-content {
    border-color: #fff
}

.tab-inverse .nav-tabs {
    border: 0
}

.tab-inverse .nav-link {
    margin: 0;
    width: 100%
}

.tab-inverse .nav-item .nav-link.active,.tab-inverse .nav-item.show .nav-link,.tab-inverse .nav-item:hover .nav-link {
    background-color: #fff;
    border-color: #fff
}

.tab-inverse.tab-simple .nav-link {
    padding-top: 1.4rem;
    border-top: 2px solid transparent
}

.tab-inverse.tab-simple .nav-item .nav-link.active,.tab-inverse.tab-simple .nav-item.show .nav-link,.tab-inverse.tab-simple .nav-item:hover .nav-link {
    border-top-color: #0f172a
}

.tab-nav-solid .nav-link {
    padding-bottom: 1.6rem;
    border: 0
}

.tab-nav-solid .nav-item .nav-link.active,.tab-nav-solid .nav-item.show .nav-link,.tab-nav-solid .nav-item:hover .nav-link {
    color: #fff;
    background-color: #0f172a;
    border-color: #0f172a
}

@media (max-width: 767px) {
    .nav-link {
        font-size:1.4rem
    }

    .tab-nav-boxed .nav-link {
        padding-left: 1rem;
        padding-right: 1rem
    }
}

@media (max-width: 479px) {
    .tab-nav-round .nav-link {
        margin-bottom:0.5rem
    }
}

.nav-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: #666
}

.nav-filters li:not(:last-child) {
    margin-right: 1.8rem
}

.nav-filter {
    display: inline-block;
    position: relative;
    padding: 0.5rem 0;
    font-size: 1.4rem;
    letter-spacing: -0.01em;
    line-height: 1;
    transition: color 0.3s
}

.nav-filter.active {
    color: #0f172a
}

.filter-underline .nav-filter {
    border-bottom: 1px solid transparent;
    transition: color 0.3s,border-color 0.3s
}

.filter-underline .nav-filter.active {
    border-color: #0f172a
}

.mfp-wrap {
    z-index: 3000
}

.mfp-bg {
    z-index: 3000;
    background: #000;
    opacity: 0;
    transition: opacity 0.3s ease-out
}

.mfp-bg.mfp-ready {
    opacity: 0.7
}

.mfp-bg.mfp-removing {
    opacity: 0
}

.mfp-container {
    padding: 4rem 2rem
}

.mfp-container video {
    width: 100%;
    height: 100%
}

.mfp-close {
    transform: rotateZ(45deg);
    transition: transform 0.3s;
    width: 18px;
    height: 18px;
    opacity: 1
}

.mfp-wrap .mfp-close {
    top: 20px;
    right: 20px
}

.mfp-content .mfp-close {
    top: -25px;
    right: 0
}

.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close {
    top: 15px;
    right: 0
}

.mfp-close span {
    display: none
}

.mfp-close:after,.mfp-close:before {
    content: "";
    display: block;
    position: absolute;
    background-color: #fff;
    width: 2px;
    height: 100%;
    top: 0;
    left: calc(50% - 1px)
}

.mfp-close:before {
    width: 100%;
    height: 2px;
    top: calc(50% - 1px);
    left: 0
}

.mfp-close:focus,.mfp-close:hover {
    transform: rotateZ(135deg) scale(1.5)
}

.mfp-arrow,.pswp__button--arrow--left,.pswp__button--arrow--right {
    width: 4.8rem;
    height: 4.8rem;
    color: #fff;
    border-radius: 50%;
    font-size: 2.4rem;
    font-weight: 900;
    text-align: center;
    opacity: 0.5;
    right: 10%;
    transition: opacity 0.3s;
    border: 2px solid
}

.pswp__ui>button:before {
    background: transparent;
    position: static;
    line-height: 44px
}

.pswp__ui>button.pswp__button--arrow--left:before {
    margin-right: 3px
}

.pswp__ui>button.pswp__button--arrow--right:before {
    margin-left: 3px
}

.pswp__ui>button:hover {
    opacity: 1
}

.pswp__button--arrow--right:before {
    content: "î¥";
}

.mfp-arrow:after,.mfp-arrow:before {
    content: "ï”";
    position: static;
    display: inline;
    margin: 0;
    border: 0
}

.mfp-arrow:after {
    content: none
}

button.mfp-arrow {
    border: 2px solid
}

.mfp-arrow-left,.pswp__button--arrow--left {
    left: 10%
}

.mfp-arrow-left:before,.pswp__button--arrow--left:before {
    content: "î¥‘";
}

.mfp-content>* {
    position: relative;
    margin: auto;
    background-color: #fff;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
    opacity: 0
}

.mfp-ready .mfp-content>* {
    opacity: 1
}

.mfp-removing .mfp-content>* {
    opacity: 0
}

.login-popup {
    max-width: 490px;
    padding: 4rem;
    border-radius: 0.3rem
}

.login-popup .tab {
    font-size: 1.8rem;
    color: #ccc
}

.login-popup .tab .nav-item {
    flex: none
}

.login-popup .nav-item .nav-link {
    padding: 0 0 1px;
    color: #999;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 2.43;
    transition: font-size 0.3s,color 0.3s
}

.login-popup .nav-item .nav-link.active {
    font-size: 3rem
}

.login-popup .delimiter {
    margin: 0 0.8rem
}

.login-popup .tab-pane {
    padding: 0
}

.login-popup form {
    margin-bottom: 2.2rem
}

.login-popup .form-group {
    margin-bottom: 1.8rem
}

.login-popup .form-group label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 1.3rem;
    line-height: 1
}

.login-popup .form-group .form-control {
    padding: 1.2rem 1.5rem 1.1rem;
    height: 3.7rem;
    font-size: 1.3rem;
    color: #999;
    border-radius: 0.3rem;
    border-color: #e1e1e1
}

.login-popup .form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2.3rem;
    font-size: 1.2rem
}

.login-popup .custom-checkbox+label {
    padding-left: 2.6rem
}

.login-popup .btn {
    height: 4.7rem;
    padding: 0;
    font-size: 1.3rem
}

.login-popup .lost-link {
    text-align: right;
    color: #999;
    font-size: 1.2rem
}

.login-popup .lost-link:hover {
    color: #0f172a
}

.login-popup .form-choice label {
    display: flex;
    align-items: center;
    margin-bottom: 1.3rem;
    font-size: 1.2rem;
    color: #666
}

.login-popup .form-choice label:after,.login-popup .form-choice label:before {
    content: "";
    height: 1px;
    flex: 1;
    background: #e1e1e1
}

.login-popup .form-choice label:after {
    margin-left: 3rem
}

.login-popup .form-choice label:before {
    margin-right: 3rem
}

.login-popup .social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.4rem;
    border-radius: 0.3rem;
    color: #fff
}

.login-popup .social-link.social-google {
    background-color: #db402c
}

.login-popup .social-link.social-facebook {
    background-color: #3b5998
}

.login-popup .social-link.social-twitter {
    background-color: #1ab2e8
}

.container>.login-popup {
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.1)
}

.newsletter-popup {
    text-align: center;
    background-size: cover;
    border-radius: 1rem
}

.newsletter-popup .btn {
    min-width: auto;
    padding: 0.5em 1.5em;
    font-size: 1.3rem
}

.newsletter-popup p {
    max-width: 100%;
    margin: 0 0.2rem 2.5rem;
    font-size: 1.4rem;
    line-height: 1.7
}

.newsletter-popup label {
    display: inline;
    font-size: 1.2rem
}

.newsletter-popup label:before {
    border-color: #666
}

.newsletter-popup .email {
    border: 0;
    color: #999;
    background: #f4f4f4
}

.newsletter-popup .form-control {
    border: 1px solid #222;
    background-color: #fff;
    border-right: none
}

.newsletter-popup .input-wrapper-inline {
    margin-bottom: 2.6rem;
    height: 4.6rem
}

.newsletter-popup .input-wrapper-inline .form-control {
    margin: 0;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    border-radius: 0.3rem 0 0 0.3rem
}

.newsletter-popup .input-wrapper-inline .btn {
    margin: 0;
    border-radius: 0 0.3rem 0.3rem 0
}

.newsletter-popup .custom-checkbox+label {
    padding-left: 2.6rem
}

.newsletter-pop1 {
    display: flex;
    max-width: 72rem;
    background-position: 60% center
}

.newsletter-pop1 h4 {
    margin-bottom: 0.6rem;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2
}

.newsletter-pop1 h2 {
    margin-bottom: 0.7rem;
    font-size: 3.2rem;
    line-height: 1.2;
    letter-spacing: -0.04375em
}

.newsletter-pop1 h2 span {
    font-weight: 800
}

.newsletter-pop1 .newsletter-content {
    margin-left: auto;
    max-width: 41.4rem;
    padding: 7.1rem 4.2rem 5rem
}

@media (max-width: 767px) {
    .newsletter-pop1 .newsletter-content {
        max-width:36rem;
        padding-left: 2rem;
        padding-right: 2rem
    }

    .newsletter-pop1 .login-popup {
        max-width: 500px;
        padding: 3.5rem 2rem
    }
}

@media (max-width: 575px) {
    .newsletter-pop1 {
        background-image:none!important
    }

    .newsletter-pop1 .newsletter-content {
        margin-left: auto;
        margin-right: auto
    }
}

.newsletter-pop2 {
    max-width: 50rem
}

.newsletter-pop2 img {
    border-radius: 1rem 1rem 0 0;
    min-height: 200px;
    object-fit: cover
}

.newsletter-pop2 h2 {
    margin: 2.5rem 0 0.5rem;
    font-size: 24px;
    line-height: 1.25
}

.newsletter-pop2 p {
    font-size: 14px;
    line-height: 1.7
}

.newsletter-pop2 .input-wrapper-inline {
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 17px
}

.newsletter-pop2 .social-links {
    margin: 1.7rem 0 3rem
}

.newsletter-pop2 .social-link:not(:hover),.newsletter-pop2 .social-link:not(:hover):before {
    color: #999
}

.newsletter-pop2 .newsletter-content {
    padding: 0 2rem
}

.newsletter-pop3 {
    border-radius: 1rem;
    max-width: 54rem;
    padding: 5.4rem 4rem 2.8rem
}

.newsletter-pop3 h2 {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 0
}

.newsletter-pop3 p {
    margin: 8px 21px 24px;
    font-size: 14px;
    line-height: 1.7
}

.newsletter-pop3 .input-wrapper-inline {
    flex-direction: column;
    align-items: center;
    height: unset;
    margin-bottom: 4.8rem
}

.newsletter-pop3 .input-wrapper-inline .btn {
    margin-top: 2rem;
    padding: 1.4rem 4.4rem;
    border-radius: 0.3rem
}

.newsletter-pop3 .form-control {
    border: 1px solid #e1e1e1;
    max-width: 46rem
}

.newsletter-pop3 .form-control::placeholder {
    text-align: center
}

.newsletter-pop3 .form-check {
    justify-content: space-between;
    align-items: center
}

.newsletter-pop3 .form-privacy {
    text-decoration: underline
}

@media (max-width: 575px) {
    .newsletter-pop3 {
        padding:5.4rem 2rem 2.8rem
    }

    .newsletter-pop3 p {
        margin: 8px 5px 24px
    }

    .newsletter-pop3 .form-check {
        flex-direction: column
    }
}

.newsletter-pop4 {
    position: relative;
    border-radius: 100%;
    background: transparent;
    max-width: 580px;
    height: 580px
}

.newsletter-pop4:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 100%;
    background-color: #191919;
    opacity: 0.6
}

.newsletter-pop4 h4 {
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 0
}

.newsletter-pop4 h2 {
    font-size: 36px;
    line-height: 1.5
}

.newsletter-pop4 p {
    font-size: 14px;
    line-height: 1.7
}

.newsletter-pop4 .input-wrapper-inline {
    max-width: 40.6rem;
    margin-left: auto;
    margin-right: auto
}

.newsletter-pop4 .input-wrapper-inline .form-control {
    border-color: #fff;
    border-radius: 23px 0 0 23px
}

.newsletter-pop4 .input-wrapper-inline .btn {
    border-radius: 0 23px 23px 0
}

@media (max-width: 490px) {
    .newsletter-pop4 {
        padding:0 2rem
    }

    .newsletter-pop4:before {
        border-radius: 100px
    }

    .newsletter-pop4 h4 {
        margin-bottom: 2.5rem
    }
}

.newsletter-pop5 {
    position: relative;
    max-width: 50rem
}

.newsletter-pop5>figure img {
    min-height: 57rem;
    object-fit: cover
}

.newsletter-pop5 h2 {
    font-weight: 32px;
    line-height: 1
}

.newsletter-pop5 p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 23px
}

.newsletter-pop5 .newsletter-content {
    top: 51%;
    left: 50%;
    max-width: 100%;
    transform: translateX(-50%)
}

.newsletter-pop5 .form-control {
    border-color: #e1e1e1
}

.newsletter-pop5 .input-wrapper-inline {
    width: 38rem;
    max-width: 100%;
    margin-bottom: 18px
}

.newsletter-pop5 .form-checkbox {
    margin-bottom: 26px
}

.newsletter-pop5 .social-links {
    position: relative
}

.newsletter-pop5 .social-links:after,.newsletter-pop5 .social-links:before {
    position: absolute;
    content: "";
    top: 50%;
    border-top: 1px solid #e1e1e1;
    width: 10.6rem
}

.newsletter-pop5 .social-links:before {
    left: -100%
}

.newsletter-pop5 .social-links:after {
    right: -100%
}

.newsletter-pop5 .social-links .social-link {
    width: 36px;
    height: 36px;
    line-height: 36px;
    border: none;
    border-radius: 3px;
    color: #fff
}

.newsletter-pop5 .social-links .fa-google {
    background-color: #db402c
}

.newsletter-pop5 .social-links .social-link.social-linkedin:hover {
    background: #db552c;
    border-color: #db552c
}

.newsletter-pop5 .social-links .fa-facebook-f {
    background-color: #3b5998
}

.newsletter-pop5 .social-links .fa-twitter {
    background-color: #1ab2e8
}

@media (max-width: 575px) {
    .newsletter-pop5 .social-links:after,.newsletter-pop5 .social-links:before {
        display:none
    }

    .newsletter-pop5 h2 {
        line-height: 1.1
    }

    .newsletter-pop5 .newsletter-content {
        top: 45%;
        padding: 0 2rem
    }
}

.mfp-product .mfp-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem 4rem
}

.mfp-product .mfp-content {
    max-width: 98.8rem;
    margin: auto
}

.mfp-product .product {
    background-color: #fff;
    margin-bottom: 2rem;
    padding: 3rem 1.5rem;
    border-radius: 1rem
}

.mfp-product .product-single .product-details {
    padding: 0
}

.mfp-product .product-details {
    position: absolute;
    overflow-y: auto;
    height: 100%;
    top: 0
}

.mfp-product .mfp-close {
    position: absolute;
    top: -2.7rem;
    right: 0
}

.mfp-product .owl-nav .owl-next,.mfp-product .owl-nav .owl-prev {
    width: 3.6rem;
    height: 3.6rem;
    font-size: 3rem
}

.mfp-product .owl-nav .owl-next {
    right: 1rem
}

.mfp-product .owl-nav .owl-prev {
    left: 1rem
}

.dark-theme .mfp-content .product-divider {
    border-color: #e1e1e1
}

.dark-theme .mfp-content .product {
    background-color: #222
}

.dark-theme .newsletter-popup .form-privacy,.dark-theme .newsletter-popup label {
    color: #999
}

.pswp__bg {
    background-color: rgba(0,0,0,0.7)
}

.pswp__img--placeholder--blank {
    background-color: #F2F3F5
}

.pswp__ui--fit .pswp__caption,.pswp__ui--fit .pswp__top-bar {
    background-color: transparent
}

.pswp__caption__center {
    text-align: center
}

.mfp-ready.mfp-zoom-popup .mfp-content {
    transform: scale(1)
}

.mfp-removing.mfp-zoom-popup .mfp-content,.mfp-zoom-popup .mfp-content {
    transition: 0.2s ease-in-out;
    transform: scale(0.8)
}

.mfp-ready.mfp-flip-popup .mfp-content {
    transform: translateY(0) perspective(600px) rotateX(0)
}

.mfp-flip-popup .mfp-content,.mfp-removing.mfp-flip-popup .mfp-content {
    transition: 0.3s ease-out;
    transform: translateY(-20px) perspective(600px) rotateX(20deg)
}

.mfp-content video {
    width: 100%;
    height: 100%
}

.mfp-video-popup .mfp-content {
    max-width: 1000px
}

.mfp-video-popup {
    z-index: 10000
}

.mfp-img-popup .mfp-content {
    width: unset
}

@media (max-width: 767px) {
    .mfp-product .product {
        padding:2rem 1rem
    }

    .mfp-arrow {
        color: #444
    }

    .mfp-product .product-details {
        position: relative
    }
}

@media (min-width: 768px) {
    .mfp-product .row {
        margin:0 -1.5rem
    }

    .mfp-product .row>.col-md-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }

    .mfp-product .product-gallery {
        margin-bottom: 0
    }

    .mfp-product .pr-md-3 {
        padding-right: 1.5rem!important
    }
}

.title {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    line-height: 1.1;
    margin-bottom: 0;
    text-transform: none;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #ffffff;
    display: block
}

.title.title-center {
    justify-content: center
}

.title.title-descri {
    font-size: 3rem
}

.title-line:after {
    flex: 1;
    margin-left: 3rem;
    content: "";
    height: 2px;
    background-color: #e1e1e1
}

.title-line.title-underline:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1
}

.title-right-line:before {
    flex: 1;
    margin-right: 3rem;
    content: "";
    height: 2px;
    background-color: #e1e1e1
}

@media (max-width: 479px) {
    .title-line:before {
        margin-right:1.5rem
    }

    .title-line:after {
        margin-left: 1.5rem
    }
}

.title-underline {
    display: block;
    text-align: left
}

.title-underline:after {
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1
}

.title-underline span {
    display: inline-block;
    position: relative;
    z-index: 2;
    line-height: 2.28
}

.title-underline span:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    background-color: #0f172a
}

.title-wrapper .title {
    margin-bottom: 0.5rem
}

.title-wrapper p {
    margin-bottom: 2.3rem;
    font-size: 1.4rem;
    line-height: 1.71;
    color: #999
}

.title-simple {
    display: block
}

.title-simple:after,.title-simple:before {
    content: none
}

.title-sm {
    font-size: 2rem
}

.title-icon {
    flex-direction: column
}

.title-icon>i {
    margin-top: 1rem;
    font-size: 1.8rem;
    color: #0f172a
}

.title-icon:after,.title-icon:before {
    content: none
}

.title-white {
    color: #fff
}

.title-white:after,.title-white:before {
    background-color: #fff;
    opacity: 0.1
}

.title-white>.title {
    color: #fff
}

.title-white>.title:after,.title-white>.title:before {
    background-color: #fff;
    opacity: 0.1
}

.title-white>p {
    color: #fff;
    opacity: 0.5
}

.title-link {
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e1e1e1
}

.title-link:after,.title-link:before {
    content: none
}

.title-link a {
    color: #444;
    font-size: 1.2rem
}

.title-link a:hover {
    color: #0f172a
}

.title-link i {
    font-size: 1rem
}

.with-link {
    display: flex;
    justify-content: space-between;
    line-height: 1.2
}

.with-link:after {
    background-color: #e1e1e1
}

.with-link a {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    font-weight: 700;
    font-size: 13px;
    line-height: 2.05em;
    text-transform: uppercase;
    letter-spacing: -0.325px;
    color: #222;
    transition: color 0.3s
}

.with-link a:hover {
    color: #0f172a
}

.with-link i {
    margin-left: 0.9rem;
    font-size: 1.9rem;
    line-height: 0
}

.title-echo {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 7px;
    color: #f3f3f3;
    font-size: 8.89rem;
    letter-spacing: -0.2px
}

.title-echo span {
    position: absolute;
    font-size: 3.74rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: #222
}

@media (max-width: 767px) {
    .title-echo {
        font-size:3.2em
    }
}

.menu-icon {
    display: inline-block;
    color: #fff;
    width: 1.7rem
}

.menu-icon:after,.menu-icon:before {
    display: block;
    content: "";
    width: 100%
}

.menu-icon:before {
    height: 6px;
    border-top: 2px solid;
    border-bottom: 2px solid
}

.menu-icon:after {
    height: 4px;
    border-bottom: 2px solid
}

.minicart-icon {
    display: inline-block;
    position: relative;
    width: 2.5em;
    height: 2.5em;
    margin-top: 1px;
    border: solid 2px;
    border-radius: 2px;
    text-align: center;
    transition: background 0.4s,border-color 0.4s
}

.minicart-icon:before {
    content: "";
    position: absolute;
    top: -0.75em;
    left: 0.585em;
    width: 1em;
    height: 0.5em;
    border-radius: 10px 10px 0 0;
    border: inherit;
    border-bottom: none;
    transition: transform 0.4s
}

.icon-box .icon-box-title {
    margin: 0 0 0.7rem;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.6
}

.icon-box p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.72;
    letter-spacing: 0;
    color: #666
}

.icon-box i:before {
    margin: 0
}

.icon-box .icon-box-content {
    text-align: center
}

.icon-box-icon {
    display: inline-block;
    margin-bottom: 2.6rem;
    font-size: 3.4rem;
    font-weight: 600;
    line-height: 0;
    color: #222;
    border: 50%;

}

.icon-box-icon svg {
    height: 3.4rem;
    width: 4.8rem
}

.icon-box-side {
    display: flex;
    align-items: center;
    justify-content: center
}

.icon-box-side .icon-box-content {
    text-align: left
}

.icon-box-side .icon-box-icon {
    margin-right: 1.5rem;
    margin-bottom: 0
}

.icon-box-side .icon-box-title {
    margin: 0
}

.icon-border .icon-box-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5.2rem;
    height: 5.2rem;
    border-radius: 50%;
    border: 1px solid #222;
    font-size: 2.5rem
}

.icon-border svg {
    height: 2.4rem
}

.icon-inversed .icon-box-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: #0f172a;
    color: #fff;
    font-size: 2.5rem
}

.icon-inversed svg {
    height: 2.4rem;
    fill: white
}

.icon-solid .icon-box-icon {
    font-size: 4.8rem;
    color: #0f172a
}

.icon-solid svg {
    width: 5.4rem;
    height: 5.4rem;
    fill: #0f172a
}

.icon-solid.icon-box-side {
    align-items: flex-start
}

.icon-solid.icon-box-side svg {
    width: 4.8rem;
    height: 4.8rem
}

.icon-box-tiny .icon-box-icon {
    margin: 0 1rem 0 0;
    font-size: 2.8rem
}

.icon-box-tiny svg {
    height: 2.8rem;
    width: 2.8rem
}

.icon-box-tiny .icon-box-title {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

@media (max-width: 991px) {
    .icon-box-side {
        flex-direction:column
    }

    .icon-box-side .icon-box-icon {
        display: inline-block;
        margin: 0 0 2rem 0;
        padding: 2rem
    }

    .icon-box-side .icon-box-content {
        text-align: center
    }
}

.tooltiptext {
    position: absolute;
    padding: 1rem 0.7rem;
    bottom: 150%;
    left: 48%;
    background-color: #333;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%);
    z-index: 1;
    transition: opacity 0.3s
}

.tooltip-bottom:after,.tooltip-top:after {
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid
}

.tooltip-top:after {
    top: 96%;
    border-color: #333 transparent transparent transparent
}

.tooltip-bottom:after {
    top: -37%;
    border-color: transparent transparent #333 transparent
}

.btn {
    display: inline-block;
    border: 2px solid #e4eaec;
    background-color: #e4eaec;
    color: #222;
    outline: 0;
    padding: 1.22em 2.78em;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    transition: color 0.3s,border-color 0.3s,background-color 0.3s,box-shadow 0.3s;
    white-space: nowrap;
    cursor: pointer
}

.btn:active,.btn:focus,.btn:hover {
    color: #222;
    border-color: #cfdadd;
    background-color: #cfdadd
}

.btn i {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.4rem;
    line-height: 0;
    font-size: 1.9rem
}

.btn i:before {
    margin: 0
}

.btn-solid {
    background-color: #fff;
    border-color: #fff;
    color: #222
}

.btn-solid:active,.btn-solid:focus,.btn-solid:hover {
    border-color: #222;
    background-color: #222;
    color: #fff
}

.btn-outline {
    border: 2px solid #e4eaec;
    color: #666;
    background-color: transparent
}

.btn-outline:active,.btn-outline:focus,.btn-outline:hover {
    border-color: #666;
    background-color: #666;
    color: #fff
}

.btn-outline.btn-outline-light {
    padding: 1.07em 2.21em;
    border-width: 1px
}

.btn-outline.btn-bg {
    color: #fff
}

.btn-gradient {
    position: relative;
    color: #fff;
    border: none;
    overflow: hidden;
    transition: background 0.25s,color 0.25s,border 0.25s
}

.btn-gradient:after {
    content: "";
    position: absolute;
    top: -50%;
    left: 0;
    right: 0;
    bottom: -50%;
    background-image: linear-gradient(90deg,rgba(255,255,255,0) 20%,rgba(255,255,255,0.4) 50%,rgba(255,255,255,0) 80%);
    transform: skewX(-45deg) translateX(-100%);
    transition: transform 0.8s
}

.btn-gradient:hover:after {
    transform: skewX(-45deg) translateX(100%)
}

.btn-gradient.btn-primary {
    background: linear-gradient(135deg,#3b8df1,#5449ff)
}

.btn-gradient.btn-secondary {
    background: linear-gradient(135deg,#ffa35f,#ef5454)
}

.btn-gradient.btn-alert {
    background: linear-gradient(135deg,#f85283,#b33c9e)
}

.btn-gradient.btn-success {
    background: linear-gradient(135deg,#a0ec69,#87cf47)
}

.btn-gradient.btn-dark {
    background: linear-gradient(135deg,#666,#222)
}

.btn-icon-left i,.btn-icon-right i,.btn-reveal-left i,.btn-reveal-right i {
    line-height: 0
}

.btn-icon-right {
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.btn-icon-right i {
    margin-left: 0.7rem
}

.btn-icon-left {
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.btn-icon-left i {
    margin-right: 0.7rem;
    margin-left: 0
}

.btn-reveal-left i {
    opacity: 0;
    margin-left: -1em;
    transform: translateX(0.5em);
    margin-right: 0;
    transition: transform 0.3s,opacity 0.3s,margin 0.3s
}

.btn-reveal-left:active i,.btn-reveal-left:focus i,.btn-reveal-left:hover i {
    opacity: 1;
    margin-left: 0;
    transform: translateX(0);
    margin-right: 0.7rem
}

.btn-reveal-right i {
    opacity: 0;
    margin-right: -1em;
    transform: translateX(-0.5em);
    margin-left: 0;
    transition: transform 0.3s,opacity 0.3s,margin 0.3s
}

.btn-reveal-right:active i,.btn-reveal-right:focus i,.btn-reveal-right:hover i {
    opacity: 1;
    margin-left: 0.7rem;
    transform: translateX(0);
    margin-right: 0
}

.btn-slide-left:active i,.btn-slide-left:focus i,.btn-slide-left:hover i {
    animation: 0.5s ease slideLeft
}

.btn-slide-right:active i,.btn-slide-right:focus i,.btn-slide-right:hover i {
    animation: 0.5s ease slideRight
}

.btn-slide-up:active i,.btn-slide-up:focus i,.btn-slide-up:hover i {
    animation: 0.5s ease slideUp
}

.btn-slide-down:active i,.btn-slide-down:focus i,.btn-slide-down:hover i {
    animation: 0.5s ease slideDown
}

.btn-infinite:hover i {
    animation-iteration-count: infinite
}

@keyframes slideLeft {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(-0.5em)
    }

    to {
        transform: translateX(0)
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(0.5em)
    }

    to {
        transform: translateX(0)
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-0.5em)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(0.5em)
    }

    to {
        transform: translateY(0)
    }
}

.btn-shadow-lg {
    box-shadow: 0 13px 20px -10px rgba(0,0,0,0.15)
}

.btn-shadow-lg:active,.btn-shadow-lg:focus,.btn-shadow-lg:hover {
    box-shadow: 0 13px 20px -10px rgba(0,0,0,0.2)
}

.btn-shadow {
    box-shadow: 0 15px 20px -15px rgba(0,0,0,0.15)
}

.btn-shadow:active,.btn-shadow:focus,.btn-shadow:hover {
    box-shadow: 0 15px 20px -15px rgba(0,0,0,0.2)
}

.btn-shadow-sm {
    box-shadow: 0 17px 20px -20px rgba(0,0,0,0.15)
}

.btn-shadow-sm:active,.btn-shadow-sm:focus,.btn-shadow-sm:hover {
    box-shadow: 0 17px 20px -20px rgba(0,0,0,0.2)
}

.btn-underline:active:after,.btn-underline:focus:after,.btn-underline:hover:after {
    transform: scaleX(0)
}

.btn-underline:after {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    width: 100%;
    border-bottom: 2px solid;
    transform: scaleX(1);
    transition: transform 0.3s;
    content: ""
}

.btn-underline {
    display: inline-block;
}

.btn-underline i {
    margin-bottom: 2px;
}

.btn-underline.btn-underline-visible:after {
    transform: scaleX(1)
}

.btn-underline.btn-underline-width-sm:after {
    height: 1px;
    border-bottom: 0
}

.btn-underline.sm:after {
    width: 46%
}

.btn-underline.lg:after {
    margin-left: -16.5%;
    margin-right: -16.5%;
    width: 133%
}

.btn-link {
    padding: 0;
    color: #222;
    border: 0;
    background-color: transparent
}

.btn-link:active,.btn-link:focus,.btn-link:hover {
    background-color: transparent
}

.btn-disabled {
    cursor: not-allowed;
    background-color: #e4eaec!important;
    color: #999!important;
    border-color: #e4eaec!important;
    box-shadow: none!important
}

.btn-disabled:after,.btn-disabled:before {
    content: none!important
}

.btn.btn-rounded {
    border-radius: 10px;
}

.btn.btn-rounded:after,.btn.btn-rounded:before {
    border-radius: 3px
}

.btn.btn-block {
    display: block;
    padding-left: 0;
    padding-right: 0;
    width: 100%
}

.btn.btn-ellipse {
    border-radius: 3rem
}

.btn.btn-lg {
    padding: 1.5em 3.42em
}

.btn.btn-md {
    padding: 1.07em 2.15em;
    font-size: 1.3rem
}

.btn.btn-sm {
    padding: 0.92em 1.61em;
    font-size: 1.3rem
}

.btn.btn-link {
    padding: 0
}

@media (-ms-high-contrast:active),(-ms-high-contrast:none) {
    .btn.btn-link {
        overflow: visible
    }
}

.btn-primary {
    color: #fff;
    border-color: #0f172a;
    background-color: #0f172a
}

.btn-primary:active,.btn-primary:focus,.btn-primary:hover {
    color: #fff;
    border-color: #45cfbf;
    background-color: #0d6efd;
}

.btn-primary.btn-solid {
    color: #0f172a;
    border-color: #fff;
    background-color: #fff
}

.btn-primary.btn-solid:active,.btn-primary.btn-solid:focus,.btn-primary.btn-solid:hover {
    border-color: #0f172a;
    background-color: #0f172a;
    color: #fff
}

.btn-primary.btn-outline {
    color: #0f172a;
    border-color: #0f172a;
    background-color: transparent
}

.btn-primary.btn-outline:active,.btn-primary.btn-outline:focus,.btn-primary.btn-outline:hover {
    background-color: #0f172a;
    color: #fff
}

.btn-primary.btn-link {
    background-color: transparent;
    color: #0f172a
}

.btn-primary.btn-link:active,.btn-primary.btn-link:focus,.btn-primary.btn-link:hover {
    color: #222
}

.btn-primary.btn-underline:active,.btn-primary.btn-underline:focus,.btn-primary.btn-underline:hover {
    color: #0f172a
}

.btn-secondary {
    color: #fff;
    border-color: #FF7C12;
    background-color: #FF7C12
}

.btn-secondary:active,.btn-secondary:focus,.btn-secondary:hover {
    color: #fff;
    border-color: #ff9036;
    background-color: #ff9036
}

.btn-secondary.btn-solid {
    color: #FF7C12;
    border-color: #fff;
    background-color: #fff
}

.btn-secondary.btn-solid:active,.btn-secondary.btn-solid:focus,.btn-secondary.btn-solid:hover {
    border-color: #FF7C12;
    background-color: #FF7C12;
    color: #fff
}

.btn-secondary.btn-outline {
    color: #FF7C12;
    border-color: #FF7C12;
    background-color: transparent
}

.btn-secondary.btn-outline:active,.btn-secondary.btn-outline:focus,.btn-secondary.btn-outline:hover {
    background-color: #FF7C12;
    color: #fff
}

.btn-secondary.btn-link {
    background-color: transparent;
    color: #FF7C12
}

.btn-secondary.btn-link:active,.btn-secondary.btn-link:focus,.btn-secondary.btn-link:hover {
    color: #222
}

.btn-secondary.btn-underline:active,.btn-secondary.btn-underline:focus,.btn-secondary.btn-underline:hover {
    color: #FF7C12
}

.btn-alert {
    color: #fff;
    border-color: #b10001;
    background-color: #b10001
}

.btn-alert:active,.btn-alert:focus,.btn-alert:hover {
    color: #fff;
    border-color: #d50001;
    background-color: #d50001
}

.btn-alert.btn-solid {
    color: #b10001;
    border-color: #fff;
    background-color: #fff
}

.btn-alert.btn-solid:active,.btn-alert.btn-solid:focus,.btn-alert.btn-solid:hover {
    border-color: #b10001;
    background-color: #b10001;
    color: #fff
}

.btn-alert.btn-outline {
    color: #b10001;
    border-color: #b10001;
    background-color: transparent
}

.btn-alert.btn-outline:active,.btn-alert.btn-outline:focus,.btn-alert.btn-outline:hover {
    background-color: #b10001;
    color: #fff
}

.btn-alert.btn-link {
    background-color: transparent;
    color: #b10001
}

.btn-alert.btn-link:active,.btn-alert.btn-link:focus,.btn-alert.btn-link:hover {
    color: #222
}

.btn-alert.btn-underline:active,.btn-alert.btn-underline:focus,.btn-alert.btn-underline:hover {
    color: #b10001
}

.btn-success {
    color: #fff;
    border-color: #a8c26e;
    background-color: #a8c26e
}

.btn-success:active,.btn-success:focus,.btn-success:hover {
    color: #fff;
    border-color: #b7cd87;
    background-color: #b7cd87
}

.btn-success.btn-solid {
    color: #a8c26e;
    border-color: #fff;
    background-color: #fff
}

.btn-success.btn-solid:active,.btn-success.btn-solid:focus,.btn-success.btn-solid:hover {
    border-color: #a8c26e;
    background-color: #a8c26e;
    color: #fff
}

.btn-success.btn-outline {
    color: #a8c26e;
    border-color: #a8c26e;
    background-color: transparent
}

.btn-success.btn-outline:active,.btn-success.btn-outline:focus,.btn-success.btn-outline:hover {
    background-color: #a8c26e;
    color: #fff
}

.btn-success.btn-link {
    background-color: transparent;
    color: #a8c26e
}

.btn-success.btn-link:active,.btn-success.btn-link:focus,.btn-success.btn-link:hover {
    color: #222
}

.btn-success.btn-underline:active,.btn-success.btn-underline:focus,.btn-success.btn-underline:hover {
    color: #a8c26e
}

.btn-dark {
    color: #fff;
    border-color: #222;
    background-color: #222
}

.btn-dark:active,.btn-dark:focus,.btn-dark:hover {
    color: #fff;
    border-color: #0d6efd;
    background-color: #0d6efd;
}

.btn-dark.btn-solid {
    color: #222;
    border-color: #fff;
    background-color: #fff
}

.btn-dark.btn-solid:active,.btn-dark.btn-solid:focus,.btn-dark.btn-solid:hover {
    border-color: #222;
    background-color: #222;
    color: #fff
}

.btn-dark.btn-outline {
    color: #222;
    border-color: #222;
    background-color: transparent
}

.btn-dark.btn-outline:active,.btn-dark.btn-outline:focus,.btn-dark.btn-outline:hover {
    background-color: #222;
    color: #fff
}

.btn-dark.btn-link {
    background-color: transparent;
    color: #222
}

.btn-dark.btn-link:active,.btn-dark.btn-link:focus,.btn-dark.btn-link:hover {
    color: #222
}

.btn-dark.btn-underline:active,.btn-dark.btn-underline:focus,.btn-dark.btn-underline:hover {
    color: #222
}

.btn-white {
    color: #222;
    background-color: #fff;
    border-color: #fff
}

.btn-white:active,.btn-white:focus,.btn-white:hover {
    color: #fff;
    border-color: #0f172a;
    background-color: #0f172a
}

.btn-white.btn-outline {
    color: #fff;
    background-color: transparent;
    border-color: #fff
}

.btn-white.btn-outline:active,.btn-white.btn-outline:focus,.btn-white.btn-outline:hover {
    color: #0f172a;
    background-color: #fff
}

.btn-white.btn-link {
    color: #fff;
    background-color: transparent
}

.btn-white.btn-link:active,.btn-white.btn-link:focus,.btn-white.btn-link:hover {
    color: #fff;
    background-color: transparent
}

.dark-theme .btn-outline:not(:hover),.dark-theme .btn-white:not(:hover) {
    border-color: #666;
    color: #fff
}

.dark-theme .btn-link:not(.btn-primary) {
    color: #d7d7d7
}

.dark-theme .btn-dark {
    color: #fff;
    border-color: #050505;
    background-color: #050505
}

.dark-theme .btn-dark:active,.dark-theme .btn-dark:focus,.dark-theme .btn-dark:hover {
    color: #fff;
    border-color: #171717;
    background-color: #171717
}

.dark-theme .btn-dark.btn-solid {
    color: #050505;
    border-color: #fff;
    background-color: #fff
}

.dark-theme .btn-dark.btn-solid:active,.dark-theme .btn-dark.btn-solid:focus,.dark-theme .btn-dark.btn-solid:hover {
    border-color: #050505;
    background-color: #050505;
    color: #fff
}

.dark-theme .btn-dark.btn-outline {
    color: #050505;
    border-color: #050505;
    background-color: transparent
}

.dark-theme .btn-dark.btn-outline:active,.dark-theme .btn-dark.btn-outline:focus,.dark-theme .btn-dark.btn-outline:hover {
    background-color: #050505;
    color: #fff
}

.dark-theme .btn-dark.btn-link {
    background-color: transparent;
    color: #050505
}

.dark-theme .btn-dark.btn-link:active,.dark-theme .btn-dark.btn-link:focus,.dark-theme .btn-dark.btn-link:hover {
    color: #222
}

.dark-theme .btn-dark.btn-underline:active,.dark-theme .btn-dark.btn-underline:focus,.dark-theme .btn-dark.btn-underline:hover {
    color: #050505
}

.post {
}

.post .btn i {
    margin-left: 0.5rem
}

.post .btn i:before {
    margin: 0
}

.post .post-details>:last-child {
    margin-bottom: 0
}

.post-calendar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 4.5rem;
    height: 4.7rem;
    background: #353535;
    color: #fff;
    font-weight: 600;
    line-height: 1;
    border-radius: 0
}

.post-calendar .post-day {
    display: block;
    margin-bottom: 1px;
    font-size: 1.6rem
}

.post-calendar .post-month {
    display: block;
    margin-left: 2px;
    font-size: 1rem
}

.post-media {
    position: relative;
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 0.3rem
}

.post-media img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s
}

.post-media .post-calendar {
    position: absolute;
    left: 2rem;
    top: 2rem
}

.post-media .owl-dots {
    bottom: 2.5rem
}

.post-media .owl-dots .owl-dot span {
    border-color: #fff;
    background-color: transparent
}

.post-media .owl-dots .owl-dot:hover span {
    border-color: #fff;
    background-color: #fff
}

.post-details {
    padding: 2.3rem 0 2rem
}

.post-meta {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: inherit;
    line-height: 1.2;
    color: #999
}

.post-meta a,.post-meta span {
    font-weight: 600;
    color: #222
}

.post-meta a {
    text-transform: capitalize
}

.post-meta a:hover {
    color: #0f172a
}

.post-meta span {
    transition: color 0.3s
}

.post-meta .post-author {
    text-transform: uppercase
}

.post-meta .post-comment {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: inherit;
    line-height: 1.2;
    color: #999
}

.post-meta .post-comment:hover span {
    color: inherit
}

.post-title {
    margin-bottom: 0.5rem;
    text-transform: none;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.025em
}

.post-content {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    line-height: 1.72;
    letter-spacing: -0.025em;
    color: #666
}

@media (min-width: 576px) {
    .post-classic .post-title {
        font-size:2.4rem
    }
}

.post-sm .post-details {
    padding: 2.2rem 0.3rem 2rem
}

.inner-video .post-media {
    position: relative
}

.inner-video .video-play {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: color 0.3s,opacity 0.3s;
    font-family: "Font Awesome 5 Free";
    font-size: 6rem;
    color: #fff;
    cursor: pointer;
    z-index: 10
}

.inner-video .video-play:before {
    content: "ï…„"
}

.inner-video video {
    display: none;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover
}

.inner-video.paused video,.inner-video.playing video {
    display: block
}

.inner-video.paused .video-play,.inner-video.playing .video-play {
    opacity: 0
}

.inner-video.paused .video-play:before,.inner-video.playing .video-play:before {
    content: "ïŠ‹"
}

.inner-video.paused .post-media,.inner-video.playing .post-media {
    background-color: #000
}

.inner-video.paused .post-media:hover .video-play,.inner-video.playing .post-media:hover .video-play {
    opacity: 1
}

.inner-video.paused img,.inner-video.playing img {
    visibility: hidden
}

.inner-video.paused .video-play {
    opacity: 1
}

.inner-video.paused .video-play:before {
    content: "ï…„"
}

.post-list {
    margin-bottom: 2rem
}

.post-list .post-details {
    padding: 2rem 0
}

.post-list img {
    min-height: 20rem;
    object-fit: cover
}

@media (min-width: 576px) {
    .post-list {
        display:flex;
        align-items: center
    }

    .post-list .post-media {
        margin-right: 2rem
    }

    .post-list .post-details,.post-list .post-media {
        width: calc(50% - 1rem)
    }
}

.post-list-xs {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    margin-left: 2px
}

.post-list-xs .post-calendar {
    color: #ccc;
    border-color: #ccc;
    background-color: transparent
}

.post-list-xs .post-details {
    flex: 1;
    margin: 0 0 0 2rem;
    padding: 0
}

.post-list-xs .post-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
    text-transform: none;
    font-size: inherit;
    font-weight: 400;
    line-height: 1.69;
    color: inherit;
    white-space: normal
}

.post-list-xs .post-title:hover a {
    color: #fff
}

.post-list-sm {
    display: flex;
    align-items: center;
    margin-bottom: 2rem
}

.post-list-sm .post-media {
    max-width: 9rem;
    flex: 0 0 9rem;
    height: 9rem
}

.post-list-sm .post-media img {
    height: 100%;
    object-fit: cover
}

.post-list-sm .post-details {
    padding: 0;
    margin-left: 1.6rem
}

.post-list-sm .post-meta {
    margin-bottom: 0.4rem
}

.post-list-sm .post-meta a {
    font-size: 1.3rem;
    font-weight: 400;
    color: #999
}

.post-list-sm .post-title {
    margin-bottom: 0;
    white-space: normal;
    text-transform: none;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0
}

.post-col .post {
    margin: 0;
    padding: 1rem 0.3rem
}

.post-image-gap {
    padding: 2rem;
    background-color: #fff;
    transition: box-shadow 0.3s
}

.post-image-gap .post-details {
    padding-bottom: 1rem
}

.post-image-gap:hover {
    box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.1)
}

.post-mask {
    position: relative
}

.post-mask:before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.75;
    background: rgba(51,51,51,0.5);
    transition: all 0.3s;
    pointer-events: none;
    z-index: 1
}

.post-mask img {
    min-height: 19rem
}

.post-mask.gradient:before {
    height: 50%;
    background: linear-gradient(to bottom,rgba(125,185,232,0) 0%,#000 100%)
}

.post-mask .post-details {
    position: absolute;
    padding: 0;
    left: 3rem;
    right: 3rem;
    bottom: 2.2rem;
    z-index: 2;
    transform: translateY(4rem);
    transition: transform 0.4s
}

.post-mask .post-meta {
    color: #fff
}

.post-mask .post-meta a,.post-mask .post-meta span {
    color: inherit
}

.post-mask .post-meta a {
    font-weight: 400
}

.post-mask .post-title {
    margin: 0;
    text-transform: none;
    line-height: 1.32;
    color: #fff
}

.post-mask .post-title a:hover {
    color: #fff
}

.post-mask .btn-link {
    margin-top: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s
}

.post-mask:hover .post-media a:before {
    opacity: 0.1
}

.post-mask:hover .post-details {
    transform: translateY(0)
}

.post-mask:hover .btn-link {
    opacity: 1
}

.post-frame {
    padding: 2rem 2rem 0;
    box-shadow: 0px 5px 20px 3px rgba(0,0,0,0.05)
}

.post-frame .post-details {
    padding: 2.2rem 0 2rem
}

.post-frame .post-content {
    margin-bottom: 1.8rem;
    line-height: 1.72
}

ul.blog-filters {
    padding-top: 4rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #333;
    border-top: 1px solid #e1e1e1
}

ul.blog-filters li {
    margin-right: 2rem;
    margin-left: 2rem
}

ul.blog-filters .nav-filter {
    letter-spacing: 0
}

.blog-filters span {
    margin-left: 0.8rem;
    color: #aaa
}

.blog-filters li {
    padding: 0;
    margin-right: 0.8rem;
    line-height: 2.143;
    border-bottom: 2px solid transparent
}

.blog-filters a.nav-filter {
    border-width: 2px
}

.post-outer .post-details {
    position: relative;
    background-color: #fff;
    width: calc(100% - 100px);
    min-width: 75%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1rem;
    text-align: center;
    transform: translateY(-50%);
    padding: 2.3rem 0 2rem
}

.post-outer .post-details .btn {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.025em
}

.post-outer .post-meta {
    color: #222
}

.post-outer .post-title {
    letter-spacing: -0.025em;
    margin-bottom: 1.8rem
}

.owl-carousel.blog-centerzoom-carousel .post {
    position: relative
}

.owl-carousel.blog-centerzoom-carousel .post-details {
    background-color: #1d1d1d
}

.owl-carousel.blog-centerzoom-carousel .btn {
    font-size: 13px
}

.owl-carousel.blog-centerzoom-carousel .owl-nav .owl-prev {
    top: 80.5%;
    left: 10.5%
}

.owl-carousel.blog-centerzoom-carousel .owl-nav .owl-next {
    top: 80.5%;
    right: 10.5%
}

@media (min-width: 992px) {
    .owl-carousel.blog-centerzoom-carousel .owl-item {
        padding-bottom:300px
    }

    .owl-carousel.blog-centerzoom-carousel .post-details {
        position: absolute
    }

    .owl-carousel.blog-centerzoom-carousel .owl-item .post-media {
        transform: scale(0.75);
        transition: transform 0.2s;
        transform-origin: top center
    }

    .owl-carousel.blog-centerzoom-carousel .owl-item .post-details {
        width: 75%;
        top: 75%;
        transition: width 0.2s,top 0.2s,left 0.2s
    }

    .owl-carousel.blog-centerzoom-carousel .center .post-media {
        transform: scale(1.5)
    }

    .owl-carousel.blog-centerzoom-carousel .center .post-details {
        top: 150%;
        width: 150%;
        left: -25%
    }

    .owl-carousel.blog-centerzoom-carousel .active+.owl-item:not(.active) .post-media,.owl-carousel.blog-centerzoom-carousel .owl-item:not(.active)+.owl-item:not(.active) .post-media {
        transform-origin: top left
    }

    .owl-carousel.blog-centerzoom-carousel .owl-item:not(.active)+.active .post-media {
        transform-origin: top left
    }

    .owl-carousel.blog-centerzoom-carousel .center+.active .post-media {
        transform-origin: top right
    }

    .owl-carousel.blog-centerzoom-carousel .center+.active .post-details {
        left: 25%
    }
}

.pagination {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1.4rem;
    letter-spacing: 0.01em;
    justify-content: center;
    color: #222
}

.page-link-next i,.page-link-prev i {
    font-size: 1.9rem
}

.page-link-prev i {
    margin-right: 0.5rem
}

.page-link-next i {
    margin-left: 0.5rem
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    height: 4rem;
    padding: 0 0.3rem;
    line-height: 1;
    background-color: transparent;
    border: 0.1rem solid transparent;
    transition: border 0.3s
}

.active>.page-link,:hover:not(.disabled)>.page-link {
    /* border-color: #dadada; */
    color: #0f172a;
    background-color: transparent;
    border: 1px solid #0f172a;
    font-size: 16px;
    width: 46px;
    border-radius: 4px;
    font-weight: 600;
}
.page-link.page-link-prev:hover, .page-link.page-link-next:hover {
    /* border-color: #dadada; */
    border: 0;
}

.disabled>.page-link {
    color: #aaa
}

.page-link-next,.page-link-prev {
    min-width: 8rem;
    padding: 1.2rem
}
.page-link-next:hover, .page-link-prev:hover {
    border: none;
    background-color: transparent;
    outline: none;
}

.page-item:not(:last-child) {
    margin-right: 0.5rem
}

.page-item-dots {
    white-space: nowrap
}

.page-item-dots:before {
    content: "...";
    margin-top: -0.9em;
    margin-right: 0.5rem;
    display: inline-block;
    vertical-align: middle
}

.show-info {
    margin: 0;
    color: #222
}

.show-info span {
    margin: 0 0.5rem;
    color: #222
}

.page-item-total {
    margin-right: 0.5rem
}

@media (min-width: 576px) {
    .page-item-dots,.page-item-total {
        margin-right:2rem
    }
}

.dark-theme .show-info {
    color: #999
}

.page-subtitle {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 1.2
}

.page-title {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 4rem !important;
    line-height: 1.125;
    color: #222
}

.page-title+.breadcrumb {
    padding: 1em 0
}

.breadcrumb-nav .breadcrumb {
    padding: 1.4rem 0
}

.breadcrumb-nav .breadcrumb li:not(:last-child):after {
    margin-left: 0.8rem;
    opacity: 0.5
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #666;
    font-size: 1.4rem
}

.breadcrumb a {
    color: inherit
}

.breadcrumb a:hover {
    color: #222
}

.breadcrumb li:not(:last-child) a {
    color: #999;
    transition: color 0.3s
}

.breadcrumb li:hover:not(:last-child) a {
    color: #222
}

.breadcrumb .delimiter {
    margin: 0 0.7em;
    font-size: 1.19rem;
    opacity: 0.5
}

.breadcrumb li:not(:last-child):after {
    content: "ï„…";
    position: relative;
    margin: 0 0.6em;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
    color: #999
}

.breadcrumb li:last-child {
    color: #222
}

.breadcrumb-sm {
    padding: 1.1rem 0;
    color: inherit
}

.breadcrumb-sm li:last-child {
    color: inherit
}

.page-header {
    font-size: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 350px;
    padding: 3em 1em;
    background-color: #C8C3BF;
    background-position: unset;
    background-size: cover;
    text-align: center;
    color: #222
}

.page-header .breadcrumb {
    justify-content: center
}

.page-header .breadcrumb li:not(:last-child):after {
    content: none
}

.page-header>.breadcrumb li,.page-header>.breadcrumb li a,.page-header>.page-subtitle,.page-header>.page-title {
    font-size: 18px;
    color: #000000;
}

.page-header>.breadcrumb li:not(:last-child) a {
    opacity: 0.5;
    transition: opacity 0.3s
}

.page-header>.breadcrumb li:hover a {
    color: #fff;
    opacity: 1
}

@media (max-width: 767px) {
    .page-title {
        font-size:3.6rem
    }
}

.equal-height .product {
    height: 100%
}

.product-shadow {
    transition: box-shadow 0.3s
}

.product-shadow:hover {
    box-shadow: 0 15px 25px -20px rgba(0,0,0,0.5)
}

.product-label-round .product-label {
    padding: 0.5rem 1.1rem;
    border-radius: 1rem
}

.text-center .product-details {
    padding-left: 0.5rem;
    padding-right: 0.5rem
}

.product-wrap {
    margin-bottom: 2rem
}

.product {
    position: relative;
    overflow: hidden;
    font-size: 1.4rem;
    color: #999;
    transition: 0.3s;
    border-radius: 40px;
    /* background-color: #fbf0e4; */
    padding: 15px 15px 0;
    border: 4px double #ffffff36;
    height: 100%;
}

/* .main-product-item {
    box-shadow: 2px 2px 10px #00000026;
} */

.product:hover .product-action,.product:hover .product-action-vertical {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.product-media:hover img:first-child {
    opacity: 0
}

.product-media:hover img:last-child {
    opacity: 1
}

.product-media {
    position: relative;
    margin-bottom: 0;
    transition: box-shadow 0.3s;
    border-radius: 12px;
    overflow: hidden;
    transition: all ease-in-out .3s;
    border: 1px solid #d3d3d3;
    /* background-color: #f1f1fb; */
    /* border-radius: 50%; */
    padding: 30px 0 0 10px;
    padding-top: 0;
    padding-left: 0;
}

.product:not(.product-cart) .product-media {
    /* box-shadow: 0px 2px 15px 8px #4f4f4f1f; */
    /* border: 1px solid #e2e2e2; */
}

.product:not(.product-cart) .product-media:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #1a1a1a;
    opacity: 0;
    z-index: 0;
}

.product:hover .product-media {
    box-shadow: none;
}

.product:hover .product-media:after{
    opacity: .1;
}

.product-media img {
    display: block;
    width: 100%;
    height: auto;
    transition: all 0.5s;
    /* border-radius: 25px; */
}

.product-media img:last-child {
    position: absolute;
    opacity: 0;
    left: 0;
    right: 0;
    top: 0;
    left: 0;
    object-fit: cover
}

.product-media img:first-child {
    position: relative;
    opacity: 1
}

.product-label-group {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 2rem;
    top: 2rem;
    max-width: 10rem
}

.product-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    /* margin-bottom: 0.5rem; */
    /* padding: 0.5rem 1.1rem; */
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50%;
    font-weight: Jost;
    line-height: 1;
    color: #fff;
    text-transform: capitalize;
}

.product-label.label-new {
    background: #414e9c;
}

.product-label.label-sale {
    background: #FF7C12
}

.product-label.label-top {
    background: #0f172a
}

.product-label.label-stock {
    background: #999
}

.btn-product-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.2rem;
    height: 4.2rem;
    margin-bottom: 1rem;
    /* border: 1px solid #0f0f0f; */
    border-radius: 12px;
    background-color: #fff;
    color: #0f0f0f;
    font-size: 1.6rem;
    font-weight: 700;
    transition: border-color 0.3s,color 0.3s,background-color 0.3s
}

.btn-product-icon:hover {
    /* border-color: #f67683; */
    color: #fff;
    background-color: #414e9c;
}

.btn-product-icon:not(.btn-wishlist) i {
    margin-bottom: -1px;
}

.btn-product-icon.quick i {
    font-size: inherit
}

.btn-product-icon.btn-compare i {
    font-size: 1.8rem
}

.btn-product {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    /* flex: 1; */
    padding: 12px 36px;
    background-color: #00093f;
    color: #fff;
    font-size: 1.6rem;
    /* font-weight: 700; */
    line-height: 1.2;
    /* letter-spacing: -0.025em; */
    text-transform: capitalize;
    transition: opacity 0.3s;
    border-radius: 50px;
}

.btn-product:hover {
    color: #fff
}

.quick {
    opacity: 0.8;
    transition: opacity 0.3s
}

.quick:hover {
    opacity: 1
}

.quick i {
    font-size: 1.4rem
}

.btn-wishlist {
    line-height: 1
}

.btn-wishlist.loading:after,.btn-wishlist.loading:before {
    z-index: 1
}

.product-action-vertical {
    position: absolute;
    top: 125px;
    right: 24px;
    transition: all ease-in-out 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transform: translateY(10px);
}

.product-action-vertical .btn-wishlist.loading {
    overflow: hidden
}

.product-action {
    /* position: absolute; */
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    z-index: 10;
    transition: opacity 0.3s,visibility 0.3s;
    /* opacity: 0; */
    padding: 0 30px 2rem;
}

.product-details {
    position: relative;
    /* background-color: #fff; */
    padding: 1.5rem;
}

.product-details>.btn-wishlist {
    position: absolute;
    top: 1.2rem;
    right: 0;
    color: #999;
    z-index: 1;
    font-size: 1.6rem
}

.product-details>.btn-wishlist i {
    display: inline-block;
    margin: 0;
    transition: transform 0.3s
}

.product-details>.btn-wishlist:hover {
    color: #0f172a
}

.product-details>.btn-wishlist:hover i {
    transform: rotateY(180deg)
}

.product-details>:last-child {
    margin-bottom: 0
}

.product-details .product-action {
    position: relative;
    opacity: 1;
    visibility: visible
}

.product-cat {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.product-cat a:hover {
    color: #0f172a
}

.product-name {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    color: #ffffff;
    /* white-space: nowrap; */
    /* overflow: hidden; */
    text-overflow: ellipsis;
}

.product-name a {
 color: #000000;
 text-wrap-mode: wrap;
}

.product-name a:hover {
    color: #5287d0
}

.product-price {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: block;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 0.3rem;
        font-size: 24px;
        font-weight: 600;
        /* line-height: 1.86; */
        letter-spacing: 0;
        color: #0d6efd;
        font-family: sans-serif;
}

.product-price .old-price {
    color: #aaa
}

.product-price .new-price {
    margin-right: 1rem;
    text-decoration: none
}

.dark-theme .old-price {
    color: #666
}

.dark-theme .product.product-with-qty .quantity,.dark-theme .product.product-with-qty button {
    color: #999
}

.dark-theme .rating-reviews {
    color: #999
}

.dark-theme .ratings-full:before {
    color: #666
}

.ratings-container {
    display: flex;
    align-items: center;
    margin-left: 1px;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    font-size: 11px;
    letter-spacing: 0.2em
}

.ratings-full {
    cursor: pointer
}

.ratings,.ratings-full {
    position: relative;
}

.ratings-full+.rating-reviews {
    margin-left: 1rem
}

.ratings-full:before {
    content: "î¥•" "î¥•" "î¥•" "î¥•" "î¥•";
    color: rgba(0,0,0,0.16);
}

.ratings-full:hover .tooltiptext {
    visibility: visible;
    opacity: 1
}

.ratings {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden
}

.ratings:before {
    content: "î¥•" "î¥•" "î¥•" "î¥•" "î¥•";
    color: #FF7C12;
}

.rating-reviews {
    margin: 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.1rem;
    color: #aaa;
    letter-spacing: 0;
    text-transform: capitalize
}

.rating-reviews:hover {
    color: #0f172a
}

.product-variations {
    display: flex
}

.ratings-container+.product-variations {
    margin-top: -5px
}

.product-variations>a:not(.size-guide) {
    display: inline-block;
    position: relative;
    margin: 3px 5px 3px 0;
    padding: 0 5px;
    border-radius: 2px;
    background-color: transparent;
    background-size: cover;
    font-size: 1.2rem;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    width: 2.6rem;
    height: 2.6rem;
    color: #222;
    transition: 0.3s;
    border: 1px solid #e1e1e1
}

.product-variations>a:not(.size-guide):last-child {
    margin-right: 0
}

.product-variations .color:not(.active) {
    border: none
}

.product-variations>a.active,.product-variations>a:not(.size-guide):hover {
    border: 1px solid;
    box-shadow: inset 0 0 0 2px #fff
}

.product-details .product-action,.product-hide-details .product-action {
    position: relative;
    opacity: 1
}

.product-details .product-action .btn-wishlist,.product-hide-details .product-action .btn-wishlist {
    position: static
}

.product-details .btn-cart,.product-hide-details .btn-cart {
    display: block;
    max-width: 14rem;
    line-height: 2.9;
    padding: 0 0.6em;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #222;
    background-color: transparent;
    border: 2px solid #ccc;
    margin-right: 5px;
    border-radius: 0.3rem
}

.product-details .btn-cart i,.product-hide-details .btn-cart i {
    margin-right: 0.8rem;
    font-size: 1.8rem;
    position: relative;
    left: 7px;
    top: 1px;
}

.product-details .btn-cart,.product-hide-details .btn-cart {
    flex: 1;
    height: 4.2rem;
    font-size: 1.3rem;
    transition: color 0.3s,background-color 0.3s,border-color 0.3s;
    z-index: 1
}

.product-details .quick,.product-hide-details .quick {
    margin: 0 0 0 1.6rem
}

.product-details .btn-product-icon,.product-hide-details .btn-product-icon {
    width: auto;
    border: 0;
    background-color: transparent;
    color: #222;
    transition: color 0.3s,background-color 0.3s,visibility 0.3s
}

.product-details .btn-product-icon i,.product-hide-details .btn-product-icon i {
    font-size: 1.8rem
}

.product-details .btn-product-icon:hover,.product-hide-details .btn-product-icon:hover {
    color: #0f172a
}

.product:hover .product-action .btn-cart {
    color: #fff;
    background-color: #444;
    border-color: #444
}

@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active) {
    .product-details .btn-cart,.product-hide-details .btn-cart {
        flex: 0 0 12.3rem
    }
}

@media (-ms-high-contrast:none) and (max-width: 575px),screen and (-ms-high-contrast:active) and (max-width:575px) {
    .product-details .btn-cart,.product-hide-details .btn-cart {
        flex:0 0 9.5rem
    }
}

.product-classic .quick {
    opacity: 1
}

.product-classic .quick i:before {
    content: "î¦Œ"
}

.product-classic .btn-wishlist {
    margin: 0 0 0 1.6rem
}

.product-classic .quick,.product-classic .btn-wishlist {
    transform: translateX(-200%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s,opacity 0.3s,visibility 0.3s,color 0.3s,background-color 0.3s,border-color 0.3s
}

.product-classic .quick {
    transition: transform 0.5s,opacity 0.5s,visibility 0.5s,color 0.3s,background-color 0.3s,border-color 0.3s
}

.product-classic:hover .quick,.product-classic:hover .btn-wishlist {
    transform: translateX(0);
    opacity: 1;
    visibility: visible
}

.product-classic .product-details {
    padding-left: 0
}

.product-classic .ratings-container {
    margin-bottom: 1.5rem
}

.product-slideup-content {
    overflow: hidden
}

.product-slideup-content .product-hide-details {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transition: transform 0.3s;
    background-color: #fff
}

.product-slideup-content .product-details {
    padding-bottom: 1px;
    background-color: #fff;
    transition: transform 0.3s
}

.product-slideup-content .quick,.product-slideup-content .btn-wishlist {
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s,opacity 0.3s,visibility 0.3s,color 0.3s,background-color 0.3s
}

.product-slideup-content .quick {
    transform: translateX(-200%)
}

.product-slideup-content .btn-wishlist {
    transform: translateX(200%)
}

.product-slideup-content:hover .quick,.product-slideup-content:hover .btn-wishlist {
    transform: translateX(0);
    opacity: 1;
    visibility: visible
}

.product-slideup .product-details {
    padding-bottom: 0;
    background-color: #fff;
    transition: transform 0.3s
}

.product-slideup .ratings-container {
    margin-bottom: 0
}

.product-slideup .quick,.product-slideup .btn-wishlist {
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s,opacity 0.3s,visibility 0.3s,color 0.3s,background-color 0.3s
}

.product-slideup .quick {
    transform: translateX(-200%)
}

.product-slideup .btn-wishlist {
    transform: translateX(200%)
}

.product-slideup .product-action {
    display: flex;
    position: absolute;
    padding-top: 1.5rem;
    top: 100%;
    bottom: auto;
    visibility: hidden;
    opacity: 0
}

.product-slideup:hover {
    transform: translateY(-58px)
}

.product-slideup:hover .quick,.product-slideup:hover .btn-wishlist {
    transform: translateX(0);
    opacity: 1;
    visibility: visible
}

.product-slideup:hover .product-action {
    visibility: visible;
    opacity: 1
}

.product-slideup-content .btn-cart,.product-slideup .btn-cart {
    margin-right: 0
}

.product-slideup-content .btn-wishlist,.product-slideup .btn-wishlist {
    position: static;
    margin: 0 1.6rem 0 0
}

.split-line {
    overflow: hidden
}

.product-image-gap {
    padding: 0.9rem;
    border: 1px solid #e1e1e1;
    background-color: #fff
}

.product-image-gap .product-details {
    padding: 1.8rem 1rem 1rem
}

.product-image-gap .ratings-container {
    margin-bottom: 0
}

.product-image-gap:hover {
    box-shadow: 0 5px 30px rgba(0,0,0,0.05)
}

@media (max-width: 479px) {
    .product-image-gap .product-details {
        padding:1.8rem 0 1rem
    }
}

.product-list {
    display: flex;
    align-items: center;
    margin-bottom: 2rem
}

.product-list .product-media {
    flex: 0 0 28rem;
    max-width: 28rem;
    margin: 0 2rem 0 0
}

.product-list .product-details {
    padding: 0;
    flex: 1
}

.product-list .product-label {
    font-size: 1.1rem
}

.product-list .quick {
    opacity: 1
}

.product-list .btn-wishlist {
    margin: 0 0 0 0.8rem
}

.product-list .quick,.product-list .btn-wishlist {
    transform: translateX(-200%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s,opacity 0.3s,visibility 0.3s,color 0.3s,background-color 0.3s
}

.product-list .quick {
    transition: transform 0.5s,opacity 0.5s,visibility 0.5s,color 0.3s,background-color 0.3s
}

.product-list .ratings-container {
    margin-bottom: 0.8rem
}

.product-list .product-name {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #222
}

.product-list .product-price {
    font-size: 1.8rem;
    font-weight: 600
}

.product-list .product-short-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 2rem;
    text-transform: none;
    font-size: 1.4rem;
    line-height: 1.78;
    color: #666
}

.product-list:hover .quick,.product-list:hover .btn-wishlist {
    transform: translateX(0);
    opacity: 1;
    visibility: visible
}

.product-list-sm {
    display: flex;
    align-items: center;
    margin-bottom: 2rem
}

.product-list-sm .product-media {
    flex: 0 0 10rem;
    max-width: 10rem;
    margin: 0 1rem 0 0
}

.product-list-sm .product-details {
    flex: 0 0 calc(100% - 10rem);
    max-width: calc(100% - 10rem);
    padding: 0
}

.product-list-sm .product-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.7rem;
    white-space: normal;
    color: #222;
    padding-left: 0
}

.product-list-sm .product-name:hover {
    color: #0f172a
}

.product-list-sm .ratings-container {
    margin: 0
}

.product-list-sm .product-price {
    font-size: 1.4rem
}

.product-list-sm+.product-list {
    margin-top: 2rem
}

.product-list-sm .btn-cart {
    margin-top: 2rem;
    height: 3.3rem;
    max-width: 11.7rem;
    border: 1px solid #d7d7d7;
    color: #FF7C12;
    background: transparent;
    font-size: 1.2rem
}

.product-list-sm .btn-cart:hover {
    border-color: #FF7C12;
    background: #FF7C12
}

.product.text-center .product-cat {
    padding: 0
}

.product.text-center .product-action,.product.text-center .product-price,.product.text-center .product-variations,.product.text-center .ratings-container {
    justify-content: center
}

.product.shadow-media:hover .product-media {
    box-shadow: 0px 20px 20px -16px rgba(0,0,0,0.5)
}

.product.cart-full .product-price,.product.product-with-qty .product-details .product-price {
    margin-bottom: 1rem
}

.product.cart-full .btn-cart,.product.product-with-qty .product-details .btn-cart {
    padding: 0;
    border-color: #ebebeb
}

.product.cart-full .btn-cart:active,.product.cart-full .btn-cart:focus,.product.cart-full .btn-cart:hover,.product.product-with-qty .product-details .btn-cart:active,.product.product-with-qty .product-details .btn-cart:focus,.product.product-with-qty .product-details .btn-cart:hover {
    background-color: #0f172a;
    border-color: #0f172a;
    color: #fff
}

.product.cart-full .btn-cart {
    max-width: none;
    width: 100%
}

.product.product-with-qty .product-details {
    padding-left: 0;
    padding-right: 0
}

.product.product-with-qty .btn-cart {
    max-width: 12.3rem;
    margin-right: 0
}

.product.product-with-qty .btn-cart i {
    display: none
}

.product.product-with-qty .product-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem
}

.product.product-with-qty button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #333;
    font-size: 1rem;
    width: 24px;
    height: 24px;
    border-radius: 0.3rem;
    border: none;
    background: #f4f4f4;
    cursor: pointer;
    transition: background-color 0.3s,color 0.3s
}

.product.product-with-qty button:hover {
    background-color: #0f172a;
    color: #fff
}

.product.product-with-qty .quantity {
    min-height: auto;
    width: 3.2rem;
    padding: 0;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    text-align: center;
    color: #222
}

.product.product-variable:not(.cart-full) .btn-cart:after {
    display: none;
    content: "î¥¿";
    font-size: 1.8rem;
    font-weight: 400
}

.product:hover.product-with-qty .btn-cart {
    background-color: transparent;
    color: #222
}

@media (max-width: 575px) {
    .product-list {
        display:block
    }

    .product-list .product-media {
        margin: 0;
        max-width: 100%
    }

    .product-list .product-details {
        padding: 1.8rem 0 2rem
    }

    .product-action-vertical {
        top: 10px;
        right: 10px
    }
}

@media (max-width: 479px) {
    .product-details .btn-cart,.product-hide-details .btn-cart {
        max-width:4.2rem;
        display: flex
    }

    .product-details .btn-cart span,.product-hide-details .btn-cart span {
        display: none
    }

    .product-details .btn-cart i,.product-hide-details .btn-cart i {
        margin-right: 0
    }

    .product.product-with-qty .product-details .btn-cart {
        max-width: 4.2rem;
        padding: 0.78em 0
    }

    .product.product-with-qty .btn-cart i {
        display: block
    }

    .product.product-with-qty .product-quantity {
        margin-right: 1rem
    }

    .cart-full .product-details .btn-cart span {
        display: inline
    }

    .cart-full .btn-cart i {
        display: none
    }

    .product-label-group {
        left: 1.2rem;
        top: 1.2rem
    }

    .quick {
        font-size: 1.1rem
    }

    .btn-product-icon {
        width: 3.2rem;
        height: 3.2rem;
        font-size: 1.3rem
    }

    .product.product-variable:not(.cart-full) .btn-cart:after {
        display: block
    }

    .product.product-variable:not(.cart-full) .btn-cart i {
        display: none
    }
}

.product-filters {
    margin-right: 1.5rem
}

.banner {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-size: 1rem
}

.banner figure img {
    display: block;
    width: 100%;
    height: auto
}

.banner.inner-banner:before {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 1rem;
    bottom: 1rem;
    border: 2px solid rgba(225,225,225,0.3);
    z-index: 1
}

.banner.inner-banner .banner-content {
    z-index: 2
}

.banner .banner-content {
    position: relative
}

.banner-radius {
    border-radius: 1rem;
    overflow: hidden
}

.banner-subtitle {
    letter-spacing: -0.025em;
    line-height: 1
}

.banner-price-info,.banner-title {
    line-height: 1
}

.banner-fixed>.banner-content,.banner-fixed>.container,.banner-fixed>.container-fluid {
    position: absolute;
    z-index: 1
}

.banner-fixed>.container,.banner-fixed>.container-fluid {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0
}

.banner-fixed.content-middle .banner-content {
    top: 50%;
    transform: translateY(-50%)
}

.banner-fixed.content-center .banner-content {
    text-align: center;
    left: 50%;
    transform: translateX(-50%)
}

.banner-fixed.content-center.content-middle .banner-content {
    transform: translate(-50%,-50%)
}

@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active) {
    .intro-slider .banner img {
        height: 100%;
        width: 100%
    }
}

.video-banner {
    position: relative
}

.video-banner .btn-play {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 49px;
    width: 51px;
    height: 51px;
    font-size: 22px;
    border-radius: 50%;
    border: 1px solid;
    transition: background-color 0.3s,border-color 0.3s
}

.video-banner .btn-play:hover {
    background-color: #0f172a;
    border-color: #0f172a
}

.banner-button-hide .banner-content {
    transition: padding 0.3s
}

.banner-button-hide .btn {
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    left: 50%;
    transition: 0.3s
}

.banner-button-hide:not(:hover) .btn {
    margin: 0;
    visibility: hidden;
    opacity: 0
}

.banner-button-hide:hover .banner-content {
    padding-bottom: 6.2rem
}

@media (max-width: 991px) {
    .banner {
        font-size:8px
    }
}

@media (max-width: 479px) {
    .banner {
        font-size:7px
    }
}

.category {
    position: relative;
    font-size: 1rem
}

.category img {
    display: block;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto
}

.category .category-name {
    margin-bottom: 0.3rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
    color: inherit;
    text-transform: capitalize
}

.category .category-name a {
    color: inherit
}

.category .category-count {
    font-size: 1.2rem;
    line-height: 1.2
}

.category-rounded .category-media {
    overflow: hidden;
    border-radius: 1rem
}

.category-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: background 0.3s
}

.category-absolute .category-content {
    cursor: pointer;
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    height: 5.2rem;
    border-radius: 0 0 1rem 1rem;
    overflow: hidden
}

.category-absolute .btn {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s,opacity 0.3s;
    line-height: 1
}

.category-absolute .category-content:hover .btn {
    transform: translateY(0);
    opacity: 1
}

.category-default .category-content {
    background-color: #fff;
    border-radius: 3px
}

.category-default .category-name,.category-light .category-name {
    margin-bottom: 0;
    color: #222;
    letter-spacing: -0.025em
}

.category-badge .btn,.category-default .btn {
    padding: 0;
    line-height: 5rem
}

.category-default1 .category-content {
    background-color: #fff;
    color: #222
}

.category-default1 .category-name {
    margin: 0
}

.category-default1:hover .category-content {
    background-color: #0f172a;
    color: #fff
}

.category-light .category-name {
    padding: 1.8rem 3.9rem;
    background-color: #fff;
    border-radius: 0.3rem;
    transition: background-color 0.3s,padding 0.3s
}

.category-light .category-name a {
    position: relative;
    transition: padding 0.3s
}

.category-light .category-name a:after {
    content: "î¥¿";
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    font-weight: 400;
    opacity: 0;
    transition: opacity 0.3s
}

.category-light:hover .category-name {
    padding-left: 2.8rem;
    padding-right: 2.7rem;
    background-color: #0f172a;
    color: #fff
}

.category-light:hover .category-name a {
    padding-right: 2.3rem
}

.category-light:hover .category-name a:after {
    opacity: 1
}

.category-icon {
    padding: 2.6rem 0.5rem;
    border: 1px solid #e1e1e1;
    color: #222;
    text-align: center;
    transition: border 0.3s;
    border-radius: 0.3rem
}

.category-icon i {
    margin-bottom: 1.3rem;
    font-size: 4.2rem;
    color: #666;
    transition: transform 0.3s
}

.category-icon .category-name {
    margin: 0;
    color: #222
}

.category-icon:hover i {
    transform: translateY(-4px)
}

.category-icon:hover .category-content {
    background: transparent
}

.category-icon-inline {
    display: inline-flex;
    align-items: center
}

.category-icon-inline .category-media {
    font-size: 3.2rem;
    line-height: 1;
    color: #444;
    transition: color 0.3s
}

.category-icon-inline .category-media i {
    margin-right: 0.8rem
}

.category-icon-inline .category-media svg {
    display: block;
    margin-right: 1rem;
    width: 3.5rem;
    height: 3.9rem;
    stroke: #444;
    fill: #444;
    transition: stroke 0.3s
}

.category-icon-inline .category-name {
    margin: 0;
    text-transform: none;
    text-align: left;
    font-size: 1.3rem;
    font-weight: inherit;
    line-height: 1.08;
    color: inherit;
    transition: color 0.3s
}

.category-icon-inline:hover .category-media,.category-icon-inline:hover .category-name {
    color: #0f172a
}

.category-icon-inline:hover svg {
    stroke: #0f172a;
    fill: #0f172a
}

.category-icon-inline:hover i,.category-icon-inline:hover svg {
    animation: slideUpShorter 0.6s
}

@keyframes slideUpShorter {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-4px)
    }

    to {
        transform: translateY(0)
    }
}

.ellipse-section .owl-stage-outer {
    padding: 5rem;
    margin: -5rem
}

.category-ellipse .category-media {
    border-radius: 50%;
    overflow: hidden;
    padding: 1.2rem;
    background-color: #fff;
    box-shadow: 0 0 50px 0 rgba(0,0,0,0.1);
    text-align: center
}

.category-ellipse img {
    transform: rotateZ(-10deg) translateX(-14px);
    transition: transform 0.3s
}

.category-ellipse .category-content {
    padding-top: 2rem
}

.category-ellipse .category-name {
    letter-spacing: -0.025em;
    color: #222
}

.category-ellipse .category-name:hover {
    color: #0f172a
}

.category-ellipse .category-count {
    text-transform: uppercase
}

.category-ellipse:hover img {
    transform: rotateZ(0) translateX(0)
}

.cat-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #222;
    cursor: pointer;
    background-color: #eaf0f9
}

.category-ellipse2 .category-media {
    border-radius: 50%;
    overflow: hidden;
    text-align: center
}

.category-ellipse2 .category-content {
    width: 100%;
    min-height: 25%;
    background-color: #fff
}

.category-ellipse2 .category-name:hover a {
    color: #0f172a
}

.dark-cta-section {
    background-color: #313438
}

.category-classic .category-media {
    overflow: hidden;
    border-radius: 1.1rem
}

.category-classic .category-content {
    right: 0;
    background-color: rgba(38,38,38,0.808);
    color: #fff;
    border-radius: 0 0 1rem 1rem
}

.category-classic .category-name {
    margin-bottom: 0;
    text-transform: uppercase
}

.category-i-over figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0f172a;
    opacity: 0.9;
    border-radius: 1rem
}

.category-i-over figure i {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    top: 37.5%;
    transform: translate(-50%,-50%);
    width: 10rem;
    height: 10rem;
    margin-bottom: 0;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.15);
    box-shadow: 0 5px 15px 0 #0f172a;
    font-size: 4.2rem;
    z-index: 1;
    color: #fff
}

.category-classic .category-content,.category-i-over .category-content {
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 25%
}

.category-classic .category-count,.category-i-over .category-count {
    display: block;
    opacity: 0;
    line-height: 0;
    visibility: hidden;
    transition: opacity 0.3s,line-height 0.3s,visibility 0.3s,padding 0.3s
}

.category-classic:hover .category-count,.category-i-over:hover .category-count {
    visibility: visible;
    line-height: 1.2;
    opacity: 1;
    padding-top: 4px
}

.category-center img {
    border-radius: 0
}

.category-center .category-content {
    bottom: auto;
    height: auto;
    top: 50%;
    transform: translateY(-50%)
}

.category-center .category-name {
    font-size: 2.6rem;
    color: #fff
}

.category-center .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.category-group-icon,.category-group-image {
    display: flex;
    align-items: center;
    border: 1px solid #e1e1e1;
    border-radius: 0.3rem
}

.category-group-icon>*,.category-group-image>* {
    flex: 1
}

.category-group-icon li:not(:last-child),.category-group-image li:not(:last-child) {
    margin-bottom: 0.9rem
}

.category-group-image {
    color: #666
}

.category-group-image .category-content {
    position: static;
    max-width: 50%;
    flex: 0 0 50%;
    padding: 2.3rem 1rem 2.3rem 0;
    background: transparent;
    text-align: left;
    align-items: flex-start
}

.category-group-image .category-name {
    width: 100%;
    margin-bottom: 1.5rem;
    text-transform: none;
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.01em
}

.category-group-image a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%
}

.category-group-image .category-list {
    font-size: 1.3rem;
    line-height: 1.2;
    width: 100%
}

.category-group-image .category-list a {
    position: relative;
    display: inline-block;
    transition: text-decoration 0.3s
}

.category-group-image .category-list a:hover {
    color: #222;
    text-decoration: underline
}

.category-group-image .category-list a:active {
    color: #0f172a
}

.category-group-image:hover .category-name {
    margin-bottom: 1.5rem
}

.category-group-image:hover .category-content {
    background: transparent
}

.category-group-icon {
    display: flex;
    align-items: center;
    border: 0;
    color: #fff
}

.category-group-icon>* {
    flex: 1
}

.category-group-icon .category-media {
    text-align: center
}

.category-group-icon .category-media i {
    display: inline-block;
    font-size: 6.8rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.8rem;
    line-height: 1;
    transition: transform 0.3s;
    color: #fff
}

.category-group-icon>a {
    padding-right: 1rem
}

.category-group-icon>a:hover i {
    transform: translateY(-0.5rem)
}

.category-group-icon .category-content {
    padding: 28px 0px 28px 10px;
    background: transparent;
    text-align: left;
    align-items: flex-start
}

.category-group-icon .category-name {
    margin-bottom: 0;
    text-align: center;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    color: #fff
}

.category-group-icon .category-list {
    font-size: 1.3rem;
    line-height: 1.2
}

.category-group-icon .category-list li {
    white-space: nowrap
}

.category-group-icon .category-list li:before {
    content: "ï„…";
    padding-right: 0.8rem;
    font-family: "Font Awesome 5 Free";
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff
}

.category-group-icon .category-list a {
    position: relative;
    display: inline-block;
    transition: text-decoration 0.3s
}

.category-group-icon .category-list a:hover {
    color: inherit;
    text-decoration: underline
}

.category-group-icon:hover .category-name {
    margin-bottom: 0
}

.category-group-icon:hover .category-content {
    background: transparent
}

.category-banner {
    overflow: hidden;
    color: #222
}

.category-banner.text-white .btn {
    color: #fff
}

.category-banner .category-content {
    top: 4.5rem;
    left: 5rem;
    bottom: auto;
    width: auto;
    height: auto;
    align-items: flex-start;
    z-index: 1;
    background-color: transparent;
    transition: top 0.3s,padding 0.3s
}

.category-banner .category-name {
    text-transform: none;
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.025em
}

.category-banner .category-count {
    visibility: visible;
    opacity: 1;
    font-size: 1.4rem;
    line-height: 1.2;
    transition: color 0.3s;
    z-index: 1
}

.category-banner .btn {
    top: auto;
    right: auto;
    transform: none
}

.category-banner:hover .category-content {
    top: 3rem;
    padding-bottom: 3rem;
    background-color: transparent
}

.category-banner:hover .btn {
    opacity: 1
}

.category-badge .category-content {
    padding: 1.4rem 4rem;
    left: 2rem;
    right: auto;
    bottom: 2rem;
    background-color: #fff
}

.category-badge .category-name {
    margin-bottom: 0;
    font-weight: 700;
    letter-spacing: 0.007em;
    color: #222
}

.category-overlay .category-content {
    align-items: center;
    width: 100%
}

.category-overlay .category-count {
    padding: 0;
    line-height: 0;
    opacity: 0;
    transform: translateY(-1rem);
    transition: transform 0.3s,opacity 0.3s,line-height 0.3s,padding 0.3s
}

.category-overlay .category-name {
    margin: 0
}

.category-overlay:hover .category-content {
    padding: 0;
    top: 50%
}

.category-overlay:hover .category-count {
    padding-top: 1rem;
    transform: translateY(0);
    opacity: 1
}

.category-block {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10.7rem;
    padding: 1.5rem;
    color: #fff;
    background-color: #333;
    transition: background-color 0.3s
}

.category-block .category-name {
    margin: 0;
    text-align: center;
    font-weight: 400;
    line-height: 1.7rem;
    text-transform: none
}

.category-block:hover {
    background-color: #0f172a
}

.category-block:hover .category-name {
    color: #fff
}

@media (max-width: 1300px) {
    .ellipse-section .owl-stage-outer {
        padding:5rem 3rem;
        margin: 5rem -3rem
    }
}

@media (max-width: 1199px) {
    .ellipse-section .owl-stage-outer {
        padding:5rem 2rem;
        margin: -5rem -2rem
    }
}

@media (max-width: 479px) {
    .ellipse-section .owl-stage-outer {
        padding:5rem 1.5rem;
        margin: -5rem -1.5rem
    }
}

.icon-box .icon-box-title {
    margin: 0 0 0.7rem;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.6
}

.icon-box p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.72;
    letter-spacing: 0;
    color: #666
}

.icon-box i:before {
    margin: 0
}

.icon-box .icon-box-content {
    text-align: center
}

.icon-box-icon {
    display: inline-block;
    margin-bottom: 2.6rem;
    font-size: 3.4rem;
    font-weight: 600;
    line-height: 0;
    color: #222
}

.icon-box-icon svg {
    height: 3.4rem;
    width: 4.8rem
}

.icon-box-side {
    display: flex;
    align-items: center;
    justify-content: center
}

.icon-box-side .icon-box-content {
    text-align: left
}

.icon-box-side .icon-box-icon {
    margin-right: 1.5rem;
    margin-bottom: 0
}

.icon-box-side .icon-box-title {
    margin: 0
}

.icon-border .icon-box-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5.2rem;
    height: 5.2rem;
    border-radius: 50%;
    border: 1px solid #222;
    font-size: 2.5rem
}

.icon-border svg {
    height: 2.4rem
}

.icon-inversed .icon-box-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: #0f172a;
    color: #fff;
    font-size: 2.5rem
}

.icon-inversed svg {
    height: 2.4rem;
    fill: white
}

.icon-solid .icon-box-icon {
    font-size: 4.8rem;
    color: #0f172a
}

.icon-solid svg {
    width: 5.4rem;
    height: 5.4rem;
    fill: #0f172a
}

.icon-solid.icon-box-side {
    align-items: flex-start
}

.icon-solid.icon-box-side svg {
    width: 4.8rem;
    height: 4.8rem
}

.icon-box-tiny .icon-box-icon {
    margin: 0 1rem 0 0;
    font-size: 2.8rem
}

.icon-box-tiny svg {
    height: 2.8rem;
    width: 2.8rem
}

.icon-box-tiny .icon-box-title {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

@media (max-width: 991px) {
    .icon-box-side {
        flex-direction:column
    }

    .icon-box-side .icon-box-icon {
        display: inline-block;
        margin: 0 0 2rem 0;
        padding: 2rem
    }

    .icon-box-side .icon-box-content {
        text-align: center
    }
}

.product-single-carousel,.product-thumbs-wrap {
    flex-basis: 100%;
    max-width: 100%
}

.product-single-carousel .owl-nav .owl-next,.product-single-carousel .owl-nav .owl-prev {
    color: #222;
    border: 0
}

.product-image {
    position: relative
}

.product-thumbs-wrap {
    position: relative;
    margin-top: 1rem;
    overflow: hidden
}

.product-thumbs-wrap img {
    display: block
}

.product-thumbs-wrap button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.4rem;
    border: 0;
    transition: opacity 0.3s,transform 0.3s;
    z-index: 1;
    opacity: 0;
    box-shadow: 0 0 1rem rgba(0,0,0,0.1);
    -webkit-appearance: none;
    cursor: pointer
}

.product-thumbs-wrap:hover button:not(.disabled) {
    opacity: 0.9;
    transform: none
}

.product-thumbs-wrap button:not(.disabled):hover {
    opacity: 1
}

.product-thumbs-wrap>button {
    display: none
}

.product-thumbs-wrap button,.product-thumbs .owl-nav .owl-next,.product-thumbs .owl-nav .owl-prev {
    background-color: #fff;
    color: #666;
    font-size: 1.6rem
}

.product-thumb:before,.product-thumbs-wrap button {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0
}

.product-thumbs {
    transition: top 0.3s ease-out;
    display: flex
}

.product-thumbs.owl-carousel {
    margin: 0 -0.5rem;
    width: calc(100% + 1rem)
}

.product-thumbs .owl-stage {
    display: flex
}

.product-thumbs .owl-prev {
    transform: translateX(-100%);
    left: 0.5rem
}

.product-thumbs .owl-next {
    left: auto;
    right: 0.5rem;
    transform: translateX(100%)
}

.product-thumb {
    position: relative;
    margin: 0 0.5rem;
    cursor: pointer;
    overflow: hidden;
    border-radius: 18px;
    overflow: hidden;
    /* border: 1px solid rgb(0 0 0 / 20%); */
}

.product-thumb:before {
    content: "";
    transition: border-color 0.3s;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 18px;
}

.product-thumb.active:before {
    border: 1px solid rgb(0 0 0 / 20%);
}

.product-thumb .btn-play {
    position: relative;
    display: block;
    z-index: 2
}

.product-thumb .btn-play:before {
    content: "";
    position: absolute;
    left: -100px;
    top: -100px;
    right: -100px;
    bottom: -100px;
    background: rgba(0,0,0,0.1);
    transition: background 0.3s
}

.product-thumb .btn-play:after {
    content: "ï€¡";
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border: 2px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    transition: box-shadow 0.3s
}

.product-thumb .btn-play:hover:before {
    background: rgba(0,0,0,0.2)
}

.product-thumb .btn-play:hover:after {
    box-shadow: 0 0 0 15px rgba(255,255,255,0.2)
}

.product-thumb .btn-video:after {
    content: "ï‹"
}

.product-single {
    color: inherit
}

.product-single .product-details {
    padding: 0 0 3rem;
    background-color: transparent
}

.container-fluid .product-single .product-details {
    padding-top: 4px
}

aside+div .product-single .product-details {
    padding-top: 2px
}

.product-single .product-cat {
    margin-bottom: 1.3rem;
    color: #999;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: -0.025em
}

.product-single .product-cat span {
    margin-right: 0.7rem
}

.product-single .product-name {
    margin-bottom: 2rem;
    font-size: 4rem;
    font-weight: 800;
    /* letter-spacing: -0.025em; */
    white-space: normal;
    color: #222
}

.product-single .product-price {
    display: block;
    margin-bottom: 2rem;
    color: #333;
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1
}

.product-single .old-price {
    font-size: 2.4rem;
    font-weight: 600
}

.product-single .rating-reviews {
    font-size: 1.2rem
}

.product-single .rating-reviews:not(:hover) {
    color: #999
}

.product-single .ratings-container {
    margin-bottom: 1.7rem;
    font-size: 14px
}

.product-single .ratings-container .ratings:before {
    color: #666
}

.product-single .ratings-full {
    margin-top: -2px
}

.product-single label {
    color: #222;
    font-weight: 600;
    text-transform: uppercase
}

.product-single .product-action {
    display: inline-block
}

.product-single .product-action .btn-wishlist {
    position: relative
}

.product-single .divider {
    margin-left: -1rem;
    margin-right: 1.8rem
}

.product-single .social-links {
    color: #999
}

.product-single .social-link {
    border: none
}

.product-single .social-link.social-facebook:hover {
    background-color: transparent;
    color: #3b5998
}

.product-single .social-link.social-twitter:hover {
    background-color: transparent;
    color: #1da1f2
}

.product-single .social-link.social-pinterest:hover {
    background-color: transparent;
    color: #bd081c
}

.product-single .product-footer>* {
    margin-bottom: 1rem
}

.product-single .btn-compare,.product-single .btn-wishlist {
    display: inline-block;
    padding: 0.5rem 0;
    font-weight: 400;
    font-size: 1.4rem;
    background-color: transparent;
    transition: color 0.3s;
    text-transform: none;
    color: #666
}

.product-single .btn-compare i,.product-single .btn-wishlist i {
    display: inline-block;
    margin: 0 0.5rem 0.3rem 0;
    vertical-align: middle;
    font-size: 14px;
    line-height: 0;
    color: red;
}

.product-single .btn-compare:hover,.product-single .btn-wishlist:hover {
    color: #0f172a
}

.product-single .btn-compare i {
    margin-right: 0.8rem;
    font-size: 2.1rem
}

.product-single .quantity {
    font-weight: 700
}

.product-single .product-meta+.product-countdown-container {
    margin-top: 0.4rem
}

.product-single .product-countdown-container {
    display: inline-flex;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 1rem 1.6rem;
    border: 1px solid #444;
    background-color: #444;
    text-transform: none;
    line-height: 1;
    color: #fff;
    border-radius: 0.3rem
}

.product-single .product-countdown-container label {
    margin-right: 0.5rem;
    text-transform: none;
    color: #fff
}

.product-single .product-countdown-container .product-sale-info {
    position: relative;
    padding-right: 1.5rem
}

.product-single .product-countdown-container .product-sale-info i {
    margin-right: 0.8rem
}

.product-single .product-countdown-container .product-sale-info:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 2.4rem;
    background: rgba(255,255,255,0.2)
}

.product-single .product-countdown-container .product-sale-info+label {
    margin-left: 1.5rem
}

.product-single .product-label-group {
    top: 2rem;
    left: 2.5rem;
    z-index: 2;
    align-items: flex-start
}

.product-single .product-label {
    color: #fff
}

.product-single .product-variations>a:not(.size-guide) {
    width: 3rem;
    height: 3rem
}

.product-single .color {
    border: 0
}

.product-single .size {
    width: 3.6rem
}

.product-single .accordion ul {
    /* list-style: none; */
    padding-left: 0
}

.product-single .rating-form label,.product-single form label {
    font-weight: 400;
    font-size: 1.3rem;
    text-transform: none;
    color: #666
}

.dark-theme .ratings-container .ratings:before {
    color: #0f172a
}

.dark-theme .social-links {
    color: #666
}

.dark-theme .btn-compare,.dark-theme .btn-wishlist {
    color: #999
}

.dark-theme .btn-compare.added,.dark-theme .btn-wishlist.added {
    color: #fff
}

.dark-theme .product-variation-clean:not(:hover) {
    color: #fff
}

.dark-theme .product-form.btn-cart:disabled,.dark-theme .product-form.btn-external:disabled {
    background-color: #666;
    color: #aaa
}

.product-meta {
    margin-bottom: 1.8rem;
    color: #999;
    font-size: 1.2rem
}

.product-meta span {
    margin: 0 1.9rem 0 3px
}

.product-form {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    line-height: 3rem;
    margin: 0 0 1rem
}

.product-form>label {
    min-width: 7rem;
    margin-bottom: 1rem;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.025em
}

.product-form.product-variations {
    line-height: 37px
}

.product-form .select-box:before {
    right: 1.4rem;
    font-size: 1.2rem;
    color: #222
}

.product-form select {
    max-width: none;
    padding: 0.8rem 3rem 0.8rem 1.4rem;
    color: #222;
    border-color: #ebebeb;
    font-size: 1.3rem
}

.product-form .product-variations {
    display: block;
    margin-top: -3px;
    margin-bottom: -3px
}

.product-form.product-qty {
    line-height: 4.5rem
}

.product-form .quantity-minus {
    border-radius: 0.3rem 0 0 0.3rem
}

.product-form .quantity-plus {
    border-radius: 0 0.3rem 0.3rem 0
}

.product-form .input-group {
    margin-right: 1rem
}

.product-form .btn-cart,.product-form .btn-external {
    border: 0;
    flex: 1;
    min-width: 13rem;
    font-size: 1.4rem;
    border-radius: 9px;
    background-color: #0f172a;
    transition: background-color 0.3s;
    color: #fff;
    cursor: pointer;
    max-width: 16.7rem;
    height: 4.5rem;
    line-height: 44px;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    font-weight: 700;
}

.product-form .btn-cart:disabled,.product-form .btn-external:disabled {
    background-color: #e4eaec;
    cursor: not-allowed;
    color: #999
}

.product-form .btn-cart i,.product-form .btn-external i {
    margin-right: 1.8rem;
    margin-top: -6px;
    font-size: 15px;
    line-height: 0;
    vertical-align: middle
}

.product-form .btn-cart i:before,.product-form .btn-external i:before {
    margin: 0
}

.product-form .btn-cart:hover:not(:disabled),.product-form .btn-external:hover:not(:disabled) {
    background-color: #0d6efd;
}

.product-external .product-short-desc {
    color: #ee8204
}

.product-external .product-form button {
    background: #ee8204
}

.stock {
    display: inline-block;
    padding: 4px 2rem;
    margin-bottom: 2rem;
    border-radius: 2px;
    color: #fff;
    font-weight: 600
}

.in-stock {
    background: #FF7C12
}

.out-of-stock {
    background: #ccc
}

.product-single .product-label.label-stock {
    white-space: nowrap;
    background: #ccc
}

.hurryup-bar>p {
    margin-bottom: 0.5rem;
    color: #222;
    background: transparent;
    padding: 0
}

.hurryup-bar .bar {
    position: relative;
    display: block;
    width: 100%;
    max-width: 38rem;
    height: 14px;
    background: #eee;
    border-radius: 10px
}

.hurryup-bar .stock-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: block;
    background: #FF7C12;
    border-radius: 10px
}

.product-form-group {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    flex: 1
}

.product-form-group>* {
    margin-bottom: 1rem
}

.product-form-group .product-variations {
    margin-bottom: 7px
}

.product-form-group tr {
    border-bottom: 1px solid #eee
}

.product-form-group td {
    padding: 2rem 0
}

.product-form-group .item-name {
    padding-left: 2rem;
    color: #222;
    line-height: 1.4
}

.product-form-group .item-price {
    font-weight: 600;
    color: #222;
    padding-left: 4.5rem
}

.size-guide {
    display: inline-flex;
    align-items: center;
    font-weight: 300
}

.size-guide i {
    margin-right: 0.8rem;
    font-size: 2.1rem;
    color: #666
}

.select-box+.size-guide {
    margin-left: 10px
}

.product-variation-price {
    display: none;
    padding-top: 25px
}

.product-variation-price span {
    margin-bottom: 1rem;
    color: #222;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.025em
}

.product-variation-clean {
    display: block;
    position: absolute;
    margin-top: 1rem;
    padding: 0.3em 1em;
    left: 0;
    top: calc(100% - 10px);
    font-size: 1rem;
    line-height: 1.6;
    background: #f4f4f4;
    color: #000
}

.related-products {
    margin-top: 6.5rem
}

@media (min-width: 992px) {
    .pg-vertical .product-thumbs-wrap {
        order:-1;
        max-width: 109px;
        margin: 0 1rem 0 0
    }

    .pg-vertical .product-single-carousel {
        max-width: calc(100% - 119px)
    }

    .pg-vertical .product-thumbs {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0
    }

    .pg-vertical .product-thumb {
        margin: 0 0 1rem
    }

    .pg-vertical .thumb-down,.pg-vertical .thumb-up {
        display: flex;
        width: 100%;
        height: 2.4rem
    }

    .pg-vertical .thumb-up {
        transform: translateY(-100%)
    }

    .pg-vertical .thumb-up i:before {
        content: "ï·"
    }

    .pg-vertical .thumb-down {
        top: auto;
        transform: translateY(100%)
    }

    .pg-vertical .thumb-down i:before {
        content: "ï¸"
    }

    .pg-vertical .product-label-group {
        left: 14rem
    }
}

.product-single.product-sticky-both .p-sticky {
    top: 88px
}

.product-single.product-sticky-both .product-details {
    padding: 0
}

.product-tabs.tab-nav-simple .nav-link {
    font-size: 2rem;
    font-weight: 700;
    text-transform: capitalize;
    color: #222;
    letter-spacing: 0
}

.minipopup-area {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 9999
}

.dark-theme .minipopup-box {
    background-color: #222
}

.dark-theme .minipopup-box .price-box>.product-price,.dark-theme .minipopup-box .product.product-cart .product-name,.dark-theme .minipopup-box .product.product-cart .product-quantity,.dark-theme .minipopup-box .product.product-compare .product-name,.dark-theme .minipopup-box .product.product-compare .product-quantity {
    color: #999
}

.dark-theme .minipopup-box .minipopup-title {
    color: #fff
}

.minipopup-box {
    position: absolute;
    left: -8rem;
    width: 303px;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: opacity 0.3s,left 0.3s ease-out,transform 0.3s;
    z-index: 9999
}

.minipopup-box.show {
    opacity: 1;
    left: 0
}

.minipopup-box.focus {
    transform: scale(0.98) translateY(-100%)
}

.minipopup-box .product.product-cart,.minipopup-box .product.product-compare {
    margin-top: 0
}

.minipopup-box .product.product-cart .product-name,.minipopup-box .product.product-compare .product-name {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 3px;
    color: #000;
    font-weight: 400
}

.minipopup-box .product.product-cart,.minipopup-box .product.product-compare {
    margin-top: 0
}

.minipopup-box .product.product-cart .product-media,.minipopup-box .product.product-compare .product-media {
    margin-right: 1.7rem;
    height: 9rem
}

.minipopup-box .product.product-cart .product-detail,.minipopup-box .product.product-compare .product-detail {
    margin-top: 0.3rem
}

.minipopup-box .product.product-cart .product-name,.minipopup-box .product.product-compare .product-name {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
    color: #000;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.025em
}

.minipopup-box .product.product-cart .product-name:hover,.minipopup-box .product.product-compare .product-name:hover {
    color: #0f172a
}

.minipopup-box .product.product-cart .product-price,.minipopup-box .product.product-compare .product-price {
    margin-bottom: -0.2rem;
    font-size: 1.3rem
}

.minipopup-box .product.product-cart .product-quantity,.minipopup-box .product.product-compare .product-quantity {
    margin-right: 0.7rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222
}

.minipopup-box .product.product-cart .product-quantity:after,.minipopup-box .product.product-compare .product-quantity:after {
    margin: 0 0 -0.2rem 0.7rem;
    font-size: 1.2rem
}

.minipopup-box .product.product-cart.product-purchased .purchased-title,.minipopup-box .product.product-compare.product-purchased .purchased-title {
    margin-bottom: 1.9rem
}

.minipopup-box .product.product-cart.product-purchased .product-detail,.minipopup-box .product.product-compare.product-purchased .product-detail {
    margin-top: 0.1rem
}

.minipopup-box .product.product-cart.product-purchased .product-name,.minipopup-box .product.product-compare.product-purchased .product-name {
    margin-bottom: 1.2rem
}

.minipopup-box img {
    max-width: 9rem;
    max-height: 9rem
}

.minipopup-box .ratings-container {
    margin-bottom: 0
}

.minipopup-box .product-price {
    color: #0f172a;
    margin-bottom: 3px
}

.minipopup-box .action-group {
    justify-content: space-around;
    margin-top: 2rem
}

.minipopup-box .btn.btn-sm {
    padding: 0.92em 2.07em;
    font-weight: 600;
    letter-spacing: -0.025em;
    border-width: 1px
}

.minipopup-box .btn.btn-outline {
    margin-right: 0.7rem;
    padding: 0.92em 2.2em
}

.minipopup-title {
    margin-bottom: 1.5rem;
    color: #222;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.035em;
    line-height: 1
}

.minipopup-title .btn {
    margin-left: 1rem
}

.purchased-time {
    color: #0f172a;
    font-size: 1.2rem
}

@media (max-width: 479px) {
    .minipopup-area {
        left:9px
    }
}

.overlay,.overlay-visible {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    transition: padding 0.3s ease-out,background-color 0.3s,opacity 0.3s
}

.overlay {
    padding-top: 10rem;
    background: rgba(0,0,0,0.3);
    opacity: 0
}

a>.overlay {
    cursor: pointer
}

figure:hover .overlay {
    padding-top: 0;
    opacity: 1
}

.overlay.social-links {
    flex-direction: row
}

.overlay .social-links {
    justify-content: center
}

.overlay a:hover {
    color: #fff;
    text-decoration: underline
}

.overlay a.social-link {
    border-color: #fff
}

.overlay .social-link:hover {
    color: #fff;
    text-decoration: none
}

figure:hover .overlay-visible {
    background: rgba(49,191,174,0.9);
    padding-bottom: 9rem
}

.overlay-transparent {
    background: transparent
}

.overlay-dark,.overlay-effect1,.overlay-effect2,.overlay-effect3,.overlay-effect4,.overlay-light {
    overflow: hidden
}

.overlay-dark figure,.overlay-effect1 figure,.overlay-effect2 figure,.overlay-effect3 figure,.overlay-effect4 figure,.overlay-light figure {
    overflow: hidden
}

.overlay-dark .banner,.overlay-dark figure,.overlay-effect1 .banner,.overlay-effect1 figure,.overlay-effect2 .banner,.overlay-effect2 figure,.overlay-effect3 .banner,.overlay-effect3 figure,.overlay-effect4 .banner,.overlay-effect4 figure,.overlay-light .banner,.overlay-light figure {
    position: relative
}

.overlay-dark.banner:after,.overlay-dark figure:after,.overlay-dark figure>a:after,.overlay-effect1 figure:after,.overlay-effect1 figure>a:after,.overlay-effect1.banner:after,.overlay-effect2 figure:after,.overlay-effect2 figure>a:after,.overlay-effect2.banner:after,.overlay-effect3 figure:after,.overlay-effect3 figure>a:after,.overlay-effect3.banner:after,.overlay-effect4 figure:after,.overlay-effect4 figure>a:after,.overlay-effect4.banner:after,.overlay-light.banner:after,.overlay-light figure:after,.overlay-light figure>a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #222;
    opacity: 0;
    transition: opacity 0.3s,background 0.3s,transform 0.3s
}

.overlay-dark.banner:hover:after,.overlay-dark:hover figure:after,.overlay-dark:hover figure>a:after,.overlay-effect1.banner:hover:after,.overlay-effect1:hover figure:after,.overlay-effect1:hover figure>a:after,.overlay-effect2.banner:hover:after,.overlay-effect2:hover figure:after,.overlay-effect2:hover figure>a:after,.overlay-effect3.banner:hover:after,.overlay-effect3:hover figure:after,.overlay-effect3:hover figure>a:after,.overlay-effect4.banner:hover:after,.overlay-effect4:hover figure:after,.overlay-effect4:hover figure>a:after,.overlay-light.banner:hover:after,.overlay-light:hover figure:after,.overlay-light:hover figure>a:after {
    opacity: 0.2
}

.overlay-dark.banner-fixed:after,.overlay-dark.post>figure:after,.overlay-effect1.banner-fixed:after,.overlay-effect1.post>figure:after,.overlay-effect2.banner-fixed:after,.overlay-effect2.post>figure:after,.overlay-effect3.banner-fixed:after,.overlay-effect3.post>figure:after,.overlay-effect4.banner-fixed:after,.overlay-effect4.post>figure:after,.overlay-light.banner-fixed:after,.overlay-light.post>figure:after {
    content: none
}

.overlay-dark.post>figure>a:after,.overlay-effect1.post>figure>a:after,.overlay-effect2.post>figure>a:after,.overlay-effect3.post>figure>a:after,.overlay-effect4.post>figure>a:after,.overlay-light.post>figure>a:after {
    z-index: 1
}

.overlay-effect2 figure:before,.overlay-effect2 figure>a:before,.overlay-effect2.banner:before,.overlay-effect4 figure:before,.overlay-effect4 figure>a:before,.overlay-effect4.banner:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0.2;
    transition: opacity 0.5s ease,transform 0.5s ease
}

.overlay-effect2.banner-fixed:before,.overlay-effect2.post>figure:before,.overlay-effect4.banner-fixed:before,.overlay-effect4.post>figure:before {
    content: none
}

.banner.overlay-light figure:after,.overlay-light figure>a:after {
    background: #ccc
}

.banner.overlay-dark figure:after,.overlay-dark figure>a:after {
    background: #222
}

.overlay-zoom {
    overflow: hidden
}

.overlay-zoom figure {
    overflow: hidden
}

.overlay-zoom img {
    transition: transform 0.3s
}

.overlay-zoom:hover img {
    transform: scale(1.08)
}

.overlay-effect1:hover:after,.overlay-effect1:hover figure:after,.overlay-effect1:hover figure>a:after {
    transform: scale(1,1);
    visibility: visible;
    opacity: 0;
    transition: transform 0.5s linear,opacity 0.5s linear
}

.overlay-effect1 figure:after,.overlay-effect1 figure>a:after {
    transform: scale(0,1);
    opacity: 0.4;
    background-color: #fff;
    visibility: hidden
}

.overlay-effect2:hover:after,.overlay-effect2:hover:before,.overlay-effect2:hover figure:after,.overlay-effect2:hover figure:before,.overlay-effect2:hover figure>a:after,.overlay-effect2:hover figure>a:before {
    opacity: 0;
    transform: none
}

.overlay-effect2 figure:after,.overlay-effect2 figure>a:after {
    transform: translateX(-100%);
    background-color: #fff;
    opacity: 0.2;
    transition: transform 0.9s ease,opacity 0.9s ease
}

.overlay-effect2 figure:before,.overlay-effect2 figure>a:before {
    transform: translateX(100%);
    transition: transform 0.9s ease,opacity 0.9s ease
}

.overlay-effect3:hover:after,.overlay-effect3:hover figure:after,.overlay-effect3:hover figure>a:after {
    top: 100%;
    left: -100%;
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,200%,0)
}

.overlay-effect3 figure:after,.overlay-effect3 figure>a:after {
    left: 50%;
    width: 120%;
    height: 60px;
    background-color: #fff;
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
    transition: 0.5s linear,top 0.5s linear,left 0.5s linear
}

.overlay-effect4:hover:after,.overlay-effect4:hover:before,.overlay-effect4:hover figure:after,.overlay-effect4:hover figure:before,.overlay-effect4:hover figure>a:after,.overlay-effect4:hover figure>a:before {
    transform: scale(1,1)
}

.overlay-effect4 figure:after,.overlay-effect4 figure>a:after {
    transform: scale(0,1);
    background-color: #fff
}

.overlay-effect4 figure:before,.overlay-effect4 figure>a:before {
    transform: scale(1,0);
    transition: transform 0.3s
}

.overlay-filter img {
    transition: filter 0.4s
}

.overlay-blur:hover img {
    filter: blur(4px)
}

.overlay-brightness:hover img {
    filter: brightness(1.5)
}

.overlay-contrast:hover img {
    filter: contrast(1.5)
}

.overlay-grayscale:hover img {
    filter: grayscale(1)
}

.overlay-hue:hover img {
    filter: hue-rotate(270deg)
}

.overlay-opacity:hover img {
    filter: opacity(0.5)
}

.overlay-saturate:hover img {
    filter: saturate(3)
}

.overlay-sepia:hover img {
    filter: sepia(0.5)
}

.particle-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.snowfall {
    background-image: url(../images/effects/s1.png),url(../images/effects/s2.png),url(../images/effects/s3.png);
    animation: snow 10s linear infinite;
    z-index: 1
}

@keyframes snow {
    0% {
        background-position: 0px 0px,0px 0px,0px 0px
    }

    50% {
        background-position: 500px 500px,100px 300px,-200px 250px
    }

    to {
        background-position: 400px 800px,300px 600px,-200px 400px
    }
}

.sparkle {
    background-image: url(../images/effects/sparkle1.png),url(../images/effects/sparkle2.png);
    animation: sparkle 60s linear infinite
}

@keyframes sparkle {
    0% {
        background-position: 0px 0px,0px 0px,0px 0px
    }

    to {
        background-position: -500px -1000px,-400px -400px,300px 300px
    }
}

@keyframes kenBurnsToRight {
    0% {
        transform: scale(1.2)
    }

    to {
        transform: scale(1)
    }
}

@keyframes kenBurnsToLeft {
    0% {
        transform: scale(1.2)
    }

    to {
        transform: scale(1)
    }
}

.kenBurnsToRight {
    animation-name: kenBurnsToRight;
    animation-timing-function: linear;
    animation-fill-mode: both;
    transform-origin: right
}

.kenBurnsToLeft {
    animation-name: kenBurnsToLeft;
    animation-timing-function: linear;
    animation-fill-mode: both;
    transform-origin: left
}

.kenBurnsToLeftTop {
    animation-name: kenBurnsToLeft;
    animation-timing-function: linear;
    animation-fill-mode: both;
    transform-origin: left top
}

.kenBurnsToRightTop {
    animation-name: kenBurnsToRight;
    animation-timing-function: linear;
    animation-fill-mode: both;
    transform-origin: right top
}

.page-content.with-sidebar {
    padding-bottom: 10rem;
    overflow: hidden
}

.right-sidebar-active .right-sidebar .sidebar-close,.right-sidebar-active .right-sidebar .sidebar-overlay,.sidebar-active .sidebar .sidebar-close,.sidebar-active .sidebar .sidebar-overlay,.top-sidebar-active .top-sidebar .sidebar-close,.top-sidebar-active .top-sidebar .sidebar-overlay {
    visibility: visible;
    opacity: 1
}

.right-sidebar-active .right-sidebar .sidebar-content,.sidebar-active .sidebar .sidebar-content,.top-sidebar-active .top-sidebar .sidebar-content {
    transform: translateX(0);
    opacity: 1
}

.top-sidebar-active .category-sidebar {
    display: none
}

.sidebar-active .page-wrapper {
    margin-left: 250px;
    margin-right: -250px
}

.right-sidebar-active .page-wrapper {
    margin-left: -250px;
    margin-right: 250px
}

.sidebar-content,.sidebar-overlay,.sidebar-toggle {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1200
}

.sidebar-overlay {
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.8);
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.4s,opacity 0.4s
}

.sidebar-close {
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.4s,opacity 0.4s
}

.sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 160px;
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    color: #fff;
    background-color: rgba(28,26,26,0.8)
}

.sidebar-close {
    position: fixed;
    margin: 0;
    left: calc(100vw - 52px);
    top: 12px;
    font-size: 3.5rem;
    color: #ccc;
    z-index: 1201
}

.sidebar-close:hover {
    color: #ccc
}

.sidebar-content {
    bottom: 0;
    width: 30rem;
    padding: 2rem;
    transform: translateX(-100%);
    overflow: auto;
    background-color: #fff;
    opacity: 0;
    line-height: 1.3;
    transition: transform 0.4s,opacity 0.4s
}

.sidebar-content .widget {
    border-top: 3px solid #eee;
    margin-top: 100px;
}

.sidebar-content .widget-body {
    margin-bottom: 1.8rem;
    opacity: 1;
    transition: opacity 0.3s
}

.sidebar-content .sidebar-close {
    display: flex;
    position: static;
    align-items: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1
}

.sidebar-content .d-icon-times {
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 0.6rem
}

.sidebar-content .widget.price-with-count .filter-items>li {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.sidebar-content .btn-filter {
    padding: 0.86em 2em;
    border-radius: 2px
}

.sidebar-content .btn-filter:active,.sidebar-content .btn-filter:focus,.sidebar-content .btn-filter:hover {
    background-color: #0f172a;
    border-color: #0f172a
}

.right-sidebar {
    order: 2
}

.right-sidebar .sidebar-toggle {
    left: auto;
    right: 0
}

.right-sidebar .sidebar-close {
    left: 50px
}

.right-sidebar .sidebar-content {
    transform: translateX(100%);
    left: auto;
    right: 0
}

@media (max-width: 991px) {
    .right-sidebar .sidebar-close {
        left:20px
    }
}

@media (min-width: 992px) {
    .sidebar-fixed .sidebar-close,.sidebar-fixed .sidebar-overlay,.sidebar-fixed .sidebar-toggle {
        display:none
    }

    .sidebar-fixed .sidebar-content {
        position: relative;
        overflow: visible;
        padding: 0;
        opacity: 1;
        z-index: 22
    }

    .sidebar-fixed .sidebar-content {
        width: auto;
        transform: none
    }
}

.right-sidebar .sidebar-content::-webkit-scrollbar {
    width: 0
}

.tag {
    display: inline-block;
    padding: 0.6rem 1.3rem;
    margin: 0.5rem 1rem 0.5rem 0;
    border: 1px solid #ccc;
    font-size: 1.2rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
    transition: color 0.3s,border-color 0.3s
}

.tag:hover {
    color: #0f172a;
    border-color: #0f172a
}

.sidebar-content .form-control {
    border-color: #ccc;
    border-radius: 0.3rem
}

.widget-collapsible>.widget-title.collapsed {
    padding-bottom: 2.7rem
}

.widget-collapsible>.widget-title.collapsed .widget-collapsible>.widget-title {
    padding-bottom: 0
}

.widget-collapsible .toggle-btn {
    display: block;
    position: absolute;
    top: 36px;
    right: 12px;
    padding: 0;
    width: 10px;
    opacity: 1
}

.widget-collapsible .toggle-btn:after,.widget-collapsible .toggle-btn:before {
    content: "";
    position: absolute;
    border-top: 2px solid #666;
    width: 10px;
    transition: transform 0.3s
}

.widget-collapsible>.collapsed .toggle-btn:before {
    transform: rotate(90deg)
}

.widget-collapsible>.collapsed .toggle-btn:after {
    transform: rotate(180deg)
}

.widget-collapsible .collapsed~.widget-body {
    opacity: 0.1
}

.widget-collapsible p {
    margin-bottom: 0;
    color: #aaa;
    line-height: 1.86
}

.toolbox-wrap .widget-title,.widget-collapsible .widget-title {
    position: relative;
    cursor: pointer;
    margin: 0;
    padding: 2.6rem 0.3rem 1.8rem;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-transform: none;
    border: none;
    transition: padding 0.3s
}

.filter-items.search-ul li {
    padding: 13.5px 3px
}

.filter-items li {
    padding: 13px 3px 13px 30px;
    font-size: 1.3rem;
    color: #222
}

.filter-items>li:not(:last-child) {
    border-bottom: 1px solid #eee
}

.filter-items a {
    position: relative;
    display: block;
    font-size: 16px;
}

.filter-items a:hover {
    color: #0f172a
}

.filter-items .active>a:before {
    content: "ï€Œ";
    color: #fff;
    background-color: #222;
    border-color: #222
}

.filter-items.search-ul a:before {
    content: none
}

.filter-items .children li {
    padding: 5.5px 0
}

.filter-items li span {
    margin-left: 0.5rem;
    color: #aaa
}

.filter-items .with-ul>a>i {
    content: "ï¨";
    position: absolute;
    top: 50%;
    right: 0.7rem;
    line-height: 0;
    margin: -1.3rem -3px 0 0;
    padding: 1.2rem 5px;
    font-size: 1.2rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    transition: transform 0.3s
}

.filter-items .show>a {
    color: #0f172a
}

.filter-items .show>a i {
    transform: rotate(-180deg)
}

.filter-items ul {
    display: none;
    position: relative;
    margin: 1rem 0 -0.5rem;
    padding-left: 1.3rem
}

.filter-items ul:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 4px;
    bottom: 3px;
    border-left: 1px solid #eee
}

.filter-items .color {
    top: 50%;
    display: inline-block;
    margin-right: 0.8rem;
    margin-top: -4.5px;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%
}

.widget-vendor-info li span {
    display: inline-block;
    margin-left: 0
}

.widget-vendor-info li span:first-child {
    min-width: 10.5rem;
    padding-right: 1rem;
    color: #333
}

.widget-vendor-info li span.ratings-container {
    margin-bottom: 0;
    padding-right: 0;
    font-size: 1.3rem
}

.widget-vendor-info .seller-name .details {
    color: #222
}

.widget-vendor-info .filter-items li {
    display: flex;
    padding: 14px 3px 13px 0px
}

.widget-contact-vendor .form-control {
    min-height: 4.1rem;
    padding: 1.2rem 2rem;
    border: 1px solid #e1e1e1;
    line-height: 1.5;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 300;
    color: #999;
    transition: color 0.3s,border-color 0.3s
}

.widget-contact-vendor .form-control:focus {
    border-color: #222
}

.widget-contact-vendor .form-control:not(:last-child) {
    margin-bottom: 1rem
}

.widget-contact-vendor .btn {
    margin: 0.8rem 0 1.2rem;
    padding: 0.8em 1.65em;
    letter-spacing: -0.025em
}

.instagram {
    position: relative;
    overflow: hidden;
    border-radius: 0.3rem
}

.instagram a {
    display: block;
    position: relative;
    height: 100%
}

.instagram a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1
}

.instagram a:after {
    content: "ï…­";
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) rotate(90deg) scale(2);
    font-size: 3rem;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s,transform 0.3s;
    z-index: 1
}

.instagram img {
    display: block;
    transition: transform 0.3s;
    width: 100%;
    height: auto
}

.instagram:hover a:before {
    opacity: 0.5
}

.instagram:hover a:after {
    opacity: 1;
    transform: translate(-50%,-50%) rotate(0deg) scale(1)
}

.instagram:hover img {
    transform: scale(1.15)
}

.instagram-info .instagram-content {
    position: absolute;
    left: 3rem;
    bottom: 3rem;
    font-size: 1.4rem;
    letter-spacing: 0;
    color: #fff;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s
}

.instagram-info .instagram-content i {
    display: inline-block;
    margin-right: 0.8rem;
    vertical-align: middle;
    font-size: 1.6rem
}

.instagram-info .instagram-content .d-icon-comments:before {
    font-size: 1em
}

.instagram-info .instagram-content a {
    display: inline-block;
    color: #fff
}

.instagram-info .instagram-content a:not(:last-child) {
    margin-right: 2rem
}

.instagram-info .instagram-content a:before {
    content: none
}

.instagram-info:hover .instagram-content {
    opacity: 1
}

.accordion {
    overflow: hidden
}

.accordion .collapsed,.accordion .expanding {
    display: none
}

.card-header {
    text-transform: capitalize;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    color: #222
}

.card-header a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 1.8rem 0.5rem
}

.card-header a:hover {
    color: #0f172a
}

.card-header a:hover span {
    color: #0f172a
}

.card-header .collapse {
    color: #0f172a
}

.card-body {
    padding: 1.3rem 0.5rem
}

.card {
    background-color: transparent
}

.accordion-simple .card {
    border-top: 1px solid #e1e1e1
}

.accordion-gutter-md .card:not(:last-child) {
    margin-bottom: 10px
}

.accordion-gutter-sm .card:not(:last-child) {
    margin-bottom: 2px
}

.accordion-plus .expand:after {
    content: "ï‹ƒ"
}

.accordion-plus .collapse:after {
    content: "ïŠ"
}

.accordion-boxed .card-body,.accordion-boxed .card-header a {
    padding-left: 2rem;
    padding-right: 2rem
}

.accordion-boxed .card-header a:after {
    right: 2.3rem
}

.accordion-border .card {
    border-width: 1px 1px 0;
    border-style: solid;
    border-color: #e1e1e1
}

.accordion-border .card:last-child {
    border-bottom: 1px solid #e1e1e1
}

.accordion-background .card {
    background-color: #fff;
    border-color: #fff
}

.accordion-dropshadow {
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.12)
}

.accordion-dropshadow .card {
    background-color: #fff;
    border-color: #fff
}

.accordion-icon .card-header i {
    margin-right: 1.5rem;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 0
}

.accordion-card-bg .card {
    border: 1px solid #f2f3f5
}

.accordion-card-bg .card-header a {
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
    background-color: #f2f3f5
}

.accordion-card-bg.accordion-primary .card {
    border: 0;
    background-color: #f2f3f5
}

.accordion-card-bg.accordion-primary .card-header a {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
    background-color: #37c;
    color: #fff
}

.accordion-card-bg.accordion-primary .card-header a:after {
    color: #fff
}

.accordion-color .collapse {
    color: #0f172a
}

.accordion-card-border .card {
    border: 1px solid #dae1e5
}


.call {
    display: flex;
    align-items: center;
    letter-spacing: -0.1px
}

.call span {
    font-weight: inherit;
    text-transform: capitalize;
    margin-right: 0.3rem;
    cursor: pointer;
}

.call i+span {
    margin-left: 0;
}

.call i {
    margin: 0 0.5rem 0 0;
    font-size: 1.5rem;
    cursor: pointer
}

.call:hover {
    color: #0f172a
}

.wishlist {
    margin-right: 1.5rem
}

.wishlist i {
    font-size: 2.8rem;
    cursor: pointer
}

.wishlist:hover {
    color: #0f172a
}

@keyframes fixedTop {
    0% {
        margin-top: -60px
    }

    to {
        margin-top: 0
    }
}

@keyframes fixedBottom {
    0% {
        transform: translateY(100%);
        transform-origin: center top 0px
    }

    to {
        transform: translateY(0)
    }
}

.sticky-header.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
    box-shadow: 0 2px 27px rgba(0,0,0,0.1);
    background-color: #ffffff;
    z-index: 1100;
    animation: fixedTop 0.4s;
    z-index: 999 !IMPORTANT;
}

@media (max-width: 991px) {
    .sticky-wrapper {
        height:auto!important
    }
}

.mobile-menu-toggle {
    display: none;
    margin-right: 2rem;
    font-size: 2.5rem;
    /* color: #fff; */
}

.mobile-menu-toggle.menu-bar:after,.mobile-menu-toggle.menu-bar:before {
    content: "";
    display: block;
    width: 100%
}

.mobile-menu-toggle.menu-bar:before {
    height: 11px;
    border-top: 2px solid;
    border-bottom: 2px solid
}

.mobile-menu-toggle.menu-bar:after {
    height: 9px;
    border-bottom: 2px solid
}

@media (max-width: 1199px) {
    .main-nav .menu>li {
        margin-right:1.5rem
    }

    .header-middle .logo {
        margin-right: 2rem
    }
}

@media (max-width: 991px) {
    .header .main-nav {
        display:none
    }

    .header-top .header-left {
        margin-right: 2rem
    }

    .header-middle .header-right {
        justify-content: flex-end;
    }

    .header-middle .header-right .divider {
        display: none
    }

    .header-middle .header-center {
        margin-left: auto;
        margin-right: auto
    }

    .header-middle .compare,.header-middle .icon-box {
        margin-right: 1.5rem
    }

    .mobile-menu-toggle {
        display: block
    }
}

@media (max-width: 767px) {
    .header-middle .mobile-search {
        display:block
    }

    .header-middle .header-search {
        display: none
    }

    .header-top .delimiter,.header-top .divider,.header-top .login-link,.header-top .register-link {
        display: none
    }
}

@media (max-width: 480px) {
    .header-top .header-left {
        position:relative;
        overflow: hidden
    }

    .header-middle .logo {
        margin-right: 0
    }

    .header-middle .divider,.header-middle .wishlist {
        display: none
    }

    .header-middle .icon-box {
        margin-right: 1rem
    }

    .welcome-msg {
        transform: translateX(0);
        animation: 6s linear 2s 1 show_msg_first,12s linear 8s infinite show_msg
    }
}

@keyframes show_msg_first {
    0% {
        transform: translateX(0%)
    }

    to {
        transform: translateX(-100%)
    }
}

@keyframes show_msg {
    0% {
        transform: translateX(100%)
    }

    to {
        transform: translateX(-100%)
    }
}

.label-down {
    display: flex;
    flex-direction: column;
    align-items: center
}

.label-down i {
    display: inline-block
}

.label-down span {
    display: block
}

.label-down i+span {
    margin-top: 0.7rem
}

.label-block span {
    display: block
}

.label-block .cart-name {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: capitalize
}

.label-block .cart-name :after {
    content: none
}

.label-block .cart-price {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.05em
}

.label-block.cart-toggle i {
    font-size: 3rem
}

.mobile-link {
    display: block;
    margin-right: 0;
    margin-bottom: -3px
}

.mobile-link i {
    font-size: 2.4rem
}

.mobile-link+.mobile-link {
    margin-left: 2rem
}

.mobile-link:hover {
    color: #0f172a
}

@media (min-width: 768px) {
    .mobile-link {
        display:none
    }
}


.cart-dropdown>a {
    /* padding: 0.7rem 0; */
}

.cart-dropdown .cart-toggle {
    /* padding: 0.6rem 0 0.7rem; */
}

.cart-dropdown .cart-toggle:after {
    content: none
}

.cart-dropdown .cart-label {
    display: block;
    cursor: pointer;
    margin: 0 1rem 0 0;
    font-weight: inherit;
    text-transform: uppercase;
    letter-spacing: -0.025em
}

.cart-dropdown .minicart-icon {
    display: inline-block;
    font-size: 1.2rem;
    color: #0f172a
}

.cart-dropdown .minicart-icon2 {
    display: inline-block;
    font-size: 1.2rem;
    color: #0f172a
}

.cart-dropdown .cart-count {
    display: inline-block;
    transition: color 0.4s;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 25px;
    color: #0f172a
}

.cart-dropdown .cart-total {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2.1rem;
    padding: 1.7rem 0 1.5rem;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: #edeef0;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: normal
}

.cart-dropdown .cart-total label {
    margin: 0 auto 0 0.3rem;
    line-height: inherit;
    color: #666;
    font-weight: 400;
    font-size: 1.6rem;
}

.cart-dropdown .cart-total .price {
    font-weight: 700;
    font-size: 1.6rem;
    color: #222
}

.cart-dropdown .cart-action {
    column-gap: 10px;
    text-align: center
}

.cart-dropdown .cart-action .btn {
    display: flex;
    justify-content: center;
    border-radius: 3px;
    padding: 0.9em 2em;
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 700
}

.cart-dropdown .cart-action .btn.btn-link {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 0;
    border-bottom: 2px solid #0f172a;
    border-radius: 0;
    text-transform: capitalize;
    line-height: 1.3;
    text-decoration: none;
}

.cart-dropdown .cart-action .btn.btn-link:active,.cart-dropdown .cart-action .btn.btn-link:focus,.cart-dropdown .cart-action .btn.btn-link:hover {
    color: #0f172a
}

.cart-dropdown i {
    font-size: 2.4rem
}

.cart-dropdown:hover .minicart-icon {
    background: #0f172a
}

.cart-dropdown:hover .minicart-icon:before {
    transform: rotateY(180deg)
}

.cart-dropdown:hover .cart-count {
    color: #fff
}

.cart-dropdown.cart-dropdown-white .cart-count,.cart-dropdown.cart-dropdown-white .cart-label,.cart-dropdown.cart-dropdown-white .cart-price {
    color: #fff
}

.cart-dropdown.cart-dropdown-white .minicart-icon {
    border-color: #fff
}

.cart-dropdown.cart-dropdown-white:hover .minicart-icon {
    background-color: #fff
}

.cart-dropdown.cart-dropdown-white:hover .cart-count {
    color: #0f172a
}

.cart-dropdown.type2 .cart-toggle {
    align-items: center
}

.cart-dropdown.type2:hover {
    color: #0f172a
}

.cart-dropdown.type2 .cart-count {
    position: absolute;
    right: -8px;
    top: 3px;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: center;
    border-radius: 50%;
    background-color: #0f172a;
    color: #fff;
    z-index: 1
}

.cart-dropdown.type2 .label-block .cart-count {
    width: 1.9rem;
    height: 1.9rem;
    font-size: 1.1rem;
    line-height: 1.8rem
}

.cart-dropdown.type3 .cart-toggle {
    /* padding: 1.5rem 1.5rem 1.5rem 1.5rem; */
    /* background-color: #0f172a; */
    /* color: rgba(255,255,255,0.8); */
    transition: 0.3s;
    margin: 0;
}

.cart-dropdown.type3 .cart-toggle i {
    font-size: 1.5rem;
    margin-right: 7px
}

.dark-theme .cart-dropdown .cart-total {
    border-color: #333
}

.compare-dropdown .compare-toggle:after {
    content: none
}

.compare-dropdown .compare-btn {
    display: flex;
    justify-content: center;
    border-radius: 3px;
    padding: 0.9em 2em;
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 700
}

.wishlist-dropdown .wishlist-toggle:after {
    content: none
}

.wishlist-dropdown .wishlist-btn {
    display: flex;
    justify-content: center;
    border-radius: 3px;
    padding: 0.9em 2em;
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 700
}

.header-top .login-dropdown {
    margin-left: 0
}

.off-canvas .dropdown-box {
    position: fixed;
    top: 0;
    right: -34rem;
    max-width: 34rem;
    width: 100%;
    height: 100vh;
    min-width: auto;
    padding: 2.9rem 3rem;
    opacity: 1;
    visibility: visible;
    transition: right 0.3s;
    transform: none;
    z-index: 2999;
    box-shadow: none;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #f9fbed;
}

.off-canvas .dropdown-box .login-popup {
    padding: 0
}

.off-canvas .canvas-overlay {
    position: fixed;
    left: 0;
    width: 100vw;
    top: -10vh;
    height: 120vh;
    background: rgba(0,0,0,0.3);
    z-index: 2998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s
}

.off-canvas .canvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 1.3rem
}

.off-canvas .canvas-title {
    margin-bottom: 0;
    font-size: 2.26rem;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: -0.018em
}

.off-canvas .btn-close {
    font-size: 12px;
    font-weight: 600;
    color: #999
}

.off-canvas .btn-close:active,.off-canvas .btn-close:focus,.off-canvas .btn-close:hover {
    color: #0f172a
}

.off-canvas .btn-close i {
    margin-right: 0;
    font-size: 1.9rem
}

.off-canvas .product-cart,.off-canvas .product-compare,.off-canvas .product-wishlist {
    margin-top: 2rem
}

.off-canvas.opened .dropdown-box {
    right: 0
}

.off-canvas.opened .canvas-overlay {
    opacity: 1;
    visibility: visible
}

.off-canvas:hover .dropdown-box {
    top: 0
}

@media (max-width: 479px) {
    .off-canvas .dropdown-box {
        max-width:30.4rem
    }
}

.product.product-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.3rem;
    border-bottom: 1px solid #edeef0
}

.product.product-cart-header a,.product.product-cart-header span {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1;
    color: #222529
}

.product.product-cart-header a {
    padding: 0;
    padding-bottom: 0;
    color: #222529;
    line-height: 1
}

.product.product-cart-header a:hover {
    text-decoration: underline
}

.product.product-cart,.product.product-compare,.product.product-wishlist {
    display: flex;
    align-items: center;
    font-size: 1.3rem
}

.product.product-cart:not(:first-child),.product.product-compare:not(:first-child),.product.product-wishlist:not(:first-child) {
    margin-top: 2rem
}

.product.product-cart .product-media,.product.product-compare .product-media,.product.product-wishlist .product-media {
    position: static;
    width: 8rem;
    margin-right: 2.5rem
}

.product.product-cart .product-media a,.product.product-compare .product-media a,.product.product-wishlist .product-media a {
    display: block;
    height: 100%;
    padding: 0
}

.product.product-cart .product-media img,.product.product-compare .product-media img,.product.product-wishlist .product-media img {
    height: 100%
}

.product.product-cart .product-detail,.product.product-compare .product-detail,.product.product-wishlist .product-detail {
    flex: 1;
    margin: 0 1rem 0rem 0
}

.product.product-cart .product-name,.product.product-compare .product-name,.product.product-wishlist .product-name {
    white-space: normal;
    padding: 0;
    margin-bottom: 0.9rem;
    margin-right: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.34;
    letter-spacing: -0.35px;
    color: #666
}

.product.product-cart .product-name:hover,.product.product-compare .product-name:hover,.product.product-wishlist .product-name:hover {
    color: #0f172a
}

.product.product-cart .price-box,.product.product-compare .price-box,.product.product-wishlist .price-box {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    line-height: 1
}

.product.product-cart .product-price,.product.product-compare .product-price,.product.product-wishlist .product-price {
    font-size: 1.6rem;
    letter-spacing: -0.35px
}

.product.product-cart .product-quantity,.product.product-compare .product-quantity,.product.product-wishlist .product-quantity {
    align-items: center;
    display: flex;
    margin-right: 1rem;
    font-weight: 400
}

.product.product-cart .product-quantity:after,.product.product-compare .product-quantity:after,.product.product-wishlist .product-quantity:after {
    margin-left: 1rem;
    content: "X";
    text-transform: none;
    line-height: 0;
    font-size: 1.5rem
}

.product.product-cart .product-price,.product.product-compare .product-price,.product.product-wishlist .product-price {
    margin: 0;
    color: #222
}

.product.product-cart .btn-close,.product.product-compare .btn-close,.product.product-wishlist .btn-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 2.2rem;
    height: 2.2rem;
    right: -0.4rem;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: #fff;
    color: #222;
    font-size: 1.2rem;
    border: 1px solid #ccc
}

.product.product-cart .btn-close i,.product.product-compare .btn-close i,.product.product-wishlist .btn-close i {
    margin-right: 4px;
    margin-top: 0px;
    font-size: 1.2rem
}

.product.product-cart .btn-close:hover,.product.product-compare .btn-close:hover,.product.product-wishlist .btn-close:hover {
    color: #0f172a;
    border-color: #0f172a
}

.product.product-cart:last-child,.product.product-compare:last-child,.product.product-wishlist:last-child {
    margin-bottom: 0
}

@media (max-width: 991px) {
    .cart-dropdown .cart-label {
        display:none
    }
}

@media (max-width: 575px) {
    .cart-dropdown .product .product-media,.compare-dropdown .product .product-media {
        margin-right:1rem
    }

    .cart-dropdown .dropdown-box,.compare-dropdown .dropdown-box {
        min-width: 31rem
    }

    .cart-dropdown .cart-total,.compare-dropdown .cart-total {
        font-size: 1.3rem
    }
}

.category-dropdown>a {
    padding: 1.7rem 1.7rem;
    background: #0f172a
}

.category-dropdown>a:after {
    content: none
}

.category-dropdown>a i {
    font-size: 1.8rem
}

.category-dropdown>a span {
    margin-left: 1rem
}

.category-dropdown .dropdown-box {
    padding: 0;
    left: 0;
    min-width: 12rem;
    box-shadow: none;
    background-color: #f4f4f4;
    transition: opacity 0.2s,z-index 0s,transform 0.2s ease-out;
    visibility: hidden;
    top: 100%
}

.category-dropdown:after,.category-dropdown:before {
    left: 25px
}

.category-dropdown:after {
    border-bottom-color: #f4f4f4;
    visibility: hidden;
    top: calc(100% - 20px)
}

.category-dropdown.menu-fixed .dropdown-box,.category-dropdown.menu-fixed:after {
    visibility: hidden
}

.category-dropdown.dropdown.show .dropdown-box {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transform: translate3d(0,0,0);
    transition: opacity 0.5s,z-index 0s,transform 0s
}

.category-dropdown.dropdown.show .dropdown-box,.category-dropdown.dropdown.show:after {
    visibility: visible
}

.category-dropdown.dropdown.show:after {
    transform: translate3d(-50%,0,0)
}

.category-dropdown.has-border:after {
    border-bottom-color: #fff
}

.category-dropdown.has-border:after,.category-dropdown.has-border:before {
    content: "";
    position: absolute;
    z-index: 1000;
    top: -9999px;
    transform: translateX(-50%);
    border: 11px solid transparent;
    border-bottom: 11px solid #e1e1e1;
    transition: opacity 0.4s ease;
    visibility: hidden;
    opacity: 0;
    cursor: pointer
}

.category-dropdown.has-border .dropdown-box {
    background-color: #fff;
    border: 1px solid #e1e1e1
}

.category-dropdown.has-border.menu-fixed:before {
    visibility: visible;
    opacity: 1
}

.sticky-header:not(.fixed) .category-dropdown.menu-fixed:after {
    top: 100%;
    transform: translate3d(-50%,0,0)
}

.sticky-header:not(.fixed) .category-dropdown.menu-fixed .dropdown-box {
    top: calc(100% + 20px);
    transform: none
}

.sticky-header:not(.fixed) .category-dropdown.menu-fixed .dropdown-box,.sticky-header:not(.fixed) .category-dropdown.menu-fixed:after {
    visibility: visible;
    opacity: 1
}

.sticky-header:not(.fixed) .category-dropdown.menu-fixed.has-border:before {
    top: calc(100% - 1px);
    visibility: visible;
    opacity: 1
}

@media (-webkit-min-device-pixel-ratio: 1.5),(min--moz-device-pixel-ratio:1.5),(min-device-pixel-ratio:1.5) {
    .sticky-header:not(.fixed) .category-dropdown.menu-fixed.has-border:before {
        top:calc(100% - 2px)
    }
}

.menu {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    /* max-width: 660px; */
    /* margin-inline: auto; */
    background: #f0ce1600;
    border-radius: 8px;
}

.menu a {
    display: inline-block
}

.menu .menu-title {
    margin-bottom: 1rem;
    padding: 0 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase
}

.menu ul {
    padding: 2rem 0;
    background: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    color: #666
}

.menu li {
    position: relative;
    line-height: 1.5
}

.menu li a {
    padding: 0.7rem 0 0.7rem 1rem
}

.menu li .megamenu,.menu li>ul {
    position: absolute;
    top: -9999px;
    left: 100%;
    margin: 0;
    box-shadow: 0 2px 35px rgba(0,0,0,0.1);
    z-index: 1041;
    visibility: hidden;
    opacity: 0;
    transition: transform 0.2s ease-out;
    transform: translate3d(0,-10px,0)
}

.menu li>ul {
    min-width: 22.6rem;
    background: #fff
}

.menu li>ul li {
    padding: 0 2rem
}

.menu>li.submenu-container .megamenu {
    width: 1180px
}

.menu .active>a:not(.menu-title),.menu li:hover>a:not(.menu-title) {
    color: #0d6efd;
}

.menu .show .megamenu,.menu .show>ul,.menu li:hover .megamenu,.menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    top: -2rem;
    transform: translate3d(0,0,0)
}

.menu>li {
    margin-right: 22px;
}

.menu>li:last-child {
    margin-right: 0
}

.menu>li>a {
    position: relative;
    padding: 25px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: capitalize;
    color: #000000;
    /* border: 1px solid #b3b3b3; */
    padding: 9px;
    border-radius: 10px;
    /* background: #dfe7fe; */
}

.menu>li>a:after {
    margin-left: 0.8rem
}

.menu>li .megamenu,.menu>li>ul {
    left: -1.9rem
}

.menu>li.show .megamenu,.menu>li.show>ul,.menu>li:hover .megamenu,.menu>li:hover>ul {
    top: 100%
}

.menu .submenu>a {
    position: relative;
    display: block
}

.menu>.submenu>a {
    z-index: 10
}

.menu>.submenu>a:after {
    position: static;
    content: "ï¸";
    margin-top: 0
}

.menu.no-arrow>li>a:after {
    content: none
}

.submenu>a:after {
    display: inline-block;
    position: absolute;
    margin-top: 2px;
    right: 0.5rem;
    top: 50%;
    line-height: 0;
    vertical-align: middle;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 1.1rem;
    color: inherit;
    content: "ï”"
}

.vertical-menu {
    display: block;
    min-width: 28rem
}

.vertical-menu>li {
    margin-right: 0;
    padding: 0 2rem
}

.vertical-menu>li .megamenu,.vertical-menu>li>ul {
    transform: translate3d(-15px,0,0)
}

.vertical-menu>li>a {
    display: inline-block
}

.vertical-menu>li>a:after {
    content: none
}

.vertical-menu>li.show .megamenu,.vertical-menu>li.show>ul,.vertical-menu>li:hover .megamenu,.vertical-menu>li:hover>ul {
    left: 100%;
    top: -1rem
}

.vertical-menu>.submenu:after {
    border: 11px solid transparent;
    border-right: 11px solid #fff
}

.vertical-menu>.submenu.show:after,.vertical-menu>.submenu:hover:after {
    top: 50%;
    left: calc(100% - 20px);
    transform: translate3d(0,-50%,0)
}

.vertical-menu>.submenu>a:after {
    position: absolute;
    line-height: 0;
    content: "ï”"
}

.vertical-menu.no-arrow>li {
    display: flex
}

.vertical-menu.no-arrow>li>a:after {
    content: none
}

.toggle-menu {
    display: block
}

.toggle-menu>li {
    margin-right: 0
}

.toggle-menu .submenu:after,.toggle-menu .submenu>a:after {
    content: none
}

.toggle-menu .submenu li {
    padding: 0 0.5rem
}

.toggle-menu li>ul {
    display: none;
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    background: transparent;
    box-shadow: none
}

.toggle-btn {
    display: block;
    position: absolute;
    padding: 6px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6
}

.toggle-btn:before {
    content: "ï”";
    display: block;
    font-size: 1rem;
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
    line-height: 1;
    transition: transform 0.5s
}

.show>a .toggle-btn:before {
    transform: rotate(630deg)
}

.menu-active-underline>li>a:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 9px;
    left: 0;
    width: 100%;
    border-bottom: 2px solid;
    transform-origin: right center;
    transform: scale(0,1);
    transition: transform 0.3s
}

.menu-active-underline>li.active>a,.menu-active-underline>li:hover>a {
    color: inherit
}

.menu-active-underline>li.active>a:before,.menu-active-underline>li:hover>a:before {
    transform-origin: left center;
    transform: scale(1,1)
}

.main-nav {
    margin: 0 0 0 0.3rem
}

.megamenu {
    display: flex;
    padding: 1rem;
    min-width: 94rem;
    background: #fff
}

.megamenu ul {
    padding: 0
}

.megamenu .row {
    flex: 1;
    padding: 0 1rem
}

.megamenu .row>* {
    padding: 1.8rem 1rem 0.8rem
}

.megamenu .menu-banner {
    padding: 0;
    overflow: hidden
}

.megamenu .menu-banner figure {
    height: 100%
}

.megamenu .menu-banner img {
    height: 100%;
    object-fit: cover
}

.megamenu .menu-banner .btn-link:hover {
    color: #0f172a
}

.menu-banner1 .banner-content {
    left: 9%
}

.menu-banner1 .banner-subtitle,.menu-banner1 .banner-title {
    font-size: 3.6rem
}

.menu-banner1 .banner-subtitle {
    margin-bottom: 0.4rem
}

.menu-banner1 .banner-title {
    margin-bottom: 1.8rem;
    padding-left: 1.2rem;
    position: relative
}

.menu-banner1 .banner-title span {
    display: inline-block;
    position: absolute;
    left: -0.9rem;
    top: 50%;
    font-size: 1.2rem;
    line-height: 1;
    transform: rotateZ(-90deg) translateX(0.6rem);
    letter-spacing: -0.1em
}

.menu-banner2 .banner-content {
    bottom: 10%
}

.menu-banner2 .banner-title {
    margin-bottom: 0.6rem;
    font-size: 2.6rem
}

.menu-banner2 .banner-subtitle {
    font-size: 1.6rem
}

.tip {
    display: inline-block;
    position: relative;
    top: -1px;
    left: 7px;
    padding: 0.3rem 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    border-radius: 2px
}

.tip.tip-hot {
    background-color: #FF7C12
}

.tip.tip-new {
    background-color: #0f172a
}

.mobile-menu-wrapper {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    transition: visibility 0.4s
}

.mobile-menu-container {
    max-width: 296px;
    padding: 2rem 1.5rem;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #222529;
    box-shadow: 1px 0 5px rgba(0,0,0,0.5);
    transform: translateX(-296px);
    transition: transform 0.4s
}

.mobile-menu-container .input-wrapper {
    display: flex;
    margin-bottom: 0.6rem;
    height: 4rem
}

.mobile-menu-container .input-wrapper .form-control {
    min-height: 4rem;
    color: #7a8088;
    border: 1px solid;
    border-color: #2e3237;
    border-right: 0;
    background-color: transparent
}

.mobile-menu-container .input-wrapper .btn-search {
    padding: 0;
    width: 4rem;
    background-color: #0f172a;
    border-color: #0f172a;
    color: #fff;
    font-size: 1.4rem;
    border-radius: 3px
}

.mobile-menu-container .input-wrapper .btn-search i {
    margin: 0 0 0.5rem;
    font-size: inherit
}

.mobile-menu-container .mobile-menu {
    margin-bottom: 0.5rem;
    background: #222529
}

.mobile-menu-container .tab {
    margin-top: 3rem
}

.mobile-menu-container .tab-content {
    background-color: transparent
}

.mobile-menu-container .nav {
    border-width: 2px
}

.mobile-menu-container .nav-link {
    margin-bottom: -2px;
    color: #fff;
    font-size: 13px;
    padding: 10px
}

.mobile-menu-container .tab-pane {
    padding-top: 10px
}

.mobile-menu-container .nav-item:hover .nav-link {
    color: #fff;
    border-color: transparent
}

.mobile-menu-container .nav-item .nav-link.active,.mobile-menu-container .nav-item.show .nav-link {
    color: #0f172a;
    border-color: #0f172a
}

.mobile-menu-container .nav-item+.nav-item {
    margin-left: 1px
}

.mobile-menu-container.scrollable::-webkit-scrollbar-thumb,.mobile-menu-container .sidebar-content::-webkit-scrollbar-thumb {
    margin-right: 2px;
    background: rgba(0,0,0,0.1);
    border-radius: 7px;
    cursor: pointer
}

.mobile-menu {
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.025em;
    color: #e1e1e1;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.025em
}

.mobile-menu ul {
    display: none;
    width: 100%
}

.mobile-menu>li:first-child {
    padding-top: 0.5rem
}

.mobile-menu>li:last-child {
    padding-bottom: 0.5rem
}

.mobile-menu li a {
    display: block;
    position: relative;
    padding: 1.3rem 0.6rem 1.3rem 1rem;
    color: #fff;
}

.mobile-menu li i {
    display: inline-block;
    margin-bottom: 1px;
    font-size: 2rem;
    margin-right: 1rem;
    line-height: 0;
    vertical-align: middle
}

.mobile-menu li li a {
    padding-left: 2.4rem
}

.mobile-menu li li li a {
    padding-left: 3.6rem
}

.mobile-menu li:not(:last-child) {
    border-bottom: 1px solid #2e3237
}

.mobile-menu-title {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff
}

.mobile-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #000;
    opacity: 0;
    transition: opacity 0.4s
}

.mobile-menu-close {
    position: fixed;
    left: calc(100vw - 50px);
    top: 25px;
    z-index: 10001;
    transition: opacity 0.3s;
    opacity: 0
}

.mobile-menu-close i {
    font-size: 2.8rem;
    color: #e1e1e1
}

.mmenu-anim {
    transform: translateY(30%)
}

.mmenu-anim,.mmenu-anim>li {
    transition: transform 0.4s,opacity 0.3s;
    transition-timing-function: cubic-bezier(0.5,0,0.3,1)
}

.mmenu-anim>li:nth-child(0) {
    opacity: 0;
    transform: translateY(0px)
}

.mmenu-anim>li:first-child {
    opacity: 0;
    transform: translateY(50px)
}

.mmenu-anim>li:nth-child(2) {
    opacity: 0;
    transform: translateY(100px)
}

.mmenu-anim>li:nth-child(3) {
    opacity: 0;
    transform: translateY(150px)
}

.mmenu-anim>li:nth-child(4) {
    opacity: 0;
    transform: translateY(200px)
}

.mmenu-anim>li:nth-child(5) {
    opacity: 0;
    transform: translateY(250px)
}

.mmenu-anim>li:nth-child(6) {
    opacity: 0;
    transform: translateY(300px)
}

.mmenu-anim>li:nth-child(7) {
    opacity: 0;
    transform: translateY(350px)
}

.mmenu-anim>li:nth-child(8) {
    opacity: 0;
    transform: translateY(400px)
}

.mmenu-anim>li:nth-child(9) {
    opacity: 0;
    transform: translateY(450px)
}

.mmenu-anim>li:nth-child(10) {
    opacity: 0;
    transform: translateY(500px)
}

.mmenu-anim>li:nth-child(11) {
    opacity: 0;
    transform: translateY(550px)
}

.mmenu-anim>li:nth-child(12) {
    opacity: 0;
    transform: translateY(600px)
}

.mmenu-active {
    overflow: hidden
}

.mmenu-active .mmenu-anim,.mmenu-active .mmenu-anim>li {
    opacity: 1;
    transform: translateY(0)
}

.mmenu-active .page-wrapper {
    margin-left: 296px;
    margin-right: -296px
}

.mmenu-active .mobile-menu-wrapper {
    visibility: visible
}

.mmenu-active .mobile-menu-container {
    transform: translateX(0)
}

.mmenu-active .mobile-menu-overlay {
    opacity: 0.8
}

.mmenu-active .mobile-menu-close {
    opacity: 1
}

@media (max-width: 400px) {
    .mobile-menu-close {
        left:calc(100vw - 40px);
        top: 10px
    }
}

.category-menu {
    background: #fef0e3
}

.category-menu .menu-title {
    padding: 1.8rem 0.2rem 1.8rem;
    margin: 0;
    text-transform: capitalize;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #222
}

.category-menu .menu-body:last-child li:last-child {
    border: 0
}

.category-menu i {
    vertical-align: middle;
    line-height: 0;
    margin-right: 1rem;
    padding-left: 0.2rem;
    font-size: 2rem;
    color: #666
}

.category-menu>li>a {
    display: block;
    padding: 1.2rem 0 1.3rem;
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.46;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    color: #675545
}

.category-menu>li:not(:last-child)>a {
    border-bottom: 1px solid #f0e0d1
}

.category-menu li:hover>a:not(.menu-title) {
    color: #0f172a
}

.category-menu li:hover>a:not(.menu-title) i {
    color: inherit
}

.category-menu .submenu>a:after {
    font-size: 1rem
}

.category-menu .submenu .megamenu {
    min-width: 68.5rem;
    padding: 0 0 0 0.9rem
}

.category-menu .submenu .megamenu>li {
    padding: 0 1rem;
    flex: 1
}

.category-menu .submenu .megamenu>li:last-child {
    padding-right: 0;
    flex: none
}

.category-menu .submenu .megamenu .menu-title {
    padding: 2.7rem 0rem 0.2rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.025em
}

.category-menu .submenu .megamenu .divider {
    height: 1px;
    width: 100%;
    margin: 0
}

.category-menu .submenu .megamenu ul {
    position: relative;
    left: 0;
    top: 0;
    padding: 0;
    font-size: 1.3rem;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    min-width: auto;
    z-index: auto;
    transform: none
}

.category-menu .submenu .megamenu ul li {
    padding: 0;
    line-height: 1.2
}

.category-menu .submenu .megamenu ul li a {
    padding: 0.7rem 0
}

.category-menu .submenu .megamenu .menu-banner .banner-content {
    left: 3rem
}

.category-menu .submenu .megamenu .menu-banner .banner-subtitle {
    font-size: 1.4rem
}

.category-menu .submenu .megamenu .menu-banner .banner-title {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 2.8rem
}

.category-menu .submenu .megamenu .menu-banner .btn-md {
    padding: 0.7em 1.41em 0.7em 1.41em
}

.category-menu .submenu .megamenu .menu-banner5 .banner-content {
    top: 2.6rem
}

.category-menu .submenu .megamenu .menu-banner5 .banner-subtitle {
    margin-bottom: 1.1rem
}

.category-menu .submenu .megamenu .menu-banner5 .banner-title {
    line-height: 1.25
}

.category-menu .submenu .megamenu.type2 {
    display: block;
    min-width: 88rem;
    padding: 0 1rem 2rem
}

.category-menu .submenu .megamenu.type2 .menu-title {
    padding-top: 1.5rem
}

.category-menu .submenu .megamenu.type2 figure {
    text-align: center
}

.category-menu ul {
    padding: 2rem 0;
    background: #fff;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0;
    color: #666
}

@media (max-width: 1199px) {
    .category-menu .submenu .megamenu.type2 {
        min-width:72rem
    }
}

.footer {
    /* font-size: 1.6rem; */
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
    background: #ddd;
    border-radius: 0 !important;
    background: #bce4fd;
    border: 0 !important;
}

.footer p {
    font-size: inherit
}

.footer a:not(.social-link):hover {
    color: #fff
}

.footer .social-link {
    letter-spacing: 0.005em;
    color: #222;
    border: 0;
    width: 40px;
    height: 40px;
    font-size: 15px;
    line-height: 42px;
    background-color: #fff;
    margin-right: 1rem
}

.footer .social-link:hover {
    color: #fff
}

.footer .widget-title {
    border-bottom: none
}

.dark-theme .footer {
    background-color: #181818
}

.dark-theme .footer-middle,.dark-theme .footer-top {
    border-color: #282828
}

.dark-theme .sticky-footer .header-search.show,.dark-theme .sticky-footer .header-search:hover {
    color: #fff
}

.logo-footer,.logo-footer img {
    display: block;
    width: 100%;
    max-width: 210px;
}

.footer-top {
    padding: 4rem 0;
    border-bottom: 1px solid #333
}

.footer-middle {
    padding: 7rem 0 2.1rem;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    font-weight: 400;
    /* border-color: #e5e5e5; */
}

.footer-middle .widget {
    margin-bottom: 2rem;
    text-align: center;
}

.footer-middle .widget-title {
    padding: 0.6rem 0;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #000000;
    text-align: left;
}

.footer-middle .widget-body {
    padding: 0.4rem 0 0;
    color: #999;
    letter-spacing: 0
}

.footer-middle .widget-body li {
    /* line-height: 1.6; */
    margin-bottom: 1.1rem;
    text-align: left;
}

.footer-middle .widget-body li a{
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}

.footer-middle .widget-body li a:hover{
    color: #414e9c;
}

.footer-middle .widget-body li:last-child {
    margin-bottom: 0
}

.footer-middle .widget-instagram .widget-body {
    padding-top: 0;
    margin: -5px
}

.footer-middle .widget-instagram .col-3 {
    padding: 5px
}

.footer-middle .widget-instagram img {
    display: block;
    width: 100%;
    height: auto
}

.footer-middle label {
    font-size: 1.8rem;
    font-weight: 500;
    text-transform: none;
    color: #000000;
    margin-right: 4px;
}

.widget.widget-info a {
    font-weight: 500
}

.footer-main {
    padding: 2.6rem 0 0.4rem
}

.footer-bottom {
    padding: 1.6rem 0;
    /* background: #0d6efd; */
    /* color: #fff; */
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-bottom,.footer-bottom .container,.footer-bottom .container-fluid {
    display: flex;
    align-items: center
}

.footer-bottom .footer-left,.footer-bottom .footer-right {
    flex: 1
}

.footer-bottom .footer-left {
    display: flex
}

.footer-bottom .footer-right {
    display: flex;
    justify-content: flex-end
}

@media (max-width: 991px) {
    .footer-top .logo-footer {
        margin-bottom:2.7rem
    }

    .footer-top .logo-footer img {
        margin-left: auto;
        margin-right: auto
    }

    .newsletter-info {
        margin-bottom: 2rem
    }

    .footer-middle {
        padding: 4.8rem 0 4.8rem
    }

    .footer-middle .widget-body {
        padding: 0
    }

    .footer-bottom,.footer-bottom>.container {
        display: block
    }

    .footer-bottom .footer-left,.footer-bottom .footer-right {
        justify-content: center
    }

    .footer-bottom .footer-center,.footer-bottom .footer-left {
        margin-bottom: 2.7rem
    }

    .footer-center {
        text-align: center
    }
}

.footer .copyright {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0;
    line-height: 1.5
}

.widget-newsletter .newsletter-info {
    max-width: 35rem;
    width: 100%
}

.widget-newsletter .input-wrapper-inline {
    height: 4.9rem
}

.widget-newsletter .input-wrapper {
    max-width: 48rem
}

.widget-newsletter input {
    min-height: 100%;
    border: 0;
    border-radius: 0.3rem 0 0 0.3rem;
    color: #999;
    background: #2c2c2c
}

.widget-newsletter .btn {
    padding: 1.2em 1.33em 1.07em
}

.widget-newsletter .btn i {
    font-size: 1.6rem;
    margin: -0.4rem 0 0 0.6rem
}

.widget-newsletter .widget-title {
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    text-transform: inherit;
    line-height: 1;
    color: #fff
}

.widget-newsletter p {
    margin-bottom: 0.1rem;
    font-size: 1.4rem;
    letter-spacing: -0.005em;
    line-height: 1.23;
    color: #999
}

.footer .widget-category .category-box {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    margin-bottom: 2rem
}

.footer .widget-category .category-name {
    margin-bottom: 0;
    margin-right: 2.4rem;
    font-size: 1.4rem;
    letter-spacing: 0;
    color: #ccc
}

.footer .widget-category a {
    display: inline-block;
    position: relative;
    margin-right: 2rem;
    font-size: 1.3rem;
    font-weight: 400;
    color: #999
}

.footer .widget-category a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    border-bottom: 1px solid;
    transform: scaleX(0);
    transition: transform 0.3s
}

.footer .widget-category a:hover:before {
    transform: scale(1)
}

.footer .widget-category a:not(:last-child):after {
    content: "";
    position: absolute;
    height: 14px;
    margin-left: 1rem;
    top: 50%;
    border-left: 1px solid #454545;
    transform: translateY(-50%)
}

.footer .widget-about .logo-footer {
    display: block;
    margin-bottom: 1.6rem
}

.footer .widget-about p {
    margin-bottom: 3rem;
    color: #000000;
    font-size: 1.6rem;
    line-height: 2.6rem;
    letter-spacing: -0.05px;
    text-align: start;
}

.footer .widget-about .widget-body {
    padding: 0
}

.payment img {
    display: block
}

.sticky-footer {
    display: flex
}

.sticky-footer>* {
    flex: 1
}

.sticky-footer .search-toggle {
    padding: 0;
    color: inherit
}

.sticky-footer .header-search.show,.sticky-footer .header-search:hover {
    color: #222
}

.sticky-footer .hs-toggle .input-wrapper {
    min-width: 29rem;
    right: 1.5rem;
    margin-bottom: 2rem
}

.sticky-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0 1.3rem
}

.sticky-link i {
    width: 2.3rem;
    height: 2.4rem;
    text-align: center;
    font-size: 2.3rem;
    line-height: 1;
    transform: translateY(0);
    transition: transform 0.35s ease
}

.sticky-link i.d-icon-search {
    font-size: 1.9rem
}

.sticky-link span {
    margin-top: 0.8rem;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.025em;
    text-transform: uppercase
}

.sticky-link.active {
    color: #222
}

.sticky-link:hover {
    color: #222
}

.sticky-link:hover i {
    transform: translateY(-5px)
}

@media (min-width: 576px) {
    .sticky-footer {
        padding:0 4rem
    }
}

@media (min-width: 768px) {
    .sticky-footer {
        display:none
    }
}

@media (max-width: 991px) {
    .footer-middle .row>div:last-child .widget {
        margin-bottom:1rem
    }
}

.cart-added-alert {
    display: none;
    margin-bottom: 1rem
}

.container>.cart-added-alert:first-child {
    margin-top: -1rem
}

.cart-added-alert span {
    color: #222
}

.cart-added-alert .btn-success,.cart-added-alert span {
    vertical-align: middle
}

.product-details .product-navigation {
    padding: 0.2rem 2px 0.3rem
}

.product-gallery {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    position: sticky
}

.product-gallery.product-gallery-sticky {
    top: 2rem;
    padding-bottom: 3rem;
    transition: top 0.3s
}

.sticky-header-active .product-gallery.product-gallery-sticky {
    top: 8rem
}

.product-gallery.row>* {
    display: flex;
    align-items: center
}

.product-gallery.row .product-image-full {
    right: 2rem
}

.product-image-full {
    display: block;
    position: absolute;
    padding: 1rem;
    right: 1rem;
    bottom: 1rem;
    color: #999;
    font-size: 2rem;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1
}

:hover>.product-image-full {
    opacity: 1
}

.product-navigation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2px 1.1rem
}

.product-navigation .breadcrumb {
    margin: 0 2rem 1rem 0;
    font-size: inherit
}

.product-navigation .product-nav {
    margin-bottom: 1rem
}

.product-nav {
    display: flex;
    position: relative;
    color: #999
}

.product-nav i {
    vertical-align: middle;
    font-size: 1.9rem;
    line-height: 0
}

.product-nav li+li {
    margin-left: 2rem
}

.product-nav .product-nav-next>a,.product-nav .product-nav-prev>a {
    display: flex;
    align-items: center
}

.product-nav .product-nav-prev i {
    margin-right: 2px
}

.product-nav .product-nav-next i {
    margin-left: 2px
}

.product-nav .product-name {
    padding-right: 0;
    color: #666;
    font-size: 1.2rem;
    font-weight: 400;
    white-space: normal
}

.product-nav li:hover .product-nav-popup {
    opacity: 1;
    visibility: visible;
    transform: none
}

.product-nav-popup {
    position: absolute;
    top: 126%;
    right: 16px;
    z-index: 30;
    width: 120px;
    padding: 0 5px 5px;
    line-height: 1.5;
    text-align: center;
    background-color: #fff;
    box-shadow: 1px 1px 7px rgba(0,0,0,0.1);
    visibility: hidden;
    opacity: 0;
    transform: scale(0.9);
    transform-origin: top;
    transition: opacity 0.3s,transform 0.3s
}

.product-nav-popup:before {
    content: "";
    position: absolute;
    top: -8px;
    right: 18px;
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
    background-color: #fff;
    box-shadow: inherit
}

.product-nav-popup img {
    position: relative;
    padding-top: 5px;
    background-color: #fff
}

.product-nav-prev .product-nav-popup:before {
    right: 6.6rem
}

.product-tabs .nav-link {
    padding: 1rem 2.5rem;
    line-height: 1.2
}

.product-tabs .nav-item {
    margin-right: 0
}

.product-tabs .tab-pane {
    padding: 1.5rem 0.2rem;
    line-height: 1.86
}

.product-footer+.product-tabs {
    margin-top: 2.5rem
}

.product-status .list-type li,.product-tabs .tab-pane .list-type li {
    padding-left: 3rem
}

.product-status {
    line-height: 2
}

#product-tab-description .description-title,.card-description .description-title {
    font-size: 2rem;
    line-height: 24px
}

#product-tab-description .description-title~p,.card-description .description-title~p {
    line-height: 1.86
}

#product-tab-description li,.card-description li {
    position: relative;
    padding-left: 2.4rem
}

#product-tab-description li:before,.card-description li:before {
    position: absolute;
    display: block;
    left: 3px;
    top: 2px;
    content: ".";
    font-weight: 700;
    font-size: 1.2rem;
    color: #222
}

#product-tab-description .table tbody,.card-description .table tbody {
    line-height: 1.8
}

#product-tab-description .table td,#product-tab-description .table th,.card-description .table td,.card-description .table th {
    padding: 10px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #e9e9e9
}

@media (min-width: 768px) {
    #product-tab-description .pl-md-6,.card-description .pl-md-6 {
        padding-left:3rem!important
    }
}

#product-tab-description .btn-play,.card-description .btn-play {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 35px;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background-color: #222;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    color: #fff
}

#product-tab-description .icon-box-icon,.card-description .icon-box-icon {
    font-size: 3rem;
    border-color: #cdcdcd
}

#product-tab-description .icon-box-content p,.card-description .icon-box-content p {
    font-size: 1.3rem;
    color: #999
}

#product-tab-description .divider,.card-description .divider {
    margin: 1.3rem 0 1.3rem;
    height: 4.4rem
}

#product-tab-description figure img,.card-description figure img {
    vertical-align: middle
}

#product-tab-description .icon-box-icon,.card-body .icon-box-icon {
    width: 5.1rem;
    height: 5.1rem;
    margin-right: 2rem
}

#product-tab-description .icon-box-icon .d-icon-truck,.card-body .icon-box-icon .d-icon-truck {
    font-size: 3.6rem
}

#product-tab-description .icon-box-title,.card-body .icon-box-title {
    margin-bottom: 0.2rem
}

#product-tab-description .icon-box-wrap {
    max-width: 559px
}

#product-tab-additional label,.card-additional label {
    display: inline-block;
    min-width: 20rem;
    color: #222
}

#product-tab-additional p,.card-additional p {
    display: inline-block;
    margin-bottom: 0
}

#product-tab-size-guide,.card-sizeguide {
    display: block
}

#product-tab-size-guide .size-image,.card-sizeguide .size-image {
    flex: 0 0 36%;
    text-align: center;
    padding: 0 10px
}

#product-tab-size-guide .size-table,.card-sizeguide .size-table {
    flex: 1;
    font-size: 14px;
    text-transform: uppercase;
    color: #21293c
}

#product-tab-size-guide .size-table thead th,.card-sizeguide .size-table thead th {
    padding: 30px 0 30px 10px;
    font-weight: 600;
    background: #f4f4f2;
    text-align: left
}

#product-tab-size-guide .size-table tbody tr>*,.card-sizeguide .size-table tbody tr>* {
    padding: 12px 0 12px 10px;
    font-weight: 700;
    text-align: left
}

#product-tab-size-guide .size-table tbody tr:nth-child(2n),.card-sizeguide .size-table tbody tr:nth-child(2n) {
    background-color: #ebebeb
}

#product-tab-reviews .comments-list li,.card-reviews .comments-list li {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e1e1e1
}

#product-tab-reviews .comments,.card-reviews .comments {
    padding: 1rem
}

#product-tab-reviews .comment p,.card-reviews .comment p {
    margin-bottom: 0
}

#product-tab-reviews .comment-rating,.card-reviews .comment-rating {
    right: 0;
    top: 3rem;
    font-size: 1.2rem;
    margin-bottom: 1rem
}

#product-tab-reviews .ratings-full,.card-reviews .ratings-full {
    margin-right: 0
}

#product-tab-reviews .reply,.card-reviews .reply {
    margin-bottom: 0
}

#product-tab-reviews .reply p,.card-reviews .reply p {
    margin-bottom: 2.5rem;
    font-size: 1.3rem;
    color: #666
}

#product-tab-reviews .reply .btn,.card-reviews .reply .btn {
    padding: 1.2em 2.97em
}

#product-tab-reviews .reply .btn i,.card-reviews .reply .btn i {
    font-size: 1.9rem;
    margin-left: 1rem
}

#product-tab-reviews .form-checkbox,.card-reviews .form-checkbox {
    font-size: 1.3rem
}

#product-tab-reviews .form-control-label,.card-reviews .form-control-label {
    padding-left: 0
}

#product-tab-reviews .form-control-label:before,.card-reviews .form-control-label:before {
    display: inline-block;
    position: relative;
    transform: none;
    vertical-align: middle;
    margin-right: 0.5rem
}

#product-tab-reviews .btn.btn-link.active,#product-tab-reviews .btn.btn-link:hover,.card-reviews .btn.btn-link.active,.card-reviews .btn.btn-link:hover {
    color: #0f172a
}

#product-tab-reviews {
    padding-top: 3rem
}

.product-details .collapse:after {
    color: #0f172a
}

.accordion-border .card {
    padding: 0 1.3rem
}

.rating-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2.2rem
}

.rating-form label {
    margin-right: 1rem
}

.rating-stars {
    display: flex;
    position: relative;
    height: 14px;
    font-size: 1.4rem
}

.rating-stars a {
    color: #999;
    text-indent: -9999px;
    letter-spacing: 1px;
    width: 16px;
    letter-spacing: 0.2em
}

.rating-stars a:before {
    content: "";
    position: absolute;
    left: 0;
    height: 14px;
    line-height: 1;
    text-indent: 0;
    overflow: hidden;
    white-space: nowrap
}

.rating-stars a.active:before,.rating-stars a:hover:before {
    content: "î¥•î¥•î¥•î¥•î¥•";
    color: #FF7C12
}

.rating-stars .star-1 {
    z-index: 10
}

.rating-stars .star-2 {
    z-index: 9
}

.rating-stars .star-3 {
    z-index: 8
}

.rating-stars .star-4 {
    z-index: 7
}

.rating-stars .start-5 {
    z-index: 6
}

.rating-stars .star-1:before {
    width: 20%
}

.rating-stars .star-2:before {
    width: 40%
}

.rating-stars .star-3:before {
    width: 60%
}

.rating-stars .star-4:before {
    width: 80%
}

.rating-stars .star-5:before {
    content: "î¥•î¥•î¥•î¥•î¥•"
}

.product-sticky-content:not(.fixed) .sticky-product-details {
    display: none
}

.product-sticky-content:not(.fixed) .container {
    padding: 0
}

.product-sticky-content.fixed {
    padding: 1rem 0
}

.product-sticky-content.fixed .container {
    display: flex;
    align-items: center
}

.product-sticky-content.fixed .product-form {
    flex: 1
}

.product-sticky-content.fixed .product-form-group {
    justify-content: flex-end
}

.product-sticky-content.fixed .product-form,.product-sticky-content.fixed .product-form-group>* {
    margin-bottom: 0
}

.product-sticky-content.fixed .product-form>label {
    display: none
}

.product-sticky-content.fixed .input-group {
    margin-right: 0.8rem
}

.sticky-product-details {
    display: flex;
    align-items: center
}

.sticky-product-details img {
    display: block;
    width: 9rem;
    height: 9rem
}

.sticky-product-details .product-image {
    margin-right: 1rem;
    max-width: 9rem
}

.sticky-product-details .product-title {
    margin-bottom: 0.5rem;
    font-weight: 700
}

.sticky-product-details .product-price {
    font-weight: 600
}

.sticky-product-details .product-price,.sticky-product-details .product-title {
    font-size: 2rem
}

.sticky-product-details .product-price,.sticky-product-details .ratings-container {
    margin-bottom: 0
}

.sticky-product-details .product-info {
    display: flex
}

.sticky-product-details .product-price {
    margin-right: 2rem
}

aside .service-list {
    padding: 0 2rem;
    border: 1px solid #eee
}

aside .service-list>* {
    justify-content: flex-start;
    padding: 2.2rem 0
}

aside .service-list>:not(:last-child) {
    border-bottom: 1px solid #e1e1e1
}

aside .service-list i {
    margin-left: 5px;
    font-size: 3.2rem
}

aside .service-list .icon-box-title {
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: 1.2
}

aside .service-list p {
    line-height: 1.2
}

aside .service-list .icon-box1 i {
    margin-left: 0;
    font-size: 3.7rem
}

aside .banner-content {
    left: 5%;
    top: 12%;
    width: 90%
}

aside .banner-subtitle {
    font-weight: 500;
    font-size: 16px;
    color: #777777
}

aside .banner-title {
    font-size: 2.3rem;
    line-height: 1.4em
}

aside .owl-nav-top .owl-nav {
    top: -5.1rem
}

aside .owl-nav-top .owl-nav i {
    padding: 0.1rem;
    font-size: 1.2rem
}

aside .owl-nav-top .owl-nav i:before {
    font-weight: 600
}

.review-form-section .review-medias {
    margin-top: 3rem;
    margin-bottom: 1rem
}

.review-form-section .review-medias>.btn {
    display: flex;
    align-items: center
}

.review-form-section .file-input {
    position: relative;
    margin-right: 2rem;
    padding: 0;
    width: auto;
    background-repeat: no-repeat;
    background-size: cover
}

.review-form-section .file-input-wrapper {
    display: block;
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-size: cover
}

.review-form-section input[type=file] {
    width: 0!important;
    height: 0!important;
    overflow: hidden;
    opacity: 0
}

.review-form-section .btn-action {
    position: absolute;
    right: -10px;
    top: -10px;
    height: 22px;
    width: 22px;
    display: flex;
    justify-content: center;
    line-height: 22px;
    font-size: 10px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: box-shadow 0.3s
}

.review-form-section .btn-action:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 600
}

.review-form-section .btn-upload:before {
    content: "ïŒ„"
}

.review-form-section .btn-remove {
    top: auto;
    bottom: -10px
}

.review-form-section .btn-remove:before {
    content: "ï€";
    font-size: 12px
}

.review-medias {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap
}

.avg-rating-container {
    display: flex;
    align-items: center;
    margin-bottom: 1rem
}

.avg-rating-container mark {
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1;
    color: #0f172a;
    background: none;
    margin-right: 1.8rem
}

.avg-rating-container .rating-reviews:hover {
    color: #999
}

.ratings-item {
    display: flex;
    align-items: center
}

.ratings-item .ratings-container {
    margin-right: 1.8rem
}

.ratings-item .progress-value {
    margin-left: 2rem
}

.rating-percent {
    background: #eee;
    height: 0.8rem;
    width: 20rem;
    max-width: 100%;
    border-radius: 1rem
}

.rating-percent span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #999
}

.comments .toolbox {
    padding: 0 0 1rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e1e1e1
}

.comments .toolbox .btn {
    font-size: 1.3rem;
    padding: 0.82em 1.08em
}

.comments .toolbox .toolbox-sort .form-control {
    min-width: 15rem
}

.comments .toolbox-pagination {
    border: none
}

.comments .page-item {
    margin-bottom: 0
}

.comments .file-input-wrappers {
    display: flex
}

.comments .file-input-wrappers>* {
    width: 6rem;
    height: 6rem;
    margin-right: 1rem;
    cursor: zoom-in
}

.comments .file-input-wrappers img {
    height: 100%
}

.comments .feeling i {
    font-size: 1.4rem
}

.comments .btn-play {
    display: flex;
    justify-content: center;
    align-items: center
}

.comments .btn-play i {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(0,0,0,0.7)
}

.review-form-section .review-form-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    background-color: #fff;
    z-index: 1101;
    box-shadow: 0px 2px 9px rgba(0,0,0,0.1);
    padding: 3rem;
    transition: right 0.3s;
    overflow: auto
}

.review-form-section .review-overlay {
    position: fixed;
    left: 0;
    width: 100vw;
    top: -10vh;
    height: 120vh;
    background: rgba(0,0,0,0.3);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s
}

.review-form-section.opened .review-form-wrapper {
    right: 0
}

.review-form-section.opened .review-overlay {
    opacity: 1;
    visibility: visible
}

@media (max-width: 575px) {
    #product-tab-reviews .comments-list>ul,.card-body .comments-list>ul {
        padding:0
    }

    #product-tab-reviews .comment-body,.card-body .comment-body {
        padding-left: 1.5rem
    }

    #product-tab-additional label {
        min-width: 13rem
    }
}

@media (min-width: 576px) {
    #product-tab-size-guide .size-table tbody th,#product-tab-size-guide thead th:first-child,.card-sizeguide .size-table tbody th,.card-sizeguide thead th:first-child {
        padding-left:3rem
    }

    #product-tab-size-guide {
        display: flex
    }
}

@media (min-width: 992px) {
    .product-form select {
        width:20rem
    }

    .product-single .product-details {
        padding-left: 1rem
    }

    .product-details.row {
        padding-left: 0
    }

    .product-details.row>:last-child {
        padding-left: 2rem
    }
}

@media (min-width: 1600px) {
    .container-fluid .product-thumbs.owl-carousel {
        width:calc(100% + 20px);
        margin: 0 -10px
    }

    .container-fluid .product-thumb {
        margin: 0 10px
    }

    .container-fluid .product-thumbs-wrap {
        margin-top: 20px
    }

    .container-fluid .product-thumbs .owl-prev {
        left: 10px
    }

    .container-fluid .product-thumbs .owl-next {
        right: 10px
    }

    .container-fluid .pg-vertical .product-thumb {
        margin: 0 0 20px
    }

    .container-fluid .pg-vertical .product-thumbs-wrap {
        margin: 0 20px 0 0
    }

    .container-fluid .pg-vertical .product-single-carousel {
        max-width: calc(100% - 129px)
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    aside .service-list {
        padding:0 1rem
    }
}

@media (min-width: 768px) and (max-width:1035px) {
    .product-single #product-tab-size-guide {
        display:block
    }
}

@media (max-width: 991px) {
    aside .service-list .icon-box-side {
        flex-direction:row
    }

    aside .service-list .icon-box-side .icon-box-icon {
        padding: 0;
        margin: 0 2rem 0 0
    }

    aside .service-list .icon-box-side .icon-box-content {
        text-align: left
    }
}

.product-sticky-both .btn-cart {
    margin-bottom: 1rem
}

.product-sticky-both .product-action {
    display: flex
}

.product-sticky-both .btn-wishlist {
    margin-bottom: 1rem
}

@media (min-width: 992px) {
    .product-sticky-both .btn-cart {
        max-width:100%
    }

    .product-sticky-both .product-form .p-relative,.product-sticky-both .product-form .select-box {
        margin-right: 0;
        width: 100%
    }

    .product-sticky-both .product-form select {
        flex: 1;
        width: 100%
    }
}

@media (max-width: 991px) {
    #product-tab-description .icon-box-side,.card-body .icon-box-side {
        flex-direction:row
    }

    #product-tab-description .icon-box-icon,.card-body .icon-box-icon {
        display: inline-flex;
        margin-bottom: 0;
        padding: 0
    }

    #product-tab-description .icon-box-content,.card-body .icon-box-content {
        text-align: left
    }

    .review-form-wrapper {
        width: 45rem
    }
}

@media (max-width: 575px) {
    .review-form-wrapper {
        width:30rem
    }

    .review-form-wrapper .file-input-wrapper {
        width: 6rem;
        height: 6rem
    }

    .review-form-wrapper .file-input {
        margin-right: 1rem
    }
}

.dark-theme .avg-rating-title,.dark-theme .product-nav .product-name,.dark-theme .progress-value {
    color: #999
}

.dark-theme .size-image img {
    filter: invert(1)
}

.dark-theme .size-table {
    color: #fff
}

.dark-theme .size-table thead th {
    background: #999
}

.dark-theme .size-table tbody tr:nth-child(2n) {
    background-color: #999
}

.dark-theme .rating-percent {
    background: #999
}

.dark-theme .rating-percent span {
    background: #fff
}

.shop-banner-default .banner-subtitle,.shop-boxed-banner .banner-subtitle {
    margin-bottom: 0.6rem;
    font-size: 2em
}

.shop-banner-default .banner-title,.shop-boxed-banner .banner-title {
    margin-bottom: 2.4rem;
    font-size: 4em;
    letter-spacing: -0.035em
}

.shop-banner-default .btn,.shop-boxed-banner .btn {
    padding: 1.2em 2.8em;
    border-color: #919EB2
}

.shop-banner-default .btn i,.shop-boxed-banner .btn i {
    vertical-align: middle;
    margin-left: 0.7rem;
    font-size: 2.2rem
}

.shop-banner-default .btn:active,.shop-banner-default .btn:focus,.shop-banner-default .btn:hover,.shop-boxed-banner .btn:active,.shop-boxed-banner .btn:focus,.shop-boxed-banner .btn:hover {
    border-color: #fff
}

.shop-banner-default {
    padding: 7.5rem 5.7% 8.3rem
}

.shop-boxed-banner {
    padding: 7.4rem 7% 8.4rem
}

.cph-header {
    min-height: 350px;
    height: auto
}

.cph-header .category img {
    width: 80px;
    height: 80px;
    border-radius: 50%
}

.cph-header .category-icon {
    padding: 1.7rem 1rem
}

.toolbox,.toolbox-item,.toolbox-item-full,.toolbox-left,.toolbox-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.toolbox {
    position: relative;
    z-index: 21;
    justify-content: space-between
}

.toolbox.toolbox-pagination {
    z-index: 20
}

.toolbox {
    font-size: 1.8rem;
    line-height: 1.5;
    padding: 3.5rem 0.2rem 1rem;
    transition: margin 0.4s;
    background-color: transparent
}

.toolbox.sticky-toolbox {
    padding-top: 3rem;
    padding-bottom: 3em;
}

.toolbox-left>:not(:last-child),.toolbox-right>:not(:last-child),.toolbox>:not(:last-child) {
    margin-right: 1.8rem;
}

.toolbox label {
    margin-right: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.toolbox select {
    cursor: pointer;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    border-color: #ebebeb;
    z-index: 0
}

.toolbox .select-box .form-control {
    color: #222;
    font-size: 1.6rem;
}

.toolbox .select-box:before {
    font-size: 1rem;
    right: 1rem;
    z-index: 1
}

.toolbox .toolbox-sort .form-control {
    /* max-width: 15rem; */
    padding-left: 1.4rem;
    font-size: 1.6rem;
    width: 100%;
}

.toolbox .toolbox-sort:before {
    right: 1.4rem;
    z-index: 2
}

.toolbox-item {
    flex-wrap: nowrap;
    margin-bottom: 1rem;
}

.toolbox-item label {
    color: #222;
    text-wrap-mode: nowrap;
}

.toolbox-item-full {
    flex-basis: 100%
}

.btn-layout {
    color: #dadada;
    font-size: 20px;
    padding: 0 5px;
}

.btn-layout:last-child {
    padding-right: 0
}

.btn-layout.active,.btn-layout:hover {
    color: #0f172a;
}

.btn-layout+.btn-layout {
    margin-left: 2px
}

.select-menu {
    color: #222
}

.select-menu:before {
    right: 1.25em;
    font-size: 1.2rem;
    margin-top: 1px
}

.select-menu ul,.select-menu ul:before {
    content: "";
    position: absolute;
    border: 1px solid #eee;
    width: 11px
}

.select-menu ul {
    top: 100%;
    z-index: 1000;
    width: 18rem;
    margin-top: 1rem;
    padding: 1rem 1.4rem 1rem;
    background-color: #fff;
    opacity: 0;
    visibility: hidden
}

.select-menu ul:before {
    top: -6px;
    left: 22px;
    height: 11px;
    border-width: 1px 0 0 1px;
    background-color: #fff;
    transform: rotate(45deg)
}

.select-menu.opened>ul {
    opacity: 1;
    visibility: visible
}

.dark-theme .select-menu {
    color: #999
}

.dark-theme select.form-control {
    background-color: transparent
}

.dark-theme .toolbox-item label {
    color: #999
}

.dark-theme .toolbox .select-box .form-control {
    color: #999
}

.dark-theme .btn-layout {
    color: #666
}

.dark-theme .btn-layout.active,.dark-theme .btn-layout:hover {
    color: #0f172a
}

.select-menu-toggle,.select-menu select {
    position: relative;
    border: 1px solid #ebebeb;
    padding: 0.8rem 4rem 0.8rem 1.4rem;
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: -0.03em
}

.select-menu-toggle {
    border-radius: 2px
}

.select-menu select {
    max-width: 17.2rem;
    padding: 0.85rem 2.6rem 0.85rem 0.9rem
}

.select-item {
    padding: 6px 0.7rem 4px 1.2rem;
    color: #222;
    background: #eee;
    letter-spacing: -0.01em
}

.select-item i {
    padding: 0.5rem 0.6rem 0.7rem;
    margin-left: 5px;
    font-size: 9px;
    vertical-align: middle
}

.select-items {
    display: none
}

.toolbox+.select-items {
    font-size: 1.2rem;
    margin: 2px 0 1.8rem
}

.select-items>* {
    display: inline-block;
    margin: 0 0.8rem 0.5rem 0
}

.select-items .filter-clean {
    margin-left: 1.2rem
}

.sticky-content-wrapper+.select-items {
    font-size: 1.2rem;
    margin: 2px 0 1.8rem
}

.toolbox-pagination {
    position: relative;
    margin-bottom: 1rem;
    padding: 2.5rem 0.2rem;
    border-top: 1px solid #e1e1e1
}

.toolbox-horizontal .show-info {
    color: #999;
    font-size: inherit
}

.toolbox-horizontal.fixed .sidebar-content,.toolbox-horizontal.fixed .sidebar-overlay {
    min-height: 100vh
}

.left-sidebar-toggle,.right-sidebar-toggle,.sidebar-content .filter-actions .sidebar-toggle-btn,.toolbox .top-sidebar-toggle {
    padding: 0.61em 0.92em 0.61em;
    margin-right: 2rem;
    font-weight: 700;
    line-height: 1.2
}

.left-sidebar-toggle .d-icon-filter-2,.right-sidebar-toggle .d-icon-filter-2,.sidebar-content .filter-actions .sidebar-toggle-btn .d-icon-filter-2,.toolbox .top-sidebar-toggle .d-icon-filter-2 {
    font-size: 1.4rem
}

.left-sidebar-toggle .d-icon-filter-2:before,.right-sidebar-toggle .d-icon-filter-2:before,.sidebar-content .filter-actions .sidebar-toggle-btn .d-icon-filter-2:before,.toolbox .top-sidebar-toggle .d-icon-filter-2:before {
    font-weight: 600
}

.toolbox .toolbox-left .left-sidebar-toggle {
    font-weight: 600
}

.toolbox-item.right-sidebar-toggle {
    margin-right: 0
}

.toolbox-wrap {
    display: flex;
    flex-direction: column-reverse;
    line-height: 1.3
}

.toolbox-wrap .toolbox>* {
    line-height: 37px
}

.toolbox-wrap .toolbox-layout {
    display: flex
}

.toolbox-wrap option {
    text-transform: none
}

.toolbox-wrap .toolbox-layout {
    display: flex
}

.toolbox-wrap .sidebar-content .widget-title {
    padding-bottom: 1rem
}

.sticky-toolbox.fixed {
    position: fixed;
    background-color: #fff;
    padding: 1rem 2rem 0
}

.widget .widget-body .filter-actions {
    display: block;
    padding: 0 0 1.5rem 0.2rem
}

.filter-price-text {
    font-size: 1.3rem;
    color: #222
}

.filter-items a:before {
    content: "";
    position: absolute;
    border: 1px solid #999;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    top: 50%;
    transform: translateY(-50%);
    left: -2.7rem;
    font-size: 0.7em;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    text-align: center;
    text-indent: 1px;
    line-height: 1.7em
}

@media (-webkit-min-device-pixel-ratio: 1.5),(min--moz-device-pixel-ratio:1.5),(min-device-pixel-ratio:1.5) {
    .filter-items a:before {
        text-indent:0
    }
}

.toolbox .btn-link {
    padding: 0
}

.filter-clean {
    font-size: 1.4rem;
    margin-left: auto;
    color: #222;
    transition: color 0.3s
}

.filter-clean:hover {
    color: #0f172a
}

.shop-sidebar {
    position: relative
}

.shop-sidebar .btn-outline:not(:hover) {
    color: #0f172a;
    background-color: #fff
}

.shop-sidebar .left-sidebar-toggle,.shop-sidebar .sidebar-toggle-btn {
    padding: 0.8em 1.04em
}

.shop-sidebar .filter-actions {
    display: block;
    align-items: center;
    padding-right: 0.6rem;
    margin-bottom: 2rem
}

.btn-icon-right i {
    margin-left: 0.8rem;
    font-size: 1.8rem
}

@media (min-width: 576px) {
    .toolbox-horizontal .toolbox-left {
        margin-right:auto
    }

    .mr-sm-auto {
        margin-right: auto!important
    }
}

@media (min-width: 992px) {
    .sidebar-fixed {
        transition:margin 0.4s
    }

    .sidebar-fixed .filter-actions:first-child {
        padding-top: 3rem;
    }

    .sidebar-fixed+.main-content {
        transition: flex-basis 0.4s,max-width 0.4s
    }

    .sticky-sidebar-wrapper.closed {
        height: 0
    }

    .closed.sidebar {
        margin-left: -25%
    }

    .closed.right-sidebar {
        margin-right: -25%
    }

    .closed+.main-content {
        max-width: 100%;
        flex-basis: 100%
    }

    .main-content-wrap {
        overflow: hidden
    }

    .sidebar-toggle-remain .toggle-remain {
        position: absolute;
        transition: 0.4s;
        left: 0
    }
}

@media (min-width: 992px) and (-ms-high-contrast:active),(min-width:992px) and (-ms-high-contrast:none) {
    .sidebar-toggle-remain .toggle-remain {
        top:2.7rem
    }
}

@media (min-width: 992px) {
    .sidebar-toggle-remain .filter-clean {
        line-height:3.7rem
    }
}

@media (min-width: 992px) {
    .sidebar-toggle-remain.sidebar .toggle-remain i {
        transition:transform 0.3s
    }

    .sidebar-toggle-remain.sidebar.closed .toggle-remain {
        left: calc(100% + 30px)
    }

    .sidebar-toggle-remain.sidebar.closed .toggle-remain i {
        transform: rotateY(180deg)
    }

    .sidebar-toggle-remain.sidebar.closed+*>.toolbox:first-child {
        margin-left: 10.8rem
    }

    .sidebar-toggle-remain.sidebar .toggle-remain:before {
        content: "";
        position: absolute;
        background-color: #fff;
        right: calc(100% + 2px);
        width: 20px;
        bottom: -2px;
        top: -2px
    }
}

@media (min-width: 992px) {
    .sidebar-toggle-remain.right-sidebar.closed .toggle-remain {
        left:-3rem;
        transform: translateX(-100%)
    }

    .sidebar-toggle-remain.right-sidebar.closed .toggle-remain i:before {
        content: "î¥¾"
    }

    .sidebar-toggle-remain.right-sidebar.closed+*>.toolbox:first-child {
        padding-right: 11rem
    }
}

@media (min-width: 992px) {
    .toolbox-wrap .sidebar-content {
        border-top:3px solid #eee;
        transition: border 0.3s
    }

    .toolbox-wrap .sidebar-content>div {
        border-bottom: 3px solid #eee
    }

    .toolbox-wrap .sidebar-content .widget {
        border: none
    }
}

@media (min-width: 992px) {
    .shop-sidebar .filter-actions {
        margin-bottom:0
    }
}

@media (min-width: 992px) {
    .toolbox .sidebar-content {
        max-width:none
    }
}

@media (min-width: 992px) {
    .toolbox-horizontal .sidebar-fixed .sidebar-content {
        padding-bottom:0
    }

    .toolbox-horizontal .widget {
        position: relative;
        margin-bottom: 1rem;
        color: #222;
        border-bottom: none
    }

    .toolbox-horizontal .widget .widget-title {
        position: relative;
        border: 1px solid #ebebeb;
        padding: 8px 4rem 8px 1.4rem;
        margin-bottom: 0;
        font-size: 1.2rem;
        line-height: 1.5;
        font-weight: 400;
        text-transform: capitalize;
        border-radius: 2px
    }

    .toolbox-horizontal .widget:before {
        content: "ï¸";
        font-family: "Font Awesome 5 free";
        position: absolute;
        top: 50%;
        right: 1.25em;
        margin-top: 1px;
        transform: translateY(-50%);
        font-size: 1.2rem;
        font-weight: 900
    }

    .toolbox-horizontal .widget.opened>ul {
        opacity: 1;
        visibility: visible
    }

    .toolbox-horizontal .widget ul,.toolbox-horizontal .widget ul:before {
        content: "";
        position: absolute;
        border: 1px solid #eee
    }

    .toolbox-horizontal .widget ul {
        top: 100%;
        z-index: 1000;
        width: 21rem;
        margin-top: 1rem;
        padding: 1rem 1.4rem;
        background-color: #fff;
        opacity: 0;
        visibility: hidden
    }

    .toolbox-horizontal .widget ul:before {
        top: -6px;
        left: 22px;
        height: 11px;
        width: 11px;
        border-width: 1px 0 0 1px;
        background-color: #fff;
        transform: rotate(45deg)
    }

    .toolbox-horizontal .widget ul li {
        display: flex;
        justify-content: space-between
    }
}

@media (min-width: 992px) {
    .toolbox-wrap .filter-actions:first-child {
        padding:0
    }

    .toolbox-wrap .sidebar-toggle-btn {
        display: none
    }

    .toolbox-wrap>.closed {
        margin: 0
    }

    .toolbox-wrap>.closed .sidebar-content {
        display: none;
        border-color: transparent;
        background: transparent
    }

    .toolbox-wrap .filter-clean {
        display: none;
        position: absolute;
        right: 0;
        top: -40px
    }
}

@media (min-width: 1200px) {
    .select-menu:not(:last-child):not(.toolbox-show) {
        margin-right:2rem
    }

    .toolbox .shop-sidebar {
        margin-right: 2rem
    }
}

@media (max-width: 991px) {
    .toolbox .sidebar-fixed {
        margin-right:0
    }

    .toolbox .sidebar-content {
        display: block
    }

    .sidebar-content .select-menu {
        display: block;
        margin: 0;
        font-size: 1.4rem
    }

    .sidebar-content .select-menu ul {
        position: static;
        width: 100%;
        padding: 0;
        border: 0;
        color: #666;
        margin: 0 0 1.1rem;
        opacity: 1;
        visibility: visible
    }

    .sidebar-content .select-menu ul a:before {
        width: 18px;
        height: 18px;
        margin-top: 0
    }

    .sidebar-content .select-menu:before,.sidebar-content .select-menu>a:before,.sidebar-content .select-menu ul:before {
        content: none
    }

    .sidebar-content .select-menu-toggle {
        display: block;
        border-width: 3px 0 0;
        padding: 2rem 2px 1.6rem;
        font-size: 1.5rem;
        font-weight: 600;
        text-transform: capitalize
    }

    .sidebar-content .toolbox-item:first-child a {
        border: none
    }
}

@media (max-width: 767px) {
    .toolbox-item.show-info,.toolbox-item>span,.toolbox-item label {
        display:none
    }
}

@media (max-width: 575px) {
    .toolbox-item.select-box {
        margin-right:0
    }

    .toolbox-item.select-box~.toolbox-item.right-sidebar-toggle {
        margin-left: 1rem
    }

    .toolbox-item.toolbox-layout {
        display: none
    }

    .sticky-sidebar .filter-actions .sidebar-toggle-btn,.toolbox .toolbox-left .left-sidebar-toggle {
        margin-right: 1rem
    }

    .toolbox .toolbox-left {
        margin: 0
    }

    .toolbox .left-sidebar-toggle {
        margin-right: 0.5rem
    }

    .toolbox .toolbox-sort .form-control {
        max-width: 12.8rem
    }

    .toolbox-horizontal {
        justify-content: flex-start;
        flex-direction: row
    }

    .toolbox-horizontal .toolbox-left {
        margin-right: auto
    }

    .toolbox-horizontal .toolbox-right {
        margin-left: auto
    }

    .toolbox-horizontal .toolbox-item.toolbox-show {
        margin-right: 0
    }

    .toolbox-pagination {
        flex-direction: column
    }

    .toolbox-pagination>.show-info {
        margin-right: 0
    }

    .toolbox-pagination>:not(:last-child) {
        margin-bottom: 1rem
    }
}

@media (max-width: 479px) {
    .sticky-toolbox.fixed {
        padding:1rem 1.5rem 0
    }

    .toolbox {
        padding-right: 0;
        padding-left: 0
    }

    .toolbox .toolbox-sort .form-control {
        max-width: 12.5rem;
        padding-left: 1rem
    }

    .toolbox select {
        padding-top: 0.63rem;
        padding-bottom: 0.63rem;
        padding-right: 2rem
    }

    .toolbox .btn-sm.toolbox-item,.toolbox .btn.toolbox-item {
        font-size: 1.2rem;
        padding: 0.61em 0.92em 0.61em
    }
}

.title-wrapper {
    text-align: center;
    margin-bottom: 27px
}

.title-wrapper .title {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.8;
    margin-bottom: 0
}

.title-wrapper span.title-info {
    display: flex;
    direction: ltr;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    margin: 0 auto;
    line-height: 1;
    letter-spacing: 0.3px
}

.title-wrapper span.title-info:before {
    display: inline-block;
    content: "";
    border-bottom: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-top: 2px solid #e1e1e1;
    margin-right: 20px;
    max-width: 6rem
}

.title-wrapper span.title-info:after {
    display: inline-block;
    content: "";
    border-bottom: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-top: 2px solid #e1e1e1;
    margin-left: 20px;
    max-width: 6rem
}

.title-wrapper.title-white .title {
    color: #fff
}

.title-wrapper.title-white span.title-info {
    color: #fff;
    opacity: 0.6
}

.title-wrapper.title-white span.title-info:after,.title-wrapper.title-white span.title-info:before {
    border-top-color: rgba(255,255,255,0.6)
}

.title-wrapper.title-underline {
    border-bottom: 1px solid #e1e1e1
}

.title-wrapper.title-underline .title {
    padding: 0px 0px 14px 0px;
    color: #444444;
    font-size: 2rem;
    font-weight: 700;
    text-align: left
}

.btn,h1,h2,h3,h4,h5,h6,p {
}

.product-details>.btn-wishlist {
    top: 1.8rem
}

.menu-active-underline>li>a:before {
    bottom: 0rem;
}

.header-top .header-left {
    position: relative;
    overflow: hidden
}

.header-top .header-left i {
    font-size: 1.7rem
}

.header-top .welcome-msg {
    padding: 1.2rem 0 1.1rem;
    letter-spacing: -0.025em
}

.header-top .welcome-msg .contact {
    margin-right: 22px
}

.header-middle .header-search i {
    font-size: 17px;
}

.header-middle .divider {
    height: 1.9rem;
    background-color: #4E4E4E
}

.header-middle .search-toggle i {
    color: rgba(255,255,255,0.9)
}

.cart-dropdown.type3 .cart-toggle {
    /* padding: 17px 13px 16px; */
}

.cart-dropdown.type3 .cart-toggle i {
    font-size: 1.3rem;
    margin-right: 7px
}

.cart-dropdown.type3 .cart-toggle:hover {
    /* color: #fff; */
}

.shape-divider {
    position: relative;
    z-index: 1
}

.shape-divider .shape1 svg,.shape-divider .shape2 svg {
    position: absolute
}

.shape-divider .shape1 svg {
    transform: translateY(-70.5%);
    width: 100vw
}

.shape-divider .shape2 svg {
    transform: translateY(-99%);
    width: 100vw
}

.intro-section {
    overflow: hidden
}

.intro-slider figure img {
    min-height: 734px;
    object-fit: cover
}

.intro-slider .banner-content {
    position: absolute;
    margin: 0 20px;
    top: 25.5%
}

.intro-slider.owl-carousel .owl-nav button {
    font-size: 71px;
    color: #222222;
    font-weight: bold;
    width: 1em;
    height: 1em;
    border: none
}

.intro-slider.owl-carousel .owl-nav button i {
    display: none
}

.intro-slider.owl-carousel .owl-nav button.owl-prev {
    left: 5%
}

.intro-slider.owl-carousel .owl-nav button.owl-prev:before {
    content: "<"
}

.intro-slider.owl-carousel .owl-nav button.owl-next {
    right: 5%
}

.intro-slider.owl-carousel .owl-nav button.owl-next:before {
    content: ">"
}

.intro-slider.owl-carousel .owl-nav button:hover {
    color: #0f172a!important;
    background-color: transparent!important
}

.intro-slide1 .banner-content,.parallax .banner-content {
    text-align: center
}

.intro-slide1 .banner-subtitle,.parallax .banner-subtitle {
    font-size: 2rem;
    letter-spacing: -0.75px;
    line-height: 1.5;
    /* font-weight: 400; */
    color: #f3f3f3;
    margin-bottom: 30px;
}

.intro-slide1 .banner-title,.parallax .banner-title {
    font-size: 5.5em;
    line-height: 1.2;
    letter-spacing: -2.45px
}

.intro-slide1 p,.parallax p {
    color: #666666;
    font-size: 2em;
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: -0.1px;
    margin-bottom: 3.8rem
}

.intro-slide1 .banner-content {
    left: 95px;
    right: 0
}

.intro-slide2 .banner-content {
    position: relative;
    left: 1.4%;
    top: 25%
}

.intro-slide2 .banner-subtitle {
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.9px;
    margin-bottom: 5.1rem;
    /* color: white; */
}

.intro-slide2 .banner-title {
    font-size: 6em;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 1.7rem
}

.intro-slide2 p {
    color: #666666;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1em;
    margin-bottom: 1.8rem
}

.intro-slide2 .custom-single-image {
    position: absolute;
    top: 0;
    right: -4.7%;
    min-width: 50rem;
    z-index: -1
}

.service-list-section {
    z-index: 3;
    margin-top: -16.4rem
}

.service-list-section .owl-stage-outer {
    padding: 3rem;
    margin: -3rem
}

.home .icon-box-side {
    transition: 0.5s;
    padding: 3.5rem 1rem 3.5rem;
    background-color: #FFF;
    border-radius: 8px;
    box-shadow: 5px 5px 30px 0px rgba(0,0,0,0.05);
}
.home .icon-box-side:hover{
    background: #eddfff;
    box-shadow: 5px 5px 30px 0px rgba(183,203,204,0.9);
}

.home .icon-box-side .icon-box-icon {
    font-size: 4rem;
    height: 3.7rem;
    color: #222
}

.home .icon-box-side .d-icon-card {
    font-size: 4.8rem
}

.home .icon-box-side .d-icon-truck {
    font-size: 5.4rem
}

.home .icon-box-side p {
    font-size: 1.6rem;
    line-height: 1.45em
}

.home .icon-box-side .icon-box-title {
    font-size: 1.8rem;
    margin-bottom: 4px
}

.banners-group .height-x2 {
    height: 34rem
}

.banners-group .height-x1 {
    height: 24rem
}

.banners-group .banner-title {
    font-size: 2rem;
    color: #222;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 1.7rem
}

.banners-group .banner {
    position: relative;
    margin-bottom: 1.7rem;
    border-radius: 3px;
    overflow: hidden
}

.banners-group .banner-content {
    position: absolute;
    left: 7%;
    margin-top: 1px
}

.banners-group .btn {
    letter-spacing: -0.025em
}

.shape-divider2,.shape-divider3,.shape-divider4 {
    overflow: hidden
}

.shape-divider2 svg,.shape-divider3 svg,.shape-divider4 svg {
    position: absolute;
    left: 0;
    width: 100vw;
    z-index: 1
}

.shape-divider2 svg {
    top: 0
}

.shape-divider3 svg {
    bottom: -3px
}

.parallax-section .parallax {
    min-height: 68.9rem
}

.parallax-section .container {
    height: 100%
}

.parallax-section .banner-content {
    position: absolute
}

.banner-section {
    overflow: hidden;
    z-index: 3;
    padding-bottom: 10rem;
    background-image: url(./images/banner.jpg);
}

.banner-section .banner-image-wrapper {
    position: relative;
    margin: -8px 0 0 -1.8rem
}

.banner-section .banner-image1,.banner-section .banner-image2 {
    position: absolute
}

.banner-section .banner-image1 {
    left: -7%;
    top: 3%
}

.banner-section .banner-image2 {
    left: 68%;
    bottom: -12%
}

.banner-section .banner-image3 {
    position: relative;
    z-index: 2
}

.banner-section .banner-image3 img {
    width: auto
}

.banner-section .banner-subtitle {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.6px;
    margin-bottom: 7px
}

.banner-section .banner-title {
    font-size: 4em;
    line-height: 1.25;
    letter-spacing: -2px;
    margin-bottom: 37px
}

.banner-section .textwidget {
    display: flex
}

.banner-section .textwidget h3 {
    margin-top: -6px;
    letter-spacing: -1.75px;
    width: 4.5rem
}

.banner-section .textwidget h5 {
    letter-spacing: -0.1px;
    line-height: 1.2
}

.banner-section .textwidget p {
    color: #999;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.1px
}

.parallax-section2 .parallax {
    min-height: 50.1rem
}

.shape-divider4 svg {
    top: -24%
}

.blog-section {
    position: relative;
    z-index: 2;
    margin-top: -30rem
}

.blog-section .title-wrapper span.title-info {
    letter-spacing: -0.022em
}

.blog-section .title-wrapper span.title-info:after,.blog-section .title-wrapper span.title-info:before {
    border-color: #CBCBCB
}

.blog-section .shape-divider {
    position: static
}

.blog-section .owl-stage-outer {
    margin: -25px;
    padding: 25px
}

.blog-section .post-frame {
    background-color: #fff;
    box-shadow: 0px 5px 30px 0px rgba(0,0,0,0.05);
    box-shadow: 5px
}

.blog-section .post-frame .post-details {
    padding: 2.3rem 0 2.2rem
}

.blog-section .post-frame .btn {
    font-size: 1.3rem;
    letter-spacing: -0.025em
}

.blog-section .post-frame .post-content {
    margin-bottom: 2rem
}

.brand-section img {
    box-shadow: 0 0 20px 4px rgba(0,0,0,0.04)
}

.minipopup-box .btn.btn-sm {
    font-size: 1.3rem
}

.footer-middle .logo-footer {
    margin-bottom: 3.1rem
}

.footer-middle .widget-info li {
    margin-bottom: 1.6rem
}

.shop .page-header .breadcrumb {
    font-size: 1.6rem;
    padding-top: 7px;
    padding-bottom: 2px
}

.shop .delimiter {
    font-size: 1.8rem
}

.shop .sidebar li {
    font-size: 1.5rem;
    padding-top: 1.4rem
}

.shop .select-menu ul {
    width: 21rem
}

.shop .select-menu ul li {
    display: flex
}

.shop .select-menu ul a {
    padding-left: 0
}

.shop .select-menu ul .count {
    margin-left: auto
}

.single-product .breadcrumb,.single-product .card-header a,.single-product li,.single-product td {
}

.single-product .title {
    font-size: 2.4rem
}

.accordion .card-header .collapse {
    color: #222
}

.accordion .card-header a {
    padding: 2.7rem 0
}

.accordion .card-body {
    padding: 0
}

.accordion ul {
    padding-inline-start:0}

.accordion ul li {
    list-style: inside;
    color: #000;
}

.accordion #product-tab-description .description-title~p,.accordion .card-description .description-title~p {
    line-height: 1.6
}

@media (max-width: 1199px) {
    .main-nav .menu>li {
        margin-right:2.9rem
    }
}

@media (max-width: 991px) {
    .header-middle .header-left,.header-middle .header-right {
        /* flex:none; */
        margin-left: unset;
    }

    .intro-slide2 .custom-single-image {
        transform: translateX(50%)
    }

    .parallax-section .parallax-section2 .parallax {
        min-height: 40rem
    }

    .banner-section {
        padding-bottom: 4rem
    }
}

@media (max-width: 575px) {
    .header-top .wishlist {
        display:none
    }

    .welcome-msg {
        transform: translateX(0);
        animation: 6s linear 2s 1 show_msg_first,12s linear 8s infinite show_msg
    }

    .intro-slider .banner {
        font-size: 0.9rem
    }

    .intro-slider figure img {
        min-height: 65rem
    }

    .intro-slide1 .banner-content,.intro-slide2 .banner-content {
        top: 17%
    }
}

.icon-box-side i{
        font-size: 44px;
        margin-bottom: 20px;
        /* color: black; */
}

.pointer{
  cursor:pointer;
}
.accordian-link h3{
  font-size:clamp(18px,2vw,30px);
}
.user_image{
  width:50px;
  height:50px;
  object-fit:contain;
  background:#00000030;
  border-radius:50%;
  padding:.20rem;
}
.review_answer{
  max-height:150px;
  overflow-y:auto;
}
/*scrollbar width */
.review_answer::-webkit-scrollbar {
  width: 10px;
}

/*scrollbar Track */
.review_answer::-webkit-scrollbar-track {
  background: rgb(189, 190, 189);
  border-radius: 8px;
}

.review_answer::-webkit-scrollbar-thumb {
  background-color: green;
  outline: 1px solid darkgreen;
  border-radius: 8px;
}

.down{
        margin-left: auto;
}

.shop-table {
    text-align: left;
    border: 1px solid #292424;
}

.shop-table tbody {
    border-bottom: 1px solid #292424;
}
.shop-table td {
    padding: 1.5rem 1rem 1.5rem 0;
    border-top: 1px solid #393434;
    font-size: 1.4rem;
}

.shop-table th {
    padding: 0.3rem 0 0.3rem;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.875;
    text-transform: uppercase;
    color: #222
}

.shop-table img {
    display: block;
    max-width: 100px;
    width: 100%;
    border-radius: 8px;
    padding: 6px;
    border: 1px solid var(--border-info-color);
}
.shop-table .product-thumbnail a {
    display: block;
    width: 100px
}

.shop-table .remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    font-size: 1.2rem;
    color: #222;
    border: 1px solid #ccc;
    border-radius: 50%
}

.shop-table .product-name {
    white-space: normal;
    color: #000
}

.shop-table td.product-remove {
    padding-right: 0;
    width: 23px
}

.shop-table .product-price {
    display: table-cell
}

.added{
    cursor: pointer;
    color: #f00000 !important;
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    !i;
    !;
}

.price-input {
  width: 100%;
  display: flex;
  margin: 30px 0 35px;
}
.price-input .field {
  /* display: flex; */
  width: 100%;
  height: 43px;
  align-items: center;
}
.field input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 14px;
  /* margin-left: 12px; */
  border-radius: 5px;
  text-align: center;
  -moz-appearance: textfield;
  background: #eee;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.price-input .separator {
  width: 60px;
  display: flex;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 15px;
}
.slider {
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}
.slider .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: #0f172a;
}
.range-input {
  position: relative;
}
.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #0f172a;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #0f172a;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

/* Support */
.support-box {
  top: 2rem;
  position: relative;
  bottom: 0;
  text-align: center;
  display: block;
}
.b-btn {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.b-btn.paypal i {
  color: blue;
}
.b-btn:hover {
  text-decoration: none;
  font-weight: bold;
}
.b-btn i {
  font-size: 20px;
  color: yellow;
  margin-top: 2rem;
}


.step-by .title.title-step:not(:last-child):after {
    content: "\f105";
    display: inline-block;
    position: absolute;
    right: -3rem;
    top: 52%;
    line-height: 0;
    vertical-align: middle;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 15px;
    background-color: #fff;
    color: #c7d300;
}

.step-by .title.title-step.visited {
    color: #222
}

.step-by .title.title-step.visited~.active:before {
    color: #222
}

.step-by .title.title-step.active {
    color: #000000 !important;
}

.step-by .title.title-step:first-child {
    margin-left: 0;
    font-size: 24px;
    text-transform: capitalize;
}

.step-by .title.title-step:first-child:before {
    display: none
}

.step-by .title.title-step:last-child {
    margin-right: 0
}

.step-by {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.9rem 0;
}
h3.title.title-simple.title-step a {
    background-color: #c7d300;
    border-radius: 4px;
    padding: 13px;
    color: #fff;
    font-size: 14px;
    text-transform: capitalize;
}
.step-by .title.title-step {
    margin: 0 3.4rem 0 1rem;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #666;
    letter-spacing: -0.5px;
    padding: 0.4rem 0;
}


.cart.main {
    border-top: 1px solid #e1e1e1
}

.accordion {
    border-bottom: 1px solid #e1e1e1
}

.card-header {
    font-size: 1.4rem
}

.card-header>a {
    padding-left: 2px
}

.card-body {
    margin-bottom: 2.4rem;
    padding: 0
}

.form-control {
}

.remove {
    margin-right: 0;
    width: 2rem;
    text-align: center
}

.summary {
    line-height: 2.15
}

.summary .title {
    margin-bottom: 1rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid #e1e1e1
}

.btn-checkout {
    display: block;
    padding-top: 1.06em;
    padding-bottom: 1.06em;
    border-color: #333;
    background-color: #333
}

.product-thumbnail figure {
    position: relative;
    display: inline-block
}

.shop-table th {
    padding: 0.2rem 0 1.8rem;
    font-size: 15px;
    font-weight: 600;
    color: #999;
    line-height: 1;
    letter-spacing: 0;
    padding: 12px;
    text-transform: capitalize;
    font-family: "Roboto", sans-serif;
}

.shop-table td {
    padding: 1.6rem 2rem 1.6rem 0
}

.shop-table td:last-child {
    padding-right: 0
}

.shop-table td:first-child {
    padding: 2rem 2rem 1.5rem 0;
    padding: 14px;
}

.shop-table .quantity.form-control {
    font-weight: 700
}

.product-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.2rem;
    width: 2.3rem;
    height: 2.3rem;
    border: 1px solid #ccc;
    border-radius: 50%;
    background-color: #fff;
    color: #222;
    margin-left: 10px;
}

.summary {
    padding: 2.4rem 3rem 3rem;
    border: 1px solid #e1e1e1;
    border-radius: 2px;
}

.summary-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #222;
    text-transform: uppercase;
    padding-bottom: 1.9rem;
    margin-bottom: 0;
   
}

.cart .shipping {
    margin-bottom: 0.3rem;
}

.summary-subtotal {
    border-bottom: 0px solid #e1e1e1;
}

.summary-subtitle {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #222;
    margin-bottom: 0;
    padding: 2rem 0;
}
.summary-subtotal-price {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 0;
    text-align: right;
}

.summary td:last-child, .summary th:last-child {
    text-align: right;
}
.summary-total-price {
    font-size: 2rem;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--theme-color);
    text-align: right;
    margin-bottom: 0;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,calc(100% / 12));
    grid-auto-rows: auto
}

.category-grid>* {
    float: left;
    padding: 1rem
}

.category-grid .height-x2 {
    grid-column-end: span 4;
    grid-row-end: span 2
}

.category-grid .height-x1 {
    grid-row-end: span 1;
    grid-column-end: span 3
}

.category-grid .w-2 {
    grid-column-end: span 5
}

.category-grid .category>a {
    display: block
}

.category-grid .category {
    width: 100%;
    height: 100%
}

.category-grid .category>a,.category-grid .category figure,.category-grid .category img {
    width: 100%;
    height: 100%
}

.category-grid .category .category-content {
    left: 3rem;
    top: 2.8rem
}

.category-grid .category .category-name {
    font-weight: 500;
    letter-spacing: -0.4px;
    margin-bottom: 1px
}

.category-grid img {
    object-fit: cover;
    border-radius: 0
}

.category5 .banner-content {
    position: absolute
}

.category5 .banner-content .banner-title {
    font-size: 2.6rem;
    letter-spacing: -0.75px;
    margin-bottom: 1.3rem
}

.category5 .banner-content p {
}

.grey-section.d-flex.align-items-center.h-100 {
    padding: 2em;
}

.slider {
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
  margin-top: 40px;
}
.slider .progress {
  height: 100%;
  left: 0%;
  right: 0%;
  position: absolute;
  border-radius: 5px;
  background: #0f172a;
}
.range-input {
  position: relative;
}
.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -7px;
  left: -2px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #0f172a;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #0f172a;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.searchInputWrapper {
  position: relative;
  width: 100%;
}

.searchInput {
  /* width: 20rem; */
  /* height: 4rem; */
  padding: 8px 1rem;
  /* border-radius: 2rem; */
  border: 1px solid #0f0f0f;
  transition: transform 0.1s ease-in-out;
  width: 100%;
  /* outline: 1px solid #0f0f0f; */
  background-color: transparent;
}

::placeholder {
  color: #a1a1a1;
}

/* hide the placeholder text on focus */
:focus::placeholder {
  text-indent: -999px
}

.searchInput:focus {
  /* outline: none; */
  /* transform: scale(1.1); */
  /* transition: all 0.1s ease-in-out; */
  outline: 1px solid #0f0f0f;
}

.searchInputIcon {
  position: absolute;
  right: 12px;
  top: 12px;
  color: #0f172a;
  transition: all 0.1s ease-in-out;
}

.container:focus-within > 
.searchInputWrapper > .searchInputIcon {
  right: 0.2rem;
}

.searchlist{
    position: absolute;
    z-index: 9999;
}

.searchtable{
    /* position: relative; */
    /* right: 10%; */
}

.searchlist {
  margin-top: 1rem;
  width: 100%;
}

.searchtable {
  background-color: #f9fbed;
  padding: 14px;
  /* border-radius: 20px; */
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  box-shadow: 0px 2px 18px 18px #61616112;
}

.product-item {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  /* border-bottom: 1px solid #ddd; */
}

.product-img {
  margin-right: 15px;
}

.product-image {
  /* border-radius: 50%; */
}

.product-single .product-image{
    border: 1px solid #efefef;
    border-radius: 30px;
    overflow: hidden;
}

.product-details {
  font-size: 16px;
  color: #333;
  text-align: center;
}

.product-item:last-child {
  border-bottom: none;
}

.text-dark {
  color: #000;
}
.product-image11 {
    width: 72px;
    height: 72px;
    /* border-radius: 50%; */
    border-radius: 6px;
    border: 1px solid rgb(0 0 0 / 10%);
}

.icon-1{
     display: block;
}
.icon-2{
     display: none;
}

.Wishlistactive .icon-1{
     display: none;
}

.Wishlistactive .icon-2{
     display: block;
     /* color: red; */
}
.widget.widget-info a {

    word-break: break-all;
}

ul{
    list-style: none;
    padding: 0;
}
.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-icons li a {
    color: #fff;
    position: relative;
    display: block;
}
.header-icons li a .count{
    position: absolute;
    top: -7px;
    right: -10px;
    background-color: #0d6efd;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
}
.banner-sec{
    /* background-image: url(../images/banner-1.jpg); */
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    /* height: 100vh; */
}
.banner-sec::after{
    /* content: ""; */
    width: 238px;
    height: 238px;
    background-image: url(../images/flower-img.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.banner-content {
    /* padding: 80px 0; */
    text-align: left;
    margin-bottom: 30px;
}
.banner-content span {
    font-size: 20px;
    color: #f0ce16;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}
.banner-content h1 {
    font-size: 7rem;
    line-height: 7rem;
    color: #000000;
    margin-bottom: 40px;
    /* text-transform: uppercase; */
    margin-top: 20px;
    margin-bottom: 10px;
    letter-spacing: -2px;
}
.banner-content p {
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 32px;
    color: #000000;
}
.primary-btn {
  padding: 16px 46px;
  background-color: #0d6efd;
  color: #ffffff;
  /* border: 1px solid #5287d0; */
  position: relative;
  z-index: 1;
  text-transform: capitalize;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.primary-btn::before {
  content: "";
  position: absolute;
  inset: 0px;
  width: 0%;
  height: 100%;
  background-color: #0d6efd;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: -1;
  border-radius: inherit;
}
.primary-btn:hover {
  background: #0d6efd;
  color: #fff;
}
.primary-btn:hover::before {
  width: 100%;
}

.common-head > span {
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 10px;
    display: inline-block;
    color: #414e9c;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.sp-tb{
    padding-top: 80px;
    padding-bottom: 80px;
}
.sp-t{
    padding-top: 80px;
}
.sp-b{
    padding-bottom: 80px;
}

.products-wrapper {
    background-color: #b0cd1b14;
    /* background: url(../images/light-bg.png) #f9fbed center no-repeat; */
    background-size: cover;
}

.swiper-pagination {
    position: static;
    margin-top: 25px;
}

.swiper-pagination-bullet-active {
    background: #0f172a;
    width: 40px;
    border-radius: 50px;
}

.features-sec{
    /* background-color:#f9fbed; */
}
.features-item{
    overflow: hidden;
    border-radius: 30px;
    padding: 50px 30px;
    background-color: #b0cd1b14;
    /* background: url(../images/box-bg.png) #414e9c center no-repeat; */
    background-size: cover;
    transition: all ease-in-out .3s;
    box-shadow: 2px 2px 10px #00000026;
}
.features-item:hover, .features-sec .row .col-lg-4:nth-child(2) .features-item{
    background-color: #b1ce1e;
    transform: rotate(-4deg)
}
.features-item:hover svg, .features-item:hover h3, .features-item:hover p, .features-sec .row .col-lg-4:nth-child(2) .features-item, .features-sec .row .col-lg-4:nth-child(2) .features-item svg, .features-sec .row .col-lg-4:nth-child(2) .features-item h3{
    color: #fff;
}
.features-item img{
    transition: all ease-in-out .3s;
}
.features-item:hover img{
    transform: scale(1.1);
}

.features-item h3{
    font-size: 22px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 25px 0 10px;
}
.features-item p{
    margin: 0;
    /* color: #fff; */
}
.features-item svg{
    width: 62px;
    color: #0f0f0f;
}

.features-sec .row .col-md-3:nth-child(even) .features-item{
    margin-top: 60px;
}

.offcanvas.offcanvas-top {
    height: 20vh;
    padding: 28px 0px;
    z-index: 1100;
    background-color: #f9fbed;
}

.product-search {
    text-align: start;
    padding: 0;
}

.product-search a{
    color: #0f172a;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 4px;
    display: inline-block;
}

.product-details-content{
    text-align: start;
}

.inner-banner {
    padding: 40px 0;
    background-color: #bce4fd;
    position: relative;
    /* border-top: 1px solid rgb(0 0 0 / 10%); */
    padding-top: 100px;
}

.inner-banner::before {
    /* content: ""; */
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-image: url(../images/inner-leaf1.png);
    background-position: top left;
    background-size: contain;
    background-repeat: no-repeat;
}
.inner-banner::after {
    /* content: ""; */
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background-image: url(../images/inner-leaf2.png);
    background-position: bottom right;
    background-size: contain;
    background-repeat: no-repeat;
}

.inner-banner-content {
    text-align: center;
    color: #fff;
}
.inner-banner-content h1 {color: #00;}
.inner-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.inner-pagination li{
    font-size: 2rem;
    text-transform: capitalize;
}
.inner-pagination li a{
    color: #000;
}

.inner-pagination li + li:before{
    content: "\f054";
    font-family: 'Font Awesome 5 Free';
    font-size: 12px;
    color: #000;
    font-weight: 600;
    margin: 0 14px;
}


.secondary-btn{
    font-size: 14px;
    background-color: #f9fbed;
    color: #414e9c;
    padding: 5px 4px;
    border-radius: 50px;
    font-weight: 500;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all ease-in-out .3s;
    /* border: 2px solid #414e9c; */
}

.secondary-btn:hover{
    /* background-color: #fff; */
    /* color: #fff; */
    gap: 15px;
}

.about-sec{
    /* background-image: url(../images/about-bg.png) #f9fbed center no-repeat; */
    background-size: cover;
}

.delhivery-info-item{
    /* background-color: #f9fbed; */
    padding: 40px 30px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0px 2px 15px 8px #4f4f4f1f;
    transition: all ease-in-out .3s;
}

.delhivery-info-item:hover{
    box-shadow: none;
}

.delhivery-info-item h3{
    font-size: 22px;
    margin: 20px 0 10px 0;
} 

@media (min-width: 991px){
    .banner-img{
    position: absolute;
    bottom: 0;
    right: 0;
}
}

.banner-img{
    width: 100%;
    max-width: 580px;
}
.img-hover{
    position: relative;
    transition: all ease-in-out .3s;
    z-index: 1;
    overflow: hidden;
}

.img-hover:after{
    content: "";
    position: absolute;
    right: -140%;
    top: 0;
    width: 200px;
    height: 100%;
    transform: skew(30deg);
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 99;
    transition: all ease-in-out .3s;
}

.img-hover:hover.img-hover:after{
    right: 160%;
}

.img-hover img{
    transition: all ease-in-out .3s;
}

.img-hover:hover img{
    transform: scale(1.05);
}

#cookiePopup {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        background: #000;
        padding: 15px;
        display: flex;
        flex-wrap: wrap;
        z-index: 999999;
        gap: 20px;
        align-items: center;
        justify-content: center;
        display: none;
    }

    #cookiePopup h4 {
        font-size: 25px;
        color: #fff;
        margin-bottom: 15px;
    }

    #cookiePopup p {
        font-size: 15px;
        color: #fff;
        margin-bottom: 15px;
        letter-spacing: 1px;
        line-height: 1.5;
        max-width: 850px;
    }

    #cookiePopup p a {
        color: #fff;
        text-decoration: underline;
    }

    .cookieBtns {
        display: inline-flex;
        gap: 10px;
    }

    .cookieBtns button {
        font-size: 15px;
        margin: 10px 0;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        background: transparent;
        cursor: pointer;
        transition: all 0.5s ease;
        border: 2px solid #fff;
    }

    .cookieBtns button:last-child {
        background-color: #fff;
        color: #4070f4;
    }

.about {
    padding: 40px 0px;
    background-color: #fff;
}
.about .about__thumb {
    position: relative;
    max-width: 600px;
}
.about .about__thumb-big {
    position: relative;
}
.about .about__thumb-big::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 60px;
    height: 400px;
    background-color: #ffb800;
}
.about .about__thumb-big img {
    min-height: 600px;
}
.about .about__thumb img {
    border-radius: 20px;
}
.about .about__thumb-sm {
    position: absolute;
    right: 0px;
    bottom: 60px;
    width: 260px;
}
.about .about__thumb-sm img {
    min-height: 130px;
}
.about .about__thumb img {
    border-radius: 20px;
}
.about .about__thumb-big {
    position: relative;
}
.about .about__content {
    padding: 0px 30px;
}
.section__content span {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #5287d0;
    margin-top: -8px;
}
.section__content h2 {
    font-size: 48px;
    line-height: 58px;
    color: #04009a;
    font-weight: 700;
    margin-top: 24px;
}
.section__content p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #666666;
    margin-top: 3px;
}
.divider {
    margin: 40px 0px;
    background-color: #d9d9d9;
    height: 1px;
    width: 100%;
    border: 0px solid transparent !important;
    opacity: 1;
}
.about .about__content-inner ul {
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.about .about__content-inner ul li {
    font-size: 16px;
    position: relative;
    padding-left: 24px;
    font-weight: 400;
    line-height: 30px;
    color: #282828;
    /* background: #0d6efd; */
    margin: 8px 0;
    display: inline-block;
    padding: 0px 0 0 20px;
    border-radius: 6px;
    list-style: none;
    /* box-shadow: rgb(0 0 0 / 34%) 2.4px 2.4px 3.2px; */
}
.about .about__content-inner ul li::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #0d6efd;
    border-radius: 50%;
}
.service {
    background-color: #f6feff;
    position: relative;
    z-index: 1;
    padding-bottom: 5px;
    overflow: hidden;
}
.service::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 30%;
    background-color: #fff;
    z-index: -2;
}
.service .cloud {
    position: absolute;
    z-index: -1;
    left: 0px;
    right: 0px;
    bottom: 0px;
}
.service .cloud img {
    width: 100%;
}
.service .service__single-active {
    background-color: #04009a;
    padding-bottom: 24px;
}
.service .service__single {
    padding: 0px 24px 24px 24px;
    background: #fff;
    text-align: center;
    border-radius: 50px 50px 15px 15px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: relative;
    margin-top: 50px;
    border-radius: 50px 50px 15px 15px;
    border: 1px solid #ddd;
}
.service .service__single::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: calc(100% - 90px);
    border-radius: 50px 50px 15px 15px;
    border: 1px solid #ddd;
    -webkit-transition: border-color 0.5s ease-in-out;
    transition: border-color 0.5s ease-in-out;
    z-index: -1;
}
.service .service__single:hover {
    background-color: #04009a;
}
.service .service__single:hover::before {
    border-color: #04009a;
}
.service .service__single:hover .service__single-icon {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}
.service .service__single-icon {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    position: relative;
    top: -50px;
    margin-bottom: -50px;
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.service .service__single-icon span {
    font-size: 40px;
    line-height: 34px;
    font-weight: 600;
    color: #5287d0;
}
.service .service__single-content {
    margin-top: 35px;
    margin-bottom: 35px;
}
.service .service__single-content h5 {
    margin-bottom: 10px;
    line-height: 1.4;
    color: #04009a;
    font-weight: 700;
    font-size: 22px;
}
.service .service__single-content p {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}
.service .service__single-thumb {
    position: relative;
}
.service .service__single-thumb a {
    width: 100%;
    border-radius: 10px;
}
.service .service__single-thumb img {
    border-radius: 10px;
    width: 100%;
    min-height: 240px;
}
.service .service__single-active {
    background-color: #04009a;
    padding-bottom: 24px;
}
.service .service__single-active::before {
    height: 100%;
    border-color: #04009a;
}
.service .service__single-active .service__single-icon {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}
.service .service__single-active h5,
.service .service__single-active p {
    color: #fff;
}
.service .service__single:hover h5,
.service .service__single:hover p {
    color: #fff;
}
.service .service__single::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: calc(100% - 90px);
    border-radius: 50px 50px 15px 15px;
    border: 1px solid #ddd;
    -webkit-transition: border-color 0.5s ease-in-out;
    transition: border-color 0.5s ease-in-out;
    z-index: -1;
}
.counter {
    padding: 20px 0px 40px 0;
    background-color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.counter .counter__inner {margin-top: 50px;}
.counter .counter__single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    /* align-items: self-start; */
    /* -webkit-box-orient: vertical; */
    /* -webkit-box-direction: normal; */
    -ms-flex-direction: column;
    /* flex-direction: row; */
    gap: 20px;
    row-gap: 6px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /* -webkit-box-pack: center; */
    -ms-flex-pack: center;
    /* justify-content: center; */
    /* background: #bce4fd; */
    margin: 15px 0;
    border-radius: 10px;
    /* padding: 20px; */
    align-content: flex-end;
}
.counter .counter__single h3 {
    color: #000;
    font-size: 22px;
    margin-bottom: 10px;
}
.counter .counter__single-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    /* display: -webkit-box; */
    display: -ms-flexbox;
    /* display: flex; */
    /* -webkit-box-align: center; */
    -ms-flex-align: center;
    /* align-items: center; */
    /* -webkit-box-pack: center; */
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #dde3fc;
    border-radius: 50%;
    background: #0d6efd;
    /* background: #f0ce16; */
    /* float: left; */
    float: left;
    text-align: center;
    display: inline-block;
}
.counter .counter__single-icon__inner {
    width: 30px;
    min-width: 30px;
    height: 50px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    /* display: flex; */
    /* -webkit-box-align: center; */
    -ms-flex-align: center;
    /* align-items: center; */
    /* -webkit-box-pack: center; */
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100px 100px 0px 0px;
    border-radius: 50%;
    margin: 10px;
}
.counter .counter__single p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #000000;
    margin: 0 auto 4px;
}
.team {
    padding: 70px 0px 70px;
    background-color: #fff;
}
.section__header {
    text-align: center;
    margin-bottom: 55px;
}
.section__header span {
    margin-bottom: 0px;
    color: #0d6efd;
    /* margin-top: -8px; */
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
    /* background: #bce4fd; */
    padding: 10px 20px 0;
    border-radius: 40px;
}
.section__header h2 {
    color: #000000;
    font-weight: 700;
    font-size: 36px;
    line-height: 47px;
    margin-top: 5px;
}
.priority {
    padding: 100px 0px;
    background-color: #f5f5f5;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.section__content span {
    font-size: 20px;
    font-weight: 400;
    color: #0d6efd;
    /* margin-top: -8px; */
    /* background: #bce4fd; */
    /* padding: 10px 20px; */
    /* border-radius: 39px; */
}
.section__content h2 {
    color: #000;
    font-weight: 700;
    margin-top: 16px;
    font-size: 48px;
    line-height: 54px;
}
.priority .priority__content-inner {
    margin-top: 40px;
}
.priority .priority__content-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: row;
  gap: 24px;
  margin-bottom: 30px;
  row-gap: 16px;
}
.priority .priority__content-single:nth-last-of-type(1) {
  margin-bottom: 0px;
}
.priority .priority__content-single-thumb {
  width: 85px;
  min-width: 85px;
  height: 85px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0px;
  background-color: #ffb800;
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
          clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.priority h5 {
    font-weight: 600;
    color: #04009a;
    margin-bottom: 5px;

}
.priority p {
    font-size: 14px;
}
.priority .priority__thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.priority .priority__thumb::after {
  content: "";
  position: absolute;
  top: 100px;
  left: 60px;
  width: 50%;
  height: 50%;
  border: 10px solid #ffb800;
  z-index: -1;
  border-top-left-radius: 60px;
}
.priority .thumb-lg {
  text-align: end;
  position: relative;
}
.priority .thumb-lg img {
  min-height: 400px;
  border-radius: 40px 211.5px 40px 40px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}
.priority .thumb-sm {
  position: relative;
  top: -170px;
  margin-bottom: -170px;
}
.priority .thumb-sm img {
  border-radius: 121px 25px 25px 25px;
  border-top: 8px solid #fff;
  border-right: 8px solid #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}
.priority .priority__thumb-content {
  padding: 16px 20px;
  background-color: #5287d0;
  border-radius: 51.5px 9px 9px 51.5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  position: absolute;
  z-index: 3;
  right: 10%;
  bottom: 40px;
}
.priority .priority__thumb-content img {
  min-height: auto;
}
.priority .priority__thumb-content h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-weight: 600;
  gap: 8px;
  color: #fff;
}
.featured-servcies {

    position: relative;
    z-index: 0;
    padding: 100px 0px;
  
  


}
.ani-servcies {/* background: linear-gradient(-45deg, #022136, #090909, #022136, #f0ce16); */background-size: 400% 400%;animation: gradientShift 30s ease infinite;border: 1px solid #ffffff;border-radius: 10px;/* padding-top: 100px; */}

  @keyframes gradientShift {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }



.featured-servcies .shape-top {
    position: absolute;
    bottom: calc(100% - 56px);
    left: 0px;
    right: 0px;
}
.featured-servcies .shape-top img {
    width: 100%;
    min-height: 56px;
}
.featured-servcies .shape-bottom {
    position: absolute;
    top: calc(100% - 50px);
    left: 0px;
    right: 0px;
}
.featured-servcies .shape-bottom img {
    width: 100%;
    min-height: 50px;
}
.featured-servcies::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url('../images/c-shape3.svg');
    z-index: -2;
    height: 750px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    animation: floatUpDown 2s ease-in-out infinite;
}

.featured-servcies .featured-services__thumb {
    padding-right: 20px;
}
.featured-servcies .tab-btn-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    cursor: pointer;
}
.featured-servcies .featured-services-tab-single {
    padding: 20px 30px 20px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    border-radius: 10px;
    background: #f1f1fb26;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px rgb(255 255 255 / 15%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    margin-right: 25px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}
.featured-servcies .featured-services-tab-single::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 0%;
    height: 100%;
    background-color: #5287d0;
    border-radius: 10px;
    z-index: -1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.featured-servcies .featured-services-tab-single h5 {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.featured-servcies .featured-services-tab-single p {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: #fff;
}
.featured-servcies .featured-services-tab-single .tab-single__content {
    text-align: left;
    padding-left: 34px;
}
.featured-servcies .count-prefix {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    position: absolute;
    left: -16px;
    top: 6px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 01;
    border: 4px double #ffffff24;
    background: #0000003b;
}
.featured-service-two .featured-service__single:hover .thumb img {
    -webkit-transform: scale(1.2) rotate(5deg);
    -ms-transform: scale(1.2) rotate(5deg);
    transform: scale(1.2) rotate(5deg);
}
.section__content--light span {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-top: -8px;
    text-shadow: 1px 1px 1px #000;
}
.section__content--light h2 {
    color: #ffffff;
    font-weight: 700;
    margin-top: 24px;
    font-size: 48px;
    line-height: 58px;
}
.section__content--light p {
    color: #ffffff;
    margin-top: 24px;
    font-size: 15px;
    line-height: 30px;
    font-weight: 400;
}
.featured-servcies .featured-tab__cotnent-thumb::before {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: 10px;
    /* background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.06)), color-stop(92.31%, #fff)); */
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, #1e7b6a 92.31%); */
    backdrop-filter: blur(2px);
}
.featured-servcies .featured-tab__cotnent-thumb img {
    width: 100%;
    border-radius: 10px;
    min-height: 340px;
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.featured-servcies .tab-content__inner {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 30px 20px;
}
.featured-servcies .tab-content__inner h3 {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 36px;
    line-height: 46px;
}
.featured-servcies .tab-content__inner p {
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}
.featured-tab__single {
    position: relative;
}
.featured-servcies .featured-servcie__cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    row-gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
}
.header-icons li a svg{
    color: #000000;
}

@media (max-width: 767px) {
  
    .banner-sec {
   
    padding-top: 0;
    }
}
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
#product-list {
   
    padding: 15px;
    border-radius: 19px;
}

/* about_new_css */

    .rounded-custom {
      border-radius: 20px;
      transition: opacity 1s ease;
    }

    .experience-box {
      background-color: #5a67d8;
      color: white;
      padding: 2rem;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      height: 100%;
    }

    .experience-box h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }

    .experience-box i {
      font-size: 1.5rem;
      background: white;
      color: #5a67d8;
      padding: 0.3rem 0.5rem;
      border-radius: 50%;
      margin-top: 1rem;
    }

    .img-grid img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .fade-out {
      opacity: 0.2;
    }

    .fade-in {
      opacity: 1;
    }
    .banner-sec{
        background-position: center revert;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 150px 0 50px 0;
        /* background: url(../images/banner.png) no-repeat bottom; */
        background-size: cover;
        min-height: 650px;
        background-color: #eff6ff;
    }
    .single-banner-2 {
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}
.single-banner-2 a:before {
    bottom: 0;
    content: "";
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    transition: .3s;
}
.single-banner-2 a img {
    width: 100%;
}
.banner-area-2{
    padding-top: 50px;
}

.section-bg {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
}
.feature-box {
    padding: 30px;
    border-radius: 5px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.feature-box {
    padding: 30px;
    border-radius: 5px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-bottom: 30px;
}

.feature-box:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.feature-box .box-icon {
    margin-bottom: 30px;
}

.feature-box.v3 .box-icon {
    /* background: #9919FA; */
}

.feature-box .box-icon {
    \: #FAA719;
    border: 50%;
    padding:10px;
    margin-bottom: 0 auto;
    font-size: 20px;
    color: #fff;
}

.feature-box.v5 .box-icon {
    background: #19B5FA;
}
.feature-area{
    padding: 100px 0!important;
    padding-bottom: 100px !important;
}
.feature-box.v2 .box-icon, .text-box .box-icon.v2 {
}
.feature-box.v3 .box-icon {
    /* background: #9919FA; */
}
.feature-box.v4 .box-icon {
    background: #FAA719;
}
.feature-box.v5 .box-icon {
    background: #19B5FA;
}
.feature-area .section__header{
    padding-bottom: 0;
    margin-bottom: 0;
}
.single-banner-2{
    position: relative;
}
.new-cont{
    position: absolute;
    top: 50px;
    left: 10px;
}
.feature-box .title{
    color: #0d6efd !important;
}
.resul-hed h4{font-size: 3.5rem;line-height: 5rem;}
.resul-hed h4 span{
    color: #526dfd;
    /* border-bottom: 2px solid #000; */
    font-size: 56px;
}
.bas-colo {
    background: #0d6efd;
    padding: 29px;
    border-radius: 20px;
}
.last-box{
    background: rgba(255,255,255,0.4);
    margin-top: 30px;
    border-radius: 20px;
}
.last-box h3{font-size: 22px;color: #000000;font-weight: 500;}
.last-box p{font-size: 15px;padding: 20px 0 0 0;}
.first-box p{
    color: #ffffff;
    padding: 20px 0;
}
.first-box a, .last-box a{
    /* padding: 14px 30px; */
    /* background: #000000; */
    color: #2c2c2c;
    /* border-radius: 28px; */
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 5px;
}
.feature-area{
    background: #eff6ff;
    /* background: url(../images/abt.png) no-repeat bottom; */
}
.resul-hed h4 img {
    height: 45px;
    margin-top: -14px;
}
.supp-img
{
    /* margin-top: 100px; */
}
.abt-img{}
.abt-img img{}