@font-face {
  font-family: 'DINBek';
  src: url("../fonts/dinbek/subset-DINBek.woff2") format("woff2"), url("../fonts/dinbek/subset-DINBek.woff") format("woff"), url("../fonts/dinbek/subset-DINBek.svg#DINBek") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'DINBek';
  min-height: 100%;
  height: 100%;
}

section {
  padding: 100px 0;
}

@media screen and (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DINBek';
}

.home header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

@media screen and (max-width: 768px) {
  .home header {
    position: static;
  }
}

header {
  background: black;
  color: white;
}

header .brand {
  display: flex;
  align-items: center;
  height: 100%;
}

header .brand img {
  max-width: 240px !important;
}

@media screen and (max-width: 768px) {
  header .brand img {
    max-width: 150px !important;
  }
}

header .header-top {
  line-height: 55px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header .header-top a {
  color: #ccc;
  text-decoration: none;
  transition: .4s ease color;
}

@media screen and (max-width: 768px) {
  header .header-top {
    display: none;
  }
}

header .header-actions a {
  font-size: 14px;
}

header .header-actions a:hover {
  color: white;
}

header .header-basket-container {
  display: inline-block;
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

header .header-basket-container a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

header .header-basket-container a i {
  font-size: 24px;
}

header .header-basket-container a span {
  user-select: none;
  font-size: 13px;
  background: #576062;
  color: white;
  position: absolute;
  bottom: -12px;
  right: -12px;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .header-bottom {
  height: 85px;
}

@media screen and (max-width: 768px) {
  header .header-bottom {
    height: 60px;
    line-height: 60px;
  }
}

header .header-bottom .main-nav {
  font-family: 'DINBek', sans-serif;
  line-height: 85px;
}

header .header-bottom .main-nav > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

header .header-bottom .main-nav > ul > li {
  padding: 0 20px;
}

header .header-bottom .main-nav > ul > li > a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: .4s ease color;
}

header .header-bottom .main-nav > ul > li:hover > a:hover {
  color: #777;
}

header .header-bottom .main-nav > ul > li.has-children {
  position: relative;
}

header .header-bottom .main-nav > ul > li.has-children:hover .sub-menu-container {
  opacity: 1;
  visibility: visible;
  margin-top: -15px;
  transition: .4s ease opacity, .4s ease margin-top, .4s ease visibility;
}

header .header-bottom .main-nav > ul > li .sub-menu-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  min-width: 200px;
  white-space: nowrap;
  margin-top: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: .4s ease opacity, .4s ease margin-top, .4s ease visibility;
}

header .header-bottom .main-nav > ul > li .sub-menu-container ul {
  margin: 0;
  padding: 5px 0;
  list-style: none;
  background: white;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}

header .header-bottom .main-nav > ul > li .sub-menu-container ul li {
  margin: 0 20px;
  display: block;
  line-height: 18px;
  border-bottom: 1px solid #eee;
}

header .header-bottom .main-nav > ul > li .sub-menu-container ul li:last-child {
  border: none;
}

header .header-bottom .main-nav > ul > li .sub-menu-container ul li a {
  display: block;
  color: #555555;
  font-size: 14px;
  padding: 10px 0;
  text-decoration: none;
}

.mobile-nav-container {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  max-width: 320px;
  z-index: 99999;
  background: white;
  transition: .4s ease left;
  box-shadow: 5px 0 10px 0 rgba(0, 0, 0, 0.1);
}

.mobile-nav-container.active {
  left: 0;
}

.mobile-nav-container .mobile-nav-body {
  overflow-y: scroll;
  height: 100%;
}

.mobile-nav-container .mobile-nav {
  font-family: 'Poppins', sans-serif;
}

.mobile-nav-container .mobile-nav > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav-container .mobile-nav > ul > li {
  padding: 10px 24px;
  border-bottom: 1px solid #eee;
}

.mobile-nav-container .mobile-nav > ul > li:last-child {
  border: none;
}

.mobile-nav-container .mobile-nav > ul > li > a {
  display: block;
  color: black;
  text-decoration: none;
  font-size: 14px;
  transition: .4s ease color;
  flex: 80%;
}

.mobile-nav-container .mobile-nav > ul > li > span {
  flex: 20%;
  text-align: right;
}

.mobile-nav-container .mobile-nav > ul > li > span i {
  transition: .4s ease transform;
}

.mobile-nav-container .mobile-nav > ul > li > span.rotate i {
  transform: rotate(90deg);
}

.mobile-nav-container .mobile-nav > ul > li:hover > a:hover {
  color: #777;
}

.mobile-nav-container .mobile-nav > ul > li.has-children {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mobile-nav-container .mobile-nav > ul > li.has-children:hover .sub-menu-container {
  flex: 100%;
  width: 100%;
}

.mobile-nav-container .mobile-nav > ul > li .sub-menu-container {
  display: none;
}

.mobile-nav-container .mobile-nav > ul > li .sub-menu-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background: white;
}

.mobile-nav-container .mobile-nav > ul > li .sub-menu-container ul li {
  padding: 0 30px;
  display: block;
  line-height: 18px;
  border-bottom: 1px solid #eee;
}

.mobile-nav-container .mobile-nav > ul > li .sub-menu-container ul li:last-child {
  border: none;
}

.mobile-nav-container .mobile-nav > ul > li .sub-menu-container ul li a {
  display: block;
  color: #555555;
  font-size: 14px;
  padding: 10px 0;
  text-decoration: none;
}

.button {
  outline: none;
  cursor: pointer;
  user-select: none;
  text-decoration: none !important;
  background: white;
  padding: 10px 30px;
  display: inline-block;
  text-align: center;
  color: black;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 0;
  border: 1px solid #ddd;
}

.button::before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: #576062;
  z-index: -1;
  transition: .4s ease transform, .2s ease color;
}

