*{
    margin: 0;
    padding: 0;
}
a{
  text-decoration: none !important;
}
p{
  color: white;
}
h1{
  text-align: center;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-weight: 800;
}
h2{
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 10px;
    margin-bottom: 10px;
}
.lob{
    width: 150px;
    
}
.bun{
    margin-top: 10px;
    text-align: end;
}
.btn-primary {
    color: #fff;
    background-color: #ffa724;
    border-color: #ffa724;
  }
  
  .btn-primary:hover {
    background-color: #ffa724;
    border-color: #ffa724;
  }
  
  .btn-secondary {
    color: #fff;
    background-color: #00153c;
    border-color: #ffa724;
  }
  
  .btn-secondary:hover {
    background-color: #00153c;
    border-color: #00153c;
  }
  

 /* button end */

 /* nav start */


 /* botton section start */
 ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: white;
}

.header div {
  float: left;
  width: 20%;
  text-align: center;
  padding: 10px 0 0 0;
}

.clear {
  clear: both;
}

.fixed-image {
  position: fixed;
  width: 100%;
  height: 100%;
}

.header {
  height: 80px;
  width: 100%;
  background-color: #00153c !important;
  z-index: 1;
}

.fixed-bottom {
  position: absolute;
  bottom: 0;
}

.fixed-top {
  position: fixed;
  top: 0;
}
 /* botton section end */


.bull{
  /* margin-top: 350px; */
  display: none;
 }

.iconfooter {
  position: fixed !important;
  /* margin-top: auto; */
  bottom: 0;
  /* height:60px;  */
  width: 100%;
  /* background-color: red; */
  color: white;
  background-image: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  z-index: 999;
  text-align: center;
}

