
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url("https://fonts.googleapis.com/css?family=Montserrat:900");

*{
    margin: 0;
    padding: 0;
}
body{

    background-color: rgb(20, 20, 20);
    
}


.font{
    font-family: "Bebas Neue", serif;
}

.header{
background-color: rgb(25, 25, 25);

justify-content: center;
text-align: center;
color: white;

    
    
}
.infoo{
  font-size: 40px;
}
.intro{

    justify-content: center;
    text-align: center;
    padding-top: 10px;
    color: white;
}
/* button */
/* .button1 {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #183153;
    font-family: "Montserrat", sans-serif;
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    cursor: pointer;
    border: none;
    flex: rtl;
  }
  
  .button1:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: #ffd401;
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
  }
  
  .button1:hover::after {
    right: auto;
    left: 0;
    width: 100%;
  }
  
  .button1 span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 18px 25px;
    color: #fff;
    font-size: 1.125em;
    font-weight: 700;
    letter-spacing: 0.3em;
    z-index: 20;
    transition: all 0.3s ease-in-out;
  }
  
  .button1:hover span {
    color: #183153;
    animation: scaleUp 0.3s ease-in-out;
  }
  
  @keyframes scaleUp {
    0% {
      transform: scale(1);
    }
  
    50% {
      transform: scale(0.95);
    }
  
    100% {
      transform: scale(1);
    }
  }
   */

  /* HUH */
  body-custom { margin: 0; font-family: Arial, sans-serif; }
  .navbar-custom { display: flex; justify-content: space-between; background: #151515; padding: 10px; }
  .nav-item-custom { color: white; padding: 14px 20px; text-decoration: none; border-radius: 5px; transition: background 0.3s, border-radius 0.3s; display: flex; align-items: center; }
  .nav-item-custom img { margin-right: 10px; width: 20px; height: 20px; }
  .nav-item-custom:hover { background: #ddd; color: black; border-radius: 10px; }
  /* .nav-item-custom.active-custom { background: rgb(0, 162, 255); color: white; } */
  .menu-icon-custom { display: none; }
  
  @media (max-width: 600px) {
      .navbar-custom { flex-direction: column; align-items: center; }
      .nav-item-custom { display: none; text-align: center; }
      .menu-icon-custom { display: block; color: white; cursor: pointer; text-align: center; }
  }
  
  .menu-icon-custom:hover { color: #ddd; }
  





/* CSS */
.card-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px;
}

.card {
  display: flex;
  flex-direction: row;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 100%; /* Full width of the container */
  height: 150px; /* Fixed height */
}

.card-number {
  background-color: orange;
  color: white;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 10px 0 0 10px;
}

.main-content {
  display: flex;
  flex: 1;
}

.card-image img {
  width: 150px; /* Adjust the size as needed */
  height: 100%; /* Full height of the card */
  object-fit: cover;
}

.text-content {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center vertically */
}

.text-content h3 {
  margin: 0;
  font-size: 20px;
  color: #333;
}

.text-content p {
  margin: 10px 0;
  color: #555;
}

.card-info {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
  padding: 10px;
  width: 130px; /* Adjust the width as needed to give more space for info */
  border-left: 1px solid #ddd; /* Add border to the left */
}

.info-row {
  display: flex;
  justify-content: center;
  gap: 5px; /* Space between info items */
}

.card-info p {
  margin: 5px 0;
  color: #777;
  padding: 5px;
  width: 30px; /* Set the width to 30px as needed */
  text-align: center;
  border: 1px solid #ddd; /* Add border to the small texts */
}

@media (max-width: 768px) {
  .card {
    flex-direction: row; /* Maintain horizontal layout on mobile */
  }
  .main-content {
    flex-direction: row; /* Maintain horizontal layout on mobile */
  }
  .card-image img {
    width: 100px; /* Adjust the size as needed */
    height: auto;
  }
  .card-info {
    width: auto; /* Full width on smaller screens */
  }
  .card-info p {
    width: 20px; /* Adjust the size as needed */
    font-size: 12px; /* Adjust the font size as needed */
  }
  .text-content h3 {
    font-size: 18px; /* Adjust the font size as needed */
  }
  .text-content p {
    font-size: 14px; /* Adjust the font size as needed */
  }
}

























/* CSS */
.tiers-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px;
}

.tier {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 15px;
  cursor: pointer;
}

.tier-header {
  margin: 0;
  padding: 20px 40px;
  font-weight: bold;
  font-size: 36px; /* Larger font size */
  text-align: center;
  border-radius: 5px;
  color: white; /* Text color */
}

.tier-1 {
  color: gold;
}

.tier-2 {
  color: silver;
}

.tier-3 {
  color: #cd7f32;
}

.tier-4, .tier-5 {
  color: gray;
}

.tier-text {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: none; /* Hide initially */
}

.tier-text1 li {
  background: none; /* Remove background color */
  margin: 5px 0;
  padding: 10px;
  border-left: 5px solid green; /* Red left border */
  border-radius: 5px;
  color: white; /* Text color */
  text-align: left;
}

/* tttttttttt */
.tier-text2 li {
  background: none; /* Remove background color */
  margin: 5px 0;
  padding: 10px;
  border-left: 5px solid red; /* Red left border */
  border-radius: 5px;
  color: white; /* Text color */
  text-align: left;
}
/*ttttttttttttttttt*/

@media (min-width: 769px) {
  .tier-text {
    display: block; /* Show on larger screens */
  }
}





.infoo{
  color: white;
  text-align: center;
  margin: 30px;
  justify-content: center;
  align-items: center;
  position: relative;
}
.support{

  color: white;
  text-align: center;
  margin-top: 30px;
}









.button2 {
  font-family: inherit;
  margin-top: 30px;
  font-size: 18px;
  background: linear-gradient(to bottom, #4f4dd9 0%,#2b60aa 100%);
  color: white;
  padding: 0.8em 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 25px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  position: absolute;
  left: 44%;
}

.button2:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.button2:active {
  transform: scale(0.95);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.button2 span {
  display: block;
  margin-left: 0.4em;
  transition: all 0.3s;
}

.button2 svg {
  width: 18px;
  height: 18px;
  fill: white;
  transition: all 0.3s;
}

.button2 .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 0.5em;
  transition: all 0.3s;
}

.button2:hover .svg-wrapper {
  background-color: rgba(255, 255, 255, 0.5);
}

.button2:hover svg {
  transform: rotate(360deg);
}














































.button-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  justify-items: center;
  padding: 20px;
}

.btn1 {
  outline: none;
  cursor: pointer;
  border: none;
  padding: 0.9rem 2rem;
  margin: 5px;
  font-family: inherit;
  font-size: 17px;
  position: relative;
  letter-spacing: 0.05rem;
  font-weight: 700;
  border-radius: 500px;
  overflow: hidden;
  background: #1e1e1e;
  color: ghostwhite;
  text-align: center;
  transition: background-color 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.btn1 span {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
}

.btn1:hover span {
  color: rgb(255, 255, 255);
}

.btn1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  background: #000;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.btn1:hover::before {
  transform: translate3d(100%, 0, 0);
}
