@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@keyframes anim {
  from {
    -webkit-transform: scale(1) translateX(0);
    transform: scale(1) translateX(0);
  }
  to {
    -webkit-transform: scale(1.5) translateX(-10%);
    transform: scale(1.5) translateX(-10%);
  }
}

/*:root {
--bs-body-bg: #FBFCFC;
}*/

body {
  font-family: "Roboto Condensed", sans-serif;
}

section, .section {
  padding-top: clamp(2rem, 4vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 5rem);
}

#main {
  padding-bottom: 0;
  padding-top: 0;
  background-color: var(--bs-body-bg);
}

#eshop #main {
  padding-bottom: 4rem;
}

#register #main {
  padding-bottom: 4rem;
}

.main>.container:first-child, .main>.motive__motto:first-child, .container--article {
  padding-bottom: 0;
}

.breadcrumb {
  background-color: unset;
}

.btn-primary, .btn-default {
  border-radius: 50rem;
}

.btn-lg {
  padding: .5rem 2rem;
}

/* ----- MOTIVE ----- */
/*===========================================================================*/

#index .motive {
  height: 50rem;
}

#index .motive.fullscreen {
  height: 100vh !important;
}

body:not(#index) .motive,
body:not(#index) .motive.fullscreen {
  height: 8rem;
}

@media (min-width: 768px) {
  body:not(#index) .motive,
  body:not(#index) .motive.fullscreen {
    height: 14rem;
  }
}

.motive:not(.custom-motive)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  background: -webkit-gradient(
    linear,
    left top, left bottom,
    from(rgba(0, 0, 0, 0.7)),
    to(rgba(0, 0, 0, 0.1))
  );
  background: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

/* --- motto --- */
.motto {
  max-width: 50em;
}

.motive__motto,
.motive__background {
  opacity: 1;
}

body:not(#index) .motive__motto {
  display: none;
}

.motto__title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  letter-spacing: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9), 3px 3px 10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .motto__title {
    font-size: 4rem;
  }

  #index .motto__title {
    font-size: clamp(3rem, 7vw, 4.5rem);
  }
}

.motto__text {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 3rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9), 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.motto__button-link {
  color: #fff;
  background-color: transparent;
  font-weight: 500;
  border: 1px solid #fff;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9), 3px 3px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9), 3px 3px 10px rgba(0, 0, 0, 0.5);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9), 3px 3px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 5rem;
  transition: all 150ms ease;
  -moz-transition: all 150ms ease;
  -webkit-transition: all 150ms ease;
  -ms-transition: all 150ms ease;
  -o-transition: all 150ms ease;
}

.motto__button-link:hover {
  border-color: #fff;
  background-color: #fff;
  color: #000;
  text-shadow: none;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/* ----- motive carousel ----- */
.custom-motive {
  max-height: none;
  height: 50rem;
}

.motive:not(.fullscreen)>.section-carousel .carousel {
  max-height: unset;
}

.motive:not(.fullscreen)>.section-carousel .carousel-item img {
  max-height: unset;
  height: 50rem;
  -webkit-animation: anim 15s linear infinite alternate;
  animation: anim 15s linear infinite alternate;
}

.custom-motive .carousel-caption {
  top: 1.25rem;
  z-index: 1;
  color: #fff;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.custom-motive .carousel-caption h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  letter-spacing: 6px;
  text-shadow: 1px 1px 3px rgba(0,0,0,.9), 3px 3px 10px rgba(0,0,0,.5);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
}

.custom-motive .carousel-caption p {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  letter-spacing: .1em;
  line-height: 1;
  text-shadow: 1px 1px 3px rgba(0,0,0,.9), 3px 3px 10px rgba(0,0,0,.5);
}

.custom-motive .btn-default {
  color: #fff;
  background-color: transparent;
  font-weight: 500;
  border: 1px solid #fff;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9), 3px 3px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9), 3px 3px 10px rgba(0, 0, 0, 0.5);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9), 3px 3px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 5rem;
  transition: all 150ms ease;
  -moz-transition: all 150ms ease;
  -webkit-transition: all 150ms ease;
  -ms-transition: all 150ms ease;
  -o-transition: all 150ms ease;
}

.custom-motive .btn-default:hover {
  border-color: #fff;
  background-color: #fff;
  color: #000;
  text-shadow: none;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.custom-motive .carousel:not(.editable) .carousel-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.1)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* ----- TYPOGRAPHY ----- */
/*===========================================================================*/
h6,
.h6,
h5,
.h5,
h4,
.cart-form__title,
.account-form__title,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 3.5rem;
  }
}

