:root {
  --spacer: 60px;
  --spacer-mobile: 50px;
  --spacer2: 40px;
  --spacer2-mobile: 12px;
  --blue: #35499F;
  --lblue: #D6F5FF;
  --red: #FF7171;
  --green: #27AE60;
  --orange: #F2994A;
  --dgrey: #404040;
  --mdark: #828282;
  --mgrey: #BDBDBD;
  --lgrey: #E0E0E0;
  --slgrey: #F7F7F7;
  --white: white;
  --cubic1: cubic-bezier(0.37, 0, 0.63, 1);
  --cubic2: cubic-bezier(0.215, 0.61, 0.355, 1);
  --sm: 576px;
  --md: 768px;
  --lg: 992px;
  --xl: 1200px;
  --schneidergreen: #079749;
}

.spacer {
  padding-left: var(--spacer);
  padding-right: var(--spacer);
}

.spacer2 {
  padding-left: var(--spacer2-mobile);
  padding-right: var(--spacer2-mobile);
}

.spacer2-l {
  padding-left: 0;
  padding-right: 0;
}

.sticky-top
{
    z-index:200!important;
}

@media screen and (min-width: 768px) {
  .spacer-l {
    padding-left: var(--spacer);
    padding-right: var(--spacer);
  }

  .spacer2 {
    padding-left: var(--spacer2);
    padding-right: var(--spacer2);
  }

  .spacer2-l {
    padding-left: var(--spacer2);
    padding-right: var(--spacer2);
  }
}

.blue {
  color: var(--blue);
}

.lblue {
  color: var(--lblue);
}

.red {
  color: var(--red);
}

.green {
  color: var(--green);
}

.orange {
  color: var(--orange);
}

.dgrey {
  color: var(--dgrey);
}

.mdark {
  color: var(--mdark);
}

.mgrey {
  color: var(--mgrey);
}

.lgrey {
  color: var(--lgrey);
}

.slgrey {
  color: var(--slgrey);
}

.white {
  color: var(--white);
}

.black {
  color: black;
}

.bg-slgrey {
  background-color: var(--slgrey);
}

.bg-dgrey {
  background-color: var(--dgrey);
}

.bg-blue {
  background-color: var(--blue);
}

* {
  font-family: "neue-haas-grotesk-display", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p {
  margin: 0;
}

a {
  text-decoration: none;
  display: block;
}

img {
  max-width: unset;
}

h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 43px;
  letter-spacing: 0.02em;
}

h2 {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 24px;
  line-height: 32px;
}

h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.02em; 
}

h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.02em;
}

h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.02em;
}

h6 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.02em;
}

.lead {
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.02em;
}

.lead.strong {
  font-weight: 600;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.02em;
}

p {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
}

p.strong {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
}