.button:hover {
  color: white;
}

.button:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.main-slider-wrapper {
  font-family: 'DINBek';
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .main-slider-wrapper {
    height: 600px;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .main-slider-wrapper {
    height: 200px;
  }
}

.main-slider-wrapper .main-slider {
  height: 100%;
}

.main-slider-wrapper .main-slider .owl-stage-outer, .main-slider-wrapper .main-slider .owl-stage, .main-slider-wrapper .main-slider .owl-item {
  height: 100%;
}

.main-slider-wrapper .main-slider .item {
  height: 100%;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.main-slider-wrapper .main-slider .item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.main-slider-wrapper .main-slider .item .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  animation-name: slider-anim;
  animation-duration: 20s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@media screen and (max-width: 768px) {
  .main-slider-wrapper .main-slider .item .img-bg {
    object-fit: cover;
  }
}

.main-slider-wrapper .main-slider .item .img-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 1000px;
  z-index: 3;
}

.main-slider-wrapper .main-slider .item .img-custom {
  width: auto;
  max-width: 1000px;
}

@media screen and (max-width: 768px) {
  .main-slider-wrapper .main-slider .item .img-custom {
    max-width: 100%;
    padding: 0 40px;
  }
}

.main-slider-wrapper .main-slider .item .slider-subtitle {
  font-size: 50px;
  line-height: 60px;
  font-weight: 300;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  .main-slider-wrapper .main-slider .item .slider-subtitle {
    font-size: 20px;
    line-height: 30px;
  }
}

.main-slider-wrapper .main-slider .item .slider-title {
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  .main-slider-wrapper .main-slider .item .slider-title {
    font-size: 30px;
    line-height: 40px;
  }
}

.main-slider-wrapper .main-slider .item .slider-button {
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  background: black;
  padding: 10px 30px;
  display: inline-block;
  text-align: center;
  color: white;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 0;
}

.main-slider-wrapper .main-slider .item .slider-button::before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: #576062;
  z-index: -1;
  transition: .4s ease transform, .2s ease color;
}

.main-slider-wrapper .main-slider .item .slider-button:hover {
  color: white;
}

