:root {
    --clr-black: #000000;
    --clr-grey: rgb(238, 238, 238); /* #eeeeee*/
    --clr-light-grey: rgba(238, 238, 238, 0.5); /* #eeeeee opacity 50% */
    --clr-dark-grey: rgb(221, 221, 221); 
    --clr-white: rgb(255, 255, 255);
    --clr-green: #048127;
    --clr-red: #92140C;
    --clr-yellow: #C09704;
    --clr-orange: #C05304;

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semi-bold: 600;
    --fw-extra-bold: 800;
    --fw-bold: 700;
    --fw-black: 900;

}

/*======== CSS RESETS ========*/

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  font-family: Helvetica, sans-serif;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*========== GENERAL STYLES =============*/
h1 {
  font-size: 20px;
  margin: 11px 0px;
  font-weight: var(--fw-bold);
}

h2 {
  font-size: 16px;
  margin: 13px 0px;
  font-weight: var(--fw-bold);
}

h3 {
  font-size: 14px;
  margin: 15px 0px;
  font-weight: var(--fw-bold);
}

h4 {
  font-size: 13px;
  margin: 21px 0px;
  font-weight: var(--fw-bold);
}

p {
  font-size: 13px;
  margin: 16px 0px;
  font-weight: var(--fw-regular);
}

i {
  margin-right: 5px;
}

h1 span,
h2 span,
h3 span,
h4 span {
  font-weight: var(--fw-regular);
}

p span {
  font-weight: var(--fw-bold);
}

.fw-medium {
  font-weight: var(--fw-medium);
}

.fw-extra-bold {
  font-weight: var(--fw-bold);
}

.fw-bold {
  font-weight: var(--fw-bold);
}

.fw-black {
  font-weight: var(--fw-black);
}

.clr-black {
  color: var(--clr-black);
}

.clr-dark-green {
  color: var(--clr-dark-grey);
}

.my-10 {
  margin: 10px 0px;
}

.flex-justify-center {
  display: flex;
  justify-content: center;
}

.flex-align-center {
  display: flex;
  align-items: center;
}

.flex-justify-align-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 15px;
  }

  h4 {
    font-size: 14px;
  }

  p {
    font-size: 14px;
  }
  
}

@media (min-width: 992px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 16px;
  }

  h4 {
    font-size: 15px;
  }

  p {
    font-size: 15px;
  }
  
}


