/*hero section*/
.home .bread-wrapper-top {
  display: none;
}
section.hero-section {
    padding-bottom: 0;
}
.hero-section {
  background: var(--black-bg);
}
.hero-top-sec {
  display: grid;
  align-items: center;
  column-gap: 40px;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
   grid-template-areas:
        "title image content"
        "title image bottom";
}
.top-left{
    grid-area: title;
}
.top-middle{
    grid-area: image;
}
.bonus-sec {
     grid-area: bottom;
}
#primary .top-left h3,
#primary .top-left h4 {
  color: var(--white);
  font-family: "Zuume Cut";
  font-size: 38px;
  font-style: italic;
  font-weight: 500;
  margin: 0;
  line-height: 100%;
}
#primary .top-left h4 {
  font-size: 55px;
  margin-top: 5px;
}
.top-right {
  text-align: center;
  min-width: 488px;
    grid-area: content;
}
#primary .top-right p {
  color: var(--white);
}
.country-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
#primary .flag-cont p {
  margin: 0;
  text-align: center;
  font-family: "Zuume Cut";
  font-size: 29px;
  font-style: italic;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.45px;
}
#primary .flag-cont .best-bet {
  font-size: 36px;
  margin-top: 10px;
  letter-spacing: 0.72px;
}
#primary .bonus-sec .bonus-value {
  color: #bfbfbf;
  font-family: "Circular Std";
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: 22px;
  letter-spacing: 0.14px;
  margin: 0;
}
@media (max-width: 1180px) {
.top-right{min-width: auto;}
}
@media (max-width: 1024px) {
  
  .top-left {
    min-width: 230px;
  }
}
@media (max-width: 991px) {
.hero-top-sec{grid-template-columns: 1fr 1fr; grid-template-areas:"title title"  "image content" "bottom bottom"; }
.top-left {
    gap: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bonus-sec{text-align: center;}
  #primary .top-left h3, #primary .top-left h4{font-size: 28px;}
}
@media (max-width: 768px) {
  #primary .flag-cont p {
    font-size: 22px;
  }
  #primary .flag-cont .best-bet {
    font-size: 24px;
  }
  .hero-top-sec {
           column-gap: 16px;
        row-gap: 25px;
  }
  #primary .top-left h3,
  #primary .top-left h4 {
    font-size: 22px;
    margin: 0;
  }
  section.hero-section{padding: 16px 0;}
}
