.products__title {
  color:#fff;
  font-size: 45px;
  margin: 40px;
  /*text-align: center;*/
}

.products__wrapper {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .products__wrapper {
    justify-content: flex-start;
  }
}

.products__links {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
  color:#fff;
  font-size: 18px;
  font-weight: 600;
    
    

}
@media only screen and (max-width: 767px) {
  .products__links {
    flex: 0 0 150px;
  }
}

.products__link {
  background-color:#a3744a;
  cursor: pointer;
  text-align: center;
  margin-left: auto;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 300px;
  will-change: transform, opacity;
}
@media only screen and (max-width: 991px) {
  .products__link {
    width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .products__link {
    width: 150px;
  }
}
.products__link--active, .products__link:hover {
  opacity: 0.8;
  transform: scale(0.97);
}
.products__link > img {
  height: auto;
  width: 100%;
}
.products__link--active::after {
  background: #0a0605 ;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 14px;
}
.products__link:first-child ~ .products__link {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .products__link:first-child ~ .products__link {
    margin-top: 10px;
  }
}

.products__containers {
  flex: 1 1 100%;
}

.products__container {
  /*padding: 20px 40px;*/
  position: sticky;
  top: 100px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .products__container {
    padding: 10px 20px;
  }
}

.products__product-title {
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
}

.products__item-list {
  list-style: none;
  padding: 0;
}
.products__item-list > li {
  font-size: 16px;
  padding: 10px;
}

.products__item-list-index {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
}


/* NAV BAR ITEMS */

.navbar {
 /* align-items: center;
  display: flex;
  flex-wrap: nowrap;
  height: 50px;
  justify-content: space-between;
  left: 0;
  padding: 0 20px;
  position: fixed;
  right: 0;
  top: 50px;
  transition: background-color 0.3s ease;
  z-index: 500;*/
  height: 50px;
}

.navbar--scroll {
  background-color: #202020;
}

.navbar__logo {
  display: flex;
  justify-content: center;
  width: 36px;
  z-index: 600;
}

.navbar__logo-image {
  display: block;
  height: 28px;
  width: auto;
}

.navbar__navigation {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.navbar__links {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  z-index: 550;
}
@media only screen and (min-width: 992px) {
  .navbar__links {
    display: flex !important;
  }
}
@media only screen and (max-width: 991px) {
  .navbar__links {
    align-items: stretch;
    background: #0a0605 ;
    bottom: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 50px;
  }
}

.navbar__locales {
  display: flex;
  flex-direction: row;
  padding: 0 25px;
  z-index: 600;
}

.navbar__item {
  color: #FFFFFF;
  display: block;
  margin-left: 25px;
  margin-right: 25px;
  padding: 5px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}
.navbar__item:hover::after, .navbar__item--active::after {
  border-bottom: 1px solid #FFFFFF;
  content: "";
  display: block;
  left: 5px;
  margin-top: 8px;
  position: absolute;
  right: 5px;
}
@media only screen and (max-width: 991px) {
  .navbar__item:hover::after, .navbar__item--active::after {
    content: none;
    display: none;
  }
  .navbar__links > .navbar__item {
    font-size: 25px;
    height: 50px;
    margin: 0;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .navbar__item:hover {
    text-decoration: underline;
  }
}

.navbar__item--locale {
  margin: 0;
}

.navbar__toggler {
  background: none;
  border: none;
  color: #FFFFFF;
  display: block;
  font-size: 18px;
  margin: 0;
  padding: 0;
  text-decoration: none;
  z-index: 600;
}
@media only screen and (min-width: 992px) {
  .navbar__toggler {
    display: none;
  }
}

/* BLOCKS */

.blocks {
  margin: -30px 0;
}

.blocks__item {
  margin: 30px 0;
}

.content {
  padding: 50px 0;
}