@media (min-width: 1200px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  p {
    font-size: 16px;
  }
  
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-underline {
  text-decoration: underline;
}

.text-line-through {
  text-decoration: line-through;
}

.container {
  margin: 0 auto;
  max-width: 1198px;
  padding: 0 20px;
}

section {
  margin: 30px 0;
}

a {
  text-decoration: none;
}

li, ol {
  list-style: none;
}

.sidebar-menu__list  {
  list-style: none;
}

.row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.overflow-x-auto {
  overflow-x: auto;
}

.bg-dark-grey {
  background: var(--clr-dark-grey);
}

.flex-center {
  display: flex;
  justify-content: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}


.box {
  width: 100%;
  border: 2px solid #000;
  border-radius: 0px;
  margin-bottom: 20px;
}

.box__header {
  border-bottom:  2px solid #000;
  padding: 5px 20px;
}

.box__body {
  padding: 10px 20px;
}

.box__header p {
  text-align: center;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  margin: 0px;
}


.box__footer {
  border-top: 2px solid #000;
  padding: 5px 20px;
}

.box__footer p {
  text-transform: uppercase;
  font-weight: var(--fw-black);
  margin: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}


.mr-40 {
  margin-right: 40px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}



.my-10 {
  margin: 10px 0px;
}

.my-20 {
  margin: 20px 0px;
}

.my-30 {
  margin: 30px 0px;
}

.my-40 {
  margin: 40px 0px;
}


.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.bg-5-10-green {
  padding: 5px 10px;
  background-color: var(--clr-green);
  color: var(--clr-white);
}

.bg-5-10-red {
  padding: 5px 10px;
  background-color: var(--clr-red);
  color: var(--clr-white);
}

.br-5 {
  border-radius: 5px;
}

.br-3 {
  border-radius: 5px;
}

.p-10 {
  padding: 10px
}


/*======= SCROLL BAR STYLES =============*/
::-webkit-scrollbar {
	width: 9px;
	height: 9px;
}


::-webkit-scrollbar-track {
  border-radius: 10rem;
}


::-webkit-scrollbar-thumb {
	background-color: rgba(0,0,0,0.4);
	border-radius: 10rem;
	border: 1px solid var(--clr-white);
}



::-webkit-scrollbar-track-piece:start {
	background: transparent;
}

::-webkit-scrollbar-track-piece:end {
	background: transparent;
}

* {
  scrollbar-width: thin;
}



@media only screen and (max-width: 540px){
  [class*="col-"] {
    width: 100%;
  }
}

@media only screen and (min-width: 540px) {
  .col-sm-1 { width: 8.33%;}
  .col-sm-2 { width: 16.66%;}
  .col-sm-3 { width: 25%;}
  .col-sm-4 { width: 33.33%;}
  .col-sm-5 { width: 41.66%;}
  .col-sm-6 { width: 50%;}
  .col-sm-7 { width: 58.33%;}
  .col-sm-8 { width: 66.66%;}
  .col-sm-9 { width: 75%;}
  .col-sm-10 { width: 83.33%;}
  .col-sm-11 { width: 91.66%;}
  .col-sm-12 { width: 100%;}
}

/* Medium devices >= 768px */
@media only screen and (min-width: 768px) {
  .col-m-1 { width: 8.33%;}
  .col-m-2 { width: 16.66%;}
  .col-m-3 { width: 25%;}
  .col-m-4 { width: 33.33%;}
  .col-m-5 { width: 41.66%;}
  .col-m-6 { width: 50%;}
  .col-m-7 { width: 58.33%;}
  .col-m-8 { width: 66.66%;}
  .col-m-9 { width: 75%;}
  .col-m-10 { width: 83.33%;}
  .col-m-11 { width: 91.66%;}
  .col-m-12 { width: 100%;}
}


/* laptops and desktops >= 992px */
@media only screen and (min-width: 992px) {
  .col-1 { width: 8.33%;}
  .col-2 { width: 16.66%;}
  .col-3 { width: 25%;}
  .col-4 { width: 33.33%;}
  .col-5 { width: 41.66%;}
  .col-6 { width: 50%;}
  .col-7 { width: 58.33%;}
  .col-8 { width: 66.66%;}
  .col-9 { width: 75%;}
  .col-10 { width: 83.33%;}
  .col-11 { width: 91.66%;}
  .col-12 { width: 100%;}
}

/* large laptops and desktops >= 1200px */
@media only screen and (min-width: 1200px) {
  .col-xl-1 { width: 8.33%;}
  .col-xl-2 { width: 16.66%;}
  .col-xl-3 { width: 25%;}
  .col-xl-4 { width: 33.33%;}
  .col-xl-5 { width: 41.66%;}
  .col-xl-6 { width: 50%;}
  .col-xl-7 { width: 58.33%;}
  .col-xl-8 { width: 66.66%;}
  .col-xl-9 { width: 75%;}
  .col-xl-10 { width: 83.33%;}
  .col-xl-11 { width: 91.66%;}
  .col-xl-12 { width: 100%;}
}

/* BUTTONS */
.btn {
  
  border-radius: 3px;
  height: 30px;
  padding: 0px 10px;
  font-size: 14px;
  transition: all 0.3s;
}

.btn--dark {
  background-color: var(--clr-black);
  border: none;
  color: var(--clr-white);
}

.btn:hover {
  cursor: pointer;
  transform: scale(110%);
  
}

.btn--outline {
  background-color: transparent;
  border: 2px solid var(--clr-black);
  color: var(--clr-black);
  text-transform: uppercase;
}

.btn--outline:hover {
  background-color: var(--clr-black);
  color: var(--clr-white);
}

@media (min-width: 768px) {
  .btn {
    height: 33px;
    font-size: 15px;
  }
  
}

@media (min-width: 992px) {

  .btn--lg {
    height: 35px;
    font-size: 16px;
  }
  
}

@media (min-width: 992px) {

  .btn--lg {
    height: 40px;
    font-size: 20px;
  }
  
}


/* FORMS */
.form__group {
  margin-bottom: 5px;
  width: 100%;
}

.form__group-title {
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  margin-bottom: 10px;
  font-size: 16px;
}

.form__group--row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.form__group--column {
  display: flex;
  flex-direction: column;
}

.form__group--row label {
  font-weight: var(--fw-medium);
}

.form__group--row label,
.form__group--row input,
.form__group--row select, 
.form__group--row span{
  margin-right: 5px;
}

.form__text-input,
.form__select-input,
.form__date-input {
  border: 1px solid var(--clr-black);
  border-radius: 3px;
  padding: 0px 10px;
  height: 30px;
  margin: 5px;
  font-size: 13px;
}
.form__text-area {
  border: 1px solid var(--clr-black);
  border-radius: 3px;

}

.form__text-input--disabled {
  background-color: var(--clr-grey);
}


.form__group label {
  font-size: 14px;
  font-weight: var(--fw-medium);
}

.form__text-input::placeholder {
  font-size: 13px;
}

.form input[type="file"] {
  display: none;
}

.form__file-input-label {
  display: flex;
  align-items: center;
}



.form__file-input-label i {
  font-size: 60px;
  cursor: pointer;
  margin-right: 10px;
}

@media (min-width: 768px) {
  .form__group-title {
    font-size: 17px;
  }

  .form__text-input,
  .form__select-input,
  .form__date-input {
    height: 33px;
    font-size: 15px;
  }
  
  
  .form label {
    font-size: 15px;
    margin-bottom: 8px;
  }
  
  .form input::placeholder {
    font-size: 14px;
  }

  .form__file-input-label i {
    font-size: 80px;
  }
}

@media (min-width: 992px) {
  .form__group-title {
    font-size: 18px;
  }

  .form__text-input,
  .form__select-input,
  .form__date-input {
    height: 35px;
    font-size: 16px;
  }

  .form label {
    font-size: 16px;
    margin-bottom: 8px;
  }

 
  
  .form input::placeholder {
    font-size: 15px;
  }

  .form__file-input-label i {
    font-size: 100px;
  }

  
}


.box {
  width: 100%;
  border: 2px solid #000;
  border-radius: 0px;
  margin-bottom: 20px;
}

.box__header {
  border-bottom:  2px solid #000;
  padding: 5px 20px;
}

.box__body {
  padding: 10px 20px;
}

.box__header p {
  text-align: center;
  text-transform: uppercase;
  font-weight: var(--fw-bold)
}


.box__footer {
  border-top: 2px solid #000;
  padding: 5px 20px;
}

.box__footer p {
  text-transform: uppercase;
  font-weight: var(--fw-black);
}

/*========= HEADER STYLES =======*/
/*--- MAIN HEADER ---*/
#main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 45px;
  padding: 5px;
}

