@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary: #FC3303;
  --bs-body-font-family: "Roboto", sans-serif;
}

@media (min-width: 992px) {
  .motto {
    margin-top: 14rem;
  }
}

#main {
  background-color: rgba(var(--bs-light-rgb), 1);
  padding-bottom: 0;
}

#index #main {
  padding-bottom: 0;
  padding-top: 0;
}

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

body:not(#index) .motive, body:not(#index) .motive.fullscreen {
  display: none;
}

/* ----- bezici text ----- */
/*===========================================================================*/
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.marquee-content {
  height:20px;
  color: white;
  font-size:1.3em;
  font-weight: 400;
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 45s linear infinite;
}

@keyframes scrollText {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.marquee-content:hover {
  animation-play-state: paused;
}

/* ----- HEADING ----- */
/*===========================================================================*/
.container--article h1, .section--header h1 {
  position: relative;
}

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

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

/* ----- BUTTONS ----- */
/*===========================================================================*/
.btn {
  border-radius: 0;
}

.btn-primary, .comment__reply:hover, .add-comment__button--submit, .product-page__cart-button, .cart-button, .promo-code__submit, .account-button, .minicart__button-cart, .search-form__search-button, .locked__submit, .motto__button-link {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

a, .eshop-menu__link--button, button.navbar__menu-link {
  color: var(--primary);
  text-decoration: none;
}

.section-contact .social-icons>.section-cell-item a:hover, .section-contact .social-icons>.section-cell-item .eshop-menu__link--button:hover, .section-contact .social-icons>.section-cell-item button.navbar__menu-link:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary, .product-item__cart-button, .cart-button--outline, .cart-button--back, .minicart__button-close, .eshop-filters__submit, .btn-secondary, .btn-default, .navbar__search-button {
  color: var(--primary);
  border-color: var(--primary);
}

/* ----- HEADER ----- */
/*===========================================================================*/
.header {
  box-shadow: 0px 3px 10px #00000024;
}

.navbar {
  max-width: 1400px;
  margin: auto;
}

.navbar__brand-logo-img {
  max-width: 10rem;
  max-height: 3rem;
  z-index: 100;
  position: relative;
}

.navbar__menu-link {
  font-size: 18px;
  font-weight: 500;
}

.navbar__menu-item.active>.navbar__menu-link, .navbar__menu-item.active>.navbar__menu-link .navbar__menu-item .active {
  color: var(--primary);
}

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

.contactus {
  max-width: 1400px;
  margin: auto;
  width: unset;
}

.contactus-wrap {
  background-color: var(--primary);
} 

@media (max-width: 991.98px) {
  .contactus::after {
    display: none;
    background-color: var(--primary);
  }
}

.contactus, .contactus__phone-link, .contactus__email-link, .contactus__phone-link:hover, .contactus__email-link:hover {
  color: white;
}

/* ----- SECTIONS ----- */
/*===========================================================================*/
.section-services li, .section--services li {
  background-color: white;
  border-left: 6px solid var(--primary);
  border-radius: 0;
  padding: 1.5em 2em;
  margin-bottom: 2rem;
  font-size: large;
}

.section-services ul, .section--services ul {
  list-style: none;
  padding-left: 0;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 2rem;
  -webkit-column-width: 20em;
  -moz-column-width: 20em;
  column-width: 20em;
}

/* ----- FOOTER ----- */
/*===========================================================================*/
.footer {
  background-color: #1D1D1B;
}

.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(--primary);
  text-decoration-color: var(--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);
}