body {
  background: url("../images/web.jpg");
  padding-bottom: 2rem;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
.brand .logo {
  height: 50px;
}

.brand {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
}

.navbar {
  width: 100%;
  background-color: #ffffff;
}
.text {
  color: #009900;
}
.nav-item a:hover {
  color: #009900;
  text-decoration: none;
}

.btn-primary {
  color: #fff;
  background-color: #7ab730;
  border-color: #8bc34a2b;
  border-radius: 10px;
  box-shadow: 0px 5px 20px 0px #000000a8;
}

.btn-primary:hover {
  color: #fff;
  background-color: #42700a;
  border-color: #8bc34a2b;
}
.table-bookmakers {
  width: 100%;
  margin: 1.5em  0 20px;
  background-color: black;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #f4f4f4;
}
.table-bookmakers__row {
  border-bottom: 1px solid #a5a5a5;
}

.table-bookmakers__row_header {
  color: #f4f4f4;
}

.table-bookmakers__cell {
  padding: 10px;
  text-align: left;
}

.table-bookmakers__cell_logo {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.table-bookmakers__logo {
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-size: cover;
}

.table-bookmakers__name {
  color: #c9c6c6;
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  margin-top: 2px;
  text-decoration: none;
}

.table-bookmakers__cell_rating {
  text-align: center;
}

.rating-view {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-view__stars {
  width: 100%;
  height: 16px;
  background: url("path-to-star-icons.svg") repeat-x;
  background-size: 16px 16px;
}

.rating-value {
  margin-left: 5px;
  font-weight: bold;
}

.table-bookmakers__cell_bonus {
  text-align: center;
}

.table-bookmakers__bonus {
  display: inline-block;
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}

.table-bookmakers__bonus-title {
  display: block;
  color: #666;
  font-size: 12px;
}

.table-bookmakers__cell_apps {
  text-align: center;
}

.table-bookmakers__apps {
  display: flex;
  justify-content: center;
}

.table-bookmakers__app {
  display: inline-block;
  padding: 5px 10px;
  text-decoration: none;
  color: #007bff;
  margin: 0 5px;
  border-radius: 5px;
  background-color: #f4f4f4;
}

.table-bookmakers__app_ios {
  background-color: #333;
  color: #fff;
  text-decoration: none;
}

.table-bookmakers__cell_apps a:hover {
  color: #fff;
  text-decoration: none;
}

.table-bookmakers__app_android {
  background-color: #a4c639;
  color: #fff;
  text-decoration: none;
}

/* Optional: Hover effects */
.table-bookmakers__name:hover,
.table-bookmakers__bonus:hover,
.table-bookmakers__app:hover {
  text-decoration: underline;
}

.table-bookmakers__logo:hover {
  opacity: 0.8;
}

/* Product Card End */
.image-footer {
  height: 100px;
  width: 100px;
  border-radius: 12px;
  margin-right: 1em;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h1 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .carousel-caption h4 {
    font-size: 18px;
  }
}
/*
.main {
  padding-top: 1em;
  background: url("../images/web.jpg");
}
*/
.links {
  text-decoration: none;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
}

.links i {
  margin-right: 5px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials .btn {
  border: 2px solid #009900;
  color: #009900;
  background-color: transparent;
}

.socials .btn:hover {
  background-color: #006400a2;
  color: #ffffff;
}

.text-primary {
  color: #009900;
}