.main-slider-wrapper .main-slider .item .slider-button:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.main-slider-wrapper .main-slider .owl-dots {
  position: absolute;
  bottom: 40px;
  right: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.main-slider-wrapper .main-slider .owl-dots button {
  margin-bottom: 15px;
}

.main-slider-wrapper .main-slider .owl-dots button span {
  width: 30px;
  height: 5px;
  display: block;
  background: white;
}

.main-slider-wrapper .main-slider .owl-dots button + button {
  margin-left: 15px;
}

@media screen and (max-width: 768px) {
  .main-slider-wrapper .main-slider .owl-dots {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
  }
  .main-slider-wrapper .main-slider .owl-dots button span {
    width: 25px;
    height: 4px;
  }
}

@keyframes slider-anim {
  0% {
    width: 120%;
    height: 120%;
  }
  50% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 120%;
    height: 120%;
  }
}

#home-about {
  position: relative;
  z-index: 99;
}

#home-about .about-left .content-card {
  position: absolute;
  width: 100%;
  left: 50%;
  bottom: -125px;
  margin-right: -180px;
  padding: 50px 70px 50px 50px;
  background: #576062;
  color: white;
}

@media screen and (max-width: 768px) {
  #home-about .about-left .content-card {
    position: static;
    padding: 20px 15px;
  }
}

#home-about .about-left .content-card h2 {
  font-family: 'DINBek';
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #home-about .about-left .content-card h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }
}

#home-about .about-left .content-card p {
  line-height: 30px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #home-about .about-left .content-card p {
    margin-bottom: 30px;
  }
}

#home-about .about-left .content-card a {
  border-bottom: 2px solid white;
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: white;
  text-decoration: none;
  letter-spacing: 1px;
}

#home-about .about-right .content-card {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  margin-top: -230px;
  margin-left: -50px;
  padding: 50px 90px 90px 50px;
  background: black;
  opacity: .9;
  color: white;
}

@media screen and (max-width: 768px) {
  #home-about .about-right .content-card {
    position: static;
    padding: 20px 15px;
    margin-left: 0;
    margin-top: 0;
  }
}

#home-about .about-right h2 {
  font-family: 'DINBek';
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #home-about .about-right h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }
}

#home-about .about-right p {
  line-height: 30px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #home-about .about-right p {
    margin-bottom: 30px;
  }
}

#home-products {
  background: #f5f5f5 !important;
}

.section-heading h2 {
  margin-bottom: 50px;
  padding-bottom: 40px;
  font-family: 'DINBek';
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  color: black;
  position: relative;
}

@media screen and (max-width: 768px) {
  .section-heading h2 {
    font-size: 30px;
  }
}

.section-heading h2 span {
  position: absolute;
  height: 10px;
  width: 65px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}

.section-heading h2 span::before {
  content: '';
  display: block;
  right: 0;
  top: 0;
  background: #576062;
  width: 40px;
  height: 3px;
  position: absolute;
}

.section-heading h2 span::after {
  content: '';
  display: block;
  left: 0;
  bottom: 0;
  background: #576062;
  width: 40px;
  height: 3px;
  position: absolute;
}

.product-list > .container, .product-list .container-fluid {
  max-width: 1600px;
}

.product-list .product-list-filter .filter-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.product-list .product-list-filter .filter-nav span {
  display: block;
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: .4s ease background, .4s ease color;
}

@media screen and (max-width: 768px) {
  .product-list .product-list-filter .filter-nav span {
    font-size: 12px;
    padding: 10px;
    flex: 50%;
    text-align: center;
  }
}

.product-list .product-list-filter .filter-nav span:hover, .product-list .product-list-filter .filter-nav span.active {
  background: #576062;
  color: white;
}

.product-list .product-list-filter .filter-tabs .filter-tab {
  display: none;
}

.product-list .product-list-filter .filter-tabs .filter-tab.active {
  display: block;
}

.product-list .product-list-filter .filter-tabs .img-holder {
  position: relative;
  height: 500px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .product-list .product-list-filter .filter-tabs .img-holder {
    height: 300px;
  }
}