.mypic1 {
  max-width: 30px;
}
.roll{
  display: none;
}



 @media (max-width: 430px) {
  .footer-1{
    margin-top: 10px;
  }
  .conta {
    position: relative;
    width: 60%;
  }
  .image{
    width: 200px !important;
    height: 100px !important;
  }
 .bull{
  /* margin-top: 350px; */
  display: block;
 }
 .conta2{
  position: relative;
  width: 50%;
 }
  .image2{
    width: 100%;
    margin-bottom: 5px;
  }
  .roll{
    display: block;
  }
  .han{
    width: 50px;
  }
  .toy{
    display: none;
  }
 }

 .navbar-nav {
    display: flex;
    flex-wrap: nowrap; /* Prevent items from wrapping to a new line */
    overflow-x: auto; /* Enable horizontal scrolling if needed */
    padding-inline-start: 0; /* Remove default padding */  
  }
  .nav-link{
    font-weight: 700;
    font-size: 13px;
  }
  .nav-item{
    border: 1px solid rgb(104, 99, 99);
  }

  /* Animated CSS button  */
  .animated-button1 {
    background-color: #fff;
    padding: 7px 5px;
    margin: 1px;
    display: inline-block;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    overflow: hidden;
    color: #000000;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-align: end;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            float: right;
            padding-top: -50px;
  }
  
  .animated-button1::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0;
    -webkit-transition: .2s opacity ease-in-out;
    transition: .2s opacity ease-in-out;
  }
  
  .animated-button1:hover::before {
    opacity: 0.2;
  }
  
  .animated-button1 span {
    position: absolute;
  }
  
  .animated-button1 span:nth-child(1) {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #ea4335, #4285f4);
    -webkit-animation: 2s animateTop linear infinite;
            animation: 2s animateTop linear infinite;
  }
  
  @keyframes animateTop {
    0% {
      -webkit-transform: translateX(100%);
              transform: translateX(100%);
    }
    100% {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
    }
  }
  
  .animated-button1 span:nth-child(2) {
    top: 0px;
    right: 0px;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #fbbc05, #34a853);
    -webkit-animation: 2s animateRight linear -1s infinite;
            animation: 2s animateRight linear -1s infinite;
  }
  
  @keyframes animateRight {
    0% {
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
    }
    100% {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
    }
  }
  
  .animated-button1 span:nth-child(3) {
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 4px;
    background: linear-gradient(to left, #ea4335, #4285f4);
    -webkit-animation: 2s animateBottom linear infinite;
            animation: 2s animateBottom linear infinite;
  }
  
  @keyframes animateBottom {
    0% {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
    }
    100% {
      -webkit-transform: translateX(100%);
              transform: translateX(100%);
    }
  }
  
  .animated-button1 span:nth-child(4) {
    top: 0px;
    left: 0px;
    height: 100%;
    width: 4px;
    background: linear-gradient(to top, #fbbc05, #34a853);
    -webkit-animation: 2s animateLeft linear -1s infinite;
            animation: 2s animateLeft linear -1s infinite;
  }
  
  @keyframes animateLeft {
    0% {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
    }
    100% {
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
    }
  }
  
  
  /* Animated CSS button  */
  
.newspaper{
    column-count: 2;
}
.rol{
  margin-left: 180px;
}
@media screen and (max-width: 430px) {
  .rol{
    margin-left: 100px;
  }
}
.sportDiv.ic_section h2 {
  background-image: linear-gradient(270deg, rgba(69,94,104,0) 4%, #000 97%);
  height: 30px;
 
}
.sportDiv h2 {
  display: flex;
  /* position: absolute; */
  z-index: 99;
  bottom: 0;
  width: 100% !important;
  height: 30px;
  /* background: none; */
  /* background-image: linear-gradient(270deg, rgba(69,94,104,0) 4%, #000 97%); */
  justify-content: space-between;
  margin: 0;
  text-transform: capitalize;
  color: #fff;
  font-size: 15px;
  align-items: center;
  padding-left: 10px;
  font-weight: 500;
}

.sportDiv {
  position: relative;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:  linear-gradient(270deg, rgba(69,94,104,0) 4%, #000 97%);;
  opacity: 0; 
  transition: opacity 0.3s ease; 
}
.sportDiv img {
  display: block;
  width: 100%;
  height: auto;
}

.tel {
  position: absolute;
  top: 93%;
  left: 50%;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.485);
  transform: translate(-50%, -50%);
  color: rgb(0, 0, 0);
  text-align: center;
  z-index: 1; 
}

@media (max-width: 991px){
.sportDiv h2 {
    font-size: 12px;
    padding-left: 2px;
}
.img-fluid{
  width: 100% !important;
  height: 120px !important;
}
}

.card-title{
  color: white;
  margin-bottom: 10px;
}
.card-body{
  margin-top: 40px;
  margin-bottom: 40px;
}
#myDIV {
  width: 300px;
  height: 200px;
  border: 15px solid coral;
  animation: mymove 5s infinite;
}

@keyframes mymove {
  50% {border-color: lightblue;}
}

.btn2{
  cursor:pointer;
    position:relative;
    padding:10px 20px;
    background:white;
    font-size:18px;
    border-top-right-radius:10px;
    border-bottom-left-radius:10px;
    transition:all 1s;
    &:after,&:before{
      content:" ";
      width:10px;
      height:10px;
      position:absolute;
      border :0px solid #fff;
      transition:all 1s;
      }
    &:after{
      top:-1px;
      left:-1px;
      border-top:5px solid black;
      border-left:5px solid black;
    }
    &:before{
      bottom:-1px;
      right:-1px;
      border-bottom:5px solid black;
      border-right:5px solid black;
    }
    &:hover{
      border-top-right-radius:0px;
    border-bottom-left-radius:0px;
       background:rgba(0,0,0,.5);
      color:white;
      &:before,&:after{
        
        width:100%;
        height:100%;
         border-color:white;
      }
    }
  }
  
  .data-container{
    background:#ffebee;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
  }
/*footer start*/
.fffc{
  font-family: 'Poppins', sans-serif;

}
.ffft{
  font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;

}
.footerlogo4
  {
    width: 90px;
  }
  .fffc{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 17px;
  
  }
.mer{
  font-size: 10px;
  margin-right: 30%;
  }
  .line{
    border-top: 2px  dotted rgb(58, 58, 58);
    border-bottom: 2px dotted rgb(58, 58, 58);
  }
 .Official{
  font-size: 20px;
  font-weight: 600;
  padding-top:10px;
  font-family: 'Poppins', sans-serif;
  color: white;
 }
 
@media only screen and (max-width: 480px) {
  .social {
    text-align: center;
  }
  .img-fluid2{
    display: block;
  }
  .cav{
    display: none;
  }
}
/*paytm*/
.paytm {
  background-color: #000000;
  box-shadow: -3.828px -3.828px 6px 0px rgba(37, 146, 242, 0.4),
    3px 5px 8px 0px rgba(26, 159, 231, 0.2);
}

.Methods {
  color: #1e8ddc;
  font-family: "Josefin Sans", sans-serif;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
}

.paymentImg {
  width: 50%;
}

/*paytm*/