@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

:root {
  --base-color: #2E052D !important;
  --main-color: #2E052D;
}



body {
  font-family: 'Oswald', sans-serif !important;
  letter-spacing: .050rem !important;
  background: var(--base-color) url(/assets/img/new-images/bg-main.jpg) no-repeat ;

  

  
}

a {
  text-decoration: none;
  color: white;
}

hr {
  margin: 0.25rem 0;
}

b,
.fw-bold {
  font-weight: 400 !important;
}

.btn-danger {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
}

.btn-danger:hover {

    background-color:#611B61 !important;
    border: 1px solid #611B61 !important ;
    color: white;
}

.btn-danger:active:focus {
    background-color: #611B61 !important;
    border: 1px solid #611B61 !important;
    color: white !important;

}


.border-dark {
  border-color: #37386a !important;
}

.call {
  font-size: 0.8rem;
}

.card {
  background: url(/assets/img/new-images/bg-cards.png)no-repeat;
  background-size: 100% 100%;
  background-position: center bottom;
  justify-content: flex-end;
}

.card img {
  transform-origin: bottom;
  transition: scale3d(1, 1, 1);
  transition: all .3s cubic-bezier(.215, .61, .355, 1);
}

.card:hover img {
  transition: all .3s cubic-bezier(.215, .61, .355, 1);
  transform: scale3d(1.1, 1.1, 1.1);
}


.carousel-indicators {
  margin-bottom: 0rem;
}

.carousel-item{

}

/* Responsive: Portrait tablets and up */
@media only screen and (max-width: 768px) {

  .brand {
    background-color: var(--base-color);
  }

  .brand img {
    max-width: 70%;
  }

  .hero.bg-dark {
    background-color: transparent !important;
  }

  .products {
    max-width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-bottom: 3rem !important;
  }

  .products .row {
    width: 750px;
  }

  .products .row-cols-5>* {
    width: 150px;
  }

  .products h5 {
    font-size: .75rem;
  }
}