.product-list .product-list-filter .filter-tabs .img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s ease transform;
}

.product-list .product-list-filter .filter-tabs .img-holder .hidden-content {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .4s ease top;
}

.product-list .product-list-filter .filter-tabs .img-holder .hidden-content a {
  color: #576062;
  font-family: 'DINBek';
  font-size: 22px;
  text-decoration: none;
  user-select: none;
}

.product-list .product-list-filter .filter-tabs .img-holder:hover img {
  transform: scale(1.2);
}

.product-list .product-list-filter .filter-tabs .img-holder:hover .hidden-content {
  top: 0;
}

.blog-item .img-holder {
  height: 300px;
  position: relative;
}

.blog-item .img-holder > a {
  display: block;
  height: 100%;
  overflow: hidden;
}

.blog-item .img-holder > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease transform;
}

.blog-item .img-holder > a img:hover {
  transform: scale(1.2);
}

.blog-item .img-holder .blog-name {
  position: absolute;
  bottom: -50px;
  right: 0;
  background: white;
  padding: 20px 80px 60px 40px;
}

.blog-item .img-holder .blog-name a {
  color: black;
  font-family: 'DINBek';
  font-size: 16px;
  font-weight: 700;
  color: black;
  letter-spacing: 1px;
}

footer .brand img {
  max-width: 250px !important;
}

footer .footer-about {
  padding-right: 15px;
  font-size: 15px;
  font-weight: 300;
}

footer .footer-title {
  font-size: 20px;
  font-weight: 600;
}

footer ul.links {
  padding: 0;
  margin: 0;
  list-style: none;
}

@media screen and (max-width: 768px) {
  footer ul.links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

footer ul.links li {
  display: inline-flex;
  margin-bottom: 15px;
}

footer ul.links li:last-child {
  margin: 0;
}

footer ul.links li i {
  color: #666666;
  font-size: 13px;
  width: 20px;
  position: relative;
  top: 5px;
}

footer ul.links li span {
  font-size: 15px;
  font-weight: 300;
  display: block;
  margin-left: 10px;
}

footer ul.links li span a {
  color: inherit;
  text-decoration: none;
}

footer ul.links li span a:hover {
  text-decoration: none;
  color: #333;
}

footer ul.social {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-flex;
  margin-top: 40px;
}

footer ul.social li {
  margin-right: 30px;
}

footer ul.social li:last-child {
  margin: 0;
}

footer ul.social li a {
  color: #666;
  font-size: 14px;
}

footer .footer-bottom {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 45px;
  background: black;
  color: white;
}

.shopping-basket {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 80%;
  max-width: 300px;
  background: white;
  box-shadow: -5px 0 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 999999;
  transition: .4s ease right;
}

.shopping-basket.normal {
  position: static;
  width: 100%;
  height: auto;
  max-width: 100%;
  box-shadow: none;
}

.shopping-basket.normal .basket-body {
  max-height: 400px;
  overflow-y: auto;
}

.shopping-basket.active {
  right: 0;
}

.shopping-basket .shopping-basket-trigger {
  cursor: pointer;
  user-select: none;
}

.shopping-basket .basket-item {
  border-bottom: 1px solid #eee;
}

.shopping-basket .basket-item:last-child {
  border: none;
}

.shopping-basket .basket-item > div:last-child span {
  color: red;
}

.shopping-basket .button {
  background: #576062;
  border-color: #576062;
  border-radius: 5px;
  color: white;
  transition: .4s ease opacity;
  font-size: 14px;
  letter-spacing: 1px;
}

.shopping-basket .button:hover {
  opacity: .7;
}

@media screen and (max-width: 768px) {
  header .header-mobile-menu-trigger, header .header-basket-container {
    padding: 0 10px;
    border: none;
  }
  header .header-mobile-menu-trigger a, header .header-basket-container a {
    color: white;
    font-size: 24px;
    text-align: center;
  }
}

.form-control:focus {
  box-shadow: unset;
  outline: none;
  border-color: #576062;
}