#nav-close-button {
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  border: none;
  cursor: pointer;
  background-color: var(--clr-white);
  border-radius: 3px;

}

#nav-close-button:hover {
  background-color: var(--clr-grey);
 
}



nav {
  display: block;
  background-color: var(--clr-white);
  z-index: 3;
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: start;
  padding: 20px;
  transition: all ease-out 300ms;
}


.nav__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 65px;
}

.nav__list:first-child{
  border-top: 1px solid var(--clr-dark-grey);
}

.nav__item {
  display: flex;
  align-items: center;
  height: 65px;
  width: 100%;
  padding: 0 5px;
}

.nav__link.active {
  font-weight: var(--fw-bold);
}

.nav__item:not(:last-of-type) {
  border-bottom: 1px solid var(--clr-dark-grey);
}

.nav__item:hover {
  cursor: pointer;
  background-color: var(--clr-grey);
}

.nav__link {
  font-size: 32px;
  text-transform: uppercase;
  color: var(--clr-black);
}

.hamburguer-menu {
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
}


.hamburguer-menu svg {
  width: 30px;
  height: 30px;
}



#logo {
  font-weight: 14px;
  font-weight: var(--fw-black);
  color: #1E6091;
}

#logo span{
    background-color: #1E6091;
    padding: 1px 5px;
    color: #FCDC00;
}

#nav-whatsapp-link {
  font-size: 13px;
  background-color: var(--clr-grey);
  color: var(--clr-black);
  font-weight: var(--fw-medium);
  padding: 5px 7px;
  border-radius: 3px;
  transition: all 250ms ease-in-out;
}

#nav-whatsapp-link:hover {
  background-color: var(--clr-black);
  color: var(--clr-white);
}

#nav-whatsapp-link span {
  margin-left: 3px;
}

@media (min-width: 576px) {
  #logo svg {
    width: 165px;
  }

  #nav-whatsapp-link {
    font-size: 14px;

  }

}

