* {
  box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f9fa;
    overflow-x: hidden;
    width: 100%; /* Ensure page width is within the viewport */
}


.dropdown-menu {
padding: 15px;
right: 0; 
left: auto; 
position: absolute;
width: 170px;
}

.dropdown-menu a {
text-decoration: none;
color: black;
border-radius: 5px;
display: flex;
align-items: center; /* Align text and image vertically */
padding: 3px;
}

.dropdown-menu a:hover {
background: #b6082b;
color: #fff;

}

.dropdown-menu a img {
width: 23px;
height: 23px;
margin-right: 10px; /* Space between the image and the text */
vertical-align: middle; /* Ensure vertical alignment */

}

/* Responsive media query */
@media (max-width: 767px) {
.col-sm-4 {
    flex: 0 0 100%;
    max-width: 100%;
}
}

/* For tablets and larger screens */
@media (min-width: 768px) and (max-width: 1024px) {
.col-sm-4 {
    flex: 0 0 45%;
    max-width: 45%;
}
}
.card {
margin: 10px;
position: relative;
overflow: visible; 
transition: box-shadow 1s ease-in-out;
}
.card:hover{
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  
}
.card-body {
    text-align: center;
}

.card img {
    max-width: auto;
    height: auto;
}

.card-title, .card-text {
    text-align: center;
}
/* Make the layout responsive */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.col-sm-4 {
    margin: 15px;
    display: flex;
    justify-content: center;
}

.card #T_IMG{
    position: absolute;
    z-index: 1;
    background: #dad9d9;
    padding: 16%;
    bottom: 0;
    top: 0;
    
}
.card #T_IMG img {
    width: 60%;
    position: absolute;
    z-index: 1;
    right: 30px;
}

.card .card-body {
    z-index: 2;
    padding-left: 30%;
}

.card a {
    margin-left: 12px;
}
.card h4{
font-weight: bold;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
color: black;
}
.GO_BTN{
  background: #00012e;
  color: #fff;
  padding-left: 25px;
  padding-right: 25px;
  text-shadow: 0 0 10px #fff;
  
}
.GO_BTN:hover{
  color: #fcfafa;
  background: #220080;

  padding-left: 25px;
  padding-right: 25px;
}
#claim_h3{
color: #000;
padding: 10px;
border-radius: 10px;
text-align: center;
font-family: "Lilita One", serif;
font-weight: 400;
font-style: normal;  
}
 /* #BgHeading{
font-family: "Passion One", serif;
font-weight: 700;
font-style: normal;
background-color: #fff;
padding: 10px;
box-shadow: 0px 0px 5px #000;
border: 2px solid red;
margin-left: 25rem;
margin-right: 25rem;
} */

/* For mobile devices */
@media (max-width: 767px) {
    .col-sm-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    #BgHeading{
       margin-left: 0;
       margin-right: 0;
}
#Teset{
display: none;
}        
}

/* For tablets and larger screens */
@media (min-width: 768px) and (max-width: 1024px) {
    .col-sm-4 {
        flex: 0 0 45%;
        max-width: 45%;
    }
    #BgHeading{
      margin-left: 0;
      margin-right: 0;
}


  }

.navbar-brand{
font-family: "Passion One", serif;
font-weight: 700;
font-style: normal;
}
#Btc_B{
background: #6e003d;
color: #fff;
padding: 6px;
border-radius: 5px;
font-weight: bolder;
box-shadow: 0px 0px 6px black;  
}
#Coin{
color: #fff;
font-weight:  bolder;
padding: 4px;
margin: 10px;
background: #00012e;
border-radius: 3px;
box-shadow: 0px 0px 6px black;
}   
footer{
  margin-top: 30px;
  background-color: rgb(2, 51, 54);
  padding: 10px;
  padding-top: 30px;
  border-top: 3px solid #fff;
}

.col-sm-3 strong{
  color: white;
}

footer ul{
  margin-top: 20px;
}

footer ul li{
  list-style: none; 
  cursor: pointer; 
  padding: 4px;
  margin-right: 35px;
  display: block;
}

footer ul li a{
  text-decoration: none;
  color: #fff;
}

footer ul li a:hover{
  color: orange;
  text-decoration: dashed;
  box-shadow: 0px 0px 5px rgb(49, 49, 49);
  font-weight: italic;
}

#Footer span{
  font-family: "Passion One", serif;
  font-weight: 700;
  font-style: normal;
  margin-top: 15px;
}

#Footer p{
  margin-top: 35px;
  color: #fff;
  text-align: justify;
  margin-left: 20px;
}

#End-Footer{
  text-align: center;
  padding: 5px;
  background: #015255;
  border-top: 1px solid #f8f8f8; 
  font-family: "Passion One", serif;
  font-weight: 700;
  font-style: normal;
}

#End-Footer p{
  color: #fff;
  font-weight: bold;
  margin-top: 15px;
}

#End-Footer p a{
  color: rgb(0, 0, 75);
}

/* Responsive styles */
@media (max-width: 768px) {
  .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .col-sm-3 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  footer ul li {
    margin-right: 35px;
    padding: 5px 0;
  }

  footer ul li a {
    font-size: 14px;
  }

  #Footer p {
    font-size: 14px;
    text-align: center;
    margin-left: 0;
  }

  #End-Footer p {
    font-size: 14px;
  }

  /* Adjust the logo and brand name */
  #Footer span {
    font-size: 18px;
  }
}

/* Smaller screens (mobile) */
@media (max-width: 480px) {
  footer {
    padding: 20px;
  }

  .col-sm-3 strong {
    font-size: 16px;
  }

  #Footer p {
    font-size: 13px;
  }

  footer ul li a {
    font-size: 12px;
  }

  #End-Footer p {
    font-size: 12px;
  }
}
