/* colors */
/* variables */
:root {
  --white: #ffffff;
  --black: #000000;
  --orange-lightest: #ffead6;
  --orange-light: #ff9a3c;
  --orange: #ff6a00;
  --orange-dark: #cc5200;
  --orange-gradient: radial-gradient(circle at top, #ff9a3c, #ff6a00 60%, #cc5200);
  --yellow: #ffff00;
  --lightest-gray: #f5f5f5;
  --lighter-gray: #ebebeb;
  --gray: #898989;
  --dark-gray: #878787;
  --darkest-gray: #222;
}
* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  font-weight: 400;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}
img {
  max-width: 100%;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
/* Custom CSS */
/* Fonts */
body {
  font-family: "Poppins", sans-serif;
  color: var(--black);
  line-height: 1.3;
  font-size: 18px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: bold;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 20px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 14px;
}
p {
  max-width: 100%;
  margin-bottom: 15px;
  line-height: 1.5;
}
a {
  color: var(--black);
  text-decoration: none;
}
a:active,
a:focus,
a:visited {
  outline: 0px none;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: var(--orange);
}
.nav-link {
  color: var(--black);
}
.nav-link:active,
.nav-link:focus,
.nav-link:visited {
  outline: 0px none;
  text-decoration: none;
  color: var(--black);
}
.nav-link:hover {
  text-decoration: none;
  color: var(--orange);
}
/* padding, background and text */
.bg-color1 {
  background-color: var(--orange);
}
.bg-color2 {
  background-color: var(--orange);
}
.tx-color1 {
  color: var(--orange);
}
.tx-color2 {
  color: var(--orange);
}
.wcolor {
  color: var(--white);
}
.f-img {
  width: 100%;
}
/* Transition */
.transition1 {
  transition: 0.1s all linear;
  -moz-transition: 0.1s all linear;
  -ms-transition: 0.1s all linear;
  -o-transition: 0.1s all linear;
  -webkit-transition: 0.1s all linear;
}
.transition2 {
  transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  -webkit-transition: 0.2s all linear;
}
.transition3 {
  transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  -webkit-transition: 0.3s all linear;
}
.transition4 {
  transition: 0.4s all linear;
  -moz-transition: 0.4s all linear;
  -ms-transition: 0.4s all linear;
  -o-transition: 0.4s all linear;
  -webkit-transition: 0.4s all linear;
}
/* End Transition */
@-webkit-keyframes pulse {
  0% {
    -webkit-text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  }
  70% {
    -webkit-text-shadow: 0 1px 18px rgba(0, 0, 0, 0.4);
  }
  100% {
    -webkit-text-shadow: 0 1px 18px rgba(0, 0, 0, 0.4);
  }
}
@keyframes pulse {
  0% {
    -moz-text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  }
  70% {
    -moz-text-shadow: 0 1px 18px rgba(0, 0, 0, 0.4);
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.4);
  }
  100% {
    -moz-text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  }
}
@-webkit-keyframes slide-up {
  from {
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-up {
  from {
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.box-shadow {
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}
.box-shadow-2 {
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
}
.btn,
.btn:active,
.btn:visited,
.btn:focus {
  color: var(--white);
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
  border: none;
  padding: 12px 49px 14px ;
  background-color: var(--orange);
  transition: 0.4s all linear;
  -moz-transition: 0.4s all linear;
  -ms-transition: 0.4s all linear;
  -o-transition: 0.4s all linear;
  -webkit-transition: 0.4s all linear;
}
.btn:hover,
.btn:active:hover,
.btn:visited:hover,
.btn:focus:hover,
.btn:focus,
.btn:active:focus,
.btn:visited:focus,
.btn:focus:focus {
  color: var(--white);
  background-color: var(--orange-dark);
}
.btn.white,
.btn:active.white,
.btn:visited.white,
.btn:focus.white {
  background-color: var(--white);
  color: var(--orange);
}
.btn.white:hover,
.btn:active.white:hover,
.btn:visited.white:hover,
.btn:focus.white:hover {
  background-color: var(--lighter-gray);
}
/* form fields */
.form-group {
  margin: 0px 0px 30px;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--lightest-gray);
  border: 0;
  border-bottom: 2px solid var(--lighter-gray);
  padding: 14px 20px !important;
  color: var(--gray);
  font-size: 18px;
  border-radius: 0px;
  width: 100%;
  transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  -webkit-transition: 0.2s all linear;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom: 2px solid var(--orange);
}
.form-group input {
  height: 56px;
}
.form-group textarea {
  resize: none;
  min-height: 180px;
}
.natural-ul ul {
  padding-left: 25px;
  list-style: disc;
  margin-bottom: 30px;
}
.natural-ul h3 {
  margin-bottom: 30px;
}
.natural-ul p {
  margin-bottom: 30px;
}
.owl-carousel .owl-nav > button {
  position: absolute;
  top: 50%;
  width: 4rem;
  height: 4rem;
  margin-top: -2rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  text-align: center;
  z-index: 10;
  -webkit-box-shadow: 0 0.125rem 0.3rem -0.0625rem rgba(0, 0, 0, 0.03), 0 0.275rem 0.75rem -0.0625rem rgba(0, 0, 0, 0.06);
          box-shadow: 0 0.125rem 0.3rem -0.0625rem rgba(0, 0, 0, 0.03), 0 0.275rem 0.75rem -0.0625rem rgba(0, 0, 0, 0.06);
}
.owl-carousel .owl-nav > button.owl-prev,
.owl-carousel .owl-nav > button.owl-next {
  background-color: var(--white);
  font-size: 28px;
  font-weight: bold;
  border: 1px solid #e3e9ef;
}
.owl-carousel .owl-nav > button.owl-prev {
  left: 0px;
}
.owl-carousel .owl-nav > button.owl-next {
  right: 0px;
}
.owl-carousel .owl-nav > button span {
  margin-top: -5px;
  display: block;
}
.link {
  color: var(--orange-light);
}
.link:hover {
  color: var(--orange-dark);
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 10px;
  background: var(--orange-gradient);
  z-index: 1025;
}
.header .nav-link {
  color: var(--white);
}
.header .nav-link.active,
.header .nav-link.show {
  color: var(--yellow);
}
.header .logo a {
  display: inline-block;
  height: 75px;
}
.header .logo img {
  height: 100%;
}
.header .navbar-toggler {
  background: none;
  border: 0px;
  font-size: 32px;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  color: var(--white);
}
.header .left-side .nav-item {
  font-size: 36px;
  padding-right: 10px;
}
.header .right-side .nav-item {
  font-size: 22px;
  padding-right: 10px;
}
.top_icon {
  position: relative;
}
.top_icon a {
  position: fixed;
  bottom: 25px;
  width: 44px;
  right: 15px;
  color: #fff;
  border-radius: 10px;
  height: 44px;
  text-align: center;
  line-height: 1.8;
  transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  -webkit-transition: 0.3s all linear;
  display: none;
  z-index: 999;
  background-color: rgba(43, 52, 69, 0.25);
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 2.625rem;
}
.top_icon a:hover {
  background-color: rgba(43, 52, 69, 0.5);
}
.top_icon a i {
  transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  -webkit-transition: 0.3s all linear;
}
#side-navbar {
  font-size: 14px;
  transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  -webkit-transition: 0.2s all linear;
}
#side-navbar .btn-close {
  position: absolute;
  right: 0px;
  top: 0px;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  background-color: var(--orange);
  border-radius: 0px;
  -webkit-transform: translate(100%, 0%);
  transform: translate(100%, 0%);
  margin: 0px;
  padding: 17px;
  opacity: 0;
}
#side-navbar .btn-close:hover {
  background-color: var(--orange-light);
}
#side-navbar.hiding .btn-close,
#side-navbar.showing .btn-close {
  opacity: 0;
}
#side-navbar.show .btn-close {
  opacity: 1;
}
#side-navbar .nav-link {
  padding: 30px;
  background-color: var(--lightest-gray);
  border-bottom: 2px solid var(--lighter-gray);
  color: var(--gray);
  font-weight: 600;
}
#side-navbar .nav-link.active {
  color: var(--darkest-gray);
  background-color: var(--lighter-gray);
  border-bottom: 2px solid var(--orange);
}
#side-navbar .list-group {
  border-radius: 0px;
}
#side-navbar .list-group .list-group-item {
  padding-top: 20px;
  padding-bottom: 20px;
}
#side-navbar .list-group .list-group-item.active {
  background: var(--white);
  border-color: var(--gray);
  color: var(--orange);
  font-weight: 600;
}
#side-navbar .email {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.highlight-text {
  font-size: 28px;
}
.points {
  font-size: 20px;
  position: relative;
}
.points li {
  margin-bottom: 15px;
}
.points li img {
  width: 25px;
  vertical-align: middle;
}
.points li div {
  display: inline-block;
  vertical-align: middle;
}
.points.disc {
  list-style: disc;
}
.points.disc li {
  margin-left: 20px;
}
.breadcrumb {
  font-size: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray);
  color: var(--gray);
}
.breadcrumb a {
  color: var(--gray);
  text-transform: capitalize;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--orange);
}
.breadcrumb b {
  margin: 0px 5px;
}
.owl-nav {
  opacity: 0;
  height: 0px;
}
.custom-nav button {
  background: transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: var(--orange);
  margin-left: 5px;
  border: 0px;
}
.custom-nav button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.custom-nav button i {
  font-size: 24px;
  color: var(--white);
}
.section_innerbanner {
  position: relative;
  width: 100%;
  min-height: 300px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.section_innerbanner .banner-content {
  text-align: left;
  color: var(--white);
  min-height: 300px;
  position: relative;
}
.section_innerbanner .banner-content h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  margin-top: 200px;
  text-transform: uppercase;
  text-shadow: 1px 1px 10px var(--dark-gray);
}
.section_innerbanner .banner-content h2 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  margin-top: 200px;
  text-transform: uppercase;
  text-shadow: 1px 1px 10px var(--dark-gray);
}
.section_innerbanner .banner-content p {
  font-size: 1rem;
}
.section_innerbanner .banner-content a {
  margin-bottom: 40px;
}
.section-innerpage {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-innerpage .pageheadline h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.04;
}
.section-innerpage .pageheadline p {
  font-size: 16px;
}
.accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background: var(--white);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.commonpage {
  background: var(--orange-lightest);
  padding: 70px 60px 70px;
}
.commonpage .highlight-text {
  color: var(--orange);
  margin-bottom: 30px;
}
.commonpage .accordion-button {
  font-size: 16px;
  letter-spacing: 0.1px;
  font-weight: 700;
  color: var(--black);
}
.commonpage .accordion-button:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E") !important;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.commonpage .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E") !important;
}
.commonpage .accordion-button:after {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.commonpage .accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 0px;
}
.commonpage .accordion-body {
  font-size: 15px;
  line-height: 1.5;
}
.section-homebanner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.section-homebanner .banner-content {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
}
.section-homebanner .banner-content .content {
  color: var(--white);
  padding-top: 90px;
  padding-left: 35px;
}
.section-homebanner .banner-content .content h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  text-shadow: 1px 1px 10px var(--dark-gray);
}
.section-homebanner .banner-content .content h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 10px var(--dark-gray);
}
.section-homebanner .banner-content .content a {
  margin-bottom: 50px;
}
.section-coupon {
  background: var(--black);
  color: var(--white);
}
.section-coupon p {
  font-size: 14px;
  color: var(--gray);
}
.section-coupon input {
  background: transparent;
  color: var(--white);
  border-radius: 0px;
  /* For Edge */
  /* For Chrome, Safari, Opera */
}
.section-coupon input::-webkit-input-placeholder {
  color: var(--white);
  opacity: 1;
  /* For Firefox */
}
.section-coupon input::-moz-placeholder {
  color: var(--white);
  opacity: 1;
  /* For Firefox */
}
.section-coupon input:-ms-input-placeholder {
  color: var(--white);
  opacity: 1;
  /* For Firefox */
}
.section-coupon input::-ms-input-placeholder {
  color: var(--white);
  opacity: 1;
  /* For Firefox */
}
.section-coupon input::placeholder {
  color: var(--white);
  opacity: 1;
  /* For Firefox */
}
.section-coupon input::-ms-input-placeholder {
  color: var(--white);
}
.section-coupon input::-webkit-input-placeholder {
  color: var(--white);
}
.section-coupon input:focus {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--white);
  border-color: var(--white);
}
.section-coupon .btn {
  border-radius: 0px;
}
.section-newarrivals {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-newarrivals .naproduct .item {
  padding: 4px;
}
.section-newarrivals .naproduct .item a {
  display: block;
  border: 1px solid var(--lighter-gray);
  background: var(--white);
  transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  -webkit-transition: 0.3s all linear;
  position: relative;
}
.section-newarrivals .naproduct .item a:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  -webkit-transition: 0.3s all linear;
  -webkit-box-shadow: inset 0 0 22px var(--gray);
          box-shadow: inset 0 0 22px var(--gray);
}
.section-newarrivals .naproduct .item .img {
  width: 100%;
  overflow: hidden;
}
.section-newarrivals .naproduct .item .img img {
  display: inline-block;
  width: 98%;
  transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  -webkit-transition: 0.3s all linear;
}
.section-newarrivals .naproduct .item h5 {
  margin-bottom: 5px;
  color: var(--black);
  overflow: hidden;
  height: 40px;
  padding: 0px 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 300;
  font-size: 14px;
}
.section-newarrivals .naproduct .item .price {
  font-size: 14px;
  margin-bottom: 0;
  background: var(--lighter-gray);
  color: var(--black);
  font-weight: 300;
  padding: 10px;
  transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  -webkit-transition: 0.3s all linear;
}
.section-newarrivals .naproduct .item:hover a {
  border: 1px solid var(--dark-gray);
}
.section-newarrivals .naproduct .item:hover a:before {
  opacity: 0.3;
}
.section-newarrivals .naproduct .item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.section-newarrivals .naproduct .item:hover .price {
  background: var(--gray);
  color: var(--white);
}
.section-ourcustomer {
  background: var(--orange-gradient);
  padding: 100px 0px;
}
.section-ourcustomer .counter-container {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
  color: var(--white);
}
.section-ourcustomer .counter-container.appear {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.section-ourcustomer .counter-container h2 {
  font-size: 65px;
  margin: 0;
  font-weight: 800;
}
.section-ourcustomer .counter-container h2 span {
  font-weight: 800;
}
.section-ourcustomer .counter-container p {
  font-size: 24px;
  font-weight: 300;
}
.section-ourcustomer .customer_img {
  width: 100%;
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
}
.section-shopbycategory {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-shopbycategory .sbcat .item {
  padding: 4px;
}
.section-shopbycategory .sbcat .item a {
  display: block;
  border: 1px solid var(--lighter-gray);
  background: var(--white);
  transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  -webkit-transition: 0.3s all linear;
  position: relative;
  z-index: 2;
}
.section-shopbycategory .sbcat .item a:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  -webkit-transition: 0.3s all linear;
  -webkit-box-shadow: inset 0 0 22px var(--gray);
          box-shadow: inset 0 0 22px var(--gray);
}
.section-shopbycategory .sbcat .item .img {
  width: 100%;
  overflow: hidden;
}
.section-shopbycategory .sbcat .item .img img {
  display: inline-block;
  width: 98%;
  transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  -webkit-transition: 0.3s all linear;
}
.section-shopbycategory .sbcat .item h5 {
  margin-bottom: 5px;
  color: var(--black);
  overflow: hidden;
  height: 40px;
  padding: 0px 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  -webkit-transition: 0.3s all linear;
}
.section-shopbycategory .sbcat .item:hover a {
  border: 1px solid var(--gray);
}
.section-shopbycategory .sbcat .item:hover a:before {
  opacity: 0.3;
}
.section-testimonials {
  background: var(--lightest-gray);
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-testimonials .testimonial {
  padding: 50px;
  border-radius: 20px;
  background: var(--white);
}
.section-testimonials .testimonial i.bi-star-fill {
  font-size: 24px;
  display: inline-block;
  padding: 5px;
  color: var(--orange);
}
.section-testimonials .testimonial .quote {
  min-height: 54px;
  font-weight: 300;
  font-size: 20px;
  margin: 10px 0px;
  color: var(--black);
}
.section-testimonials .testimonial .name {
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  margin: 0px;
}
.section-testimonials .custom-nav .carousel-control-prev,
.section-testimonials .custom-nav .carousel-control-next {
  width: 62px;
  left: 10px;
  background: var(--orange);
  position: relative;
  display: inline-block;
}
.section-blog {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-blog .main-item a {
  display: block;
  height: 100%;
  width: 100%;
  border: 1px solid var(--lighter-gray);
  background: var(--white);
  transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  -webkit-transition: 0.3s all linear;
  position: relative;
  z-index: 2;
}
.section-blog .main-item a:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  -webkit-transition: 0.3s all linear;
  -webkit-box-shadow: inset 0 0 22px var(--gray);
          box-shadow: inset 0 0 22px var(--gray);
}
.section-blog .main-item a .img {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.section-blog .main-item a .img img {
  max-width: unset;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.section-blog .main-item a .title {
  position: absolute;
  bottom: 0px;
  padding: 20px;
  z-index: 1;
}
.section-blog .main-item a .title h5 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 15px;
  transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  -webkit-transition: 0.2s all linear;
}
.section-blog .main-item a .title h6 {
  transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  -webkit-transition: 0.2s all linear;
}
.section-blog .main-item:hover a {
  border: 1px solid var(--gray);
}
.section-blog .main-item:hover a:before {
  opacity: 0.3;
}
.section-blog .main-item:hover a .title h5 {
  color: var(--orange);
}
.section-blog .main-item:hover a .title h6 {
  color: var(--orange);
}
.section-blog .item a {
  display: block;
  position: relative;
  border: 1px solid var(--lighter-gray);
  background: var(--white);
  transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  -webkit-transition: 0.3s all linear;
}
.section-blog .item a:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  -webkit-transition: 0.3s all linear;
  -webkit-box-shadow: inset 0 0 22px var(--gray);
          box-shadow: inset 0 0 22px var(--gray);
}
.section-blog .item a .title {
  bottom: 0px;
  padding: 20px;
}
.section-blog .item a .title h5 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 10px;
  transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  -webkit-transition: 0.2s all linear;
}
.section-blog .item a .title h6 {
  transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  -webkit-transition: 0.2s all linear;
}
.section-blog .item:hover a {
  border: 1px solid var(--gray);
}
.section-blog .item:hover a:before {
  opacity: 0.3;
}
.section-blog .item:hover a .title h5 {
  color: var(--orange);
}
.section-blog .item:hover a .title h6 {
  color: var(--orange);
}
.section-follow {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--lightest-gray);
}
.section-follow .highlight-text {
  text-transform: uppercase;
  font-size: 34px;
}
.section-follow .btn {
  font-size: 22px;
  padding: 20px 35px;
  line-height: 1;
}
.section-follow .btn .bi {
  margin-right: 5px;
}
.section-follownew {
  padding-bottom: 100px;
}
.section-follownew .highlight-text {
  text-transform: uppercase;
  font-size: 34px;
}
.section-follownew .btn {
  font-size: 22px;
  padding: 20px 35px;
  line-height: 1;
}
.section-follownew .btn .bi {
  margin-right: 5px;
}
.helpfaq {
  margin-top: 50px;
}
.helpfaq h3 {
  font-size: 20px;
}
.helpfaq p {
  font-size: 14px;
  margin: 0px;
}
.helpfaq a {
  color: var(--orange);
  transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  -webkit-transition: 0.2s all linear;
}
.helpfaq a:hover {
  color: var(--orange-dark);
}
footer {
  background: var(--black);
  color: var(--gray);
  position: relative;
}
footer a {
  font-size: 14px;
  color: var(--gray);
  text-decoration: none;
  transition: 0.1s all linear;
  -moz-transition: 0.1s all linear;
  -ms-transition: 0.1s all linear;
  -o-transition: 0.1s all linear;
  -webkit-transition: 0.1s all linear;
}
footer a:hover {
  color: var(--white);
}
footer p {
  font-size: 13px;
  margin: 0px;
  line-height: 1.6;
}
footer h6 {
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
}
footer .top {
  padding-top: 100px;
  padding-bottom: 40px;
}
footer .bottom {
  padding-top: 40px;
  padding-bottom: 60px;
}
footer li {
  margin-top: 10px;
}
footer .logo {
  width: 160px;
}
footer .bottomlogo {
  width: 38px;
}
.section-aboutus {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--lightest-gray);
}
.section-aboutus p {
  font-size: 16px;
}
.section-aboutus p .bi {
  font-size: 22px;
  margin-right: 10px;
  vertical-align: middle;
}
.section-included {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-included h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.section-included h2 span {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
}
.section-included .description {
  margin-bottom: 40px;
}
.section-included .usp {
  text-align: center;
}
.section-included .usp .icon {
  font-size: 46px;
}
.section-included .usp .point {
  font-size: 18px;
}
.blogpage .blogitem a {
  text-decoration: none;
  transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  -webkit-transition: 0.2s all linear;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.blogpage .blogitem a .image {
  position: relative;
  overflow: hidden;
}
.blogpage .blogitem a .name {
  font-size: 16px;
  letter-spacing: 0.2px;
  color: var(--black);
  transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  -webkit-transition: 0.2s all linear;
}
.blogpage .blogitem a .date {
  font-size: 12px;
  color: var(--gray);
}
.blogpage .blogitem a:hover {
  -webkit-transform: scale3d(0.98, 0.98, 0.98);
          transform: scale3d(0.98, 0.98, 0.98);
}
.blogpage .blogitem a:hover .name {
  color: var(--orange);
}
.careerpage .pageheadline h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 20px;
}
.careerpage .form {
  padding-top: 0px;
  padding-bottom: 80px;
}
.contactuspage .link {
  color: var(--orange-light);
  transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  -webkit-transition: 0.2s all linear;
}
.contactuspage .link:hover {
  color: var(--orange-dark);
}
.contactuspage .information {
  background: var(--orange-lightest);
  padding: 50px 80px;
}
.contactuspage .information .title h3 {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 28px;
}
.contactuspage .information .inner {
  background: var(--white);
  padding: 40px;
}
.contactuspage .information .inner .icon {
  font-size: 50px;
  padding-right: 20px;
  color: var(--orange);
}
.contactuspage .information .inner p {
  font-size: 16px;
  margin-bottom: 0px;
}
.captchamagic {
  display: inline-block;
  width: 100%;
}
.captchamagic h4 {
  font-size: 16px;
  line-height: 24px;
}
.captchamagicinner {
  width: 100%;
  max-width: 100%;
  padding: 10px;
  background: #f7f7f7;
  border: 1px solid #ccc;
  margin-top: 15px;
  margin-bottom: 20px;
}
.captchamagicnumbers {
  background: #fdecec;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  text-align: center;
  padding: 8px 0px;
}
.captchamagicnumbers * {
  font-size: 30px;
}
.captchamagicnumbers .magictransparent {
  color: transparent !important;
  width: 0px;
  display: inline-block;
  overflow: hidden;
}
.captchamagicnumbers input.magicnumber {
  color: #000 !important;
  display: inline-block !important;
  margin: 0px !important;
  padding: 0px !important;
  width: 40px !important;
  border: 0px !important;
  text-align: center !important;
  font-size: 20px !important;
  background: transparent !important;
}
.captchamagicinner input.captchamagicanswer {
  width: 100% !important;
  margin: 0px !important;
  text-align: center !important;
}
.animated {
  -webkit-animation-duration: 450 ms  ;
  animation-duration: 450 ms  ;
  -webkit-animation-fill-mode: both  ;
  animation-fill-mode: both  ;
}
.owl-animated-out {
  z-index: 1;
}
.owl-animated-in {
  z-index: 0;
}
.fadeOut {
  -webkit-animation-name: fadeOut  ;
  animation-name: fadeOut  ;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1   ;
  }
  100% {
    opacity: 0   ;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1   ;
  }
  100% {
    opacity: 0   ;
  }
}