@media (min-width: 768px) {
  #main-header {
    height: 50px;
  }

  .hamburguer-menu {
    display: none;
  }

  #nav-close-button {
    display: none;
  }

  nav {
    position: static;
    height: 50px;
    width: 100%;
    padding: 0;
    margin: 0;
    width: 60%;
  }


  .nav__list {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    min-width: 362px;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 20px;
  }

  .nav__item {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }
  .nav__list:first-child{
    border-top: none;
  }
  .nav__item:not(:last-of-type) {
    border-bottom: none;
  }

  .nav__link {
    font-size: 14px;
    padding: 10px auto;
    font-weight: var(--fw-medium);
  }

  .nav__link.active {
    font-weight: var(--fw-bold);
  }
  #logo svg {
    width: 165px;
  }
  #nav-whatsapp-link {
    font-size: 14px;

  }
}


@media (min-width: 992px) {
  #main-header {
    padding: 10px;
    height: 60px;
  }

  #logo svg {
    width: 175px;
  }

  .nav__link {
    font-size: 16px;
    padding: 10px auto;
  }

  #nav-whatsapp-link {
    font-size: 16px;
 }

}

@media (min-width: 1200px) {
  #main-header {
    
    height: 60px;
  }

  #logo svg {
    width: 200px;
  }

  .nav__link {
    font-size: 16px;
    padding: 10px auto;
  }

  #nav-whatsapp-link {
    font-size: 16px;
 }

}


/*--- SHOP HEADER ---*/

.shop-header {
  padding: 0px 10px;
  background-color: #F7F8F9;
  border-top: 1px solid var(--clr-dark-grey);
  border-bottom: 1px solid var(--clr-dark-grey);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  height: 45px;
  /*margin-bottom: 20px;*/
  margin-bottom: 5px;
}

.shop-header .shop-home-link {
  color: var(--clr-black);
  font-size: 16px;
  margin-right: 5px;
  padding: 5px;
  font-weight: var(--fw-medium);
}

.shop-header .shop-home-link:hover {
  color: var(--clr-black);
  background-color: var(--clr-dark-grey);
  border-radius: 3px;
}

.shop-header .shop-home-link.active {
  font-weight: var(--fw-bold);
}


.shop-header .shop-home-link span {
  display: none;
}


.shop-search-form {
 width: 100%;
 display: flex;
 position: relative;
 margin-right: 10px;
}






.shop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop-nav--lg {
  display: none;
}

.shop-nav span {
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  margin-right: 10px;
  font-size: 14px;
}
.shop-nav__list {
  display: flex;
}

.shop-nav__item {
  margin-right: 10px;
}

.shop-nav__link {
  font-size: 16px;
  color: var(--clr-black);
  padding: 5px;

}

.shop-nav__link:hover {
  cursor: pointer;
  color: blue;
}

.form-text-input {
  height: 30px;
}

#shop-search-text-input {
  width: 100%;
  border: 2px solid var(--clr-black);
  border-radius: 3px;
  padding-left: 10px;
  
}

#shop-search-text-input::placeholder {
  font-family: Helvetica, sans-serif;
  font-size: 13px;
}

.shop-search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background-color: var(--clr-black);
  color: var(--clr-white);
  border: none;
  padding: 5px 10px;
  border-radius: 0px 2px 2px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop-search-button:hover {
  cursor: pointer;
  background-color: var(--clr-dark-grey);
  color: var(--clr-black);
}

.shopping-cart {
  display: flex;
  align-items: center;
}

.shopping-cart__title {
  display: none;
}

.shopping-cart__icon {
  position: relative;
}

.shopping-cart__icon i {
  font-size: 22px;
}

.shopping-cart__badge {
  position: absolute;
  top: 0;
  right: -10px;
  font-size: 11px;
  height: 19px;
  width: 19px;
  border-radius: 30px;
  color: var(--clr-white);
  background-color: #92140C;
  font-weight: var(--fw-bold);
  display: flex;
  justify-content: center;
  align-items: center;
}

/*
@media (min-width: 576px) {
  .shop-search-form {
    height: 30px;
    width: 68%;
  }

  .shopping-cart__title {
    text-transform: uppercase;
    font-size: 16px;
  }

  .shop-search-button {
    padding: 4px 20px;
  }

  #shop-search-text-input::placeholder {
    font-family: Helvetica, sans-serif;
    font-size: 13px;
  }
  .shop-header .shop-home-link--sm {
    display: none;
  }
  .shop-header .shop-home-link--lg {
    display: block;
  }

  .shop-header .shop-home-link--lg span {
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    margin-left: 5px;
    font-weight: var(--fw-regular);
    color: var(--clr-black);
  }
}

*/