h2, .h2 {
  font-size: clamp(1.25rem, calc(1.5rem + .9vw), 2.5rem);
}

.container--article h1 {
  position: relative;
}

.container--article h1::after {
  position: absolute;
  content: "";
  bottom: -1rem;
  left: 50%;
  right: 0;
  background: var(--bs-primary);
  width: 5rem;
  height: 0.25rem;
  border-radius: 0.25rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* ----- HEADER ----- */
/*===========================================================================*/
.header {
  position: absolute;
  background-color: transparent;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.header-fix {
  position: fixed;
  -webkit-box-shadow: 0px 3px 10px #00000024;
  box-shadow: 0px 3px 10px #00000024;
  background-color: #000;
  background-image: var(--bs-gradient);
}

/* --- vertical menu --- */
@media (min-width: 992px) {
  .menu-vertical .header.has-minicart {
    background: black;
  }
}

.menu-vertical .header.has-minicart .navbar__cart-wrap::before {
  background: unset;
}

@media (min-width: 992px) {
  .menu-vertical .contactus {
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin: auto;
  }
}

@media (min-width: 991.98px) {
  .menu-vertical .navbar__menu-link:after {
    content: "";
    position: absolute;
    left: 8px;
    bottom: 0;
  }
}

@media (min-width: 992px) and (min-width: 1400px) {
  .menu-vertical .motive__motto {
    padding-left: unset;
    padding-right: unset;
  }
}

/* --- contactus --- */
.contactus {
  color: var(--bs-light);
}

.contactus__phone, .contactus__email {
  color: white;
}

@media (max-width: 991.98px) {
  .contactus::after {
    background-color: transparent;
  }
}

/* icons */
@media (min-width: 992px) {
  .navbar__search-icon {
    color: white; 
  }
}

.navbar__toggler-icon-bar {
  background-color: var(--bs-light);
}

.navbar__cart-items {
  z-index: 10;
}

.navbar__search-toggler-icon,
.navbar__cart-price,
.navbar__cart-icon,
.navbar__account-icon {
  color: var(--bs-light);
  z-index: 10;
}

/* --- logo --- */
.navbar__brand {
  z-index: 11;
}

.navbar__brand-logo-img {
  max-width: unset;
  max-height: 2rem;
}

/* --- menu link --- */
.navbar__menu-link {
  position: relative;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.5px;
}

/* --- navbar_submenu --- */
.navbar__menu-item .navbar__menu-item {
  border-left: unset;
}

.navbar__menu-item .navbar__menu-item .navbar__menu-link {
  border-left: 2px solid transparent;
}

.navbar__menu-item .navbar__menu-item .navbar__menu-link:hover {
  border-left: 2px solid rgba(var(--bs-secondary-rgb), 0.5);
  background: -webkit-gradient(
    linear,
    left top, right top,
    from(rgba(var(--bs-secondary-rgb), 0.1)),
    to(rgba(0, 0, 0, 0))
  );
  background: -o-linear-gradient(
    left,
    rgba(var(--bs-secondary-rgb), 0.1),
    rgba(0, 0, 0, 0)
  );
  background: linear-gradient(
    90deg,
    rgba(var(--bs-secondary-rgb), 0.1),
    rgba(0, 0, 0, 0)
  );
  color: #000;
}

.navbar__menu-item.active .navbar__menu-item.active .navbar__menu-link {
  border-left: 2px solid var(--bs-primary);
  background: -webkit-gradient(linear, left top, right top, from(rgba(var(--bs-primary-rgb), 0.05)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(left, rgba(var(--bs-primary-rgb), 0.05), rgba(0, 0, 0, 0));
  background: linear-gradient(90deg, rgba(var(--bs-primary-rgb), 0.05), rgba(0, 0, 0, 0));
  color: var(--bs-primary);
}

/* --- small/medium devices menu --- */
@media (max-width: 991.98px) {
  .navbar__menu {
    height: auto;
    width: 100%;
    border-top: 56px solid black;
    background-color: #fff;
    padding: 2.5em 1em;
    -webkit-box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    -webkit-box-shadow: 0px 10px 10px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 10px 1px rgba(0, 0, 0, 0.2);
  }

  .navbar__menu-list {
    row-gap: 4px;
  }
  .navbar__menu-item--has-childs .navbar__menu-list[aria-hidden="false"] {
    margin-top: 4px;
  }

  .navbar__menu-item {
    padding-left: 0;
  }

  .navbar__menu-item .navbar__menu-item {
    border-left: unset;
    padding-left: 1em;
  }

  .navbar__menu-link {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 0.5em 1em;
  }

  button.navbar__menu-link {
    width: 100%;
    text-align: left;
  }
}

/* ---  large devices menu --- */
@media (min-width: 992px) {
  .navbar__menu-link,
  button.navbar__menu-link {
    color: rgba(var(--bs-white-rgb), 0.9);
  }

  .navbar__menu-item.active > .navbar__menu-link,
  .navbar__menu-link:hover,
  button.navbar__menu-link:hover {
    color: var(--bs-white);
  }

  .navbar__menu-link:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    border-bottom: 2px solid var(--bs-primary);
    -webkit-filter: brightness(1.5);
    filter: brightness(1.5);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
  }

  .navbar__menu-link:hover:after,
  .navbar__menu-item.active > .navbar__menu-link:after {
    width: 100%;
  }

  .navbar__menu-item .navbar__menu-item .navbar__menu-link:hover:after,
  .navbar__menu-item .navbar__menu-item.active .navbar__menu-link:after {
    width: 0;
  }

  .navbar__menu-item .navbar__menu-item .navbar__menu-link {
    color: var(--bs-dark);
  }

  .navbar__menu-item--has-childs .navbar__menu-list {
    outline: 1px solid rgb(0 0 0 / 0.1);
    border: unset;
    border-radius: 0.5rem;
    row-gap: 4px;
  }
}

/* ----- CONTAINERS / SECTIONS ----- */
/*===========================================================================*/
.container--article .section-blank, .container--article .section-blank.section-bg>* {
  max-width: unset;
}

.section-2-col-left-text .section-content>img,
.section-2-col-right-text .section-content>img {
  border-radius: 0.7rem;
}

@media (max-width: 767.98px) {
  .section-2-col-right-text > .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.section-3-col-bottom-text img, .section-3-col-top-text img {
  border-radius: 0.7rem;
}

.section-3-col-bottom-text.cell-borders .section-cell-item, .section-3-col-top-text.cell-borders .section-cell-item {
  background-color: white;
  border: 1px solid rgba(var(--bs-body-color-rgb), 0.1);
  border-radius: .7rem;
  -webkit-box-shadow: 0 3px 15px -10px rgba(0,0,0,.7);
  box-shadow: 0 3px 15px -10px rgba(0,0,0,.7);
}

.section-3-col-bottom-text.cell-img-borders .section-cell-item {
  border-radius: .7rem;
}


.section-services li, .section--services li {
  background-color: white;
  -webkit-box-shadow: 0 3px 15px -10px rgba(0,0,0,.7);
  box-shadow: 0 3px 15px -10px rgba(0,0,0,.7);
  outline: 1px solid rgb(0 0 0 / .05);
}

@media(min-width: 576px) {
  .section--fullwidth,.section-fullwidth {
    margin-left:calc((-100vw + 557px - (2 * 0.75rem))/2);
    margin-right: calc((-100vw + 557px - (2 * 0.75rem))/2)
  }
}

@media(min-width: 768px) {
  .section--fullwidth,.section-fullwidth {
    margin-left:calc((-100vw + 737px - (2 * 0.75rem))/2);
    margin-right: calc((-100vw + 737px - (2 * 0.75rem))/2)
  }
}

@media(min-width: 992px) {
  .section--fullwidth,.section-fullwidth {
    margin-left: calc((-100vw + 977px - (2 * 0.75rem))/2);
    margin-right: calc((-100vw + 977px - (2 * 0.75rem))/2);
  }
}

@media(min-width: 1200px) {
  .section--fullwidth,.section-fullwidth {
    margin-left:calc((-100vw + 1157px - (2 * 0.75rem))/2);
    margin-right: calc((-100vw + 1157px - (2 * 0.75rem))/2)
  }
}

@media(min-width: 1400px) {
  .section--fullwidth,.section-fullwidth {
    margin-left: calc((-100vw + 1337px - (2 * 0.75rem))/2);
    margin-right: calc((-100vw + 1337px - (2 * 0.75rem))/2);
  }
}

/* ----- USER FORM ----- */
/*===========================================================================*/
.cart-form__items-wrapper, .account-form__items-wrapper, .user-form {
  background-color: var(--bs-white);
  border: 1px solid #dee2e6 !important;
  border-radius: 0.7rem;
  -webkit-box-shadow: 0 3px 15px -10px rgba(0,0,0,.7);
  box-shadow: 0 3px 15px -10px rgba(0,0,0,.7);
  padding: 2rem;
}

/* ----- FOOTER ----- */
/*===========================================================================*/
.footer {
  background-color: black;
  background-image: var(--bs-gradient);
}

.footer p {
  margin: 0;
}

.footer, .footer a {
  color: rgba(var(--bs-light-rgb), 0.7);
}

.footer h5 {
  color: var(--bs-light);
}

.footer a:hover {
  color: var(--bs-light);
  text-decoration: underline;
  -webkit-text-decoration-color: var(--bs-primary);
  text-decoration-color: var(--bs-primary);
  text-underline-offset: 3px;
}

.footer .social-icons > li > a > img {
  -webkit-filter: saturate(0%) brightness(0%) invert(100%) opacity(0.7);
  filter: saturate(0%) brightness(0%) invert(100%) opacity(0.7);
  -webkit-transition: all 100ms ease-in;
  -o-transition: all 100ms ease-in;
  transition: all 100ms ease-in;
}

.footer .social-icons > li > a:hover > img {
  -webkit-filter: saturate(0%) brightness(0%) invert(100%) opacity(1);
  filter: saturate(0%) brightness(0%) invert(100%) opacity(1);
}

/* ----- ESHOP / RUBRIC / GALLERY ----- */
/*===========================================================================*/
.product-item__img-wrapper {
  background-color: inherit;
}

.product-item__img {
  -o-object-fit: contain;
  object-fit: contain;
}

.minicart__item-img {
  -o-object-fit: contain;
  object-fit: contain;
}

.cart-table__img {
  -o-object-fit: contain;
  object-fit: contain;
}

.gallery__item-link {
  border-radius: 1rem;
}

.gallery__item-link .gallery__item-img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 500ms linear;
  -o-transition: 500ms linear;
  transition: 500ms linear;
}

.product-item {
  background-color: #fff;
  border: unset;
  outline: 1px solid rgb(0 0 0 / .1);
  border-radius: 0.75rem;
  -webkit-box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.product-item:hover {
  -webkit-box-shadow: 0 10px 15px -3px rgb(0 0 0 / .3), 0 4px 6px -4px rgb(0 0 0 / .3);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / .3), 0 4px 6px -4px rgb(0 0 0 / .3);
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
}

.gallery__item.loaded .gallery__item-img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 500ms ease;
  -o-transition: 500ms ease;
  transition: 500ms ease;
}

.article-item__img-wrapper, .product-item__img-wrapper, .category__img-wrapper {
  border-radius: 0.7rem;
  overflow: hidden;
}

/* ----- UTILS ----- */
/*===========================================================================*/
.text-shadow {
  text-shadow: 1px 1px 3px rgba(0,0,0,.9), 3px 3px 10px rgba(0,0,0,.5);
}

.border-1 {
  border: 1px solid rgb(0 0 0 / .1);
}

.ring-1 {
  outline: 1px solid rgb(0 0 0 / .05);  
}


.rounded-4 {
  border-radius: 0.7rem !important;
}

.shadow-md {
  -webkit-box-shadow: 0 3px 15px -10px rgba(0,0,0,.7) !important;
  box-shadow: 0 3px 15px -10px rgba(0,0,0,.7) !important;
}

.card {
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: .7rem;
}

.card-body {
  padding: 2rem;
}

@media (max-width: 575.98px) { 
  .card {
    -webkit-box-shadow: 0 3px 15px -10px rgba(0,0,0,.7);
    box-shadow: 0 3px 15px -10px rgba(0,0,0,.7);
  }
}

@media (min-width: 576px) {
  .card-group {
    -webkit-box-shadow: 0 3px 15px -10px rgba(0,0,0,.7);
    box-shadow: 0 3px 15px -10px rgba(0,0,0,.7);
    border-radius: .7rem;
  }
}

/* motive zoom effect */
@keyframes anim-zoom-effect {
  from {
    -webkit-transform: scale(1) translateX(0);
    transform: scale(1) translateX(0);
  }
  to {
    -webkit-transform: scale(1.5) translateX(-10%);
    transform: scale(1.5) translateX(-10%);
  }
}

.zoom-effect .motive__background,
.zoom-effect .motive__background.fullscreen {
  -webkit-animation: anim-zoom-effect 15s linear infinite alternate;
  animation: anim-zoom-effect 15s linear infinite alternate;
}