.small-paragraph {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.small-paragraph.strong {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.smaller-paragraph {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.smaller-paragraph.strong {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.circular-image {
  overflow: hidden;
  position: relative;
  padding-bottom: 177%;
  cursor: pointer;
  transition: 0.6s var(--cubic2);
  border-radius: 40vw;
}

.circular-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  transition: 0.6s var(--cubic2);
}

.circular-image:hover {
  transform: translateY(-10px);
}

.circular-image:hover img {
  width: 105%;
  height: 105%;
}

.flex-grow {
  flex-grow: 1;
}

/* product */
.product {
  cursor: pointer;
  border:1px solid var(--lgrey);
  border-radius:4px;
}

.product .image-wrapper {
  overflow: hidden;
  position: relative;
  padding-bottom: 101%;
}

.product .image-wrapper .favs {
  border: none;
  outline: none;
  background: none;
  position: absolute;
  top: 4%;
  right: 4%;
  z-index: 1;
  padding: 0;
}

.product .image-wrapper .add-to-cart {
  border: none;
  outline: none;
  background: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 0;
  width: 39px;
}

.product .image-wrapper .add-to-cart img {
  width: 100%;
  object-fit: contain;
}


.product-large {
  display: flex;
  flex-direction: column;
}

.product-large .image-wrapper {
  flex-grow: 1;
}

.product .image-wrapper .favs .on {
  display: none;
}

.product .image-wrapper .favs .off {
  display: block;
}

.product .image-wrapper .favs.active .on {
  display: block;
}

.product .image-wrapper .favs.active .off {
  display: none;
}

.product .image-wrapper .product-image {
  width: 90%;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  transition: 0.6s var(--cubic2);
}

.product:hover .image-wrapper .product-image {
  width: 94%;
  height: 94%;
}

.product-info {
  border-top: 2px solid var(--lgrey);
  padding-top: 15px;
}

.price {
  color: var(--dgrey);
}

.price.striked {
  color: var(--mgrey);
  text-decoration: line-through;
}

/* buttons */
.btn {
  outline: none;
  border: none;
  border-radius: 110px;
  /* padding: 16.5px 15px; */
  padding: 16.5px 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  justify-content: center;
}

.btn-primary {
  background-color: var(--blue);
}

.btn-none {
  background: none;
  outline: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.btn-none:focus,
.btn-none:active {
  box-shadow: none;
  outline: none;
  border: none;
}

.btn .icon-left {
  object-fit: contain;
  margin-right: 10px;
}

.btn .icon-right {
  object-fit: contain;
  margin-left: 10px;
}

.btn-secondary {
  background-color: var(--lblue);
  color:var(--dgrey);
}

.btn-grey {
  background-color: var(--dgrey);
}

.btn-lgrey {
  background-color: var(--lgrey);
}

.btn-secondary:hover {
  background-color: rgb(178, 204, 212);
}

.btn-secondary:active,
.btn-secondary:focus {
  background-color: var(--lblue);
  box-shadow: none;
}

.btn-light {
  background-color: var(--slgrey) !important;
}

.btn-facebook {
  background-color: #3379EB;
}

.btn-google {
  background-color: #E15454;
}

/* breadcrumbs */
.breadcrumb-item a,
.breadcrumb-item.active {
  display: flex;
  color: var(--mgrey);
  transition: 0.2s ease;
}

.breadcrumb-item {
  font-size: 14px;
  line-height: 16.7px;
  letter-spacing: 0.02em;
}

.breadcrumb-item a:hover {
  color: var(--dgrey);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--mgrey);
}

.breadcrumb {
  margin-top: 16px;
  margin-bottom: 16px;
}

/* input */
.input-text input, 
.input-text textarea
{
  width: 100%;
  border: 1px solid var(--lgrey);
  border-radius: 60px;
  padding: 16px;
  padding-left: 21px;
  outline: none;
}

.input-text textarea::placeholder,
.input-text input::placeholder {
  color: var(--mdark);
  text-transform:none!important;
}

.input-search {
  position: relative;
  margin-bottom: 16px;
}

.input-search input {
  padding-left: 41px;
}

.input-search::after {
  content: "";
  background-image: url("../images/search.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  display: block;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translate(0, -50%);
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: var(--mdark);
}

.checkboxes {
  display: flex;
  flex-direction: column;
  /* padding-top: 18px; */
  padding-bottom: 18px;
  max-height: 270px;
  overflow: scroll;
  position: relative;
}

.checkboxes-wrapper {
  position: relative;
}

.checkboxes-wrapper::after {
  content: "";
  width: 100%;
  height: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
  position: absolute;
  bottom: 0;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-container .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: transparent;
  border: 1px solid var(--mgrey);
  border-radius: 2px;
  transform: translateY(-50%);
}

.checkbox-container:hover input ~ .checkmark {
  background-color: var(--slgrey);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--blue);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* slider */
.ui-slider-handle {
  background-color: var(--blue) !important;
  border-radius: 50%;
  width: 16px !important;
  height: 16px !important;
  outline: none !important;
  border: none !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  cursor: pointer !important;
}

.ui-slider-range {
  background-color: var(--blue);
  height: 2px;
}

.ui-slider {
  height: 2px !important;
  border: none !important;
  background: var(--mgrey);
}

/* banner title */
.banner-title {
  height: 600px;
  width: 100%;
  position: relative;
}

.banner-title .background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.banner-title .title-row {
  position: relative;
  z-index: 1;
  padding-bottom: 85px;
}

/* boxes */

.boxes .box {
  position: relative;
  overflow: hidden;
  padding-bottom: 54%;
}

@media screen and (min-width: 768px) {
  .boxes .box {
    padding-bottom: 37%;
  }


  .product
  {
      border:none;
  }
}

.boxes .box img {
  position: absolute;
  width: 100%;
  /* height: 433px; */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  display: block;
  transition: 0.6s var(--cubic2);
  /* padding-left:31px;
  padding-right:31px;
  border-radius: 10%; */
}

.boxes .box:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.boxes .box .title {
  position: absolute;
  bottom: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, 50%);
  text-align: center;
}

.mobile-banner
{
    display:flex;
    flex-direction:column;
}

@media screen and (min-width: 768px) {
    .mobile-banner
    {
        display:none;
    }

  .boxes .box .title {
    position: absolute;
    bottom: var(--spacer);
    left: var(--spacer);
    z-index: 1;
    transform: unset;
    text-align: left;
  }
}

.boxes .box:hover img {
  width: 105%;
  height: 105%;
}

.description {
  padding-top: 84px;
  padding-bottom: 84px;
  min-height: 605px;
  display: flex;
  align-items: flex-start;
}

.notice {
  background-color: white!important;
  padding: 0px!important;
}

/* posts */
.posts .box {
  position: relative;
  overflow: hidden;
  margin-bottom:3%; 
}

.posts .box img {
 width:100%;
 border-radius: 10%;
}


/* select */
select {
  border: 1px solid #e0e0e0 !important;
  box-sizing: border-box;
  border-radius: 50px !important;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
  padding-right: 10px !important;
  padding-left: 30% !important;
  font-size: 16px!important;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: var(--dgrey);
  cursor: pointer;
  background-position: right 30% center !important;
}

/* header */

header .site-logo img {
  width: 75px;
}

header .nav-item {
  margin-right: 32px;
}

header .nav-item:hover p {
  color: var(--blue);
}

header .nav-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  transition: 0.1s ease;
  cursor: pointer;
}

.nav-link:hover{
  color: var(--blue);
}

header .nav-icon:hover {
  background-color: var(--lblue);
}

header .search-container {
  width: auto;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #E4E4E4;
  cursor: pointer;
  border-radius: 60px;
  padding: 16px;
  flex-grow: 0;
  text-align: left;
  transition: 0.4s ease;
}

header .search-input {
  border: none;
  outline: none;
  box-shadow: none;
  font-size: 14px;
  line-height: 16px;
  display: none;
  width: 100%;
}

header .search-input::placeholder {
  color: #858585;
}

header .search-container.open img {
  margin-right: 16px;
}

header .search-container.open {
  flex-grow: 1;
}

header .search-container.open .search-input {
  display: block;
}

header .search-container.open .close-search-box {
  display: block;
}

header .close-search-box {
  display: none;
}

header .close-search-box img {
  margin: 0 !important;
}

header .menu {
  z-index: 2;
  padding-top: 15px;
  padding-bottom: 10px;
  background-color: white;
  box-shadow: 0px 0px 4px #00000029;
  position: relative;
}

header .mega-sub-menu {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--slgrey);
  top: 150px;
  transform: translateY(-100%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  display: none;
}

.blue-header-sub .active{
  background: white !important;
  color: var(--blue);
}

.blue-header{
  z-index:2;
}

.new-sub-menu .nav-tabs .active{
  color: var(--dgrey);
  text-decoration: underline;
}

.new-sub-menu p{
  cursor:pointer;
}

.new-sub-menu p:hover{
  color:var(--dgrey);
}


header .mega-sub-menu.show {
  transform: translateY(0);
}

header .nav-tabs {
  border: none !important;
  margin-top: -15px;
  margin-left:50px;
}

header .tabs-container {
  border-right: 1px solid #E7E7E7;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-right: 48px;
}

header .sub-menu-item {
  width: auto;
  position: relative;
}

.new-sub-menu .nav{
  padding-left: 0 !important;
  margin-left:56px !important;
}

/* header .sub-menu-item::after {
  content: "";
  background-image: url("../images/sub-menu-arrow.svg");
  width: 6px;
  height: 9px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
} */

header .sub-menu-item button {
  background-color: transparent !important;
  outline: none !important;
  border: none !important;
  text-align: left;
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--lgrey);
  padding-bottom: 15px;
  padding-top: 40px;
  width: 100%;
  padding-right: 25px;
}

header .tab-pane {
  /* padding-top: 32px; */
  padding-left: 56px;
  padding-top:25px;
  padding-bottom:25px;
}

.tab-pane .title-menu{
  padding-bottom: 15px;
}

header .tab-content .tab-pane a p {
  font-size: 14px;
  color: #4f4f4f;
  margin-bottom: 10px;
}

header .tab-content .tab-pane a:hover {
  color: var(--blue);
}
header .mega-sub-menu .featured-image-col {
  padding-top: 50px;
  padding-bottom: 50px;
}

header .mega-sub-menu .featured-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 67%;
}