@media (min-width: 768px) {

  .shop-header .shop-home-link {
    display: flex;
    align-items: center;
  
  }

  .shop-header .shop-home-link span {
    display: inline-block;
    margin-left: 10px;
    font-size: 14px;
    text-transform: uppercase;
  }

  
  .shop-search-form {
    width: 100%;
  }

  .form-text-input {
    height: 35px;
  }

  .shop-header {
    padding: 5px;
    height: 50px;
  }

  .shop-search-button {
    padding: 4px 20px;
  }

  #shop-search-text-input::placeholder {
    font-family: Helvetica, sans-serif; 
    font-size: 14px;
  }


  .shop-nav span {
    display: inline-block;
    font-size: 14px;
  }


}

@media (min-width: 992px) {
  
  .shop-header {
    padding: 10px;
    height: 50px;
    
  }

  .shop-nav--lg {
    display: flex;
  }

  .shop-nav--sm {
    display: none;
  }


  .shop-header .shop-home-link span {
    display: inline-block;
    text-transform: uppercase;
    font-size: 16px;
    margin-left: 5px;
    font-weight: var(--fw-medium);
    color: var(--clr-black);
  }

  .shop-search-form {
    width: 75%;
    padding-left: 1em;
  }



  .shop-search-button {
    padding: 8px 25px;
  }

  #shop-search-text-input::placeholder {
    font-family: Helvetica, sans-serif; 
    font-size: 14px;
  }
  #shop-search-button .bi-search{
    font-size: 16px;
  }


  .shop-nav span {
    font-size: 16px;
  }

  


}




@media (min-width: 1200px) {
  .shop-header {
    padding: 10px;
    height: 60px;
  }

  .shop-header .shop-home-link span {
    font-size: 16px;
  }

  .form-text-input {
    height: 40px;
  }

  .shop-search-button {
    padding: 8px 25px;
  }

  #shop-search-text-input::placeholder {
    font-family: Helvetica, sans-serif;
    font-size: 16px;
  }
  #shop-search-button .bi-search{
    font-size: 16px;
  }

}

/*===== ACCORDION ====*/
.accordion__item {
  background-color: var(--clr-white);
  border-radius: 0px;
  margin-bottom: 5px;
  /*margin-bottom: 10px;*/
}

.accordion__link {
  /*font-size: 24px;*/
  font-size: 18px;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  color: var(--clr-black);
  background-color: var(--clr-grey);
  width: 100%;
  text-decoration: none;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0px;
  border: none;
}

.accordion__link .bi-plus {
  display: block;
}

.accordion__link .bi-dash {
  display: none;
}

.accordion__answer {
  max-height: 0;
  overflow: hidden;
  position: relative;
  padding: 0px 20px;
  background-color: var(--clr-white);
  transition: max-height 650ms;
}

.accordion__item .accordion__answer.active {
  max-height: 25rem;
  padding: 10px 20px;
  /*border-radius: 0px 0px 5px 5px;*/
  overflow: auto;
}


.accordion__item .accordion__link.active {
  border-bottom: 1px solid var(--clr-dark-grey);
 /* border-radius: 5px 5px 0px 0px;*/
}

.accordion__item .accordion__link.active .bi-dash {
  display: block;
}

.accordion__item .accordion__link.active .bi-plus {
  display: none;
}

.accordion__item {
  border: 1px solid var(--clr-dark-grey);
}

/*============== SIDEBAR-MENU ================*/
.sidebar--sm {
  display: block;
}

.sidebar--lg {
  display: none;
}

.sidebar-menu__item:not(:last-of-type) {
  border-bottom: 1px solid var(--clr-black);
}
.sidebar-menu__link {
  width: 100%;
  padding: 5px 10px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: var(--fw-black);
  font-weight: var(--fw-medium);
}

.sidebar-menu__link i {
  font-size: 24px;
}

.sidebar-menu__link .dropdown-icon i {
  font-size: 16px;
}


.sidebar-menu__link div {
  display: flex;
  align-items: center;
}

.sidebar-menu__link span {
  margin-left: 5px;
}

.sidebar-menu__link.active {
  font-weight: var(--fw-bold);
}

