* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  max-height: 100%;
}
.header {
  background-color: #000000;
}
.logo{
  width: 120px;
}
@media only screen and (max-width: 767px) {
  .logo{
    width: 70px;
  }
}
.nav-link {
  color: #fff;
  margin: 0 5px;
  padding: 6px 13px !important;
  border-radius: 50px;
  border: 1px solid transparent;
  display: inline-block;
  transition: 0.5s;
  font-size: 20px;
  font-weight: 600;
}
.nav-link:hover {
  border: 1px solid #fff;
  color: #fff;
}
.nav-link:focus {
  color: #fff;
}
.active-link {
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff !important;
}
.btn-style {
  background: linear-gradient(45deg, #a42433, #0e133d);
  color: #ffffff;
  padding: 10px 30px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 5px;
  font-size: 21px;
  display: inline-block;
  transition: 0.5s;
}
.btn-style:hover {
  color: #fff;
  background: linear-gradient(180deg, #6f3597, #1962c0);
}
.navbar-toggler{
  background-color: #fff;
}

/* Banner  */
.banner {
  position: relative;
}
.heading h2 {
  color: red;
}
/* About us  */

.about-us {
  padding: 60px 0;
  background-image: url("../image/crick-bg1.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.heading {
  padding: 5px 8%;
  border-radius: 50px;
  background: linear-gradient(
    89.96deg,
    #fcfcfc 1.08%,
    #d9e9ff 49.5%,
    #ffffff 99.97%
  );
  display: table;
  margin: 0px auto 15px;
}

/* how to play */
.how-to-play {
  padding: 100px 0;
}
.play-step {
  position: relative;
  padding: 30px;
  border-radius: 8px;
  background: linear-gradient(to top right, #c6212c, #0e133d);
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  height: 100%;
  transition: ease-in-out 0.5s;
}
.play-step:hover {
  transform: translateY(-10px);
}
.play-step-sn {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  top: -15px;
  right: 15px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #eeeeee;
}

/* start game */
.start-game {
  position: relative;
  padding: 60px 0;
  background: url("../image/crick-bg2.jpg");
  background-size: cover;
}
.game-step-wrapper {
  display: flex;
}
.game-step {
  font-size: 70px;
  margin-right: 15px;
  line-height: 67px;
  font-weight: 700;
  color: gold;
}
.game-step-text {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
}

/* features */
.features {
  position: relative;
  padding: 60px 0;
}
.single-feature {
  padding: 25px;
  border-radius: 7px;
  background: linear-gradient(to top right, #c6212c, #0e133d);
  color: #fff;
  text-align: center;
  height: 100%;
}
.single-feature h3 {
  font-size: 26px;
}
.feature-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #fff;
  border: 4px solid #e7e7e7;
  margin: 0 auto 15px;
  padding: 20px;
  animation: zooming 2s linear infinite alternate-reverse;
}
@keyframes zooming {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

/* counter */
.counter {
  margin: 20px 0;
  padding: 60px 0;
  background: url("../image/counter-bg.jpg");
  background-attachment: fixed;
  background-size: cover
}

.item {
    background: #ffffff3b;
    backdrop-filter: blur(8px);
    color: #ffffff;
    border-radius: 5px;
    padding: 4% 5%;
    font-size: 50px;
    font-weight: 700;
    margin: 10px;
    text-align: center;
}
.item p{
    font-size: 20px;
    font-weight: 400;
}

/* join us */
.join-us{
    padding: 60px 0;
}
.join-image img{
    animation: zooming ease 4s infinite alternate-reverse;
}

/* footer  */
.footer {
    padding: 50px 0;
    background: #000000;
}
.foot-links li{
    display: inline-block;
    list-style: none;
    margin: 0 10px;
}
.foot-logo img {
    width: 170px;
}
.foot-links li a{
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 500px;
}
.foot-contact-detail a{
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}
.top-border{
  border-top: 1px solid #3d1099;
}
.copyright {
    padding: 15px 0;
    background-color: red;
}
.copyright p{
    margin: 0;
    color: #fff;
}
.copyright p a{
    color: #fff;
    text-decoration: none;
}
.foot-social-icons a{
    text-decoration: none;
    color: #000;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 10px 2px;
}