header .mega-sub-menu .featured-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  border-radius: 200px 0 0 200px;
}

header .mega-sub-menu .featured-image-wrapper .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

header .hamburger-open .line-1,
header .hamburger-open .line-2 {
  width: 30px;
  height: 2px;
  background-color: #333333;
  border-radius: 2px;
  display: block;
  transition: 0.2s var(--cubic2);
}

header .hamburger-open:hover {
  background-color: transparent;
}

header .hamburger-open .line-1 {
  transform: rotate(45deg) translate(3px, 3px);
}

header .hamburger-open .line-2 {
  transform: rotate(-45deg) translate(3px, -3px);
}

header .hamburger-open {
  display: flex;
  flex-direction: column;
}

header .line-1 {
  margin-bottom: 7px;
}

header .hamburger-open.collapsed .line-1,
header .hamburger-open.collapsed .line-2 {
  transform: rotate(0);
}

header #mobile-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: white;
}

header #mobile-menu:not(.collapsing) {
  height: 100vh;
}

header #mobile-menu .mobile-menu-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

header .buttons-separator {
  border-top: 1px solid #C4C4C4;
}

header .mobile-sub-menu {
  width: 100%;
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  background-color: white;
  transform: translateX(100%);
  transition: 0.5s var(--cubic2);
  height: 100vh;
}