.sidebar-menu__link:hover,
.sidebar-menu__link--active {
  background-color: var(--clr-grey);
}

.sidebar-submenu .sidebar-menu__link {
  position: relative;
}

.sidebar-submenu .sidebar-menu__link::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--fw-black);
  display: block;
}

.sidebar-menu__link .dropdown-icon {
  transition: transform 0.3s ease-in-out;
}

.sidebar-menu__link .dropdown-icon.active{
  transform: rotate(-180deg);
}

.sidebar-menu__dropdown-content {
  padding: 0;
  height: 0;
  overflow: hidden;
  transition: height 0.25s ease-in-out;
}



@media (min-width: 768px) {

  .sidebar-menu__title {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: var(--fw-bold);
    position: relative;
    margin-bottom: 5px;
  }

  .sidebar-menu__title::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: var(--clr-black);
  }

  .sidebar-menu__title span {
    margin-left: 10px;
  }  



}

@media (min-width: 992px) {
  .sidebar--sm {
    display: none;
  }
  
  .sidebar--lg {
    display: block;
    width: 25%;
    padding: 0px 10px;
   
  }

  .sidebar--lg .shop-categories {
    max-height: 23rem;
    overflow: auto;
  }
}


/*====== FEATURED AREA ======*/

.default-welcome-banner {
  height: 170px;

}

@media (min-width: 420px) {
 
  .default-welcome-banner {
    height: 200px;
  
  }

  

}

@media (min-width: 540px) {
 
  .default-welcome-banner {
    height: 240px;
  
  }

  

}

@media (min-width: 650px) {
 
  .default-welcome-banner {
    height: 290px;
  
  }

  

}

@media (min-width: 768px) {
 
  .default-welcome-banner {
    height: 330px;
  
  }

  

}

@media (min-width: 850px) {
 
    .default-welcome-banner {
      height: 370px;
    
    }

}


@media (min-width: 992px) {
  .featured-area,
  .content-area {
    display: flex;
    gap: 1em;
  }

  .main-area {
    width: 75%;
  }
 
  .default-welcome-banner {
    height: 370px;
  
  }

}

@media (min-width: 1200px) {
  .featured-area {
    display: flex;
  }
 
  .default-welcome-banner {
    height: 370px;
  
  }

}


/*==== SHOP PRODUCTS COLLECTION ====*/


.shop-products-collection__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5em;
}

.shop-product-card{
  display: grid;
  justify-content: center;
  border: 1px solid var(--clr-dark-grey);
  padding: 8px 20px;
  border-radius: 3px;
  width: 100%;
}

.shop-product-card__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-product-card img {
  margin: 0 auto;
  width: 100%;
  margin-bottom: 10px;
}

.shop-product-card__title,
.shop-product-vat {
  font-size: 11px;
  font-weight: var(--fw-regular);
  color: var(--clr-black);
  font-style: italic;
  margin-bottom: 3px;
  text-align: center;
}

.shop-product-vat {
  font-style: normal;
}

.shop-product-card__price {
  font-size: 15px;
  font-weight: var(--fw-semi-bold);
  text-align: center;
  margin-top: 0px;
  margin-bottom: 3px;
}

.shop-product-card__old-price {
  font-size: 13px;
  font-weight: var(--fw-regular);
  margin-bottom: 3px;
  text-align: center;
  margin-top: 0px;
  text-decoration: line-through;
}

.shop-product-card__button {
  text-transform: uppercase;
  font-size: 12px;
  color: var(--clr-black);
  border: 1px solid var(--clr-black);
  border-radius: 2px;
  padding: 5px 7px;
  background-color: none;
}

.shop-product-card__button:hover,
.shop-product-card__button:active {
  color: var(--clr-white);
  background-color: var(--clr-black);
}

@media (min-width: 576px){ 
  .shop-products-collection__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6em;
  }



  
  .shop-product-card__title,
  .shop-product-vat {
    font-size: 12px;
  }
  
  .shop-product-card__price {
    font-size: 16px;
  }

  .shop-product-card__old-price {
    font-size: 14px;
  }
  
  .shop-product-card__button {
    font-size: 12px;
  }

}
@media (min-width: 768px){ 
    
    .shop-products-collection {
        margin-bottom: 20px;
    }
    
  .shop-products-collection__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.7em;
  }


  
  .shop-product-card__title,
  .shop-product-vat {
    font-size: 13px;
  }

  .shop-product-card__old-price {
    font-size: 15px;
  }
  
  .shop-product-card__price {
    font-size: 18px;
  }
  
  .shop-product-card__button {
    font-size: 13px;
  }
}

