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

:root {
  --base-color: #000112 !important;
  --main-color: #1A6CE8;
}

html{
  height: 100%;
}

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

  

  
}

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);
}

.container-sportbook{
  padding: 2%;
  display: flex;
}

/* .btn-danger:hover {
  background-color: #2b3ba6 !important;
  border: 1px solid #2b3ba6 !important;
} */

.login-btn:hover {
  background-color: #2b3ba6 !important;
  border: 1px solid #2b3ba6 !important;
}

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

.call {
  font-size: 0.8rem;
}

.logo{
  max-width: 300px;
}

.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;
  }
}

.header-wrong-password {
  text-align: center;
  width: 100%;
  top: 200px;
  z-index: 2;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  transition: all 1s ease;
  font-family: 'Oswald', sans-serif !important;
  font-size: 14px;
  letter-spacing: 2px;
  -moz-transition: 1s;
  opacity: 0;
  padding: 11px 0px;
}

.opacity-1 {
  opacity: 1;
}