header .mobile-sub-menu.show {
  transform: translateX(0);
}

.blue-header a {
  font-weight: 600;
  cursor: pointer;
}

.blue-header-sub{
  margin-left:40px;
}

.blue-header a:hover {
  color:var(--blue);
  background-color: white;
}

/* footer */

footer .customer-service {
  padding-top: 60px;
  padding-bottom: 60px;
}

footer .footer-top {
  padding-top: 64px;
  padding-bottom: 45px;
  /* border-bottom: 1px solid var(--mgrey); */
}

footer .footer-bottom {
  padding-top: 24px;
  padding-bottom: 32px;
}

footer .social-icons a {
  margin-right: 16px;
}

footer .stamp img {
  margin-right: 6.2px; 
  transition: 0.3s ease;
}

footer .stamp:hover img {
  transform: translateY(-5px);
}

footer .footer-accordion-item {
  padding: 30px;
  border-top: 1px solid #E0E0E0;
}

footer .footer-accordion-item:last-child {
  border-bottom: 1px solid #E0E0E0;
}

.footer-bottom a, .footer-bottom p{
  white-space: nowrap;
}

footer .accordion-content {
  padding-top: 15px;
}

footer .footer-accordion {
  padding-top: 46px;
  padding-bottom: 37px;
}

.footer-links{
  border-color: var(--mgrey) !important;
  white-space: nowrap;
}

.footer-links a{
  cursor: pointer;
}

.special-offers {
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}

.special-offers .row {
  margin-left: -60px;
  margin-right: -60px;
}

.special-offers .product {
  padding: 10px;
}

.plus-wrapper {
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  bottom: 0;
}

.plus::before {
  content: "";
  height: 2px;
  background-color: var(--mdark);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s var(--mdark);
  width: 18px;
  transition: 0.2s ease;
}

.plus::after {
  content: "";
  width: 18px;
  height: 2px;
  background-color: var(--mdark);
  transform: translate(-50%, -50%) rotate(90deg);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.2s ease;
}

.plus:hover::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.plus:hover::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.plus {
  position: relative;
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.btn-open-accordion:not(.collapsed) .plus::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.btn-open-accordion:not(.collapsed) .plus::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.gallery-images .image-container {
  padding: 10px;
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: center;
  min-height: 40vw;
}

.gallery-images .image-container .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  cursor: pointer;
}

.gallery-images .image-container .image-wrapper {
  padding-bottom: 133%;
  width: 100%;
  position: relative;
  margin: 0 auto;
  transition: 0.2s ease;
}

.gallery-images .image-container:not(.slick-center) .image-wrapper {
  padding-bottom: 100%;
  width: 75%;
  position: relative;
}

.gallery-images .slick-track {
  display: flex !important;
}

.gallery-images .slick-slide
{
  height: inherit !important;
}

.gallery-images {
  padding-bottom: 170px;
}

.insta-img{
  object-fit:cover;
}

@media screen and (max-width:768px){ /*950*/
  header .mega-sub-menu {
    top:210px;
  }
}

/* Desktop */
@media screen and (min-width: 768px) {
  h1 {
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 43px;
    letter-spacing: 0.02em;
  }
  
  h2 {
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 30px;
    line-height: 43px;
  }
  
  h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.02em; 
  }
  
  h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.02em;
  }
  
  h5 {
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0.02em;
  }
  
  h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.02em;
  }
  
  .lead {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.02em;
  }
  
  .lead.strong {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.02em;
  }
  
  p {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.02em;
  }
  
  p.strong {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.02em;
  }
  
  .small-paragraph {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
  
  .small-paragraph.strong {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.02em;
    font-weight: 600;
  }
  
  .smaller-paragraph {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
  
  .smaller-paragraph.strong {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.02em;
    font-weight: 600;
  }

  .btn {
    outline: none;
    border: none;
    border-radius: 110px;
    padding: 16.5px 32px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
  }

  .special-offers .product {
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
  }

  .special-offers {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .description {
    align-items: center;
  }

  header a.nav-icon {
    margin-left: 16px;
  }

  header .hamburger-open {
    display: none;
  }

  header .site-logo img {
    width: 100px;
  }

  header .menu {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  header #mobile-menu {
    display: none;
  }

  header .mega-sub-menu {
    display: block;
  }

  header.scrolled-down{
    transform:translateY(-100%); transition: all 0.3s ease-in-out;
  }
  header.scrolled-up{
    transform:translateY(0); transition: all 0.3s ease-in-out;
  }

  footer .footer-top {
    padding-top: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--mgrey);
  }
}