@media (min-width: 992px){ 
    
    .shop-products-collection {
        margin-bottom: 30px;
    }

  .shop-products-collection--four .shop-products-collection__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8em;
  }
  .shop-products-collection--five .shop-products-collection__list {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8em;
  }

 
  .shop-product-card__title,
  .shop-product-vat {
    font-size: 13px;
  }

  .shop-product-card__old-price {
    font-size: 16px;
  }
  
  .shop-product-card__price {
    font-size: 18px;
  }
  
  .shop-product-card__button {
    font-size: 13px;
  }

}

@media (min-width: 1200px){ 
    .shop-products-collection {
        margin-bottom: 40px;
    }
    
  .shop-products-collection--four .shop-products-collection__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
  }
  .shop-products-collection--five .shop-products-collection__list {
    grid-template-columns: repeat(5, 1fr);
    gap: 1em;
  }


  .shop-product-card__title,
  .shop-product-vat {
    font-size: 14px;
  }

  .shop-product-card__old-price {
    font-size: 16px;
  }
  
  .shop-product-card__price {
    font-size: 20px;
  }
  
  .shop-product-card__button {
    font-size: 13px;
  }

}

/*===== NEWSLETTER =======*/
.newsletter {
  background-color: #F7F8F9;
  padding: 20px 30px;
}

.newsletter__cta {
 font-size: 20px;
 font-weight: var(--fw-black);
 font-style: italic;
 color: #0A1D2B;
 text-transform: uppercase;
 margin-bottom: 20px;
 text-align: center;
}

.newsletter__cta-description {
  font-size: 14px;
  font-weight: var(--fw-regular);
  color: #0A1D2B;
  margin-bottom: 10px;
  text-align: center;

}

.newsletter__form {
  width: 100%;
}

.newsletter__text-input-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 10px;
}

.newsletter__text-input {
  border-radius: 3px;
  border: 1px solid #0A1D2B;
  margin: 10px 0px;
  padding-left: 10px;
  height: 30px;
}

.newsletter__text-input::placeholder {
 font-family: Helvetica, sans-serif; 
 font-weight: var(--fw-medium);
 font-size: 13px;
}

.newsletter__button {
  background: #0A1D2B;
  color: var(--clr-white);
  font-weight: var(--fw-medium);
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
  width: 100%;
  font-size: 16px;
}

@media (min-width: 768px){ 
  .newsletter {
    padding: 50px 100px;
  }

  .newsletter__form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }


  .newsletter__text-input-group {
    flex-direction: row;
    justify-content: space-between;
  }

  .newsletter__cta {
    font-size: 24px;
   }

   .newsletter__cta-description {
    font-size: 18px;
  }

  .newsletter__text-input {
    width: 48%;
    
    height: 35px;

  }

  .newsletter__text-input::placeholder {
    font-size: 14px;
   }

  .newsletter__button {
    margin: 0px 10px;
    height: 35px;
  }
}

@media (min-width: 992px){ 
  .newsletter {
    padding: 60px 200px;
  }

  .newsletter__cta {
    font-size: 26px;
   }

   .newsletter__cta-description {
    font-size: 18px;
  }


  .newsletter__text-input {
    height: 40px;

  }

  .newsletter__text-input::placeholder {
    font-size: 15px;
   }

  .newsletter__button {
    font-size: 18px;
    height: 40px;
  }
}

@media (min-width: 1200px){ 
  .newsletter {
    padding: 70px 250px;
  }

  .newsletter__cta {
    font-size: 32px;
   }

   .newsletter__cta-description {
    font-size: 24px;
  }


  .newsletter__text-input {
    height: 40px;

  }

  .newsletter__text-input::placeholder {
    font-size: 16px;
   }

  .newsletter__button {
    margin: 0px 10px;
    font-size: 20px;
    height: 40px;
  }
}

/*======== ADVERTISEMENT =============*/
.vertical-advertisement {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.horizontal-advertisement {
  display: flex;
  justify-content: center;
  width: 100%;
}


/*==== PAGINATION ====*/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.pagination a {
  font-size: 13px;
}

.pagination__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.pagination__item {
  margin: 10px 2px;
  
}

.pagination__link {
  border: 2px solid var(--clr-black);
  padding: 3px 8px;
  color: var(--clr-black);
  transition: all 100ms ease-in-out;
}

.pagination__link--left span,
.pagination__link--right span {
  display: none;
}


.pagination__link--left {
  border-radius: 3px 0px 0px 3px;
} 
.pagination__link--right {
  border-radius: 0px 3px 3px 0px;
}

.pagination__link:hover, 
.pagination__button:hover {
  background-color: var(--clr-black);
  color: var(--clr-white);
}

.pagination__link--active, 
.pagination__button--active {
  background-color: var(--clr-black);
  color: var(--clr-white);
}

@media (min-width: 540px) {
  .pagination__link--left span,
  .pagination__link--right span {
    display: inline-block;
  }

  .pagination__link {
    padding: 4px 9px;
  }
}

@media (min-width: 768px) {
  .pagination__link {
    padding: 5px 10px;
  }

}

@media (min-width: 992px) {
  .pagination a {
    font-size: 16px;
  }
  .pagination__link {
    padding: 6px 11px;
  }
}

@media (min-width: 1200px) {
  .pagination__link {
    padding: 7px 12px;
  }
}







/*==== FOOTER ====*/

footer {
  background-color: #F7F8F9;
  border-top: 1px solid var(--clr-dark-grey);
  padding: 30px 0px;
}


.footer-info {
  display: flex;
  margin-bottom: 20px;
  flex-wrap: wrap;
  margin-right: 20px;
  justify-content: space-between;
}

.footer-info__content {
  margin-bottom: 20px;
}

.footer-info__title {
  font-size: 20px;
  text-transform: uppercase;
  color: var(--clr-black);
  font-weight: var(--fw-black);
  padding-left: 20px;
  line-height: 2;
  margin-bottom: 0px;
  
}

.footer-info__item {
  height: 35px;
  width: 100%;
}

.footer-info__link {
  padding: 10px 20px;
  color: var(--clr-black);
  font-size: 14px;
  display: flex;
  align-items: center;
  border-radius: 3px;
}


.footer-info__link:hover {
  background-color: var(--clr-white);
}

.footer-info__link-icon {
  margin-right: 10px;
}

.footer-info__link-icon svg {
  height: 35px;
 
}

.footer-info__link-icon i {
  font-size: 25px;
}

/*==== footer secondary ===*/
.footer__info-second {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid var(--clr-dark-grey);
  border-bottom: 1px solid var(--clr-dark-grey);
  margin-bottom: 20px;
  padding: 10px 20px;
}

.social-media {
  display: flex;
  align-items: center;
}

.social-media__title {
  font-size: 14px;
  margin-right: 20px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
}

.social-media__list {
  display: flex;
  align-items: center;
}

.social-media__item {
  margin-right: 20px;
}

.social-media__link {
  font-size: 25px;
  color: var(--clr-black);
  transition: color .3s ease-in-out;
}

.social-media__link:hover {
  color: blue;
}

/*=== FOOTER INFO THIRD ====*/

.footer__info-third .copyright {
  font-size: 12px;
  text-align: center;
  margin-bottom: 10px;
}

.footer__info-third .location {
  display: flex;
  justify-content: center;
  font-size: 12px;

}

.footer__info-third .location span {
  margin-right: 5px;
}

@media (min-width: 768px){
  footer {
    padding: 40px 0px;
  }

  .footer__info-second {
    flex-direction: row;
    justify-content: space-between;
  }

  .social-media__title {
    font-size: 16px;
  }


  .footer__info-third .copyright {
    font-size: 13px;
  }
  
  .footer__info-third .location {
    font-size: 13px;
  }

}

@media (min-width: 992px){

  footer {
    padding: 50px 0px;
  }


  .footer-info__title {
    font-size: 22px;
  }
  .footer-info__item {
    height: 40px;
  }

  .footer-info__link {
    font-size: 16px;
  }

  .social-media__title {
    font-size: 18px;
  }

.social-media__link {
  font-size: 28px;
}

.footer__info-third .copyright {
  font-size: 14px;
}

.footer__info-third .location {
  font-size: 14px;
}

}

@media (min-width: 1200px){
  
  footer {
    padding: 60px 0px;
  }

  .footer-info__title {
    font-size: 24px;
  }

  .footer-info__link {
    font-size: 18px;
  }

  .social-media__title {
      font-size: 20px;
  }

  .social-media__link {
    font-size: 30px;
  }
  


}
